From 38b9edfa21884149a8b7731964f5481210c8ab57 Mon Sep 17 00:00:00 2001 From: blindFS Date: Thu, 31 Oct 2024 15:58:05 +0800 Subject: [PATCH] Allow variables as external command --- grammar.js | 2 + src/grammar.json | 34 + src/node-types.json | 4 + src/parser.c | 734328 ++++++++++++++++---------------- test/corpus/pipe/commands.nu | 36 + 5 files changed, 367261 insertions(+), 367143 deletions(-) diff --git a/grammar.js b/grammar.js index 5ad1222..a7a9a24 100644 --- a/grammar.js +++ b/grammar.js @@ -1240,6 +1240,7 @@ module.exports = grammar({ choice( field("head", seq(optional(PUNC().caret), $.cmd_identifier)), field("head", seq(PUNC().caret, $.val_string)), // Support for ^'command' type of syntax. + field("head", seq(PUNC().caret, $.val_variable)), // Support for ^$cmd type of syntax. field("head", seq(PUNC().caret, $.expr_parenthesized)), // Support for pipes into external command. ), prec.dynamic(10, repeat($._cmd_arg)), @@ -1251,6 +1252,7 @@ module.exports = grammar({ choice( field("head", seq(optional(PUNC().caret), $.cmd_identifier)), field("head", seq(PUNC().caret, $.val_string)), // Support for ^'command' type of syntax. + field("head", seq(PUNC().caret, $.val_variable)), // Support for ^$cmd type of syntax. field("head", seq(PUNC().caret, $.expr_parenthesized)), // Support for pipes into external command. ), prec.dynamic(10, repeat(seq(optional("\n"), $._cmd_arg))), diff --git a/src/grammar.json b/src/grammar.json index 70bab34..0f8cf0e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -10353,6 +10353,23 @@ ] } }, + { + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + }, { "type": "FIELD", "name": "head", @@ -10436,6 +10453,23 @@ ] } }, + { + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + }, { "type": "FIELD", "name": "head", diff --git a/src/node-types.json b/src/node-types.json index c3344d4..6d8d795 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -392,6 +392,10 @@ { "type": "val_string", "named": true + }, + { + "type": "val_variable", + "named": true } ] }, diff --git a/src/parser.c b/src/parser.c index 5b561d3..4dceb36 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4451,25 +4451,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 3, - [5] = 3, + [5] = 5, [6] = 3, - [7] = 3, + [7] = 5, [8] = 3, - [9] = 9, + [9] = 5, [10] = 3, [11] = 3, [12] = 3, [13] = 3, - [14] = 9, + [14] = 3, [15] = 3, [16] = 3, [17] = 3, [18] = 3, [19] = 3, - [20] = 9, + [20] = 3, [21] = 3, [22] = 3, - [23] = 9, + [23] = 3, [24] = 3, [25] = 3, [26] = 3, @@ -4478,7 +4478,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 3, [30] = 3, [31] = 3, - [32] = 3, + [32] = 5, [33] = 3, [34] = 3, [35] = 3, @@ -4499,17 +4499,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [50] = 48, [51] = 48, [52] = 52, - [53] = 53, + [53] = 52, [54] = 52, [55] = 52, - [56] = 56, + [56] = 52, [57] = 52, [58] = 52, [59] = 52, - [60] = 52, + [60] = 60, [61] = 52, [62] = 52, - [63] = 52, + [63] = 63, [64] = 52, [65] = 52, [66] = 52, @@ -4521,7 +4521,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 52, [73] = 52, [74] = 52, - [75] = 52, + [75] = 60, [76] = 52, [77] = 52, [78] = 52, @@ -4529,15 +4529,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 52, [81] = 52, [82] = 52, - [83] = 52, + [83] = 60, [84] = 52, [85] = 52, [86] = 52, [87] = 52, - [88] = 52, + [88] = 60, [89] = 52, - [90] = 53, - [91] = 53, + [90] = 52, + [91] = 52, [92] = 52, [93] = 52, [94] = 52, @@ -4561,7 +4561,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [112] = 52, [113] = 52, [114] = 52, - [115] = 53, + [115] = 52, [116] = 52, [117] = 52, [118] = 52, @@ -4570,370 +4570,370 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [121] = 52, [122] = 52, [123] = 123, - [124] = 124, - [125] = 124, + [124] = 123, + [125] = 125, [126] = 123, - [127] = 127, - [128] = 124, - [129] = 123, - [130] = 124, - [131] = 124, - [132] = 127, - [133] = 124, - [134] = 124, - [135] = 123, - [136] = 127, - [137] = 124, - [138] = 123, - [139] = 124, - [140] = 123, - [141] = 127, - [142] = 124, - [143] = 124, - [144] = 124, - [145] = 127, - [146] = 123, + [127] = 125, + [128] = 128, + [129] = 129, + [130] = 123, + [131] = 125, + [132] = 128, + [133] = 128, + [134] = 123, + [135] = 125, + [136] = 128, + [137] = 123, + [138] = 129, + [139] = 123, + [140] = 125, + [141] = 128, + [142] = 123, + [143] = 125, + [144] = 128, + [145] = 123, + [146] = 128, [147] = 123, - [148] = 127, - [149] = 124, - [150] = 124, - [151] = 127, - [152] = 123, - [153] = 124, - [154] = 127, - [155] = 123, - [156] = 124, - [157] = 124, - [158] = 124, - [159] = 127, - [160] = 123, - [161] = 124, - [162] = 127, - [163] = 127, - [164] = 124, - [165] = 127, - [166] = 123, - [167] = 124, - [168] = 127, - [169] = 123, - [170] = 124, - [171] = 127, - [172] = 123, - [173] = 124, - [174] = 174, - [175] = 124, - [176] = 124, - [177] = 174, - [178] = 123, - [179] = 124, - [180] = 124, - [181] = 124, - [182] = 124, - [183] = 127, - [184] = 124, - [185] = 127, - [186] = 127, - [187] = 123, - [188] = 124, - [189] = 127, - [190] = 123, - [191] = 124, - [192] = 127, - [193] = 123, - [194] = 124, - [195] = 124, - [196] = 124, - [197] = 127, + [148] = 125, + [149] = 128, + [150] = 123, + [151] = 125, + [152] = 128, + [153] = 123, + [154] = 125, + [155] = 128, + [156] = 123, + [157] = 125, + [158] = 128, + [159] = 123, + [160] = 125, + [161] = 128, + [162] = 123, + [163] = 125, + [164] = 128, + [165] = 123, + [166] = 125, + [167] = 128, + [168] = 123, + [169] = 125, + [170] = 128, + [171] = 123, + [172] = 125, + [173] = 128, + [174] = 123, + [175] = 125, + [176] = 128, + [177] = 123, + [178] = 125, + [179] = 128, + [180] = 123, + [181] = 125, + [182] = 128, + [183] = 123, + [184] = 125, + [185] = 128, + [186] = 123, + [187] = 125, + [188] = 128, + [189] = 123, + [190] = 125, + [191] = 128, + [192] = 123, + [193] = 125, + [194] = 128, + [195] = 123, + [196] = 125, + [197] = 128, [198] = 123, - [199] = 124, - [200] = 127, + [199] = 125, + [200] = 128, [201] = 123, - [202] = 124, - [203] = 127, + [202] = 125, + [203] = 128, [204] = 123, - [205] = 124, - [206] = 124, - [207] = 127, + [205] = 128, + [206] = 123, + [207] = 128, [208] = 123, - [209] = 124, - [210] = 127, - [211] = 123, - [212] = 124, - [213] = 127, + [209] = 128, + [210] = 123, + [211] = 128, + [212] = 123, + [213] = 128, [214] = 123, - [215] = 124, - [216] = 127, - [217] = 123, - [218] = 124, - [219] = 123, - [220] = 124, - [221] = 123, - [222] = 124, + [215] = 128, + [216] = 123, + [217] = 128, + [218] = 123, + [219] = 128, + [220] = 123, + [221] = 128, + [222] = 123, [223] = 123, - [224] = 124, + [224] = 123, [225] = 123, - [226] = 124, - [227] = 124, + [226] = 123, + [227] = 123, [228] = 123, - [229] = 124, + [229] = 123, [230] = 123, - [231] = 124, + [231] = 123, [232] = 123, - [233] = 124, + [233] = 123, [234] = 123, [235] = 123, - [236] = 124, + [236] = 123, [237] = 123, - [238] = 124, - [239] = 124, - [240] = 124, - [241] = 124, - [242] = 124, - [243] = 124, - [244] = 124, - [245] = 124, - [246] = 124, - [247] = 124, - [248] = 124, - [249] = 124, - [250] = 124, - [251] = 124, - [252] = 124, - [253] = 124, - [254] = 124, - [255] = 124, - [256] = 124, - [257] = 124, - [258] = 124, + [238] = 123, + [239] = 123, + [240] = 123, + [241] = 123, + [242] = 123, + [243] = 123, + [244] = 123, + [245] = 123, + [246] = 123, + [247] = 123, + [248] = 123, + [249] = 123, + [250] = 123, + [251] = 123, + [252] = 123, + [253] = 123, + [254] = 123, + [255] = 123, + [256] = 123, + [257] = 123, + [258] = 125, [259] = 259, - [260] = 260, - [261] = 260, + [260] = 259, + [261] = 261, [262] = 262, [263] = 263, [264] = 264, [265] = 265, - [266] = 266, + [266] = 264, [267] = 267, - [268] = 268, + [268] = 265, [269] = 269, - [270] = 265, + [270] = 270, [271] = 271, - [272] = 264, + [272] = 272, [273] = 273, - [274] = 274, - [275] = 273, - [276] = 276, - [277] = 265, - [278] = 264, - [279] = 271, + [274] = 264, + [275] = 267, + [276] = 270, + [277] = 272, + [278] = 265, + [279] = 279, [280] = 280, - [281] = 268, - [282] = 267, + [281] = 273, + [282] = 269, [283] = 283, - [284] = 266, + [284] = 284, [285] = 285, [286] = 286, - [287] = 269, + [287] = 271, [288] = 288, [289] = 289, - [290] = 265, - [291] = 264, - [292] = 269, - [293] = 293, + [290] = 290, + [291] = 283, + [292] = 292, + [293] = 285, [294] = 294, - [295] = 276, - [296] = 286, + [295] = 279, + [296] = 296, [297] = 297, - [298] = 285, - [299] = 268, - [300] = 300, - [301] = 283, - [302] = 294, - [303] = 273, - [304] = 304, + [298] = 270, + [299] = 299, + [300] = 273, + [301] = 288, + [302] = 302, + [303] = 290, + [304] = 272, [305] = 305, - [306] = 280, + [306] = 286, [307] = 307, - [308] = 271, + [308] = 269, [309] = 309, [310] = 310, - [311] = 311, - [312] = 312, - [313] = 266, - [314] = 309, + [311] = 299, + [312] = 267, + [313] = 309, + [314] = 310, [315] = 315, - [316] = 264, - [317] = 267, - [318] = 305, - [319] = 304, - [320] = 274, - [321] = 288, - [322] = 265, - [323] = 323, - [324] = 305, + [316] = 265, + [317] = 264, + [318] = 280, + [319] = 265, + [320] = 284, + [321] = 264, + [322] = 271, + [323] = 270, + [324] = 285, [325] = 325, - [326] = 283, - [327] = 269, - [328] = 328, - [329] = 266, - [330] = 304, - [331] = 268, - [332] = 288, - [333] = 273, - [334] = 268, - [335] = 305, - [336] = 311, - [337] = 273, - [338] = 274, - [339] = 264, - [340] = 267, - [341] = 341, - [342] = 342, + [326] = 288, + [327] = 302, + [328] = 269, + [329] = 286, + [330] = 330, + [331] = 331, + [332] = 302, + [333] = 290, + [334] = 289, + [335] = 309, + [336] = 310, + [337] = 337, + [338] = 338, + [339] = 309, + [340] = 310, + [341] = 299, + [342] = 305, [343] = 271, - [344] = 344, - [345] = 265, - [346] = 288, - [347] = 269, - [348] = 276, + [344] = 307, + [345] = 284, + [346] = 265, + [347] = 264, + [348] = 292, [349] = 309, - [350] = 312, - [351] = 300, - [352] = 294, - [353] = 353, - [354] = 304, - [355] = 307, - [356] = 288, - [357] = 271, - [358] = 267, - [359] = 293, - [360] = 286, - [361] = 294, - [362] = 297, - [363] = 310, - [364] = 309, - [365] = 304, - [366] = 312, - [367] = 289, - [368] = 309, - [369] = 315, - [370] = 285, - [371] = 353, - [372] = 310, - [373] = 309, - [374] = 328, - [375] = 283, - [376] = 376, - [377] = 377, - [378] = 353, - [379] = 271, - [380] = 305, - [381] = 311, - [382] = 274, - [383] = 304, - [384] = 267, - [385] = 385, - [386] = 323, - [387] = 305, - [388] = 300, - [389] = 269, - [390] = 288, - [391] = 391, - [392] = 289, - [393] = 297, - [394] = 394, - [395] = 395, - [396] = 312, - [397] = 325, - [398] = 341, - [399] = 288, - [400] = 294, - [401] = 344, - [402] = 268, - [403] = 307, - [404] = 342, - [405] = 315, - [406] = 344, - [407] = 407, - [408] = 408, - [409] = 341, - [410] = 283, - [411] = 411, - [412] = 273, - [413] = 309, - [414] = 323, - [415] = 276, - [416] = 304, - [417] = 276, - [418] = 286, - [419] = 286, - [420] = 420, - [421] = 285, - [422] = 285, - [423] = 423, - [424] = 424, - [425] = 288, - [426] = 411, - [427] = 305, - [428] = 377, + [350] = 283, + [351] = 310, + [352] = 296, + [353] = 315, + [354] = 297, + [355] = 270, + [356] = 356, + [357] = 272, + [358] = 280, + [359] = 273, + [360] = 271, + [361] = 269, + [362] = 267, + [363] = 288, + [364] = 290, + [365] = 272, + [366] = 366, + [367] = 288, + [368] = 294, + [369] = 273, + [370] = 299, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 331, + [375] = 375, + [376] = 356, + [377] = 309, + [378] = 366, + [379] = 310, + [380] = 325, + [381] = 330, + [382] = 331, + [383] = 383, + [384] = 384, + [385] = 337, + [386] = 338, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 337, + [391] = 338, + [392] = 288, + [393] = 307, + [394] = 270, + [395] = 330, + [396] = 272, + [397] = 292, + [398] = 273, + [399] = 294, + [400] = 271, + [401] = 305, + [402] = 269, + [403] = 296, + [404] = 297, + [405] = 280, + [406] = 286, + [407] = 284, + [408] = 283, + [409] = 285, + [410] = 290, + [411] = 288, + [412] = 302, + [413] = 299, + [414] = 414, + [415] = 309, + [416] = 310, + [417] = 286, + [418] = 284, + [419] = 283, + [420] = 285, + [421] = 299, + [422] = 289, + [423] = 299, + [424] = 371, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 384, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 395, + [433] = 289, [434] = 434, - [435] = 394, - [436] = 341, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 312, - [441] = 420, - [442] = 310, - [443] = 443, - [444] = 444, - [445] = 344, - [446] = 307, + [435] = 371, + [436] = 383, + [437] = 384, + [438] = 388, + [439] = 373, + [440] = 337, + [441] = 338, + [442] = 387, + [443] = 388, + [444] = 389, + [445] = 445, + [446] = 446, [447] = 447, - [448] = 448, - [449] = 449, - [450] = 408, - [451] = 451, - [452] = 309, - [453] = 453, - [454] = 420, - [455] = 353, - [456] = 323, - [457] = 288, - [458] = 304, - [459] = 376, - [460] = 385, - [461] = 408, - [462] = 391, - [463] = 463, - [464] = 464, + [448] = 387, + [449] = 388, + [450] = 292, + [451] = 294, + [452] = 305, + [453] = 296, + [454] = 372, + [455] = 297, + [456] = 288, + [457] = 457, + [458] = 356, + [459] = 325, + [460] = 366, + [461] = 375, + [462] = 462, + [463] = 286, + [464] = 337, [465] = 465, - [466] = 466, + [466] = 284, [467] = 467, - [468] = 344, + [468] = 283, [469] = 469, - [470] = 470, - [471] = 297, - [472] = 341, + [470] = 310, + [471] = 285, + [472] = 472, [473] = 473, - [474] = 300, - [475] = 475, - [476] = 311, - [477] = 289, - [478] = 315, - [479] = 325, - [480] = 294, - [481] = 342, - [482] = 328, - [483] = 309, - [484] = 305, - [485] = 276, + [474] = 338, + [475] = 290, + [476] = 476, + [477] = 477, + [478] = 288, + [479] = 383, + [480] = 480, + [481] = 481, + [482] = 302, + [483] = 483, + [484] = 330, + [485] = 331, [486] = 486, - [487] = 487, + [487] = 309, [488] = 488, [489] = 489, [490] = 490, @@ -4943,506 +4943,506 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [494] = 494, [495] = 495, [496] = 496, - [497] = 283, + [497] = 497, [498] = 498, [499] = 499, [500] = 500, - [501] = 420, + [501] = 501, [502] = 502, [503] = 503, - [504] = 285, - [505] = 376, - [506] = 385, + [504] = 414, + [505] = 505, + [506] = 506, [507] = 507, [508] = 508, - [509] = 304, + [509] = 509, [510] = 510, [511] = 511, - [512] = 391, + [512] = 512, [513] = 513, - [514] = 286, + [514] = 514, [515] = 515, [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 310, [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 407, - [525] = 525, - [526] = 526, - [527] = 527, + [524] = 524, + [525] = 299, + [526] = 307, + [527] = 309, [528] = 528, - [529] = 522, - [530] = 438, - [531] = 443, - [532] = 444, - [533] = 447, - [534] = 439, - [535] = 448, - [536] = 507, - [537] = 510, - [538] = 511, - [539] = 516, - [540] = 518, - [541] = 520, - [542] = 500, - [543] = 498, - [544] = 496, - [545] = 495, - [546] = 494, - [547] = 493, - [548] = 491, - [549] = 489, - [550] = 487, - [551] = 486, - [552] = 449, - [553] = 451, - [554] = 453, - [555] = 353, - [556] = 528, - [557] = 323, - [558] = 377, - [559] = 325, - [560] = 407, - [561] = 342, - [562] = 411, - [563] = 526, - [564] = 328, - [565] = 408, - [566] = 502, - [567] = 508, - [568] = 469, - [569] = 408, - [570] = 503, - [571] = 395, - [572] = 424, - [573] = 527, - [574] = 420, - [575] = 525, - [576] = 437, - [577] = 391, - [578] = 434, - [579] = 432, - [580] = 341, - [581] = 523, - [582] = 344, - [583] = 521, - [584] = 519, - [585] = 517, - [586] = 515, - [587] = 513, - [588] = 423, - [589] = 463, - [590] = 499, - [591] = 492, - [592] = 464, - [593] = 431, - [594] = 430, - [595] = 420, - [596] = 490, - [597] = 385, - [598] = 465, - [599] = 466, + [529] = 523, + [530] = 501, + [531] = 502, + [532] = 503, + [533] = 477, + [534] = 480, + [535] = 505, + [536] = 481, + [537] = 389, + [538] = 462, + [539] = 506, + [540] = 483, + [541] = 507, + [542] = 465, + [543] = 508, + [544] = 373, + [545] = 509, + [546] = 469, + [547] = 510, + [548] = 445, + [549] = 511, + [550] = 387, + [551] = 512, + [552] = 356, + [553] = 513, + [554] = 375, + [555] = 514, + [556] = 457, + [557] = 515, + [558] = 476, + [559] = 516, + [560] = 388, + [561] = 517, + [562] = 330, + [563] = 518, + [564] = 331, + [565] = 520, + [566] = 521, + [567] = 522, + [568] = 432, + [569] = 500, + [570] = 337, + [571] = 338, + [572] = 467, + [573] = 388, + [574] = 387, + [575] = 446, + [576] = 371, + [577] = 425, + [578] = 472, + [579] = 473, + [580] = 383, + [581] = 384, + [582] = 426, + [583] = 486, + [584] = 488, + [585] = 447, + [586] = 489, + [587] = 490, + [588] = 491, + [589] = 492, + [590] = 493, + [591] = 494, + [592] = 495, + [593] = 414, + [594] = 496, + [595] = 325, + [596] = 366, + [597] = 427, + [598] = 528, + [599] = 497, [600] = 429, - [601] = 376, - [602] = 467, - [603] = 341, - [604] = 488, - [605] = 473, - [606] = 344, - [607] = 470, - [608] = 464, - [609] = 520, - [610] = 521, - [611] = 518, - [612] = 523, - [613] = 500, - [614] = 449, - [615] = 466, - [616] = 519, - [617] = 525, - [618] = 516, - [619] = 498, - [620] = 527, - [621] = 517, - [622] = 439, - [623] = 496, - [624] = 511, - [625] = 515, - [626] = 510, - [627] = 424, - [628] = 495, - [629] = 503, - [630] = 494, - [631] = 526, - [632] = 508, - [633] = 513, - [634] = 507, - [635] = 467, - [636] = 377, - [637] = 423, - [638] = 502, - [639] = 491, - [640] = 429, - [641] = 411, - [642] = 430, - [643] = 499, - [644] = 528, - [645] = 431, - [646] = 488, - [647] = 344, - [648] = 434, - [649] = 341, - [650] = 469, - [651] = 470, - [652] = 490, - [653] = 420, - [654] = 395, - [655] = 437, - [656] = 465, - [657] = 420, - [658] = 489, - [659] = 376, - [660] = 473, - [661] = 463, - [662] = 448, - [663] = 522, - [664] = 385, - [665] = 408, - [666] = 407, - [667] = 408, - [668] = 453, - [669] = 391, - [670] = 493, - [671] = 432, - [672] = 451, - [673] = 438, - [674] = 487, - [675] = 492, - [676] = 443, - [677] = 486, - [678] = 444, - [679] = 447, - [680] = 344, - [681] = 408, - [682] = 453, - [683] = 494, - [684] = 495, - [685] = 424, - [686] = 496, - [687] = 527, - [688] = 467, - [689] = 498, - [690] = 525, - [691] = 500, - [692] = 473, - [693] = 451, - [694] = 463, - [695] = 464, - [696] = 526, - [697] = 465, - [698] = 466, - [699] = 449, - [700] = 469, - [701] = 470, - [702] = 493, - [703] = 448, - [704] = 523, - [705] = 520, - [706] = 447, - [707] = 489, - [708] = 521, - [709] = 518, - [710] = 519, - [711] = 516, - [712] = 487, - [713] = 517, - [714] = 486, - [715] = 511, - [716] = 432, - [717] = 515, - [718] = 510, - [719] = 513, - [720] = 503, - [721] = 420, - [722] = 508, - [723] = 507, - [724] = 423, - [725] = 502, - [726] = 499, - [727] = 341, - [728] = 528, - [729] = 492, - [730] = 429, - [731] = 430, - [732] = 490, - [733] = 431, - [734] = 434, - [735] = 437, - [736] = 438, - [737] = 439, - [738] = 522, - [739] = 491, - [740] = 488, - [741] = 443, - [742] = 444, - [743] = 265, - [744] = 264, - [745] = 265, + [601] = 498, + [602] = 499, + [603] = 337, + [604] = 430, + [605] = 338, + [606] = 431, + [607] = 524, + [608] = 486, + [609] = 521, + [610] = 445, + [611] = 446, + [612] = 447, + [613] = 462, + [614] = 489, + [615] = 465, + [616] = 467, + [617] = 469, + [618] = 472, + [619] = 473, + [620] = 476, + [621] = 480, + [622] = 481, + [623] = 483, + [624] = 506, + [625] = 414, + [626] = 387, + [627] = 425, + [628] = 426, + [629] = 505, + [630] = 427, + [631] = 528, + [632] = 429, + [633] = 430, + [634] = 431, + [635] = 520, + [636] = 477, + [637] = 432, + [638] = 522, + [639] = 523, + [640] = 524, + [641] = 457, + [642] = 371, + [643] = 383, + [644] = 373, + [645] = 337, + [646] = 338, + [647] = 388, + [648] = 389, + [649] = 490, + [650] = 375, + [651] = 507, + [652] = 491, + [653] = 508, + [654] = 492, + [655] = 509, + [656] = 493, + [657] = 510, + [658] = 488, + [659] = 494, + [660] = 511, + [661] = 495, + [662] = 503, + [663] = 512, + [664] = 496, + [665] = 513, + [666] = 497, + [667] = 514, + [668] = 498, + [669] = 515, + [670] = 387, + [671] = 499, + [672] = 516, + [673] = 500, + [674] = 517, + [675] = 501, + [676] = 518, + [677] = 388, + [678] = 502, + [679] = 384, + [680] = 481, + [681] = 507, + [682] = 503, + [683] = 491, + [684] = 337, + [685] = 508, + [686] = 492, + [687] = 426, + [688] = 486, + [689] = 521, + [690] = 387, + [691] = 505, + [692] = 427, + [693] = 338, + [694] = 515, + [695] = 502, + [696] = 445, + [697] = 462, + [698] = 499, + [699] = 446, + [700] = 528, + [701] = 516, + [702] = 500, + [703] = 517, + [704] = 465, + [705] = 467, + [706] = 430, + [707] = 447, + [708] = 488, + [709] = 498, + [710] = 469, + [711] = 490, + [712] = 520, + [713] = 501, + [714] = 477, + [715] = 522, + [716] = 523, + [717] = 524, + [718] = 473, + [719] = 432, + [720] = 457, + [721] = 429, + [722] = 489, + [723] = 388, + [724] = 425, + [725] = 506, + [726] = 509, + [727] = 493, + [728] = 510, + [729] = 494, + [730] = 511, + [731] = 495, + [732] = 476, + [733] = 512, + [734] = 480, + [735] = 496, + [736] = 472, + [737] = 513, + [738] = 483, + [739] = 497, + [740] = 518, + [741] = 514, + [742] = 431, + [743] = 264, + [744] = 265, + [745] = 273, [746] = 264, - [747] = 264, - [748] = 265, - [749] = 266, - [750] = 271, - [751] = 268, - [752] = 269, - [753] = 267, - [754] = 273, - [755] = 265, - [756] = 271, - [757] = 285, - [758] = 268, + [747] = 269, + [748] = 267, + [749] = 271, + [750] = 272, + [751] = 265, + [752] = 265, + [753] = 270, + [754] = 264, + [755] = 271, + [756] = 269, + [757] = 284, + [758] = 280, [759] = 283, - [760] = 267, - [761] = 268, - [762] = 264, - [763] = 269, - [764] = 286, - [765] = 273, - [766] = 269, - [767] = 266, + [760] = 285, + [761] = 270, + [762] = 272, + [763] = 265, + [764] = 272, + [765] = 264, + [766] = 286, + [767] = 273, [768] = 271, - [769] = 276, - [770] = 273, + [769] = 269, + [770] = 270, [771] = 267, - [772] = 274, - [773] = 285, - [774] = 276, - [775] = 285, - [776] = 394, - [777] = 315, - [778] = 310, - [779] = 288, - [780] = 289, - [781] = 307, - [782] = 305, - [783] = 283, - [784] = 309, - [785] = 288, - [786] = 271, - [787] = 311, - [788] = 309, - [789] = 297, - [790] = 273, - [791] = 286, - [792] = 267, - [793] = 274, - [794] = 276, + [772] = 273, + [773] = 289, + [774] = 285, + [775] = 270, + [776] = 286, + [777] = 297, + [778] = 272, + [779] = 296, + [780] = 273, + [781] = 271, + [782] = 372, + [783] = 269, + [784] = 307, + [785] = 299, + [786] = 309, + [787] = 299, + [788] = 310, + [789] = 292, + [790] = 290, + [791] = 309, + [792] = 310, + [793] = 284, + [794] = 305, [795] = 294, - [796] = 305, - [797] = 304, - [798] = 269, - [799] = 304, - [800] = 268, - [801] = 300, - [802] = 283, - [803] = 286, - [804] = 312, - [805] = 304, - [806] = 288, - [807] = 300, - [808] = 315, - [809] = 341, - [810] = 286, - [811] = 285, - [812] = 276, - [813] = 283, - [814] = 394, - [815] = 312, - [816] = 323, - [817] = 310, + [796] = 283, + [797] = 285, + [798] = 288, + [799] = 288, + [800] = 284, + [801] = 280, + [802] = 302, + [803] = 283, + [804] = 286, + [805] = 292, + [806] = 299, + [807] = 309, + [808] = 284, + [809] = 283, + [810] = 325, + [811] = 286, + [812] = 288, + [813] = 310, + [814] = 285, + [815] = 330, + [816] = 356, + [817] = 366, [818] = 307, - [819] = 353, - [820] = 344, + [819] = 372, + [820] = 289, [821] = 309, - [822] = 325, - [823] = 305, - [824] = 311, - [825] = 294, + [822] = 296, + [823] = 337, + [824] = 294, + [825] = 297, [826] = 288, - [827] = 289, - [828] = 342, - [829] = 305, - [830] = 309, - [831] = 304, - [832] = 328, - [833] = 297, - [834] = 341, - [835] = 342, - [836] = 391, - [837] = 328, - [838] = 325, - [839] = 385, - [840] = 376, - [841] = 420, - [842] = 411, - [843] = 407, - [844] = 323, - [845] = 395, - [846] = 353, - [847] = 408, - [848] = 344, - [849] = 377, - [850] = 515, - [851] = 508, - [852] = 513, - [853] = 431, - [854] = 423, - [855] = 489, - [856] = 499, - [857] = 517, - [858] = 492, - [859] = 449, - [860] = 448, - [861] = 447, - [862] = 411, - [863] = 490, - [864] = 522, - [865] = 408, - [866] = 444, - [867] = 528, - [868] = 488, - [869] = 502, - [870] = 507, - [871] = 510, - [872] = 511, - [873] = 516, - [874] = 518, - [875] = 520, - [876] = 500, - [877] = 498, - [878] = 496, - [879] = 391, - [880] = 495, - [881] = 432, - [882] = 494, - [883] = 463, - [884] = 464, - [885] = 526, - [886] = 465, - [887] = 466, - [888] = 519, - [889] = 467, - [890] = 521, - [891] = 469, - [892] = 470, - [893] = 493, - [894] = 473, - [895] = 385, - [896] = 376, - [897] = 434, - [898] = 395, - [899] = 407, - [900] = 523, - [901] = 429, - [902] = 487, - [903] = 503, - [904] = 486, - [905] = 430, - [906] = 420, - [907] = 408, - [908] = 443, - [909] = 341, - [910] = 344, - [911] = 491, - [912] = 525, - [913] = 453, - [914] = 420, - [915] = 439, - [916] = 377, - [917] = 527, - [918] = 451, - [919] = 424, - [920] = 438, - [921] = 437, - [922] = 443, - [923] = 508, - [924] = 448, - [925] = 487, - [926] = 447, - [927] = 437, - [928] = 439, - [929] = 434, - [930] = 490, - [931] = 489, - [932] = 492, - [933] = 499, - [934] = 423, - [935] = 432, - [936] = 431, - [937] = 513, - [938] = 515, - [939] = 430, - [940] = 517, - [941] = 519, - [942] = 521, - [943] = 523, - [944] = 344, - [945] = 341, - [946] = 408, - [947] = 525, - [948] = 420, - [949] = 527, - [950] = 488, - [951] = 424, - [952] = 503, - [953] = 518, - [954] = 493, - [955] = 429, - [956] = 522, - [957] = 486, - [958] = 528, - [959] = 444, - [960] = 502, - [961] = 438, - [962] = 449, - [963] = 451, - [964] = 453, - [965] = 463, - [966] = 507, - [967] = 464, - [968] = 510, - [969] = 511, - [970] = 465, - [971] = 466, - [972] = 467, - [973] = 516, - [974] = 469, - [975] = 470, - [976] = 473, - [977] = 526, - [978] = 491, - [979] = 494, - [980] = 495, - [981] = 496, - [982] = 498, - [983] = 500, - [984] = 520, + [827] = 305, + [828] = 331, + [829] = 310, + [830] = 299, + [831] = 290, + [832] = 302, + [833] = 338, + [834] = 387, + [835] = 388, + [836] = 383, + [837] = 384, + [838] = 330, + [839] = 331, + [840] = 337, + [841] = 338, + [842] = 414, + [843] = 373, + [844] = 356, + [845] = 366, + [846] = 375, + [847] = 389, + [848] = 325, + [849] = 371, + [850] = 516, + [851] = 387, + [852] = 500, + [853] = 383, + [854] = 501, + [855] = 338, + [856] = 502, + [857] = 462, + [858] = 389, + [859] = 493, + [860] = 523, + [861] = 465, + [862] = 494, + [863] = 524, + [864] = 503, + [865] = 480, + [866] = 467, + [867] = 506, + [868] = 432, + [869] = 507, + [870] = 508, + [871] = 509, + [872] = 510, + [873] = 511, + [874] = 512, + [875] = 513, + [876] = 514, + [877] = 515, + [878] = 520, + [879] = 517, + [880] = 518, + [881] = 495, + [882] = 375, + [883] = 476, + [884] = 481, + [885] = 477, + [886] = 384, + [887] = 337, + [888] = 492, + [889] = 521, + [890] = 414, + [891] = 457, + [892] = 486, + [893] = 388, + [894] = 373, + [895] = 425, + [896] = 496, + [897] = 371, + [898] = 497, + [899] = 426, + [900] = 488, + [901] = 387, + [902] = 489, + [903] = 469, + [904] = 505, + [905] = 445, + [906] = 427, + [907] = 528, + [908] = 472, + [909] = 429, + [910] = 388, + [911] = 490, + [912] = 498, + [913] = 446, + [914] = 430, + [915] = 431, + [916] = 522, + [917] = 473, + [918] = 447, + [919] = 491, + [920] = 499, + [921] = 483, + [922] = 432, + [923] = 476, + [924] = 477, + [925] = 445, + [926] = 446, + [927] = 457, + [928] = 462, + [929] = 465, + [930] = 467, + [931] = 473, + [932] = 480, + [933] = 481, + [934] = 483, + [935] = 425, + [936] = 426, + [937] = 427, + [938] = 528, + [939] = 429, + [940] = 430, + [941] = 431, + [942] = 505, + [943] = 520, + [944] = 522, + [945] = 523, + [946] = 524, + [947] = 337, + [948] = 338, + [949] = 387, + [950] = 469, + [951] = 486, + [952] = 488, + [953] = 489, + [954] = 490, + [955] = 491, + [956] = 492, + [957] = 493, + [958] = 494, + [959] = 495, + [960] = 496, + [961] = 497, + [962] = 498, + [963] = 499, + [964] = 500, + [965] = 501, + [966] = 502, + [967] = 503, + [968] = 506, + [969] = 507, + [970] = 508, + [971] = 509, + [972] = 510, + [973] = 511, + [974] = 512, + [975] = 513, + [976] = 514, + [977] = 515, + [978] = 516, + [979] = 517, + [980] = 518, + [981] = 521, + [982] = 472, + [983] = 447, + [984] = 388, [985] = 985, [986] = 986, [987] = 987, - [988] = 985, - [989] = 987, - [990] = 990, + [988] = 988, + [989] = 989, + [990] = 989, [991] = 991, - [992] = 992, - [993] = 991, - [994] = 990, - [995] = 995, - [996] = 996, + [992] = 988, + [993] = 993, + [994] = 994, + [995] = 987, + [996] = 991, [997] = 997, [998] = 998, [999] = 999, @@ -5452,12 +5452,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 1006, - [1007] = 999, - [1008] = 1008, + [1006] = 1003, + [1007] = 1007, + [1008] = 1007, [1009] = 1009, [1010] = 1010, - [1011] = 1008, + [1011] = 1011, [1012] = 1012, [1013] = 1013, [1014] = 1014, @@ -5466,5963 +5466,5963 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 264, - [1021] = 1021, - [1022] = 1022, - [1023] = 1016, - [1024] = 1017, - [1025] = 1012, - [1026] = 1013, - [1027] = 1014, - [1028] = 265, - [1029] = 1015, - [1030] = 1014, + [1020] = 1020, + [1021] = 265, + [1022] = 1015, + [1023] = 1023, + [1024] = 264, + [1025] = 1017, + [1026] = 1018, + [1027] = 1016, + [1028] = 1019, + [1029] = 1013, + [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 1033, - [1034] = 271, - [1035] = 1015, - [1036] = 1036, - [1037] = 1037, - [1038] = 265, + [1033] = 269, + [1034] = 273, + [1035] = 270, + [1036] = 1020, + [1037] = 1019, + [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, [1042] = 1042, - [1043] = 1013, - [1044] = 267, - [1045] = 1012, - [1046] = 1046, - [1047] = 1021, - [1048] = 1022, - [1049] = 264, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1016, - [1054] = 266, - [1055] = 269, - [1056] = 268, - [1057] = 273, - [1058] = 1041, - [1059] = 1039, - [1060] = 1037, - [1061] = 1036, - [1062] = 1033, - [1063] = 1046, - [1064] = 1032, - [1065] = 276, - [1066] = 274, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1023, + [1047] = 272, + [1048] = 1048, + [1049] = 267, + [1050] = 271, + [1051] = 265, + [1052] = 264, + [1053] = 1053, + [1054] = 1013, + [1055] = 1016, + [1056] = 1017, + [1057] = 1018, + [1058] = 270, + [1059] = 1059, + [1060] = 284, + [1061] = 1053, + [1062] = 1031, + [1063] = 1032, + [1064] = 1030, + [1065] = 1038, + [1066] = 1039, [1067] = 1040, - [1068] = 1051, - [1069] = 1042, - [1070] = 286, - [1071] = 1031, - [1072] = 1072, - [1073] = 1014, - [1074] = 1012, - [1075] = 1013, - [1076] = 285, - [1077] = 1052, - [1078] = 283, - [1079] = 271, - [1080] = 1016, - [1081] = 1081, - [1082] = 1081, - [1083] = 1083, - [1084] = 273, - [1085] = 1085, + [1068] = 1041, + [1069] = 280, + [1070] = 1070, + [1071] = 1042, + [1072] = 1043, + [1073] = 1044, + [1074] = 279, + [1075] = 1017, + [1076] = 1018, + [1077] = 1019, + [1078] = 271, + [1079] = 269, + [1080] = 1045, + [1081] = 1070, + [1082] = 267, + [1083] = 272, + [1084] = 283, + [1085] = 1013, [1086] = 1086, - [1087] = 1015, - [1088] = 269, - [1089] = 268, + [1087] = 273, + [1088] = 1088, + [1089] = 285, [1090] = 1090, - [1091] = 1050, - [1092] = 266, - [1093] = 267, - [1094] = 280, - [1095] = 305, - [1096] = 311, - [1097] = 293, - [1098] = 1052, - [1099] = 310, - [1100] = 304, - [1101] = 1101, - [1102] = 307, - [1103] = 1086, - [1104] = 1041, - [1105] = 1105, - [1106] = 288, + [1091] = 286, + [1092] = 1048, + [1093] = 1093, + [1094] = 1016, + [1095] = 285, + [1096] = 265, + [1097] = 264, + [1098] = 1042, + [1099] = 1045, + [1100] = 1043, + [1101] = 290, + [1102] = 1088, + [1103] = 1103, + [1104] = 288, + [1105] = 1093, + [1106] = 1106, [1107] = 1107, - [1108] = 1046, - [1109] = 1072, - [1110] = 1042, - [1111] = 297, - [1112] = 280, - [1113] = 300, - [1114] = 304, - [1115] = 294, - [1116] = 1085, + [1108] = 288, + [1109] = 309, + [1110] = 307, + [1111] = 289, + [1112] = 302, + [1113] = 1059, + [1114] = 310, + [1115] = 299, + [1116] = 292, [1117] = 294, - [1118] = 289, - [1119] = 309, - [1120] = 1031, - [1121] = 309, - [1122] = 283, - [1123] = 1040, - [1124] = 315, - [1125] = 276, - [1126] = 1126, - [1127] = 274, - [1128] = 1128, - [1129] = 312, - [1130] = 1090, - [1131] = 288, - [1132] = 286, - [1133] = 265, - [1134] = 1039, - [1135] = 1083, - [1136] = 1051, - [1137] = 1037, - [1138] = 285, - [1139] = 1036, - [1140] = 264, - [1141] = 1033, - [1142] = 305, - [1143] = 1032, - [1144] = 1051, - [1145] = 1031, - [1146] = 1146, - [1147] = 1036, - [1148] = 304, - [1149] = 1149, - [1150] = 1033, - [1151] = 1151, - [1152] = 304, - [1153] = 325, - [1154] = 342, - [1155] = 328, - [1156] = 1156, - [1157] = 268, - [1158] = 1158, - [1159] = 288, - [1160] = 1037, - [1161] = 344, - [1162] = 305, - [1163] = 1039, - [1164] = 1032, - [1165] = 1165, - [1166] = 294, - [1167] = 294, - [1168] = 305, - [1169] = 1052, - [1170] = 353, - [1171] = 323, - [1172] = 289, - [1173] = 310, + [1118] = 299, + [1119] = 1041, + [1120] = 296, + [1121] = 1086, + [1122] = 1122, + [1123] = 297, + [1124] = 1090, + [1125] = 279, + [1126] = 290, + [1127] = 1127, + [1128] = 280, + [1129] = 310, + [1130] = 315, + [1131] = 286, + [1132] = 284, + [1133] = 1044, + [1134] = 283, + [1135] = 1053, + [1136] = 1031, + [1137] = 1032, + [1138] = 309, + [1139] = 1030, + [1140] = 1038, + [1141] = 1039, + [1142] = 1040, + [1143] = 305, + [1144] = 269, + [1145] = 310, + [1146] = 271, + [1147] = 1147, + [1148] = 299, + [1149] = 356, + [1150] = 1150, + [1151] = 325, + [1152] = 366, + [1153] = 1153, + [1154] = 288, + [1155] = 315, + [1156] = 330, + [1157] = 331, + [1158] = 272, + [1159] = 299, + [1160] = 302, + [1161] = 270, + [1162] = 307, + [1163] = 1163, + [1164] = 296, + [1165] = 290, + [1166] = 1166, + [1167] = 309, + [1168] = 1168, + [1169] = 289, + [1170] = 292, + [1171] = 294, + [1172] = 310, + [1173] = 1053, [1174] = 297, - [1175] = 265, - [1176] = 1040, - [1177] = 1177, - [1178] = 1178, + [1175] = 1031, + [1176] = 1032, + [1177] = 1030, + [1178] = 309, [1179] = 1179, - [1180] = 311, - [1181] = 273, - [1182] = 300, - [1183] = 307, - [1184] = 312, - [1185] = 1185, - [1186] = 1041, - [1187] = 288, - [1188] = 269, + [1180] = 1180, + [1181] = 1038, + [1182] = 1039, + [1183] = 1040, + [1184] = 1041, + [1185] = 1042, + [1186] = 1043, + [1187] = 1044, + [1188] = 1045, [1189] = 1189, - [1190] = 309, - [1191] = 1046, - [1192] = 315, - [1193] = 341, - [1194] = 309, - [1195] = 1042, - [1196] = 293, - [1197] = 264, - [1198] = 1198, - [1199] = 271, - [1200] = 267, - [1201] = 376, - [1202] = 268, - [1203] = 273, - [1204] = 408, - [1205] = 411, - [1206] = 323, - [1207] = 285, - [1208] = 377, - [1209] = 385, - [1210] = 1149, - [1211] = 1156, - [1212] = 1158, - [1213] = 266, - [1214] = 1146, - [1215] = 1177, - [1216] = 328, - [1217] = 420, - [1218] = 283, - [1219] = 341, - [1220] = 1220, - [1221] = 286, - [1222] = 353, - [1223] = 1165, - [1224] = 344, - [1225] = 407, - [1226] = 269, - [1227] = 280, - [1228] = 1220, - [1229] = 1198, - [1230] = 1151, - [1231] = 391, - [1232] = 267, - [1233] = 395, - [1234] = 325, - [1235] = 271, - [1236] = 276, - [1237] = 342, - [1238] = 286, - [1239] = 385, - [1240] = 391, - [1241] = 434, - [1242] = 443, - [1243] = 376, - [1244] = 449, - [1245] = 439, - [1246] = 447, - [1247] = 438, - [1248] = 431, - [1249] = 437, - [1250] = 430, - [1251] = 429, - [1252] = 444, - [1253] = 420, - [1254] = 453, - [1255] = 451, - [1256] = 502, - [1257] = 467, - [1258] = 473, - [1259] = 304, - [1260] = 463, - [1261] = 464, - [1262] = 526, - [1263] = 465, - [1264] = 466, - [1265] = 305, - [1266] = 309, - [1267] = 411, - [1268] = 469, - [1269] = 470, - [1270] = 508, - [1271] = 493, - [1272] = 266, - [1273] = 448, - [1274] = 489, - [1275] = 494, - [1276] = 487, - [1277] = 486, - [1278] = 432, - [1279] = 503, - [1280] = 495, - [1281] = 424, - [1282] = 496, - [1283] = 527, - [1284] = 1284, - [1285] = 498, - [1286] = 288, - [1287] = 304, - [1288] = 525, - [1289] = 309, - [1290] = 500, - [1291] = 523, - [1292] = 520, - [1293] = 521, - [1294] = 518, - [1295] = 519, + [1190] = 305, + [1191] = 1191, + [1192] = 265, + [1193] = 1193, + [1194] = 264, + [1195] = 273, + [1196] = 337, + [1197] = 1197, + [1198] = 290, + [1199] = 288, + [1200] = 338, + [1201] = 388, + [1202] = 1193, + [1203] = 1197, + [1204] = 337, + [1205] = 375, + [1206] = 338, + [1207] = 1150, + [1208] = 373, + [1209] = 356, + [1210] = 267, + [1211] = 286, + [1212] = 330, + [1213] = 387, + [1214] = 331, + [1215] = 1180, + [1216] = 285, + [1217] = 1153, + [1218] = 270, + [1219] = 371, + [1220] = 1179, + [1221] = 283, + [1222] = 272, + [1223] = 414, + [1224] = 325, + [1225] = 279, + [1226] = 383, + [1227] = 366, + [1228] = 1166, + [1229] = 1191, + [1230] = 273, + [1231] = 271, + [1232] = 1232, + [1233] = 284, + [1234] = 384, + [1235] = 269, + [1236] = 389, + [1237] = 1232, + [1238] = 488, + [1239] = 294, + [1240] = 427, + [1241] = 528, + [1242] = 389, + [1243] = 430, + [1244] = 431, + [1245] = 481, + [1246] = 520, + [1247] = 290, + [1248] = 477, + [1249] = 522, + [1250] = 523, + [1251] = 445, + [1252] = 299, + [1253] = 489, + [1254] = 506, + [1255] = 524, + [1256] = 490, + [1257] = 507, + [1258] = 491, + [1259] = 508, + [1260] = 492, + [1261] = 509, + [1262] = 493, + [1263] = 510, + [1264] = 494, + [1265] = 511, + [1266] = 495, + [1267] = 512, + [1268] = 496, + [1269] = 513, + [1270] = 497, + [1271] = 514, + [1272] = 498, + [1273] = 515, + [1274] = 499, + [1275] = 516, + [1276] = 500, + [1277] = 517, + [1278] = 501, + [1279] = 518, + [1280] = 502, + [1281] = 387, + [1282] = 483, + [1283] = 307, + [1284] = 457, + [1285] = 267, + [1286] = 299, + [1287] = 447, + [1288] = 288, + [1289] = 1289, + [1290] = 302, + [1291] = 472, + [1292] = 289, + [1293] = 446, + [1294] = 1294, + [1295] = 309, [1296] = 1296, - [1297] = 516, - [1298] = 517, - [1299] = 511, - [1300] = 1296, - [1301] = 515, - [1302] = 510, - [1303] = 513, - [1304] = 507, - [1305] = 423, - [1306] = 276, - [1307] = 499, - [1308] = 341, - [1309] = 344, - [1310] = 305, - [1311] = 528, - [1312] = 492, - [1313] = 490, - [1314] = 283, - [1315] = 285, - [1316] = 488, - [1317] = 522, - [1318] = 1284, - [1319] = 312, - [1320] = 294, - [1321] = 408, - [1322] = 315, - [1323] = 280, - [1324] = 491, - [1325] = 420, - [1326] = 408, - [1327] = 377, - [1328] = 288, - [1329] = 310, - [1330] = 1330, - [1331] = 395, - [1332] = 1332, - [1333] = 307, - [1334] = 289, - [1335] = 297, - [1336] = 1336, - [1337] = 300, - [1338] = 266, - [1339] = 407, - [1340] = 1332, - [1341] = 1341, - [1342] = 341, - [1343] = 486, - [1344] = 493, - [1345] = 1341, - [1346] = 487, - [1347] = 344, - [1348] = 288, - [1349] = 489, - [1350] = 526, - [1351] = 432, - [1352] = 1332, - [1353] = 305, - [1354] = 1284, - [1355] = 325, - [1356] = 1341, - [1357] = 1341, - [1358] = 288, - [1359] = 328, - [1360] = 309, - [1361] = 305, - [1362] = 1341, - [1363] = 1330, - [1364] = 311, - [1365] = 1341, - [1366] = 312, - [1367] = 1341, - [1368] = 1341, - [1369] = 448, - [1370] = 1341, - [1371] = 1341, - [1372] = 342, - [1373] = 1341, - [1374] = 522, - [1375] = 488, - [1376] = 304, - [1377] = 294, - [1378] = 490, - [1379] = 1341, - [1380] = 492, - [1381] = 528, - [1382] = 1382, - [1383] = 288, - [1384] = 1384, - [1385] = 499, - [1386] = 304, - [1387] = 502, - [1388] = 423, - [1389] = 1341, - [1390] = 408, - [1391] = 309, - [1392] = 344, - [1393] = 507, - [1394] = 513, - [1395] = 312, - [1396] = 510, - [1397] = 515, - [1398] = 341, - [1399] = 1399, - [1400] = 511, - [1401] = 517, - [1402] = 516, - [1403] = 519, - [1404] = 470, - [1405] = 518, - [1406] = 469, - [1407] = 466, - [1408] = 465, - [1409] = 1341, - [1410] = 464, - [1411] = 463, - [1412] = 1341, - [1413] = 1284, - [1414] = 420, - [1415] = 1341, - [1416] = 453, - [1417] = 304, - [1418] = 451, - [1419] = 449, - [1420] = 473, - [1421] = 447, - [1422] = 1341, - [1423] = 1341, - [1424] = 305, - [1425] = 521, - [1426] = 1341, - [1427] = 1341, - [1428] = 520, - [1429] = 523, - [1430] = 500, - [1431] = 525, + [1297] = 388, + [1298] = 473, + [1299] = 310, + [1300] = 310, + [1301] = 429, + [1302] = 292, + [1303] = 337, + [1304] = 375, + [1305] = 1305, + [1306] = 432, + [1307] = 338, + [1308] = 279, + [1309] = 388, + [1310] = 309, + [1311] = 462, + [1312] = 1305, + [1313] = 286, + [1314] = 371, + [1315] = 1289, + [1316] = 383, + [1317] = 373, + [1318] = 387, + [1319] = 288, + [1320] = 521, + [1321] = 414, + [1322] = 465, + [1323] = 476, + [1324] = 480, + [1325] = 425, + [1326] = 384, + [1327] = 284, + [1328] = 296, + [1329] = 283, + [1330] = 467, + [1331] = 285, + [1332] = 503, + [1333] = 297, + [1334] = 486, + [1335] = 469, + [1336] = 426, + [1337] = 505, + [1338] = 267, + [1339] = 1339, + [1340] = 294, + [1341] = 337, + [1342] = 338, + [1343] = 309, + [1344] = 310, + [1345] = 1345, + [1346] = 521, + [1347] = 1345, + [1348] = 445, + [1349] = 310, + [1350] = 446, + [1351] = 288, + [1352] = 447, + [1353] = 1296, + [1354] = 302, + [1355] = 1345, + [1356] = 387, + [1357] = 302, + [1358] = 1358, + [1359] = 325, + [1360] = 462, + [1361] = 307, + [1362] = 290, + [1363] = 1345, + [1364] = 296, + [1365] = 465, + [1366] = 467, + [1367] = 469, + [1368] = 429, + [1369] = 472, + [1370] = 299, + [1371] = 309, + [1372] = 473, + [1373] = 1345, + [1374] = 1374, + [1375] = 1345, + [1376] = 1289, + [1377] = 1377, + [1378] = 267, + [1379] = 288, + [1380] = 1289, + [1381] = 299, + [1382] = 1345, + [1383] = 305, + [1384] = 1345, + [1385] = 1345, + [1386] = 289, + [1387] = 503, + [1388] = 486, + [1389] = 1345, + [1390] = 297, + [1391] = 330, + [1392] = 331, + [1393] = 488, + [1394] = 489, + [1395] = 506, + [1396] = 490, + [1397] = 310, + [1398] = 1345, + [1399] = 507, + [1400] = 491, + [1401] = 388, + [1402] = 1345, + [1403] = 508, + [1404] = 1404, + [1405] = 1345, + [1406] = 492, + [1407] = 509, + [1408] = 493, + [1409] = 510, + [1410] = 494, + [1411] = 511, + [1412] = 495, + [1413] = 1374, + [1414] = 1345, + [1415] = 1339, + [1416] = 1377, + [1417] = 1294, + [1418] = 1345, + [1419] = 512, + [1420] = 476, + [1421] = 432, + [1422] = 480, + [1423] = 481, + [1424] = 483, + [1425] = 496, + [1426] = 513, + [1427] = 425, + [1428] = 426, + [1429] = 1345, + [1430] = 497, + [1431] = 514, [1432] = 498, - [1433] = 527, - [1434] = 496, - [1435] = 1330, - [1436] = 424, - [1437] = 1384, - [1438] = 495, - [1439] = 503, - [1440] = 1382, - [1441] = 494, - [1442] = 508, - [1443] = 1336, - [1444] = 266, - [1445] = 1341, - [1446] = 491, - [1447] = 429, - [1448] = 430, - [1449] = 431, - [1450] = 315, - [1451] = 300, - [1452] = 297, - [1453] = 323, - [1454] = 353, - [1455] = 444, - [1456] = 289, - [1457] = 443, - [1458] = 467, - [1459] = 1459, - [1460] = 439, - [1461] = 438, - [1462] = 437, - [1463] = 1463, - [1464] = 1464, - [1465] = 434, - [1466] = 310, - [1467] = 307, - [1468] = 341, - [1469] = 344, - [1470] = 1384, - [1471] = 385, - [1472] = 376, - [1473] = 391, - [1474] = 305, - [1475] = 1459, - [1476] = 1382, - [1477] = 1463, + [1433] = 515, + [1434] = 499, + [1435] = 516, + [1436] = 500, + [1437] = 1339, + [1438] = 517, + [1439] = 427, + [1440] = 528, + [1441] = 430, + [1442] = 431, + [1443] = 501, + [1444] = 518, + [1445] = 1294, + [1446] = 1345, + [1447] = 502, + [1448] = 477, + [1449] = 356, + [1450] = 1345, + [1451] = 1345, + [1452] = 366, + [1453] = 299, + [1454] = 457, + [1455] = 505, + [1456] = 288, + [1457] = 337, + [1458] = 338, + [1459] = 1345, + [1460] = 520, + [1461] = 522, + [1462] = 292, + [1463] = 523, + [1464] = 524, + [1465] = 1465, + [1466] = 1466, + [1467] = 1345, + [1468] = 338, + [1469] = 309, + [1470] = 1470, + [1471] = 1471, + [1472] = 299, + [1473] = 1466, + [1474] = 1474, + [1475] = 1358, + [1476] = 1374, + [1477] = 1477, [1478] = 1478, - [1479] = 1464, - [1480] = 1332, - [1481] = 1384, - [1482] = 1464, - [1483] = 325, - [1484] = 1463, - [1485] = 328, - [1486] = 395, - [1487] = 1330, - [1488] = 311, - [1489] = 1459, - [1490] = 411, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, + [1479] = 288, + [1480] = 302, + [1481] = 1339, + [1482] = 310, + [1483] = 1377, + [1484] = 1377, + [1485] = 1485, + [1486] = 299, + [1487] = 1294, + [1488] = 330, + [1489] = 371, + [1490] = 309, + [1491] = 310, + [1492] = 387, + [1493] = 388, [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 309, - [1498] = 304, - [1499] = 408, - [1500] = 420, - [1501] = 1501, - [1502] = 341, - [1503] = 265, - [1504] = 344, - [1505] = 264, - [1506] = 309, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 323, - [1512] = 353, - [1513] = 1513, - [1514] = 1514, + [1495] = 331, + [1496] = 297, + [1497] = 1497, + [1498] = 305, + [1499] = 1499, + [1500] = 1500, + [1501] = 1466, + [1502] = 389, + [1503] = 1404, + [1504] = 331, + [1505] = 1505, + [1506] = 1506, + [1507] = 338, + [1508] = 1404, + [1509] = 1465, + [1510] = 1339, + [1511] = 1511, + [1512] = 356, + [1513] = 1506, + [1514] = 337, [1515] = 1515, - [1516] = 1330, - [1517] = 1332, - [1518] = 342, - [1519] = 1519, - [1520] = 311, - [1521] = 1521, - [1522] = 1522, - [1523] = 1399, - [1524] = 315, - [1525] = 289, - [1526] = 305, - [1527] = 1527, - [1528] = 304, - [1529] = 353, - [1530] = 312, - [1531] = 1382, - [1532] = 1501, - [1533] = 1491, - [1534] = 323, - [1535] = 1496, - [1536] = 288, - [1537] = 288, - [1538] = 1495, + [1516] = 1374, + [1517] = 1517, + [1518] = 366, + [1519] = 375, + [1520] = 1500, + [1521] = 383, + [1522] = 1294, + [1523] = 305, + [1524] = 325, + [1525] = 384, + [1526] = 265, + [1527] = 337, + [1528] = 264, + [1529] = 330, + [1530] = 296, + [1531] = 1515, + [1532] = 1532, + [1533] = 1533, + [1534] = 288, + [1535] = 1535, + [1536] = 1536, + [1537] = 1465, + [1538] = 1019, [1539] = 1539, - [1540] = 493, - [1541] = 1513, - [1542] = 288, - [1543] = 353, - [1544] = 448, + [1540] = 388, + [1541] = 389, + [1542] = 1374, + [1543] = 1543, + [1544] = 480, [1545] = 1545, [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 341, - [1552] = 1552, - [1553] = 309, - [1554] = 1554, - [1555] = 391, - [1556] = 344, - [1557] = 323, - [1558] = 443, - [1559] = 1559, - [1560] = 447, - [1561] = 429, - [1562] = 430, - [1563] = 1495, - [1564] = 1494, - [1565] = 1493, - [1566] = 1382, - [1567] = 1567, - [1568] = 1492, - [1569] = 385, + [1547] = 1404, + [1548] = 1377, + [1549] = 1465, + [1550] = 473, + [1551] = 1551, + [1552] = 1404, + [1553] = 1553, + [1554] = 383, + [1555] = 481, + [1556] = 389, + [1557] = 1465, + [1558] = 1558, + [1559] = 1533, + [1560] = 387, + [1561] = 472, + [1562] = 477, + [1563] = 1048, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1485, + [1568] = 483, + [1569] = 1339, [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 311, - [1574] = 1574, - [1575] = 408, - [1576] = 1576, + [1573] = 1573, + [1574] = 425, + [1575] = 1575, + [1576] = 288, [1577] = 1577, - [1578] = 1578, - [1579] = 376, + [1578] = 465, + [1579] = 426, [1580] = 1580, - [1581] = 1581, - [1582] = 1510, - [1583] = 1521, - [1584] = 1509, - [1585] = 1459, - [1586] = 1586, + [1581] = 384, + [1582] = 1582, + [1583] = 1374, + [1584] = 1584, + [1585] = 1585, + [1586] = 1511, [1587] = 1587, - [1588] = 420, - [1589] = 1463, - [1590] = 309, - [1591] = 408, - [1592] = 411, - [1593] = 304, + [1588] = 427, + [1589] = 1294, + [1590] = 1536, + [1591] = 1517, + [1592] = 1532, + [1593] = 528, [1594] = 1594, [1595] = 1595, - [1596] = 432, - [1597] = 1597, - [1598] = 1464, - [1599] = 1515, - [1600] = 1494, - [1601] = 1601, - [1602] = 1527, - [1603] = 431, + [1596] = 1497, + [1597] = 1535, + [1598] = 1470, + [1599] = 267, + [1600] = 1600, + [1601] = 1477, + [1602] = 429, + [1603] = 430, [1604] = 1604, [1605] = 1605, - [1606] = 1508, - [1607] = 1493, - [1608] = 385, - [1609] = 1609, - [1610] = 1522, - [1611] = 1611, - [1612] = 1507, - [1613] = 1613, - [1614] = 1492, - [1615] = 1050, - [1616] = 1616, + [1606] = 467, + [1607] = 299, + [1608] = 1608, + [1609] = 431, + [1610] = 1610, + [1611] = 337, + [1612] = 387, + [1613] = 338, + [1614] = 1614, + [1615] = 1615, + [1616] = 309, [1617] = 1617, - [1618] = 1618, - [1619] = 1330, - [1620] = 1620, - [1621] = 395, - [1622] = 439, - [1623] = 1623, - [1624] = 473, - [1625] = 411, - [1626] = 1626, - [1627] = 1332, - [1628] = 470, - [1629] = 469, - [1630] = 1464, - [1631] = 1631, + [1618] = 310, + [1619] = 1511, + [1620] = 388, + [1621] = 469, + [1622] = 1622, + [1623] = 337, + [1624] = 338, + [1625] = 1625, + [1626] = 265, + [1627] = 1013, + [1628] = 1628, + [1629] = 264, + [1630] = 1630, + [1631] = 383, [1632] = 1632, - [1633] = 1633, - [1634] = 1463, + [1633] = 1478, + [1634] = 1634, [1635] = 1635, - [1636] = 265, - [1637] = 1384, - [1638] = 467, + [1636] = 373, + [1637] = 1637, + [1638] = 1638, [1639] = 1639, - [1640] = 266, - [1641] = 264, - [1642] = 376, + [1640] = 1640, + [1641] = 375, + [1642] = 1642, [1643] = 1643, - [1644] = 1644, - [1645] = 1330, + [1644] = 432, + [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 377, - [1649] = 1649, - [1650] = 1459, - [1651] = 1651, - [1652] = 466, - [1653] = 465, - [1654] = 1654, - [1655] = 1655, - [1656] = 526, + [1648] = 1648, + [1649] = 309, + [1650] = 1650, + [1651] = 1377, + [1652] = 1652, + [1653] = 1653, + [1654] = 505, + [1655] = 445, + [1656] = 1656, [1657] = 1657, - [1658] = 305, - [1659] = 434, - [1660] = 1384, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, + [1661] = 1474, + [1662] = 446, + [1663] = 1517, [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, - [1668] = 344, - [1669] = 1669, - [1670] = 271, - [1671] = 267, - [1672] = 464, - [1673] = 463, - [1674] = 289, + [1668] = 457, + [1669] = 371, + [1670] = 384, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, + [1674] = 1466, [1675] = 1675, - [1676] = 269, + [1676] = 296, [1677] = 1677, [1678] = 1678, - [1679] = 341, - [1680] = 453, - [1681] = 451, - [1682] = 1382, - [1683] = 449, + [1679] = 1532, + [1680] = 1505, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, [1684] = 1684, - [1685] = 1685, + [1685] = 297, [1686] = 1686, - [1687] = 315, - [1688] = 1688, - [1689] = 1689, - [1690] = 444, - [1691] = 1691, - [1692] = 486, - [1693] = 268, - [1694] = 420, + [1687] = 1687, + [1688] = 447, + [1689] = 330, + [1690] = 1690, + [1691] = 270, + [1692] = 1692, + [1693] = 1693, + [1694] = 272, [1695] = 1695, - [1696] = 1696, + [1696] = 1339, [1697] = 1016, - [1698] = 1698, - [1699] = 438, - [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 273, - [1705] = 437, - [1706] = 1514, - [1707] = 1707, - [1708] = 1708, - [1709] = 1332, - [1710] = 487, - [1711] = 1711, + [1698] = 1017, + [1699] = 1018, + [1700] = 305, + [1701] = 476, + [1702] = 273, + [1703] = 271, + [1704] = 1704, + [1705] = 269, + [1706] = 1706, + [1707] = 331, + [1708] = 520, + [1709] = 1294, + [1710] = 1710, + [1711] = 1499, [1712] = 1712, - [1713] = 1012, + [1713] = 462, [1714] = 1714, - [1715] = 1013, - [1716] = 1716, + [1715] = 1535, + [1716] = 522, [1717] = 1717, - [1718] = 1718, - [1719] = 1014, - [1720] = 489, - [1721] = 1015, + [1718] = 1466, + [1719] = 1719, + [1720] = 523, + [1721] = 1721, [1722] = 1722, - [1723] = 1723, + [1723] = 524, [1724] = 1724, [1725] = 1725, - [1726] = 465, - [1727] = 1711, - [1728] = 1601, - [1729] = 1493, - [1730] = 1597, - [1731] = 1731, - [1732] = 443, - [1733] = 466, - [1734] = 1734, - [1735] = 1684, - [1736] = 1685, - [1737] = 1686, - [1738] = 1494, - [1739] = 1688, - [1740] = 408, - [1741] = 493, - [1742] = 1604, - [1743] = 489, - [1744] = 1495, + [1726] = 1532, + [1727] = 1693, + [1728] = 1695, + [1729] = 1710, + [1730] = 1724, + [1731] = 1638, + [1732] = 1539, + [1733] = 1543, + [1734] = 1545, + [1735] = 1546, + [1736] = 1736, + [1737] = 425, + [1738] = 426, + [1739] = 1625, + [1740] = 1740, + [1741] = 1741, + [1742] = 427, + [1743] = 528, + [1744] = 472, [1745] = 1745, - [1746] = 493, - [1747] = 1464, - [1748] = 1605, - [1749] = 1749, - [1750] = 1382, - [1751] = 487, - [1752] = 486, - [1753] = 1463, - [1754] = 1754, - [1755] = 1463, - [1756] = 431, - [1757] = 1459, - [1758] = 1758, - [1759] = 341, - [1760] = 1760, - [1761] = 1464, - [1762] = 1330, - [1763] = 285, - [1764] = 1459, - [1765] = 1492, - [1766] = 283, - [1767] = 344, - [1768] = 286, - [1769] = 276, - [1770] = 463, - [1771] = 1492, - [1772] = 432, - [1773] = 377, - [1774] = 489, - [1775] = 526, - [1776] = 526, - [1777] = 408, - [1778] = 1493, - [1779] = 1708, - [1780] = 1494, - [1781] = 1384, - [1782] = 1012, - [1783] = 1013, - [1784] = 1014, - [1785] = 1384, - [1786] = 273, - [1787] = 344, - [1788] = 1015, - [1789] = 268, - [1790] = 1332, - [1791] = 341, - [1792] = 1495, - [1793] = 464, - [1794] = 1554, - [1795] = 437, - [1796] = 420, - [1797] = 1695, - [1798] = 1507, - [1799] = 1696, - [1800] = 1508, - [1801] = 1509, - [1802] = 1510, - [1803] = 269, - [1804] = 1698, - [1805] = 1513, - [1806] = 1514, - [1807] = 1662, - [1808] = 1595, - [1809] = 1700, - [1810] = 376, - [1811] = 1701, - [1812] = 1664, - [1813] = 420, - [1814] = 1702, - [1815] = 1703, - [1816] = 1707, - [1817] = 439, - [1818] = 1665, - [1819] = 267, - [1820] = 487, - [1821] = 1714, - [1822] = 1716, - [1823] = 1717, - [1824] = 1718, - [1825] = 1675, - [1826] = 1712, - [1827] = 1722, - [1828] = 271, - [1829] = 1539, - [1830] = 1661, - [1831] = 1657, - [1832] = 1655, - [1833] = 1654, - [1834] = 1651, - [1835] = 1649, - [1836] = 1639, - [1837] = 1635, - [1838] = 1667, - [1839] = 1839, - [1840] = 1626, - [1841] = 467, - [1842] = 1842, - [1843] = 1623, - [1844] = 1620, - [1845] = 1618, - [1846] = 1617, - [1847] = 1616, - [1848] = 1613, - [1849] = 469, - [1850] = 1611, - [1851] = 1609, - [1852] = 1594, - [1853] = 1587, - [1854] = 1586, - [1855] = 1581, - [1856] = 1578, - [1857] = 1577, - [1858] = 1576, - [1859] = 1574, - [1860] = 1572, - [1861] = 453, - [1862] = 1571, - [1863] = 1570, - [1864] = 470, - [1865] = 1567, - [1866] = 1559, - [1867] = 1382, - [1868] = 1868, - [1869] = 451, - [1870] = 463, - [1871] = 274, - [1872] = 464, - [1873] = 449, - [1874] = 1669, - [1875] = 411, - [1876] = 1677, - [1877] = 1877, - [1878] = 1678, - [1879] = 1016, - [1880] = 1647, - [1881] = 1552, - [1882] = 1646, - [1883] = 447, - [1884] = 448, - [1885] = 1885, - [1886] = 1631, - [1887] = 1550, - [1888] = 411, - [1889] = 1644, - [1890] = 1549, - [1891] = 1632, - [1892] = 1633, - [1893] = 1643, - [1894] = 444, - [1895] = 1548, - [1896] = 429, - [1897] = 385, - [1898] = 486, - [1899] = 430, - [1900] = 377, - [1901] = 1901, - [1902] = 1546, - [1903] = 1547, - [1904] = 1545, - [1905] = 432, - [1906] = 1663, - [1907] = 1691, - [1908] = 1689, - [1909] = 280, - [1910] = 1050, - [1911] = 470, - [1912] = 1666, - [1913] = 408, - [1914] = 469, - [1915] = 434, - [1916] = 266, - [1917] = 465, - [1918] = 466, - [1919] = 473, - [1920] = 1723, - [1921] = 1724, - [1922] = 438, - [1923] = 391, - [1924] = 1725, + [1746] = 447, + [1747] = 389, + [1748] = 430, + [1749] = 431, + [1750] = 1750, + [1751] = 1751, + [1752] = 469, + [1753] = 280, + [1754] = 476, + [1755] = 477, + [1756] = 445, + [1757] = 446, + [1758] = 457, + [1759] = 1632, + [1760] = 279, + [1761] = 462, + [1762] = 465, + [1763] = 467, + [1764] = 267, + [1765] = 473, + [1766] = 383, + [1767] = 480, + [1768] = 481, + [1769] = 483, + [1770] = 384, + [1771] = 425, + [1772] = 426, + [1773] = 427, + [1774] = 528, + [1775] = 429, + [1776] = 430, + [1777] = 431, + [1778] = 457, + [1779] = 432, + [1780] = 1780, + [1781] = 1781, + [1782] = 337, + [1783] = 1637, + [1784] = 1374, + [1785] = 338, + [1786] = 387, + [1787] = 1594, + [1788] = 387, + [1789] = 1610, + [1790] = 1377, + [1791] = 1614, + [1792] = 1615, + [1793] = 1617, + [1794] = 1628, + [1795] = 1630, + [1796] = 1725, + [1797] = 1640, + [1798] = 1048, + [1799] = 1664, + [1800] = 1666, + [1801] = 388, + [1802] = 1802, + [1803] = 1505, + [1804] = 1533, + [1805] = 1511, + [1806] = 1536, + [1807] = 1470, + [1808] = 1477, + [1809] = 1517, + [1810] = 1478, + [1811] = 1532, + [1812] = 1535, + [1813] = 1813, + [1814] = 1814, + [1815] = 1466, + [1816] = 1816, + [1817] = 1404, + [1818] = 1465, + [1819] = 337, + [1820] = 338, + [1821] = 270, + [1822] = 272, + [1823] = 273, + [1824] = 271, + [1825] = 269, + [1826] = 373, + [1827] = 1643, + [1828] = 371, + [1829] = 373, + [1830] = 505, + [1831] = 520, + [1832] = 522, + [1833] = 523, + [1834] = 524, + [1835] = 1660, + [1836] = 1667, + [1837] = 1675, + [1838] = 1339, + [1839] = 286, + [1840] = 1840, + [1841] = 284, + [1842] = 283, + [1843] = 285, + [1844] = 1294, + [1845] = 1374, + [1846] = 388, + [1847] = 1377, + [1848] = 387, + [1849] = 505, + [1850] = 1466, + [1851] = 1582, + [1852] = 1634, + [1853] = 1404, + [1854] = 520, + [1855] = 1639, + [1856] = 1465, + [1857] = 522, + [1858] = 523, + [1859] = 524, + [1860] = 1647, + [1861] = 1511, + [1862] = 389, + [1863] = 1517, + [1864] = 1016, + [1865] = 1017, + [1866] = 1018, + [1867] = 1019, + [1868] = 1535, + [1869] = 1678, + [1870] = 1714, + [1871] = 1719, + [1872] = 1722, + [1873] = 1575, + [1874] = 1642, + [1875] = 1648, + [1876] = 1650, + [1877] = 1558, + [1878] = 1564, + [1879] = 1656, + [1880] = 1013, + [1881] = 1657, + [1882] = 1658, + [1883] = 1659, + [1884] = 1566, + [1885] = 1577, + [1886] = 1584, + [1887] = 1604, + [1888] = 1682, + [1889] = 1683, + [1890] = 1684, + [1891] = 1687, + [1892] = 1690, + [1893] = 1704, + [1894] = 1706, + [1895] = 1712, + [1896] = 1605, + [1897] = 1608, + [1898] = 1717, + [1899] = 1721, + [1900] = 1551, + [1901] = 1553, + [1902] = 1565, + [1903] = 1570, + [1904] = 1571, + [1905] = 1572, + [1906] = 1573, + [1907] = 1580, + [1908] = 1585, + [1909] = 1587, + [1910] = 1595, + [1911] = 1600, + [1912] = 1622, + [1913] = 1635, + [1914] = 1645, + [1915] = 1646, + [1916] = 1652, + [1917] = 1653, + [1918] = 1671, + [1919] = 1672, + [1920] = 1673, + [1921] = 1677, + [1922] = 1681, + [1923] = 1686, + [1924] = 1692, [1925] = 1925, - [1926] = 311, - [1927] = 1927, - [1928] = 1510, - [1929] = 1492, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1509, - [1935] = 1684, - [1936] = 391, - [1937] = 1685, - [1938] = 1459, - [1939] = 1686, - [1940] = 420, - [1941] = 1493, - [1942] = 1688, - [1943] = 1508, - [1944] = 1507, - [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1494, + [1926] = 1600, + [1927] = 1622, + [1928] = 1635, + [1929] = 1645, + [1930] = 1646, + [1931] = 1652, + [1932] = 1653, + [1933] = 1671, + [1934] = 1672, + [1935] = 1673, + [1936] = 1677, + [1937] = 1681, + [1938] = 1686, + [1939] = 1692, + [1940] = 1693, + [1941] = 1695, + [1942] = 1710, + [1943] = 1724, + [1944] = 1638, + [1945] = 1539, + [1946] = 1543, + [1947] = 1545, + [1948] = 1595, + [1949] = 1949, [1950] = 1950, - [1951] = 1734, + [1951] = 1587, [1952] = 1952, [1953] = 1953, - [1954] = 344, - [1955] = 1463, - [1956] = 1731, - [1957] = 1749, - [1958] = 1495, - [1959] = 1695, + [1954] = 1954, + [1955] = 288, + [1956] = 302, + [1957] = 429, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1962, + [1962] = 523, [1963] = 1963, [1964] = 1964, - [1965] = 294, + [1965] = 1965, [1966] = 1966, - [1967] = 1696, - [1968] = 487, - [1969] = 1698, - [1970] = 1700, - [1971] = 1701, + [1967] = 1967, + [1968] = 1968, + [1969] = 432, + [1970] = 1970, + [1971] = 1971, [1972] = 1972, - [1973] = 309, - [1974] = 1974, - [1975] = 1975, + [1973] = 1973, + [1974] = 387, + [1975] = 290, [1976] = 1976, - [1977] = 1702, - [1978] = 1703, - [1979] = 1707, - [1980] = 1464, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 524, [1981] = 1981, [1982] = 1982, - [1983] = 1714, + [1983] = 1983, [1984] = 1984, - [1985] = 486, - [1986] = 1716, + [1985] = 1985, + [1986] = 1986, [1987] = 1987, [1988] = 1988, [1989] = 1989, [1990] = 1990, [1991] = 1991, [1992] = 1992, - [1993] = 411, - [1994] = 1717, - [1995] = 1718, - [1996] = 1877, - [1997] = 1997, - [1998] = 1722, - [1999] = 1885, - [2000] = 526, - [2001] = 341, - [2002] = 1539, + [1993] = 425, + [1994] = 426, + [1995] = 1995, + [1996] = 1996, + [1997] = 427, + [1998] = 528, + [1999] = 1999, + [2000] = 430, + [2001] = 431, + [2002] = 2002, [2003] = 2003, - [2004] = 1661, - [2005] = 288, - [2006] = 1657, - [2007] = 1745, - [2008] = 2008, - [2009] = 2009, - [2010] = 1655, - [2011] = 2011, - [2012] = 2012, - [2013] = 1654, - [2014] = 2014, - [2015] = 1513, - [2016] = 1514, - [2017] = 307, - [2018] = 1651, - [2019] = 2019, - [2020] = 1649, - [2021] = 1639, - [2022] = 2022, - [2023] = 1635, + [2004] = 2004, + [2005] = 387, + [2006] = 2006, + [2007] = 2007, + [2008] = 457, + [2009] = 307, + [2010] = 337, + [2011] = 389, + [2012] = 286, + [2013] = 338, + [2014] = 284, + [2015] = 283, + [2016] = 2016, + [2017] = 285, + [2018] = 1780, + [2019] = 1781, + [2020] = 289, + [2021] = 1751, + [2022] = 1511, + [2023] = 1642, [2024] = 2024, - [2025] = 2025, - [2026] = 1626, - [2027] = 1623, + [2025] = 1517, + [2026] = 2026, + [2027] = 2027, [2028] = 2028, - [2029] = 1620, - [2030] = 408, + [2029] = 2029, + [2030] = 299, [2031] = 2031, [2032] = 2032, [2033] = 2033, - [2034] = 2034, - [2035] = 1618, - [2036] = 1617, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, + [2034] = 315, + [2035] = 388, + [2036] = 309, + [2037] = 520, + [2038] = 310, + [2039] = 299, [2040] = 2040, [2041] = 2041, - [2042] = 1616, - [2043] = 289, + [2042] = 1740, + [2043] = 1741, [2044] = 2044, - [2045] = 1613, - [2046] = 1052, - [2047] = 1595, - [2048] = 1051, - [2049] = 432, - [2050] = 489, - [2051] = 1046, - [2052] = 1611, - [2053] = 1609, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, + [2045] = 309, + [2046] = 296, + [2047] = 2047, + [2048] = 310, + [2049] = 2049, + [2050] = 2050, + [2051] = 373, + [2052] = 2052, + [2053] = 2053, + [2054] = 292, + [2055] = 288, + [2056] = 1532, [2057] = 2057, - [2058] = 1594, - [2059] = 2059, - [2060] = 294, - [2061] = 1842, - [2062] = 1839, - [2063] = 1587, - [2064] = 1586, - [2065] = 1581, + [2058] = 1505, + [2059] = 505, + [2060] = 1533, + [2061] = 2061, + [2062] = 294, + [2063] = 1511, + [2064] = 290, + [2065] = 2065, [2066] = 2066, - [2067] = 1578, - [2068] = 1577, - [2069] = 1576, - [2070] = 1574, - [2071] = 293, + [2067] = 1536, + [2068] = 1470, + [2069] = 1477, + [2070] = 1478, + [2071] = 2071, [2072] = 2072, - [2073] = 2073, - [2074] = 1572, - [2075] = 1571, - [2076] = 1570, - [2077] = 1567, - [2078] = 1559, - [2079] = 1041, - [2080] = 2080, - [2081] = 2081, + [2073] = 1535, + [2074] = 305, + [2075] = 297, + [2076] = 1517, + [2077] = 1532, + [2078] = 1745, + [2079] = 1736, + [2080] = 1535, + [2081] = 315, [2082] = 2082, - [2083] = 283, - [2084] = 2084, - [2085] = 305, - [2086] = 493, - [2087] = 293, - [2088] = 2088, - [2089] = 2089, - [2090] = 304, - [2091] = 467, + [2083] = 2083, + [2084] = 388, + [2085] = 2085, + [2086] = 2086, + [2087] = 1053, + [2088] = 1031, + [2089] = 1032, + [2090] = 1030, + [2091] = 2091, [2092] = 2092, [2093] = 2093, - [2094] = 305, - [2095] = 310, - [2096] = 2096, + [2094] = 2094, + [2095] = 2095, + [2096] = 1038, [2097] = 1039, - [2098] = 1037, - [2099] = 1036, - [2100] = 1033, - [2101] = 1032, - [2102] = 463, - [2103] = 464, - [2104] = 1040, - [2105] = 1042, - [2106] = 2106, - [2107] = 2107, - [2108] = 1031, - [2109] = 377, - [2110] = 473, - [2111] = 2111, - [2112] = 285, - [2113] = 1760, - [2114] = 1901, - [2115] = 2115, + [2098] = 1040, + [2099] = 1041, + [2100] = 1042, + [2101] = 1043, + [2102] = 1044, + [2103] = 1045, + [2104] = 2104, + [2105] = 522, + [2106] = 1656, + [2107] = 1657, + [2108] = 279, + [2109] = 1466, + [2110] = 1658, + [2111] = 1659, + [2112] = 2112, + [2113] = 371, + [2114] = 280, + [2115] = 1404, [2116] = 2116, [2117] = 2117, - [2118] = 1495, - [2119] = 280, - [2120] = 1758, - [2121] = 2121, - [2122] = 315, - [2123] = 1494, - [2124] = 286, - [2125] = 1493, - [2126] = 276, - [2127] = 297, - [2128] = 408, + [2118] = 2118, + [2119] = 1682, + [2120] = 1683, + [2121] = 1684, + [2122] = 1687, + [2123] = 1690, + [2124] = 1704, + [2125] = 1706, + [2126] = 1712, + [2127] = 2127, + [2128] = 2128, [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 1492, - [2133] = 420, - [2134] = 2134, - [2135] = 465, - [2136] = 466, - [2137] = 2137, - [2138] = 300, + [2130] = 1465, + [2131] = 1816, + [2132] = 1750, + [2133] = 1717, + [2134] = 1721, + [2135] = 1813, + [2136] = 1814, + [2137] = 1551, + [2138] = 1553, [2139] = 2139, - [2140] = 288, - [2141] = 274, - [2142] = 304, - [2143] = 312, - [2144] = 470, - [2145] = 469, - [2146] = 2146, - [2147] = 309, - [2148] = 2148, - [2149] = 2148, - [2150] = 312, - [2151] = 1997, - [2152] = 1984, - [2153] = 2137, - [2154] = 2139, - [2155] = 2134, - [2156] = 1654, - [2157] = 1651, - [2158] = 1649, - [2159] = 2148, - [2160] = 1639, - [2161] = 328, - [2162] = 1635, - [2163] = 1626, - [2164] = 1623, - [2165] = 2148, - [2166] = 1620, - [2167] = 294, - [2168] = 2041, - [2169] = 2040, - [2170] = 2148, - [2171] = 1609, - [2172] = 1617, - [2173] = 1616, - [2174] = 1613, - [2175] = 1611, - [2176] = 1953, - [2177] = 2039, - [2178] = 2146, - [2179] = 2092, - [2180] = 1594, - [2181] = 293, - [2182] = 2038, - [2183] = 2037, - [2184] = 1925, - [2185] = 1688, - [2186] = 1052, - [2187] = 1051, - [2188] = 1991, - [2189] = 1587, - [2190] = 2129, - [2191] = 2148, - [2192] = 323, - [2193] = 353, - [2194] = 2093, - [2195] = 2096, - [2196] = 1586, - [2197] = 2111, - [2198] = 325, - [2199] = 2148, - [2200] = 1990, - [2201] = 1657, - [2202] = 2148, - [2203] = 2034, - [2204] = 1989, - [2205] = 1992, - [2206] = 1661, - [2207] = 1988, - [2208] = 1987, - [2209] = 1046, - [2210] = 2148, - [2211] = 2148, - [2212] = 1976, - [2213] = 2033, - [2214] = 1581, - [2215] = 1578, - [2216] = 1539, - [2217] = 1577, - [2218] = 1722, - [2219] = 1576, - [2220] = 304, - [2221] = 2221, - [2222] = 1975, - [2223] = 2148, - [2224] = 300, - [2225] = 467, - [2226] = 2148, - [2227] = 1574, - [2228] = 1572, - [2229] = 1974, - [2230] = 1972, - [2231] = 293, - [2232] = 341, - [2233] = 1718, - [2234] = 1571, - [2235] = 305, - [2236] = 2031, - [2237] = 2003, - [2238] = 1041, - [2239] = 2014, - [2240] = 2084, - [2241] = 2148, - [2242] = 2148, - [2243] = 2148, - [2244] = 2148, - [2245] = 344, - [2246] = 2066, - [2247] = 293, - [2248] = 1717, - [2249] = 2249, - [2250] = 2148, - [2251] = 2072, - [2252] = 2148, - [2253] = 1716, - [2254] = 1714, - [2255] = 1570, - [2256] = 1567, - [2257] = 2148, - [2258] = 2148, + [2140] = 1565, + [2141] = 1570, + [2142] = 1571, + [2143] = 1572, + [2144] = 1573, + [2145] = 1580, + [2146] = 1585, + [2147] = 1546, + [2148] = 296, + [2149] = 1570, + [2150] = 1571, + [2151] = 1572, + [2152] = 1573, + [2153] = 1580, + [2154] = 1585, + [2155] = 2155, + [2156] = 1587, + [2157] = 1595, + [2158] = 1600, + [2159] = 1622, + [2160] = 1635, + [2161] = 1645, + [2162] = 1646, + [2163] = 1652, + [2164] = 1653, + [2165] = 288, + [2166] = 1671, + [2167] = 1972, + [2168] = 1672, + [2169] = 1673, + [2170] = 1677, + [2171] = 1681, + [2172] = 2155, + [2173] = 1686, + [2174] = 1692, + [2175] = 1053, + [2176] = 1031, + [2177] = 1032, + [2178] = 2155, + [2179] = 1030, + [2180] = 1693, + [2181] = 1695, + [2182] = 1710, + [2183] = 1038, + [2184] = 2155, + [2185] = 1039, + [2186] = 1040, + [2187] = 2155, + [2188] = 1041, + [2189] = 1042, + [2190] = 2155, + [2191] = 1043, + [2192] = 1044, + [2193] = 2155, + [2194] = 1045, + [2195] = 2155, + [2196] = 1724, + [2197] = 315, + [2198] = 2155, + [2199] = 1638, + [2200] = 2155, + [2201] = 1539, + [2202] = 1543, + [2203] = 2155, + [2204] = 1545, + [2205] = 1546, + [2206] = 2155, + [2207] = 2155, + [2208] = 2155, + [2209] = 2155, + [2210] = 2155, + [2211] = 2155, + [2212] = 2155, + [2213] = 2155, + [2214] = 2040, + [2215] = 1973, + [2216] = 2155, + [2217] = 2155, + [2218] = 2155, + [2219] = 2155, + [2220] = 2083, + [2221] = 2155, + [2222] = 2155, + [2223] = 1954, + [2224] = 2155, + [2225] = 2041, + [2226] = 2004, + [2227] = 2155, + [2228] = 2044, + [2229] = 2155, + [2230] = 2049, + [2231] = 2155, + [2232] = 2232, + [2233] = 2155, + [2234] = 2052, + [2235] = 356, + [2236] = 2155, + [2237] = 366, + [2238] = 2155, + [2239] = 2239, + [2240] = 2155, + [2241] = 2155, + [2242] = 2155, + [2243] = 2155, + [2244] = 2155, + [2245] = 2155, + [2246] = 2155, + [2247] = 2155, + [2248] = 290, + [2249] = 1535, + [2250] = 289, + [2251] = 1953, + [2252] = 1958, + [2253] = 1959, + [2254] = 1960, + [2255] = 1961, + [2256] = 1963, + [2257] = 1964, + [2258] = 315, [2259] = 2259, - [2260] = 2148, - [2261] = 1031, - [2262] = 1042, - [2263] = 1040, - [2264] = 1559, - [2265] = 294, - [2266] = 1492, - [2267] = 2044, - [2268] = 1032, - [2269] = 1033, - [2270] = 2148, - [2271] = 2148, - [2272] = 2148, - [2273] = 1595, - [2274] = 1964, - [2275] = 2121, - [2276] = 1966, - [2277] = 1707, - [2278] = 2148, - [2279] = 1703, - [2280] = 2148, - [2281] = 2148, - [2282] = 2282, - [2283] = 1930, - [2284] = 2148, - [2285] = 1932, - [2286] = 1702, - [2287] = 2148, - [2288] = 2019, - [2289] = 1655, - [2290] = 1036, - [2291] = 1701, - [2292] = 1700, - [2293] = 1933, - [2294] = 1037, - [2295] = 1039, - [2296] = 1698, - [2297] = 1696, - [2298] = 2148, - [2299] = 2073, - [2300] = 1695, - [2301] = 297, - [2302] = 309, - [2303] = 1947, - [2304] = 1686, - [2305] = 293, - [2306] = 1982, - [2307] = 309, - [2308] = 2148, - [2309] = 1981, - [2310] = 311, - [2311] = 2130, - [2312] = 2131, - [2313] = 2106, - [2314] = 2148, - [2315] = 2148, - [2316] = 2028, - [2317] = 2148, - [2318] = 2148, - [2319] = 315, - [2320] = 2032, - [2321] = 2025, - [2322] = 2024, - [2323] = 2022, - [2324] = 342, - [2325] = 2059, - [2326] = 2107, - [2327] = 1685, - [2328] = 1684, - [2329] = 473, - [2330] = 288, - [2331] = 2082, - [2332] = 2148, - [2333] = 2009, - [2334] = 2054, - [2335] = 2008, - [2336] = 1950, - [2337] = 2081, - [2338] = 1948, - [2339] = 420, - [2340] = 1946, - [2341] = 2148, - [2342] = 2011, - [2343] = 1618, - [2344] = 2055, - [2345] = 2056, - [2346] = 2117, - [2347] = 2115, - [2348] = 2148, - [2349] = 2116, - [2350] = 265, - [2351] = 288, - [2352] = 1962, - [2353] = 310, - [2354] = 1961, - [2355] = 1495, - [2356] = 1945, - [2357] = 2080, - [2358] = 2148, - [2359] = 307, - [2360] = 289, - [2361] = 305, - [2362] = 2088, - [2363] = 2148, - [2364] = 264, - [2365] = 1494, - [2366] = 1963, - [2367] = 304, - [2368] = 2148, - [2369] = 2369, - [2370] = 2057, - [2371] = 1960, - [2372] = 1493, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 268, - [2377] = 273, + [2260] = 2053, + [2261] = 305, + [2262] = 1970, + [2263] = 294, + [2264] = 1965, + [2265] = 1966, + [2266] = 1967, + [2267] = 1968, + [2268] = 309, + [2269] = 315, + [2270] = 290, + [2271] = 1553, + [2272] = 1565, + [2273] = 2086, + [2274] = 1999, + [2275] = 330, + [2276] = 1976, + [2277] = 1977, + [2278] = 2112, + [2279] = 1978, + [2280] = 1979, + [2281] = 2281, + [2282] = 2032, + [2283] = 1981, + [2284] = 1982, + [2285] = 1983, + [2286] = 429, + [2287] = 1984, + [2288] = 1985, + [2289] = 1986, + [2290] = 2047, + [2291] = 388, + [2292] = 325, + [2293] = 1642, + [2294] = 1987, + [2295] = 1988, + [2296] = 432, + [2297] = 2155, + [2298] = 2016, + [2299] = 2117, + [2300] = 310, + [2301] = 1511, + [2302] = 1989, + [2303] = 2029, + [2304] = 1517, + [2305] = 297, + [2306] = 2057, + [2307] = 1990, + [2308] = 1991, + [2309] = 337, + [2310] = 331, + [2311] = 338, + [2312] = 1992, + [2313] = 2028, + [2314] = 299, + [2315] = 299, + [2316] = 2061, + [2317] = 2085, + [2318] = 309, + [2319] = 310, + [2320] = 2093, + [2321] = 2094, + [2322] = 2002, + [2323] = 292, + [2324] = 2095, + [2325] = 2003, + [2326] = 2006, + [2327] = 2104, + [2328] = 2129, + [2329] = 2139, + [2330] = 1949, + [2331] = 1950, + [2332] = 2332, + [2333] = 1925, + [2334] = 2118, + [2335] = 2007, + [2336] = 315, + [2337] = 2050, + [2338] = 2116, + [2339] = 1971, + [2340] = 1952, + [2341] = 1656, + [2342] = 1657, + [2343] = 2026, + [2344] = 2027, + [2345] = 1658, + [2346] = 1659, + [2347] = 2066, + [2348] = 288, + [2349] = 2127, + [2350] = 1532, + [2351] = 1682, + [2352] = 1683, + [2353] = 1684, + [2354] = 1687, + [2355] = 265, + [2356] = 264, + [2357] = 1690, + [2358] = 1704, + [2359] = 1706, + [2360] = 2128, + [2361] = 1712, + [2362] = 1995, + [2363] = 1996, + [2364] = 307, + [2365] = 2091, + [2366] = 2031, + [2367] = 2082, + [2368] = 2033, + [2369] = 1717, + [2370] = 1721, + [2371] = 1551, + [2372] = 302, + [2373] = 388, + [2374] = 387, + [2375] = 325, + [2376] = 2376, + [2377] = 2377, [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 293, - [2382] = 408, + [2379] = 337, + [2380] = 338, + [2381] = 2381, + [2382] = 389, [2383] = 2383, - [2384] = 2384, - [2385] = 267, - [2386] = 2386, + [2384] = 356, + [2385] = 265, + [2386] = 264, [2387] = 2387, [2388] = 2388, - [2389] = 265, + [2389] = 2389, [2390] = 2390, - [2391] = 264, + [2391] = 366, [2392] = 2392, [2393] = 2393, - [2394] = 353, - [2395] = 323, + [2394] = 2394, + [2395] = 2395, [2396] = 2396, - [2397] = 2397, - [2398] = 395, - [2399] = 2399, + [2397] = 375, + [2398] = 265, + [2399] = 264, [2400] = 2400, - [2401] = 411, - [2402] = 2402, - [2403] = 2403, - [2404] = 328, - [2405] = 344, - [2406] = 269, - [2407] = 2380, - [2408] = 2408, - [2409] = 2409, - [2410] = 293, - [2411] = 266, - [2412] = 2412, + [2401] = 2401, + [2402] = 272, + [2403] = 273, + [2404] = 271, + [2405] = 269, + [2406] = 2406, + [2407] = 315, + [2408] = 330, + [2409] = 331, + [2410] = 371, + [2411] = 383, + [2412] = 384, [2413] = 2413, - [2414] = 342, - [2415] = 407, - [2416] = 341, - [2417] = 377, + [2414] = 2414, + [2415] = 2415, + [2416] = 414, + [2417] = 315, [2418] = 2418, - [2419] = 420, + [2419] = 2419, [2420] = 2420, - [2421] = 391, - [2422] = 385, - [2423] = 265, - [2424] = 376, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2383, [2425] = 2425, [2426] = 2426, - [2427] = 264, - [2428] = 325, - [2429] = 271, - [2430] = 2430, - [2431] = 489, - [2432] = 274, - [2433] = 285, - [2434] = 2434, - [2435] = 449, - [2436] = 376, - [2437] = 439, - [2438] = 420, - [2439] = 451, - [2440] = 2440, - [2441] = 453, - [2442] = 266, - [2443] = 283, - [2444] = 508, - [2445] = 395, - [2446] = 431, - [2447] = 503, - [2448] = 411, - [2449] = 286, - [2450] = 268, - [2451] = 463, - [2452] = 464, - [2453] = 385, - [2454] = 424, - [2455] = 2455, - [2456] = 266, - [2457] = 527, - [2458] = 525, - [2459] = 276, - [2460] = 523, - [2461] = 521, - [2462] = 2462, - [2463] = 2455, - [2464] = 2464, - [2465] = 264, - [2466] = 465, - [2467] = 377, - [2468] = 466, - [2469] = 519, - [2470] = 420, - [2471] = 444, - [2472] = 265, - [2473] = 2462, - [2474] = 447, - [2475] = 408, - [2476] = 448, - [2477] = 517, - [2478] = 2464, - [2479] = 467, - [2480] = 2480, - [2481] = 469, - [2482] = 470, - [2483] = 486, - [2484] = 273, - [2485] = 522, - [2486] = 487, - [2487] = 515, - [2488] = 513, - [2489] = 423, - [2490] = 499, - [2491] = 473, - [2492] = 492, - [2493] = 429, - [2494] = 430, - [2495] = 443, - [2496] = 528, - [2497] = 502, - [2498] = 280, - [2499] = 2499, - [2500] = 432, - [2501] = 507, - [2502] = 510, - [2503] = 490, - [2504] = 511, - [2505] = 516, - [2506] = 518, - [2507] = 520, - [2508] = 500, - [2509] = 493, - [2510] = 498, - [2511] = 496, - [2512] = 495, - [2513] = 494, - [2514] = 265, - [2515] = 408, - [2516] = 488, - [2517] = 273, - [2518] = 269, - [2519] = 438, - [2520] = 437, - [2521] = 491, - [2522] = 267, - [2523] = 268, - [2524] = 391, - [2525] = 434, - [2526] = 341, - [2527] = 344, - [2528] = 271, - [2529] = 2480, - [2530] = 267, - [2531] = 271, - [2532] = 269, - [2533] = 264, - [2534] = 407, - [2535] = 526, - [2536] = 293, - [2537] = 444, - [2538] = 448, - [2539] = 424, - [2540] = 273, - [2541] = 2541, - [2542] = 527, - [2543] = 447, - [2544] = 522, - [2545] = 300, - [2546] = 525, - [2547] = 283, - [2548] = 408, - [2549] = 297, - [2550] = 528, - [2551] = 502, - [2552] = 507, - [2553] = 288, - [2554] = 510, - [2555] = 511, - [2556] = 453, - [2557] = 285, - [2558] = 518, - [2559] = 486, - [2560] = 520, - [2561] = 500, - [2562] = 508, - [2563] = 498, - [2564] = 496, - [2565] = 451, - [2566] = 443, - [2567] = 487, - [2568] = 449, - [2569] = 495, - [2570] = 489, - [2571] = 523, - [2572] = 294, - [2573] = 494, - [2574] = 488, - [2575] = 344, - [2576] = 304, - [2577] = 491, - [2578] = 307, - [2579] = 341, - [2580] = 309, - [2581] = 286, - [2582] = 310, - [2583] = 463, - [2584] = 311, - [2585] = 309, - [2586] = 439, - [2587] = 521, - [2588] = 266, - [2589] = 276, - [2590] = 283, - [2591] = 273, - [2592] = 464, - [2593] = 519, - [2594] = 276, - [2595] = 304, - [2596] = 2596, - [2597] = 493, - [2598] = 438, - [2599] = 437, - [2600] = 305, - [2601] = 309, - [2602] = 268, - [2603] = 267, - [2604] = 420, - [2605] = 429, - [2606] = 430, - [2607] = 490, - [2608] = 280, - [2609] = 289, - [2610] = 271, - [2611] = 517, - [2612] = 305, - [2613] = 274, - [2614] = 515, - [2615] = 434, - [2616] = 285, - [2617] = 465, - [2618] = 269, - [2619] = 432, - [2620] = 516, - [2621] = 503, - [2622] = 466, - [2623] = 315, - [2624] = 473, - [2625] = 312, - [2626] = 467, - [2627] = 274, - [2628] = 431, - [2629] = 288, - [2630] = 469, - [2631] = 526, - [2632] = 294, - [2633] = 470, - [2634] = 267, - [2635] = 492, - [2636] = 288, - [2637] = 269, - [2638] = 312, - [2639] = 304, - [2640] = 499, - [2641] = 286, - [2642] = 271, - [2643] = 423, - [2644] = 513, - [2645] = 268, - [2646] = 293, - [2647] = 293, - [2648] = 307, - [2649] = 288, - [2650] = 394, - [2651] = 344, - [2652] = 288, - [2653] = 283, - [2654] = 286, - [2655] = 288, - [2656] = 312, - [2657] = 344, - [2658] = 300, - [2659] = 312, - [2660] = 353, - [2661] = 288, - [2662] = 323, - [2663] = 341, + [2427] = 373, + [2428] = 267, + [2429] = 2429, + [2430] = 270, + [2431] = 499, + [2432] = 375, + [2433] = 387, + [2434] = 273, + [2435] = 286, + [2436] = 271, + [2437] = 465, + [2438] = 284, + [2439] = 467, + [2440] = 283, + [2441] = 477, + [2442] = 285, + [2443] = 269, + [2444] = 2444, + [2445] = 264, + [2446] = 2446, + [2447] = 473, + [2448] = 486, + [2449] = 2449, + [2450] = 2450, + [2451] = 488, + [2452] = 337, + [2453] = 389, + [2454] = 383, + [2455] = 489, + [2456] = 280, + [2457] = 490, + [2458] = 491, + [2459] = 492, + [2460] = 493, + [2461] = 494, + [2462] = 495, + [2463] = 472, + [2464] = 496, + [2465] = 497, + [2466] = 498, + [2467] = 265, + [2468] = 500, + [2469] = 501, + [2470] = 502, + [2471] = 445, + [2472] = 480, + [2473] = 384, + [2474] = 414, + [2475] = 503, + [2476] = 446, + [2477] = 267, + [2478] = 481, + [2479] = 506, + [2480] = 507, + [2481] = 508, + [2482] = 483, + [2483] = 509, + [2484] = 510, + [2485] = 511, + [2486] = 512, + [2487] = 279, + [2488] = 514, + [2489] = 515, + [2490] = 516, + [2491] = 517, + [2492] = 518, + [2493] = 469, + [2494] = 388, + [2495] = 2495, + [2496] = 521, + [2497] = 425, + [2498] = 387, + [2499] = 426, + [2500] = 427, + [2501] = 528, + [2502] = 373, + [2503] = 457, + [2504] = 265, + [2505] = 505, + [2506] = 2506, + [2507] = 2444, + [2508] = 2449, + [2509] = 2509, + [2510] = 520, + [2511] = 264, + [2512] = 267, + [2513] = 429, + [2514] = 522, + [2515] = 523, + [2516] = 476, + [2517] = 524, + [2518] = 270, + [2519] = 270, + [2520] = 338, + [2521] = 430, + [2522] = 431, + [2523] = 272, + [2524] = 2506, + [2525] = 272, + [2526] = 273, + [2527] = 271, + [2528] = 269, + [2529] = 462, + [2530] = 432, + [2531] = 2509, + [2532] = 388, + [2533] = 371, + [2534] = 447, + [2535] = 513, + [2536] = 427, + [2537] = 270, + [2538] = 288, + [2539] = 488, + [2540] = 272, + [2541] = 457, + [2542] = 528, + [2543] = 273, + [2544] = 521, + [2545] = 465, + [2546] = 271, + [2547] = 269, + [2548] = 467, + [2549] = 477, + [2550] = 489, + [2551] = 490, + [2552] = 491, + [2553] = 492, + [2554] = 299, + [2555] = 493, + [2556] = 494, + [2557] = 429, + [2558] = 309, + [2559] = 299, + [2560] = 310, + [2561] = 309, + [2562] = 310, + [2563] = 2563, + [2564] = 286, + [2565] = 495, + [2566] = 302, + [2567] = 480, + [2568] = 284, + [2569] = 447, + [2570] = 496, + [2571] = 283, + [2572] = 271, + [2573] = 285, + [2574] = 388, + [2575] = 288, + [2576] = 315, + [2577] = 497, + [2578] = 498, + [2579] = 499, + [2580] = 500, + [2581] = 501, + [2582] = 502, + [2583] = 505, + [2584] = 272, + [2585] = 473, + [2586] = 430, + [2587] = 280, + [2588] = 481, + [2589] = 267, + [2590] = 503, + [2591] = 431, + [2592] = 280, + [2593] = 269, + [2594] = 273, + [2595] = 315, + [2596] = 506, + [2597] = 425, + [2598] = 507, + [2599] = 522, + [2600] = 523, + [2601] = 508, + [2602] = 426, + [2603] = 524, + [2604] = 509, + [2605] = 387, + [2606] = 510, + [2607] = 483, + [2608] = 286, + [2609] = 290, + [2610] = 284, + [2611] = 283, + [2612] = 285, + [2613] = 445, + [2614] = 511, + [2615] = 446, + [2616] = 2616, + [2617] = 512, + [2618] = 476, + [2619] = 513, + [2620] = 514, + [2621] = 515, + [2622] = 432, + [2623] = 462, + [2624] = 516, + [2625] = 517, + [2626] = 305, + [2627] = 307, + [2628] = 337, + [2629] = 518, + [2630] = 289, + [2631] = 338, + [2632] = 292, + [2633] = 294, + [2634] = 309, + [2635] = 315, + [2636] = 310, + [2637] = 288, + [2638] = 472, + [2639] = 290, + [2640] = 279, + [2641] = 296, + [2642] = 297, + [2643] = 469, + [2644] = 302, + [2645] = 270, + [2646] = 486, + [2647] = 520, + [2648] = 283, + [2649] = 331, + [2650] = 296, + [2651] = 283, + [2652] = 309, + [2653] = 307, + [2654] = 2654, + [2655] = 289, + [2656] = 285, + [2657] = 292, + [2658] = 290, + [2659] = 285, + [2660] = 290, + [2661] = 309, + [2662] = 310, + [2663] = 305, [2664] = 2664, - [2665] = 285, - [2666] = 276, - [2667] = 311, + [2665] = 294, + [2666] = 310, + [2667] = 2667, [2668] = 297, - [2669] = 305, - [2670] = 289, - [2671] = 309, - [2672] = 304, - [2673] = 309, - [2674] = 293, - [2675] = 341, - [2676] = 305, - [2677] = 342, - [2678] = 305, - [2679] = 283, - [2680] = 309, - [2681] = 285, - [2682] = 304, - [2683] = 304, - [2684] = 323, - [2685] = 353, - [2686] = 286, - [2687] = 305, - [2688] = 288, - [2689] = 274, - [2690] = 289, - [2691] = 1330, - [2692] = 305, - [2693] = 315, - [2694] = 311, - [2695] = 288, - [2696] = 280, - [2697] = 309, - [2698] = 1332, - [2699] = 300, - [2700] = 297, - [2701] = 294, - [2702] = 305, - [2703] = 293, - [2704] = 304, - [2705] = 307, - [2706] = 310, - [2707] = 2707, - [2708] = 294, - [2709] = 309, - [2710] = 293, - [2711] = 315, - [2712] = 294, - [2713] = 2707, - [2714] = 325, - [2715] = 328, - [2716] = 312, - [2717] = 2664, - [2718] = 309, + [2669] = 338, + [2670] = 310, + [2671] = 286, + [2672] = 299, + [2673] = 284, + [2674] = 280, + [2675] = 299, + [2676] = 302, + [2677] = 302, + [2678] = 310, + [2679] = 299, + [2680] = 315, + [2681] = 315, + [2682] = 330, + [2683] = 309, + [2684] = 288, + [2685] = 296, + [2686] = 309, + [2687] = 289, + [2688] = 305, + [2689] = 337, + [2690] = 2667, + [2691] = 338, + [2692] = 2654, + [2693] = 292, + [2694] = 302, + [2695] = 294, + [2696] = 356, + [2697] = 315, + [2698] = 366, + [2699] = 325, + [2700] = 309, + [2701] = 284, + [2702] = 290, + [2703] = 288, + [2704] = 297, + [2705] = 1339, + [2706] = 299, + [2707] = 1294, + [2708] = 309, + [2709] = 288, + [2710] = 299, + [2711] = 299, + [2712] = 372, + [2713] = 288, + [2714] = 279, + [2715] = 330, + [2716] = 331, + [2717] = 307, + [2718] = 288, [2719] = 310, - [2720] = 304, - [2721] = 2721, - [2722] = 276, - [2723] = 304, - [2724] = 1384, - [2725] = 305, - [2726] = 2726, - [2727] = 395, + [2720] = 286, + [2721] = 337, + [2722] = 288, + [2723] = 310, + [2724] = 2724, + [2725] = 2725, + [2726] = 309, + [2727] = 2727, [2728] = 2728, [2729] = 2729, - [2730] = 2730, - [2731] = 312, - [2732] = 2732, - [2733] = 341, - [2734] = 2734, + [2730] = 337, + [2731] = 2731, + [2732] = 389, + [2733] = 2733, + [2734] = 330, [2735] = 2735, - [2736] = 2736, - [2737] = 305, - [2738] = 297, - [2739] = 2739, + [2736] = 338, + [2737] = 2737, + [2738] = 2738, + [2739] = 338, [2740] = 2740, [2741] = 2741, - [2742] = 309, + [2742] = 2742, [2743] = 2743, - [2744] = 294, + [2744] = 2741, [2745] = 2745, - [2746] = 407, - [2747] = 411, - [2748] = 1382, + [2746] = 2746, + [2747] = 310, + [2748] = 2748, [2749] = 2749, [2750] = 2750, [2751] = 2751, [2752] = 2752, - [2753] = 325, + [2753] = 2753, [2754] = 2754, - [2755] = 304, - [2756] = 344, - [2757] = 323, - [2758] = 353, - [2759] = 2759, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, + [2758] = 2758, + [2759] = 288, [2760] = 2760, - [2761] = 2759, + [2761] = 315, [2762] = 2762, [2763] = 2763, - [2764] = 304, + [2764] = 288, [2765] = 2765, [2766] = 2766, [2767] = 2767, - [2768] = 342, - [2769] = 294, + [2768] = 2768, + [2769] = 2769, [2770] = 2770, [2771] = 2771, - [2772] = 315, + [2772] = 2772, [2773] = 2773, - [2774] = 2774, - [2775] = 341, - [2776] = 328, - [2777] = 1382, - [2778] = 342, + [2774] = 356, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2778, [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 288, - [2784] = 2784, + [2782] = 292, + [2783] = 2783, + [2784] = 297, [2785] = 2785, - [2786] = 2786, + [2786] = 331, [2787] = 2787, - [2788] = 2788, + [2788] = 2753, [2789] = 2789, [2790] = 2790, - [2791] = 2791, - [2792] = 2792, + [2791] = 2754, + [2792] = 2756, [2793] = 2793, [2794] = 2794, [2795] = 2795, - [2796] = 1332, - [2797] = 1384, - [2798] = 1330, - [2799] = 325, + [2796] = 315, + [2797] = 2760, + [2798] = 2798, + [2799] = 2799, [2800] = 2800, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 289, - [2805] = 288, - [2806] = 376, - [2807] = 2749, - [2808] = 408, + [2801] = 299, + [2802] = 2762, + [2803] = 371, + [2804] = 294, + [2805] = 2746, + [2806] = 325, + [2807] = 2807, + [2808] = 2808, [2809] = 2809, - [2810] = 385, - [2811] = 311, - [2812] = 377, - [2813] = 2813, + [2810] = 2810, + [2811] = 2811, + [2812] = 2812, + [2813] = 373, [2814] = 2814, - [2815] = 353, - [2816] = 344, - [2817] = 323, - [2818] = 353, - [2819] = 2750, - [2820] = 323, + [2815] = 2815, + [2816] = 2816, + [2817] = 315, + [2818] = 2818, + [2819] = 2819, + [2820] = 366, [2821] = 2821, [2822] = 2822, [2823] = 2823, - [2824] = 2736, - [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2762, - [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2760, - [2836] = 2754, - [2837] = 309, + [2824] = 299, + [2825] = 2752, + [2826] = 2755, + [2827] = 2757, + [2828] = 2763, + [2829] = 2765, + [2830] = 2830, + [2831] = 2767, + [2832] = 2768, + [2833] = 330, + [2834] = 2769, + [2835] = 2770, + [2836] = 2836, + [2837] = 2837, [2838] = 2838, - [2839] = 2822, - [2840] = 376, - [2841] = 2841, - [2842] = 2823, - [2843] = 2825, - [2844] = 288, - [2845] = 1459, - [2846] = 1332, - [2847] = 420, - [2848] = 304, - [2849] = 1463, - [2850] = 1330, - [2851] = 1464, - [2852] = 293, - [2853] = 2726, - [2854] = 305, - [2855] = 2855, - [2856] = 385, - [2857] = 2826, - [2858] = 2827, - [2859] = 2730, - [2860] = 2838, - [2861] = 2795, - [2862] = 2828, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2779, - [2867] = 2864, - [2868] = 2865, - [2869] = 2829, - [2870] = 2741, - [2871] = 2752, - [2872] = 2872, - [2873] = 391, - [2874] = 2874, - [2875] = 2875, - [2876] = 2751, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2728, - [2881] = 2881, - [2882] = 2801, - [2883] = 2883, - [2884] = 2884, - [2885] = 2885, - [2886] = 2803, - [2887] = 2794, - [2888] = 309, - [2889] = 2800, - [2890] = 2729, - [2891] = 293, - [2892] = 2732, - [2893] = 2893, - [2894] = 2885, - [2895] = 2884, - [2896] = 2883, - [2897] = 2897, - [2898] = 2881, - [2899] = 2879, - [2900] = 305, - [2901] = 2793, - [2902] = 391, - [2903] = 310, - [2904] = 2734, - [2905] = 2872, - [2906] = 328, - [2907] = 2735, - [2908] = 344, - [2909] = 2831, - [2910] = 2832, - [2911] = 2874, - [2912] = 2863, - [2913] = 2792, - [2914] = 2914, - [2915] = 341, - [2916] = 2791, - [2917] = 2790, - [2918] = 2821, - [2919] = 2833, - [2920] = 2893, - [2921] = 2789, - [2922] = 2914, - [2923] = 2788, - [2924] = 2897, - [2925] = 2787, - [2926] = 293, - [2927] = 2786, - [2928] = 2834, - [2929] = 2785, - [2930] = 2875, - [2931] = 2763, - [2932] = 2780, - [2933] = 2841, - [2934] = 2784, - [2935] = 300, - [2936] = 2782, - [2937] = 2814, - [2938] = 2781, - [2939] = 2878, - [2940] = 2813, - [2941] = 2740, - [2942] = 2739, - [2943] = 307, - [2944] = 2765, - [2945] = 2766, - [2946] = 2767, - [2947] = 2855, - [2948] = 2770, - [2949] = 2771, - [2950] = 2773, - [2951] = 2877, - [2952] = 2774, - [2953] = 2802, - [2954] = 2809, - [2955] = 511, - [2956] = 1493, - [2957] = 2957, - [2958] = 1464, - [2959] = 516, - [2960] = 1509, - [2961] = 1492, - [2962] = 1508, - [2963] = 1507, - [2964] = 1463, - [2965] = 1495, - [2966] = 411, - [2967] = 1459, - [2968] = 2968, - [2969] = 2969, - [2970] = 342, - [2971] = 408, - [2972] = 2972, - [2973] = 395, - [2974] = 2968, - [2975] = 522, - [2976] = 407, - [2977] = 377, - [2978] = 2969, - [2979] = 395, - [2980] = 434, - [2981] = 518, - [2982] = 1459, - [2983] = 508, - [2984] = 503, - [2985] = 424, - [2986] = 527, - [2987] = 525, - [2988] = 523, - [2989] = 2969, - [2990] = 2972, - [2991] = 521, - [2992] = 519, - [2993] = 517, - [2994] = 515, - [2995] = 513, - [2996] = 328, - [2997] = 423, - [2998] = 1463, - [2999] = 499, - [3000] = 492, - [3001] = 3001, - [3002] = 1464, - [3003] = 2968, - [3004] = 420, - [3005] = 407, - [3006] = 490, - [3007] = 1513, - [3008] = 528, - [3009] = 1514, - [3010] = 420, - [3011] = 325, - [3012] = 376, - [3013] = 344, - [3014] = 377, - [3015] = 502, - [3016] = 507, - [3017] = 1384, - [3018] = 510, - [3019] = 1510, - [3020] = 1494, - [3021] = 411, - [3022] = 491, - [3023] = 520, - [3024] = 341, - [3025] = 1382, - [3026] = 376, - [3027] = 1595, - [3028] = 500, - [3029] = 498, - [3030] = 341, - [3031] = 496, - [3032] = 385, - [3033] = 1382, - [3034] = 385, - [3035] = 495, - [3036] = 1332, - [3037] = 494, - [3038] = 420, - [3039] = 1384, - [3040] = 1330, - [3041] = 429, - [3042] = 430, - [3043] = 344, - [3044] = 431, - [3045] = 408, - [3046] = 447, - [3047] = 391, - [3048] = 420, - [3049] = 391, - [3050] = 408, - [3051] = 488, - [3052] = 437, - [3053] = 438, - [3054] = 439, - [3055] = 486, - [3056] = 443, - [3057] = 2957, - [3058] = 487, - [3059] = 489, - [3060] = 353, - [3061] = 444, - [3062] = 473, - [3063] = 385, - [3064] = 3064, - [3065] = 493, - [3066] = 470, - [3067] = 323, - [3068] = 376, - [3069] = 469, - [3070] = 467, - [3071] = 453, - [3072] = 408, - [3073] = 451, - [3074] = 466, - [3075] = 465, - [3076] = 420, - [3077] = 526, - [3078] = 464, - [3079] = 463, - [3080] = 3001, - [3081] = 391, - [3082] = 432, - [3083] = 449, - [3084] = 448, - [3085] = 3085, + [2839] = 383, + [2840] = 2840, + [2841] = 2771, + [2842] = 2740, + [2843] = 2772, + [2844] = 331, + [2845] = 2773, + [2846] = 2731, + [2847] = 2733, + [2848] = 2775, + [2849] = 288, + [2850] = 290, + [2851] = 2776, + [2852] = 2777, + [2853] = 2735, + [2854] = 2854, + [2855] = 2778, + [2856] = 2779, + [2857] = 2783, + [2858] = 2785, + [2859] = 2790, + [2860] = 2724, + [2861] = 2793, + [2862] = 2794, + [2863] = 2795, + [2864] = 2798, + [2865] = 2800, + [2866] = 2866, + [2867] = 2743, + [2868] = 2868, + [2869] = 2869, + [2870] = 2745, + [2871] = 2751, + [2872] = 2789, + [2873] = 309, + [2874] = 2808, + [2875] = 384, + [2876] = 2840, + [2877] = 387, + [2878] = 302, + [2879] = 356, + [2880] = 299, + [2881] = 337, + [2882] = 2882, + [2883] = 366, + [2884] = 2854, + [2885] = 2728, + [2886] = 2809, + [2887] = 375, + [2888] = 2837, + [2889] = 305, + [2890] = 338, + [2891] = 2821, + [2892] = 289, + [2893] = 1466, + [2894] = 2810, + [2895] = 2868, + [2896] = 2811, + [2897] = 2812, + [2898] = 309, + [2899] = 1339, + [2900] = 2814, + [2901] = 2816, + [2902] = 2725, + [2903] = 2903, + [2904] = 2729, + [2905] = 310, + [2906] = 2906, + [2907] = 2869, + [2908] = 2737, + [2909] = 1404, + [2910] = 2758, + [2911] = 2780, + [2912] = 2750, + [2913] = 1294, + [2914] = 2822, + [2915] = 1374, + [2916] = 1465, + [2917] = 371, + [2918] = 2781, + [2919] = 2823, + [2920] = 2738, + [2921] = 2906, + [2922] = 2838, + [2923] = 1377, + [2924] = 2787, + [2925] = 2799, + [2926] = 2742, + [2927] = 325, + [2928] = 290, + [2929] = 2748, + [2930] = 2830, + [2931] = 296, + [2932] = 2807, + [2933] = 388, + [2934] = 2749, + [2935] = 1374, + [2936] = 310, + [2937] = 2766, + [2938] = 2819, + [2939] = 414, + [2940] = 1339, + [2941] = 1377, + [2942] = 2866, + [2943] = 299, + [2944] = 337, + [2945] = 383, + [2946] = 307, + [2947] = 1294, + [2948] = 2836, + [2949] = 384, + [2950] = 2727, + [2951] = 330, + [2952] = 331, + [2953] = 2882, + [2954] = 2903, + [2955] = 2955, + [2956] = 493, + [2957] = 476, + [2958] = 356, + [2959] = 388, + [2960] = 477, + [2961] = 488, + [2962] = 445, + [2963] = 480, + [2964] = 446, + [2965] = 481, + [2966] = 371, + [2967] = 389, + [2968] = 483, + [2969] = 1466, + [2970] = 366, + [2971] = 486, + [2972] = 447, + [2973] = 388, + [2974] = 2974, + [2975] = 1505, + [2976] = 1470, + [2977] = 2977, + [2978] = 373, + [2979] = 1533, + [2980] = 375, + [2981] = 1532, + [2982] = 387, + [2983] = 503, + [2984] = 494, + [2985] = 495, + [2986] = 387, + [2987] = 1477, + [2988] = 490, + [2989] = 506, + [2990] = 1478, + [2991] = 1465, + [2992] = 384, + [2993] = 491, + [2994] = 489, + [2995] = 462, + [2996] = 337, + [2997] = 2974, + [2998] = 507, + [2999] = 2999, + [3000] = 1642, + [3001] = 1377, + [3002] = 375, + [3003] = 496, + [3004] = 3004, + [3005] = 497, + [3006] = 498, + [3007] = 499, + [3008] = 2977, + [3009] = 508, + [3010] = 3010, + [3011] = 457, + [3012] = 1374, + [3013] = 414, + [3014] = 371, + [3015] = 425, + [3016] = 426, + [3017] = 337, + [3018] = 505, + [3019] = 509, + [3020] = 387, + [3021] = 427, + [3022] = 528, + [3023] = 3023, + [3024] = 383, + [3025] = 429, + [3026] = 521, + [3027] = 518, + [3028] = 430, + [3029] = 431, + [3030] = 338, + [3031] = 3010, + [3032] = 500, + [3033] = 388, + [3034] = 1517, + [3035] = 388, + [3036] = 510, + [3037] = 384, + [3038] = 520, + [3039] = 432, + [3040] = 1466, + [3041] = 1535, + [3042] = 2974, + [3043] = 338, + [3044] = 1404, + [3045] = 522, + [3046] = 414, + [3047] = 523, + [3048] = 524, + [3049] = 384, + [3050] = 3023, + [3051] = 325, + [3052] = 1339, + [3053] = 2999, + [3054] = 501, + [3055] = 511, + [3056] = 502, + [3057] = 1377, + [3058] = 512, + [3059] = 2977, + [3060] = 465, + [3061] = 513, + [3062] = 388, + [3063] = 467, + [3064] = 514, + [3065] = 1404, + [3066] = 469, + [3067] = 387, + [3068] = 515, + [3069] = 1374, + [3070] = 1511, + [3071] = 472, + [3072] = 516, + [3073] = 373, + [3074] = 492, + [3075] = 371, + [3076] = 473, + [3077] = 1294, + [3078] = 1465, + [3079] = 517, + [3080] = 383, + [3081] = 330, + [3082] = 1536, + [3083] = 389, + [3084] = 331, + [3085] = 383, [3086] = 3086, [3087] = 3087, - [3088] = 431, - [3089] = 495, - [3090] = 496, - [3091] = 498, - [3092] = 500, - [3093] = 520, - [3094] = 3094, - [3095] = 518, - [3096] = 516, + [3088] = 3088, + [3089] = 3089, + [3090] = 3090, + [3091] = 3091, + [3092] = 3092, + [3093] = 3093, + [3094] = 1505, + [3095] = 1533, + [3096] = 3096, [3097] = 3097, - [3098] = 3098, - [3099] = 511, + [3098] = 3086, + [3099] = 3099, [3100] = 3100, - [3101] = 510, + [3101] = 3101, [3102] = 3102, - [3103] = 3097, + [3103] = 3103, [3104] = 3104, - [3105] = 507, - [3106] = 502, - [3107] = 420, - [3108] = 528, - [3109] = 3086, - [3110] = 3110, - [3111] = 3087, - [3112] = 420, - [3113] = 3113, - [3114] = 3114, - [3115] = 3094, - [3116] = 3100, - [3117] = 3102, - [3118] = 494, - [3119] = 3119, - [3120] = 3114, - [3121] = 3121, - [3122] = 3122, - [3123] = 3097, - [3124] = 3122, - [3125] = 3086, - [3126] = 3104, - [3127] = 1464, - [3128] = 3110, - [3129] = 1463, - [3130] = 3104, - [3131] = 3113, - [3132] = 3094, - [3133] = 3087, - [3134] = 3110, - [3135] = 3100, - [3136] = 408, - [3137] = 3102, - [3138] = 3119, - [3139] = 3086, - [3140] = 3094, - [3141] = 3100, - [3142] = 3122, - [3143] = 1459, - [3144] = 3121, - [3145] = 3121, - [3146] = 430, - [3147] = 3119, - [3148] = 3102, - [3149] = 3087, - [3150] = 3102, - [3151] = 3100, - [3152] = 3119, - [3153] = 3119, - [3154] = 3113, - [3155] = 3121, - [3156] = 3094, - [3157] = 3102, - [3158] = 491, - [3159] = 3114, - [3160] = 3104, - [3161] = 3097, - [3162] = 3100, - [3163] = 3119, - [3164] = 3121, - [3165] = 3094, - [3166] = 3104, - [3167] = 3122, - [3168] = 3110, - [3169] = 3114, - [3170] = 3113, - [3171] = 3113, - [3172] = 447, - [3173] = 3087, - [3174] = 3113, - [3175] = 3122, - [3176] = 3087, - [3177] = 3110, - [3178] = 3114, - [3179] = 3086, - [3180] = 3121, - [3181] = 3122, - [3182] = 3121, - [3183] = 3086, - [3184] = 432, - [3185] = 3119, - [3186] = 3102, - [3187] = 3097, - [3188] = 3122, - [3189] = 3086, - [3190] = 3110, - [3191] = 3110, - [3192] = 3114, - [3193] = 3087, - [3194] = 3087, - [3195] = 3097, - [3196] = 3113, - [3197] = 3100, - [3198] = 3114, - [3199] = 3094, - [3200] = 3104, - [3201] = 3097, - [3202] = 408, - [3203] = 3113, - [3204] = 3114, - [3205] = 508, - [3206] = 3114, - [3207] = 408, - [3208] = 503, - [3209] = 3113, - [3210] = 3087, - [3211] = 424, - [3212] = 429, - [3213] = 527, - [3214] = 525, - [3215] = 486, - [3216] = 523, - [3217] = 3110, - [3218] = 521, - [3219] = 487, - [3220] = 3086, - [3221] = 519, - [3222] = 434, - [3223] = 517, - [3224] = 3087, - [3225] = 3122, - [3226] = 515, - [3227] = 513, - [3228] = 489, - [3229] = 423, - [3230] = 499, - [3231] = 492, - [3232] = 3110, - [3233] = 3233, - [3234] = 3121, - [3235] = 3097, - [3236] = 3086, - [3237] = 3119, - [3238] = 3114, - [3239] = 3102, - [3240] = 3104, - [3241] = 493, - [3242] = 3113, - [3243] = 3087, - [3244] = 3110, - [3245] = 420, - [3246] = 3094, - [3247] = 429, - [3248] = 3086, - [3249] = 3100, - [3250] = 430, - [3251] = 3097, - [3252] = 3122, - [3253] = 3102, - [3254] = 3119, - [3255] = 3100, - [3256] = 3121, - [3257] = 490, - [3258] = 3094, - [3259] = 3122, - [3260] = 3097, - [3261] = 494, - [3262] = 3104, - [3263] = 495, - [3264] = 526, - [3265] = 496, - [3266] = 3104, - [3267] = 498, - [3268] = 3097, - [3269] = 500, - [3270] = 3086, - [3271] = 520, - [3272] = 3094, - [3273] = 518, - [3274] = 3100, - [3275] = 516, - [3276] = 407, - [3277] = 511, - [3278] = 3097, - [3279] = 510, - [3280] = 3110, - [3281] = 507, - [3282] = 3104, - [3283] = 3087, - [3284] = 502, - [3285] = 3102, - [3286] = 528, - [3287] = 3287, - [3288] = 3122, - [3289] = 3121, - [3290] = 3290, - [3291] = 3121, - [3292] = 3119, - [3293] = 3293, - [3294] = 3102, - [3295] = 437, - [3296] = 3113, - [3297] = 3100, - [3298] = 3094, - [3299] = 3104, - [3300] = 3097, - [3301] = 3114, - [3302] = 3302, - [3303] = 3303, - [3304] = 488, - [3305] = 522, - [3306] = 439, - [3307] = 3119, - [3308] = 3121, - [3309] = 438, - [3310] = 439, - [3311] = 3094, - [3312] = 3100, - [3313] = 443, - [3314] = 3102, - [3315] = 3119, - [3316] = 444, - [3317] = 3121, - [3318] = 3122, - [3319] = 3119, - [3320] = 447, - [3321] = 3086, - [3322] = 3122, - [3323] = 3086, - [3324] = 3110, - [3325] = 434, - [3326] = 431, - [3327] = 3102, - [3328] = 3114, - [3329] = 3110, - [3330] = 3113, - [3331] = 3087, - [3332] = 3100, - [3333] = 3094, - [3334] = 3104, - [3335] = 3098, - [3336] = 3087, - [3337] = 3113, - [3338] = 3097, - [3339] = 3104, - [3340] = 3087, - [3341] = 3094, - [3342] = 3100, - [3343] = 3113, - [3344] = 3110, - [3345] = 3102, - [3346] = 3119, - [3347] = 3121, - [3348] = 3114, - [3349] = 3086, - [3350] = 437, - [3351] = 438, - [3352] = 3122, - [3353] = 3121, - [3354] = 448, - [3355] = 3122, - [3356] = 3114, - [3357] = 444, - [3358] = 3086, - [3359] = 3110, - [3360] = 3087, - [3361] = 3361, - [3362] = 3362, - [3363] = 3119, - [3364] = 3102, - [3365] = 3365, - [3366] = 449, - [3367] = 3100, - [3368] = 3113, - [3369] = 3114, - [3370] = 3370, - [3371] = 3094, - [3372] = 3104, - [3373] = 451, - [3374] = 3097, - [3375] = 453, - [3376] = 3376, - [3377] = 3104, - [3378] = 3378, - [3379] = 3097, - [3380] = 3376, - [3381] = 3097, - [3382] = 3114, - [3383] = 3104, - [3384] = 3378, - [3385] = 3097, - [3386] = 466, - [3387] = 3094, - [3388] = 3104, - [3389] = 3094, - [3390] = 3100, - [3391] = 3100, - [3392] = 3102, - [3393] = 3119, - [3394] = 3121, - [3395] = 3094, - [3396] = 3102, - [3397] = 3100, - [3398] = 3102, - [3399] = 3303, - [3400] = 3113, - [3401] = 448, - [3402] = 1492, - [3403] = 449, - [3404] = 3097, - [3405] = 3122, - [3406] = 3097, - [3407] = 3086, - [3408] = 3119, - [3409] = 3110, - [3410] = 3087, - [3411] = 3113, - [3412] = 3114, - [3413] = 522, - [3414] = 3087, - [3415] = 3119, - [3416] = 3104, - [3417] = 3302, - [3418] = 3110, - [3419] = 3094, - [3420] = 3100, + [3105] = 1536, + [3106] = 1470, + [3107] = 1477, + [3108] = 1478, + [3109] = 447, + [3110] = 469, + [3111] = 476, + [3112] = 445, + [3113] = 446, + [3114] = 414, + [3115] = 462, + [3116] = 465, + [3117] = 467, + [3118] = 473, + [3119] = 477, + [3120] = 1511, + [3121] = 480, + [3122] = 481, + [3123] = 1517, + [3124] = 483, + [3125] = 1532, + [3126] = 1535, + [3127] = 457, + [3128] = 425, + [3129] = 426, + [3130] = 427, + [3131] = 528, + [3132] = 429, + [3133] = 3089, + [3134] = 3134, + [3135] = 3135, + [3136] = 430, + [3137] = 431, + [3138] = 3090, + [3139] = 3091, + [3140] = 3092, + [3141] = 3093, + [3142] = 3096, + [3143] = 432, + [3144] = 3097, + [3145] = 486, + [3146] = 488, + [3147] = 489, + [3148] = 490, + [3149] = 491, + [3150] = 492, + [3151] = 493, + [3152] = 494, + [3153] = 495, + [3154] = 496, + [3155] = 497, + [3156] = 498, + [3157] = 499, + [3158] = 500, + [3159] = 501, + [3160] = 502, + [3161] = 521, + [3162] = 3086, + [3163] = 503, + [3164] = 3099, + [3165] = 506, + [3166] = 507, + [3167] = 508, + [3168] = 509, + [3169] = 510, + [3170] = 511, + [3171] = 512, + [3172] = 513, + [3173] = 514, + [3174] = 515, + [3175] = 516, + [3176] = 517, + [3177] = 518, + [3178] = 3100, + [3179] = 3179, + [3180] = 3101, + [3181] = 3102, + [3182] = 3103, + [3183] = 3183, + [3184] = 1466, + [3185] = 1404, + [3186] = 1465, + [3187] = 3187, + [3188] = 3188, + [3189] = 3189, + [3190] = 375, + [3191] = 472, + [3192] = 1656, + [3193] = 373, + [3194] = 1657, + [3195] = 1658, + [3196] = 1511, + [3197] = 1659, + [3198] = 1517, + [3199] = 1532, + [3200] = 1535, + [3201] = 1682, + [3202] = 1683, + [3203] = 1684, + [3204] = 1687, + [3205] = 1690, + [3206] = 1704, + [3207] = 1706, + [3208] = 1712, + [3209] = 1717, + [3210] = 1721, + [3211] = 1551, + [3212] = 1553, + [3213] = 1565, + [3214] = 1570, + [3215] = 1571, + [3216] = 1572, + [3217] = 1573, + [3218] = 1580, + [3219] = 1585, + [3220] = 1587, + [3221] = 1595, + [3222] = 505, + [3223] = 1600, + [3224] = 1622, + [3225] = 1635, + [3226] = 1645, + [3227] = 1646, + [3228] = 1652, + [3229] = 1653, + [3230] = 1671, + [3231] = 1672, + [3232] = 1673, + [3233] = 1677, + [3234] = 1681, + [3235] = 1686, + [3236] = 1692, + [3237] = 1693, + [3238] = 1695, + [3239] = 1710, + [3240] = 1724, + [3241] = 1638, + [3242] = 1539, + [3243] = 1543, + [3244] = 1545, + [3245] = 1546, + [3246] = 520, + [3247] = 522, + [3248] = 523, + [3249] = 524, + [3250] = 445, + [3251] = 446, + [3252] = 447, + [3253] = 457, + [3254] = 462, + [3255] = 3089, + [3256] = 465, + [3257] = 467, + [3258] = 3090, + [3259] = 3091, + [3260] = 469, + [3261] = 3092, + [3262] = 3093, + [3263] = 472, + [3264] = 473, + [3265] = 3096, + [3266] = 3097, + [3267] = 3086, + [3268] = 476, + [3269] = 477, + [3270] = 3099, + [3271] = 3100, + [3272] = 3101, + [3273] = 480, + [3274] = 3102, + [3275] = 481, + [3276] = 3103, + [3277] = 483, + [3278] = 425, + [3279] = 426, + [3280] = 505, + [3281] = 337, + [3282] = 427, + [3283] = 528, + [3284] = 429, + [3285] = 338, + [3286] = 430, + [3287] = 431, + [3288] = 520, + [3289] = 432, + [3290] = 522, + [3291] = 523, + [3292] = 524, + [3293] = 371, + [3294] = 383, + [3295] = 384, + [3296] = 387, + [3297] = 388, + [3298] = 387, + [3299] = 388, + [3300] = 337, + [3301] = 338, + [3302] = 389, + [3303] = 387, + [3304] = 388, + [3305] = 388, + [3306] = 3306, + [3307] = 387, + [3308] = 388, + [3309] = 387, + [3310] = 3183, + [3311] = 3089, + [3312] = 3090, + [3313] = 3091, + [3314] = 3092, + [3315] = 3093, + [3316] = 3096, + [3317] = 3097, + [3318] = 3086, + [3319] = 3099, + [3320] = 3100, + [3321] = 3101, + [3322] = 3102, + [3323] = 3103, + [3324] = 3089, + [3325] = 3090, + [3326] = 3091, + [3327] = 3092, + [3328] = 3093, + [3329] = 3096, + [3330] = 3097, + [3331] = 3086, + [3332] = 3099, + [3333] = 3100, + [3334] = 3101, + [3335] = 3102, + [3336] = 3103, + [3337] = 3089, + [3338] = 3090, + [3339] = 3091, + [3340] = 3092, + [3341] = 3093, + [3342] = 3096, + [3343] = 3097, + [3344] = 3086, + [3345] = 3099, + [3346] = 3100, + [3347] = 3101, + [3348] = 3102, + [3349] = 3103, + [3350] = 3089, + [3351] = 3090, + [3352] = 3091, + [3353] = 3092, + [3354] = 3093, + [3355] = 3096, + [3356] = 3097, + [3357] = 3086, + [3358] = 3099, + [3359] = 3100, + [3360] = 3101, + [3361] = 3102, + [3362] = 3103, + [3363] = 3089, + [3364] = 3090, + [3365] = 3091, + [3366] = 3092, + [3367] = 3093, + [3368] = 3096, + [3369] = 3097, + [3370] = 3086, + [3371] = 3099, + [3372] = 3100, + [3373] = 3101, + [3374] = 3102, + [3375] = 3103, + [3376] = 3089, + [3377] = 3090, + [3378] = 3091, + [3379] = 3092, + [3380] = 3093, + [3381] = 3096, + [3382] = 3097, + [3383] = 3086, + [3384] = 3099, + [3385] = 3100, + [3386] = 3101, + [3387] = 3102, + [3388] = 3103, + [3389] = 3089, + [3390] = 3090, + [3391] = 3091, + [3392] = 3092, + [3393] = 3093, + [3394] = 3096, + [3395] = 3097, + [3396] = 3086, + [3397] = 3099, + [3398] = 3100, + [3399] = 3101, + [3400] = 3102, + [3401] = 3103, + [3402] = 3089, + [3403] = 3090, + [3404] = 3091, + [3405] = 3092, + [3406] = 3093, + [3407] = 3096, + [3408] = 3097, + [3409] = 3086, + [3410] = 3099, + [3411] = 3100, + [3412] = 3101, + [3413] = 3102, + [3414] = 3103, + [3415] = 3089, + [3416] = 3090, + [3417] = 3091, + [3418] = 3092, + [3419] = 3093, + [3420] = 3096, [3421] = 3097, - [3422] = 3104, - [3423] = 3094, + [3422] = 3086, + [3423] = 3099, [3424] = 3100, - [3425] = 3102, - [3426] = 463, - [3427] = 464, - [3428] = 3102, - [3429] = 526, - [3430] = 3119, - [3431] = 3086, - [3432] = 3121, - [3433] = 341, - [3434] = 3122, - [3435] = 3122, - [3436] = 3119, - [3437] = 3121, - [3438] = 3122, - [3439] = 420, - [3440] = 3086, - [3441] = 341, - [3442] = 3086, - [3443] = 3110, - [3444] = 3087, - [3445] = 3113, - [3446] = 451, - [3447] = 491, - [3448] = 3121, - [3449] = 3114, - [3450] = 3097, - [3451] = 3104, - [3452] = 3121, - [3453] = 3122, - [3454] = 3086, - [3455] = 3094, - [3456] = 1495, - [3457] = 3110, - [3458] = 3100, - [3459] = 3102, - [3460] = 3119, - [3461] = 3119, - [3462] = 3087, - [3463] = 3121, - [3464] = 3113, - [3465] = 3114, - [3466] = 3113, - [3467] = 3087, - [3468] = 3110, - [3469] = 3122, - [3470] = 3086, - [3471] = 3114, - [3472] = 3110, - [3473] = 3086, - [3474] = 3122, - [3475] = 3102, - [3476] = 3370, - [3477] = 1494, - [3478] = 465, - [3479] = 3110, - [3480] = 1514, - [3481] = 1513, - [3482] = 1493, - [3483] = 3100, - [3484] = 344, - [3485] = 3303, - [3486] = 508, - [3487] = 453, - [3488] = 3104, - [3489] = 3097, - [3490] = 503, - [3491] = 3087, - [3492] = 3104, - [3493] = 424, - [3494] = 3113, - [3495] = 3114, - [3496] = 3094, - [3497] = 527, - [3498] = 3100, - [3499] = 3102, - [3500] = 525, - [3501] = 523, - [3502] = 1494, - [3503] = 3113, - [3504] = 521, - [3505] = 3119, - [3506] = 3121, - [3507] = 3114, - [3508] = 3094, - [3509] = 519, - [3510] = 1493, - [3511] = 517, - [3512] = 515, - [3513] = 1684, - [3514] = 1685, - [3515] = 1495, - [3516] = 1686, - [3517] = 1688, - [3518] = 3121, - [3519] = 3122, - [3520] = 3104, - [3521] = 3233, - [3522] = 513, - [3523] = 3094, - [3524] = 3097, - [3525] = 3086, - [3526] = 3104, - [3527] = 3110, - [3528] = 423, - [3529] = 3100, + [3425] = 3101, + [3426] = 3102, + [3427] = 3103, + [3428] = 3089, + [3429] = 3090, + [3430] = 3091, + [3431] = 3092, + [3432] = 3093, + [3433] = 3096, + [3434] = 3097, + [3435] = 3086, + [3436] = 3099, + [3437] = 3100, + [3438] = 3101, + [3439] = 3102, + [3440] = 3103, + [3441] = 3089, + [3442] = 3090, + [3443] = 3091, + [3444] = 3092, + [3445] = 3093, + [3446] = 3096, + [3447] = 3097, + [3448] = 3086, + [3449] = 3099, + [3450] = 3450, + [3451] = 3101, + [3452] = 3102, + [3453] = 3103, + [3454] = 3089, + [3455] = 3090, + [3456] = 3091, + [3457] = 3092, + [3458] = 3093, + [3459] = 3096, + [3460] = 3097, + [3461] = 3086, + [3462] = 3099, + [3463] = 3100, + [3464] = 3101, + [3465] = 3102, + [3466] = 3103, + [3467] = 3089, + [3468] = 3090, + [3469] = 3091, + [3470] = 3092, + [3471] = 3093, + [3472] = 3096, + [3473] = 3097, + [3474] = 3086, + [3475] = 3099, + [3476] = 3100, + [3477] = 3101, + [3478] = 3102, + [3479] = 3103, + [3480] = 3089, + [3481] = 3090, + [3482] = 3091, + [3483] = 3092, + [3484] = 3093, + [3485] = 3096, + [3486] = 3097, + [3487] = 3086, + [3488] = 3099, + [3489] = 3100, + [3490] = 3101, + [3491] = 3102, + [3492] = 3103, + [3493] = 3089, + [3494] = 3090, + [3495] = 3091, + [3496] = 3092, + [3497] = 3093, + [3498] = 3096, + [3499] = 3097, + [3500] = 3086, + [3501] = 3099, + [3502] = 3100, + [3503] = 3101, + [3504] = 3102, + [3505] = 3103, + [3506] = 3089, + [3507] = 3090, + [3508] = 3091, + [3509] = 3092, + [3510] = 3093, + [3511] = 3096, + [3512] = 3097, + [3513] = 3086, + [3514] = 3099, + [3515] = 3100, + [3516] = 3101, + [3517] = 3102, + [3518] = 3103, + [3519] = 3089, + [3520] = 3090, + [3521] = 3091, + [3522] = 3092, + [3523] = 3093, + [3524] = 3096, + [3525] = 3097, + [3526] = 3086, + [3527] = 3099, + [3528] = 3100, + [3529] = 3101, [3530] = 3102, - [3531] = 3119, - [3532] = 499, - [3533] = 492, - [3534] = 3094, - [3535] = 3087, - [3536] = 3119, - [3537] = 1510, - [3538] = 3100, - [3539] = 3121, - [3540] = 3102, - [3541] = 3102, - [3542] = 1695, - [3543] = 1696, - [3544] = 1698, - [3545] = 1700, - [3546] = 1701, - [3547] = 1702, - [3548] = 1703, - [3549] = 1707, - [3550] = 3122, - [3551] = 3100, - [3552] = 3119, - [3553] = 3086, - [3554] = 3121, - [3555] = 1714, - [3556] = 1716, - [3557] = 1717, - [3558] = 1718, - [3559] = 1509, - [3560] = 3110, - [3561] = 3087, - [3562] = 3113, - [3563] = 3303, - [3564] = 3113, - [3565] = 1722, - [3566] = 1539, - [3567] = 1661, - [3568] = 1657, - [3569] = 1655, - [3570] = 1654, - [3571] = 1651, - [3572] = 1649, - [3573] = 3114, - [3574] = 3122, - [3575] = 1639, - [3576] = 1635, - [3577] = 490, - [3578] = 408, - [3579] = 1626, - [3580] = 1623, - [3581] = 420, - [3582] = 3086, - [3583] = 1620, - [3584] = 1618, - [3585] = 3110, - [3586] = 3087, - [3587] = 1617, - [3588] = 1616, - [3589] = 1613, - [3590] = 1611, - [3591] = 1609, - [3592] = 1594, - [3593] = 1587, - [3594] = 1586, - [3595] = 1581, - [3596] = 1578, - [3597] = 1577, - [3598] = 1576, - [3599] = 1574, - [3600] = 1572, - [3601] = 1571, - [3602] = 1570, - [3603] = 1567, - [3604] = 1559, - [3605] = 3094, - [3606] = 3114, - [3607] = 3113, - [3608] = 3104, - [3609] = 3097, - [3610] = 3114, - [3611] = 376, - [3612] = 3104, - [3613] = 432, - [3614] = 3097, - [3615] = 488, - [3616] = 3104, - [3617] = 1492, - [3618] = 463, - [3619] = 3094, - [3620] = 3100, - [3621] = 464, - [3622] = 3114, - [3623] = 3097, - [3624] = 385, - [3625] = 3104, - [3626] = 3094, - [3627] = 3100, - [3628] = 3114, - [3629] = 3113, - [3630] = 3087, - [3631] = 3110, + [3531] = 3103, + [3532] = 3089, + [3533] = 3090, + [3534] = 3091, + [3535] = 3092, + [3536] = 3093, + [3537] = 3096, + [3538] = 3097, + [3539] = 3086, + [3540] = 3099, + [3541] = 3100, + [3542] = 3101, + [3543] = 3102, + [3544] = 3103, + [3545] = 3089, + [3546] = 3090, + [3547] = 3091, + [3548] = 3092, + [3549] = 3093, + [3550] = 3096, + [3551] = 3097, + [3552] = 3086, + [3553] = 3099, + [3554] = 3100, + [3555] = 3101, + [3556] = 3102, + [3557] = 3103, + [3558] = 3089, + [3559] = 3090, + [3560] = 3091, + [3561] = 3092, + [3562] = 3093, + [3563] = 3096, + [3564] = 3097, + [3565] = 3086, + [3566] = 3099, + [3567] = 3100, + [3568] = 3101, + [3569] = 3102, + [3570] = 3103, + [3571] = 3089, + [3572] = 3090, + [3573] = 3091, + [3574] = 3092, + [3575] = 3093, + [3576] = 3096, + [3577] = 3097, + [3578] = 3086, + [3579] = 3099, + [3580] = 3100, + [3581] = 3101, + [3582] = 3102, + [3583] = 3103, + [3584] = 3089, + [3585] = 3090, + [3586] = 3091, + [3587] = 3092, + [3588] = 3093, + [3589] = 3096, + [3590] = 3097, + [3591] = 3086, + [3592] = 3099, + [3593] = 3100, + [3594] = 3101, + [3595] = 3102, + [3596] = 3103, + [3597] = 3089, + [3598] = 3090, + [3599] = 3091, + [3600] = 3092, + [3601] = 3093, + [3602] = 3096, + [3603] = 3097, + [3604] = 3086, + [3605] = 3099, + [3606] = 3100, + [3607] = 3101, + [3608] = 3102, + [3609] = 3103, + [3610] = 3089, + [3611] = 3090, + [3612] = 3091, + [3613] = 3092, + [3614] = 3093, + [3615] = 3096, + [3616] = 3097, + [3617] = 3086, + [3618] = 3099, + [3619] = 3100, + [3620] = 3101, + [3621] = 3102, + [3622] = 3103, + [3623] = 503, + [3624] = 486, + [3625] = 3089, + [3626] = 3090, + [3627] = 3091, + [3628] = 3092, + [3629] = 3093, + [3630] = 3096, + [3631] = 3097, [3632] = 3086, - [3633] = 3122, - [3634] = 3121, - [3635] = 3635, - [3636] = 1508, - [3637] = 1507, - [3638] = 377, - [3639] = 443, - [3640] = 391, - [3641] = 486, - [3642] = 487, - [3643] = 3113, - [3644] = 489, - [3645] = 473, - [3646] = 411, - [3647] = 3102, - [3648] = 3119, - [3649] = 3119, - [3650] = 3102, - [3651] = 3100, - [3652] = 3094, - [3653] = 3121, - [3654] = 3122, - [3655] = 473, - [3656] = 3104, - [3657] = 3097, - [3658] = 3113, - [3659] = 493, - [3660] = 3087, - [3661] = 3086, - [3662] = 470, - [3663] = 3110, - [3664] = 3110, - [3665] = 3087, - [3666] = 3113, - [3667] = 3114, - [3668] = 3086, - [3669] = 469, - [3670] = 3102, - [3671] = 344, - [3672] = 3122, - [3673] = 3121, - [3674] = 3119, - [3675] = 465, - [3676] = 3102, - [3677] = 3100, - [3678] = 3114, - [3679] = 3097, - [3680] = 408, - [3681] = 3087, - [3682] = 3097, - [3683] = 3104, - [3684] = 466, - [3685] = 3119, - [3686] = 3113, - [3687] = 3121, - [3688] = 3094, - [3689] = 3122, - [3690] = 3094, - [3691] = 467, - [3692] = 395, - [3693] = 3087, - [3694] = 3110, - [3695] = 3100, - [3696] = 3086, - [3697] = 3097, - [3698] = 3122, - [3699] = 3104, - [3700] = 3121, - [3701] = 3086, - [3702] = 470, - [3703] = 3097, - [3704] = 3104, - [3705] = 3110, - [3706] = 3087, - [3707] = 3113, - [3708] = 3094, - [3709] = 3114, - [3710] = 3110, - [3711] = 3100, - [3712] = 469, - [3713] = 3102, - [3714] = 3113, - [3715] = 3114, - [3716] = 3102, - [3717] = 3114, - [3718] = 3086, - [3719] = 3119, - [3720] = 3122, - [3721] = 3121, - [3722] = 3087, - [3723] = 3110, - [3724] = 3086, - [3725] = 467, - [3726] = 3122, - [3727] = 3121, - [3728] = 3119, - [3729] = 1492, - [3730] = 522, - [3731] = 517, - [3732] = 438, - [3733] = 515, - [3734] = 519, - [3735] = 513, - [3736] = 1617, - [3737] = 423, - [3738] = 499, - [3739] = 523, - [3740] = 492, - [3741] = 434, - [3742] = 490, - [3743] = 3743, - [3744] = 3744, - [3745] = 3287, - [3746] = 3293, - [3747] = 488, - [3748] = 1616, - [3749] = 1613, - [3750] = 3750, - [3751] = 3751, - [3752] = 3361, - [3753] = 3365, - [3754] = 432, - [3755] = 430, - [3756] = 429, - [3757] = 344, - [3758] = 341, - [3759] = 491, - [3760] = 494, - [3761] = 495, - [3762] = 525, - [3763] = 496, - [3764] = 448, - [3765] = 3765, - [3766] = 1495, - [3767] = 498, - [3768] = 447, - [3769] = 1494, - [3770] = 527, - [3771] = 1493, - [3772] = 444, - [3773] = 500, - [3774] = 439, - [3775] = 408, - [3776] = 520, - [3777] = 518, - [3778] = 408, - [3779] = 516, - [3780] = 511, - [3781] = 1684, - [3782] = 424, - [3783] = 1611, - [3784] = 449, - [3785] = 1685, - [3786] = 1609, - [3787] = 510, - [3788] = 503, - [3789] = 493, - [3790] = 1594, - [3791] = 507, - [3792] = 1587, - [3793] = 526, - [3794] = 1586, - [3795] = 451, - [3796] = 508, - [3797] = 1581, - [3798] = 502, - [3799] = 489, - [3800] = 1595, - [3801] = 1686, - [3802] = 1688, - [3803] = 1703, - [3804] = 437, - [3805] = 521, - [3806] = 465, - [3807] = 528, - [3808] = 3808, - [3809] = 1695, - [3810] = 1696, - [3811] = 1698, - [3812] = 1700, - [3813] = 1701, - [3814] = 1702, - [3815] = 473, - [3816] = 3816, - [3817] = 1707, - [3818] = 999, - [3819] = 3819, - [3820] = 1714, - [3821] = 1716, - [3822] = 431, - [3823] = 1618, - [3824] = 453, - [3825] = 1717, - [3826] = 1718, - [3827] = 1722, - [3828] = 1539, - [3829] = 1661, - [3830] = 1657, - [3831] = 470, - [3832] = 3765, - [3833] = 1655, - [3834] = 1654, - [3835] = 3744, - [3836] = 469, - [3837] = 1651, - [3838] = 467, - [3839] = 1649, - [3840] = 3816, - [3841] = 3808, - [3842] = 420, - [3843] = 1639, - [3844] = 1635, - [3845] = 1626, - [3846] = 1559, - [3847] = 1567, - [3848] = 3848, - [3849] = 1570, - [3850] = 486, - [3851] = 1623, - [3852] = 463, - [3853] = 466, - [3854] = 487, - [3855] = 1571, - [3856] = 1572, - [3857] = 1574, - [3858] = 1620, - [3859] = 443, - [3860] = 1576, - [3861] = 464, - [3862] = 1577, - [3863] = 1578, - [3864] = 999, + [3633] = 3099, + [3634] = 3100, + [3635] = 3101, + [3636] = 3102, + [3637] = 3103, + [3638] = 3089, + [3639] = 3090, + [3640] = 3091, + [3641] = 3092, + [3642] = 3093, + [3643] = 3096, + [3644] = 3097, + [3645] = 3099, + [3646] = 3100, + [3647] = 3101, + [3648] = 3102, + [3649] = 3103, + [3650] = 3089, + [3651] = 3090, + [3652] = 3091, + [3653] = 3092, + [3654] = 3093, + [3655] = 3096, + [3656] = 3097, + [3657] = 3086, + [3658] = 3099, + [3659] = 3100, + [3660] = 3101, + [3661] = 3102, + [3662] = 3103, + [3663] = 3089, + [3664] = 3090, + [3665] = 3091, + [3666] = 3092, + [3667] = 3093, + [3668] = 3096, + [3669] = 3097, + [3670] = 3086, + [3671] = 3099, + [3672] = 3100, + [3673] = 3101, + [3674] = 3102, + [3675] = 3103, + [3676] = 488, + [3677] = 3089, + [3678] = 3090, + [3679] = 3091, + [3680] = 3092, + [3681] = 3093, + [3682] = 3096, + [3683] = 3097, + [3684] = 3086, + [3685] = 3099, + [3686] = 3100, + [3687] = 3101, + [3688] = 3102, + [3689] = 3103, + [3690] = 489, + [3691] = 490, + [3692] = 491, + [3693] = 492, + [3694] = 493, + [3695] = 494, + [3696] = 495, + [3697] = 496, + [3698] = 497, + [3699] = 3188, + [3700] = 498, + [3701] = 499, + [3702] = 500, + [3703] = 501, + [3704] = 502, + [3705] = 3306, + [3706] = 3450, + [3707] = 3134, + [3708] = 3135, + [3709] = 3187, + [3710] = 3450, + [3711] = 3450, + [3712] = 506, + [3713] = 507, + [3714] = 508, + [3715] = 509, + [3716] = 510, + [3717] = 511, + [3718] = 512, + [3719] = 513, + [3720] = 514, + [3721] = 515, + [3722] = 516, + [3723] = 517, + [3724] = 518, + [3725] = 521, + [3726] = 3726, + [3727] = 3727, + [3728] = 3100, + [3729] = 496, + [3730] = 505, + [3731] = 1003, + [3732] = 520, + [3733] = 522, + [3734] = 523, + [3735] = 524, + [3736] = 1682, + [3737] = 503, + [3738] = 1683, + [3739] = 506, + [3740] = 507, + [3741] = 508, + [3742] = 509, + [3743] = 510, + [3744] = 337, + [3745] = 338, + [3746] = 511, + [3747] = 512, + [3748] = 387, + [3749] = 513, + [3750] = 388, + [3751] = 514, + [3752] = 515, + [3753] = 516, + [3754] = 387, + [3755] = 517, + [3756] = 518, + [3757] = 3757, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 1684, + [3762] = 521, + [3763] = 1687, + [3764] = 1642, + [3765] = 1690, + [3766] = 1704, + [3767] = 1706, + [3768] = 1712, + [3769] = 1717, + [3770] = 1721, + [3771] = 1551, + [3772] = 1553, + [3773] = 1565, + [3774] = 1570, + [3775] = 1571, + [3776] = 1572, + [3777] = 1573, + [3778] = 1580, + [3779] = 1585, + [3780] = 1587, + [3781] = 1595, + [3782] = 1600, + [3783] = 1622, + [3784] = 1635, + [3785] = 1645, + [3786] = 1646, + [3787] = 1652, + [3788] = 1653, + [3789] = 1671, + [3790] = 1672, + [3791] = 1673, + [3792] = 1677, + [3793] = 1681, + [3794] = 1686, + [3795] = 1692, + [3796] = 1693, + [3797] = 1695, + [3798] = 1710, + [3799] = 1724, + [3800] = 1638, + [3801] = 1539, + [3802] = 1543, + [3803] = 1545, + [3804] = 3760, + [3805] = 3805, + [3806] = 3726, + [3807] = 3727, + [3808] = 3087, + [3809] = 3088, + [3810] = 3810, + [3811] = 1656, + [3812] = 472, + [3813] = 3813, + [3814] = 3814, + [3815] = 447, + [3816] = 469, + [3817] = 476, + [3818] = 477, + [3819] = 445, + [3820] = 446, + [3821] = 457, + [3822] = 462, + [3823] = 465, + [3824] = 467, + [3825] = 473, + [3826] = 480, + [3827] = 481, + [3828] = 483, + [3829] = 1657, + [3830] = 425, + [3831] = 426, + [3832] = 427, + [3833] = 528, + [3834] = 1511, + [3835] = 429, + [3836] = 1658, + [3837] = 1659, + [3838] = 430, + [3839] = 431, + [3840] = 432, + [3841] = 1517, + [3842] = 1532, + [3843] = 1535, + [3844] = 486, + [3845] = 488, + [3846] = 489, + [3847] = 490, + [3848] = 491, + [3849] = 492, + [3850] = 493, + [3851] = 494, + [3852] = 495, + [3853] = 3757, + [3854] = 497, + [3855] = 498, + [3856] = 499, + [3857] = 500, + [3858] = 501, + [3859] = 502, + [3860] = 3758, + [3861] = 3861, + [3862] = 3759, + [3863] = 1546, + [3864] = 1003, [3865] = 3865, [3866] = 3866, - [3867] = 1017, - [3868] = 1016, - [3869] = 1012, - [3870] = 1013, - [3871] = 1014, - [3872] = 1015, - [3873] = 1017, - [3874] = 1021, - [3875] = 1012, + [3867] = 1019, + [3868] = 1015, + [3869] = 1013, + [3870] = 1016, + [3871] = 1018, + [3872] = 1017, + [3873] = 1016, + [3874] = 1015, + [3875] = 1020, [3876] = 1013, - [3877] = 1014, - [3878] = 1015, - [3879] = 1016, - [3880] = 1022, - [3881] = 1041, - [3882] = 1039, - [3883] = 1040, - [3884] = 1032, - [3885] = 1052, - [3886] = 1051, + [3877] = 1017, + [3878] = 1018, + [3879] = 1019, + [3880] = 1023, + [3881] = 1044, + [3882] = 1032, + [3883] = 1043, + [3884] = 1053, + [3885] = 1045, + [3886] = 1042, [3887] = 1031, - [3888] = 1042, - [3889] = 1046, - [3890] = 1033, - [3891] = 1022, - [3892] = 1036, - [3893] = 1037, - [3894] = 1021, - [3895] = 1052, - [3896] = 1033, - [3897] = 1036, - [3898] = 1037, - [3899] = 1039, - [3900] = 1032, - [3901] = 1040, - [3902] = 1042, - [3903] = 1031, - [3904] = 1041, - [3905] = 1046, - [3906] = 1051, + [3888] = 1030, + [3889] = 1041, + [3890] = 1023, + [3891] = 1020, + [3892] = 1038, + [3893] = 1039, + [3894] = 1040, + [3895] = 1030, + [3896] = 1042, + [3897] = 1043, + [3898] = 1044, + [3899] = 1045, + [3900] = 1053, + [3901] = 1032, + [3902] = 1038, + [3903] = 1039, + [3904] = 1031, + [3905] = 1040, + [3906] = 1041, [3907] = 265, - [3908] = 264, - [3909] = 3909, - [3910] = 264, - [3911] = 271, - [3912] = 273, - [3913] = 269, - [3914] = 267, - [3915] = 268, - [3916] = 265, - [3917] = 999, - [3918] = 268, - [3919] = 273, - [3920] = 267, - [3921] = 271, - [3922] = 276, + [3908] = 3908, + [3909] = 264, + [3910] = 269, + [3911] = 272, + [3912] = 271, + [3913] = 270, + [3914] = 265, + [3915] = 273, + [3916] = 264, + [3917] = 284, + [3918] = 279, + [3919] = 269, + [3920] = 286, + [3921] = 283, + [3922] = 271, [3923] = 285, - [3924] = 286, - [3925] = 269, - [3926] = 283, - [3927] = 280, - [3928] = 315, - [3929] = 280, - [3930] = 276, - [3931] = 309, - [3932] = 288, - [3933] = 286, - [3934] = 305, - [3935] = 307, - [3936] = 1284, - [3937] = 999, - [3938] = 305, - [3939] = 1284, - [3940] = 304, - [3941] = 294, - [3942] = 288, - [3943] = 309, - [3944] = 289, - [3945] = 304, - [3946] = 1330, - [3947] = 312, - [3948] = 285, - [3949] = 283, - [3950] = 310, - [3951] = 300, - [3952] = 297, - [3953] = 1332, - [3954] = 294, - [3955] = 1459, - [3956] = 288, - [3957] = 297, - [3958] = 304, - [3959] = 310, - [3960] = 300, - [3961] = 304, - [3962] = 288, - [3963] = 1382, - [3964] = 1330, - [3965] = 1464, - [3966] = 289, - [3967] = 1332, - [3968] = 1399, - [3969] = 1384, - [3970] = 309, - [3971] = 328, - [3972] = 1016, - [3973] = 1384, - [3974] = 312, - [3975] = 342, - [3976] = 309, - [3977] = 1330, - [3978] = 325, - [3979] = 344, - [3980] = 1463, - [3981] = 312, - [3982] = 309, - [3983] = 1382, - [3984] = 353, - [3985] = 341, + [3924] = 1003, + [3925] = 272, + [3926] = 273, + [3927] = 270, + [3928] = 310, + [3929] = 296, + [3930] = 309, + [3931] = 289, + [3932] = 290, + [3933] = 294, + [3934] = 1294, + [3935] = 1289, + [3936] = 297, + [3937] = 299, + [3938] = 283, + [3939] = 1289, + [3940] = 288, + [3941] = 292, + [3942] = 284, + [3943] = 1339, + [3944] = 286, + [3945] = 309, + [3946] = 307, + [3947] = 285, + [3948] = 310, + [3949] = 1003, + [3950] = 288, + [3951] = 279, + [3952] = 302, + [3953] = 299, + [3954] = 1339, + [3955] = 1016, + [3956] = 1017, + [3957] = 1018, + [3958] = 331, + [3959] = 1374, + [3960] = 292, + [3961] = 1019, + [3962] = 310, + [3963] = 310, + [3964] = 337, + [3965] = 338, + [3966] = 1466, + [3967] = 302, + [3968] = 1377, + [3969] = 1358, + [3970] = 289, + [3971] = 299, + [3972] = 1404, + [3973] = 356, + [3974] = 366, + [3975] = 1465, + [3976] = 294, + [3977] = 290, + [3978] = 309, + [3979] = 288, + [3980] = 1377, + [3981] = 288, + [3982] = 1289, + [3983] = 1015, + [3984] = 302, + [3985] = 1339, [3986] = 288, - [3987] = 323, - [3988] = 304, - [3989] = 307, - [3990] = 305, - [3991] = 305, - [3992] = 1332, - [3993] = 1284, - [3994] = 315, - [3995] = 1012, - [3996] = 1013, - [3997] = 1284, - [3998] = 1014, - [3999] = 1015, - [4000] = 1017, - [4001] = 344, - [4002] = 1332, - [4003] = 1495, - [4004] = 341, - [4005] = 265, - [4006] = 353, - [4007] = 1521, - [4008] = 385, - [4009] = 1507, - [4010] = 1508, - [4011] = 1464, - [4012] = 325, - [4013] = 1509, - [4014] = 1459, - [4015] = 1463, - [4016] = 1514, - [4017] = 1330, - [4018] = 1493, - [4019] = 1382, - [4020] = 1513, - [4021] = 1382, - [4022] = 1527, - [4023] = 376, - [4024] = 344, - [4025] = 353, - [4026] = 1384, - [4027] = 1384, - [4028] = 1510, - [4029] = 1459, - [4030] = 264, - [4031] = 408, - [4032] = 1464, - [4033] = 1017, - [4034] = 391, - [4035] = 1515, - [4036] = 1463, - [4037] = 395, - [4038] = 420, - [4039] = 1012, - [4040] = 1013, - [4041] = 1494, - [4042] = 1522, - [4043] = 1014, - [4044] = 1399, - [4045] = 1016, - [4046] = 1015, - [4047] = 1492, - [4048] = 341, - [4049] = 1021, - [4050] = 4050, - [4051] = 328, - [4052] = 265, - [4053] = 342, - [4054] = 1022, - [4055] = 411, - [4056] = 323, - [4057] = 264, - [4058] = 323, - [4059] = 4050, - [4060] = 444, - [4061] = 1577, - [4062] = 1578, - [4063] = 1581, - [4064] = 1586, - [4065] = 1587, - [4066] = 344, - [4067] = 1594, - [4068] = 1609, - [4069] = 1611, - [4070] = 341, - [4071] = 431, - [4072] = 464, - [4073] = 1613, - [4074] = 1616, - [4075] = 1617, - [4076] = 1493, - [4077] = 430, - [4078] = 1618, - [4079] = 265, - [4080] = 429, - [4081] = 1623, - [4082] = 1626, - [4083] = 1522, - [4084] = 463, - [4085] = 1635, - [4086] = 395, - [4087] = 1639, - [4088] = 266, - [4089] = 1515, - [4090] = 1649, - [4091] = 288, - [4092] = 1651, - [4093] = 312, - [4094] = 1654, - [4095] = 1655, - [4096] = 1657, - [4097] = 1661, - [4098] = 264, + [3987] = 296, + [3988] = 1013, + [3989] = 297, + [3990] = 309, + [3991] = 325, + [3992] = 1294, + [3993] = 299, + [3994] = 310, + [3995] = 309, + [3996] = 1294, + [3997] = 330, + [3998] = 1374, + [3999] = 307, + [4000] = 1289, + [4001] = 1377, + [4002] = 1019, + [4003] = 387, + [4004] = 337, + [4005] = 1511, + [4006] = 371, + [4007] = 1294, + [4008] = 1517, + [4009] = 1016, + [4010] = 330, + [4011] = 331, + [4012] = 1466, + [4013] = 1499, + [4014] = 1532, + [4015] = 265, + [4016] = 330, + [4017] = 325, + [4018] = 1535, + [4019] = 265, + [4020] = 1465, + [4021] = 1374, + [4022] = 1533, + [4023] = 331, + [4024] = 1466, + [4025] = 366, + [4026] = 1497, + [4027] = 389, + [4028] = 264, + [4029] = 1404, + [4030] = 1404, + [4031] = 1536, + [4032] = 1470, + [4033] = 1477, + [4034] = 1478, + [4035] = 264, + [4036] = 1485, + [4037] = 337, + [4038] = 388, + [4039] = 383, + [4040] = 4040, + [4041] = 1339, + [4042] = 1377, + [4043] = 1023, + [4044] = 1358, + [4045] = 1017, + [4046] = 338, + [4047] = 1013, + [4048] = 384, + [4049] = 1465, + [4050] = 1020, + [4051] = 1015, + [4052] = 1018, + [4053] = 338, + [4054] = 1474, + [4055] = 356, + [4056] = 375, + [4057] = 1505, + [4058] = 1374, + [4059] = 371, + [4060] = 1570, + [4061] = 1571, + [4062] = 1572, + [4063] = 469, + [4064] = 1573, + [4065] = 1580, + [4066] = 1585, + [4067] = 1587, + [4068] = 1595, + [4069] = 429, + [4070] = 472, + [4071] = 1003, + [4072] = 473, + [4073] = 1600, + [4074] = 1622, + [4075] = 1635, + [4076] = 1645, + [4077] = 1646, + [4078] = 1652, + [4079] = 1653, + [4080] = 1671, + [4081] = 476, + [4082] = 432, + [4083] = 1672, + [4084] = 480, + [4085] = 1673, + [4086] = 1677, + [4087] = 447, + [4088] = 1681, + [4089] = 1686, + [4090] = 481, + [4091] = 4091, + [4092] = 1692, + [4093] = 483, + [4094] = 1693, + [4095] = 1695, + [4096] = 1710, + [4097] = 1724, + [4098] = 1638, [4099] = 1539, - [4100] = 309, - [4101] = 1620, - [4102] = 1722, - [4103] = 267, - [4104] = 1463, - [4105] = 1513, - [4106] = 264, - [4107] = 1678, - [4108] = 1514, - [4109] = 473, - [4110] = 465, - [4111] = 447, - [4112] = 1464, - [4113] = 434, - [4114] = 466, - [4115] = 1495, - [4116] = 265, - [4117] = 1677, - [4118] = 432, - [4119] = 1691, - [4120] = 304, - [4121] = 1574, - [4122] = 273, - [4123] = 1572, - [4124] = 1689, - [4125] = 268, - [4126] = 1718, - [4127] = 1571, - [4128] = 1717, - [4129] = 1570, - [4130] = 1567, - [4131] = 1559, - [4132] = 1459, + [4100] = 387, + [4101] = 1543, + [4102] = 1545, + [4103] = 1546, + [4104] = 1023, + [4105] = 1020, + [4106] = 505, + [4107] = 425, + [4108] = 426, + [4109] = 1637, + [4110] = 265, + [4111] = 427, + [4112] = 528, + [4113] = 264, + [4114] = 267, + [4115] = 383, + [4116] = 430, + [4117] = 431, + [4118] = 270, + [4119] = 1517, + [4120] = 1474, + [4121] = 477, + [4122] = 1511, + [4123] = 272, + [4124] = 1517, + [4125] = 270, + [4126] = 388, + [4127] = 272, + [4128] = 273, + [4129] = 1532, + [4130] = 1535, + [4131] = 273, + [4132] = 271, [4133] = 269, - [4134] = 273, - [4135] = 269, - [4136] = 1716, - [4137] = 267, - [4138] = 1714, - [4139] = 437, - [4140] = 1031, - [4141] = 1042, - [4142] = 1040, - [4143] = 1032, - [4144] = 1033, - [4145] = 268, - [4146] = 449, - [4147] = 1595, - [4148] = 1036, - [4149] = 526, - [4150] = 1037, - [4151] = 1039, - [4152] = 1666, - [4153] = 1495, - [4154] = 391, - [4155] = 1707, - [4156] = 1494, - [4157] = 438, - [4158] = 1703, - [4159] = 411, - [4160] = 1702, - [4161] = 1701, - [4162] = 420, - [4163] = 1675, - [4164] = 1041, - [4165] = 4165, - [4166] = 420, - [4167] = 1046, - [4168] = 1700, - [4169] = 1698, - [4170] = 1051, - [4171] = 1052, - [4172] = 1696, - [4173] = 1695, - [4174] = 391, - [4175] = 1667, - [4176] = 1022, - [4177] = 1021, - [4178] = 4178, - [4179] = 451, - [4180] = 999, - [4181] = 469, - [4182] = 1494, - [4183] = 470, - [4184] = 1493, - [4185] = 439, - [4186] = 1521, - [4187] = 467, - [4188] = 443, - [4189] = 385, - [4190] = 486, - [4191] = 420, - [4192] = 1492, - [4193] = 376, - [4194] = 4194, - [4195] = 1688, - [4196] = 271, - [4197] = 408, - [4198] = 1686, - [4199] = 1685, - [4200] = 1576, - [4201] = 1684, - [4202] = 493, - [4203] = 376, - [4204] = 408, - [4205] = 385, - [4206] = 1507, - [4207] = 1508, - [4208] = 1509, - [4209] = 1510, - [4210] = 1527, - [4211] = 489, - [4212] = 4212, - [4213] = 1662, - [4214] = 453, - [4215] = 448, - [4216] = 4216, - [4217] = 271, - [4218] = 1664, - [4219] = 1665, - [4220] = 487, - [4221] = 1669, - [4222] = 1492, - [4223] = 271, - [4224] = 1695, - [4225] = 4225, - [4226] = 1707, - [4227] = 1539, - [4228] = 1611, - [4229] = 4229, - [4230] = 464, - [4231] = 1617, - [4232] = 271, - [4233] = 467, - [4234] = 526, - [4235] = 264, - [4236] = 1613, - [4237] = 1618, - [4238] = 4238, - [4239] = 1662, - [4240] = 307, - [4241] = 444, - [4242] = 312, - [4243] = 4243, - [4244] = 1616, - [4245] = 4245, - [4246] = 310, - [4247] = 315, - [4248] = 1623, - [4249] = 449, - [4250] = 289, - [4251] = 1586, - [4252] = 1703, - [4253] = 1664, - [4254] = 487, - [4255] = 1665, - [4256] = 1666, - [4257] = 1667, - [4258] = 344, - [4259] = 4259, - [4260] = 300, - [4261] = 1684, - [4262] = 1669, + [4134] = 271, + [4135] = 1499, + [4136] = 4136, + [4137] = 269, + [4138] = 288, + [4139] = 310, + [4140] = 457, + [4141] = 4040, + [4142] = 1532, + [4143] = 337, + [4144] = 1497, + [4145] = 338, + [4146] = 4146, + [4147] = 1533, + [4148] = 309, + [4149] = 302, + [4150] = 1642, + [4151] = 389, + [4152] = 265, + [4153] = 1511, + [4154] = 1535, + [4155] = 264, + [4156] = 383, + [4157] = 1725, + [4158] = 1656, + [4159] = 1640, + [4160] = 520, + [4161] = 1657, + [4162] = 1485, + [4163] = 1658, + [4164] = 1659, + [4165] = 522, + [4166] = 387, + [4167] = 523, + [4168] = 384, + [4169] = 384, + [4170] = 524, + [4171] = 445, + [4172] = 446, + [4173] = 375, + [4174] = 1625, + [4175] = 1682, + [4176] = 1683, + [4177] = 1628, + [4178] = 1536, + [4179] = 1470, + [4180] = 1477, + [4181] = 1478, + [4182] = 1684, + [4183] = 1687, + [4184] = 1690, + [4185] = 462, + [4186] = 1704, + [4187] = 1614, + [4188] = 1565, + [4189] = 388, + [4190] = 1466, + [4191] = 465, + [4192] = 467, + [4193] = 1664, + [4194] = 1666, + [4195] = 1706, + [4196] = 4196, + [4197] = 1712, + [4198] = 1717, + [4199] = 1721, + [4200] = 1404, + [4201] = 1615, + [4202] = 1465, + [4203] = 1617, + [4204] = 1630, + [4205] = 371, + [4206] = 1551, + [4207] = 1053, + [4208] = 1031, + [4209] = 1032, + [4210] = 1030, + [4211] = 1038, + [4212] = 1039, + [4213] = 1040, + [4214] = 1041, + [4215] = 1042, + [4216] = 1043, + [4217] = 1044, + [4218] = 1045, + [4219] = 1553, + [4220] = 388, + [4221] = 1505, + [4222] = 4222, + [4223] = 388, + [4224] = 4224, + [4225] = 286, + [4226] = 480, + [4227] = 284, + [4228] = 476, + [4229] = 283, + [4230] = 284, + [4231] = 285, + [4232] = 1682, + [4233] = 4233, + [4234] = 1683, + [4235] = 283, + [4236] = 1684, + [4237] = 1687, + [4238] = 481, + [4239] = 1539, + [4240] = 1690, + [4241] = 1704, + [4242] = 1706, + [4243] = 1712, + [4244] = 285, + [4245] = 1677, + [4246] = 288, + [4247] = 523, + [4248] = 1681, + [4249] = 1686, + [4250] = 1692, + [4251] = 309, + [4252] = 330, + [4253] = 331, + [4254] = 1693, + [4255] = 465, + [4256] = 1543, + [4257] = 1545, + [4258] = 483, + [4259] = 1546, + [4260] = 1717, + [4261] = 1721, + [4262] = 1551, [4263] = 4263, - [4264] = 1626, - [4265] = 1685, - [4266] = 264, - [4267] = 463, - [4268] = 305, - [4269] = 439, - [4270] = 288, - [4271] = 266, - [4272] = 4272, - [4273] = 1686, - [4274] = 1635, - [4275] = 341, - [4276] = 4276, - [4277] = 274, - [4278] = 304, - [4279] = 265, - [4280] = 4280, - [4281] = 1696, - [4282] = 1639, - [4283] = 443, - [4284] = 1609, - [4285] = 1677, - [4286] = 493, - [4287] = 453, - [4288] = 1678, - [4289] = 451, - [4290] = 1688, - [4291] = 1675, - [4292] = 1649, - [4293] = 1495, - [4294] = 1594, - [4295] = 1702, - [4296] = 267, - [4297] = 434, - [4298] = 273, - [4299] = 268, - [4300] = 1651, - [4301] = 269, - [4302] = 344, - [4303] = 266, - [4304] = 1654, - [4305] = 1701, - [4306] = 430, - [4307] = 4216, - [4308] = 486, - [4309] = 447, - [4310] = 1655, - [4311] = 469, - [4312] = 265, - [4313] = 1698, - [4314] = 305, - [4315] = 429, - [4316] = 1587, - [4317] = 268, - [4318] = 1657, - [4319] = 1494, - [4320] = 1581, - [4321] = 470, - [4322] = 1661, - [4323] = 408, - [4324] = 273, - [4325] = 309, - [4326] = 465, - [4327] = 1595, - [4328] = 341, - [4329] = 999, - [4330] = 283, - [4331] = 1722, - [4332] = 1578, - [4333] = 288, - [4334] = 285, - [4335] = 264, - [4336] = 1577, - [4337] = 1576, - [4338] = 420, - [4339] = 1714, - [4340] = 466, - [4341] = 1716, - [4342] = 1493, - [4343] = 489, - [4344] = 1691, - [4345] = 1689, - [4346] = 1574, - [4347] = 353, - [4348] = 1572, - [4349] = 1620, - [4350] = 323, - [4351] = 276, - [4352] = 4352, - [4353] = 265, - [4354] = 309, - [4355] = 1052, - [4356] = 1051, - [4357] = 286, - [4358] = 267, - [4359] = 1046, - [4360] = 1041, - [4361] = 4361, - [4362] = 297, - [4363] = 1700, - [4364] = 1717, - [4365] = 432, - [4366] = 1559, - [4367] = 1567, - [4368] = 448, - [4369] = 1718, - [4370] = 431, - [4371] = 285, - [4372] = 283, - [4373] = 437, - [4374] = 473, - [4375] = 304, - [4376] = 438, - [4377] = 1570, - [4378] = 286, - [4379] = 1039, - [4380] = 1037, - [4381] = 1036, - [4382] = 1033, - [4383] = 1571, - [4384] = 1032, - [4385] = 1040, - [4386] = 269, - [4387] = 1042, - [4388] = 1031, - [4389] = 394, - [4390] = 276, - [4391] = 1492, - [4392] = 273, - [4393] = 265, - [4394] = 264, - [4395] = 271, - [4396] = 267, + [4264] = 1553, + [4265] = 445, + [4266] = 446, + [4267] = 1695, + [4268] = 4268, + [4269] = 1652, + [4270] = 447, + [4271] = 1642, + [4272] = 265, + [4273] = 264, + [4274] = 524, + [4275] = 520, + [4276] = 1637, + [4277] = 280, + [4278] = 4278, + [4279] = 270, + [4280] = 1710, + [4281] = 1725, + [4282] = 1640, + [4283] = 427, + [4284] = 467, + [4285] = 528, + [4286] = 4286, + [4287] = 272, + [4288] = 457, + [4289] = 273, + [4290] = 271, + [4291] = 269, + [4292] = 425, + [4293] = 337, + [4294] = 4294, + [4295] = 426, + [4296] = 1724, + [4297] = 505, + [4298] = 264, + [4299] = 1565, + [4300] = 1570, + [4301] = 1571, + [4302] = 338, + [4303] = 338, + [4304] = 1572, + [4305] = 1573, + [4306] = 265, + [4307] = 1653, + [4308] = 302, + [4309] = 1580, + [4310] = 1664, + [4311] = 4311, + [4312] = 4312, + [4313] = 264, + [4314] = 1638, + [4315] = 292, + [4316] = 1053, + [4317] = 1031, + [4318] = 1032, + [4319] = 1030, + [4320] = 310, + [4321] = 1585, + [4322] = 294, + [4323] = 1615, + [4324] = 1658, + [4325] = 1587, + [4326] = 1671, + [4327] = 522, + [4328] = 270, + [4329] = 1672, + [4330] = 1038, + [4331] = 1617, + [4332] = 469, + [4333] = 1039, + [4334] = 4334, + [4335] = 1635, + [4336] = 1003, + [4337] = 1040, + [4338] = 1625, + [4339] = 1041, + [4340] = 1614, + [4341] = 1042, + [4342] = 1043, + [4343] = 477, + [4344] = 1044, + [4345] = 1045, + [4346] = 1628, + [4347] = 1673, + [4348] = 431, + [4349] = 1595, + [4350] = 372, + [4351] = 429, + [4352] = 309, + [4353] = 4353, + [4354] = 1645, + [4355] = 337, + [4356] = 1600, + [4357] = 1659, + [4358] = 296, + [4359] = 1622, + [4360] = 272, + [4361] = 307, + [4362] = 432, + [4363] = 4196, + [4364] = 267, + [4365] = 289, + [4366] = 473, + [4367] = 297, + [4368] = 430, + [4369] = 1511, + [4370] = 472, + [4371] = 273, + [4372] = 299, + [4373] = 271, + [4374] = 1630, + [4375] = 310, + [4376] = 269, + [4377] = 1517, + [4378] = 1532, + [4379] = 1535, + [4380] = 267, + [4381] = 1646, + [4382] = 387, + [4383] = 265, + [4384] = 1656, + [4385] = 4385, + [4386] = 286, + [4387] = 1657, + [4388] = 288, + [4389] = 462, + [4390] = 299, + [4391] = 1666, + [4392] = 272, + [4393] = 325, + [4394] = 4394, + [4395] = 1015, + [4396] = 273, [4397] = 273, - [4398] = 4398, - [4399] = 266, - [4400] = 269, - [4401] = 420, - [4402] = 311, - [4403] = 341, - [4404] = 323, - [4405] = 4405, - [4406] = 353, - [4407] = 294, - [4408] = 264, - [4409] = 265, - [4410] = 376, - [4411] = 1015, - [4412] = 4412, - [4413] = 4405, - [4414] = 274, - [4415] = 269, - [4416] = 265, - [4417] = 269, - [4418] = 283, - [4419] = 264, - [4420] = 274, - [4421] = 286, - [4422] = 265, - [4423] = 391, - [4424] = 266, - [4425] = 4405, - [4426] = 344, - [4427] = 999, - [4428] = 276, - [4429] = 342, - [4430] = 276, - [4431] = 268, - [4432] = 285, - [4433] = 385, - [4434] = 268, - [4435] = 1016, - [4436] = 325, - [4437] = 264, - [4438] = 267, - [4439] = 1014, + [4398] = 271, + [4399] = 280, + [4400] = 265, + [4401] = 271, + [4402] = 269, + [4403] = 267, + [4404] = 280, + [4405] = 356, + [4406] = 271, + [4407] = 366, + [4408] = 269, + [4409] = 337, + [4410] = 286, + [4411] = 290, + [4412] = 265, + [4413] = 330, + [4414] = 265, + [4415] = 264, + [4416] = 267, + [4417] = 331, + [4418] = 286, + [4419] = 284, + [4420] = 4420, + [4421] = 283, + [4422] = 1003, + [4423] = 264, + [4424] = 4424, + [4425] = 285, + [4426] = 305, + [4427] = 284, + [4428] = 1016, + [4429] = 1017, + [4430] = 1018, + [4431] = 1019, + [4432] = 283, + [4433] = 4424, + [4434] = 273, + [4435] = 265, + [4436] = 285, + [4437] = 4424, + [4438] = 4278, + [4439] = 1013, [4440] = 264, - [4441] = 265, - [4442] = 1013, - [4443] = 283, - [4444] = 268, - [4445] = 4243, - [4446] = 1012, - [4447] = 271, - [4448] = 328, - [4449] = 286, + [4441] = 384, + [4442] = 338, + [4443] = 265, + [4444] = 270, + [4445] = 269, + [4446] = 270, + [4447] = 264, + [4448] = 264, + [4449] = 270, [4450] = 4450, - [4451] = 1017, - [4452] = 267, - [4453] = 271, - [4454] = 273, - [4455] = 285, - [4456] = 268, - [4457] = 288, - [4458] = 408, - [4459] = 269, - [4460] = 394, - [4461] = 271, - [4462] = 1050, - [4463] = 276, - [4464] = 1022, - [4465] = 309, - [4466] = 283, - [4467] = 274, - [4468] = 268, - [4469] = 1021, - [4470] = 391, - [4471] = 264, - [4472] = 271, - [4473] = 4473, - [4474] = 4474, - [4475] = 1012, - [4476] = 286, - [4477] = 269, - [4478] = 265, - [4479] = 273, - [4480] = 273, - [4481] = 265, - [4482] = 283, - [4483] = 300, - [4484] = 264, - [4485] = 276, - [4486] = 4486, - [4487] = 1013, - [4488] = 267, - [4489] = 4489, - [4490] = 267, - [4491] = 1016, - [4492] = 273, - [4493] = 1012, - [4494] = 4450, - [4495] = 1013, - [4496] = 325, - [4497] = 1014, - [4498] = 294, - [4499] = 305, - [4500] = 268, - [4501] = 312, - [4502] = 1015, - [4503] = 286, - [4504] = 264, - [4505] = 266, - [4506] = 285, - [4507] = 4507, - [4508] = 1015, + [4451] = 371, + [4452] = 272, + [4453] = 388, + [4454] = 272, + [4455] = 383, + [4456] = 269, + [4457] = 269, + [4458] = 372, + [4459] = 271, + [4460] = 4460, + [4461] = 283, + [4462] = 264, + [4463] = 272, + [4464] = 366, + [4465] = 290, + [4466] = 269, + [4467] = 356, + [4468] = 1016, + [4469] = 310, + [4470] = 371, + [4471] = 309, + [4472] = 4394, + [4473] = 383, + [4474] = 265, + [4475] = 273, + [4476] = 1023, + [4477] = 1020, + [4478] = 4478, + [4479] = 270, + [4480] = 265, + [4481] = 4481, + [4482] = 1013, + [4483] = 273, + [4484] = 273, + [4485] = 271, + [4486] = 375, + [4487] = 4487, + [4488] = 305, + [4489] = 267, + [4490] = 290, + [4491] = 267, + [4492] = 1017, + [4493] = 270, + [4494] = 270, + [4495] = 292, + [4496] = 1018, + [4497] = 271, + [4498] = 283, + [4499] = 4499, + [4500] = 264, + [4501] = 1013, + [4502] = 272, + [4503] = 1019, + [4504] = 288, + [4505] = 279, + [4506] = 384, + [4507] = 265, + [4508] = 302, [4509] = 4509, - [4510] = 4510, - [4511] = 305, - [4512] = 4512, - [4513] = 269, - [4514] = 4507, - [4515] = 286, - [4516] = 304, - [4517] = 271, - [4518] = 297, - [4519] = 4519, - [4520] = 420, - [4521] = 1017, - [4522] = 311, - [4523] = 265, - [4524] = 280, - [4525] = 267, - [4526] = 268, - [4527] = 264, - [4528] = 285, - [4529] = 395, - [4530] = 271, - [4531] = 311, - [4532] = 269, - [4533] = 294, - [4534] = 283, - [4535] = 265, - [4536] = 328, - [4537] = 265, - [4538] = 309, - [4539] = 268, - [4540] = 376, - [4541] = 1016, - [4542] = 271, - [4543] = 288, - [4544] = 4510, - [4545] = 273, - [4546] = 267, - [4547] = 264, - [4548] = 273, - [4549] = 385, - [4550] = 274, - [4551] = 285, - [4552] = 276, - [4553] = 4553, - [4554] = 1014, - [4555] = 407, - [4556] = 304, - [4557] = 269, - [4558] = 266, + [4510] = 299, + [4511] = 264, + [4512] = 284, + [4513] = 265, + [4514] = 271, + [4515] = 294, + [4516] = 285, + [4517] = 285, + [4518] = 4518, + [4519] = 414, + [4520] = 273, + [4521] = 285, + [4522] = 288, + [4523] = 299, + [4524] = 265, + [4525] = 272, + [4526] = 271, + [4527] = 270, + [4528] = 280, + [4529] = 305, + [4530] = 269, + [4531] = 310, + [4532] = 272, + [4533] = 286, + [4534] = 4478, + [4535] = 280, + [4536] = 4536, + [4537] = 272, + [4538] = 264, + [4539] = 1016, + [4540] = 1017, + [4541] = 1018, + [4542] = 1019, + [4543] = 1015, + [4544] = 4544, + [4545] = 269, + [4546] = 1048, + [4547] = 387, + [4548] = 286, + [4549] = 273, + [4550] = 284, + [4551] = 286, + [4552] = 309, + [4553] = 4499, + [4554] = 284, + [4555] = 388, + [4556] = 267, + [4557] = 4557, + [4558] = 283, [4559] = 4559, - [4560] = 267, - [4561] = 266, - [4562] = 1013, - [4563] = 469, - [4564] = 467, - [4565] = 288, - [4566] = 466, - [4567] = 465, - [4568] = 437, - [4569] = 438, - [4570] = 305, - [4571] = 487, - [4572] = 285, - [4573] = 489, - [4574] = 1052, - [4575] = 1051, - [4576] = 1046, - [4577] = 1041, - [4578] = 444, - [4579] = 434, - [4580] = 470, - [4581] = 271, - [4582] = 267, - [4583] = 286, - [4584] = 283, - [4585] = 283, - [4586] = 464, - [4587] = 283, - [4588] = 288, - [4589] = 463, - [4590] = 486, - [4591] = 269, - [4592] = 276, - [4593] = 377, - [4594] = 432, - [4595] = 341, - [4596] = 448, - [4597] = 493, - [4598] = 473, - [4599] = 394, - [4600] = 288, - [4601] = 273, - [4602] = 294, - [4603] = 312, - [4604] = 294, - [4605] = 4605, - [4606] = 265, - [4607] = 264, - [4608] = 276, - [4609] = 268, - [4610] = 285, - [4611] = 285, - [4612] = 267, - [4613] = 273, - [4614] = 268, - [4615] = 271, - [4616] = 273, - [4617] = 1012, - [4618] = 276, - [4619] = 286, - [4620] = 1039, - [4621] = 1037, - [4622] = 430, - [4623] = 429, - [4624] = 1036, - [4625] = 1033, - [4626] = 285, - [4627] = 268, - [4628] = 1032, - [4629] = 1040, - [4630] = 1014, - [4631] = 286, - [4632] = 1042, - [4633] = 1031, - [4634] = 1015, - [4635] = 268, - [4636] = 274, - [4637] = 283, - [4638] = 269, - [4639] = 305, - [4640] = 491, - [4641] = 266, - [4642] = 305, - [4643] = 304, - [4644] = 4644, - [4645] = 269, - [4646] = 311, - [4647] = 264, - [4648] = 447, - [4649] = 4649, - [4650] = 453, - [4651] = 274, - [4652] = 276, - [4653] = 280, - [4654] = 265, - [4655] = 431, - [4656] = 304, - [4657] = 315, - [4658] = 309, - [4659] = 271, - [4660] = 408, - [4661] = 344, - [4662] = 411, - [4663] = 1022, - [4664] = 280, - [4665] = 289, - [4666] = 1021, - [4667] = 451, - [4668] = 310, - [4669] = 4669, - [4670] = 286, - [4671] = 273, - [4672] = 280, - [4673] = 307, - [4674] = 268, - [4675] = 4675, - [4676] = 4676, - [4677] = 449, - [4678] = 297, - [4679] = 4559, - [4680] = 269, - [4681] = 276, - [4682] = 439, - [4683] = 267, - [4684] = 267, - [4685] = 280, - [4686] = 300, - [4687] = 526, - [4688] = 285, - [4689] = 4553, - [4690] = 309, - [4691] = 443, - [4692] = 286, - [4693] = 312, - [4694] = 353, - [4695] = 323, + [4560] = 270, + [4561] = 264, + [4562] = 272, + [4563] = 389, + [4564] = 4564, + [4565] = 4565, + [4566] = 4566, + [4567] = 279, + [4568] = 307, + [4569] = 269, + [4570] = 270, + [4571] = 289, + [4572] = 431, + [4573] = 265, + [4574] = 264, + [4575] = 270, + [4576] = 270, + [4577] = 481, + [4578] = 292, + [4579] = 272, + [4580] = 273, + [4581] = 273, + [4582] = 272, + [4583] = 271, + [4584] = 294, + [4585] = 269, + [4586] = 1023, + [4587] = 1020, + [4588] = 309, + [4589] = 286, + [4590] = 284, + [4591] = 305, + [4592] = 283, + [4593] = 285, + [4594] = 279, + [4595] = 286, + [4596] = 290, + [4597] = 271, + [4598] = 503, + [4599] = 486, + [4600] = 284, + [4601] = 305, + [4602] = 387, + [4603] = 269, + [4604] = 488, + [4605] = 273, + [4606] = 489, + [4607] = 490, + [4608] = 491, + [4609] = 492, + [4610] = 493, + [4611] = 494, + [4612] = 495, + [4613] = 496, + [4614] = 497, + [4615] = 498, + [4616] = 499, + [4617] = 500, + [4618] = 501, + [4619] = 502, + [4620] = 283, + [4621] = 1015, + [4622] = 285, + [4623] = 302, + [4624] = 483, + [4625] = 273, + [4626] = 296, + [4627] = 373, + [4628] = 279, + [4629] = 297, + [4630] = 280, + [4631] = 521, + [4632] = 310, + [4633] = 477, + [4634] = 432, + [4635] = 288, + [4636] = 288, + [4637] = 267, + [4638] = 286, + [4639] = 310, + [4640] = 302, + [4641] = 299, + [4642] = 457, + [4643] = 505, + [4644] = 284, + [4645] = 1013, + [4646] = 299, + [4647] = 1016, + [4648] = 1017, + [4649] = 1018, + [4650] = 271, + [4651] = 520, + [4652] = 1019, + [4653] = 522, + [4654] = 523, + [4655] = 524, + [4656] = 425, + [4657] = 426, + [4658] = 337, + [4659] = 286, + [4660] = 280, + [4661] = 272, + [4662] = 284, + [4663] = 283, + [4664] = 4664, + [4665] = 283, + [4666] = 285, + [4667] = 1053, + [4668] = 4668, + [4669] = 1031, + [4670] = 265, + [4671] = 1032, + [4672] = 264, + [4673] = 1030, + [4674] = 270, + [4675] = 338, + [4676] = 285, + [4677] = 280, + [4678] = 279, + [4679] = 1038, + [4680] = 1039, + [4681] = 1040, + [4682] = 1041, + [4683] = 1042, + [4684] = 330, + [4685] = 331, + [4686] = 427, + [4687] = 1043, + [4688] = 1044, + [4689] = 1045, + [4690] = 528, + [4691] = 288, + [4692] = 299, + [4693] = 271, + [4694] = 4694, + [4695] = 309, [4696] = 269, - [4697] = 304, - [4698] = 1017, - [4699] = 274, - [4700] = 283, - [4701] = 508, - [4702] = 503, - [4703] = 424, - [4704] = 1016, - [4705] = 527, - [4706] = 525, - [4707] = 523, - [4708] = 521, - [4709] = 519, - [4710] = 517, - [4711] = 515, - [4712] = 513, - [4713] = 423, - [4714] = 499, - [4715] = 492, - [4716] = 273, - [4717] = 490, - [4718] = 271, - [4719] = 311, - [4720] = 488, - [4721] = 522, - [4722] = 323, + [4697] = 480, + [4698] = 270, + [4699] = 286, + [4700] = 284, + [4701] = 283, + [4702] = 310, + [4703] = 272, + [4704] = 429, + [4705] = 285, + [4706] = 447, + [4707] = 4481, + [4708] = 469, + [4709] = 472, + [4710] = 476, + [4711] = 4460, + [4712] = 273, + [4713] = 445, + [4714] = 446, + [4715] = 372, + [4716] = 290, + [4717] = 462, + [4718] = 465, + [4719] = 467, + [4720] = 430, + [4721] = 473, + [4722] = 372, [4723] = 294, - [4724] = 294, - [4725] = 297, - [4726] = 304, - [4727] = 307, - [4728] = 280, - [4729] = 310, - [4730] = 1332, - [4731] = 1330, - [4732] = 312, - [4733] = 283, - [4734] = 266, + [4724] = 356, + [4725] = 366, + [4726] = 271, + [4727] = 267, + [4728] = 294, + [4729] = 307, + [4730] = 280, + [4731] = 307, + [4732] = 325, + [4733] = 1289, + [4734] = 288, [4735] = 288, - [4736] = 309, - [4737] = 377, - [4738] = 305, - [4739] = 305, - [4740] = 325, - [4741] = 309, - [4742] = 304, - [4743] = 285, - [4744] = 288, - [4745] = 300, - [4746] = 344, - [4747] = 341, - [4748] = 286, - [4749] = 420, - [4750] = 4649, - [4751] = 276, - [4752] = 271, - [4753] = 391, - [4754] = 311, - [4755] = 276, - [4756] = 297, - [4757] = 267, - [4758] = 311, - [4759] = 304, - [4760] = 289, - [4761] = 304, - [4762] = 394, - [4763] = 328, - [4764] = 2721, - [4765] = 264, - [4766] = 1052, - [4767] = 1051, - [4768] = 305, - [4769] = 264, - [4770] = 307, - [4771] = 312, - [4772] = 1046, - [4773] = 1041, - [4774] = 315, - [4775] = 286, - [4776] = 1021, - [4777] = 1022, - [4778] = 265, - [4779] = 288, - [4780] = 309, - [4781] = 283, - [4782] = 274, - [4783] = 294, - [4784] = 353, - [4785] = 265, - [4786] = 285, - [4787] = 286, - [4788] = 288, - [4789] = 4789, - [4790] = 1284, - [4791] = 276, - [4792] = 310, - [4793] = 288, - [4794] = 311, - [4795] = 280, - [4796] = 502, - [4797] = 271, - [4798] = 315, - [4799] = 309, - [4800] = 267, - [4801] = 269, - [4802] = 268, - [4803] = 273, - [4804] = 447, - [4805] = 265, - [4806] = 264, + [4736] = 296, + [4737] = 269, + [4738] = 388, + [4739] = 288, + [4740] = 309, + [4741] = 366, + [4742] = 469, + [4743] = 4743, + [4744] = 284, + [4745] = 286, + [4746] = 289, + [4747] = 264, + [4748] = 288, + [4749] = 338, + [4750] = 294, + [4751] = 290, + [4752] = 309, + [4753] = 4753, + [4754] = 290, + [4755] = 283, + [4756] = 371, + [4757] = 4757, + [4758] = 286, + [4759] = 4564, + [4760] = 284, + [4761] = 297, + [4762] = 297, + [4763] = 366, + [4764] = 283, + [4765] = 337, + [4766] = 4766, + [4767] = 285, + [4768] = 1053, + [4769] = 356, + [4770] = 1031, + [4771] = 305, + [4772] = 389, + [4773] = 372, + [4774] = 356, + [4775] = 296, + [4776] = 283, + [4777] = 1023, + [4778] = 1020, + [4779] = 309, + [4780] = 288, + [4781] = 307, + [4782] = 299, + [4783] = 297, + [4784] = 285, + [4785] = 296, + [4786] = 1032, + [4787] = 285, + [4788] = 310, + [4789] = 309, + [4790] = 307, + [4791] = 284, + [4792] = 1030, + [4793] = 330, + [4794] = 289, + [4795] = 286, + [4796] = 289, + [4797] = 270, + [4798] = 2664, + [4799] = 286, + [4800] = 272, + [4801] = 310, + [4802] = 331, + [4803] = 269, + [4804] = 284, + [4805] = 270, + [4806] = 285, [4807] = 273, - [4808] = 300, - [4809] = 276, - [4810] = 294, - [4811] = 494, - [4812] = 495, - [4813] = 496, - [4814] = 1039, - [4815] = 1037, - [4816] = 304, - [4817] = 498, - [4818] = 1036, - [4819] = 1033, - [4820] = 297, - [4821] = 500, - [4822] = 1032, - [4823] = 1040, - [4824] = 520, - [4825] = 518, - [4826] = 1042, - [4827] = 1031, - [4828] = 516, - [4829] = 312, - [4830] = 511, - [4831] = 286, - [4832] = 510, - [4833] = 315, - [4834] = 507, - [4835] = 307, - [4836] = 439, - [4837] = 307, - [4838] = 528, - [4839] = 289, + [4808] = 299, + [4809] = 271, + [4810] = 272, + [4811] = 269, + [4812] = 310, + [4813] = 265, + [4814] = 310, + [4815] = 4815, + [4816] = 4816, + [4817] = 4817, + [4818] = 265, + [4819] = 296, + [4820] = 264, + [4821] = 383, + [4822] = 4822, + [4823] = 373, + [4824] = 1038, + [4825] = 330, + [4826] = 331, + [4827] = 1039, + [4828] = 1339, + [4829] = 279, + [4830] = 302, + [4831] = 296, + [4832] = 384, + [4833] = 309, + [4834] = 285, + [4835] = 302, + [4836] = 1040, + [4837] = 299, + [4838] = 290, + [4839] = 297, [4840] = 289, - [4841] = 315, - [4842] = 310, - [4843] = 285, - [4844] = 328, - [4845] = 300, - [4846] = 268, - [4847] = 377, - [4848] = 325, - [4849] = 283, - [4850] = 297, - [4851] = 289, - [4852] = 265, - [4853] = 269, + [4841] = 305, + [4842] = 1041, + [4843] = 297, + [4844] = 1294, + [4845] = 286, + [4846] = 1042, + [4847] = 288, + [4848] = 267, + [4849] = 299, + [4850] = 1043, + [4851] = 310, + [4852] = 309, + [4853] = 265, [4854] = 264, - [4855] = 305, - [4856] = 309, - [4857] = 325, - [4858] = 283, - [4859] = 305, - [4860] = 288, - [4861] = 304, - [4862] = 328, - [4863] = 267, - [4864] = 300, - [4865] = 276, - [4866] = 342, - [4867] = 294, - [4868] = 1284, - [4869] = 271, - [4870] = 286, - [4871] = 309, - [4872] = 265, - [4873] = 264, - [4874] = 4874, - [4875] = 305, - [4876] = 341, - [4877] = 294, - [4878] = 4878, - [4879] = 285, - [4880] = 310, - [4881] = 1052, - [4882] = 1051, - [4883] = 1046, - [4884] = 4884, - [4885] = 1041, + [4855] = 1289, + [4856] = 284, + [4857] = 290, + [4858] = 506, + [4859] = 507, + [4860] = 508, + [4861] = 509, + [4862] = 510, + [4863] = 511, + [4864] = 512, + [4865] = 513, + [4866] = 514, + [4867] = 515, + [4868] = 516, + [4869] = 517, + [4870] = 518, + [4871] = 290, + [4872] = 1053, + [4873] = 1031, + [4874] = 302, + [4875] = 1032, + [4876] = 1030, + [4877] = 290, + [4878] = 1038, + [4879] = 1039, + [4880] = 1040, + [4881] = 1041, + [4882] = 1042, + [4883] = 1043, + [4884] = 1044, + [4885] = 1045, [4886] = 283, - [4887] = 266, - [4888] = 315, - [4889] = 307, - [4890] = 289, - [4891] = 344, - [4892] = 4892, - [4893] = 310, - [4894] = 309, - [4895] = 1039, - [4896] = 385, - [4897] = 1037, - [4898] = 411, - [4899] = 376, - [4900] = 411, - [4901] = 1036, - [4902] = 1033, - [4903] = 1032, - [4904] = 309, - [4905] = 1040, - [4906] = 285, - [4907] = 1042, - [4908] = 1031, - [4909] = 394, - [4910] = 4910, - [4911] = 323, - [4912] = 353, - [4913] = 304, - [4914] = 4914, - [4915] = 4915, - [4916] = 305, - [4917] = 288, - [4918] = 307, - [4919] = 309, - [4920] = 1384, - [4921] = 1382, - [4922] = 4789, - [4923] = 411, - [4924] = 288, - [4925] = 304, - [4926] = 309, - [4927] = 4910, - [4928] = 274, - [4929] = 294, - [4930] = 288, - [4931] = 288, - [4932] = 273, - [4933] = 342, - [4934] = 280, - [4935] = 310, - [4936] = 376, - [4937] = 268, - [4938] = 494, - [4939] = 495, - [4940] = 496, - [4941] = 304, - [4942] = 498, - [4943] = 500, - [4944] = 520, - [4945] = 408, - [4946] = 518, - [4947] = 516, - [4948] = 511, + [4887] = 292, + [4888] = 1044, + [4889] = 337, + [4890] = 476, + [4891] = 309, + [4892] = 1045, + [4893] = 338, + [4894] = 265, + [4895] = 264, + [4896] = 310, + [4897] = 373, + [4898] = 288, + [4899] = 265, + [4900] = 271, + [4901] = 294, + [4902] = 283, + [4903] = 264, + [4904] = 292, + [4905] = 299, + [4906] = 309, + [4907] = 310, + [4908] = 292, + [4909] = 279, + [4910] = 305, + [4911] = 307, + [4912] = 299, + [4913] = 292, + [4914] = 273, + [4915] = 289, + [4916] = 299, + [4917] = 389, + [4918] = 269, + [4919] = 366, + [4920] = 273, + [4921] = 271, + [4922] = 269, + [4923] = 265, + [4924] = 1404, + [4925] = 290, + [4926] = 299, + [4927] = 264, + [4928] = 310, + [4929] = 1465, + [4930] = 1044, + [4931] = 330, + [4932] = 331, + [4933] = 310, + [4934] = 4753, + [4935] = 1045, + [4936] = 521, + [4937] = 309, + [4938] = 272, + [4939] = 302, + [4940] = 445, + [4941] = 446, + [4942] = 325, + [4943] = 297, + [4944] = 302, + [4945] = 389, + [4946] = 290, + [4947] = 337, + [4948] = 296, [4949] = 310, - [4950] = 510, - [4951] = 323, - [4952] = 269, - [4953] = 507, - [4954] = 353, - [4955] = 502, - [4956] = 264, - [4957] = 528, - [4958] = 420, - [4959] = 267, - [4960] = 265, - [4961] = 1284, - [4962] = 264, - [4963] = 266, - [4964] = 307, - [4965] = 305, - [4966] = 265, - [4967] = 385, - [4968] = 325, - [4969] = 266, - [4970] = 518, - [4971] = 328, - [4972] = 411, - [4973] = 376, - [4974] = 377, - [4975] = 385, - [4976] = 494, - [4977] = 495, - [4978] = 496, - [4979] = 1464, - [4980] = 1463, - [4981] = 283, - [4982] = 1459, - [4983] = 285, - [4984] = 286, - [4985] = 498, - [4986] = 500, - [4987] = 276, - [4988] = 271, - [4989] = 520, - [4990] = 267, - [4991] = 297, - [4992] = 516, - [4993] = 271, - [4994] = 511, - [4995] = 510, - [4996] = 507, - [4997] = 269, - [4998] = 1332, - [4999] = 502, - [5000] = 528, - [5001] = 268, - [5002] = 300, - [5003] = 273, - [5004] = 1330, - [5005] = 526, - [5006] = 310, - [5007] = 289, - [5008] = 315, - [5009] = 307, - [5010] = 271, - [5011] = 315, - [5012] = 274, - [5013] = 267, - [5014] = 344, - [5015] = 269, - [5016] = 341, - [5017] = 395, - [5018] = 268, - [5019] = 266, - [5020] = 5020, - [5021] = 5021, - [5022] = 273, - [5023] = 493, - [5024] = 391, - [5025] = 297, - [5026] = 266, - [5027] = 489, - [5028] = 300, - [5029] = 487, - [5030] = 486, - [5031] = 1284, - [5032] = 309, - [5033] = 342, - [5034] = 1330, - [5035] = 265, - [5036] = 1384, - [5037] = 1332, - [5038] = 305, - [5039] = 1382, - [5040] = 288, - [5041] = 264, - [5042] = 271, - [5043] = 1760, - [5044] = 267, - [5045] = 1399, - [5046] = 264, - [5047] = 269, - [5048] = 265, - [5049] = 268, - [5050] = 304, - [5051] = 377, - [5052] = 304, - [5053] = 273, - [5054] = 325, - [5055] = 491, - [5056] = 342, - [5057] = 312, - [5058] = 328, - [5059] = 1031, - [5060] = 5021, - [5061] = 273, - [5062] = 1042, - [5063] = 283, - [5064] = 285, - [5065] = 294, - [5066] = 268, - [5067] = 1040, - [5068] = 1032, - [5069] = 264, - [5070] = 344, - [5071] = 429, - [5072] = 430, - [5073] = 286, - [5074] = 289, - [5075] = 1033, - [5076] = 342, - [5077] = 341, - [5078] = 276, - [5079] = 1036, - [5080] = 294, - [5081] = 311, - [5082] = 434, - [5083] = 341, - [5084] = 312, - [5085] = 265, - [5086] = 1037, - [5087] = 1039, - [5088] = 437, - [5089] = 438, - [5090] = 344, - [5091] = 304, - [5092] = 444, - [5093] = 353, - [5094] = 269, - [5095] = 323, - [5096] = 267, - [5097] = 271, - [5098] = 288, - [5099] = 1041, - [5100] = 1046, - [5101] = 266, - [5102] = 1051, - [5103] = 408, - [5104] = 449, - [5105] = 312, - [5106] = 451, - [5107] = 453, - [5108] = 1052, - [5109] = 328, - [5110] = 342, - [5111] = 323, - [5112] = 353, - [5113] = 432, - [5114] = 309, - [5115] = 264, - [5116] = 305, - [5117] = 265, - [5118] = 305, - [5119] = 325, - [5120] = 2721, - [5121] = 407, - [5122] = 488, - [5123] = 1463, - [5124] = 5124, - [5125] = 1384, - [5126] = 1332, - [5127] = 274, - [5128] = 266, - [5129] = 377, - [5130] = 268, - [5131] = 1527, - [5132] = 267, - [5133] = 1382, - [5134] = 269, - [5135] = 377, - [5136] = 407, - [5137] = 385, - [5138] = 265, - [5139] = 305, - [5140] = 304, - [5141] = 269, - [5142] = 522, - [5143] = 395, - [5144] = 264, - [5145] = 315, - [5146] = 1330, - [5147] = 271, - [5148] = 305, - [5149] = 420, - [5150] = 408, - [5151] = 280, - [5152] = 1522, - [5153] = 432, - [5154] = 1760, - [5155] = 395, - [5156] = 490, - [5157] = 289, - [5158] = 391, - [5159] = 411, - [5160] = 304, - [5161] = 323, - [5162] = 1521, - [5163] = 311, - [5164] = 376, - [5165] = 492, - [5166] = 528, - [5167] = 499, - [5168] = 502, - [5169] = 385, - [5170] = 353, - [5171] = 283, - [5172] = 423, - [5173] = 507, - [5174] = 513, - [5175] = 510, - [5176] = 515, - [5177] = 511, - [5178] = 517, - [5179] = 516, - [5180] = 519, - [5181] = 518, - [5182] = 521, - [5183] = 520, - [5184] = 523, - [5185] = 500, - [5186] = 525, - [5187] = 498, - [5188] = 527, - [5189] = 496, - [5190] = 424, - [5191] = 495, - [5192] = 503, - [5193] = 494, - [5194] = 508, - [5195] = 353, - [5196] = 323, - [5197] = 274, - [5198] = 344, - [5199] = 309, - [5200] = 285, - [5201] = 288, - [5202] = 341, - [5203] = 268, - [5204] = 376, - [5205] = 411, - [5206] = 407, - [5207] = 391, - [5208] = 286, - [5209] = 274, - [5210] = 1399, - [5211] = 273, - [5212] = 276, - [5213] = 5213, - [5214] = 1515, - [5215] = 395, - [5216] = 271, - [5217] = 309, - [5218] = 267, - [5219] = 420, - [5220] = 411, - [5221] = 276, - [5222] = 1459, - [5223] = 323, - [5224] = 353, - [5225] = 377, - [5226] = 491, - [5227] = 286, - [5228] = 285, - [5229] = 269, - [5230] = 268, - [5231] = 283, - [5232] = 273, - [5233] = 305, - [5234] = 267, - [5235] = 273, - [5236] = 265, - [5237] = 264, - [5238] = 268, - [5239] = 294, - [5240] = 300, - [5241] = 1463, - [5242] = 269, - [5243] = 309, - [5244] = 1464, - [5245] = 273, - [5246] = 267, - [5247] = 341, - [5248] = 271, - [5249] = 1459, - [5250] = 274, - [5251] = 1464, - [5252] = 300, - [5253] = 328, - [5254] = 342, - [5255] = 5213, - [5256] = 325, - [5257] = 408, - [5258] = 271, - [5259] = 297, - [5260] = 429, - [5261] = 430, - [5262] = 431, - [5263] = 276, - [5264] = 411, - [5265] = 434, - [5266] = 286, - [5267] = 437, - [5268] = 438, - [5269] = 439, - [5270] = 443, - [5271] = 444, - [5272] = 285, - [5273] = 283, - [5274] = 309, - [5275] = 305, - [5276] = 266, - [5277] = 447, - [5278] = 315, - [5279] = 449, - [5280] = 451, - [5281] = 395, - [5282] = 453, - [5283] = 391, - [5284] = 289, - [5285] = 394, - [5286] = 312, - [5287] = 276, - [5288] = 286, - [5289] = 304, - [5290] = 285, - [5291] = 1492, - [5292] = 274, - [5293] = 283, - [5294] = 1493, - [5295] = 280, - [5296] = 1494, - [5297] = 1495, - [5298] = 280, - [5299] = 420, - [5300] = 294, - [5301] = 528, - [5302] = 502, - [5303] = 507, - [5304] = 510, - [5305] = 408, - [5306] = 511, - [5307] = 344, - [5308] = 516, - [5309] = 288, - [5310] = 341, - [5311] = 271, - [5312] = 288, - [5313] = 311, - [5314] = 518, - [5315] = 520, - [5316] = 500, - [5317] = 498, - [5318] = 267, - [5319] = 407, - [5320] = 463, - [5321] = 496, - [5322] = 464, - [5323] = 526, - [5324] = 269, - [5325] = 310, - [5326] = 391, - [5327] = 465, - [5328] = 466, - [5329] = 420, - [5330] = 307, - [5331] = 467, - [5332] = 1514, - [5333] = 1513, - [5334] = 469, - [5335] = 470, - [5336] = 495, - [5337] = 268, - [5338] = 280, - [5339] = 494, - [5340] = 344, - [5341] = 273, - [5342] = 268, - [5343] = 269, - [5344] = 273, - [5345] = 283, - [5346] = 267, - [5347] = 285, - [5348] = 385, - [5349] = 271, - [5350] = 286, - [5351] = 493, - [5352] = 297, - [5353] = 294, - [5354] = 432, - [5355] = 1508, - [5356] = 486, - [5357] = 1509, - [5358] = 473, - [5359] = 276, - [5360] = 1510, - [5361] = 376, - [5362] = 1382, - [5363] = 342, - [5364] = 489, - [5365] = 448, - [5366] = 1384, - [5367] = 1507, - [5368] = 487, - [5369] = 1678, - [5370] = 286, - [5371] = 451, - [5372] = 492, - [5373] = 528, - [5374] = 499, - [5375] = 502, - [5376] = 423, - [5377] = 507, - [5378] = 513, - [5379] = 510, - [5380] = 515, - [5381] = 429, - [5382] = 511, - [5383] = 517, - [5384] = 453, - [5385] = 448, - [5386] = 516, - [5387] = 519, - [5388] = 518, - [5389] = 521, - [5390] = 520, - [5391] = 523, - [5392] = 500, - [5393] = 525, - [5394] = 467, - [5395] = 498, - [5396] = 527, - [5397] = 496, - [5398] = 424, - [5399] = 495, - [5400] = 503, - [5401] = 494, - [5402] = 508, - [5403] = 467, - [5404] = 430, - [5405] = 470, - [5406] = 469, - [5407] = 466, - [5408] = 465, - [5409] = 473, - [5410] = 510, - [5411] = 265, - [5412] = 453, - [5413] = 276, - [5414] = 264, - [5415] = 325, - [5416] = 5416, - [5417] = 304, - [5418] = 5418, - [5419] = 5419, - [5420] = 305, - [5421] = 394, - [5422] = 294, - [5423] = 451, - [5424] = 309, - [5425] = 1691, - [5426] = 1689, - [5427] = 1507, - [5428] = 309, - [5429] = 294, - [5430] = 1508, - [5431] = 432, - [5432] = 376, - [5433] = 5433, - [5434] = 1509, - [5435] = 411, - [5436] = 1510, - [5437] = 407, - [5438] = 463, - [5439] = 464, - [5440] = 464, - [5441] = 463, - [5442] = 449, - [5443] = 447, - [5444] = 395, - [5445] = 342, - [5446] = 311, - [5447] = 526, - [5448] = 286, - [5449] = 305, - [5450] = 493, - [5451] = 304, - [5452] = 449, - [5453] = 508, - [5454] = 283, - [5455] = 276, - [5456] = 341, - [5457] = 465, - [5458] = 466, - [5459] = 385, - [5460] = 494, - [5461] = 1492, - [5462] = 285, - [5463] = 503, - [5464] = 495, - [5465] = 1464, - [5466] = 432, - [5467] = 286, - [5468] = 424, - [5469] = 463, - [5470] = 276, - [5471] = 286, - [5472] = 467, - [5473] = 464, - [5474] = 496, - [5475] = 527, - [5476] = 498, - [5477] = 525, - [5478] = 285, - [5479] = 344, - [5480] = 469, - [5481] = 470, - [5482] = 500, - [5483] = 523, - [5484] = 520, - [5485] = 521, - [5486] = 518, - [5487] = 519, - [5488] = 516, - [5489] = 517, - [5490] = 511, - [5491] = 515, - [5492] = 5492, - [5493] = 513, - [5494] = 507, - [5495] = 423, - [5496] = 502, - [5497] = 499, - [5498] = 528, - [5499] = 492, - [5500] = 328, - [5501] = 1463, - [5502] = 283, - [5503] = 444, - [5504] = 1513, - [5505] = 489, - [5506] = 311, - [5507] = 1514, - [5508] = 526, - [5509] = 443, - [5510] = 280, - [5511] = 439, - [5512] = 5124, - [5513] = 1493, - [5514] = 283, - [5515] = 453, - [5516] = 1492, - [5517] = 490, - [5518] = 1677, - [5519] = 411, - [5520] = 297, - [5521] = 309, - [5522] = 1493, - [5523] = 285, - [5524] = 451, - [5525] = 438, - [5526] = 448, - [5527] = 473, - [5528] = 465, - [5529] = 466, - [5530] = 449, - [5531] = 437, - [5532] = 328, - [5533] = 1494, - [5534] = 420, - [5535] = 342, - [5536] = 1495, - [5537] = 391, - [5538] = 434, - [5539] = 488, - [5540] = 522, - [5541] = 1669, - [5542] = 325, - [5543] = 294, - [5544] = 1667, - [5545] = 1515, - [5546] = 1665, - [5547] = 1651, - [5548] = 487, - [5549] = 300, - [5550] = 283, - [5551] = 294, - [5552] = 1559, - [5553] = 305, - [5554] = 1494, - [5555] = 1664, - [5556] = 1662, - [5557] = 486, - [5558] = 1495, - [5559] = 469, - [5560] = 344, - [5561] = 341, - [5562] = 1567, - [5563] = 394, - [5564] = 1570, - [5565] = 1571, - [5566] = 522, - [5567] = 488, - [5568] = 1572, - [5569] = 1574, - [5570] = 1576, - [5571] = 1577, - [5572] = 1578, - [5573] = 1581, - [5574] = 1586, - [5575] = 1587, - [5576] = 1594, - [5577] = 1609, - [5578] = 407, - [5579] = 273, - [5580] = 395, - [5581] = 470, - [5582] = 1611, - [5583] = 1613, - [5584] = 5584, - [5585] = 1616, - [5586] = 1617, - [5587] = 490, - [5588] = 1459, - [5589] = 431, - [5590] = 288, - [5591] = 420, - [5592] = 430, - [5593] = 1618, - [5594] = 1620, - [5595] = 2721, - [5596] = 429, - [5597] = 268, - [5598] = 1623, - [5599] = 492, - [5600] = 285, - [5601] = 1626, - [5602] = 274, + [4950] = 457, + [4951] = 337, + [4952] = 305, + [4953] = 288, + [4954] = 290, + [4955] = 288, + [4956] = 288, + [4957] = 462, + [4958] = 1289, + [4959] = 375, + [4960] = 299, + [4961] = 389, + [4962] = 1043, + [4963] = 299, + [4964] = 4964, + [4965] = 465, + [4966] = 467, + [4967] = 338, + [4968] = 356, + [4969] = 4766, + [4970] = 309, + [4971] = 384, + [4972] = 522, + [4973] = 288, + [4974] = 267, + [4975] = 273, + [4976] = 325, + [4977] = 1374, + [4978] = 1032, + [4979] = 1377, + [4980] = 292, + [4981] = 288, + [4982] = 473, + [4983] = 506, + [4984] = 1339, + [4985] = 1042, + [4986] = 507, + [4987] = 265, + [4988] = 294, + [4989] = 271, + [4990] = 1294, + [4991] = 508, + [4992] = 265, + [4993] = 414, + [4994] = 383, + [4995] = 330, + [4996] = 270, + [4997] = 267, + [4998] = 509, + [4999] = 510, + [5000] = 264, + [5001] = 5001, + [5002] = 511, + [5003] = 309, + [5004] = 512, + [5005] = 373, + [5006] = 513, + [5007] = 296, + [5008] = 299, + [5009] = 325, + [5010] = 388, + [5011] = 371, + [5012] = 514, + [5013] = 292, + [5014] = 515, + [5015] = 297, + [5016] = 325, + [5017] = 310, + [5018] = 516, + [5019] = 286, + [5020] = 337, + [5021] = 264, + [5022] = 270, + [5023] = 523, + [5024] = 284, + [5025] = 331, + [5026] = 338, + [5027] = 272, + [5028] = 283, + [5029] = 517, + [5030] = 272, + [5031] = 273, + [5032] = 1358, + [5033] = 271, + [5034] = 518, + [5035] = 307, + [5036] = 294, + [5037] = 307, + [5038] = 269, + [5039] = 366, + [5040] = 338, + [5041] = 524, + [5042] = 1030, + [5043] = 356, + [5044] = 265, + [5045] = 383, + [5046] = 269, + [5047] = 1816, + [5048] = 267, + [5049] = 289, + [5050] = 373, + [5051] = 286, + [5052] = 2664, + [5053] = 264, + [5054] = 1374, + [5055] = 280, + [5056] = 505, + [5057] = 384, + [5058] = 267, + [5059] = 520, + [5060] = 307, + [5061] = 309, + [5062] = 1339, + [5063] = 1377, + [5064] = 1289, + [5065] = 1294, + [5066] = 265, + [5067] = 1038, + [5068] = 330, + [5069] = 331, + [5070] = 4964, + [5071] = 264, + [5072] = 1039, + [5073] = 270, + [5074] = 284, + [5075] = 272, + [5076] = 273, + [5077] = 271, + [5078] = 269, + [5079] = 289, + [5080] = 366, + [5081] = 283, + [5082] = 356, + [5083] = 279, + [5084] = 1053, + [5085] = 506, + [5086] = 507, + [5087] = 508, + [5088] = 509, + [5089] = 510, + [5090] = 511, + [5091] = 512, + [5092] = 513, + [5093] = 514, + [5094] = 515, + [5095] = 516, + [5096] = 517, + [5097] = 518, + [5098] = 387, + [5099] = 280, + [5100] = 480, + [5101] = 302, + [5102] = 270, + [5103] = 481, + [5104] = 267, + [5105] = 1031, + [5106] = 272, + [5107] = 483, + [5108] = 387, + [5109] = 289, + [5110] = 273, + [5111] = 271, + [5112] = 1040, + [5113] = 1466, + [5114] = 285, + [5115] = 310, + [5116] = 265, + [5117] = 270, + [5118] = 325, + [5119] = 1041, + [5120] = 264, + [5121] = 285, + [5122] = 388, + [5123] = 288, + [5124] = 473, + [5125] = 1477, + [5126] = 1478, + [5127] = 279, + [5128] = 373, + [5129] = 269, + [5130] = 1374, + [5131] = 338, + [5132] = 522, + [5133] = 286, + [5134] = 294, + [5135] = 279, + [5136] = 521, + [5137] = 280, + [5138] = 280, + [5139] = 271, + [5140] = 284, + [5141] = 283, + [5142] = 383, + [5143] = 269, + [5144] = 445, + [5145] = 372, + [5146] = 283, + [5147] = 309, + [5148] = 523, + [5149] = 309, + [5150] = 285, + [5151] = 388, + [5152] = 269, + [5153] = 271, + [5154] = 299, + [5155] = 1339, + [5156] = 271, + [5157] = 1377, + [5158] = 371, + [5159] = 283, + [5160] = 337, + [5161] = 279, + [5162] = 373, + [5163] = 271, + [5164] = 1294, + [5165] = 270, + [5166] = 480, + [5167] = 305, + [5168] = 325, + [5169] = 524, + [5170] = 467, + [5171] = 384, + [5172] = 280, + [5173] = 273, + [5174] = 1505, + [5175] = 356, + [5176] = 1511, + [5177] = 325, + [5178] = 366, + [5179] = 5179, + [5180] = 286, + [5181] = 388, + [5182] = 503, + [5183] = 272, + [5184] = 273, + [5185] = 1497, + [5186] = 292, + [5187] = 299, + [5188] = 469, + [5189] = 446, + [5190] = 387, + [5191] = 285, + [5192] = 1517, + [5193] = 388, + [5194] = 375, + [5195] = 414, + [5196] = 1533, + [5197] = 489, + [5198] = 486, + [5199] = 288, + [5200] = 1466, + [5201] = 338, + [5202] = 310, + [5203] = 290, + [5204] = 430, + [5205] = 305, + [5206] = 371, + [5207] = 1404, + [5208] = 294, + [5209] = 1465, + [5210] = 506, + [5211] = 296, + [5212] = 296, + [5213] = 1485, + [5214] = 490, + [5215] = 507, + [5216] = 491, + [5217] = 508, + [5218] = 265, + [5219] = 492, + [5220] = 264, + [5221] = 270, + [5222] = 387, + [5223] = 297, + [5224] = 280, + [5225] = 284, + [5226] = 1499, + [5227] = 1474, + [5228] = 481, + [5229] = 383, + [5230] = 272, + [5231] = 5179, + [5232] = 431, + [5233] = 1532, + [5234] = 273, + [5235] = 309, + [5236] = 271, + [5237] = 269, + [5238] = 387, + [5239] = 302, + [5240] = 1535, + [5241] = 286, + [5242] = 270, + [5243] = 1374, + [5244] = 284, + [5245] = 283, + [5246] = 289, + [5247] = 285, + [5248] = 284, + [5249] = 309, + [5250] = 509, + [5251] = 493, + [5252] = 414, + [5253] = 272, + [5254] = 472, + [5255] = 290, + [5256] = 510, + [5257] = 279, + [5258] = 384, + [5259] = 269, + [5260] = 426, + [5261] = 375, + [5262] = 494, + [5263] = 511, + [5264] = 1358, + [5265] = 337, + [5266] = 495, + [5267] = 265, + [5268] = 505, + [5269] = 1377, + [5270] = 512, + [5271] = 496, + [5272] = 330, + [5273] = 331, + [5274] = 290, + [5275] = 270, + [5276] = 506, + [5277] = 507, + [5278] = 508, + [5279] = 509, + [5280] = 510, + [5281] = 511, + [5282] = 512, + [5283] = 513, + [5284] = 514, + [5285] = 515, + [5286] = 516, + [5287] = 517, + [5288] = 518, + [5289] = 389, + [5290] = 513, + [5291] = 310, + [5292] = 414, + [5293] = 383, + [5294] = 5294, + [5295] = 270, + [5296] = 285, + [5297] = 520, + [5298] = 389, + [5299] = 292, + [5300] = 488, + [5301] = 273, + [5302] = 272, + [5303] = 273, + [5304] = 447, + [5305] = 477, + [5306] = 497, + [5307] = 280, + [5308] = 307, + [5309] = 371, + [5310] = 432, + [5311] = 514, + [5312] = 498, + [5313] = 371, + [5314] = 373, + [5315] = 267, + [5316] = 375, + [5317] = 1816, + [5318] = 286, + [5319] = 476, + [5320] = 389, + [5321] = 271, + [5322] = 269, + [5323] = 1536, + [5324] = 515, + [5325] = 284, + [5326] = 338, + [5327] = 462, + [5328] = 1466, + [5329] = 499, + [5330] = 299, + [5331] = 483, + [5332] = 1470, + [5333] = 264, + [5334] = 516, + [5335] = 500, + [5336] = 457, + [5337] = 1404, + [5338] = 283, + [5339] = 384, + [5340] = 297, + [5341] = 517, + [5342] = 285, + [5343] = 1465, + [5344] = 501, + [5345] = 272, + [5346] = 518, + [5347] = 502, + [5348] = 288, + [5349] = 267, + [5350] = 330, + [5351] = 427, + [5352] = 375, + [5353] = 528, + [5354] = 337, + [5355] = 331, + [5356] = 273, + [5357] = 270, + [5358] = 429, + [5359] = 331, + [5360] = 299, + [5361] = 310, + [5362] = 389, + [5363] = 457, + [5364] = 286, + [5365] = 330, + [5366] = 272, + [5367] = 465, + [5368] = 425, + [5369] = 425, + [5370] = 457, + [5371] = 481, + [5372] = 493, + [5373] = 273, + [5374] = 5374, + [5375] = 483, + [5376] = 469, + [5377] = 296, + [5378] = 1465, + [5379] = 5379, + [5380] = 521, + [5381] = 447, + [5382] = 503, + [5383] = 486, + [5384] = 522, + [5385] = 302, + [5386] = 480, + [5387] = 427, + [5388] = 494, + [5389] = 528, + [5390] = 1536, + [5391] = 425, + [5392] = 426, + [5393] = 1470, + [5394] = 384, + [5395] = 309, + [5396] = 271, + [5397] = 290, + [5398] = 1477, + [5399] = 1478, + [5400] = 1664, + [5401] = 1666, + [5402] = 3104, + [5403] = 481, + [5404] = 307, + [5405] = 286, + [5406] = 269, + [5407] = 495, + [5408] = 472, + [5409] = 388, + [5410] = 5410, + [5411] = 284, + [5412] = 297, + [5413] = 292, + [5414] = 425, + [5415] = 426, + [5416] = 289, + [5417] = 496, + [5418] = 488, + [5419] = 283, + [5420] = 480, + [5421] = 299, + [5422] = 288, + [5423] = 427, + [5424] = 497, + [5425] = 288, + [5426] = 325, + [5427] = 528, + [5428] = 5428, + [5429] = 285, + [5430] = 310, + [5431] = 483, + [5432] = 305, + [5433] = 523, + [5434] = 372, + [5435] = 432, + [5436] = 445, + [5437] = 280, + [5438] = 472, + [5439] = 446, + [5440] = 1505, + [5441] = 5441, + [5442] = 283, + [5443] = 481, + [5444] = 1511, + [5445] = 1533, + [5446] = 299, + [5447] = 337, + [5448] = 473, + [5449] = 528, + [5450] = 469, + [5451] = 505, + [5452] = 483, + [5453] = 1485, + [5454] = 498, + [5455] = 296, + [5456] = 330, + [5457] = 331, + [5458] = 476, + [5459] = 1474, + [5460] = 429, + [5461] = 472, + [5462] = 429, + [5463] = 472, + [5464] = 1517, + [5465] = 1656, + [5466] = 1657, + [5467] = 1658, + [5468] = 1659, + [5469] = 473, + [5470] = 292, + [5471] = 372, + [5472] = 430, + [5473] = 294, + [5474] = 1532, + [5475] = 387, + [5476] = 1535, + [5477] = 431, + [5478] = 489, + [5479] = 488, + [5480] = 1682, + [5481] = 1683, + [5482] = 371, + [5483] = 5483, + [5484] = 505, + [5485] = 1684, + [5486] = 305, + [5487] = 430, + [5488] = 506, + [5489] = 1687, + [5490] = 1690, + [5491] = 1704, + [5492] = 1706, + [5493] = 5493, + [5494] = 1712, + [5495] = 286, + [5496] = 477, + [5497] = 283, + [5498] = 431, + [5499] = 429, + [5500] = 1717, + [5501] = 490, + [5502] = 1721, + [5503] = 1551, + [5504] = 1553, + [5505] = 1497, + [5506] = 1637, + [5507] = 1614, + [5508] = 297, + [5509] = 447, + [5510] = 507, + [5511] = 521, + [5512] = 307, + [5513] = 1565, + [5514] = 1570, + [5515] = 520, + [5516] = 1571, + [5517] = 491, + [5518] = 508, + [5519] = 1572, + [5520] = 457, + [5521] = 1573, + [5522] = 1580, + [5523] = 1585, + [5524] = 1587, + [5525] = 462, + [5526] = 522, + [5527] = 1595, + [5528] = 1600, + [5529] = 492, + [5530] = 509, + [5531] = 1622, + [5532] = 1635, + [5533] = 523, + [5534] = 524, + [5535] = 1645, + [5536] = 1646, + [5537] = 309, + [5538] = 270, + [5539] = 469, + [5540] = 493, + [5541] = 510, + [5542] = 272, + [5543] = 1615, + [5544] = 1652, + [5545] = 494, + [5546] = 511, + [5547] = 1653, + [5548] = 273, + [5549] = 284, + [5550] = 271, + [5551] = 1671, + [5552] = 269, + [5553] = 1617, + [5554] = 286, + [5555] = 495, + [5556] = 512, + [5557] = 503, + [5558] = 425, + [5559] = 426, + [5560] = 1672, + [5561] = 1673, + [5562] = 1677, + [5563] = 432, + [5564] = 489, + [5565] = 477, + [5566] = 432, + [5567] = 284, + [5568] = 496, + [5569] = 513, + [5570] = 1681, + [5571] = 506, + [5572] = 310, + [5573] = 387, + [5574] = 283, + [5575] = 490, + [5576] = 507, + [5577] = 491, + [5578] = 508, + [5579] = 486, + [5580] = 492, + [5581] = 414, + [5582] = 1628, + [5583] = 497, + [5584] = 514, + [5585] = 509, + [5586] = 493, + [5587] = 510, + [5588] = 494, + [5589] = 285, + [5590] = 511, + [5591] = 495, + [5592] = 1630, + [5593] = 512, + [5594] = 496, + [5595] = 1686, + [5596] = 513, + [5597] = 497, + [5598] = 309, + [5599] = 514, + [5600] = 290, + [5601] = 498, + [5602] = 515, [5603] = 499, - [5604] = 423, - [5605] = 493, - [5606] = 1635, - [5607] = 1639, - [5608] = 444, - [5609] = 515, - [5610] = 517, - [5611] = 519, - [5612] = 521, - [5613] = 448, - [5614] = 523, - [5615] = 1649, - [5616] = 304, - [5617] = 269, - [5618] = 525, - [5619] = 527, - [5620] = 438, - [5621] = 424, - [5622] = 1654, - [5623] = 311, - [5624] = 1655, - [5625] = 1657, - [5626] = 1661, - [5627] = 503, - [5628] = 294, - [5629] = 508, - [5630] = 437, - [5631] = 294, - [5632] = 1539, - [5633] = 1722, - [5634] = 491, - [5635] = 1718, - [5636] = 513, - [5637] = 1717, - [5638] = 489, - [5639] = 486, - [5640] = 312, - [5641] = 289, - [5642] = 1716, - [5643] = 1714, - [5644] = 312, - [5645] = 487, - [5646] = 486, - [5647] = 434, - [5648] = 487, - [5649] = 288, - [5650] = 311, - [5651] = 294, - [5652] = 267, - [5653] = 408, - [5654] = 310, - [5655] = 434, - [5656] = 1707, - [5657] = 1703, - [5658] = 1702, - [5659] = 1701, - [5660] = 283, - [5661] = 489, - [5662] = 3290, - [5663] = 443, - [5664] = 315, - [5665] = 305, - [5666] = 1700, - [5667] = 1698, - [5668] = 430, - [5669] = 429, - [5670] = 430, - [5671] = 431, - [5672] = 1696, - [5673] = 1695, - [5674] = 429, - [5675] = 395, - [5676] = 522, - [5677] = 434, - [5678] = 488, - [5679] = 310, - [5680] = 309, - [5681] = 273, - [5682] = 447, - [5683] = 1688, - [5684] = 1686, - [5685] = 1685, - [5686] = 1684, - [5687] = 271, - [5688] = 437, - [5689] = 285, - [5690] = 5690, - [5691] = 307, - [5692] = 438, - [5693] = 268, - [5694] = 431, - [5695] = 493, - [5696] = 444, - [5697] = 491, - [5698] = 269, - [5699] = 439, - [5700] = 1595, - [5701] = 353, - [5702] = 323, - [5703] = 280, - [5704] = 267, - [5705] = 467, - [5706] = 443, - [5707] = 286, - [5708] = 288, - [5709] = 271, - [5710] = 276, - [5711] = 444, - [5712] = 473, - [5713] = 408, - [5714] = 304, - [5715] = 1675, - [5716] = 408, - [5717] = 285, - [5718] = 1521, - [5719] = 385, - [5720] = 432, - [5721] = 276, - [5722] = 391, - [5723] = 283, - [5724] = 447, - [5725] = 437, - [5726] = 438, - [5727] = 447, - [5728] = 1522, - [5729] = 3290, - [5730] = 448, - [5731] = 473, - [5732] = 449, - [5733] = 420, - [5734] = 526, - [5735] = 376, - [5736] = 5690, - [5737] = 451, - [5738] = 469, - [5739] = 453, - [5740] = 5740, - [5741] = 289, - [5742] = 276, - [5743] = 5743, - [5744] = 431, - [5745] = 522, - [5746] = 488, - [5747] = 491, - [5748] = 490, - [5749] = 463, - [5750] = 464, - [5751] = 439, - [5752] = 470, - [5753] = 286, - [5754] = 490, - [5755] = 465, - [5756] = 466, - [5757] = 443, - [5758] = 467, - [5759] = 443, - [5760] = 486, - [5761] = 1527, - [5762] = 431, - [5763] = 466, - [5764] = 469, - [5765] = 470, - [5766] = 487, - [5767] = 492, - [5768] = 465, - [5769] = 1666, - [5770] = 464, - [5771] = 463, - [5772] = 528, - [5773] = 499, - [5774] = 502, - [5775] = 423, - [5776] = 489, - [5777] = 507, - [5778] = 297, - [5779] = 513, - [5780] = 510, - [5781] = 515, - [5782] = 511, - [5783] = 288, - [5784] = 517, - [5785] = 516, - [5786] = 519, - [5787] = 518, - [5788] = 521, - [5789] = 300, - [5790] = 526, - [5791] = 311, - [5792] = 520, - [5793] = 523, - [5794] = 493, - [5795] = 500, - [5796] = 525, - [5797] = 498, - [5798] = 439, - [5799] = 527, - [5800] = 496, - [5801] = 424, - [5802] = 495, - [5803] = 503, - [5804] = 376, - [5805] = 315, - [5806] = 307, - [5807] = 494, - [5808] = 508, - [5809] = 274, - [5810] = 473, - [5811] = 448, - [5812] = 385, - [5813] = 377, - [5814] = 470, - [5815] = 469, - [5816] = 467, - [5817] = 420, - [5818] = 466, - [5819] = 1666, - [5820] = 493, - [5821] = 5419, - [5822] = 465, - [5823] = 311, - [5824] = 464, - [5825] = 463, - [5826] = 526, - [5827] = 328, - [5828] = 342, - [5829] = 432, - [5830] = 1675, - [5831] = 325, - [5832] = 438, - [5833] = 489, - [5834] = 493, - [5835] = 437, - [5836] = 448, - [5837] = 5740, - [5838] = 489, - [5839] = 465, - [5840] = 453, - [5841] = 5584, - [5842] = 5743, - [5843] = 487, - [5844] = 486, - [5845] = 487, - [5846] = 1595, - [5847] = 451, - [5848] = 473, - [5849] = 1662, - [5850] = 376, - [5851] = 1664, - [5852] = 408, - [5853] = 1665, - [5854] = 486, - [5855] = 1667, - [5856] = 473, - [5857] = 1669, - [5858] = 1332, - [5859] = 311, - [5860] = 449, - [5861] = 305, - [5862] = 420, - [5863] = 448, - [5864] = 490, - [5865] = 466, - [5866] = 1677, - [5867] = 1678, - [5868] = 394, - [5869] = 385, - [5870] = 377, - [5871] = 283, - [5872] = 407, - [5873] = 395, - [5874] = 1330, - [5875] = 294, - [5876] = 285, - [5877] = 288, - [5878] = 286, - [5879] = 309, - [5880] = 1284, - [5881] = 411, - [5882] = 305, - [5883] = 1684, - [5884] = 1685, - [5885] = 1686, - [5886] = 1688, - [5887] = 304, - [5888] = 276, - [5889] = 420, - [5890] = 391, - [5891] = 3290, - [5892] = 1689, - [5893] = 491, - [5894] = 444, - [5895] = 1691, - [5896] = 309, - [5897] = 304, - [5898] = 280, - [5899] = 1695, - [5900] = 1464, - [5901] = 1696, - [5902] = 1698, - [5903] = 341, - [5904] = 438, - [5905] = 1700, - [5906] = 1701, - [5907] = 1284, - [5908] = 437, - [5909] = 1702, - [5910] = 1703, - [5911] = 1707, - [5912] = 1463, - [5913] = 344, - [5914] = 353, - [5915] = 323, - [5916] = 1714, - [5917] = 283, - [5918] = 1716, - [5919] = 1717, - [5920] = 1459, - [5921] = 447, - [5922] = 1718, - [5923] = 391, - [5924] = 1722, - [5925] = 1539, - [5926] = 434, - [5927] = 447, - [5928] = 341, - [5929] = 1661, - [5930] = 430, - [5931] = 285, - [5932] = 1657, - [5933] = 1655, - [5934] = 1654, - [5935] = 1651, - [5936] = 1649, - [5937] = 429, - [5938] = 323, - [5939] = 5939, - [5940] = 344, - [5941] = 353, - [5942] = 467, - [5943] = 1639, - [5944] = 1635, - [5945] = 344, - [5946] = 1626, - [5947] = 1623, - [5948] = 1620, - [5949] = 451, - [5950] = 1618, - [5951] = 1617, - [5952] = 1616, - [5953] = 1613, - [5954] = 1611, - [5955] = 1609, - [5956] = 1594, - [5957] = 1587, - [5958] = 1586, - [5959] = 1581, - [5960] = 1578, - [5961] = 1577, - [5962] = 1576, - [5963] = 1574, - [5964] = 1572, - [5965] = 1571, - [5966] = 286, - [5967] = 443, - [5968] = 341, - [5969] = 1570, - [5970] = 1567, - [5971] = 1559, - [5972] = 1495, - [5973] = 310, - [5974] = 439, - [5975] = 307, - [5976] = 276, - [5977] = 408, - [5978] = 5978, - [5979] = 297, - [5980] = 300, - [5981] = 511, - [5982] = 377, - [5983] = 289, - [5984] = 508, - [5985] = 439, - [5986] = 315, - [5987] = 494, - [5988] = 503, - [5989] = 495, - [5990] = 424, - [5991] = 496, - [5992] = 527, - [5993] = 498, - [5994] = 5492, - [5995] = 525, - [5996] = 500, - [5997] = 395, - [5998] = 434, - [5999] = 523, - [6000] = 520, - [6001] = 447, - [6002] = 526, - [6003] = 521, - [6004] = 518, - [6005] = 519, - [6006] = 516, - [6007] = 517, - [6008] = 423, - [6009] = 408, - [6010] = 515, - [6011] = 510, - [6012] = 513, - [6013] = 507, - [6014] = 502, - [6015] = 499, - [6016] = 528, - [6017] = 492, - [6018] = 443, - [6019] = 411, - [6020] = 439, - [6021] = 470, - [6022] = 469, - [6023] = 464, - [6024] = 463, - [6025] = 407, - [6026] = 294, - [6027] = 6027, - [6028] = 453, - [6029] = 488, - [6030] = 522, - [6031] = 294, - [6032] = 432, - [6033] = 5433, - [6034] = 431, - [6035] = 431, - [6036] = 430, - [6037] = 429, - [6038] = 1492, - [6039] = 449, - [6040] = 280, - [6041] = 273, - [6042] = 288, - [6043] = 268, - [6044] = 269, - [6045] = 312, - [6046] = 267, - [6047] = 271, - [6048] = 444, - [6049] = 5418, - [6050] = 3290, - [6051] = 1493, - [6052] = 1494, - [6053] = 5416, - [6054] = 444, - [6055] = 429, - [6056] = 305, - [6057] = 1330, - [6058] = 304, - [6059] = 310, - [6060] = 411, - [6061] = 486, - [6062] = 408, - [6063] = 453, - [6064] = 432, - [6065] = 307, - [6066] = 470, - [6067] = 451, - [6068] = 487, - [6069] = 491, - [6070] = 304, - [6071] = 489, - [6072] = 469, - [6073] = 289, - [6074] = 305, - [6075] = 309, - [6076] = 490, - [6077] = 411, - [6078] = 283, - [6079] = 1284, - [6080] = 305, - [6081] = 285, - [6082] = 466, - [6083] = 465, - [6084] = 323, - [6085] = 353, - [6086] = 493, - [6087] = 280, - [6088] = 491, - [6089] = 286, + [5604] = 499, + [5605] = 516, + [5606] = 476, + [5607] = 500, + [5608] = 517, + [5609] = 498, + [5610] = 1692, + [5611] = 1693, + [5612] = 501, + [5613] = 1695, + [5614] = 375, + [5615] = 305, + [5616] = 518, + [5617] = 502, + [5618] = 1710, + [5619] = 1724, + [5620] = 1466, + [5621] = 1638, + [5622] = 387, + [5623] = 299, + [5624] = 1539, + [5625] = 1543, + [5626] = 520, + [5627] = 1545, + [5628] = 1546, + [5629] = 286, + [5630] = 337, + [5631] = 427, + [5632] = 528, + [5633] = 283, + [5634] = 356, + [5635] = 445, + [5636] = 356, + [5637] = 515, + [5638] = 446, + [5639] = 465, + [5640] = 503, + [5641] = 486, + [5642] = 325, + [5643] = 290, + [5644] = 499, + [5645] = 310, + [5646] = 366, + [5647] = 462, + [5648] = 305, + [5649] = 462, + [5650] = 371, + [5651] = 500, + [5652] = 284, + [5653] = 366, + [5654] = 429, + [5655] = 501, + [5656] = 465, + [5657] = 375, + [5658] = 467, + [5659] = 290, + [5660] = 265, + [5661] = 270, + [5662] = 516, + [5663] = 5663, + [5664] = 425, + [5665] = 426, + [5666] = 299, + [5667] = 503, + [5668] = 467, + [5669] = 486, + [5670] = 473, + [5671] = 338, + [5672] = 430, + [5673] = 505, + [5674] = 431, + [5675] = 264, + [5676] = 488, + [5677] = 522, + [5678] = 288, + [5679] = 285, + [5680] = 427, + [5681] = 528, + [5682] = 500, + [5683] = 517, + [5684] = 288, + [5685] = 501, + [5686] = 272, + [5687] = 523, + [5688] = 524, + [5689] = 502, + [5690] = 518, + [5691] = 5428, + [5692] = 289, + [5693] = 502, + [5694] = 488, + [5695] = 389, + [5696] = 524, + [5697] = 445, + [5698] = 388, + [5699] = 279, + [5700] = 383, + [5701] = 429, + [5702] = 294, + [5703] = 285, + [5704] = 446, + [5705] = 445, + [5706] = 446, + [5707] = 490, + [5708] = 290, + [5709] = 447, + [5710] = 290, + [5711] = 414, + [5712] = 491, + [5713] = 388, + [5714] = 338, + [5715] = 302, + [5716] = 492, + [5717] = 286, + [5718] = 430, + [5719] = 5719, + [5720] = 431, + [5721] = 284, + [5722] = 383, + [5723] = 383, + [5724] = 505, + [5725] = 283, + [5726] = 457, + [5727] = 285, + [5728] = 309, + [5729] = 465, + [5730] = 285, + [5731] = 467, + [5732] = 447, + [5733] = 489, + [5734] = 430, + [5735] = 373, + [5736] = 431, + [5737] = 506, + [5738] = 490, + [5739] = 507, + [5740] = 491, + [5741] = 508, + [5742] = 492, + [5743] = 509, + [5744] = 493, + [5745] = 510, + [5746] = 494, + [5747] = 511, + [5748] = 310, + [5749] = 495, + [5750] = 512, + [5751] = 496, + [5752] = 279, + [5753] = 513, + [5754] = 477, + [5755] = 497, + [5756] = 432, + [5757] = 514, + [5758] = 290, + [5759] = 498, + [5760] = 305, + [5761] = 384, + [5762] = 515, + [5763] = 499, + [5764] = 516, + [5765] = 500, + [5766] = 517, + [5767] = 501, + [5768] = 518, + [5769] = 502, + [5770] = 1404, + [5771] = 1499, + [5772] = 375, + [5773] = 389, + [5774] = 476, + [5775] = 480, + [5776] = 520, + [5777] = 521, + [5778] = 1725, + [5779] = 280, + [5780] = 1511, + [5781] = 520, + [5782] = 481, + [5783] = 462, + [5784] = 476, + [5785] = 522, + [5786] = 1517, + [5787] = 523, + [5788] = 1532, + [5789] = 524, + [5790] = 1535, + [5791] = 483, + [5792] = 1640, + [5793] = 3104, + [5794] = 477, + [5795] = 477, + [5796] = 2664, + [5797] = 432, + [5798] = 447, + [5799] = 1625, + [5800] = 5294, + [5801] = 426, + [5802] = 473, + [5803] = 1642, + [5804] = 286, + [5805] = 465, + [5806] = 467, + [5807] = 427, + [5808] = 480, + [5809] = 469, + [5810] = 384, + [5811] = 284, + [5812] = 472, + [5813] = 489, + [5814] = 5441, + [5815] = 1637, + [5816] = 290, + [5817] = 432, + [5818] = 1628, + [5819] = 1339, + [5820] = 384, + [5821] = 477, + [5822] = 299, + [5823] = 310, + [5824] = 1630, + [5825] = 1539, + [5826] = 1294, + [5827] = 305, + [5828] = 445, + [5829] = 296, + [5830] = 503, + [5831] = 481, + [5832] = 469, + [5833] = 1289, + [5834] = 483, + [5835] = 447, + [5836] = 477, + [5837] = 1656, + [5838] = 1657, + [5839] = 1535, + [5840] = 1692, + [5841] = 388, + [5842] = 445, + [5843] = 1658, + [5844] = 1659, + [5845] = 469, + [5846] = 488, + [5847] = 1710, + [5848] = 1289, + [5849] = 427, + [5850] = 283, + [5851] = 290, + [5852] = 431, + [5853] = 5379, + [5854] = 388, + [5855] = 522, + [5856] = 288, + [5857] = 270, + [5858] = 373, + [5859] = 1532, + [5860] = 1465, + [5861] = 476, + [5862] = 505, + [5863] = 414, + [5864] = 286, + [5865] = 521, + [5866] = 5866, + [5867] = 472, + [5868] = 432, + [5869] = 1625, + [5870] = 288, + [5871] = 375, + [5872] = 1677, + [5873] = 356, + [5874] = 492, + [5875] = 489, + [5876] = 457, + [5877] = 509, + [5878] = 493, + [5879] = 1664, + [5880] = 1666, + [5881] = 272, + [5882] = 510, + [5883] = 1725, + [5884] = 447, + [5885] = 494, + [5886] = 279, + [5887] = 1640, + [5888] = 523, + [5889] = 1682, + [5890] = 337, + [5891] = 511, + [5892] = 325, + [5893] = 495, + [5894] = 520, + [5895] = 273, + [5896] = 1683, + [5897] = 366, + [5898] = 302, + [5899] = 425, + [5900] = 1684, + [5901] = 426, + [5902] = 1687, + [5903] = 1690, + [5904] = 1704, + [5905] = 1706, + [5906] = 1712, + [5907] = 271, + [5908] = 1717, + [5909] = 1721, + [5910] = 1551, + [5911] = 338, + [5912] = 1553, + [5913] = 284, + [5914] = 512, + [5915] = 1545, + [5916] = 269, + [5917] = 1642, + [5918] = 1546, + [5919] = 520, + [5920] = 373, + [5921] = 446, + [5922] = 430, + [5923] = 330, + [5924] = 331, + [5925] = 305, + [5926] = 486, + [5927] = 1466, + [5928] = 309, + [5929] = 310, + [5930] = 372, + [5931] = 1565, + [5932] = 528, + [5933] = 1570, + [5934] = 1571, + [5935] = 524, + [5936] = 5719, + [5937] = 427, + [5938] = 429, + [5939] = 528, + [5940] = 289, + [5941] = 506, + [5942] = 338, + [5943] = 299, + [5944] = 1724, + [5945] = 522, + [5946] = 1653, + [5947] = 523, + [5948] = 1572, + [5949] = 1573, + [5950] = 524, + [5951] = 1404, + [5952] = 496, + [5953] = 1681, + [5954] = 1671, + [5955] = 1543, + [5956] = 286, + [5957] = 1580, + [5958] = 5958, + [5959] = 3104, + [5960] = 5960, + [5961] = 476, + [5962] = 1585, + [5963] = 1695, + [5964] = 1587, + [5965] = 429, + [5966] = 294, + [5967] = 387, + [5968] = 5410, + [5969] = 513, + [5970] = 284, + [5971] = 375, + [5972] = 497, + [5973] = 514, + [5974] = 498, + [5975] = 283, + [5976] = 472, + [5977] = 285, + [5978] = 430, + [5979] = 431, + [5980] = 515, + [5981] = 499, + [5982] = 490, + [5983] = 290, + [5984] = 1693, + [5985] = 507, + [5986] = 389, + [5987] = 516, + [5988] = 491, + [5989] = 1595, + [5990] = 481, + [5991] = 500, + [5992] = 483, + [5993] = 517, + [5994] = 337, + [5995] = 501, + [5996] = 292, + [5997] = 518, + [5998] = 502, + [5999] = 508, + [6000] = 480, + [6001] = 383, + [6002] = 1673, + [6003] = 1614, + [6004] = 285, + [6005] = 338, + [6006] = 465, + [6007] = 469, + [6008] = 462, + [6009] = 465, + [6010] = 1600, + [6011] = 5493, + [6012] = 389, + [6013] = 5374, + [6014] = 467, + [6015] = 3104, + [6016] = 473, + [6017] = 297, + [6018] = 462, + [6019] = 371, + [6020] = 446, + [6021] = 387, + [6022] = 425, + [6023] = 1686, + [6024] = 1622, + [6025] = 414, + [6026] = 426, + [6027] = 387, + [6028] = 5483, + [6029] = 1635, + [6030] = 1672, + [6031] = 473, + [6032] = 467, + [6033] = 330, + [6034] = 1511, + [6035] = 331, + [6036] = 5663, + [6037] = 388, + [6038] = 1645, + [6039] = 337, + [6040] = 1646, + [6041] = 371, + [6042] = 505, + [6043] = 309, + [6044] = 1615, + [6045] = 480, + [6046] = 476, + [6047] = 1638, + [6048] = 1617, + [6049] = 307, + [6050] = 279, + [6051] = 1652, + [6052] = 1517, + [6053] = 457, + [6054] = 309, + [6055] = 522, + [6056] = 414, + [6057] = 483, + [6058] = 284, + [6059] = 445, + [6060] = 373, + [6061] = 288, + [6062] = 518, + [6063] = 462, + [6064] = 384, + [6065] = 1339, + [6066] = 330, + [6067] = 521, + [6068] = 5958, + [6069] = 488, + [6070] = 389, + [6071] = 524, + [6072] = 1289, + [6073] = 371, + [6074] = 331, + [6075] = 299, + [6076] = 515, + [6077] = 457, + [6078] = 6078, + [6079] = 521, + [6080] = 457, + [6081] = 1517, + [6082] = 502, + [6083] = 495, + [6084] = 427, + [6085] = 528, + [6086] = 389, + [6087] = 499, + [6088] = 1511, + [6089] = 445, [6090] = 288, - [6091] = 464, - [6092] = 276, - [6093] = 463, - [6094] = 449, - [6095] = 508, - [6096] = 288, - [6097] = 494, - [6098] = 1384, - [6099] = 288, - [6100] = 503, - [6101] = 495, - [6102] = 411, - [6103] = 424, - [6104] = 1495, - [6105] = 420, - [6106] = 391, - [6107] = 496, - [6108] = 527, - [6109] = 1494, - [6110] = 498, - [6111] = 1332, - [6112] = 473, - [6113] = 342, - [6114] = 525, - [6115] = 448, - [6116] = 453, - [6117] = 1284, - [6118] = 1399, - [6119] = 500, - [6120] = 1493, - [6121] = 523, - [6122] = 520, - [6123] = 1330, - [6124] = 304, - [6125] = 407, - [6126] = 451, - [6127] = 447, - [6128] = 315, - [6129] = 521, - [6130] = 518, - [6131] = 385, - [6132] = 449, - [6133] = 407, - [6134] = 6134, - [6135] = 519, - [6136] = 526, - [6137] = 1492, - [6138] = 516, - [6139] = 473, - [6140] = 411, - [6141] = 6141, - [6142] = 294, - [6143] = 448, - [6144] = 376, - [6145] = 528, - [6146] = 1330, - [6147] = 511, - [6148] = 1384, - [6149] = 1332, - [6150] = 420, - [6151] = 515, - [6152] = 408, - [6153] = 309, - [6154] = 377, - [6155] = 6027, - [6156] = 510, - [6157] = 513, - [6158] = 507, - [6159] = 423, - [6160] = 1382, - [6161] = 502, - [6162] = 432, - [6163] = 297, - [6164] = 499, - [6165] = 522, - [6166] = 528, - [6167] = 495, - [6168] = 492, - [6169] = 377, - [6170] = 502, - [6171] = 1332, - [6172] = 507, - [6173] = 488, - [6174] = 510, - [6175] = 443, - [6176] = 467, - [6177] = 511, - [6178] = 516, - [6179] = 518, - [6180] = 6180, - [6181] = 5978, - [6182] = 312, - [6183] = 1382, - [6184] = 520, - [6185] = 500, - [6186] = 498, - [6187] = 470, - [6188] = 469, - [6189] = 430, - [6190] = 496, - [6191] = 438, - [6192] = 6192, - [6193] = 488, - [6194] = 522, - [6195] = 437, - [6196] = 517, - [6197] = 494, - [6198] = 434, - [6199] = 328, - [6200] = 444, - [6201] = 431, - [6202] = 325, - [6203] = 430, - [6204] = 429, - [6205] = 309, - [6206] = 309, - [6207] = 395, - [6208] = 305, - [6209] = 411, - [6210] = 443, - [6211] = 463, - [6212] = 464, - [6213] = 486, - [6214] = 487, - [6215] = 489, - [6216] = 376, - [6217] = 493, - [6218] = 503, - [6219] = 423, - [6220] = 439, - [6221] = 525, - [6222] = 300, - [6223] = 438, - [6224] = 437, - [6225] = 288, - [6226] = 513, - [6227] = 385, - [6228] = 526, - [6229] = 377, - [6230] = 465, - [6231] = 377, - [6232] = 466, - [6233] = 434, - [6234] = 527, - [6235] = 515, - [6236] = 391, - [6237] = 341, - [6238] = 490, - [6239] = 312, - [6240] = 467, - [6241] = 517, - [6242] = 395, - [6243] = 492, - [6244] = 519, - [6245] = 424, - [6246] = 304, - [6247] = 508, - [6248] = 521, - [6249] = 344, - [6250] = 431, - [6251] = 523, - [6252] = 499, - [6253] = 1594, - [6254] = 1514, - [6255] = 489, - [6256] = 498, - [6257] = 447, - [6258] = 493, - [6259] = 527, - [6260] = 1384, - [6261] = 6261, - [6262] = 1284, - [6263] = 1330, - [6264] = 490, - [6265] = 1284, - [6266] = 487, - [6267] = 1384, - [6268] = 309, - [6269] = 449, - [6270] = 1332, - [6271] = 411, - [6272] = 1332, - [6273] = 1330, - [6274] = 1382, - [6275] = 323, - [6276] = 353, - [6277] = 1464, - [6278] = 451, - [6279] = 486, - [6280] = 494, - [6281] = 495, - [6282] = 496, - [6283] = 498, - [6284] = 500, - [6285] = 431, - [6286] = 520, - [6287] = 518, - [6288] = 525, - [6289] = 516, - [6290] = 507, - [6291] = 325, - [6292] = 528, - [6293] = 1722, - [6294] = 500, - [6295] = 502, - [6296] = 507, - [6297] = 523, - [6298] = 510, - [6299] = 511, - [6300] = 516, - [6301] = 1539, - [6302] = 518, - [6303] = 520, - [6304] = 500, - [6305] = 498, - [6306] = 496, - [6307] = 495, - [6308] = 520, - [6309] = 494, - [6310] = 473, - [6311] = 1661, - [6312] = 1657, - [6313] = 520, - [6314] = 408, - [6315] = 448, - [6316] = 1655, - [6317] = 307, - [6318] = 1654, - [6319] = 521, - [6320] = 1651, - [6321] = 1649, - [6322] = 1639, - [6323] = 1510, - [6324] = 1332, - [6325] = 1635, - [6326] = 518, - [6327] = 1626, - [6328] = 1509, - [6329] = 1623, - [6330] = 341, - [6331] = 1620, - [6332] = 1508, - [6333] = 1618, - [6334] = 1617, - [6335] = 1616, - [6336] = 1330, - [6337] = 528, - [6338] = 519, - [6339] = 310, - [6340] = 516, - [6341] = 502, - [6342] = 511, - [6343] = 517, - [6344] = 304, - [6345] = 1613, - [6346] = 1507, - [6347] = 1611, - [6348] = 1609, - [6349] = 407, - [6350] = 526, - [6351] = 1399, - [6352] = 1587, - [6353] = 1586, - [6354] = 1581, - [6355] = 1578, - [6356] = 377, - [6357] = 511, - [6358] = 1703, - [6359] = 515, - [6360] = 453, - [6361] = 1577, - [6362] = 1576, - [6363] = 1574, - [6364] = 1572, - [6365] = 1571, - [6366] = 1570, - [6367] = 1567, - [6368] = 1559, - [6369] = 395, - [6370] = 510, - [6371] = 510, - [6372] = 513, - [6373] = 507, - [6374] = 511, - [6375] = 344, - [6376] = 507, - [6377] = 502, - [6378] = 6378, - [6379] = 1684, + [6091] = 446, + [6092] = 472, + [6093] = 425, + [6094] = 426, + [6095] = 480, + [6096] = 299, + [6097] = 473, + [6098] = 283, + [6099] = 356, + [6100] = 516, + [6101] = 477, + [6102] = 465, + [6103] = 500, + [6104] = 375, + [6105] = 425, + [6106] = 1294, + [6107] = 429, + [6108] = 285, + [6109] = 503, + [6110] = 505, + [6111] = 430, + [6112] = 431, + [6113] = 447, + [6114] = 520, + [6115] = 290, + [6116] = 337, + [6117] = 1532, + [6118] = 371, + [6119] = 483, + [6120] = 517, + [6121] = 338, + [6122] = 489, + [6123] = 489, + [6124] = 1358, + [6125] = 490, + [6126] = 426, + [6127] = 491, + [6128] = 325, + [6129] = 492, + [6130] = 387, + [6131] = 493, + [6132] = 1289, + [6133] = 446, + [6134] = 506, + [6135] = 297, + [6136] = 494, + [6137] = 514, + [6138] = 1374, + [6139] = 503, + [6140] = 495, + [6141] = 496, + [6142] = 1377, + [6143] = 486, + [6144] = 431, + [6145] = 497, + [6146] = 389, + [6147] = 498, + [6148] = 499, + [6149] = 523, + [6150] = 492, + [6151] = 299, + [6152] = 302, + [6153] = 500, + [6154] = 490, + [6155] = 501, + [6156] = 388, + [6157] = 502, + [6158] = 286, + [6159] = 309, + [6160] = 467, + [6161] = 469, + [6162] = 384, + [6163] = 388, + [6164] = 375, + [6165] = 501, + [6166] = 387, + [6167] = 289, + [6168] = 6168, + [6169] = 1294, + [6170] = 279, + [6171] = 510, + [6172] = 447, + [6173] = 383, + [6174] = 292, + [6175] = 432, + [6176] = 488, + [6177] = 309, + [6178] = 389, + [6179] = 1294, + [6180] = 476, + [6181] = 302, + [6182] = 494, + [6183] = 299, + [6184] = 498, + [6185] = 310, + [6186] = 486, + [6187] = 496, + [6188] = 462, + [6189] = 1374, + [6190] = 294, + [6191] = 524, + [6192] = 477, + [6193] = 429, + [6194] = 288, + [6195] = 506, + [6196] = 472, + [6197] = 507, + [6198] = 508, + [6199] = 509, + [6200] = 510, + [6201] = 373, + [6202] = 511, + [6203] = 512, + [6204] = 366, + [6205] = 513, + [6206] = 514, + [6207] = 6207, + [6208] = 515, + [6209] = 516, + [6210] = 523, + [6211] = 517, + [6212] = 473, + [6213] = 522, + [6214] = 6214, + [6215] = 518, + [6216] = 5866, + [6217] = 310, + [6218] = 480, + [6219] = 383, + [6220] = 465, + [6221] = 509, + [6222] = 427, + [6223] = 528, + [6224] = 467, + [6225] = 373, + [6226] = 309, + [6227] = 512, + [6228] = 481, + [6229] = 307, + [6230] = 296, + [6231] = 520, + [6232] = 414, + [6233] = 507, + [6234] = 1339, + [6235] = 389, + [6236] = 430, + [6237] = 493, + [6238] = 1535, + [6239] = 491, + [6240] = 508, + [6241] = 511, + [6242] = 481, + [6243] = 505, + [6244] = 373, + [6245] = 310, + [6246] = 1339, + [6247] = 513, + [6248] = 1377, + [6249] = 497, + [6250] = 432, + [6251] = 288, + [6252] = 310, + [6253] = 513, + [6254] = 1339, + [6255] = 1294, + [6256] = 290, + [6257] = 505, + [6258] = 1374, + [6259] = 520, + [6260] = 1339, + [6261] = 1377, + [6262] = 522, + [6263] = 1294, + [6264] = 523, + [6265] = 524, + [6266] = 3104, + [6267] = 503, + [6268] = 486, + [6269] = 488, + [6270] = 1466, + [6271] = 1404, + [6272] = 1465, + [6273] = 489, + [6274] = 506, + [6275] = 490, + [6276] = 507, + [6277] = 491, + [6278] = 508, + [6279] = 492, + [6280] = 509, + [6281] = 493, + [6282] = 510, + [6283] = 494, + [6284] = 511, + [6285] = 495, + [6286] = 512, + [6287] = 496, + [6288] = 513, + [6289] = 497, + [6290] = 514, + [6291] = 498, + [6292] = 515, + [6293] = 499, + [6294] = 516, + [6295] = 500, + [6296] = 517, + [6297] = 501, + [6298] = 518, + [6299] = 502, + [6300] = 1466, + [6301] = 1404, + [6302] = 1465, + [6303] = 325, + [6304] = 375, + [6305] = 1289, + [6306] = 330, + [6307] = 331, + [6308] = 337, + [6309] = 521, + [6310] = 338, + [6311] = 389, + [6312] = 1374, + [6313] = 1377, + [6314] = 1474, + [6315] = 288, + [6316] = 1374, + [6317] = 1377, + [6318] = 302, + [6319] = 371, + [6320] = 299, + [6321] = 383, + [6322] = 384, + [6323] = 389, + [6324] = 309, + [6325] = 310, + [6326] = 6326, + [6327] = 1656, + [6328] = 1657, + [6329] = 1658, + [6330] = 1659, + [6331] = 337, + [6332] = 1358, + [6333] = 338, + [6334] = 356, + [6335] = 447, + [6336] = 366, + [6337] = 469, + [6338] = 472, + [6339] = 387, + [6340] = 476, + [6341] = 1466, + [6342] = 388, + [6343] = 1404, + [6344] = 299, + [6345] = 1465, + [6346] = 309, + [6347] = 310, + [6348] = 1682, + [6349] = 1683, + [6350] = 1684, + [6351] = 1687, + [6352] = 1690, + [6353] = 1704, + [6354] = 1706, + [6355] = 1712, + [6356] = 445, + [6357] = 446, + [6358] = 1499, + [6359] = 462, + [6360] = 1497, + [6361] = 465, + [6362] = 467, + [6363] = 1717, + [6364] = 1289, + [6365] = 1721, + [6366] = 1551, + [6367] = 473, + [6368] = 1553, + [6369] = 288, + [6370] = 480, + [6371] = 481, + [6372] = 483, + [6373] = 457, + [6374] = 425, + [6375] = 426, + [6376] = 1565, + [6377] = 1570, + [6378] = 1571, + [6379] = 427, [6380] = 528, - [6381] = 516, - [6382] = 518, - [6383] = 344, - [6384] = 1685, - [6385] = 1707, - [6386] = 500, - [6387] = 376, - [6388] = 498, - [6389] = 1718, - [6390] = 1717, - [6391] = 1716, - [6392] = 1714, - [6393] = 496, - [6394] = 304, - [6395] = 495, - [6396] = 510, - [6397] = 502, - [6398] = 341, - [6399] = 1527, - [6400] = 385, - [6401] = 1686, - [6402] = 496, - [6403] = 444, - [6404] = 1515, - [6405] = 1522, - [6406] = 499, - [6407] = 6407, - [6408] = 443, - [6409] = 424, - [6410] = 420, - [6411] = 288, - [6412] = 305, - [6413] = 1459, - [6414] = 1702, - [6415] = 495, - [6416] = 1701, - [6417] = 1688, - [6418] = 391, - [6419] = 1700, - [6420] = 470, - [6421] = 1382, - [6422] = 315, - [6423] = 312, - [6424] = 395, - [6425] = 1698, - [6426] = 469, - [6427] = 1696, - [6428] = 1695, - [6429] = 342, - [6430] = 503, - [6431] = 1384, - [6432] = 508, - [6433] = 1464, - [6434] = 494, - [6435] = 1382, - [6436] = 288, - [6437] = 297, - [6438] = 467, - [6439] = 1463, - [6440] = 1513, - [6441] = 1521, - [6442] = 411, - [6443] = 1384, - [6444] = 1382, - [6445] = 411, - [6446] = 323, - [6447] = 353, - [6448] = 491, - [6449] = 528, - [6450] = 1459, - [6451] = 300, - [6452] = 494, - [6453] = 429, - [6454] = 438, - [6455] = 3290, - [6456] = 437, - [6457] = 430, - [6458] = 522, - [6459] = 466, - [6460] = 465, - [6461] = 439, - [6462] = 488, - [6463] = 309, - [6464] = 328, - [6465] = 6465, - [6466] = 434, - [6467] = 294, - [6468] = 1459, - [6469] = 305, - [6470] = 528, - [6471] = 492, - [6472] = 502, - [6473] = 423, - [6474] = 507, - [6475] = 510, - [6476] = 511, - [6477] = 1463, - [6478] = 494, - [6479] = 495, - [6480] = 516, - [6481] = 518, - [6482] = 463, - [6483] = 1463, - [6484] = 1464, - [6485] = 496, - [6486] = 520, - [6487] = 498, - [6488] = 432, - [6489] = 289, - [6490] = 464, - [6491] = 500, - [6492] = 1665, - [6493] = 1667, - [6494] = 495, - [6495] = 494, - [6496] = 1492, - [6497] = 408, - [6498] = 6498, - [6499] = 496, - [6500] = 431, - [6501] = 437, - [6502] = 430, - [6503] = 429, - [6504] = 1494, - [6505] = 438, - [6506] = 439, - [6507] = 1495, - [6508] = 341, - [6509] = 498, - [6510] = 1675, - [6511] = 494, - [6512] = 6512, - [6513] = 500, - [6514] = 443, - [6515] = 407, - [6516] = 420, - [6517] = 520, - [6518] = 6518, - [6519] = 1382, - [6520] = 444, - [6521] = 411, - [6522] = 1459, - [6523] = 518, - [6524] = 516, - [6525] = 495, - [6526] = 511, - [6527] = 510, - [6528] = 1689, - [6529] = 1691, - [6530] = 344, - [6531] = 1595, - [6532] = 1522, - [6533] = 496, - [6534] = 447, - [6535] = 6535, - [6536] = 448, - [6537] = 1332, - [6538] = 420, - [6539] = 1384, - [6540] = 385, - [6541] = 449, - [6542] = 507, - [6543] = 498, - [6544] = 502, - [6545] = 1507, - [6546] = 451, - [6547] = 395, - [6548] = 1495, - [6549] = 1330, - [6550] = 341, - [6551] = 500, - [6552] = 453, - [6553] = 520, - [6554] = 353, - [6555] = 323, - [6556] = 518, - [6557] = 528, - [6558] = 1495, - [6559] = 1494, - [6560] = 516, - [6561] = 1514, - [6562] = 1493, - [6563] = 511, - [6564] = 1662, - [6565] = 510, - [6566] = 6566, - [6567] = 434, - [6568] = 1493, - [6569] = 502, - [6570] = 391, - [6571] = 1669, - [6572] = 1492, - [6573] = 528, - [6574] = 1510, - [6575] = 376, - [6576] = 1382, - [6577] = 1509, - [6578] = 1493, - [6579] = 507, - [6580] = 344, - [6581] = 328, - [6582] = 1384, - [6583] = 325, - [6584] = 1666, - [6585] = 1664, - [6586] = 1459, - [6587] = 1463, - [6588] = 1464, - [6589] = 432, - [6590] = 6590, - [6591] = 1677, - [6592] = 1678, - [6593] = 463, - [6594] = 420, - [6595] = 464, - [6596] = 526, - [6597] = 465, - [6598] = 466, - [6599] = 1515, - [6600] = 1510, - [6601] = 1513, - [6602] = 395, - [6603] = 1492, - [6604] = 467, - [6605] = 1509, - [6606] = 469, - [6607] = 470, - [6608] = 1508, - [6609] = 1494, - [6610] = 6610, - [6611] = 493, - [6612] = 1507, - [6613] = 1508, - [6614] = 473, - [6615] = 1399, - [6616] = 6616, - [6617] = 6407, - [6618] = 489, + [6381] = 1533, + [6382] = 1573, + [6383] = 1580, + [6384] = 1585, + [6385] = 1587, + [6386] = 1595, + [6387] = 1600, + [6388] = 429, + [6389] = 1622, + [6390] = 1635, + [6391] = 430, + [6392] = 431, + [6393] = 1645, + [6394] = 1646, + [6395] = 1652, + [6396] = 1653, + [6397] = 1671, + [6398] = 1672, + [6399] = 1673, + [6400] = 1677, + [6401] = 1681, + [6402] = 1686, + [6403] = 1692, + [6404] = 1693, + [6405] = 1695, + [6406] = 373, + [6407] = 1710, + [6408] = 1724, + [6409] = 1638, + [6410] = 477, + [6411] = 432, + [6412] = 1539, + [6413] = 1543, + [6414] = 1545, + [6415] = 1546, + [6416] = 330, + [6417] = 331, + [6418] = 389, + [6419] = 6419, + [6420] = 506, + [6421] = 507, + [6422] = 508, + [6423] = 509, + [6424] = 510, + [6425] = 307, + [6426] = 511, + [6427] = 512, + [6428] = 513, + [6429] = 514, + [6430] = 515, + [6431] = 516, + [6432] = 289, + [6433] = 517, + [6434] = 518, + [6435] = 1339, + [6436] = 1294, + [6437] = 1536, + [6438] = 1470, + [6439] = 1477, + [6440] = 1478, + [6441] = 414, + [6442] = 375, + [6443] = 1485, + [6444] = 296, + [6445] = 506, + [6446] = 507, + [6447] = 508, + [6448] = 509, + [6449] = 510, + [6450] = 511, + [6451] = 512, + [6452] = 513, + [6453] = 514, + [6454] = 515, + [6455] = 516, + [6456] = 517, + [6457] = 518, + [6458] = 506, + [6459] = 507, + [6460] = 508, + [6461] = 509, + [6462] = 510, + [6463] = 511, + [6464] = 512, + [6465] = 514, + [6466] = 515, + [6467] = 516, + [6468] = 517, + [6469] = 518, + [6470] = 292, + [6471] = 294, + [6472] = 506, + [6473] = 507, + [6474] = 508, + [6475] = 509, + [6476] = 510, + [6477] = 511, + [6478] = 512, + [6479] = 513, + [6480] = 514, + [6481] = 515, + [6482] = 516, + [6483] = 517, + [6484] = 518, + [6485] = 6485, + [6486] = 6486, + [6487] = 297, + [6488] = 1374, + [6489] = 1377, + [6490] = 1505, + [6491] = 1572, + [6492] = 6492, + [6493] = 1536, + [6494] = 1470, + [6495] = 1477, + [6496] = 1478, + [6497] = 356, + [6498] = 366, + [6499] = 6499, + [6500] = 389, + [6501] = 414, + [6502] = 1499, + [6503] = 330, + [6504] = 331, + [6505] = 388, + [6506] = 1485, + [6507] = 1374, + [6508] = 1505, + [6509] = 1533, + [6510] = 1377, + [6511] = 1466, + [6512] = 1536, + [6513] = 1470, + [6514] = 387, + [6515] = 1477, + [6516] = 1478, + [6517] = 1404, + [6518] = 1465, + [6519] = 388, + [6520] = 1614, + [6521] = 6521, + [6522] = 1511, + [6523] = 1497, + [6524] = 387, + [6525] = 388, + [6526] = 1517, + [6527] = 6527, + [6528] = 1532, + [6529] = 445, + [6530] = 337, + [6531] = 338, + [6532] = 446, + [6533] = 337, + [6534] = 338, + [6535] = 447, + [6536] = 462, + [6537] = 1535, + [6538] = 1725, + [6539] = 465, + [6540] = 467, + [6541] = 469, + [6542] = 1640, + [6543] = 6543, + [6544] = 472, + [6545] = 1642, + [6546] = 6546, + [6547] = 1374, + [6548] = 473, + [6549] = 1617, + [6550] = 1630, + [6551] = 6551, + [6552] = 1511, + [6553] = 476, + [6554] = 325, + [6555] = 1517, + [6556] = 1532, + [6557] = 477, + [6558] = 1339, + [6559] = 1377, + [6560] = 480, + [6561] = 481, + [6562] = 375, + [6563] = 1294, + [6564] = 483, + [6565] = 6565, + [6566] = 1535, + [6567] = 6567, + [6568] = 1511, + [6569] = 1517, + [6570] = 1615, + [6571] = 1466, + [6572] = 375, + [6573] = 1404, + [6574] = 1465, + [6575] = 1466, + [6576] = 1535, + [6577] = 1404, + [6578] = 1465, + [6579] = 371, + [6580] = 1628, + [6581] = 457, + [6582] = 383, + [6583] = 384, + [6584] = 425, + [6585] = 426, + [6586] = 505, + [6587] = 427, + [6588] = 506, + [6589] = 528, + [6590] = 507, + [6591] = 508, + [6592] = 509, + [6593] = 510, + [6594] = 511, + [6595] = 512, + [6596] = 513, + [6597] = 514, + [6598] = 515, + [6599] = 516, + [6600] = 517, + [6601] = 518, + [6602] = 6602, + [6603] = 1358, + [6604] = 429, + [6605] = 430, + [6606] = 431, + [6607] = 520, + [6608] = 432, + [6609] = 522, + [6610] = 1474, + [6611] = 523, + [6612] = 524, + [6613] = 1637, + [6614] = 371, + [6615] = 1505, + [6616] = 1533, + [6617] = 383, + [6618] = 506, [6619] = 6619, - [6620] = 1459, - [6621] = 6621, - [6622] = 1514, - [6623] = 1527, - [6624] = 487, - [6625] = 486, - [6626] = 391, - [6627] = 1464, - [6628] = 342, - [6629] = 6629, - [6630] = 1463, - [6631] = 385, - [6632] = 1513, - [6633] = 1521, - [6634] = 6634, - [6635] = 376, - [6636] = 1464, + [6620] = 1625, + [6621] = 507, + [6622] = 6419, + [6623] = 508, + [6624] = 384, + [6625] = 509, + [6626] = 510, + [6627] = 511, + [6628] = 512, + [6629] = 513, + [6630] = 514, + [6631] = 515, + [6632] = 516, + [6633] = 517, + [6634] = 1664, + [6635] = 1666, + [6636] = 6636, [6637] = 6637, - [6638] = 6638, - [6639] = 408, + [6638] = 518, + [6639] = 6639, [6640] = 6640, - [6641] = 1463, - [6642] = 491, - [6643] = 408, - [6644] = 1675, - [6645] = 1700, - [6646] = 1696, - [6647] = 1698, - [6648] = 6648, - [6649] = 6648, - [6650] = 6648, - [6651] = 6648, - [6652] = 444, - [6653] = 438, - [6654] = 1701, - [6655] = 6498, - [6656] = 1707, - [6657] = 1702, - [6658] = 447, - [6659] = 1703, - [6660] = 408, - [6661] = 448, - [6662] = 1527, - [6663] = 6663, - [6664] = 6664, - [6665] = 6665, - [6666] = 6666, + [6641] = 387, + [6642] = 521, + [6643] = 1532, + [6644] = 1704, + [6645] = 1535, + [6646] = 472, + [6647] = 1693, + [6648] = 1695, + [6649] = 1511, + [6650] = 1517, + [6651] = 1710, + [6652] = 1532, + [6653] = 1535, + [6654] = 1642, + [6655] = 447, + [6656] = 1724, + [6657] = 6657, + [6658] = 1638, + [6659] = 1539, + [6660] = 1543, + [6661] = 1545, + [6662] = 6602, + [6663] = 1546, + [6664] = 1517, + [6665] = 389, + [6666] = 469, [6667] = 6667, - [6668] = 6648, - [6669] = 1707, - [6670] = 1714, - [6671] = 1716, - [6672] = 1717, - [6673] = 1718, - [6674] = 376, - [6675] = 385, - [6676] = 1722, - [6677] = 1494, - [6678] = 391, - [6679] = 1714, - [6680] = 6648, - [6681] = 1539, - [6682] = 420, - [6683] = 1716, - [6684] = 1717, - [6685] = 526, - [6686] = 1521, - [6687] = 1665, - [6688] = 6648, - [6689] = 1587, - [6690] = 6648, - [6691] = 6621, - [6692] = 6692, - [6693] = 1677, - [6694] = 434, - [6695] = 1718, - [6696] = 431, - [6697] = 1522, - [6698] = 1657, - [6699] = 6648, - [6700] = 1655, - [6701] = 1654, - [6702] = 1651, - [6703] = 1649, - [6704] = 1595, - [6705] = 1495, - [6706] = 1703, - [6707] = 1722, - [6708] = 1635, - [6709] = 1539, - [6710] = 1626, - [6711] = 439, - [6712] = 1623, - [6713] = 522, - [6714] = 1620, - [6715] = 430, - [6716] = 6629, - [6717] = 429, - [6718] = 1559, - [6719] = 1567, - [6720] = 1570, - [6721] = 411, - [6722] = 493, - [6723] = 1493, - [6724] = 6648, - [6725] = 1702, - [6726] = 1701, - [6727] = 1571, - [6728] = 6648, - [6729] = 6648, - [6730] = 1572, - [6731] = 1661, - [6732] = 1654, - [6733] = 420, - [6734] = 449, - [6735] = 1662, - [6736] = 1574, - [6737] = 1618, - [6738] = 489, - [6739] = 1576, - [6740] = 1617, - [6741] = 1616, - [6742] = 1613, - [6743] = 1611, - [6744] = 1609, - [6745] = 487, - [6746] = 1594, - [6747] = 1657, - [6748] = 1655, - [6749] = 486, - [6750] = 6566, - [6751] = 1587, - [6752] = 1586, - [6753] = 1664, - [6754] = 6754, - [6755] = 1492, - [6756] = 6756, - [6757] = 6757, - [6758] = 1581, - [6759] = 1514, - [6760] = 463, - [6761] = 464, - [6762] = 1578, - [6763] = 1666, - [6764] = 1513, - [6765] = 1577, - [6766] = 1576, - [6767] = 432, - [6768] = 1574, - [6769] = 1572, - [6770] = 1571, - [6771] = 1570, - [6772] = 1688, - [6773] = 1567, - [6774] = 1667, - [6775] = 1577, - [6776] = 465, - [6777] = 466, - [6778] = 1559, - [6779] = 1686, - [6780] = 1495, - [6781] = 1494, - [6782] = 1669, - [6783] = 6648, - [6784] = 491, - [6785] = 1509, - [6786] = 1578, - [6787] = 1581, - [6788] = 1492, - [6789] = 1698, - [6790] = 467, - [6791] = 1651, - [6792] = 1515, - [6793] = 1649, - [6794] = 1493, + [6668] = 6668, + [6669] = 6669, + [6670] = 445, + [6671] = 446, + [6672] = 476, + [6673] = 477, + [6674] = 337, + [6675] = 503, + [6676] = 338, + [6677] = 6657, + [6678] = 1485, + [6679] = 6657, + [6680] = 1682, + [6681] = 1642, + [6682] = 6657, + [6683] = 387, + [6684] = 6657, + [6685] = 6657, + [6686] = 1497, + [6687] = 6657, + [6688] = 6551, + [6689] = 6657, + [6690] = 427, + [6691] = 528, + [6692] = 1683, + [6693] = 6657, + [6694] = 429, + [6695] = 6695, + [6696] = 6696, + [6697] = 6697, + [6698] = 505, + [6699] = 371, + [6700] = 6657, + [6701] = 430, + [6702] = 462, + [6703] = 431, + [6704] = 1684, + [6705] = 1687, + [6706] = 383, + [6707] = 432, + [6708] = 384, + [6709] = 1690, + [6710] = 1656, + [6711] = 6657, + [6712] = 1657, + [6713] = 1658, + [6714] = 1659, + [6715] = 521, + [6716] = 1664, + [6717] = 1666, + [6718] = 465, + [6719] = 6657, + [6720] = 1682, + [6721] = 1683, + [6722] = 6657, + [6723] = 1684, + [6724] = 1687, + [6725] = 1690, + [6726] = 467, + [6727] = 1706, + [6728] = 1704, + [6729] = 1712, + [6730] = 1499, + [6731] = 1706, + [6732] = 6657, + [6733] = 1717, + [6734] = 1721, + [6735] = 1551, + [6736] = 1553, + [6737] = 1614, + [6738] = 1712, + [6739] = 1532, + [6740] = 473, + [6741] = 1565, + [6742] = 1570, + [6743] = 6657, + [6744] = 1571, + [6745] = 1717, + [6746] = 6657, + [6747] = 1615, + [6748] = 6657, + [6749] = 6657, + [6750] = 387, + [6751] = 6657, + [6752] = 6657, + [6753] = 6657, + [6754] = 1721, + [6755] = 1474, + [6756] = 6657, + [6757] = 1572, + [6758] = 480, + [6759] = 1551, + [6760] = 6657, + [6761] = 1553, + [6762] = 6657, + [6763] = 1573, + [6764] = 6657, + [6765] = 1580, + [6766] = 6657, + [6767] = 1585, + [6768] = 1511, + [6769] = 1535, + [6770] = 1587, + [6771] = 375, + [6772] = 1659, + [6773] = 1595, + [6774] = 1600, + [6775] = 6657, + [6776] = 1622, + [6777] = 1635, + [6778] = 1645, + [6779] = 481, + [6780] = 1570, + [6781] = 388, + [6782] = 6657, + [6783] = 1646, + [6784] = 1652, + [6785] = 1653, + [6786] = 1617, + [6787] = 483, + [6788] = 1571, + [6789] = 6565, + [6790] = 6657, + [6791] = 1625, + [6792] = 1572, + [6793] = 1628, + [6794] = 457, [6795] = 6795, - [6796] = 469, - [6797] = 470, - [6798] = 6798, - [6799] = 451, + [6796] = 6796, + [6797] = 6797, + [6798] = 6657, + [6799] = 6657, [6800] = 6800, - [6801] = 6648, - [6802] = 1459, - [6803] = 1696, - [6804] = 408, - [6805] = 437, - [6806] = 1586, - [6807] = 1695, - [6808] = 6648, - [6809] = 1492, - [6810] = 6648, - [6811] = 473, - [6812] = 1639, - [6813] = 1463, - [6814] = 1493, - [6815] = 1507, - [6816] = 1464, - [6817] = 1595, - [6818] = 1508, - [6819] = 1661, - [6820] = 6648, - [6821] = 6648, - [6822] = 453, - [6823] = 1510, - [6824] = 6619, - [6825] = 1700, - [6826] = 6826, - [6827] = 6827, - [6828] = 6828, - [6829] = 1691, - [6830] = 1594, - [6831] = 6831, - [6832] = 1611, - [6833] = 1689, - [6834] = 6648, - [6835] = 1685, - [6836] = 395, - [6837] = 6648, - [6838] = 420, - [6839] = 1688, - [6840] = 6648, - [6841] = 341, - [6842] = 1684, - [6843] = 1684, - [6844] = 1686, - [6845] = 1685, - [6846] = 6648, - [6847] = 1639, - [6848] = 1613, - [6849] = 344, - [6850] = 1616, - [6851] = 443, - [6852] = 6634, - [6853] = 1609, - [6854] = 1617, - [6855] = 1618, - [6856] = 6648, - [6857] = 1620, - [6858] = 6648, - [6859] = 6648, - [6860] = 6648, - [6861] = 1623, - [6862] = 408, - [6863] = 6648, - [6864] = 6648, + [6801] = 6801, + [6802] = 1573, + [6803] = 1671, + [6804] = 1672, + [6805] = 1673, + [6806] = 1677, + [6807] = 1681, + [6808] = 1686, + [6809] = 1580, + [6810] = 1692, + [6811] = 1693, + [6812] = 1695, + [6813] = 1710, + [6814] = 1724, + [6815] = 1630, + [6816] = 1511, + [6817] = 1638, + [6818] = 1539, + [6819] = 1543, + [6820] = 1545, + [6821] = 1585, + [6822] = 1546, + [6823] = 1587, + [6824] = 1595, + [6825] = 1637, + [6826] = 1505, + [6827] = 520, + [6828] = 1533, + [6829] = 1600, + [6830] = 387, + [6831] = 6657, + [6832] = 1622, + [6833] = 1725, + [6834] = 522, + [6835] = 523, + [6836] = 1640, + [6837] = 388, + [6838] = 6619, + [6839] = 1536, + [6840] = 1470, + [6841] = 1477, + [6842] = 1478, + [6843] = 1635, + [6844] = 6844, + [6845] = 6527, + [6846] = 1645, + [6847] = 1646, + [6848] = 1652, + [6849] = 1653, + [6850] = 1671, + [6851] = 1672, + [6852] = 6852, + [6853] = 1673, + [6854] = 1677, + [6855] = 6546, + [6856] = 1681, + [6857] = 388, + [6858] = 1686, + [6859] = 1517, + [6860] = 524, + [6861] = 6861, + [6862] = 425, + [6863] = 1656, + [6864] = 6864, [6865] = 6865, - [6866] = 1626, - [6867] = 1695, - [6868] = 6648, - [6869] = 6648, - [6870] = 1635, - [6871] = 1678, - [6872] = 6648, - [6873] = 6648, - [6874] = 6874, - [6875] = 1495, - [6876] = 1494, - [6877] = 1586, - [6878] = 430, - [6879] = 431, - [6880] = 526, - [6881] = 437, - [6882] = 438, - [6883] = 1655, - [6884] = 1539, - [6885] = 1654, - [6886] = 1661, - [6887] = 1657, - [6888] = 1577, - [6889] = 1635, - [6890] = 444, - [6891] = 439, - [6892] = 443, - [6893] = 1718, - [6894] = 1717, - [6895] = 1576, - [6896] = 1574, - [6897] = 1572, - [6898] = 1571, - [6899] = 1691, - [6900] = 1689, - [6901] = 1716, - [6902] = 1714, - [6903] = 1492, - [6904] = 1651, - [6905] = 1649, - [6906] = 1570, - [6907] = 1594, - [6908] = 1639, - [6909] = 1609, - [6910] = 344, - [6911] = 493, - [6912] = 1611, - [6913] = 447, - [6914] = 448, - [6915] = 1707, - [6916] = 489, - [6917] = 1578, - [6918] = 1662, - [6919] = 341, - [6920] = 487, - [6921] = 1678, + [6866] = 6866, + [6867] = 1692, + [6868] = 1532, + [6869] = 1466, + [6870] = 1657, + [6871] = 1404, + [6872] = 1465, + [6873] = 426, + [6874] = 1658, + [6875] = 6875, + [6876] = 1565, + [6877] = 388, + [6878] = 432, + [6879] = 1614, + [6880] = 1615, + [6881] = 1617, + [6882] = 1656, + [6883] = 1628, + [6884] = 1630, + [6885] = 1657, + [6886] = 1658, + [6887] = 1659, + [6888] = 1725, + [6889] = 1640, + [6890] = 1682, + [6891] = 1683, + [6892] = 1684, + [6893] = 1687, + [6894] = 1690, + [6895] = 1704, + [6896] = 1706, + [6897] = 1712, + [6898] = 1717, + [6899] = 1721, + [6900] = 1551, + [6901] = 1553, + [6902] = 1565, + [6903] = 1570, + [6904] = 1571, + [6905] = 1572, + [6906] = 1573, + [6907] = 1580, + [6908] = 1585, + [6909] = 1587, + [6910] = 1595, + [6911] = 1600, + [6912] = 1622, + [6913] = 1635, + [6914] = 522, + [6915] = 1645, + [6916] = 1646, + [6917] = 1652, + [6918] = 1653, + [6919] = 1671, + [6920] = 1672, + [6921] = 1673, [6922] = 1677, - [6923] = 449, - [6924] = 1703, - [6925] = 1567, - [6926] = 1702, - [6927] = 451, - [6928] = 1669, - [6929] = 453, - [6930] = 1559, - [6931] = 1667, - [6932] = 1665, - [6933] = 1664, - [6934] = 1613, - [6935] = 1701, - [6936] = 1616, - [6937] = 1675, - [6938] = 6938, - [6939] = 6939, - [6940] = 463, - [6941] = 486, - [6942] = 1666, - [6943] = 464, - [6944] = 1617, - [6945] = 1700, - [6946] = 434, - [6947] = 1626, - [6948] = 432, - [6949] = 6949, - [6950] = 465, - [6951] = 1618, - [6952] = 466, - [6953] = 420, - [6954] = 1698, - [6955] = 1623, - [6956] = 1684, - [6957] = 1696, - [6958] = 1685, - [6959] = 1686, - [6960] = 1695, - [6961] = 408, - [6962] = 1688, - [6963] = 473, - [6964] = 467, - [6965] = 429, - [6966] = 469, - [6967] = 1493, - [6968] = 1581, - [6969] = 1620, - [6970] = 470, - [6971] = 1722, - [6972] = 1595, - [6973] = 1495, - [6974] = 6974, - [6975] = 1494, - [6976] = 1587, + [6923] = 1681, + [6924] = 1686, + [6925] = 1692, + [6926] = 1693, + [6927] = 1695, + [6928] = 1710, + [6929] = 1664, + [6930] = 1666, + [6931] = 1724, + [6932] = 1638, + [6933] = 1539, + [6934] = 1543, + [6935] = 1545, + [6936] = 1546, + [6937] = 523, + [6938] = 472, + [6939] = 524, + [6940] = 6940, + [6941] = 447, + [6942] = 505, + [6943] = 1511, + [6944] = 469, + [6945] = 1517, + [6946] = 1532, + [6947] = 387, + [6948] = 337, + [6949] = 1535, + [6950] = 338, + [6951] = 476, + [6952] = 477, + [6953] = 1642, + [6954] = 445, + [6955] = 446, + [6956] = 1637, + [6957] = 462, + [6958] = 465, + [6959] = 467, + [6960] = 457, + [6961] = 473, + [6962] = 6962, + [6963] = 480, + [6964] = 481, + [6965] = 483, + [6966] = 425, + [6967] = 426, + [6968] = 427, + [6969] = 528, + [6970] = 520, + [6971] = 6971, + [6972] = 429, + [6973] = 6973, + [6974] = 430, + [6975] = 431, + [6976] = 1625, [6977] = 6977, [6978] = 6977, [6979] = 6979, @@ -11431,2079 +11431,2079 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6982] = 6981, [6983] = 6983, [6984] = 6984, - [6985] = 6984, - [6986] = 6983, - [6987] = 1014, - [6988] = 1050, - [6989] = 1015, - [6990] = 999, + [6985] = 6983, + [6986] = 6984, + [6987] = 1013, + [6988] = 1003, + [6989] = 1017, + [6990] = 1048, [6991] = 1016, - [6992] = 1013, - [6993] = 1012, - [6994] = 999, - [6995] = 1046, - [6996] = 1014, - [6997] = 1039, - [6998] = 1033, - [6999] = 1037, - [7000] = 1017, - [7001] = 1012, - [7002] = 1032, - [7003] = 999, - [7004] = 1041, - [7005] = 1031, - [7006] = 999, + [6992] = 1019, + [6993] = 1018, + [6994] = 1003, + [6995] = 1019, + [6996] = 1031, + [6997] = 1032, + [6998] = 1030, + [6999] = 1041, + [7000] = 1044, + [7001] = 1040, + [7002] = 1003, + [7003] = 1039, + [7004] = 1045, + [7005] = 1043, + [7006] = 1003, [7007] = 1013, - [7008] = 1015, - [7009] = 1040, - [7010] = 1016, - [7011] = 1050, - [7012] = 1042, - [7013] = 1051, - [7014] = 1036, - [7015] = 1052, - [7016] = 999, - [7017] = 1021, - [7018] = 1015, - [7019] = 344, - [7020] = 1013, - [7021] = 341, - [7022] = 1017, - [7023] = 1016, - [7024] = 1012, - [7025] = 1050, - [7026] = 1014, - [7027] = 1022, - [7028] = 1022, - [7029] = 1015, - [7030] = 1041, - [7031] = 1017, - [7032] = 1016, - [7033] = 341, - [7034] = 1016, - [7035] = 1012, - [7036] = 1021, - [7037] = 1046, - [7038] = 1013, - [7039] = 1031, - [7040] = 1017, - [7041] = 1042, - [7042] = 1014, - [7043] = 1012, - [7044] = 1040, - [7045] = 1051, - [7046] = 344, - [7047] = 1052, - [7048] = 999, - [7049] = 1032, - [7050] = 1033, - [7051] = 1050, - [7052] = 999, - [7053] = 999, - [7054] = 1036, - [7055] = 1039, - [7056] = 1013, - [7057] = 1015, - [7058] = 1037, - [7059] = 1014, - [7060] = 1036, - [7061] = 1042, - [7062] = 4263, - [7063] = 1039, - [7064] = 1022, - [7065] = 1021, - [7066] = 1041, - [7067] = 1021, - [7068] = 1046, + [7008] = 1053, + [7009] = 1048, + [7010] = 1015, + [7011] = 1042, + [7012] = 1038, + [7013] = 1016, + [7014] = 1017, + [7015] = 1018, + [7016] = 1023, + [7017] = 1020, + [7018] = 1013, + [7019] = 337, + [7020] = 1003, + [7021] = 1017, + [7022] = 1015, + [7023] = 1048, + [7024] = 1018, + [7025] = 338, + [7026] = 1019, + [7027] = 1016, + [7028] = 1042, + [7029] = 1039, + [7030] = 1023, + [7031] = 1020, + [7032] = 337, + [7033] = 338, + [7034] = 1045, + [7035] = 1003, + [7036] = 1003, + [7037] = 1015, + [7038] = 1016, + [7039] = 1017, + [7040] = 1018, + [7041] = 1019, + [7042] = 1015, + [7043] = 1013, + [7044] = 1013, + [7045] = 1044, + [7046] = 1041, + [7047] = 1003, + [7048] = 1043, + [7049] = 1053, + [7050] = 1031, + [7051] = 1032, + [7052] = 1030, + [7053] = 1048, + [7054] = 1016, + [7055] = 1017, + [7056] = 1018, + [7057] = 1019, + [7058] = 1038, + [7059] = 1040, + [7060] = 1015, + [7061] = 1039, + [7062] = 1040, + [7063] = 1041, + [7064] = 1042, + [7065] = 1043, + [7066] = 1003, + [7067] = 1003, + [7068] = 1044, [7069] = 1013, - [7070] = 1051, - [7071] = 1037, - [7072] = 1012, - [7073] = 1050, - [7074] = 1017, - [7075] = 1014, - [7076] = 1033, - [7077] = 999, - [7078] = 1052, - [7079] = 1032, - [7080] = 1040, - [7081] = 1015, - [7082] = 1016, - [7083] = 999, - [7084] = 1031, - [7085] = 1022, - [7086] = 1012, - [7087] = 1031, - [7088] = 1017, - [7089] = 1039, - [7090] = 1015, - [7091] = 1014, - [7092] = 1016, - [7093] = 1021, - [7094] = 1022, - [7095] = 1013, - [7096] = 999, - [7097] = 1032, - [7098] = 1014, - [7099] = 1013, - [7100] = 1036, - [7101] = 1012, + [7070] = 1045, + [7071] = 4334, + [7072] = 1016, + [7073] = 1023, + [7074] = 1019, + [7075] = 1020, + [7076] = 1023, + [7077] = 1017, + [7078] = 1020, + [7079] = 1018, + [7080] = 1053, + [7081] = 1031, + [7082] = 1032, + [7083] = 1030, + [7084] = 1048, + [7085] = 1038, + [7086] = 1018, + [7087] = 1053, + [7088] = 1031, + [7089] = 1043, + [7090] = 1016, + [7091] = 1019, + [7092] = 1003, + [7093] = 1017, + [7094] = 1018, + [7095] = 1030, + [7096] = 1019, + [7097] = 1040, + [7098] = 1023, + [7099] = 1020, + [7100] = 1041, + [7101] = 1044, [7102] = 1017, - [7103] = 1050, - [7104] = 1015, - [7105] = 1015, - [7106] = 1037, - [7107] = 999, - [7108] = 1041, - [7109] = 1046, - [7110] = 1033, - [7111] = 1036, - [7112] = 1040, - [7113] = 1012, - [7114] = 1037, - [7115] = 1050, - [7116] = 1042, - [7117] = 1039, - [7118] = 1052, - [7119] = 1051, - [7120] = 1016, - [7121] = 1014, - [7122] = 1031, - [7123] = 1015, - [7124] = 1014, - [7125] = 1017, - [7126] = 1033, - [7127] = 1032, - [7128] = 1040, - [7129] = 1042, - [7130] = 999, - [7131] = 432, - [7132] = 1012, - [7133] = 1012, - [7134] = 1016, - [7135] = 1013, - [7136] = 1015, + [7103] = 1045, + [7104] = 1018, + [7105] = 1019, + [7106] = 1042, + [7107] = 1043, + [7108] = 1044, + [7109] = 1038, + [7110] = 1015, + [7111] = 1013, + [7112] = 1045, + [7113] = 1013, + [7114] = 1048, + [7115] = 1040, + [7116] = 1019, + [7117] = 1016, + [7118] = 1053, + [7119] = 1032, + [7120] = 1015, + [7121] = 1017, + [7122] = 1030, + [7123] = 457, + [7124] = 1031, + [7125] = 1048, + [7126] = 1015, + [7127] = 1016, + [7128] = 1017, + [7129] = 1018, + [7130] = 1019, + [7131] = 1003, + [7132] = 1003, + [7133] = 1013, + [7134] = 1041, + [7135] = 1038, + [7136] = 1039, [7137] = 1013, - [7138] = 1041, + [7138] = 1039, [7139] = 1016, - [7140] = 1014, - [7141] = 1046, - [7142] = 1013, - [7143] = 1052, - [7144] = 1016, - [7145] = 1051, - [7146] = 432, - [7147] = 1022, - [7148] = 1021, - [7149] = 1031, - [7150] = 288, - [7151] = 1022, - [7152] = 1021, - [7153] = 1052, - [7154] = 1041, - [7155] = 7155, - [7156] = 1046, - [7157] = 312, - [7158] = 1051, + [7140] = 1042, + [7141] = 1032, + [7142] = 1016, + [7143] = 1017, + [7144] = 1018, + [7145] = 1013, + [7146] = 1020, + [7147] = 1023, + [7148] = 457, + [7149] = 1030, + [7150] = 1044, + [7151] = 1020, + [7152] = 331, + [7153] = 310, + [7154] = 1015, + [7155] = 1023, + [7156] = 1023, + [7157] = 1048, + [7158] = 1045, [7159] = 1039, - [7160] = 1022, - [7161] = 1021, - [7162] = 353, - [7163] = 1037, - [7164] = 7164, - [7165] = 7155, - [7166] = 7166, - [7167] = 1050, - [7168] = 1042, - [7169] = 1040, + [7160] = 1032, + [7161] = 1042, + [7162] = 1031, + [7163] = 288, + [7164] = 1020, + [7165] = 1043, + [7166] = 330, + [7167] = 1038, + [7168] = 7168, + [7169] = 302, [7170] = 7170, - [7171] = 1032, - [7172] = 1033, - [7173] = 1036, - [7174] = 7170, - [7175] = 323, - [7176] = 1017, - [7177] = 304, - [7178] = 1041, - [7179] = 1022, - [7180] = 1039, - [7181] = 7181, - [7182] = 1330, - [7183] = 1021, - [7184] = 7164, - [7185] = 1014, - [7186] = 1051, - [7187] = 1052, + [7171] = 7171, + [7172] = 1053, + [7173] = 1040, + [7174] = 7174, + [7175] = 7174, + [7176] = 7168, + [7177] = 1041, + [7178] = 1031, + [7179] = 7179, + [7180] = 7180, + [7181] = 265, + [7182] = 264, + [7183] = 7183, + [7184] = 309, + [7185] = 310, + [7186] = 7186, + [7187] = 299, [7188] = 7188, [7189] = 7189, - [7190] = 1031, - [7191] = 1042, - [7192] = 1052, - [7193] = 7193, - [7194] = 1013, - [7195] = 1012, - [7196] = 1040, - [7197] = 1032, - [7198] = 1033, - [7199] = 1041, - [7200] = 1036, - [7201] = 1039, - [7202] = 1031, - [7203] = 1332, - [7204] = 1036, - [7205] = 1051, - [7206] = 1052, - [7207] = 4559, - [7208] = 7208, - [7209] = 1031, - [7210] = 264, - [7211] = 1033, - [7212] = 7189, - [7213] = 1042, - [7214] = 1040, - [7215] = 1330, - [7216] = 1032, - [7217] = 7217, - [7218] = 7193, - [7219] = 7181, - [7220] = 1042, - [7221] = 305, - [7222] = 304, - [7223] = 1032, - [7224] = 1036, - [7225] = 1033, - [7226] = 1037, - [7227] = 1033, - [7228] = 7208, - [7229] = 1016, - [7230] = 1042, - [7231] = 288, - [7232] = 7188, - [7233] = 265, - [7234] = 309, - [7235] = 1037, - [7236] = 1595, - [7237] = 7237, - [7238] = 7193, - [7239] = 7239, + [7190] = 384, + [7191] = 7191, + [7192] = 7192, + [7193] = 309, + [7194] = 310, + [7195] = 7170, + [7196] = 7196, + [7197] = 4481, + [7198] = 7186, + [7199] = 7199, + [7200] = 7188, + [7201] = 7179, + [7202] = 7180, + [7203] = 7189, + [7204] = 7191, + [7205] = 7192, + [7206] = 7183, + [7207] = 4460, + [7208] = 288, + [7209] = 1023, + [7210] = 1020, + [7211] = 1053, + [7212] = 1032, + [7213] = 1030, + [7214] = 1038, + [7215] = 1039, + [7216] = 1040, + [7217] = 1041, + [7218] = 1042, + [7219] = 1043, + [7220] = 1044, + [7221] = 1045, + [7222] = 288, + [7223] = 7179, + [7224] = 7180, + [7225] = 7191, + [7226] = 7192, + [7227] = 7171, + [7228] = 1339, + [7229] = 1294, + [7230] = 1053, + [7231] = 1031, + [7232] = 1032, + [7233] = 1030, + [7234] = 302, + [7235] = 1048, + [7236] = 7236, + [7237] = 1642, + [7238] = 1045, + [7239] = 1039, [7240] = 1040, - [7241] = 385, + [7241] = 1041, [7242] = 1042, - [7243] = 1041, - [7244] = 7237, - [7245] = 1036, - [7246] = 4553, - [7247] = 376, - [7248] = 1036, - [7249] = 1037, - [7250] = 7250, - [7251] = 1031, - [7252] = 7208, - [7253] = 1039, - [7254] = 309, - [7255] = 1040, - [7256] = 1332, - [7257] = 1046, - [7258] = 7217, - [7259] = 1039, - [7260] = 1037, - [7261] = 1022, - [7262] = 1031, - [7263] = 7263, - [7264] = 1017, - [7265] = 1033, - [7266] = 1052, - [7267] = 288, - [7268] = 1052, - [7269] = 1039, - [7270] = 1046, - [7271] = 1041, - [7272] = 1017, - [7273] = 1037, - [7274] = 305, - [7275] = 1050, - [7276] = 1046, - [7277] = 1032, - [7278] = 1032, - [7279] = 7189, - [7280] = 7166, - [7281] = 1040, - [7282] = 1015, - [7283] = 1046, - [7284] = 7181, - [7285] = 1041, - [7286] = 7250, - [7287] = 7287, - [7288] = 1051, - [7289] = 7239, - [7290] = 1051, - [7291] = 1021, - [7292] = 1046, - [7293] = 312, - [7294] = 304, - [7295] = 1051, + [7243] = 1043, + [7244] = 1044, + [7245] = 1045, + [7246] = 7199, + [7247] = 1053, + [7248] = 1031, + [7249] = 1032, + [7250] = 1030, + [7251] = 1015, + [7252] = 1015, + [7253] = 1013, + [7254] = 1016, + [7255] = 1017, + [7256] = 1018, + [7257] = 1019, + [7258] = 1038, + [7259] = 383, + [7260] = 1039, + [7261] = 1040, + [7262] = 1041, + [7263] = 1042, + [7264] = 1043, + [7265] = 1044, + [7266] = 1045, + [7267] = 1339, + [7268] = 1053, + [7269] = 1031, + [7270] = 1032, + [7271] = 1030, + [7272] = 1294, + [7273] = 299, + [7274] = 1038, + [7275] = 1039, + [7276] = 1040, + [7277] = 1041, + [7278] = 1042, + [7279] = 1043, + [7280] = 1044, + [7281] = 1045, + [7282] = 1023, + [7283] = 1020, + [7284] = 1053, + [7285] = 1031, + [7286] = 1032, + [7287] = 1030, + [7288] = 1038, + [7289] = 1039, + [7290] = 1040, + [7291] = 1041, + [7292] = 1042, + [7293] = 1043, + [7294] = 1044, + [7295] = 1038, [7296] = 7296, - [7297] = 1384, - [7298] = 7298, + [7297] = 7297, + [7298] = 7297, [7299] = 7299, [7300] = 7300, [7301] = 7296, - [7302] = 1382, - [7303] = 7303, - [7304] = 7303, - [7305] = 7305, - [7306] = 7303, - [7307] = 7298, - [7308] = 7303, - [7309] = 7296, - [7310] = 7303, - [7311] = 7298, - [7312] = 1459, - [7313] = 7303, - [7314] = 323, - [7315] = 353, - [7316] = 7296, - [7317] = 7299, - [7318] = 7303, - [7319] = 7303, - [7320] = 1382, - [7321] = 7298, - [7322] = 1384, - [7323] = 7300, - [7324] = 7296, - [7325] = 7325, - [7326] = 7299, - [7327] = 7327, - [7328] = 7303, - [7329] = 7298, - [7330] = 1382, - [7331] = 1021, - [7332] = 1022, - [7333] = 7303, - [7334] = 7299, - [7335] = 7299, - [7336] = 1463, - [7337] = 7298, - [7338] = 7299, - [7339] = 1021, + [7302] = 1374, + [7303] = 7297, + [7304] = 7299, + [7305] = 7300, + [7306] = 7296, + [7307] = 1466, + [7308] = 7299, + [7309] = 1023, + [7310] = 1020, + [7311] = 7297, + [7312] = 7299, + [7313] = 7300, + [7314] = 7296, + [7315] = 1377, + [7316] = 7297, + [7317] = 7300, + [7318] = 7296, + [7319] = 1404, + [7320] = 7297, + [7321] = 1465, + [7322] = 7300, + [7323] = 7296, + [7324] = 7297, + [7325] = 7300, + [7326] = 7296, + [7327] = 7297, + [7328] = 7300, + [7329] = 7296, + [7330] = 7297, + [7331] = 7300, + [7332] = 7296, + [7333] = 269, + [7334] = 7297, + [7335] = 7300, + [7336] = 7296, + [7337] = 7337, + [7338] = 7297, + [7339] = 7300, [7340] = 7296, - [7341] = 7296, - [7342] = 7299, - [7343] = 7303, - [7344] = 7303, - [7345] = 1463, - [7346] = 7296, - [7347] = 7303, - [7348] = 7298, - [7349] = 7299, - [7350] = 7299, - [7351] = 7298, - [7352] = 7296, - [7353] = 7298, - [7354] = 7298, - [7355] = 7298, - [7356] = 7299, - [7357] = 7298, - [7358] = 7303, - [7359] = 7303, - [7360] = 7325, - [7361] = 1384, + [7341] = 1374, + [7342] = 7297, + [7343] = 1377, + [7344] = 7300, + [7345] = 7296, + [7346] = 7346, + [7347] = 7297, + [7348] = 7300, + [7349] = 7296, + [7350] = 1023, + [7351] = 1020, + [7352] = 7297, + [7353] = 1465, + [7354] = 7300, + [7355] = 7296, + [7356] = 7356, + [7357] = 1377, + [7358] = 1374, + [7359] = 7297, + [7360] = 7297, + [7361] = 7299, [7362] = 7362, - [7363] = 7303, - [7364] = 1464, + [7363] = 7299, + [7364] = 7300, [7365] = 7296, - [7366] = 7303, - [7367] = 1022, - [7368] = 7298, - [7369] = 7296, - [7370] = 265, + [7366] = 1404, + [7367] = 7300, + [7368] = 1377, + [7369] = 7356, + [7370] = 7370, [7371] = 7296, - [7372] = 7299, - [7373] = 269, - [7374] = 7298, - [7375] = 7298, - [7376] = 7299, - [7377] = 7303, - [7378] = 7303, - [7379] = 7303, - [7380] = 7298, - [7381] = 7296, - [7382] = 271, - [7383] = 7299, - [7384] = 7299, - [7385] = 7303, - [7386] = 7298, - [7387] = 7299, - [7388] = 1459, - [7389] = 7299, - [7390] = 7298, - [7391] = 7298, - [7392] = 7392, - [7393] = 7303, - [7394] = 7299, - [7395] = 268, - [7396] = 7303, - [7397] = 1021, - [7398] = 1022, - [7399] = 7298, + [7372] = 7372, + [7373] = 7297, + [7374] = 7299, + [7375] = 7300, + [7376] = 7296, + [7377] = 272, + [7378] = 7297, + [7379] = 330, + [7380] = 7299, + [7381] = 7300, + [7382] = 7296, + [7383] = 270, + [7384] = 7300, + [7385] = 7296, + [7386] = 331, + [7387] = 7297, + [7388] = 7299, + [7389] = 265, + [7390] = 264, + [7391] = 4565, + [7392] = 7300, + [7393] = 4566, + [7394] = 7296, + [7395] = 7300, + [7396] = 1023, + [7397] = 1020, + [7398] = 7296, + [7399] = 7297, [7400] = 7299, - [7401] = 4676, - [7402] = 7298, - [7403] = 7299, - [7404] = 1464, - [7405] = 7299, - [7406] = 273, - [7407] = 7303, - [7408] = 267, - [7409] = 7303, + [7401] = 7300, + [7402] = 7296, + [7403] = 1466, + [7404] = 7297, + [7405] = 273, + [7406] = 7299, + [7407] = 7300, + [7408] = 7296, + [7409] = 7297, [7410] = 7299, - [7411] = 4675, - [7412] = 1384, - [7413] = 264, - [7414] = 7414, - [7415] = 7299, - [7416] = 7299, - [7417] = 7298, - [7418] = 7298, - [7419] = 7299, - [7420] = 7298, - [7421] = 7298, + [7411] = 7300, + [7412] = 7412, + [7413] = 7296, + [7414] = 271, + [7415] = 1374, + [7416] = 7297, + [7417] = 7299, + [7418] = 7300, + [7419] = 7296, + [7420] = 7297, + [7421] = 7297, [7422] = 7299, - [7423] = 7298, - [7424] = 1382, - [7425] = 7299, - [7426] = 7296, - [7427] = 1041, - [7428] = 1042, - [7429] = 1493, - [7430] = 7430, - [7431] = 7431, + [7423] = 7300, + [7424] = 7296, + [7425] = 7300, + [7426] = 7362, + [7427] = 1535, + [7428] = 7428, + [7429] = 7429, + [7430] = 383, + [7431] = 4822, [7432] = 7432, [7433] = 7433, - [7434] = 7433, + [7434] = 1536, [7435] = 7435, - [7436] = 283, - [7437] = 391, - [7438] = 1492, - [7439] = 285, + [7436] = 1470, + [7437] = 286, + [7438] = 7438, + [7439] = 7439, [7440] = 7440, [7441] = 7441, - [7442] = 7442, - [7443] = 276, - [7444] = 7432, - [7445] = 1032, - [7446] = 1033, + [7442] = 1477, + [7443] = 1478, + [7444] = 384, + [7445] = 265, + [7446] = 4815, [7447] = 7447, - [7448] = 7362, - [7449] = 7449, - [7450] = 1036, - [7451] = 385, + [7448] = 264, + [7449] = 4816, + [7450] = 284, + [7451] = 309, [7452] = 7452, [7453] = 7453, [7454] = 7454, - [7455] = 376, - [7456] = 1037, - [7457] = 7431, + [7455] = 7455, + [7456] = 387, + [7457] = 371, [7458] = 7458, - [7459] = 4892, - [7460] = 4878, + [7459] = 7459, + [7460] = 7460, [7461] = 7461, [7462] = 7462, - [7463] = 7430, + [7463] = 7463, [7464] = 7464, - [7465] = 264, + [7465] = 7465, [7466] = 7466, [7467] = 7467, - [7468] = 1495, + [7468] = 7468, [7469] = 7469, [7470] = 7470, - [7471] = 1507, - [7472] = 1494, - [7473] = 264, - [7474] = 1514, + [7471] = 7471, + [7472] = 7472, + [7473] = 7473, + [7474] = 7474, [7475] = 7475, - [7476] = 408, - [7477] = 7477, - [7478] = 1508, - [7479] = 1513, - [7480] = 1494, - [7481] = 280, - [7482] = 265, - [7483] = 286, - [7484] = 1493, - [7485] = 1052, + [7476] = 7476, + [7477] = 283, + [7478] = 7478, + [7479] = 7479, + [7480] = 7480, + [7481] = 7481, + [7482] = 7482, + [7483] = 7483, + [7484] = 1517, + [7485] = 7485, [7486] = 7486, - [7487] = 4361, - [7488] = 420, - [7489] = 1051, - [7490] = 4874, - [7491] = 1492, - [7492] = 273, - [7493] = 7493, - [7494] = 1046, - [7495] = 7495, - [7496] = 1039, - [7497] = 265, - [7498] = 4676, - [7499] = 1040, - [7500] = 268, - [7501] = 4675, - [7502] = 4914, - [7503] = 4915, - [7504] = 7504, - [7505] = 7505, - [7506] = 7506, - [7507] = 7507, - [7508] = 1031, - [7509] = 269, - [7510] = 7510, - [7511] = 7392, - [7512] = 7512, - [7513] = 267, - [7514] = 7514, - [7515] = 7515, - [7516] = 7516, - [7517] = 271, - [7518] = 7518, - [7519] = 1495, - [7520] = 7520, - [7521] = 7521, - [7522] = 7522, - [7523] = 7523, - [7524] = 7524, - [7525] = 7525, - [7526] = 7526, - [7527] = 7527, - [7528] = 7528, - [7529] = 309, + [7487] = 4817, + [7488] = 7488, + [7489] = 7489, + [7490] = 7490, + [7491] = 7491, + [7492] = 1517, + [7493] = 4565, + [7494] = 1532, + [7495] = 7412, + [7496] = 7496, + [7497] = 7497, + [7498] = 7370, + [7499] = 7499, + [7500] = 7500, + [7501] = 1511, + [7502] = 7502, + [7503] = 4566, + [7504] = 1505, + [7505] = 1533, + [7506] = 1053, + [7507] = 1031, + [7508] = 1032, + [7509] = 1030, + [7510] = 388, + [7511] = 1038, + [7512] = 1039, + [7513] = 1040, + [7514] = 1041, + [7515] = 1042, + [7516] = 1043, + [7517] = 1044, + [7518] = 1045, + [7519] = 279, + [7520] = 270, + [7521] = 7486, + [7522] = 265, + [7523] = 272, + [7524] = 4743, + [7525] = 273, + [7526] = 4268, + [7527] = 264, + [7528] = 271, + [7529] = 269, [7530] = 7530, - [7531] = 7531, - [7532] = 7532, + [7531] = 1535, + [7532] = 7432, [7533] = 7533, - [7534] = 1509, - [7535] = 1510, - [7536] = 7536, - [7537] = 7537, - [7538] = 7435, - [7539] = 7539, + [7534] = 7530, + [7535] = 7499, + [7536] = 7491, + [7537] = 7468, + [7538] = 1532, + [7539] = 1511, [7540] = 7540, [7541] = 7541, - [7542] = 283, - [7543] = 286, - [7544] = 7544, - [7545] = 276, - [7546] = 7541, - [7547] = 7544, - [7548] = 1576, - [7549] = 7540, + [7542] = 285, + [7543] = 7543, + [7544] = 7543, + [7545] = 1551, + [7546] = 1658, + [7547] = 7547, + [7548] = 1545, + [7549] = 7549, [7550] = 7550, [7551] = 7551, [7552] = 7552, - [7553] = 7541, - [7554] = 1685, - [7555] = 1686, - [7556] = 7551, - [7557] = 7540, - [7558] = 1577, - [7559] = 1578, - [7560] = 1688, - [7561] = 1731, - [7562] = 1695, - [7563] = 1696, - [7564] = 1698, - [7565] = 1700, - [7566] = 1701, - [7567] = 1734, - [7568] = 7552, - [7569] = 1399, - [7570] = 1702, - [7571] = 7550, - [7572] = 1703, - [7573] = 1581, - [7574] = 1707, - [7575] = 1684, - [7576] = 7550, - [7577] = 7577, - [7578] = 7540, - [7579] = 1586, - [7580] = 4878, - [7581] = 7544, - [7582] = 7541, - [7583] = 1716, - [7584] = 1717, - [7585] = 1718, - [7586] = 1722, - [7587] = 1587, - [7588] = 1539, - [7589] = 1661, - [7590] = 1657, - [7591] = 4892, - [7592] = 1655, - [7593] = 1654, - [7594] = 7550, - [7595] = 1651, - [7596] = 1649, - [7597] = 420, - [7598] = 7540, - [7599] = 7544, - [7600] = 1639, - [7601] = 1635, - [7602] = 7541, - [7603] = 1594, - [7604] = 7552, - [7605] = 294, - [7606] = 7551, - [7607] = 1626, - [7608] = 1623, - [7609] = 7550, - [7610] = 7551, - [7611] = 7540, - [7612] = 7544, - [7613] = 7541, - [7614] = 7551, - [7615] = 7541, - [7616] = 7552, - [7617] = 7552, - [7618] = 1609, - [7619] = 1639, - [7620] = 7541, - [7621] = 7544, - [7622] = 1613, - [7623] = 1620, - [7624] = 7540, - [7625] = 7544, - [7626] = 1618, - [7627] = 7550, - [7628] = 7541, - [7629] = 1617, - [7630] = 7544, - [7631] = 7551, - [7632] = 7540, - [7633] = 4874, - [7634] = 1616, - [7635] = 7550, - [7636] = 7550, - [7637] = 7540, - [7638] = 7544, - [7639] = 7541, - [7640] = 1616, - [7641] = 7552, - [7642] = 7540, - [7643] = 7550, - [7644] = 1284, - [7645] = 1613, - [7646] = 1611, - [7647] = 1609, - [7648] = 1617, - [7649] = 1714, - [7650] = 7550, - [7651] = 7540, - [7652] = 7466, - [7653] = 1587, - [7654] = 1618, - [7655] = 1586, - [7656] = 7544, - [7657] = 7467, - [7658] = 1581, - [7659] = 1620, - [7660] = 1623, - [7661] = 1578, - [7662] = 7475, - [7663] = 391, - [7664] = 7551, - [7665] = 7469, - [7666] = 1626, - [7667] = 7550, - [7668] = 1635, + [7553] = 7543, + [7554] = 7547, + [7555] = 7549, + [7556] = 7552, + [7557] = 7543, + [7558] = 7479, + [7559] = 7480, + [7560] = 7481, + [7561] = 7482, + [7562] = 1645, + [7563] = 1646, + [7564] = 7473, + [7565] = 1546, + [7566] = 7483, + [7567] = 1682, + [7568] = 1683, + [7569] = 7541, + [7570] = 7547, + [7571] = 7549, + [7572] = 7552, + [7573] = 7543, + [7574] = 1543, + [7575] = 1553, + [7576] = 7576, + [7577] = 7550, + [7578] = 1684, + [7579] = 1687, + [7580] = 7547, + [7581] = 7549, + [7582] = 7552, + [7583] = 7543, + [7584] = 7551, + [7585] = 273, + [7586] = 4822, + [7587] = 1572, + [7588] = 7550, + [7589] = 7547, + [7590] = 7454, + [7591] = 7547, + [7592] = 7549, + [7593] = 7552, + [7594] = 7543, + [7595] = 1339, + [7596] = 7549, + [7597] = 7552, + [7598] = 7543, + [7599] = 1813, + [7600] = 7551, + [7601] = 1652, + [7602] = 1814, + [7603] = 1690, + [7604] = 1653, + [7605] = 7547, + [7606] = 7549, + [7607] = 7552, + [7608] = 7543, + [7609] = 1671, + [7610] = 1672, + [7611] = 1673, + [7612] = 1677, + [7613] = 1681, + [7614] = 1686, + [7615] = 1692, + [7616] = 1693, + [7617] = 1695, + [7618] = 388, + [7619] = 1704, + [7620] = 1710, + [7621] = 7547, + [7622] = 7549, + [7623] = 7552, + [7624] = 7543, + [7625] = 1724, + [7626] = 1638, + [7627] = 271, + [7628] = 1539, + [7629] = 7471, + [7630] = 1656, + [7631] = 7472, + [7632] = 1706, + [7633] = 1712, + [7634] = 7455, + [7635] = 7547, + [7636] = 7549, + [7637] = 7552, + [7638] = 7543, + [7639] = 1565, + [7640] = 1570, + [7641] = 269, + [7642] = 7550, + [7643] = 1571, + [7644] = 1659, + [7645] = 7550, + [7646] = 7551, + [7647] = 7547, + [7648] = 7549, + [7649] = 7552, + [7650] = 7543, + [7651] = 1572, + [7652] = 7441, + [7653] = 7653, + [7654] = 7547, + [7655] = 7547, + [7656] = 7547, + [7657] = 7549, + [7658] = 7552, + [7659] = 1539, + [7660] = 7549, + [7661] = 7552, + [7662] = 1289, + [7663] = 4743, + [7664] = 7543, + [7665] = 7547, + [7666] = 7549, + [7667] = 7552, + [7668] = 7543, [7669] = 7540, - [7670] = 1661, - [7671] = 7544, - [7672] = 7541, - [7673] = 1684, - [7674] = 7551, - [7675] = 1572, - [7676] = 7552, - [7677] = 7552, - [7678] = 1685, - [7679] = 1577, - [7680] = 1571, - [7681] = 1576, - [7682] = 7550, - [7683] = 7541, - [7684] = 7544, - [7685] = 1574, - [7686] = 7540, - [7687] = 1570, - [7688] = 7550, - [7689] = 1572, - [7690] = 1649, - [7691] = 1686, - [7692] = 1567, + [7670] = 1543, + [7671] = 1545, + [7672] = 7551, + [7673] = 7547, + [7674] = 7549, + [7675] = 7552, + [7676] = 7543, + [7677] = 1546, + [7678] = 7438, + [7679] = 290, + [7680] = 1289, + [7681] = 7549, + [7682] = 1657, + [7683] = 7547, + [7684] = 7549, + [7685] = 7552, + [7686] = 7543, + [7687] = 7488, + [7688] = 7552, + [7689] = 7550, + [7690] = 7489, + [7691] = 7490, + [7692] = 7551, [7693] = 7550, - [7694] = 7540, - [7695] = 285, - [7696] = 1571, - [7697] = 7552, - [7698] = 1570, - [7699] = 7544, - [7700] = 1559, - [7701] = 7551, - [7702] = 1651, - [7703] = 1567, - [7704] = 1559, - [7705] = 7541, - [7706] = 1688, - [7707] = 7540, - [7708] = 7470, - [7709] = 1654, - [7710] = 7504, - [7711] = 1655, - [7712] = 7522, - [7713] = 273, - [7714] = 7541, - [7715] = 1594, - [7716] = 268, - [7717] = 7544, - [7718] = 7540, - [7719] = 7477, - [7720] = 1657, - [7721] = 7550, - [7722] = 7514, - [7723] = 7515, - [7724] = 7516, - [7725] = 328, - [7726] = 325, - [7727] = 7518, - [7728] = 7544, - [7729] = 269, - [7730] = 7520, - [7731] = 7521, - [7732] = 7495, - [7733] = 7550, - [7734] = 7540, - [7735] = 7544, - [7736] = 7541, - [7737] = 7737, - [7738] = 7541, - [7739] = 7539, - [7740] = 7740, - [7741] = 7537, - [7742] = 7742, - [7743] = 7743, - [7744] = 7541, - [7745] = 7550, - [7746] = 7536, - [7747] = 7540, - [7748] = 267, - [7749] = 7544, - [7750] = 7453, - [7751] = 7544, - [7752] = 7541, - [7753] = 7533, - [7754] = 7550, - [7755] = 7540, - [7756] = 7486, - [7757] = 271, - [7758] = 7532, - [7759] = 7544, - [7760] = 267, - [7761] = 269, - [7762] = 7531, - [7763] = 7552, - [7764] = 268, - [7765] = 7530, - [7766] = 7551, - [7767] = 273, - [7768] = 7541, - [7769] = 1695, - [7770] = 1611, - [7771] = 7540, - [7772] = 7550, - [7773] = 7528, - [7774] = 7550, - [7775] = 7540, - [7776] = 7544, - [7777] = 7541, - [7778] = 7442, - [7779] = 7441, - [7780] = 7440, - [7781] = 1696, - [7782] = 265, - [7783] = 1284, - [7784] = 1698, - [7785] = 264, - [7786] = 1700, - [7787] = 1701, - [7788] = 7541, - [7789] = 1702, - [7790] = 7544, - [7791] = 7540, - [7792] = 7550, - [7793] = 1703, - [7794] = 1707, - [7795] = 7526, - [7796] = 271, - [7797] = 7551, - [7798] = 7525, - [7799] = 7552, - [7800] = 7524, - [7801] = 1574, - [7802] = 4915, - [7803] = 7523, - [7804] = 1716, - [7805] = 7552, - [7806] = 7550, - [7807] = 7540, - [7808] = 7541, - [7809] = 7544, - [7810] = 7540, - [7811] = 7550, - [7812] = 7544, - [7813] = 4914, - [7814] = 7541, - [7815] = 7815, - [7816] = 280, - [7817] = 264, - [7818] = 1714, - [7819] = 265, - [7820] = 1717, - [7821] = 7551, - [7822] = 7552, - [7823] = 7551, - [7824] = 7552, - [7825] = 1539, - [7826] = 1722, - [7827] = 7527, - [7828] = 7512, - [7829] = 7510, - [7830] = 7551, - [7831] = 1332, - [7832] = 7550, - [7833] = 7507, - [7834] = 7550, - [7835] = 7540, - [7836] = 7544, - [7837] = 7541, - [7838] = 7550, - [7839] = 1330, - [7840] = 7540, - [7841] = 1718, - [7842] = 7544, - [7843] = 7544, - [7844] = 7541, - [7845] = 7541, - [7846] = 7846, - [7847] = 1382, - [7848] = 286, - [7849] = 1399, - [7850] = 265, - [7851] = 7851, - [7852] = 285, - [7853] = 1284, - [7854] = 7854, - [7855] = 271, - [7856] = 283, - [7857] = 1384, - [7858] = 1382, - [7859] = 7737, - [7860] = 7860, - [7861] = 7861, - [7862] = 280, - [7863] = 264, - [7864] = 7864, - [7865] = 267, - [7866] = 342, - [7867] = 7742, - [7868] = 7740, - [7869] = 283, - [7870] = 285, - [7871] = 294, - [7872] = 286, - [7873] = 328, - [7874] = 1459, - [7875] = 325, - [7876] = 269, - [7877] = 1284, - [7878] = 276, - [7879] = 1463, - [7880] = 1464, - [7881] = 7851, - [7882] = 271, - [7883] = 267, - [7884] = 265, - [7885] = 269, - [7886] = 268, - [7887] = 1734, - [7888] = 1731, - [7889] = 264, - [7890] = 1332, - [7891] = 273, - [7892] = 268, - [7893] = 1330, - [7894] = 7854, - [7895] = 1527, - [7896] = 273, - [7897] = 1384, - [7898] = 280, - [7899] = 7899, - [7900] = 276, - [7901] = 7901, - [7902] = 1513, - [7903] = 276, - [7904] = 280, - [7905] = 526, - [7906] = 7906, - [7907] = 7907, + [7694] = 7551, + [7695] = 7550, + [7696] = 4815, + [7697] = 4816, + [7698] = 7698, + [7699] = 7551, + [7700] = 7439, + [7701] = 7447, + [7702] = 7547, + [7703] = 7549, + [7704] = 7552, + [7705] = 7543, + [7706] = 7547, + [7707] = 356, + [7708] = 1656, + [7709] = 1657, + [7710] = 7549, + [7711] = 1570, + [7712] = 7543, + [7713] = 7543, + [7714] = 265, + [7715] = 1658, + [7716] = 1580, + [7717] = 1659, + [7718] = 7452, + [7719] = 1585, + [7720] = 1638, + [7721] = 1587, + [7722] = 270, + [7723] = 1573, + [7724] = 1595, + [7725] = 7453, + [7726] = 1573, + [7727] = 366, + [7728] = 279, + [7729] = 265, + [7730] = 7550, + [7731] = 1580, + [7732] = 7551, + [7733] = 1585, + [7734] = 264, + [7735] = 1600, + [7736] = 7547, + [7737] = 264, + [7738] = 7549, + [7739] = 7550, + [7740] = 7552, + [7741] = 7543, + [7742] = 7547, + [7743] = 7549, + [7744] = 7552, + [7745] = 7543, + [7746] = 7462, + [7747] = 7551, + [7748] = 270, + [7749] = 7474, + [7750] = 286, + [7751] = 1587, + [7752] = 7475, + [7753] = 7463, + [7754] = 284, + [7755] = 7547, + [7756] = 7550, + [7757] = 283, + [7758] = 7549, + [7759] = 7551, + [7760] = 272, + [7761] = 7552, + [7762] = 285, + [7763] = 7543, + [7764] = 7547, + [7765] = 7476, + [7766] = 1721, + [7767] = 1571, + [7768] = 7549, + [7769] = 7552, + [7770] = 4817, + [7771] = 1595, + [7772] = 7458, + [7773] = 7459, + [7774] = 7543, + [7775] = 273, + [7776] = 7460, + [7777] = 1358, + [7778] = 7461, + [7779] = 1294, + [7780] = 1682, + [7781] = 1600, + [7782] = 272, + [7783] = 1622, + [7784] = 1635, + [7785] = 1683, + [7786] = 371, + [7787] = 1645, + [7788] = 1646, + [7789] = 1684, + [7790] = 1687, + [7791] = 1690, + [7792] = 1704, + [7793] = 1622, + [7794] = 1706, + [7795] = 1712, + [7796] = 1652, + [7797] = 271, + [7798] = 269, + [7799] = 1653, + [7800] = 1671, + [7801] = 7464, + [7802] = 1672, + [7803] = 1673, + [7804] = 7550, + [7805] = 1677, + [7806] = 7547, + [7807] = 7549, + [7808] = 7552, + [7809] = 7543, + [7810] = 1681, + [7811] = 1686, + [7812] = 1635, + [7813] = 7440, + [7814] = 7550, + [7815] = 7551, + [7816] = 7551, + [7817] = 7478, + [7818] = 1717, + [7819] = 7819, + [7820] = 7820, + [7821] = 7821, + [7822] = 1692, + [7823] = 1693, + [7824] = 7465, + [7825] = 7547, + [7826] = 7547, + [7827] = 7549, + [7828] = 1695, + [7829] = 1710, + [7830] = 1724, + [7831] = 7549, + [7832] = 7552, + [7833] = 7543, + [7834] = 7469, + [7835] = 1717, + [7836] = 1721, + [7837] = 1551, + [7838] = 1553, + [7839] = 7470, + [7840] = 7550, + [7841] = 7551, + [7842] = 7552, + [7843] = 1565, + [7844] = 7547, + [7845] = 7549, + [7846] = 7552, + [7847] = 7543, + [7848] = 7552, + [7849] = 1499, + [7850] = 7850, + [7851] = 7821, + [7852] = 284, + [7853] = 1466, + [7854] = 7819, + [7855] = 1404, + [7856] = 1465, + [7857] = 325, + [7858] = 265, + [7859] = 283, + [7860] = 1358, + [7861] = 264, + [7862] = 285, + [7863] = 1374, + [7864] = 1289, + [7865] = 7820, + [7866] = 270, + [7867] = 7867, + [7868] = 272, + [7869] = 273, + [7870] = 271, + [7871] = 269, + [7872] = 1377, + [7873] = 286, + [7874] = 1813, + [7875] = 284, + [7876] = 283, + [7877] = 1814, + [7878] = 285, + [7879] = 279, + [7880] = 265, + [7881] = 264, + [7882] = 1289, + [7883] = 7883, + [7884] = 270, + [7885] = 1374, + [7886] = 1377, + [7887] = 279, + [7888] = 272, + [7889] = 273, + [7890] = 7867, + [7891] = 271, + [7892] = 7883, + [7893] = 269, + [7894] = 7894, + [7895] = 1339, + [7896] = 7896, + [7897] = 7897, + [7898] = 1294, + [7899] = 356, + [7900] = 366, + [7901] = 290, + [7902] = 7902, + [7903] = 286, + [7904] = 7904, + [7905] = 7905, + [7906] = 288, + [7907] = 1485, [7908] = 7908, - [7909] = 7907, + [7909] = 290, [7910] = 7910, - [7911] = 315, - [7912] = 312, - [7913] = 1399, - [7914] = 1507, - [7915] = 7915, + [7911] = 279, + [7912] = 7912, + [7913] = 7913, + [7914] = 7914, + [7915] = 265, [7916] = 7916, - [7917] = 7917, - [7918] = 7918, - [7919] = 1384, - [7920] = 7920, - [7921] = 7921, - [7922] = 288, + [7917] = 1477, + [7918] = 290, + [7919] = 269, + [7920] = 264, + [7921] = 286, + [7922] = 273, [7923] = 7923, - [7924] = 312, - [7925] = 7925, - [7926] = 7926, - [7927] = 7927, - [7928] = 1330, - [7929] = 7929, - [7930] = 7918, - [7931] = 305, - [7932] = 7932, - [7933] = 1330, - [7934] = 342, - [7935] = 7935, - [7936] = 1527, - [7937] = 7937, - [7938] = 7938, - [7939] = 7901, - [7940] = 1678, - [7941] = 7941, - [7942] = 265, - [7943] = 1677, - [7944] = 1332, - [7945] = 7925, - [7946] = 264, - [7947] = 1669, - [7948] = 1665, - [7949] = 1508, - [7950] = 1664, - [7951] = 265, - [7952] = 1332, - [7953] = 7953, - [7954] = 7954, - [7955] = 7955, - [7956] = 7956, - [7957] = 1662, - [7958] = 309, - [7959] = 7918, - [7960] = 288, - [7961] = 264, - [7962] = 1384, - [7963] = 309, - [7964] = 315, - [7965] = 1382, - [7966] = 276, - [7967] = 273, - [7968] = 1509, - [7969] = 294, - [7970] = 286, - [7971] = 280, - [7972] = 286, - [7973] = 269, - [7974] = 7956, - [7975] = 1510, - [7976] = 285, - [7977] = 268, - [7978] = 283, - [7979] = 288, - [7980] = 7955, - [7981] = 7941, - [7982] = 1515, - [7983] = 7983, - [7984] = 305, - [7985] = 305, - [7986] = 7986, - [7987] = 1198, - [7988] = 7925, - [7989] = 7954, - [7990] = 269, - [7991] = 7915, - [7992] = 7908, - [7993] = 307, - [7994] = 1514, - [7995] = 7910, - [7996] = 265, - [7997] = 305, - [7998] = 7906, - [7999] = 264, - [8000] = 307, - [8001] = 304, - [8002] = 493, - [8003] = 1284, - [8004] = 285, - [8005] = 1284, - [8006] = 489, - [8007] = 309, - [8008] = 283, - [8009] = 328, - [8010] = 411, - [8011] = 271, - [8012] = 264, - [8013] = 304, - [8014] = 8014, - [8015] = 265, - [8016] = 8016, - [8017] = 1463, - [8018] = 1464, - [8019] = 487, - [8020] = 8020, - [8021] = 1284, - [8022] = 1522, - [8023] = 486, - [8024] = 8024, - [8025] = 273, - [8026] = 325, - [8027] = 267, - [8028] = 300, - [8029] = 1382, + [7924] = 1374, + [7925] = 1614, + [7926] = 1615, + [7927] = 265, + [7928] = 294, + [7929] = 284, + [7930] = 283, + [7931] = 1294, + [7932] = 285, + [7933] = 1617, + [7934] = 307, + [7935] = 1630, + [7936] = 296, + [7937] = 325, + [7938] = 1374, + [7939] = 1339, + [7940] = 1377, + [7941] = 279, + [7942] = 264, + [7943] = 7943, + [7944] = 7904, + [7945] = 7945, + [7946] = 7946, + [7947] = 1289, + [7948] = 7948, + [7949] = 1725, + [7950] = 1640, + [7951] = 1532, + [7952] = 265, + [7953] = 288, + [7954] = 264, + [7955] = 265, + [7956] = 302, + [7957] = 264, + [7958] = 289, + [7959] = 299, + [7960] = 270, + [7961] = 7916, + [7962] = 1339, + [7963] = 272, + [7964] = 289, + [7965] = 1478, + [7966] = 273, + [7967] = 271, + [7968] = 7912, + [7969] = 7969, + [7970] = 7970, + [7971] = 7971, + [7972] = 7969, + [7973] = 7973, + [7974] = 7908, + [7975] = 1377, + [7976] = 269, + [7977] = 7948, + [7978] = 270, + [7979] = 7970, + [7980] = 296, + [7981] = 7971, + [7982] = 309, + [7983] = 309, + [7984] = 310, + [7985] = 1358, + [7986] = 366, + [7987] = 288, + [7988] = 302, + [7989] = 505, + [7990] = 297, + [7991] = 7991, + [7992] = 286, + [7993] = 297, + [7994] = 7994, + [7995] = 7914, + [7996] = 1499, + [7997] = 1294, + [7998] = 284, + [7999] = 7999, + [8000] = 8000, + [8001] = 520, + [8002] = 8002, + [8003] = 8002, + [8004] = 310, + [8005] = 7999, + [8006] = 283, + [8007] = 8007, + [8008] = 8008, + [8009] = 8009, + [8010] = 522, + [8011] = 1511, + [8012] = 294, + [8013] = 285, + [8014] = 272, + [8015] = 523, + [8016] = 307, + [8017] = 1628, + [8018] = 309, + [8019] = 1289, + [8020] = 389, + [8021] = 271, + [8022] = 524, + [8023] = 1289, + [8024] = 7910, + [8025] = 299, + [8026] = 1465, + [8027] = 1289, + [8028] = 288, + [8029] = 8029, [8030] = 8030, - [8031] = 8031, - [8032] = 1284, - [8033] = 8033, - [8034] = 267, - [8035] = 271, - [8036] = 300, - [8037] = 1667, - [8038] = 7917, - [8039] = 297, - [8040] = 310, - [8041] = 1521, - [8042] = 7916, - [8043] = 8043, - [8044] = 8043, - [8045] = 288, - [8046] = 309, - [8047] = 1495, - [8048] = 304, - [8049] = 1494, - [8050] = 289, - [8051] = 1493, - [8052] = 1492, - [8053] = 305, - [8054] = 7923, - [8055] = 8055, - [8056] = 7921, - [8057] = 289, - [8058] = 304, - [8059] = 1459, - [8060] = 294, - [8061] = 297, - [8062] = 310, - [8063] = 7983, - [8064] = 1689, - [8065] = 7986, - [8066] = 7929, - [8067] = 264, - [8068] = 268, - [8069] = 1691, - [8070] = 7920, - [8071] = 265, - [8072] = 307, - [8073] = 1617, - [8074] = 285, - [8075] = 315, - [8076] = 269, - [8077] = 1620, - [8078] = 1618, - [8079] = 268, - [8080] = 8080, - [8081] = 8081, + [8031] = 265, + [8032] = 299, + [8033] = 289, + [8034] = 1535, + [8035] = 299, + [8036] = 1536, + [8037] = 1505, + [8038] = 8029, + [8039] = 1533, + [8040] = 1470, + [8041] = 8041, + [8042] = 1497, + [8043] = 264, + [8044] = 8044, + [8045] = 7914, + [8046] = 8046, + [8047] = 8047, + [8048] = 8048, + [8049] = 7905, + [8050] = 1166, + [8051] = 7994, + [8052] = 292, + [8053] = 1474, + [8054] = 309, + [8055] = 7916, + [8056] = 8000, + [8057] = 8008, + [8058] = 8009, + [8059] = 1466, + [8060] = 1664, + [8061] = 1666, + [8062] = 299, + [8063] = 7943, + [8064] = 310, + [8065] = 1404, + [8066] = 1517, + [8067] = 310, + [8068] = 8068, + [8069] = 7973, + [8070] = 8070, + [8071] = 292, + [8072] = 356, + [8073] = 8073, + [8074] = 299, + [8075] = 294, + [8076] = 286, + [8077] = 272, + [8078] = 289, + [8079] = 299, + [8080] = 1485, + [8081] = 1289, [8082] = 8082, - [8083] = 1382, - [8084] = 8084, - [8085] = 1616, - [8086] = 273, - [8087] = 286, - [8088] = 1613, - [8089] = 305, - [8090] = 1611, - [8091] = 289, - [8092] = 288, + [8083] = 273, + [8084] = 272, + [8085] = 8085, + [8086] = 1617, + [8087] = 8087, + [8088] = 8088, + [8089] = 273, + [8090] = 1497, + [8091] = 270, + [8092] = 271, [8093] = 8093, - [8094] = 8094, - [8095] = 1609, - [8096] = 1594, - [8097] = 1587, - [8098] = 1586, - [8099] = 264, - [8100] = 1581, - [8101] = 1578, - [8102] = 265, - [8103] = 8103, - [8104] = 8104, - [8105] = 305, - [8106] = 1284, - [8107] = 1577, - [8108] = 304, - [8109] = 1576, - [8110] = 267, - [8111] = 271, - [8112] = 310, - [8113] = 1623, - [8114] = 305, - [8115] = 1527, + [8094] = 272, + [8095] = 269, + [8096] = 270, + [8097] = 330, + [8098] = 331, + [8099] = 356, + [8100] = 273, + [8101] = 271, + [8102] = 272, + [8103] = 309, + [8104] = 325, + [8105] = 1374, + [8106] = 8106, + [8107] = 271, + [8108] = 269, + [8109] = 8109, + [8110] = 1358, + [8111] = 299, + [8112] = 286, + [8113] = 285, + [8114] = 288, + [8115] = 8115, [8116] = 309, - [8117] = 1626, - [8118] = 269, - [8119] = 309, - [8120] = 1574, - [8121] = 8121, - [8122] = 8122, - [8123] = 268, - [8124] = 289, - [8125] = 1635, - [8126] = 305, - [8127] = 304, - [8128] = 309, - [8129] = 1639, - [8130] = 8130, - [8131] = 8131, - [8132] = 1572, - [8133] = 1698, - [8134] = 1570, - [8135] = 1567, - [8136] = 267, - [8137] = 1382, - [8138] = 1559, - [8139] = 8139, - [8140] = 288, - [8141] = 1649, - [8142] = 8142, - [8143] = 8143, - [8144] = 264, - [8145] = 8145, - [8146] = 288, - [8147] = 8147, - [8148] = 1675, - [8149] = 1515, - [8150] = 294, - [8151] = 8151, - [8152] = 1330, - [8153] = 1571, - [8154] = 1677, - [8155] = 1678, - [8156] = 1384, - [8157] = 328, - [8158] = 307, - [8159] = 305, - [8160] = 265, - [8161] = 1651, - [8162] = 1382, - [8163] = 304, - [8164] = 1669, - [8165] = 1667, - [8166] = 1666, - [8167] = 1665, - [8168] = 8168, - [8169] = 1664, - [8170] = 1662, - [8171] = 276, - [8172] = 315, - [8173] = 1654, - [8174] = 8174, - [8175] = 411, - [8176] = 8176, + [8117] = 310, + [8118] = 1656, + [8119] = 1657, + [8120] = 284, + [8121] = 1658, + [8122] = 1659, + [8123] = 1377, + [8124] = 269, + [8125] = 1289, + [8126] = 366, + [8127] = 283, + [8128] = 8085, + [8129] = 8129, + [8130] = 273, + [8131] = 302, + [8132] = 285, + [8133] = 309, + [8134] = 8134, + [8135] = 8087, + [8136] = 307, + [8137] = 1511, + [8138] = 8138, + [8139] = 1466, + [8140] = 290, + [8141] = 284, + [8142] = 1377, + [8143] = 307, + [8144] = 325, + [8145] = 1682, + [8146] = 1517, + [8147] = 1683, + [8148] = 310, + [8149] = 1684, + [8150] = 1687, + [8151] = 1532, + [8152] = 1690, + [8153] = 1704, + [8154] = 1706, + [8155] = 1712, + [8156] = 289, + [8157] = 1535, + [8158] = 292, + [8159] = 8159, + [8160] = 271, + [8161] = 1717, + [8162] = 265, + [8163] = 294, + [8164] = 1536, + [8165] = 8165, + [8166] = 1374, + [8167] = 309, + [8168] = 310, + [8169] = 1374, + [8170] = 1533, + [8171] = 265, + [8172] = 1721, + [8173] = 296, + [8174] = 1551, + [8175] = 1553, + [8176] = 1625, [8177] = 8177, - [8178] = 273, - [8179] = 1332, - [8180] = 8177, - [8181] = 315, - [8182] = 289, - [8183] = 304, - [8184] = 294, - [8185] = 268, - [8186] = 8142, - [8187] = 1507, - [8188] = 1655, - [8189] = 1595, - [8190] = 8082, - [8191] = 1508, - [8192] = 1657, - [8193] = 1509, - [8194] = 8194, - [8195] = 1510, - [8196] = 1384, - [8197] = 297, - [8198] = 8198, - [8199] = 8080, - [8200] = 1513, - [8201] = 1514, - [8202] = 8081, - [8203] = 309, - [8204] = 269, - [8205] = 300, - [8206] = 1661, - [8207] = 8207, - [8208] = 297, - [8209] = 8084, - [8210] = 8210, - [8211] = 1539, - [8212] = 273, - [8213] = 312, - [8214] = 1722, - [8215] = 1718, - [8216] = 307, - [8217] = 325, - [8218] = 280, - [8219] = 8130, - [8220] = 1717, - [8221] = 268, - [8222] = 1716, - [8223] = 8131, - [8224] = 310, - [8225] = 342, - [8226] = 8226, - [8227] = 300, - [8228] = 8210, - [8229] = 267, - [8230] = 1714, - [8231] = 1707, - [8232] = 8194, - [8233] = 1703, - [8234] = 1702, - [8235] = 8093, - [8236] = 353, - [8237] = 1701, - [8238] = 271, - [8239] = 273, - [8240] = 310, - [8241] = 323, - [8242] = 2129, - [8243] = 8122, - [8244] = 8121, - [8245] = 1700, - [8246] = 268, - [8247] = 1382, - [8248] = 1696, - [8249] = 300, - [8250] = 1695, - [8251] = 1464, - [8252] = 8252, - [8253] = 288, - [8254] = 283, - [8255] = 1284, - [8256] = 304, - [8257] = 269, - [8258] = 1492, - [8259] = 1384, - [8260] = 1522, - [8261] = 309, - [8262] = 305, - [8263] = 1399, - [8264] = 1493, - [8265] = 269, - [8266] = 1494, - [8267] = 8267, - [8268] = 1495, - [8269] = 267, - [8270] = 267, - [8271] = 342, - [8272] = 1284, - [8273] = 8198, - [8274] = 271, - [8275] = 8207, - [8276] = 8168, - [8277] = 1688, - [8278] = 276, - [8279] = 288, - [8280] = 1686, - [8281] = 1685, - [8282] = 309, - [8283] = 1684, - [8284] = 297, - [8285] = 271, - [8286] = 273, - [8287] = 8104, - [8288] = 1330, - [8289] = 286, - [8290] = 285, - [8291] = 271, + [8178] = 8178, + [8179] = 1289, + [8180] = 297, + [8181] = 8181, + [8182] = 1565, + [8183] = 1570, + [8184] = 1571, + [8185] = 269, + [8186] = 1572, + [8187] = 8187, + [8188] = 1573, + [8189] = 1580, + [8190] = 1585, + [8191] = 1587, + [8192] = 8192, + [8193] = 8193, + [8194] = 264, + [8195] = 8073, + [8196] = 1664, + [8197] = 1666, + [8198] = 1628, + [8199] = 8093, + [8200] = 1499, + [8201] = 1339, + [8202] = 1595, + [8203] = 1600, + [8204] = 1470, + [8205] = 309, + [8206] = 1622, + [8207] = 1635, + [8208] = 1377, + [8209] = 8209, + [8210] = 288, + [8211] = 264, + [8212] = 8165, + [8213] = 8088, + [8214] = 1645, + [8215] = 1646, + [8216] = 1725, + [8217] = 307, + [8218] = 1652, + [8219] = 1653, + [8220] = 1671, + [8221] = 1672, + [8222] = 1673, + [8223] = 1677, + [8224] = 1681, + [8225] = 1686, + [8226] = 1692, + [8227] = 1693, + [8228] = 1695, + [8229] = 1710, + [8230] = 1724, + [8231] = 1638, + [8232] = 1539, + [8233] = 1543, + [8234] = 1545, + [8235] = 1546, + [8236] = 297, + [8237] = 8209, + [8238] = 296, + [8239] = 8239, + [8240] = 1294, + [8241] = 1294, + [8242] = 299, + [8243] = 309, + [8244] = 8239, + [8245] = 8245, + [8246] = 310, + [8247] = 1374, + [8248] = 1474, + [8249] = 299, + [8250] = 288, + [8251] = 8245, + [8252] = 288, + [8253] = 8253, + [8254] = 289, + [8255] = 1630, + [8256] = 299, + [8257] = 8257, + [8258] = 279, + [8259] = 296, + [8260] = 8260, + [8261] = 269, + [8262] = 8262, + [8263] = 297, + [8264] = 8129, + [8265] = 270, + [8266] = 1404, + [8267] = 310, + [8268] = 1358, + [8269] = 8134, + [8270] = 8270, + [8271] = 288, + [8272] = 292, + [8273] = 1505, + [8274] = 8274, + [8275] = 1614, + [8276] = 8187, + [8277] = 8260, + [8278] = 270, + [8279] = 8192, + [8280] = 307, + [8281] = 302, + [8282] = 1642, + [8283] = 1637, + [8284] = 1465, + [8285] = 273, + [8286] = 8286, + [8287] = 1339, + [8288] = 294, + [8289] = 290, + [8290] = 283, + [8291] = 8274, [8292] = 8292, - [8293] = 310, - [8294] = 1332, - [8295] = 1384, - [8296] = 8292, - [8297] = 280, + [8293] = 1640, + [8294] = 8178, + [8295] = 8181, + [8296] = 1615, + [8297] = 1377, [8298] = 8298, - [8299] = 288, - [8300] = 307, - [8301] = 8301, - [8302] = 8267, - [8303] = 312, - [8304] = 8103, - [8305] = 283, + [8299] = 272, + [8300] = 1477, + [8301] = 8082, + [8302] = 8257, + [8303] = 8115, + [8304] = 292, + [8305] = 2004, [8306] = 8306, - [8307] = 1521, - [8308] = 305, - [8309] = 8306, - [8310] = 1459, - [8311] = 1689, - [8312] = 1399, - [8313] = 1691, - [8314] = 8314, - [8315] = 1463, - [8316] = 8252, - [8317] = 1284, - [8318] = 304, + [8307] = 8298, + [8308] = 8138, + [8309] = 271, + [8310] = 1289, + [8311] = 1478, + [8312] = 288, + [8313] = 8313, + [8314] = 270, + [8315] = 299, + [8316] = 310, + [8317] = 279, + [8318] = 389, [8319] = 8319, - [8320] = 1576, - [8321] = 1571, - [8322] = 1577, - [8323] = 1578, - [8324] = 1581, - [8325] = 1586, - [8326] = 1587, - [8327] = 1574, - [8328] = 1572, - [8329] = 1594, - [8330] = 1609, - [8331] = 1611, - [8332] = 8319, - [8333] = 1613, - [8334] = 8334, - [8335] = 8335, - [8336] = 8335, - [8337] = 1570, - [8338] = 1616, - [8339] = 1617, - [8340] = 1618, - [8341] = 276, - [8342] = 1620, - [8343] = 1514, - [8344] = 1623, - [8345] = 1626, - [8346] = 1521, - [8347] = 1513, - [8348] = 1567, - [8349] = 8335, - [8350] = 1635, - [8351] = 1639, - [8352] = 1649, - [8353] = 1651, - [8354] = 1654, - [8355] = 1655, - [8356] = 1657, - [8357] = 1661, - [8358] = 1539, - [8359] = 1510, - [8360] = 1509, - [8361] = 8319, - [8362] = 8319, - [8363] = 1722, - [8364] = 8335, - [8365] = 1284, - [8366] = 1702, - [8367] = 1508, - [8368] = 1507, - [8369] = 1507, - [8370] = 1508, - [8371] = 1717, - [8372] = 1509, - [8373] = 1510, - [8374] = 1399, - [8375] = 1559, - [8376] = 395, - [8377] = 1716, - [8378] = 8335, - [8379] = 1513, - [8380] = 1284, - [8381] = 1514, - [8382] = 1521, - [8383] = 1714, - [8384] = 1522, - [8385] = 8319, - [8386] = 1718, - [8387] = 8387, - [8388] = 8319, - [8389] = 8335, - [8390] = 8319, - [8391] = 8335, - [8392] = 395, - [8393] = 286, - [8394] = 1399, - [8395] = 8335, - [8396] = 8319, - [8397] = 8397, - [8398] = 342, - [8399] = 1464, - [8400] = 1463, - [8401] = 1459, - [8402] = 312, - [8403] = 8403, - [8404] = 8404, - [8405] = 1515, - [8406] = 304, - [8407] = 288, - [8408] = 8335, - [8409] = 1522, - [8410] = 309, - [8411] = 285, + [8320] = 284, + [8321] = 8321, + [8322] = 8322, + [8323] = 285, + [8324] = 269, + [8325] = 8319, + [8326] = 8319, + [8327] = 270, + [8328] = 1677, + [8329] = 1497, + [8330] = 8330, + [8331] = 8331, + [8332] = 375, + [8333] = 285, + [8334] = 1657, + [8335] = 8319, + [8336] = 1289, + [8337] = 286, + [8338] = 1374, + [8339] = 8331, + [8340] = 325, + [8341] = 383, + [8342] = 8331, + [8343] = 283, + [8344] = 286, + [8345] = 384, + [8346] = 8346, + [8347] = 8319, + [8348] = 1551, + [8349] = 1682, + [8350] = 8350, + [8351] = 8331, + [8352] = 285, + [8353] = 1517, + [8354] = 1614, + [8355] = 8331, + [8356] = 1553, + [8357] = 284, + [8358] = 1536, + [8359] = 1681, + [8360] = 272, + [8361] = 1622, + [8362] = 8362, + [8363] = 8363, + [8364] = 8319, + [8365] = 8365, + [8366] = 1635, + [8367] = 8367, + [8368] = 1505, + [8369] = 375, + [8370] = 8319, + [8371] = 1358, + [8372] = 1615, + [8373] = 1617, + [8374] = 1628, + [8375] = 8331, + [8376] = 8319, + [8377] = 1533, + [8378] = 8319, + [8379] = 388, + [8380] = 283, + [8381] = 8331, + [8382] = 1470, + [8383] = 8319, + [8384] = 1686, + [8385] = 1374, + [8386] = 8331, + [8387] = 1692, + [8388] = 272, + [8389] = 8389, + [8390] = 279, + [8391] = 8391, + [8392] = 8331, + [8393] = 1693, + [8394] = 1477, + [8395] = 1478, + [8396] = 1377, + [8397] = 284, + [8398] = 8319, + [8399] = 8319, + [8400] = 8331, + [8401] = 5663, + [8402] = 1630, + [8403] = 8319, + [8404] = 1695, + [8405] = 8331, + [8406] = 325, + [8407] = 330, + [8408] = 8319, + [8409] = 8331, + [8410] = 1690, + [8411] = 1535, [8412] = 8319, - [8413] = 8335, + [8413] = 8331, [8414] = 8319, - [8415] = 8335, - [8416] = 8416, - [8417] = 8417, - [8418] = 8418, - [8419] = 8419, - [8420] = 8319, - [8421] = 294, - [8422] = 280, - [8423] = 8335, - [8424] = 1666, + [8415] = 8331, + [8416] = 8319, + [8417] = 1565, + [8418] = 8331, + [8419] = 8391, + [8420] = 8331, + [8421] = 8421, + [8422] = 8422, + [8423] = 1466, + [8424] = 1637, [8425] = 8319, - [8426] = 5584, - [8427] = 1332, - [8428] = 1382, - [8429] = 1675, - [8430] = 408, - [8431] = 1384, - [8432] = 8319, - [8433] = 1707, - [8434] = 1703, - [8435] = 8335, - [8436] = 8416, - [8437] = 8319, - [8438] = 8335, - [8439] = 283, - [8440] = 1330, - [8441] = 276, - [8442] = 1701, - [8443] = 1700, - [8444] = 280, - [8445] = 8445, - [8446] = 1698, + [8426] = 8331, + [8427] = 331, + [8428] = 1687, + [8429] = 8319, + [8430] = 8331, + [8431] = 8319, + [8432] = 1664, + [8433] = 1656, + [8434] = 8331, + [8435] = 1666, + [8436] = 283, + [8437] = 8437, + [8438] = 1377, + [8439] = 1704, + [8440] = 1625, + [8441] = 283, + [8442] = 1570, + [8443] = 1710, + [8444] = 1571, + [8445] = 8331, + [8446] = 1572, [8447] = 8319, - [8448] = 286, - [8449] = 6134, - [8450] = 285, - [8451] = 8416, - [8452] = 283, - [8453] = 280, - [8454] = 8335, + [8448] = 1536, + [8449] = 1658, + [8450] = 1645, + [8451] = 1470, + [8452] = 387, + [8453] = 1595, + [8454] = 8319, [8455] = 8319, - [8456] = 8456, - [8457] = 6192, - [8458] = 1696, - [8459] = 8459, - [8460] = 1515, - [8461] = 411, - [8462] = 276, - [8463] = 286, - [8464] = 1695, - [8465] = 8335, - [8466] = 8335, - [8467] = 8467, - [8468] = 8319, - [8469] = 8335, - [8470] = 285, - [8471] = 420, - [8472] = 8319, - [8473] = 283, - [8474] = 8335, - [8475] = 1662, - [8476] = 8445, - [8477] = 1664, - [8478] = 8319, - [8479] = 1384, - [8480] = 1382, - [8481] = 1665, - [8482] = 8482, - [8483] = 1667, - [8484] = 1669, - [8485] = 1384, - [8486] = 1677, - [8487] = 1678, - [8488] = 344, - [8489] = 341, - [8490] = 8335, - [8491] = 8319, - [8492] = 294, - [8493] = 1689, + [8456] = 1646, + [8457] = 273, + [8458] = 8331, + [8459] = 8331, + [8460] = 8331, + [8461] = 1573, + [8462] = 1706, + [8463] = 8463, + [8464] = 285, + [8465] = 8391, + [8466] = 8319, + [8467] = 1485, + [8468] = 1474, + [8469] = 1404, + [8470] = 1580, + [8471] = 8331, + [8472] = 1477, + [8473] = 1478, + [8474] = 8474, + [8475] = 8475, + [8476] = 279, + [8477] = 1465, + [8478] = 1289, + [8479] = 1724, + [8480] = 8331, + [8481] = 6078, + [8482] = 8437, + [8483] = 8483, + [8484] = 1638, + [8485] = 8319, + [8486] = 284, + [8487] = 371, + [8488] = 2004, + [8489] = 1539, + [8490] = 1725, + [8491] = 286, + [8492] = 1374, + [8493] = 271, [8494] = 8319, - [8495] = 1691, + [8495] = 325, [8496] = 8496, - [8497] = 8335, - [8498] = 8319, - [8499] = 2129, - [8500] = 1688, - [8501] = 1686, - [8502] = 1685, - [8503] = 1684, - [8504] = 1382, - [8505] = 8335, - [8506] = 8496, - [8507] = 8335, - [8508] = 1384, - [8509] = 1492, - [8510] = 1493, - [8511] = 1494, - [8512] = 1495, - [8513] = 280, - [8514] = 8335, - [8515] = 8319, - [8516] = 283, - [8517] = 285, + [8497] = 1683, + [8498] = 1339, + [8499] = 8474, + [8500] = 8331, + [8501] = 8501, + [8502] = 1289, + [8503] = 1640, + [8504] = 285, + [8505] = 8319, + [8506] = 286, + [8507] = 269, + [8508] = 8508, + [8509] = 1652, + [8510] = 1543, + [8511] = 6168, + [8512] = 8331, + [8513] = 366, + [8514] = 1499, + [8515] = 1712, + [8516] = 389, + [8517] = 8319, [8518] = 8319, - [8519] = 286, - [8520] = 8335, + [8519] = 1294, + [8520] = 8331, [8521] = 8319, - [8522] = 325, - [8523] = 276, - [8524] = 8319, - [8525] = 8525, - [8526] = 8526, - [8527] = 1595, - [8528] = 8335, - [8529] = 8529, - [8530] = 8530, + [8522] = 1717, + [8523] = 8319, + [8524] = 8331, + [8525] = 1600, + [8526] = 1532, + [8527] = 389, + [8528] = 271, + [8529] = 1721, + [8530] = 1497, [8531] = 8319, - [8532] = 273, - [8533] = 411, - [8534] = 268, - [8535] = 8335, - [8536] = 8335, - [8537] = 8319, - [8538] = 8335, - [8539] = 269, - [8540] = 8335, - [8541] = 328, - [8542] = 8319, - [8543] = 8319, - [8544] = 342, - [8545] = 8335, - [8546] = 267, - [8547] = 8547, - [8548] = 8335, - [8549] = 8319, - [8550] = 8550, - [8551] = 8319, - [8552] = 8335, - [8553] = 8335, - [8554] = 8319, - [8555] = 8555, - [8556] = 8335, - [8557] = 273, - [8558] = 268, - [8559] = 269, - [8560] = 8319, - [8561] = 271, - [8562] = 267, - [8563] = 271, - [8564] = 8335, - [8565] = 8565, - [8566] = 8566, - [8567] = 8319, - [8568] = 8568, - [8569] = 1284, - [8570] = 8335, - [8571] = 8319, - [8572] = 342, - [8573] = 1382, - [8574] = 8574, - [8575] = 391, - [8576] = 276, - [8577] = 286, - [8578] = 8319, - [8579] = 385, - [8580] = 8580, - [8581] = 285, - [8582] = 376, - [8583] = 1527, - [8584] = 283, - [8585] = 353, - [8586] = 323, + [8532] = 356, + [8533] = 1642, + [8534] = 286, + [8535] = 1374, + [8536] = 8331, + [8537] = 273, + [8538] = 1545, + [8539] = 8331, + [8540] = 309, + [8541] = 1485, + [8542] = 1585, + [8543] = 288, + [8544] = 310, + [8545] = 1546, + [8546] = 8546, + [8547] = 302, + [8548] = 8319, + [8549] = 1474, + [8550] = 1653, + [8551] = 284, + [8552] = 8331, + [8553] = 1659, + [8554] = 1505, + [8555] = 1671, + [8556] = 270, + [8557] = 8557, + [8558] = 337, + [8559] = 8319, + [8560] = 8560, + [8561] = 8319, + [8562] = 1533, + [8563] = 1587, + [8564] = 8331, + [8565] = 290, + [8566] = 8331, + [8567] = 338, + [8568] = 1511, + [8569] = 8331, + [8570] = 1672, + [8571] = 8571, + [8572] = 290, + [8573] = 279, + [8574] = 1673, + [8575] = 283, + [8576] = 8319, + [8577] = 8331, + [8578] = 1358, + [8579] = 1377, + [8580] = 8331, + [8581] = 8319, + [8582] = 8582, + [8583] = 1377, + [8584] = 1684, + [8585] = 279, + [8586] = 8586, [8587] = 8587, [8588] = 8588, [8589] = 8589, - [8590] = 1595, - [8591] = 8589, + [8590] = 8590, + [8591] = 8591, [8592] = 8592, [8593] = 8593, - [8594] = 8589, + [8594] = 8594, [8595] = 8595, - [8596] = 8592, - [8597] = 473, - [8598] = 448, - [8599] = 8589, - [8600] = 411, - [8601] = 8593, - [8602] = 8592, - [8603] = 8589, - [8604] = 8592, - [8605] = 8593, - [8606] = 470, - [8607] = 469, - [8608] = 8593, - [8609] = 467, - [8610] = 8593, - [8611] = 8593, - [8612] = 8592, - [8613] = 8589, - [8614] = 8592, + [8596] = 8596, + [8597] = 8597, + [8598] = 8598, + [8599] = 8599, + [8600] = 8600, + [8601] = 8601, + [8602] = 8602, + [8603] = 8587, + [8604] = 8604, + [8605] = 8605, + [8606] = 8606, + [8607] = 8607, + [8608] = 8608, + [8609] = 8609, + [8610] = 8610, + [8611] = 8611, + [8612] = 8612, + [8613] = 8613, + [8614] = 1377, [8615] = 8615, - [8616] = 8589, - [8617] = 8592, - [8618] = 8593, - [8619] = 8589, - [8620] = 8592, - [8621] = 8589, - [8622] = 8593, - [8623] = 465, - [8624] = 8593, - [8625] = 1515, - [8626] = 8592, - [8627] = 1515, - [8628] = 8593, - [8629] = 8589, - [8630] = 8630, - [8631] = 466, - [8632] = 8593, - [8633] = 1522, - [8634] = 8592, - [8635] = 8593, - [8636] = 8593, - [8637] = 8593, - [8638] = 8593, - [8639] = 8593, - [8640] = 8588, - [8641] = 8593, - [8642] = 8593, - [8643] = 8593, - [8644] = 8593, - [8645] = 8595, - [8646] = 8593, - [8647] = 8593, - [8648] = 8593, - [8649] = 8593, - [8650] = 8592, - [8651] = 8595, - [8652] = 1522, - [8653] = 8589, - [8654] = 395, - [8655] = 8655, - [8656] = 8588, - [8657] = 8593, - [8658] = 8592, + [8616] = 8616, + [8617] = 8599, + [8618] = 8618, + [8619] = 8601, + [8620] = 8602, + [8621] = 8587, + [8622] = 1474, + [8623] = 8623, + [8624] = 8624, + [8625] = 8625, + [8626] = 8321, + [8627] = 8627, + [8628] = 8628, + [8629] = 8629, + [8630] = 8599, + [8631] = 8631, + [8632] = 8588, + [8633] = 8633, + [8634] = 8601, + [8635] = 1485, + [8636] = 8602, + [8637] = 8587, + [8638] = 8638, + [8639] = 8639, + [8640] = 8640, + [8641] = 8641, + [8642] = 8642, + [8643] = 8643, + [8644] = 8644, + [8645] = 8645, + [8646] = 8646, + [8647] = 8647, + [8648] = 8648, + [8649] = 8649, + [8650] = 8650, + [8651] = 8599, + [8652] = 8652, + [8653] = 8601, + [8654] = 8654, + [8655] = 8602, + [8656] = 8587, + [8657] = 8657, + [8658] = 8658, [8659] = 8659, [8660] = 8660, - [8661] = 8589, + [8661] = 8661, [8662] = 8662, - [8663] = 1510, - [8664] = 1507, - [8665] = 1508, - [8666] = 1509, - [8667] = 1577, - [8668] = 8592, + [8663] = 8663, + [8664] = 8664, + [8665] = 8665, + [8666] = 8666, + [8667] = 8667, + [8668] = 8668, [8669] = 8669, [8670] = 8670, - [8671] = 1284, - [8672] = 464, - [8673] = 463, - [8674] = 1513, - [8675] = 1514, - [8676] = 1522, - [8677] = 1684, - [8678] = 1685, - [8679] = 1686, - [8680] = 1688, - [8681] = 8397, - [8682] = 1695, - [8683] = 1696, - [8684] = 1284, - [8685] = 8593, - [8686] = 1284, - [8687] = 8592, - [8688] = 1698, - [8689] = 1700, - [8690] = 8589, - [8691] = 8589, - [8692] = 1701, - [8693] = 1702, - [8694] = 1703, - [8695] = 1707, - [8696] = 1714, - [8697] = 1716, - [8698] = 300, - [8699] = 1717, - [8700] = 1718, - [8701] = 1722, - [8702] = 1539, - [8703] = 297, - [8704] = 8592, - [8705] = 1661, - [8706] = 315, - [8707] = 8593, - [8708] = 1657, - [8709] = 289, - [8710] = 8588, - [8711] = 1655, - [8712] = 1654, - [8713] = 1651, - [8714] = 8593, - [8715] = 1649, - [8716] = 1635, - [8717] = 8592, - [8718] = 1626, - [8719] = 1623, - [8720] = 1620, - [8721] = 8589, - [8722] = 1618, - [8723] = 1617, - [8724] = 1616, - [8725] = 1613, - [8726] = 1611, - [8727] = 1609, - [8728] = 1594, - [8729] = 1587, - [8730] = 1586, - [8731] = 1581, - [8732] = 1578, - [8733] = 8733, - [8734] = 1576, - [8735] = 1574, - [8736] = 1572, - [8737] = 1571, - [8738] = 1570, - [8739] = 1567, - [8740] = 1559, - [8741] = 1521, - [8742] = 1639, - [8743] = 8593, - [8744] = 8744, - [8745] = 8592, - [8746] = 1384, - [8747] = 1382, - [8748] = 280, - [8749] = 395, - [8750] = 1675, + [8671] = 8671, + [8672] = 8672, + [8673] = 8673, + [8674] = 8599, + [8675] = 8675, + [8676] = 8676, + [8677] = 8677, + [8678] = 8601, + [8679] = 8602, + [8680] = 8680, + [8681] = 8604, + [8682] = 8682, + [8683] = 8683, + [8684] = 8684, + [8685] = 325, + [8686] = 8483, + [8687] = 8599, + [8688] = 6214, + [8689] = 8601, + [8690] = 8602, + [8691] = 8587, + [8692] = 8586, + [8693] = 1289, + [8694] = 290, + [8695] = 8695, + [8696] = 8696, + [8697] = 8599, + [8698] = 8698, + [8699] = 8601, + [8700] = 476, + [8701] = 8602, + [8702] = 8587, + [8703] = 8703, + [8704] = 8599, + [8705] = 8601, + [8706] = 8602, + [8707] = 8587, + [8708] = 8708, + [8709] = 5866, + [8710] = 8710, + [8711] = 8711, + [8712] = 1505, + [8713] = 1533, + [8714] = 286, + [8715] = 279, + [8716] = 8716, + [8717] = 480, + [8718] = 8718, + [8719] = 8599, + [8720] = 8720, + [8721] = 8721, + [8722] = 8601, + [8723] = 8602, + [8724] = 8587, + [8725] = 8725, + [8726] = 8726, + [8727] = 8727, + [8728] = 8728, + [8729] = 8729, + [8730] = 8730, + [8731] = 8731, + [8732] = 8367, + [8733] = 284, + [8734] = 8734, + [8735] = 8735, + [8736] = 8736, + [8737] = 8737, + [8738] = 8738, + [8739] = 8739, + [8740] = 8599, + [8741] = 8741, + [8742] = 8601, + [8743] = 8743, + [8744] = 8602, + [8745] = 8587, + [8746] = 8746, + [8747] = 8747, + [8748] = 8748, + [8749] = 8749, + [8750] = 8750, [8751] = 8751, - [8752] = 8752, - [8753] = 8589, + [8752] = 1505, + [8753] = 8753, [8754] = 8754, [8755] = 8755, - [8756] = 1284, + [8756] = 8756, [8757] = 8757, [8758] = 8758, [8759] = 8759, - [8760] = 8589, - [8761] = 8761, - [8762] = 8762, - [8763] = 8763, - [8764] = 8593, - [8765] = 8765, - [8766] = 8592, + [8760] = 481, + [8761] = 388, + [8762] = 8599, + [8763] = 8422, + [8764] = 8601, + [8765] = 8602, + [8766] = 8587, [8767] = 8767, - [8768] = 8589, + [8768] = 8768, [8769] = 8769, - [8770] = 8659, - [8771] = 8660, + [8770] = 8770, + [8771] = 8771, [8772] = 8772, - [8773] = 8592, + [8773] = 8773, [8774] = 8774, [8775] = 8775, - [8776] = 8593, + [8776] = 8776, [8777] = 8777, [8778] = 8778, - [8779] = 8588, - [8780] = 8780, - [8781] = 8781, - [8782] = 8782, - [8783] = 8783, - [8784] = 8784, + [8779] = 371, + [8780] = 8599, + [8781] = 8601, + [8782] = 283, + [8783] = 8602, + [8784] = 8587, [8785] = 8785, - [8786] = 8786, - [8787] = 8787, - [8788] = 8788, + [8786] = 8602, + [8787] = 1536, + [8788] = 1470, [8789] = 8789, - [8790] = 8790, - [8791] = 8791, - [8792] = 8792, - [8793] = 8593, - [8794] = 8588, - [8795] = 8795, - [8796] = 8592, - [8797] = 8797, - [8798] = 8589, - [8799] = 8799, - [8800] = 8800, - [8801] = 1284, - [8802] = 8802, + [8790] = 1533, + [8791] = 1477, + [8792] = 1478, + [8793] = 8793, + [8794] = 1656, + [8795] = 1657, + [8796] = 483, + [8797] = 8599, + [8798] = 1658, + [8799] = 8601, + [8800] = 1659, + [8801] = 8602, + [8802] = 8587, [8803] = 8803, - [8804] = 8595, - [8805] = 8805, + [8804] = 8804, + [8805] = 383, [8806] = 8806, - [8807] = 453, + [8807] = 8807, [8808] = 8808, [8809] = 8809, [8810] = 8810, - [8811] = 451, - [8812] = 1382, + [8811] = 8811, + [8812] = 8812, [8813] = 8813, - [8814] = 449, - [8815] = 8655, + [8814] = 8814, + [8815] = 8815, [8816] = 8816, [8817] = 8817, - [8818] = 447, - [8819] = 8588, - [8820] = 1521, - [8821] = 1666, - [8822] = 8822, - [8823] = 8593, - [8824] = 8824, - [8825] = 8592, - [8826] = 8669, - [8827] = 8827, - [8828] = 8589, + [8818] = 425, + [8819] = 285, + [8820] = 8820, + [8821] = 8599, + [8822] = 384, + [8823] = 8601, + [8824] = 8602, + [8825] = 8587, + [8826] = 8826, + [8827] = 6326, + [8828] = 426, [8829] = 8829, - [8830] = 8830, - [8831] = 8831, + [8830] = 1511, + [8831] = 1682, [8832] = 8832, - [8833] = 8593, + [8833] = 1683, [8834] = 8834, - [8835] = 8592, + [8835] = 1684, [8836] = 8836, - [8837] = 8589, - [8838] = 8838, - [8839] = 1384, - [8840] = 8840, - [8841] = 8592, - [8842] = 8842, - [8843] = 8843, - [8844] = 8593, - [8845] = 8845, - [8846] = 8846, - [8847] = 8588, - [8848] = 8848, - [8849] = 8849, - [8850] = 8850, - [8851] = 8589, - [8852] = 8852, - [8853] = 8853, - [8854] = 8854, - [8855] = 8855, - [8856] = 8856, - [8857] = 8857, - [8858] = 8593, - [8859] = 8859, - [8860] = 8592, + [8837] = 1687, + [8838] = 1690, + [8839] = 1704, + [8840] = 8599, + [8841] = 1706, + [8842] = 1712, + [8843] = 8601, + [8844] = 8602, + [8845] = 8587, + [8846] = 1717, + [8847] = 1721, + [8848] = 1551, + [8849] = 1553, + [8850] = 1565, + [8851] = 1570, + [8852] = 1571, + [8853] = 1572, + [8854] = 1573, + [8855] = 8599, + [8856] = 1580, + [8857] = 8601, + [8858] = 8602, + [8859] = 1585, + [8860] = 1587, [8861] = 8861, - [8862] = 8862, - [8863] = 8863, - [8864] = 444, - [8865] = 8589, - [8866] = 8866, - [8867] = 8867, - [8868] = 342, - [8869] = 1284, - [8870] = 8870, - [8871] = 8871, - [8872] = 1514, - [8873] = 1513, - [8874] = 443, - [8875] = 8669, - [8876] = 439, - [8877] = 8877, - [8878] = 438, - [8879] = 437, - [8880] = 434, - [8881] = 8881, - [8882] = 8882, - [8883] = 8883, - [8884] = 8884, - [8885] = 8885, - [8886] = 431, - [8887] = 8887, - [8888] = 8888, + [8862] = 1595, + [8863] = 1600, + [8864] = 1517, + [8865] = 1622, + [8866] = 1635, + [8867] = 8599, + [8868] = 1645, + [8869] = 1646, + [8870] = 8601, + [8871] = 8602, + [8872] = 427, + [8873] = 1652, + [8874] = 1653, + [8875] = 1671, + [8876] = 1672, + [8877] = 1673, + [8878] = 1677, + [8879] = 528, + [8880] = 8599, + [8881] = 1532, + [8882] = 1681, + [8883] = 8601, + [8884] = 1686, + [8885] = 8602, + [8886] = 1692, + [8887] = 389, + [8888] = 290, [8889] = 8889, - [8890] = 8890, - [8891] = 430, - [8892] = 8892, - [8893] = 8893, - [8894] = 429, - [8895] = 8895, - [8896] = 8589, - [8897] = 1510, - [8898] = 8593, - [8899] = 1509, - [8900] = 1508, - [8901] = 1507, - [8902] = 8902, - [8903] = 8593, - [8904] = 5978, - [8905] = 8592, - [8906] = 6180, - [8907] = 8589, - [8908] = 8592, - [8909] = 8387, - [8910] = 8669, - [8911] = 8593, - [8912] = 8912, - [8913] = 8913, - [8914] = 8588, - [8915] = 8915, - [8916] = 8916, + [8890] = 8599, + [8891] = 1693, + [8892] = 8601, + [8893] = 8602, + [8894] = 1665, + [8895] = 8599, + [8896] = 1695, + [8897] = 1710, + [8898] = 1625, + [8899] = 429, + [8900] = 8599, + [8901] = 8601, + [8902] = 8602, + [8903] = 1724, + [8904] = 8350, + [8905] = 8905, + [8906] = 8906, + [8907] = 1535, + [8908] = 1638, + [8909] = 8601, + [8910] = 8599, + [8911] = 1539, + [8912] = 8601, + [8913] = 8602, + [8914] = 8602, + [8915] = 1505, + [8916] = 1543, [8917] = 8917, - [8918] = 8918, - [8919] = 8919, - [8920] = 8920, - [8921] = 8921, - [8922] = 8922, - [8923] = 8923, - [8924] = 8924, - [8925] = 8925, - [8926] = 8926, - [8927] = 8927, - [8928] = 8928, - [8929] = 8669, - [8930] = 8930, - [8931] = 8669, - [8932] = 8932, - [8933] = 8593, - [8934] = 8669, - [8935] = 8592, - [8936] = 8936, - [8937] = 8937, - [8938] = 8669, - [8939] = 8588, - [8940] = 8940, - [8941] = 8589, - [8942] = 8942, - [8943] = 8943, - [8944] = 8669, - [8945] = 8945, - [8946] = 8593, - [8947] = 8947, - [8948] = 8669, + [8918] = 1497, + [8919] = 8587, + [8920] = 1637, + [8921] = 8599, + [8922] = 430, + [8923] = 8601, + [8924] = 8602, + [8925] = 431, + [8926] = 8680, + [8927] = 1995, + [8928] = 8599, + [8929] = 8601, + [8930] = 1545, + [8931] = 8602, + [8932] = 1374, + [8933] = 8604, + [8934] = 1546, + [8935] = 8599, + [8936] = 8601, + [8937] = 8602, + [8938] = 8599, + [8939] = 8601, + [8940] = 8602, + [8941] = 8599, + [8942] = 1289, + [8943] = 8601, + [8944] = 8602, + [8945] = 1533, + [8946] = 8946, + [8947] = 1996, + [8948] = 8508, [8949] = 8949, - [8950] = 8950, - [8951] = 280, - [8952] = 8670, - [8953] = 8953, - [8954] = 8954, - [8955] = 8334, - [8956] = 420, - [8957] = 8669, - [8958] = 8958, - [8959] = 8959, - [8960] = 8960, - [8961] = 8669, - [8962] = 8962, - [8963] = 8589, - [8964] = 8964, - [8965] = 1509, - [8966] = 8669, - [8967] = 8588, - [8968] = 8593, - [8969] = 8969, - [8970] = 8592, - [8971] = 8971, - [8972] = 1527, - [8973] = 8669, - [8974] = 8589, - [8975] = 8592, - [8976] = 8976, - [8977] = 2107, - [8978] = 8593, - [8979] = 8669, - [8980] = 8655, - [8981] = 8588, - [8982] = 8982, - [8983] = 2106, - [8984] = 8669, - [8985] = 1666, - [8986] = 8669, - [8987] = 8987, - [8988] = 1507, - [8989] = 1508, - [8990] = 408, - [8991] = 1510, - [8992] = 8669, - [8993] = 8993, - [8994] = 8669, - [8995] = 8995, + [8950] = 8599, + [8951] = 8601, + [8952] = 8602, + [8953] = 8599, + [8954] = 8601, + [8955] = 8602, + [8956] = 8599, + [8957] = 8601, + [8958] = 8602, + [8959] = 8599, + [8960] = 8601, + [8961] = 8602, + [8962] = 8599, + [8963] = 8601, + [8964] = 8602, + [8965] = 8599, + [8966] = 445, + [8967] = 8601, + [8968] = 8968, + [8969] = 8602, + [8970] = 446, + [8971] = 8599, + [8972] = 8601, + [8973] = 8602, + [8974] = 8602, + [8975] = 8602, + [8976] = 8889, + [8977] = 8602, + [8978] = 8602, + [8979] = 8602, + [8980] = 8602, + [8981] = 8602, + [8982] = 8602, + [8983] = 8602, + [8984] = 8602, + [8985] = 8602, + [8986] = 8602, + [8987] = 8602, + [8988] = 447, + [8989] = 1485, + [8990] = 375, + [8991] = 8991, + [8992] = 286, + [8993] = 1499, + [8994] = 8905, + [8995] = 8906, [8996] = 8996, - [8997] = 8669, - [8998] = 8998, - [8999] = 8999, + [8997] = 477, + [8998] = 8917, + [8999] = 432, [9000] = 9000, - [9001] = 8669, - [9002] = 9002, - [9003] = 8588, - [9004] = 294, - [9005] = 8669, - [9006] = 8669, - [9007] = 8417, - [9008] = 8669, - [9009] = 8669, - [9010] = 9010, - [9011] = 8669, - [9012] = 9012, - [9013] = 8418, - [9014] = 8593, + [9001] = 8618, + [9002] = 8684, + [9003] = 1289, + [9004] = 1497, + [9005] = 284, + [9006] = 8365, + [9007] = 9007, + [9008] = 1485, + [9009] = 1625, + [9010] = 1536, + [9011] = 1470, + [9012] = 290, + [9013] = 1536, + [9014] = 462, [9015] = 9015, - [9016] = 8669, - [9017] = 9017, - [9018] = 8669, - [9019] = 8592, - [9020] = 9020, - [9021] = 8669, - [9022] = 8589, - [9023] = 8662, - [9024] = 8419, - [9025] = 8669, - [9026] = 9026, - [9027] = 9027, - [9028] = 294, - [9029] = 9029, - [9030] = 8589, - [9031] = 8669, - [9032] = 9032, - [9033] = 9033, - [9034] = 8669, - [9035] = 8669, - [9036] = 8589, - [9037] = 8669, - [9038] = 9038, - [9039] = 8669, - [9040] = 9040, - [9041] = 8588, - [9042] = 8592, - [9043] = 8669, - [9044] = 8593, - [9045] = 8593, - [9046] = 8669, - [9047] = 8592, - [9048] = 8588, + [9016] = 375, + [9017] = 279, + [9018] = 9018, + [9019] = 283, + [9020] = 1470, + [9021] = 1374, + [9022] = 1477, + [9023] = 1478, + [9024] = 296, + [9025] = 297, + [9026] = 292, + [9027] = 465, + [9028] = 467, + [9029] = 294, + [9030] = 9030, + [9031] = 9031, + [9032] = 1289, + [9033] = 1289, + [9034] = 285, + [9035] = 9035, + [9036] = 9036, + [9037] = 9037, + [9038] = 8588, + [9039] = 8587, + [9040] = 1477, + [9041] = 1478, + [9042] = 469, + [9043] = 9043, + [9044] = 1289, + [9045] = 9045, + [9046] = 9046, + [9047] = 9047, + [9048] = 9048, [9049] = 9049, [9050] = 9050, - [9051] = 8589, - [9052] = 9052, - [9053] = 285, + [9051] = 9051, + [9052] = 1642, + [9053] = 9053, [9054] = 9054, - [9055] = 9055, - [9056] = 8855, - [9057] = 9057, + [9055] = 8618, + [9056] = 9056, + [9057] = 472, [9058] = 9058, [9059] = 9059, [9060] = 9060, @@ -13513,2436 +13513,2436 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9064] = 9064, [9065] = 9065, [9066] = 9066, - [9067] = 9067, + [9067] = 1474, [9068] = 9068, [9069] = 9069, - [9070] = 9070, + [9070] = 387, [9071] = 9071, [9072] = 9072, [9073] = 9073, [9074] = 9074, - [9075] = 9075, - [9076] = 8595, - [9077] = 9077, - [9078] = 6378, + [9075] = 1289, + [9076] = 8618, + [9077] = 290, + [9078] = 1377, [9079] = 9079, - [9080] = 9080, - [9081] = 8588, - [9082] = 9082, + [9080] = 8599, + [9081] = 9081, + [9082] = 8618, [9083] = 9083, - [9084] = 8593, + [9084] = 9084, [9085] = 9085, - [9086] = 8592, - [9087] = 9087, - [9088] = 9088, - [9089] = 8589, - [9090] = 9090, + [9086] = 8601, + [9087] = 473, + [9088] = 8602, + [9089] = 8618, + [9090] = 8587, [9091] = 9091, - [9092] = 9092, - [9093] = 9093, - [9094] = 1580, - [9095] = 9095, - [9096] = 1492, - [9097] = 8589, - [9098] = 8403, - [9099] = 1493, - [9100] = 1494, - [9101] = 1495, - [9102] = 9102, - [9103] = 9103, - [9104] = 9104, - [9105] = 9105, - [9106] = 9106, - [9107] = 276, - [9108] = 9108, - [9109] = 8592, - [9110] = 286, - [9111] = 9111, - [9112] = 8593, - [9113] = 9113, - [9114] = 9114, - [9115] = 8588, - [9116] = 9116, - [9117] = 9117, - [9118] = 8588, - [9119] = 8593, + [9092] = 8618, + [9093] = 8680, + [9094] = 8618, + [9095] = 8618, + [9096] = 8604, + [9097] = 9097, + [9098] = 8618, + [9099] = 9099, + [9100] = 8618, + [9101] = 8599, + [9102] = 8618, + [9103] = 8618, + [9104] = 8618, + [9105] = 1637, + [9106] = 8618, + [9107] = 8618, + [9108] = 8618, + [9109] = 9109, + [9110] = 8618, + [9111] = 8618, + [9112] = 8618, + [9113] = 8618, + [9114] = 8618, + [9115] = 8587, + [9116] = 8618, + [9117] = 8618, + [9118] = 8618, + [9119] = 389, [9120] = 9120, - [9121] = 8971, - [9122] = 283, - [9123] = 8592, - [9124] = 8630, - [9125] = 8971, - [9126] = 8589, - [9127] = 1514, - [9128] = 1513, - [9129] = 411, - [9130] = 1510, - [9131] = 1509, - [9132] = 1508, - [9133] = 1284, - [9134] = 294, - [9135] = 276, - [9136] = 1507, - [9137] = 8971, - [9138] = 8971, - [9139] = 286, - [9140] = 8971, - [9141] = 8971, - [9142] = 285, - [9143] = 8971, - [9144] = 8971, - [9145] = 283, - [9146] = 8971, - [9147] = 8971, - [9148] = 8971, - [9149] = 8971, - [9150] = 8971, - [9151] = 8971, - [9152] = 8547, - [9153] = 8971, - [9154] = 8588, - [9155] = 8593, - [9156] = 8971, - [9157] = 8592, - [9158] = 8971, - [9159] = 8971, - [9160] = 8589, - [9161] = 9161, - [9162] = 294, - [9163] = 8971, - [9164] = 8589, - [9165] = 8971, - [9166] = 1514, - [9167] = 1513, - [9168] = 8971, - [9169] = 8971, - [9170] = 8971, - [9171] = 391, + [9121] = 8618, + [9122] = 9122, + [9123] = 8618, + [9124] = 8618, + [9125] = 9125, + [9126] = 8618, + [9127] = 9127, + [9128] = 9128, + [9129] = 8618, + [9130] = 8618, + [9131] = 8618, + [9132] = 9132, + [9133] = 9133, + [9134] = 8618, + [9135] = 8618, + [9136] = 9136, + [9137] = 8618, + [9138] = 9138, + [9139] = 8618, + [9140] = 8618, + [9141] = 9141, + [9142] = 8601, + [9143] = 8599, + [9144] = 8601, + [9145] = 8602, + [9146] = 8587, + [9147] = 8604, + [9148] = 9091, + [9149] = 8588, + [9150] = 1505, + [9151] = 1533, + [9152] = 1536, + [9153] = 1470, + [9154] = 1477, + [9155] = 1478, + [9156] = 8588, + [9157] = 8588, + [9158] = 8588, + [9159] = 8588, + [9160] = 8588, + [9161] = 8588, + [9162] = 8588, + [9163] = 8588, + [9164] = 8588, + [9165] = 8588, + [9166] = 8588, + [9167] = 8588, + [9168] = 8588, + [9169] = 8588, + [9170] = 8588, + [9171] = 8588, [9172] = 8588, - [9173] = 385, - [9174] = 8971, - [9175] = 1675, - [9176] = 8592, - [9177] = 376, - [9178] = 8971, - [9179] = 315, - [9180] = 8587, + [9173] = 8588, + [9174] = 8588, + [9175] = 8588, + [9176] = 8588, + [9177] = 8588, + [9178] = 9178, + [9179] = 290, + [9180] = 9180, [9181] = 9181, - [9182] = 9182, - [9183] = 8797, - [9184] = 9184, + [9182] = 9099, + [9183] = 9183, + [9184] = 9181, [9185] = 9185, - [9186] = 9186, + [9186] = 9181, [9187] = 9187, [9188] = 9188, - [9189] = 9184, - [9190] = 463, - [9191] = 9191, - [9192] = 9192, - [9193] = 9185, - [9194] = 9184, - [9195] = 9181, - [9196] = 9186, - [9197] = 9197, - [9198] = 9197, - [9199] = 9199, - [9200] = 9200, - [9201] = 9192, - [9202] = 8792, - [9203] = 9185, - [9204] = 9181, - [9205] = 9186, - [9206] = 9192, - [9207] = 9185, - [9208] = 9197, - [9209] = 8790, - [9210] = 9197, - [9211] = 8789, - [9212] = 9192, - [9213] = 8788, - [9214] = 9188, - [9215] = 8800, - [9216] = 9192, - [9217] = 8733, - [9218] = 9181, - [9219] = 8787, - [9220] = 8786, - [9221] = 8785, + [9189] = 9189, + [9190] = 9185, + [9191] = 9181, + [9192] = 9185, + [9193] = 8649, + [9194] = 8650, + [9195] = 265, + [9196] = 8652, + [9197] = 8654, + [9198] = 8657, + [9199] = 8816, + [9200] = 9187, + [9201] = 8598, + [9202] = 9202, + [9203] = 9203, + [9204] = 9054, + [9205] = 9187, + [9206] = 9180, + [9207] = 9202, + [9208] = 9180, + [9209] = 9209, + [9210] = 9181, + [9211] = 9188, + [9212] = 8658, + [9213] = 9185, + [9214] = 9189, + [9215] = 9185, + [9216] = 9188, + [9217] = 9189, + [9218] = 429, + [9219] = 8610, + [9220] = 9188, + [9221] = 9221, [9222] = 8817, - [9223] = 8783, - [9224] = 9186, - [9225] = 9181, - [9226] = 9226, - [9227] = 9186, - [9228] = 8782, - [9229] = 9192, - [9230] = 9184, - [9231] = 9185, - [9232] = 8781, - [9233] = 9188, - [9234] = 8778, - [9235] = 464, - [9236] = 305, + [9223] = 9223, + [9224] = 9188, + [9225] = 8659, + [9226] = 9051, + [9227] = 8809, + [9228] = 8758, + [9229] = 9185, + [9230] = 9202, + [9231] = 9180, + [9232] = 8759, + [9233] = 9062, + [9234] = 9181, + [9235] = 9189, + [9236] = 9181, [9237] = 9185, - [9238] = 9197, - [9239] = 8803, - [9240] = 305, - [9241] = 9185, - [9242] = 9181, - [9243] = 9186, - [9244] = 9184, - [9245] = 8806, - [9246] = 9246, - [9247] = 9247, - [9248] = 8808, - [9249] = 9184, - [9250] = 9197, - [9251] = 9251, - [9252] = 9252, - [9253] = 9186, - [9254] = 9184, - [9255] = 9181, - [9256] = 9192, - [9257] = 9181, - [9258] = 9197, - [9259] = 9186, - [9260] = 9120, - [9261] = 9192, - [9262] = 8809, - [9263] = 309, - [9264] = 300, - [9265] = 9185, - [9266] = 297, - [9267] = 9197, - [9268] = 307, - [9269] = 8810, - [9270] = 8816, - [9271] = 8853, - [9272] = 1513, - [9273] = 8774, - [9274] = 8772, - [9275] = 8769, - [9276] = 8767, - [9277] = 411, - [9278] = 1514, - [9279] = 289, - [9280] = 1515, - [9281] = 9184, - [9282] = 9184, - [9283] = 8784, - [9284] = 9197, - [9285] = 8822, - [9286] = 8824, - [9287] = 310, - [9288] = 9186, - [9289] = 9181, - [9290] = 9186, + [9238] = 9188, + [9239] = 9239, + [9240] = 9189, + [9241] = 9188, + [9242] = 9189, + [9243] = 1630, + [9244] = 9244, + [9245] = 8727, + [9246] = 8728, + [9247] = 9221, + [9248] = 8729, + [9249] = 8730, + [9250] = 9202, + [9251] = 9202, + [9252] = 9180, + [9253] = 9181, + [9254] = 9180, + [9255] = 8660, + [9256] = 9181, + [9257] = 9185, + [9258] = 8731, + [9259] = 9259, + [9260] = 8623, + [9261] = 9188, + [9262] = 9189, + [9263] = 9263, + [9264] = 8734, + [9265] = 264, + [9266] = 9187, + [9267] = 9188, + [9268] = 9202, + [9269] = 9180, + [9270] = 9185, + [9271] = 9181, + [9272] = 1614, + [9273] = 8661, + [9274] = 8662, + [9275] = 9185, + [9276] = 1725, + [9277] = 9202, + [9278] = 9188, + [9279] = 9188, + [9280] = 9189, + [9281] = 9188, + [9282] = 9189, + [9283] = 8663, + [9284] = 6492, + [9285] = 8664, + [9286] = 8665, + [9287] = 8666, + [9288] = 9202, + [9289] = 9180, + [9290] = 8667, [9291] = 9181, - [9292] = 9185, - [9293] = 9192, - [9294] = 9197, - [9295] = 6610, - [9296] = 9192, + [9292] = 8708, + [9293] = 8668, + [9294] = 9185, + [9295] = 8710, + [9296] = 1640, [9297] = 9188, - [9298] = 6590, - [9299] = 9185, - [9300] = 9117, - [9301] = 9184, - [9302] = 9095, - [9303] = 9192, - [9304] = 9185, - [9305] = 9181, - [9306] = 9186, - [9307] = 9197, - [9308] = 9116, - [9309] = 9113, - [9310] = 9111, - [9311] = 9184, - [9312] = 9108, - [9313] = 9106, - [9314] = 9105, - [9315] = 9104, - [9316] = 9197, - [9317] = 465, - [9318] = 9186, - [9319] = 9181, - [9320] = 9197, - [9321] = 9102, - [9322] = 9071, - [9323] = 9068, - [9324] = 8842, - [9325] = 9093, - [9326] = 9186, + [9298] = 9189, + [9299] = 8669, + [9300] = 9300, + [9301] = 8670, + [9302] = 9302, + [9303] = 9303, + [9304] = 8671, + [9305] = 9202, + [9306] = 9180, + [9307] = 9181, + [9308] = 9308, + [9309] = 8672, + [9310] = 9185, + [9311] = 9202, + [9312] = 8673, + [9313] = 9180, + [9314] = 9188, + [9315] = 9189, + [9316] = 9316, + [9317] = 9317, + [9318] = 8675, + [9319] = 8676, + [9320] = 9189, + [9321] = 9202, + [9322] = 9180, + [9323] = 9181, + [9324] = 9187, + [9325] = 9325, + [9326] = 9185, [9327] = 9181, - [9328] = 8866, - [9329] = 8902, - [9330] = 9092, - [9331] = 9184, - [9332] = 466, - [9333] = 9091, - [9334] = 9087, - [9335] = 9185, - [9336] = 9197, - [9337] = 8827, - [9338] = 9085, - [9339] = 9083, - [9340] = 9192, - [9341] = 9185, - [9342] = 9082, - [9343] = 9188, - [9344] = 8829, - [9345] = 9192, - [9346] = 8830, - [9347] = 9184, - [9348] = 9184, - [9349] = 9349, - [9350] = 9186, + [9328] = 9185, + [9329] = 9188, + [9330] = 9189, + [9331] = 8677, + [9332] = 9332, + [9333] = 9180, + [9334] = 8611, + [9335] = 9187, + [9336] = 1536, + [9337] = 9337, + [9338] = 9338, + [9339] = 8624, + [9340] = 9202, + [9341] = 9180, + [9342] = 9181, + [9343] = 9185, + [9344] = 9185, + [9345] = 9202, + [9346] = 9180, + [9347] = 9188, + [9348] = 9189, + [9349] = 9202, + [9350] = 9180, [9351] = 9181, - [9352] = 8831, - [9353] = 9197, - [9354] = 9181, - [9355] = 9192, - [9356] = 9186, - [9357] = 9186, - [9358] = 8832, - [9359] = 9188, - [9360] = 9080, - [9361] = 9079, - [9362] = 411, - [9363] = 9363, - [9364] = 9077, - [9365] = 9185, - [9366] = 9185, - [9367] = 8834, - [9368] = 8836, - [9369] = 9181, - [9370] = 8838, - [9371] = 9074, - [9372] = 8840, - [9373] = 9184, - [9374] = 467, - [9375] = 9073, - [9376] = 9192, - [9377] = 9072, - [9378] = 9185, - [9379] = 469, - [9380] = 9184, - [9381] = 9192, - [9382] = 9197, - [9383] = 9029, - [9384] = 9197, - [9385] = 9070, - [9386] = 8802, - [9387] = 8759, - [9388] = 9181, - [9389] = 9069, - [9390] = 9027, - [9391] = 9192, - [9392] = 9186, - [9393] = 8846, - [9394] = 8848, - [9395] = 8849, - [9396] = 9067, - [9397] = 9066, - [9398] = 9065, - [9399] = 9186, - [9400] = 9181, - [9401] = 8850, - [9402] = 8852, - [9403] = 9064, - [9404] = 9075, - [9405] = 288, - [9406] = 9197, - [9407] = 9062, - [9408] = 9192, - [9409] = 8775, - [9410] = 9186, - [9411] = 9061, - [9412] = 9186, - [9413] = 9181, - [9414] = 9181, - [9415] = 8777, - [9416] = 9060, - [9417] = 9192, - [9418] = 9058, - [9419] = 9057, - [9420] = 9185, + [9352] = 9069, + [9353] = 9185, + [9354] = 8600, + [9355] = 9181, + [9356] = 9188, + [9357] = 9189, + [9358] = 9244, + [9359] = 9202, + [9360] = 9180, + [9361] = 9181, + [9362] = 1470, + [9363] = 8593, + [9364] = 9185, + [9365] = 9136, + [9366] = 9366, + [9367] = 9187, + [9368] = 9188, + [9369] = 9189, + [9370] = 8815, + [9371] = 9202, + [9372] = 9180, + [9373] = 9181, + [9374] = 9185, + [9375] = 9375, + [9376] = 9185, + [9377] = 9125, + [9378] = 9378, + [9379] = 477, + [9380] = 9188, + [9381] = 9189, + [9382] = 8696, + [9383] = 9202, + [9384] = 9180, + [9385] = 9385, + [9386] = 9181, + [9387] = 9188, + [9388] = 9185, + [9389] = 9189, + [9390] = 9188, + [9391] = 9188, + [9392] = 9189, + [9393] = 8612, + [9394] = 9202, + [9395] = 9180, + [9396] = 9181, + [9397] = 9189, + [9398] = 9316, + [9399] = 9185, + [9400] = 9317, + [9401] = 432, + [9402] = 1477, + [9403] = 9188, + [9404] = 9189, + [9405] = 1478, + [9406] = 9202, + [9407] = 9180, + [9408] = 1289, + [9409] = 9181, + [9410] = 9410, + [9411] = 9185, + [9412] = 8625, + [9413] = 8592, + [9414] = 9188, + [9415] = 9189, + [9416] = 9202, + [9417] = 9180, + [9418] = 9181, + [9419] = 9185, + [9420] = 8736, [9421] = 9188, - [9422] = 9192, - [9423] = 9055, - [9424] = 9090, - [9425] = 9188, - [9426] = 9052, - [9427] = 470, - [9428] = 9185, - [9429] = 9184, - [9430] = 9186, - [9431] = 9181, - [9432] = 9197, - [9433] = 8960, - [9434] = 9192, - [9435] = 9184, - [9436] = 9050, - [9437] = 9049, - [9438] = 9040, - [9439] = 9185, - [9440] = 9184, - [9441] = 9186, - [9442] = 9038, - [9443] = 9197, - [9444] = 9181, - [9445] = 9445, - [9446] = 8813, - [9447] = 9185, - [9448] = 9192, - [9449] = 9185, - [9450] = 1510, - [9451] = 9033, - [9452] = 8845, - [9453] = 1509, - [9454] = 9185, - [9455] = 9186, - [9456] = 1508, - [9457] = 9032, - [9458] = 9181, - [9459] = 8982, - [9460] = 1507, - [9461] = 9188, - [9462] = 8854, - [9463] = 9192, - [9464] = 9192, - [9465] = 8856, - [9466] = 9185, - [9467] = 9192, - [9468] = 8780, + [9422] = 9189, + [9423] = 9202, + [9424] = 9180, + [9425] = 9181, + [9426] = 9185, + [9427] = 8737, + [9428] = 9188, + [9429] = 9189, + [9430] = 9202, + [9431] = 9180, + [9432] = 8738, + [9433] = 9181, + [9434] = 9185, + [9435] = 8739, + [9436] = 9188, + [9437] = 9189, + [9438] = 9202, + [9439] = 9180, + [9440] = 9181, + [9441] = 9185, + [9442] = 8735, + [9443] = 9202, + [9444] = 9180, + [9445] = 9181, + [9446] = 9185, + [9447] = 9447, + [9448] = 9202, + [9449] = 9180, + [9450] = 9181, + [9451] = 9185, + [9452] = 480, + [9453] = 9202, + [9454] = 9180, + [9455] = 9181, + [9456] = 9185, + [9457] = 9071, + [9458] = 9202, + [9459] = 9180, + [9460] = 9181, + [9461] = 9185, + [9462] = 9202, + [9463] = 9202, + [9464] = 9181, + [9465] = 9185, + [9466] = 9180, + [9467] = 9181, + [9468] = 9185, [9469] = 9181, - [9470] = 9470, - [9471] = 9471, - [9472] = 9186, - [9473] = 9186, - [9474] = 9181, - [9475] = 9181, - [9476] = 9185, - [9477] = 9186, - [9478] = 9192, - [9479] = 9186, - [9480] = 8857, - [9481] = 8859, - [9482] = 9188, - [9483] = 9483, - [9484] = 1662, - [9485] = 9017, - [9486] = 9486, + [9470] = 9181, + [9471] = 9185, + [9472] = 9132, + [9473] = 9181, + [9474] = 9185, + [9475] = 9059, + [9476] = 9181, + [9477] = 9185, + [9478] = 9188, + [9479] = 9181, + [9480] = 9185, + [9481] = 9181, + [9482] = 9185, + [9483] = 9181, + [9484] = 9185, + [9485] = 9181, + [9486] = 9185, [9487] = 9181, - [9488] = 1665, - [9489] = 9185, - [9490] = 1669, - [9491] = 8862, - [9492] = 9015, - [9493] = 8863, - [9494] = 9054, - [9495] = 1677, - [9496] = 9184, - [9497] = 486, - [9498] = 1399, - [9499] = 1678, - [9500] = 487, - [9501] = 9192, - [9502] = 9184, - [9503] = 489, - [9504] = 9197, - [9505] = 493, + [9488] = 9185, + [9489] = 9181, + [9490] = 9185, + [9491] = 9181, + [9492] = 9185, + [9493] = 9181, + [9494] = 9185, + [9495] = 9181, + [9496] = 9185, + [9497] = 9181, + [9498] = 9185, + [9499] = 9181, + [9500] = 9185, + [9501] = 9181, + [9502] = 9185, + [9503] = 9181, + [9504] = 9185, + [9505] = 9181, [9506] = 9185, - [9507] = 9186, - [9508] = 9192, - [9509] = 8765, + [9507] = 9181, + [9508] = 9185, + [9509] = 9181, [9510] = 9185, - [9511] = 9197, - [9512] = 9192, - [9513] = 526, + [9511] = 9181, + [9512] = 9185, + [9513] = 9181, [9514] = 9185, - [9515] = 9184, - [9516] = 9192, - [9517] = 9185, - [9518] = 9063, - [9519] = 8871, - [9520] = 9185, - [9521] = 9192, + [9515] = 9181, + [9516] = 9185, + [9517] = 9181, + [9518] = 9185, + [9519] = 8613, + [9520] = 9187, + [9521] = 8615, [9522] = 9185, - [9523] = 9197, - [9524] = 9192, - [9525] = 9185, - [9526] = 9197, - [9527] = 9192, - [9528] = 9181, - [9529] = 9186, - [9530] = 9192, - [9531] = 9184, - [9532] = 9532, - [9533] = 9184, - [9534] = 9186, - [9535] = 9181, - [9536] = 9185, - [9537] = 9192, - [9538] = 9185, - [9539] = 9192, - [9540] = 9540, - [9541] = 9185, - [9542] = 9192, - [9543] = 9188, - [9544] = 1664, - [9545] = 9185, - [9546] = 453, - [9547] = 451, - [9548] = 449, - [9549] = 9186, - [9550] = 9185, - [9551] = 9181, - [9552] = 9192, - [9553] = 9185, - [9554] = 9197, - [9555] = 9188, - [9556] = 9192, - [9557] = 9184, - [9558] = 9185, - [9559] = 9192, - [9560] = 9184, - [9561] = 9185, - [9562] = 429, - [9563] = 9185, - [9564] = 9564, - [9565] = 9197, - [9566] = 9192, - [9567] = 9185, - [9568] = 9192, - [9569] = 9569, - [9570] = 447, - [9571] = 9192, + [9523] = 9202, + [9524] = 9524, + [9525] = 9180, + [9526] = 9183, + [9527] = 8616, + [9528] = 9528, + [9529] = 9529, + [9530] = 9063, + [9531] = 1358, + [9532] = 9203, + [9533] = 9188, + [9534] = 9189, + [9535] = 8820, + [9536] = 9181, + [9537] = 1615, + [9538] = 9127, + [9539] = 9138, + [9540] = 1628, + [9541] = 9187, + [9542] = 9542, + [9543] = 9543, + [9544] = 9188, + [9545] = 1289, + [9546] = 8716, + [9547] = 9223, + [9548] = 9189, + [9549] = 9064, + [9550] = 1533, + [9551] = 9180, + [9552] = 446, + [9553] = 9056, + [9554] = 1289, + [9555] = 447, + [9556] = 9185, + [9557] = 9300, + [9558] = 8605, + [9559] = 9559, + [9560] = 8832, + [9561] = 8606, + [9562] = 9202, + [9563] = 9065, + [9564] = 9180, + [9565] = 8834, + [9566] = 9188, + [9567] = 9567, + [9568] = 9568, + [9569] = 9189, + [9570] = 9570, + [9571] = 9571, [9572] = 9572, - [9573] = 9573, - [9574] = 9574, - [9575] = 9575, - [9576] = 9188, - [9577] = 9192, - [9578] = 8861, - [9579] = 9188, - [9580] = 9192, - [9581] = 9185, - [9582] = 9181, - [9583] = 9181, - [9584] = 9186, - [9585] = 9186, - [9586] = 9192, - [9587] = 9185, - [9588] = 8751, - [9589] = 9186, - [9590] = 9185, - [9591] = 8763, - [9592] = 8867, - [9593] = 9192, - [9594] = 8870, - [9595] = 9186, - [9596] = 9181, - [9597] = 9185, - [9598] = 9184, - [9599] = 9192, - [9600] = 9192, - [9601] = 9185, - [9602] = 9192, - [9603] = 9185, - [9604] = 9188, - [9605] = 9605, - [9606] = 9192, - [9607] = 9197, - [9608] = 9002, - [9609] = 9609, - [9610] = 9185, - [9611] = 9185, - [9612] = 9192, - [9613] = 9000, - [9614] = 9185, - [9615] = 9184, - [9616] = 9192, - [9617] = 9184, - [9618] = 9185, - [9619] = 8998, - [9620] = 294, - [9621] = 8958, - [9622] = 9185, - [9623] = 9192, - [9624] = 9624, - [9625] = 9197, + [9573] = 8836, + [9574] = 1497, + [9575] = 1536, + [9576] = 1470, + [9577] = 1477, + [9578] = 1478, + [9579] = 9579, + [9580] = 9066, + [9581] = 9542, + [9582] = 9058, + [9583] = 9583, + [9584] = 9074, + [9585] = 8726, + [9586] = 9259, + [9587] = 9202, + [9588] = 9180, + [9589] = 9263, + [9590] = 9060, + [9591] = 462, + [9592] = 9181, + [9593] = 8741, + [9594] = 8743, + [9595] = 9187, + [9596] = 9185, + [9597] = 9597, + [9598] = 8746, + [9599] = 9543, + [9600] = 9043, + [9601] = 9188, + [9602] = 465, + [9603] = 467, + [9604] = 9189, + [9605] = 9202, + [9606] = 469, + [9607] = 6521, + [9608] = 9180, + [9609] = 9181, + [9610] = 9189, + [9611] = 472, + [9612] = 9187, + [9613] = 9141, + [9614] = 8627, + [9615] = 473, + [9616] = 9007, + [9617] = 8628, + [9618] = 8629, + [9619] = 8631, + [9620] = 310, + [9621] = 9185, + [9622] = 9181, + [9623] = 9178, + [9624] = 1664, + [9625] = 9625, [9626] = 9626, - [9627] = 9185, - [9628] = 8762, - [9629] = 9192, - [9630] = 9630, - [9631] = 9185, - [9632] = 8996, - [9633] = 8999, - [9634] = 8993, - [9635] = 8987, - [9636] = 8950, - [9637] = 8976, - [9638] = 8969, - [9639] = 8964, - [9640] = 1284, - [9641] = 9197, - [9642] = 8962, - [9643] = 9192, - [9644] = 8761, - [9645] = 9197, - [9646] = 9181, - [9647] = 8925, - [9648] = 8959, - [9649] = 8953, - [9650] = 9186, - [9651] = 8884, - [9652] = 9192, - [9653] = 9184, - [9654] = 9185, - [9655] = 9186, - [9656] = 9181, - [9657] = 444, - [9658] = 9192, - [9659] = 9185, - [9660] = 9192, - [9661] = 9192, - [9662] = 9185, - [9663] = 8758, - [9664] = 9188, - [9665] = 9185, - [9666] = 443, - [9667] = 439, - [9668] = 9181, - [9669] = 9186, - [9670] = 9197, - [9671] = 9185, - [9672] = 473, - [9673] = 9181, - [9674] = 9197, - [9675] = 8949, - [9676] = 8947, - [9677] = 9184, - [9678] = 9605, - [9679] = 9184, - [9680] = 9363, - [9681] = 9184, - [9682] = 8889, - [9683] = 437, - [9684] = 9192, - [9685] = 9197, - [9686] = 9686, - [9687] = 9188, - [9688] = 9609, - [9689] = 9630, - [9690] = 434, + [9627] = 9627, + [9628] = 1666, + [9629] = 9629, + [9630] = 8589, + [9631] = 9189, + [9632] = 8609, + [9633] = 9188, + [9634] = 9189, + [9635] = 9635, + [9636] = 9133, + [9637] = 9202, + [9638] = 9180, + [9639] = 9187, + [9640] = 9209, + [9641] = 9181, + [9642] = 9189, + [9643] = 9185, + [9644] = 8747, + [9645] = 309, + [9646] = 288, + [9647] = 310, + [9648] = 302, + [9649] = 9187, + [9650] = 9187, + [9651] = 9181, + [9652] = 9185, + [9653] = 8748, + [9654] = 8591, + [9655] = 8607, + [9656] = 9122, + [9657] = 9188, + [9658] = 9189, + [9659] = 8633, + [9660] = 8638, + [9661] = 481, + [9662] = 425, + [9663] = 426, + [9664] = 9302, + [9665] = 9188, + [9666] = 290, + [9667] = 8608, + [9668] = 8594, + [9669] = 8639, + [9670] = 8640, + [9671] = 8711, + [9672] = 8749, + [9673] = 8750, + [9674] = 9097, + [9675] = 9202, + [9676] = 9676, + [9677] = 9180, + [9678] = 9202, + [9679] = 9181, + [9680] = 9180, + [9681] = 8695, + [9682] = 8946, + [9683] = 9187, + [9684] = 9202, + [9685] = 8949, + [9686] = 9209, + [9687] = 8793, + [9688] = 9181, + [9689] = 9180, + [9690] = 8751, [9691] = 9185, - [9692] = 9349, - [9693] = 8877, - [9694] = 9185, - [9695] = 9185, - [9696] = 9696, - [9697] = 312, - [9698] = 9188, - [9699] = 9186, - [9700] = 9181, - [9701] = 9192, - [9702] = 9192, - [9703] = 9181, - [9704] = 8757, - [9705] = 9181, - [9706] = 9186, - [9707] = 9707, - [9708] = 1284, - [9709] = 9709, - [9710] = 304, - [9711] = 8754, - [9712] = 288, - [9713] = 8752, - [9714] = 9192, - [9715] = 9186, - [9716] = 9181, - [9717] = 309, - [9718] = 9630, - [9719] = 431, - [9720] = 9192, - [9721] = 9188, - [9722] = 9188, - [9723] = 8881, - [9724] = 9624, - [9725] = 9574, - [9726] = 9573, - [9727] = 9727, - [9728] = 9728, - [9729] = 9192, - [9730] = 9185, - [9731] = 9197, - [9732] = 9184, - [9733] = 9185, - [9734] = 9197, - [9735] = 9626, - [9736] = 9184, - [9737] = 9572, - [9738] = 9184, - [9739] = 1691, - [9740] = 8945, - [9741] = 9184, - [9742] = 9186, - [9743] = 8943, - [9744] = 9197, - [9745] = 9191, - [9746] = 9187, - [9747] = 8995, - [9748] = 9197, - [9749] = 1689, - [9750] = 9750, - [9751] = 304, - [9752] = 9199, - [9753] = 9185, - [9754] = 8942, - [9755] = 448, - [9756] = 8883, - [9757] = 8843, - [9758] = 8885, - [9759] = 9759, - [9760] = 9252, - [9761] = 9761, - [9762] = 9762, - [9763] = 9763, - [9764] = 9184, - [9765] = 8755, - [9766] = 9226, - [9767] = 8887, - [9768] = 9197, - [9769] = 9192, - [9770] = 8940, - [9771] = 8936, - [9772] = 430, - [9773] = 8932, - [9774] = 9186, - [9775] = 9181, - [9776] = 9185, - [9777] = 9181, - [9778] = 9186, - [9779] = 9192, - [9780] = 9185, - [9781] = 8888, - [9782] = 9782, - [9783] = 9532, - [9784] = 9540, - [9785] = 8795, - [9786] = 8890, - [9787] = 8892, - [9788] = 9184, - [9789] = 9185, - [9790] = 8893, - [9791] = 8895, - [9792] = 8912, - [9793] = 8913, - [9794] = 264, - [9795] = 9184, - [9796] = 8915, - [9797] = 8916, - [9798] = 8917, - [9799] = 9197, - [9800] = 9800, - [9801] = 1514, - [9802] = 265, - [9803] = 9197, - [9804] = 1513, - [9805] = 8918, - [9806] = 8919, - [9807] = 342, - [9808] = 9808, - [9809] = 8920, - [9810] = 8882, - [9811] = 9197, - [9812] = 8922, - [9813] = 8921, - [9814] = 9200, - [9815] = 9188, - [9816] = 9192, - [9817] = 8926, - [9818] = 9818, - [9819] = 9184, - [9820] = 1284, - [9821] = 9181, - [9822] = 9186, - [9823] = 1521, - [9824] = 1510, - [9825] = 1509, - [9826] = 1508, - [9827] = 1507, - [9828] = 8791, - [9829] = 8744, - [9830] = 8615, - [9831] = 9185, - [9832] = 8928, - [9833] = 9186, - [9834] = 9181, - [9835] = 294, - [9836] = 8930, - [9837] = 8927, - [9838] = 9192, - [9839] = 438, - [9840] = 1284, - [9841] = 1667, + [9692] = 9187, + [9693] = 9185, + [9694] = 9189, + [9695] = 8595, + [9696] = 9181, + [9697] = 9188, + [9698] = 9337, + [9699] = 9189, + [9700] = 483, + [9701] = 9072, + [9702] = 9188, + [9703] = 8683, + [9704] = 9303, + [9705] = 8641, + [9706] = 8642, + [9707] = 8643, + [9708] = 9338, + [9709] = 9181, + [9710] = 505, + [9711] = 9187, + [9712] = 8718, + [9713] = 9185, + [9714] = 8720, + [9715] = 8721, + [9716] = 8644, + [9717] = 9053, + [9718] = 8767, + [9719] = 389, + [9720] = 325, + [9721] = 8768, + [9722] = 9189, + [9723] = 8769, + [9724] = 8770, + [9725] = 9068, + [9726] = 1617, + [9727] = 9061, + [9728] = 9202, + [9729] = 9180, + [9730] = 8771, + [9731] = 9073, + [9732] = 9181, + [9733] = 9202, + [9734] = 9188, + [9735] = 430, + [9736] = 9189, + [9737] = 9187, + [9738] = 9185, + [9739] = 9187, + [9740] = 8645, + [9741] = 431, + [9742] = 9188, + [9743] = 9189, + [9744] = 9202, + [9745] = 9180, + [9746] = 9181, + [9747] = 9036, + [9748] = 8753, + [9749] = 9185, + [9750] = 9524, + [9751] = 8754, + [9752] = 9037, + [9753] = 1289, + [9754] = 8772, + [9755] = 8755, + [9756] = 8773, + [9757] = 8774, + [9758] = 8775, + [9759] = 8590, + [9760] = 8776, + [9761] = 9079, + [9762] = 427, + [9763] = 307, + [9764] = 520, + [9765] = 296, + [9766] = 289, + [9767] = 297, + [9768] = 292, + [9769] = 294, + [9770] = 309, + [9771] = 9180, + [9772] = 299, + [9773] = 299, + [9774] = 8777, + [9775] = 528, + [9776] = 9202, + [9777] = 9180, + [9778] = 9185, + [9779] = 522, + [9780] = 9015, + [9781] = 9081, + [9782] = 9018, + [9783] = 523, + [9784] = 8778, + [9785] = 9181, + [9786] = 524, + [9787] = 8785, + [9788] = 9045, + [9789] = 9046, + [9790] = 9047, + [9791] = 9048, + [9792] = 9083, + [9793] = 9187, + [9794] = 9049, + [9795] = 389, + [9796] = 476, + [9797] = 9185, + [9798] = 8596, + [9799] = 9050, + [9800] = 1474, + [9801] = 1505, + [9802] = 1533, + [9803] = 8646, + [9804] = 8789, + [9805] = 9188, + [9806] = 8803, + [9807] = 9085, + [9808] = 9189, + [9809] = 1505, + [9810] = 9202, + [9811] = 9180, + [9812] = 8597, + [9813] = 9181, + [9814] = 288, + [9815] = 8756, + [9816] = 9120, + [9817] = 9185, + [9818] = 8757, + [9819] = 9187, + [9820] = 9128, + [9821] = 9188, + [9822] = 9189, + [9823] = 9202, + [9824] = 9180, + [9825] = 9084, + [9826] = 9202, + [9827] = 8804, + [9828] = 8647, + [9829] = 9202, + [9830] = 8806, + [9831] = 8807, + [9832] = 8808, + [9833] = 8810, + [9834] = 8811, + [9835] = 8812, + [9836] = 8813, + [9837] = 8648, + [9838] = 8814, + [9839] = 9202, + [9840] = 9180, + [9841] = 445, [9842] = 9842, [9843] = 9843, [9844] = 9844, - [9845] = 9845, - [9846] = 9844, - [9847] = 1521, - [9848] = 9848, - [9849] = 9849, - [9850] = 9849, - [9851] = 9848, - [9852] = 9849, - [9853] = 9848, - [9854] = 9849, - [9855] = 9845, - [9856] = 1663, - [9857] = 9848, - [9858] = 411, - [9859] = 9859, - [9860] = 9860, - [9861] = 9845, + [9845] = 9842, + [9846] = 9846, + [9847] = 9847, + [9848] = 9847, + [9849] = 9843, + [9850] = 9850, + [9851] = 6797, + [9852] = 9847, + [9853] = 9843, + [9854] = 9843, + [9855] = 9844, + [9856] = 9842, + [9857] = 1497, + [9858] = 9844, + [9859] = 9847, + [9860] = 9842, + [9861] = 9843, [9862] = 9844, - [9863] = 9848, - [9864] = 269, - [9865] = 9849, - [9866] = 9866, - [9867] = 9845, - [9868] = 9849, - [9869] = 9848, - [9870] = 268, - [9871] = 9844, - [9872] = 9246, - [9873] = 1521, - [9874] = 9849, - [9875] = 9848, - [9876] = 9247, - [9877] = 273, - [9878] = 271, - [9879] = 7414, - [9880] = 1515, - [9881] = 9845, - [9882] = 267, + [9863] = 9844, + [9864] = 9842, + [9865] = 272, + [9866] = 9843, + [9867] = 9847, + [9868] = 9843, + [9869] = 9844, + [9870] = 9842, + [9871] = 1339, + [9872] = 6800, + [9873] = 9873, + [9874] = 9844, + [9875] = 9366, + [9876] = 9876, + [9877] = 9847, + [9878] = 6801, + [9879] = 9847, + [9880] = 9843, + [9881] = 9844, + [9882] = 9842, [9883] = 9844, - [9884] = 1927, - [9885] = 9845, - [9886] = 9849, - [9887] = 9845, - [9888] = 9848, + [9884] = 9843, + [9885] = 9842, + [9886] = 9886, + [9887] = 9847, + [9888] = 9843, [9889] = 9844, - [9890] = 9845, - [9891] = 9844, - [9892] = 1384, - [9893] = 9844, - [9894] = 9844, - [9895] = 9845, - [9896] = 9896, - [9897] = 9845, - [9898] = 9898, - [9899] = 9848, - [9900] = 9849, + [9890] = 9844, + [9891] = 9842, + [9892] = 9842, + [9893] = 1374, + [9894] = 9894, + [9895] = 9847, + [9896] = 9843, + [9897] = 9847, + [9898] = 9844, + [9899] = 9842, + [9900] = 6852, [9901] = 9901, - [9902] = 9845, - [9903] = 9849, - [9904] = 9848, - [9905] = 9905, - [9906] = 9848, - [9907] = 9849, - [9908] = 9848, - [9909] = 9848, - [9910] = 9910, - [9911] = 9911, - [9912] = 9912, - [9913] = 9844, - [9914] = 9848, - [9915] = 9849, - [9916] = 9916, - [9917] = 9848, - [9918] = 9918, - [9919] = 9849, + [9902] = 9902, + [9903] = 9843, + [9904] = 9447, + [9905] = 9847, + [9906] = 9843, + [9907] = 9844, + [9908] = 9842, + [9909] = 1339, + [9910] = 9847, + [9911] = 9847, + [9912] = 9843, + [9913] = 9843, + [9914] = 9844, + [9915] = 9842, + [9916] = 9847, + [9917] = 9847, + [9918] = 9843, + [9919] = 9843, [9920] = 9844, - [9921] = 9845, - [9922] = 9842, - [9923] = 9844, - [9924] = 9924, - [9925] = 9925, - [9926] = 9844, + [9921] = 9842, + [9922] = 9922, + [9923] = 9847, + [9924] = 9843, + [9925] = 9844, + [9926] = 9842, [9927] = 9844, - [9928] = 9928, - [9929] = 9929, - [9930] = 9843, - [9931] = 411, - [9932] = 9845, - [9933] = 9933, - [9934] = 6754, - [9935] = 9844, - [9936] = 1382, - [9937] = 6663, - [9938] = 9849, - [9939] = 6407, - [9940] = 9844, - [9941] = 9844, - [9942] = 9848, - [9943] = 6756, - [9944] = 1522, - [9945] = 271, - [9946] = 9845, - [9947] = 1515, - [9948] = 9948, - [9949] = 9845, - [9950] = 9845, - [9951] = 9951, - [9952] = 9848, - [9953] = 9953, - [9954] = 9849, - [9955] = 9848, - [9956] = 9844, - [9957] = 6664, - [9958] = 9842, - [9959] = 267, - [9960] = 6665, - [9961] = 9848, - [9962] = 9849, - [9963] = 9848, - [9964] = 6666, - [9965] = 9849, - [9966] = 9844, - [9967] = 1522, - [9968] = 9845, - [9969] = 6667, - [9970] = 411, - [9971] = 9842, - [9972] = 9845, - [9973] = 9844, - [9974] = 9842, - [9975] = 9975, - [9976] = 9844, - [9977] = 9844, - [9978] = 9978, - [9979] = 9979, - [9980] = 9929, - [9981] = 9848, - [9982] = 9844, - [9983] = 9849, - [9984] = 9845, - [9985] = 9848, - [9986] = 9849, - [9987] = 9844, - [9988] = 9844, - [9989] = 6692, - [9990] = 9848, - [9991] = 9849, - [9992] = 9842, - [9993] = 9844, - [9994] = 9707, - [9995] = 9849, + [9928] = 9842, + [9929] = 9842, + [9930] = 9847, + [9931] = 9843, + [9932] = 9844, + [9933] = 9842, + [9934] = 9847, + [9935] = 9843, + [9936] = 7346, + [9937] = 2071, + [9938] = 9844, + [9939] = 9939, + [9940] = 9847, + [9941] = 1294, + [9942] = 9847, + [9943] = 1485, + [9944] = 9844, + [9945] = 9847, + [9946] = 9844, + [9947] = 9842, + [9948] = 9844, + [9949] = 9847, + [9950] = 9843, + [9951] = 9844, + [9952] = 9847, + [9953] = 9844, + [9954] = 9844, + [9955] = 9842, + [9956] = 9847, + [9957] = 9844, + [9958] = 9847, + [9959] = 9844, + [9960] = 9844, + [9961] = 9847, + [9962] = 9844, + [9963] = 9847, + [9964] = 9964, + [9965] = 9844, + [9966] = 9842, + [9967] = 9847, + [9968] = 9847, + [9969] = 9844, + [9970] = 9970, + [9971] = 9847, + [9972] = 9844, + [9973] = 9847, + [9974] = 9844, + [9975] = 9847, + [9976] = 9976, + [9977] = 9847, + [9978] = 9847, + [9979] = 9847, + [9980] = 9980, + [9981] = 9847, + [9982] = 9847, + [9983] = 9847, + [9984] = 9847, + [9985] = 9843, + [9986] = 9847, + [9987] = 9847, + [9988] = 9847, + [9989] = 9847, + [9990] = 9847, + [9991] = 9847, + [9992] = 9992, + [9993] = 9847, + [9994] = 9847, + [9995] = 9847, [9996] = 9844, - [9997] = 9845, - [9998] = 9848, - [9999] = 9848, - [10000] = 10000, - [10001] = 9842, - [10002] = 9844, - [10003] = 9849, - [10004] = 9782, - [10005] = 9842, - [10006] = 9844, - [10007] = 9848, - [10008] = 9849, - [10009] = 9845, - [10010] = 9848, - [10011] = 9842, - [10012] = 9844, + [9997] = 9842, + [9998] = 9847, + [9999] = 9626, + [10000] = 9847, + [10001] = 9847, + [10002] = 9847, + [10003] = 9847, + [10004] = 9847, + [10005] = 9847, + [10006] = 9847, + [10007] = 10007, + [10008] = 9843, + [10009] = 9980, + [10010] = 9964, + [10011] = 9846, + [10012] = 9847, [10013] = 10013, - [10014] = 6757, - [10015] = 9844, - [10016] = 9842, - [10017] = 9848, - [10018] = 9844, - [10019] = 9844, - [10020] = 10020, - [10021] = 9849, - [10022] = 9845, - [10023] = 9845, - [10024] = 10024, - [10025] = 9844, - [10026] = 1332, - [10027] = 9844, - [10028] = 9844, - [10029] = 9849, - [10030] = 1330, - [10031] = 9842, - [10032] = 6828, - [10033] = 9844, - [10034] = 6827, - [10035] = 9849, - [10036] = 9842, - [10037] = 6826, + [10014] = 10014, + [10015] = 9850, + [10016] = 9375, + [10017] = 10017, + [10018] = 9847, + [10019] = 9572, + [10020] = 1294, + [10021] = 9844, + [10022] = 9842, + [10023] = 9844, + [10024] = 9843, + [10025] = 10025, + [10026] = 9844, + [10027] = 9842, + [10028] = 9847, + [10029] = 10029, + [10030] = 9325, + [10031] = 10031, + [10032] = 271, + [10033] = 389, + [10034] = 1632, + [10035] = 9843, + [10036] = 10036, + [10037] = 10037, [10038] = 10038, - [10039] = 9844, - [10040] = 9842, - [10041] = 9848, - [10042] = 9844, - [10043] = 9845, - [10044] = 9849, - [10045] = 9844, - [10046] = 9844, - [10047] = 9848, - [10048] = 9848, - [10049] = 9842, - [10050] = 9844, - [10051] = 9844, - [10052] = 9845, - [10053] = 9848, - [10054] = 9849, - [10055] = 9842, - [10056] = 9845, - [10057] = 9844, - [10058] = 9844, - [10059] = 9818, - [10060] = 9844, - [10061] = 9842, - [10062] = 9845, - [10063] = 9808, - [10064] = 9845, - [10065] = 1515, - [10066] = 9486, - [10067] = 9953, - [10068] = 9845, - [10069] = 9844, - [10070] = 9761, - [10071] = 9844, - [10072] = 9844, - [10073] = 9842, - [10074] = 10074, + [10039] = 9847, + [10040] = 9847, + [10041] = 9625, + [10042] = 10042, + [10043] = 389, + [10044] = 10044, + [10045] = 9843, + [10046] = 10046, + [10047] = 1497, + [10048] = 10048, + [10049] = 10049, + [10050] = 10050, + [10051] = 10051, + [10052] = 389, + [10053] = 9844, + [10054] = 9842, + [10055] = 9847, + [10056] = 9410, + [10057] = 6695, + [10058] = 10058, + [10059] = 9980, + [10060] = 9843, + [10061] = 1485, + [10062] = 1474, + [10063] = 9378, + [10064] = 271, + [10065] = 273, + [10066] = 9847, + [10067] = 1497, + [10068] = 9844, + [10069] = 9843, + [10070] = 9842, + [10071] = 9980, + [10072] = 9627, + [10073] = 9847, + [10074] = 6696, [10075] = 9844, [10076] = 9842, - [10077] = 9842, - [10078] = 9948, - [10079] = 9844, - [10080] = 9848, - [10081] = 9849, - [10082] = 9844, - [10083] = 9842, - [10084] = 9848, - [10085] = 9844, - [10086] = 9483, - [10087] = 10087, - [10088] = 9844, - [10089] = 9845, - [10090] = 9842, - [10091] = 10091, - [10092] = 9848, - [10093] = 9842, - [10094] = 9445, - [10095] = 10095, - [10096] = 9844, - [10097] = 9848, - [10098] = 10098, - [10099] = 9848, - [10100] = 9849, - [10101] = 9842, - [10102] = 10102, - [10103] = 9844, - [10104] = 9848, - [10105] = 10105, - [10106] = 9849, - [10107] = 9844, - [10108] = 9842, - [10109] = 9848, - [10110] = 10110, - [10111] = 9849, - [10112] = 9848, - [10113] = 9842, - [10114] = 1384, - [10115] = 9844, - [10116] = 1382, - [10117] = 9845, - [10118] = 9842, - [10119] = 411, - [10120] = 9848, + [10077] = 9980, + [10078] = 9843, + [10079] = 9843, + [10080] = 9980, + [10081] = 9980, + [10082] = 9980, + [10083] = 269, + [10084] = 9980, + [10085] = 9980, + [10086] = 1474, + [10087] = 1377, + [10088] = 9980, + [10089] = 9844, + [10090] = 9980, + [10091] = 9980, + [10092] = 9847, + [10093] = 9980, + [10094] = 9844, + [10095] = 6795, + [10096] = 9842, + [10097] = 9980, + [10098] = 9842, + [10099] = 9844, + [10100] = 9980, + [10101] = 9844, + [10102] = 6697, + [10103] = 9980, + [10104] = 9980, + [10105] = 9980, + [10106] = 9980, + [10107] = 6667, + [10108] = 9843, + [10109] = 1374, + [10110] = 9980, + [10111] = 9842, + [10112] = 9980, + [10113] = 9980, + [10114] = 6668, + [10115] = 9980, + [10116] = 9980, + [10117] = 6669, + [10118] = 9847, + [10119] = 9980, + [10120] = 9980, [10121] = 9844, - [10122] = 9842, - [10123] = 9842, - [10124] = 9845, - [10125] = 9844, - [10126] = 9844, - [10127] = 9848, - [10128] = 9844, - [10129] = 1332, - [10130] = 9844, - [10131] = 1330, - [10132] = 9842, - [10133] = 9848, - [10134] = 9844, - [10135] = 9845, - [10136] = 9842, - [10137] = 9845, - [10138] = 9844, - [10139] = 9842, - [10140] = 9849, - [10141] = 9848, - [10142] = 9848, - [10143] = 9842, - [10144] = 9842, - [10145] = 9848, - [10146] = 9849, - [10147] = 9844, - [10148] = 9763, - [10149] = 9842, - [10150] = 9762, - [10151] = 9848, - [10152] = 9845, - [10153] = 9842, - [10154] = 10154, - [10155] = 9842, - [10156] = 9844, - [10157] = 9842, - [10158] = 9844, + [10122] = 9843, + [10123] = 9980, + [10124] = 9842, + [10125] = 9980, + [10126] = 9842, + [10127] = 9980, + [10128] = 9980, + [10129] = 10129, + [10130] = 9980, + [10131] = 9980, + [10132] = 9980, + [10133] = 9528, + [10134] = 9980, + [10135] = 9980, + [10136] = 9980, + [10137] = 9980, + [10138] = 9980, + [10139] = 9980, + [10140] = 9843, + [10141] = 269, + [10142] = 270, + [10143] = 9847, + [10144] = 10144, + [10145] = 9847, + [10146] = 10146, + [10147] = 10147, + [10148] = 9843, + [10149] = 9847, + [10150] = 10150, + [10151] = 9844, + [10152] = 9980, + [10153] = 1474, + [10154] = 6419, + [10155] = 1377, + [10156] = 9843, + [10157] = 9844, + [10158] = 9842, [10159] = 9842, - [10160] = 9848, - [10161] = 9849, + [10160] = 9529, + [10161] = 9844, [10162] = 9842, - [10163] = 1521, - [10164] = 9842, - [10165] = 9844, - [10166] = 9842, + [10163] = 389, + [10164] = 9886, + [10165] = 6796, + [10166] = 10166, [10167] = 10167, [10168] = 10168, - [10169] = 10168, - [10170] = 1508, - [10171] = 10168, + [10169] = 10169, + [10170] = 10170, + [10171] = 10171, [10172] = 10172, - [10173] = 1509, + [10173] = 1474, [10174] = 10174, - [10175] = 10175, + [10175] = 1404, [10176] = 10176, - [10177] = 10174, - [10178] = 10174, + [10177] = 10177, + [10178] = 10178, [10179] = 10179, - [10180] = 2117, - [10181] = 2116, + [10180] = 389, + [10181] = 10181, [10182] = 10182, [10183] = 10183, - [10184] = 10184, + [10184] = 10169, [10185] = 10185, - [10186] = 10186, - [10187] = 10168, - [10188] = 10168, + [10186] = 285, + [10187] = 10183, + [10188] = 10177, [10189] = 10189, - [10190] = 10168, - [10191] = 411, - [10192] = 10168, - [10193] = 10193, - [10194] = 10194, - [10195] = 10195, + [10190] = 10190, + [10191] = 10178, + [10192] = 10192, + [10193] = 1465, + [10194] = 10183, + [10195] = 284, [10196] = 10196, - [10197] = 10174, - [10198] = 10198, + [10197] = 2003, + [10198] = 10183, [10199] = 10199, - [10200] = 10200, + [10200] = 1466, [10201] = 10201, [10202] = 10202, - [10203] = 10174, - [10204] = 10174, - [10205] = 1464, - [10206] = 10174, - [10207] = 10207, - [10208] = 1463, - [10209] = 10209, - [10210] = 1507, - [10211] = 10174, - [10212] = 10212, - [10213] = 1521, - [10214] = 10196, + [10203] = 1404, + [10204] = 1474, + [10205] = 10205, + [10206] = 10206, + [10207] = 2006, + [10208] = 1485, + [10209] = 10174, + [10210] = 10170, + [10211] = 10171, + [10212] = 10183, + [10213] = 389, + [10214] = 10181, [10215] = 10215, - [10216] = 10174, - [10217] = 10195, - [10218] = 10168, - [10219] = 10202, - [10220] = 10189, - [10221] = 10221, - [10222] = 10222, - [10223] = 10207, - [10224] = 1459, - [10225] = 10168, - [10226] = 1510, - [10227] = 10174, - [10228] = 10228, + [10216] = 10181, + [10217] = 10217, + [10218] = 10181, + [10219] = 10181, + [10220] = 10220, + [10221] = 10183, + [10222] = 10181, + [10223] = 10172, + [10224] = 10224, + [10225] = 10225, + [10226] = 10226, + [10227] = 10183, + [10228] = 10181, [10229] = 10229, - [10230] = 10168, - [10231] = 10168, - [10232] = 1522, - [10233] = 1459, + [10230] = 10181, + [10231] = 1465, + [10232] = 10183, + [10233] = 10233, [10234] = 10234, - [10235] = 10235, - [10236] = 10221, - [10237] = 1521, - [10238] = 10174, - [10239] = 10239, - [10240] = 10240, - [10241] = 10228, - [10242] = 10168, - [10243] = 10174, - [10244] = 10174, + [10235] = 10217, + [10236] = 1466, + [10237] = 10237, + [10238] = 10190, + [10239] = 10181, + [10240] = 10183, + [10241] = 10181, + [10242] = 10225, + [10243] = 10199, + [10244] = 10244, [10245] = 10245, - [10246] = 10246, - [10247] = 10247, - [10248] = 1514, - [10249] = 1513, - [10250] = 10250, - [10251] = 10168, - [10252] = 10250, - [10253] = 1464, - [10254] = 1463, - [10255] = 10246, - [10256] = 10176, - [10257] = 10179, - [10258] = 10245, - [10259] = 2130, - [10260] = 10185, - [10261] = 2131, - [10262] = 10174, - [10263] = 10186, - [10264] = 10168, - [10265] = 10222, - [10266] = 10201, - [10267] = 276, - [10268] = 10174, - [10269] = 411, + [10246] = 10181, + [10247] = 1497, + [10248] = 10181, + [10249] = 10192, + [10250] = 10183, + [10251] = 10205, + [10252] = 10252, + [10253] = 10183, + [10254] = 1497, + [10255] = 10181, + [10256] = 10256, + [10257] = 10237, + [10258] = 10220, + [10259] = 10201, + [10260] = 10260, + [10261] = 10181, + [10262] = 10183, + [10263] = 283, + [10264] = 10224, + [10265] = 10265, + [10266] = 10266, + [10267] = 10265, + [10268] = 10266, + [10269] = 10260, [10270] = 10270, - [10271] = 286, - [10272] = 10272, - [10273] = 10272, - [10274] = 10174, + [10271] = 1536, + [10272] = 1470, + [10273] = 1477, + [10274] = 1478, [10275] = 10183, - [10276] = 10276, + [10276] = 10270, [10277] = 10277, - [10278] = 10278, - [10279] = 10172, - [10280] = 10167, - [10281] = 283, - [10282] = 10278, - [10283] = 10277, - [10284] = 10276, - [10285] = 10193, - [10286] = 1515, - [10287] = 285, - [10288] = 10194, - [10289] = 1515, + [10278] = 10189, + [10279] = 10183, + [10280] = 10245, + [10281] = 1505, + [10282] = 1533, + [10283] = 286, + [10284] = 10183, + [10285] = 10183, + [10286] = 10179, + [10287] = 2007, + [10288] = 2002, + [10289] = 10256, [10290] = 10290, [10291] = 10291, [10292] = 10292, [10293] = 10293, - [10294] = 10291, + [10294] = 10294, [10295] = 10295, - [10296] = 10296, - [10297] = 10297, + [10296] = 10292, + [10297] = 10293, [10298] = 10298, - [10299] = 10290, + [10299] = 10299, [10300] = 10300, [10301] = 10301, - [10302] = 10301, - [10303] = 10300, + [10302] = 10290, + [10303] = 10303, [10304] = 10304, [10305] = 10305, [10306] = 10306, - [10307] = 10307, + [10307] = 10299, [10308] = 10308, - [10309] = 10309, - [10310] = 10292, - [10311] = 10293, - [10312] = 10291, - [10313] = 10295, - [10314] = 10290, - [10315] = 10298, - [10316] = 10297, + [10309] = 10294, + [10310] = 10298, + [10311] = 10300, + [10312] = 10312, + [10313] = 10294, + [10314] = 10314, + [10315] = 10305, + [10316] = 10316, [10317] = 10317, - [10318] = 10297, - [10319] = 10298, - [10320] = 10290, - [10321] = 10300, - [10322] = 10301, - [10323] = 10305, - [10324] = 10306, - [10325] = 10307, - [10326] = 10308, - [10327] = 10309, - [10328] = 10292, - [10329] = 10293, - [10330] = 10291, - [10331] = 10295, - [10332] = 10304, - [10333] = 10301, - [10334] = 10308, - [10335] = 10307, - [10336] = 10297, - [10337] = 10298, - [10338] = 10290, - [10339] = 10301, - [10340] = 10306, - [10341] = 10305, - [10342] = 10342, - [10343] = 10305, - [10344] = 10305, - [10345] = 10297, - [10346] = 10306, - [10347] = 10308, - [10348] = 10300, - [10349] = 10309, - [10350] = 10290, + [10318] = 10318, + [10319] = 10319, + [10320] = 10305, + [10321] = 10321, + [10322] = 10306, + [10323] = 10291, + [10324] = 10292, + [10325] = 10293, + [10326] = 10294, + [10327] = 10299, + [10328] = 10308, + [10329] = 10298, + [10330] = 10293, + [10331] = 10300, + [10332] = 10332, + [10333] = 10294, + [10334] = 10306, + [10335] = 10304, + [10336] = 10305, + [10337] = 10306, + [10338] = 10308, + [10339] = 10339, + [10340] = 10316, + [10341] = 10341, + [10342] = 10317, + [10343] = 10314, + [10344] = 10344, + [10345] = 10316, + [10346] = 10318, + [10347] = 10347, + [10348] = 10321, + [10349] = 10314, + [10350] = 10291, [10351] = 10292, [10352] = 10293, - [10353] = 10291, - [10354] = 10295, - [10355] = 10355, - [10356] = 10298, - [10357] = 10297, + [10353] = 10294, + [10354] = 10354, + [10355] = 10341, + [10356] = 10318, + [10357] = 10339, [10358] = 10358, - [10359] = 10359, - [10360] = 10360, - [10361] = 10306, - [10362] = 10295, - [10363] = 10297, - [10364] = 10298, - [10365] = 10290, - [10366] = 10301, - [10367] = 10291, - [10368] = 10293, - [10369] = 10292, - [10370] = 10309, + [10359] = 10344, + [10360] = 10316, + [10361] = 10301, + [10362] = 10304, + [10363] = 10305, + [10364] = 10306, + [10365] = 10308, + [10366] = 10317, + [10367] = 10314, + [10368] = 10290, + [10369] = 10304, + [10370] = 10314, [10371] = 10305, - [10372] = 10308, + [10372] = 10316, [10373] = 10306, - [10374] = 10307, - [10375] = 10309, - [10376] = 10306, - [10377] = 10293, - [10378] = 10295, - [10379] = 10305, - [10380] = 10380, - [10381] = 10307, - [10382] = 10308, - [10383] = 10301, - [10384] = 10300, - [10385] = 10297, - [10386] = 10298, - [10387] = 10290, - [10388] = 10301, - [10389] = 10290, - [10390] = 10390, - [10391] = 10298, - [10392] = 10306, - [10393] = 10305, - [10394] = 10309, - [10395] = 10292, - [10396] = 10295, - [10397] = 10291, - [10398] = 10293, - [10399] = 10292, - [10400] = 10309, - [10401] = 10297, - [10402] = 10298, - [10403] = 10290, - [10404] = 10301, - [10405] = 10308, - [10406] = 10406, - [10407] = 10307, - [10408] = 10306, - [10409] = 10306, - [10410] = 10305, - [10411] = 10355, - [10412] = 10293, - [10413] = 10291, - [10414] = 10301, - [10415] = 10300, - [10416] = 10290, - [10417] = 10297, - [10418] = 10298, - [10419] = 10290, - [10420] = 10301, - [10421] = 10298, - [10422] = 10297, - [10423] = 10423, - [10424] = 10306, - [10425] = 10406, - [10426] = 10355, - [10427] = 10427, - [10428] = 10295, - [10429] = 10427, - [10430] = 10430, - [10431] = 10298, - [10432] = 10290, - [10433] = 10301, - [10434] = 10295, - [10435] = 10435, - [10436] = 10306, - [10437] = 10295, - [10438] = 10291, - [10439] = 10293, - [10440] = 10292, - [10441] = 10309, - [10442] = 10298, - [10443] = 10290, + [10374] = 10321, + [10375] = 10375, + [10376] = 10292, + [10377] = 10294, + [10378] = 10298, + [10379] = 10318, + [10380] = 10321, + [10381] = 10381, + [10382] = 10299, + [10383] = 10308, + [10384] = 10304, + [10385] = 10305, + [10386] = 10306, + [10387] = 10308, + [10388] = 10308, + [10389] = 10304, + [10390] = 10305, + [10391] = 10316, + [10392] = 10300, + [10393] = 10306, + [10394] = 10300, + [10395] = 10299, + [10396] = 10308, + [10397] = 10314, + [10398] = 10339, + [10399] = 10316, + [10400] = 10304, + [10401] = 10305, + [10402] = 10306, + [10403] = 10308, + [10404] = 10314, + [10405] = 10321, + [10406] = 10341, + [10407] = 10316, + [10408] = 10317, + [10409] = 10341, + [10410] = 10316, + [10411] = 10291, + [10412] = 10314, + [10413] = 10292, + [10414] = 10317, + [10415] = 10293, + [10416] = 10304, + [10417] = 10305, + [10418] = 10306, + [10419] = 10308, + [10420] = 10339, + [10421] = 10316, + [10422] = 10317, + [10423] = 10316, + [10424] = 10318, + [10425] = 10318, + [10426] = 10426, + [10427] = 10308, + [10428] = 10321, + [10429] = 10321, + [10430] = 10305, + [10431] = 10306, + [10432] = 10308, + [10433] = 10433, + [10434] = 10291, + [10435] = 10316, + [10436] = 10291, + [10437] = 10292, + [10438] = 10293, + [10439] = 10292, + [10440] = 10293, + [10441] = 10305, + [10442] = 10306, + [10443] = 10308, [10444] = 10301, - [10445] = 10308, - [10446] = 10295, - [10447] = 10306, - [10448] = 10307, - [10449] = 10306, - [10450] = 10305, - [10451] = 10297, - [10452] = 10298, - [10453] = 10298, - [10454] = 10290, + [10445] = 10301, + [10446] = 10316, + [10447] = 10294, + [10448] = 10290, + [10449] = 10298, + [10450] = 10339, + [10451] = 10300, + [10452] = 10305, + [10453] = 10306, + [10454] = 10294, [10455] = 10290, - [10456] = 10430, - [10457] = 10306, - [10458] = 10301, + [10456] = 10316, + [10457] = 1725, + [10458] = 10298, [10459] = 10300, - [10460] = 10290, - [10461] = 10298, - [10462] = 10297, - [10463] = 10298, - [10464] = 10290, - [10465] = 10304, - [10466] = 10427, - [10467] = 10306, - [10468] = 10300, - [10469] = 10301, - [10470] = 10296, - [10471] = 10342, - [10472] = 1675, - [10473] = 10298, - [10474] = 10290, - [10475] = 10309, - [10476] = 10293, - [10477] = 10306, - [10478] = 10358, - [10479] = 10306, + [10460] = 10339, + [10461] = 10294, + [10462] = 10305, + [10463] = 10306, + [10464] = 10316, + [10465] = 10433, + [10466] = 10316, + [10467] = 10316, + [10468] = 10318, + [10469] = 1637, + [10470] = 10470, + [10471] = 10317, + [10472] = 10305, + [10473] = 10306, + [10474] = 10321, + [10475] = 10318, + [10476] = 10316, + [10477] = 10477, + [10478] = 10317, + [10479] = 1532, [10480] = 10480, - [10481] = 10307, - [10482] = 10298, - [10483] = 10290, - [10484] = 10295, - [10485] = 10406, - [10486] = 10306, - [10487] = 10291, - [10488] = 10293, - [10489] = 10292, - [10490] = 10298, - [10491] = 10290, - [10492] = 10309, - [10493] = 10423, - [10494] = 10306, - [10495] = 10308, - [10496] = 10307, - [10497] = 10306, - [10498] = 10298, - [10499] = 10290, - [10500] = 10305, - [10501] = 10308, - [10502] = 10306, - [10503] = 10480, - [10504] = 10301, - [10505] = 10298, - [10506] = 10290, - [10507] = 10300, - [10508] = 10423, - [10509] = 10306, - [10510] = 10290, - [10511] = 10298, - [10512] = 10298, - [10513] = 10290, - [10514] = 10297, - [10515] = 10291, - [10516] = 10306, - [10517] = 10306, - [10518] = 10292, - [10519] = 10298, - [10520] = 10290, - [10521] = 10293, - [10522] = 10306, - [10523] = 10291, - [10524] = 10524, - [10525] = 10298, - [10526] = 10290, - [10527] = 10423, - [10528] = 10306, - [10529] = 10406, - [10530] = 10355, - [10531] = 10298, - [10532] = 10290, - [10533] = 10427, - [10534] = 10306, - [10535] = 10295, - [10536] = 10295, - [10537] = 10298, - [10538] = 10290, - [10539] = 10291, - [10540] = 10306, - [10541] = 10293, - [10542] = 10292, - [10543] = 10298, - [10544] = 10290, - [10545] = 10309, - [10546] = 10306, - [10547] = 10308, - [10548] = 10307, - [10549] = 10298, - [10550] = 10290, - [10551] = 10306, - [10552] = 10306, - [10553] = 10305, - [10554] = 10301, - [10555] = 10298, - [10556] = 10290, - [10557] = 10300, - [10558] = 10306, - [10559] = 10290, - [10560] = 10298, - [10561] = 10298, - [10562] = 10290, - [10563] = 10297, - [10564] = 10306, - [10565] = 10297, - [10566] = 10290, - [10567] = 10298, - [10568] = 10290, + [10481] = 10305, + [10482] = 10306, + [10483] = 10291, + [10484] = 10292, + [10485] = 10316, + [10486] = 10308, + [10487] = 10304, + [10488] = 10299, + [10489] = 10305, + [10490] = 10306, + [10491] = 10293, + [10492] = 10344, + [10493] = 10316, + [10494] = 10305, + [10495] = 10306, + [10496] = 10299, + [10497] = 10305, + [10498] = 10306, + [10499] = 10499, + [10500] = 10314, + [10501] = 10316, + [10502] = 10321, + [10503] = 10301, + [10504] = 10305, + [10505] = 10306, + [10506] = 10506, + [10507] = 10290, + [10508] = 10316, + [10509] = 10299, + [10510] = 10298, + [10511] = 10305, + [10512] = 10306, + [10513] = 10300, + [10514] = 10304, + [10515] = 10316, + [10516] = 10305, + [10517] = 10294, + [10518] = 10305, + [10519] = 10306, + [10520] = 10306, + [10521] = 10316, + [10522] = 10299, + [10523] = 10304, + [10524] = 10305, + [10525] = 10306, + [10526] = 10305, + [10527] = 10316, + [10528] = 10308, + [10529] = 10306, + [10530] = 10305, + [10531] = 10306, + [10532] = 10299, + [10533] = 10316, + [10534] = 10341, + [10535] = 10308, + [10536] = 10305, + [10537] = 10306, + [10538] = 10291, + [10539] = 10316, + [10540] = 10292, + [10541] = 10318, + [10542] = 10305, + [10543] = 10306, + [10544] = 10304, + [10545] = 10316, + [10546] = 10314, + [10547] = 10547, + [10548] = 10305, + [10549] = 10306, + [10550] = 10341, + [10551] = 10316, + [10552] = 10305, + [10553] = 10316, + [10554] = 10305, + [10555] = 10306, + [10556] = 10314, + [10557] = 10316, + [10558] = 10317, + [10559] = 10318, + [10560] = 10305, + [10561] = 10306, + [10562] = 10316, + [10563] = 10308, + [10564] = 10339, + [10565] = 10305, + [10566] = 10306, + [10567] = 10316, + [10568] = 10316, [10569] = 10304, - [10570] = 10306, - [10571] = 10300, - [10572] = 10301, - [10573] = 10298, - [10574] = 10290, - [10575] = 10296, + [10570] = 10317, + [10571] = 10305, + [10572] = 10306, + [10573] = 10318, + [10574] = 10316, + [10575] = 10321, [10576] = 10306, - [10577] = 10342, - [10578] = 10305, - [10579] = 10298, - [10580] = 10290, - [10581] = 10358, - [10582] = 10306, - [10583] = 10306, - [10584] = 10480, - [10585] = 10298, - [10586] = 10290, - [10587] = 10295, - [10588] = 10306, - [10589] = 10291, - [10590] = 10293, - [10591] = 10298, - [10592] = 10290, - [10593] = 10292, - [10594] = 10306, - [10595] = 10309, - [10596] = 10308, - [10597] = 10298, - [10598] = 10290, - [10599] = 10307, - [10600] = 10306, - [10601] = 10301, - [10602] = 10305, - [10603] = 10298, - [10604] = 10290, - [10605] = 10307, - [10606] = 10306, - [10607] = 10308, - [10608] = 10301, + [10577] = 10305, + [10578] = 10306, + [10579] = 10291, + [10580] = 10316, + [10581] = 10292, + [10582] = 10321, + [10583] = 10305, + [10584] = 10306, + [10585] = 10293, + [10586] = 10316, + [10587] = 10294, + [10588] = 10291, + [10589] = 10305, + [10590] = 10306, + [10591] = 10292, + [10592] = 10316, + [10593] = 10299, + [10594] = 10293, + [10595] = 10305, + [10596] = 10306, + [10597] = 10597, + [10598] = 10316, + [10599] = 10506, + [10600] = 10600, + [10601] = 10305, + [10602] = 10306, + [10603] = 10301, + [10604] = 10316, + [10605] = 10305, + [10606] = 10290, + [10607] = 10305, + [10608] = 10306, [10609] = 10298, - [10610] = 10290, - [10611] = 10300, - [10612] = 10306, - [10613] = 10290, - [10614] = 10298, - [10615] = 10298, - [10616] = 10290, - [10617] = 10297, - [10618] = 10306, - [10619] = 10309, - [10620] = 10292, - [10621] = 10298, - [10622] = 10290, - [10623] = 10293, - [10624] = 10306, - [10625] = 10291, - [10626] = 10423, - [10627] = 10298, - [10628] = 10290, - [10629] = 10406, - [10630] = 10306, - [10631] = 10355, - [10632] = 10298, - [10633] = 10290, - [10634] = 10427, + [10610] = 10316, + [10611] = 10306, + [10612] = 10300, + [10613] = 10305, + [10614] = 10306, + [10615] = 10294, + [10616] = 10316, + [10617] = 10308, + [10618] = 10618, + [10619] = 10305, + [10620] = 10306, + [10621] = 10621, + [10622] = 10316, + [10623] = 10299, + [10624] = 10304, + [10625] = 10305, + [10626] = 10306, + [10627] = 10308, + [10628] = 10316, + [10629] = 10305, + [10630] = 10305, + [10631] = 10306, + [10632] = 10306, + [10633] = 10316, + [10634] = 10305, [10635] = 10306, - [10636] = 10298, - [10637] = 10290, + [10636] = 10316, + [10637] = 10305, [10638] = 10306, - [10639] = 10298, - [10640] = 10290, - [10641] = 10306, - [10642] = 10298, - [10643] = 10298, - [10644] = 10298, - [10645] = 10298, - [10646] = 10298, - [10647] = 10298, - [10648] = 10298, - [10649] = 10298, - [10650] = 10298, - [10651] = 10298, - [10652] = 10298, - [10653] = 10298, - [10654] = 10298, - [10655] = 10298, - [10656] = 10298, - [10657] = 10298, - [10658] = 10298, - [10659] = 10298, - [10660] = 10298, - [10661] = 10298, - [10662] = 10298, - [10663] = 10295, - [10664] = 10664, - [10665] = 10292, - [10666] = 10298, - [10667] = 10295, - [10668] = 10668, - [10669] = 10309, - [10670] = 10291, - [10671] = 10671, - [10672] = 10672, - [10673] = 10293, - [10674] = 10292, - [10675] = 10308, - [10676] = 10307, - [10677] = 10480, - [10678] = 10309, - [10679] = 10306, - [10680] = 10680, - [10681] = 10308, - [10682] = 10307, - [10683] = 10297, - [10684] = 10298, - [10685] = 10290, - [10686] = 10671, - [10687] = 10359, - [10688] = 10360, - [10689] = 10358, - [10690] = 10306, - [10691] = 10380, - [10692] = 10358, - [10693] = 10305, - [10694] = 10305, - [10695] = 10342, - [10696] = 10305, - [10697] = 10296, - [10698] = 10300, - [10699] = 10290, - [10700] = 10298, - [10701] = 10701, - [10702] = 1595, - [10703] = 10301, - [10704] = 10300, - [10705] = 10297, - [10706] = 10701, + [10639] = 10316, + [10640] = 10305, + [10641] = 10305, + [10642] = 10305, + [10643] = 10305, + [10644] = 10305, + [10645] = 10305, + [10646] = 10305, + [10647] = 10305, + [10648] = 10305, + [10649] = 10305, + [10650] = 10305, + [10651] = 10305, + [10652] = 10305, + [10653] = 10305, + [10654] = 10305, + [10655] = 10305, + [10656] = 10305, + [10657] = 10305, + [10658] = 10305, + [10659] = 10305, + [10660] = 10305, + [10661] = 10661, + [10662] = 10294, + [10663] = 10663, + [10664] = 10300, + [10665] = 10301, + [10666] = 10666, + [10667] = 10299, + [10668] = 10381, + [10669] = 10663, + [10670] = 10670, + [10671] = 10308, + [10672] = 10293, + [10673] = 10673, + [10674] = 1517, + [10675] = 10339, + [10676] = 10316, + [10677] = 10677, + [10678] = 10678, + [10679] = 10321, + [10680] = 10290, + [10681] = 10304, + [10682] = 10305, + [10683] = 10304, + [10684] = 10684, + [10685] = 10480, + [10686] = 10499, + [10687] = 10341, + [10688] = 1532, + [10689] = 10344, + [10690] = 10314, + [10691] = 10341, + [10692] = 10305, + [10693] = 10339, + [10694] = 10341, + [10695] = 1625, + [10696] = 10301, + [10697] = 10298, + [10698] = 10314, + [10699] = 10699, + [10700] = 10316, + [10701] = 10317, + [10702] = 10314, + [10703] = 10290, + [10704] = 10321, + [10705] = 10298, + [10706] = 10306, [10707] = 10304, - [10708] = 10290, - [10709] = 10298, - [10710] = 1662, - [10711] = 1665, - [10712] = 10297, - [10713] = 1667, - [10714] = 1669, - [10715] = 10297, - [10716] = 1677, - [10717] = 10295, - [10718] = 10291, - [10719] = 10293, - [10720] = 10292, - [10721] = 10301, - [10722] = 10317, - [10723] = 10298, - [10724] = 10309, - [10725] = 10308, - [10726] = 10307, - [10727] = 10306, - [10728] = 10358, - [10729] = 10729, - [10730] = 10298, - [10731] = 10296, - [10732] = 10290, - [10733] = 10733, - [10734] = 10304, - [10735] = 10301, - [10736] = 10300, + [10708] = 10305, + [10709] = 10306, + [10710] = 10306, + [10711] = 10299, + [10712] = 10308, + [10713] = 10318, + [10714] = 10300, + [10715] = 10339, + [10716] = 10316, + [10717] = 10317, + [10718] = 10318, + [10719] = 10308, + [10720] = 10720, + [10721] = 10314, + [10722] = 10304, + [10723] = 10305, + [10724] = 10306, + [10725] = 10299, + [10726] = 10339, + [10727] = 10308, + [10728] = 10316, + [10729] = 10321, + [10730] = 10312, + [10731] = 10358, + [10732] = 10291, + [10733] = 10341, + [10734] = 10292, + [10735] = 10735, + [10736] = 10736, [10737] = 10737, - [10738] = 10738, - [10739] = 10739, - [10740] = 10290, - [10741] = 10298, - [10742] = 10297, - [10743] = 1678, - [10744] = 10300, - [10745] = 10301, - [10746] = 10296, - [10747] = 1664, - [10748] = 10342, - [10749] = 10749, - [10750] = 10423, - [10751] = 10406, - [10752] = 10355, - [10753] = 10427, - [10754] = 10305, - [10755] = 10358, - [10756] = 10306, - [10757] = 1492, - [10758] = 10307, - [10759] = 10308, - [10760] = 1689, - [10761] = 10309, + [10738] = 10314, + [10739] = 10293, + [10740] = 10317, + [10741] = 10299, + [10742] = 10339, + [10743] = 10316, + [10744] = 10318, + [10745] = 10317, + [10746] = 10318, + [10747] = 10621, + [10748] = 10301, + [10749] = 10290, + [10750] = 10298, + [10751] = 10300, + [10752] = 10316, + [10753] = 10317, + [10754] = 10321, + [10755] = 10321, + [10756] = 10756, + [10757] = 10757, + [10758] = 10291, + [10759] = 10318, + [10760] = 10291, + [10761] = 10292, [10762] = 10292, - [10763] = 10295, - [10764] = 1691, + [10763] = 10293, + [10764] = 10301, [10765] = 10293, - [10766] = 10766, - [10767] = 10291, - [10768] = 10293, - [10769] = 10292, - [10770] = 10309, - [10771] = 10308, - [10772] = 10307, - [10773] = 10306, - [10774] = 10358, - [10775] = 10305, - [10776] = 10291, - [10777] = 10296, - [10778] = 10778, - [10779] = 10423, - [10780] = 10301, - [10781] = 10300, - [10782] = 10290, - [10783] = 10298, - [10784] = 1666, - [10785] = 10297, - [10786] = 1493, - [10787] = 10406, - [10788] = 1494, - [10789] = 1495, - [10790] = 10427, - [10791] = 10295, - [10792] = 10309, - [10793] = 10355, - [10794] = 10297, - [10795] = 10795, - [10796] = 10796, - [10797] = 10295, - [10798] = 10427, - [10799] = 10355, - [10800] = 10524, - [10801] = 10295, - [10802] = 10430, - [10803] = 10406, - [10804] = 10423, - [10805] = 10298, - [10806] = 10291, - [10807] = 10427, - [10808] = 10293, - [10809] = 10292, - [10810] = 10309, - [10811] = 10355, - [10812] = 10406, - [10813] = 10308, - [10814] = 10423, - [10815] = 10307, - [10816] = 10306, - [10817] = 10358, - [10818] = 10305, - [10819] = 10290, - [10820] = 10291, - [10821] = 10821, - [10822] = 10822, + [10766] = 10317, + [10767] = 10301, + [10768] = 10290, + [10769] = 10298, + [10770] = 10300, + [10771] = 10294, + [10772] = 10290, + [10773] = 10298, + [10774] = 10300, + [10775] = 10294, + [10776] = 10308, + [10777] = 10294, + [10778] = 10291, + [10779] = 10779, + [10780] = 10291, + [10781] = 10321, + [10782] = 10321, + [10783] = 10783, + [10784] = 10300, + [10785] = 10785, + [10786] = 10786, + [10787] = 1614, + [10788] = 10341, + [10789] = 10433, + [10790] = 10790, + [10791] = 10291, + [10792] = 10292, + [10793] = 1615, + [10794] = 10684, + [10795] = 10291, + [10796] = 10339, + [10797] = 10292, + [10798] = 10798, + [10799] = 10790, + [10800] = 1617, + [10801] = 10801, + [10802] = 10802, + [10803] = 10803, + [10804] = 1642, + [10805] = 10293, + [10806] = 1628, + [10807] = 10317, + [10808] = 10294, + [10809] = 10809, + [10810] = 1630, + [10811] = 10811, + [10812] = 10812, + [10813] = 10813, + [10814] = 10304, + [10815] = 10293, + [10816] = 10294, + [10817] = 10817, + [10818] = 10341, + [10819] = 10304, + [10820] = 10305, + [10821] = 10306, + [10822] = 10344, [10823] = 10823, - [10824] = 10296, - [10825] = 10304, - [10826] = 10826, - [10827] = 10300, - [10828] = 10301, - [10829] = 10300, - [10830] = 10830, - [10831] = 10293, - [10832] = 10290, - [10833] = 10298, - [10834] = 10297, - [10835] = 10301, - [10836] = 10292, - [10837] = 1492, - [10838] = 10838, - [10839] = 10839, - [10840] = 1493, - [10841] = 10296, - [10842] = 1494, - [10843] = 10843, - [10844] = 10342, - [10845] = 10305, - [10846] = 1495, - [10847] = 10358, - [10848] = 10306, - [10849] = 10309, - [10850] = 10307, - [10851] = 10308, - [10852] = 10295, - [10853] = 10427, - [10854] = 10355, - [10855] = 10406, - [10856] = 10423, - [10857] = 10857, - [10858] = 10355, - [10859] = 10296, - [10860] = 10291, - [10861] = 10293, - [10862] = 10423, - [10863] = 10406, - [10864] = 10355, - [10865] = 10427, - [10866] = 10292, - [10867] = 10308, - [10868] = 10868, - [10869] = 10307, - [10870] = 10309, - [10871] = 10308, - [10872] = 10307, - [10873] = 10306, - [10874] = 10358, - [10875] = 10480, - [10876] = 10306, - [10877] = 10358, - [10878] = 10305, - [10879] = 10296, - [10880] = 10880, - [10881] = 10292, - [10882] = 10380, - [10883] = 10293, - [10884] = 10301, - [10885] = 10300, - [10886] = 10290, - [10887] = 10305, - [10888] = 10888, - [10889] = 10298, - [10890] = 10672, - [10891] = 10891, - [10892] = 10297, - [10893] = 10309, - [10894] = 10671, - [10895] = 10701, - [10896] = 10423, - [10897] = 10317, - [10898] = 10342, + [10824] = 10299, + [10825] = 10825, + [10826] = 10301, + [10827] = 10827, + [10828] = 10308, + [10829] = 10303, + [10830] = 10290, + [10831] = 10304, + [10832] = 10832, + [10833] = 1511, + [10834] = 10305, + [10835] = 10344, + [10836] = 10318, + [10837] = 10306, + [10838] = 10299, + [10839] = 10308, + [10840] = 10341, + [10841] = 10344, + [10842] = 10344, + [10843] = 10314, + [10844] = 10298, + [10845] = 10339, + [10846] = 10316, + [10847] = 10300, + [10848] = 10291, + [10849] = 10317, + [10850] = 10850, + [10851] = 10318, + [10852] = 10294, + [10853] = 10853, + [10854] = 10314, + [10855] = 10314, + [10856] = 10321, + [10857] = 10341, + [10858] = 10316, + [10859] = 10291, + [10860] = 10301, + [10861] = 10290, + [10862] = 10298, + [10863] = 10300, + [10864] = 10292, + [10865] = 10293, + [10866] = 10866, + [10867] = 10314, + [10868] = 10358, + [10869] = 10317, + [10870] = 10318, + [10871] = 10305, + [10872] = 10301, + [10873] = 10290, + [10874] = 10298, + [10875] = 10314, + [10876] = 10304, + [10877] = 10300, + [10878] = 10293, + [10879] = 10294, + [10880] = 10318, + [10881] = 10881, + [10882] = 10813, + [10883] = 10304, + [10884] = 10304, + [10885] = 10699, + [10886] = 10305, + [10887] = 10306, + [10888] = 10670, + [10889] = 10299, + [10890] = 10321, + [10891] = 10308, + [10892] = 10684, + [10893] = 10699, + [10894] = 1664, + [10895] = 10720, + [10896] = 10670, + [10897] = 10735, + [10898] = 10736, [10899] = 10737, - [10900] = 10738, - [10901] = 10739, - [10902] = 10296, - [10903] = 10406, - [10904] = 10355, - [10905] = 10427, - [10906] = 10295, - [10907] = 10297, - [10908] = 10298, - [10909] = 10295, - [10910] = 10427, - [10911] = 10301, - [10912] = 10300, - [10913] = 10306, - [10914] = 10406, - [10915] = 10423, - [10916] = 10304, - [10917] = 10290, - [10918] = 10298, - [10919] = 10297, - [10920] = 10290, - [10921] = 10300, - [10922] = 10291, - [10923] = 10293, - [10924] = 10924, - [10925] = 10292, - [10926] = 10309, - [10927] = 10308, - [10928] = 10307, - [10929] = 10306, - [10930] = 10358, + [10900] = 10900, + [10901] = 10291, + [10902] = 10305, + [10903] = 10306, + [10904] = 10904, + [10905] = 10292, + [10906] = 10293, + [10907] = 10294, + [10908] = 10306, + [10909] = 10909, + [10910] = 10301, + [10911] = 10911, + [10912] = 10339, + [10913] = 10341, + [10914] = 10358, + [10915] = 10661, + [10916] = 10344, + [10917] = 1535, + [10918] = 10314, + [10919] = 1666, + [10920] = 10299, + [10921] = 10308, + [10922] = 10339, + [10923] = 10314, + [10924] = 10316, + [10925] = 10317, + [10926] = 10305, + [10927] = 10318, + [10928] = 1640, + [10929] = 10316, + [10930] = 10304, [10931] = 10305, - [10932] = 10301, - [10933] = 10296, - [10934] = 10796, - [10935] = 10301, - [10936] = 10297, - [10937] = 10300, - [10938] = 10290, - [10939] = 10672, - [10940] = 10298, - [10941] = 10297, - [10942] = 10296, - [10943] = 10671, - [10944] = 10342, - [10945] = 10305, + [10932] = 10306, + [10933] = 10299, + [10934] = 10292, + [10935] = 10308, + [10936] = 10317, + [10937] = 10670, + [10938] = 10308, + [10939] = 10939, + [10940] = 10290, + [10941] = 10684, + [10942] = 10321, + [10943] = 10341, + [10944] = 10735, + [10945] = 10736, [10946] = 10737, - [10947] = 10738, - [10948] = 10739, - [10949] = 10358, - [10950] = 10306, - [10951] = 10307, - [10952] = 10308, - [10953] = 10309, - [10954] = 10292, - [10955] = 10293, - [10956] = 10291, - [10957] = 10795, - [10958] = 10295, - [10959] = 10427, - [10960] = 10355, - [10961] = 10406, - [10962] = 10291, - [10963] = 10680, - [10964] = 10296, - [10965] = 10672, - [10966] = 10423, - [10967] = 10423, - [10968] = 10968, - [10969] = 10671, - [10970] = 10342, + [10947] = 10318, + [10948] = 10314, + [10949] = 10291, + [10950] = 10339, + [10951] = 10316, + [10952] = 10317, + [10953] = 10293, + [10954] = 10358, + [10955] = 10294, + [10956] = 10318, + [10957] = 10294, + [10958] = 10304, + [10959] = 10321, + [10960] = 10292, + [10961] = 10291, + [10962] = 10292, + [10963] = 10670, + [10964] = 10293, + [10965] = 10965, + [10966] = 10304, + [10967] = 10684, + [10968] = 10305, + [10969] = 10306, + [10970] = 10736, [10971] = 10737, - [10972] = 10738, - [10973] = 10739, - [10974] = 10406, - [10975] = 10891, - [10976] = 10291, - [10977] = 10293, - [10978] = 10292, - [10979] = 10821, - [10980] = 10888, - [10981] = 10309, - [10982] = 10308, - [10983] = 10822, - [10984] = 10307, - [10985] = 10292, - [10986] = 10986, - [10987] = 10987, - [10988] = 10672, - [10989] = 10749, - [10990] = 10358, - [10991] = 10305, - [10992] = 10671, - [10993] = 10355, + [10972] = 10293, + [10973] = 10306, + [10974] = 10358, + [10975] = 10294, + [10976] = 10299, + [10977] = 10308, + [10978] = 10301, + [10979] = 10290, + [10980] = 10292, + [10981] = 10298, + [10982] = 10300, + [10983] = 10294, + [10984] = 10341, + [10985] = 10339, + [10986] = 10670, + [10987] = 10304, + [10988] = 10305, + [10989] = 10344, + [10990] = 10684, + [10991] = 10314, + [10992] = 10735, + [10993] = 10736, [10994] = 10737, - [10995] = 10738, - [10996] = 10739, - [10997] = 10823, - [10998] = 10672, - [10999] = 10296, - [11000] = 10427, - [11001] = 10295, - [11002] = 10671, - [11003] = 10301, + [10995] = 10301, + [10996] = 10670, + [10997] = 10290, + [10998] = 10306, + [10999] = 10298, + [11000] = 10684, + [11001] = 10300, + [11002] = 10735, + [11003] = 10736, [11004] = 10737, - [11005] = 10738, - [11006] = 10739, - [11007] = 10300, - [11008] = 10672, - [11009] = 11009, - [11010] = 10290, - [11011] = 10305, - [11012] = 10671, - [11013] = 10298, + [11005] = 10294, + [11006] = 10670, + [11007] = 10426, + [11008] = 10299, + [11009] = 10316, + [11010] = 10684, + [11011] = 10308, + [11012] = 10735, + [11013] = 10736, [11014] = 10737, - [11015] = 10738, - [11016] = 10739, - [11017] = 10297, - [11018] = 10672, - [11019] = 11019, - [11020] = 11020, - [11021] = 11021, - [11022] = 10671, - [11023] = 10295, + [11015] = 10433, + [11016] = 10670, + [11017] = 10341, + [11018] = 10292, + [11019] = 10339, + [11020] = 10684, + [11021] = 10316, + [11022] = 10735, + [11023] = 10736, [11024] = 10737, - [11025] = 10738, - [11026] = 10739, - [11027] = 10427, - [11028] = 10672, - [11029] = 10355, - [11030] = 10406, - [11031] = 10423, - [11032] = 10671, - [11033] = 11033, + [11025] = 11025, + [11026] = 10670, + [11027] = 10433, + [11028] = 10305, + [11029] = 10321, + [11030] = 10684, + [11031] = 10347, + [11032] = 10735, + [11033] = 10736, [11034] = 10737, - [11035] = 10738, - [11036] = 10739, - [11037] = 10380, - [11038] = 10672, - [11039] = 10297, - [11040] = 10291, - [11041] = 10293, - [11042] = 10671, - [11043] = 11043, + [11035] = 11035, + [11036] = 10670, + [11037] = 10317, + [11038] = 10306, + [11039] = 10317, + [11040] = 10684, + [11041] = 10344, + [11042] = 10735, + [11043] = 10736, [11044] = 10737, - [11045] = 10738, - [11046] = 10739, - [11047] = 10826, - [11048] = 10672, - [11049] = 10309, - [11050] = 10308, - [11051] = 10307, - [11052] = 10671, - [11053] = 10830, + [11045] = 10314, + [11046] = 10670, + [11047] = 10314, + [11048] = 10299, + [11049] = 10318, + [11050] = 10684, + [11051] = 10339, + [11052] = 10735, + [11053] = 10736, [11054] = 10737, - [11055] = 10738, - [11056] = 10739, - [11057] = 10306, - [11058] = 10672, - [11059] = 11059, - [11060] = 10358, - [11061] = 10298, - [11062] = 10671, - [11063] = 10305, + [11055] = 10316, + [11056] = 10670, + [11057] = 10316, + [11058] = 10317, + [11059] = 10317, + [11060] = 10684, + [11061] = 10318, + [11062] = 10735, + [11063] = 10736, [11064] = 10737, - [11065] = 10738, - [11066] = 10739, - [11067] = 10290, - [11068] = 10672, - [11069] = 10296, - [11070] = 10300, - [11071] = 10293, - [11072] = 10671, - [11073] = 10301, + [11065] = 10304, + [11066] = 10670, + [11067] = 10318, + [11068] = 10305, + [11069] = 10321, + [11070] = 10684, + [11071] = 10358, + [11072] = 10735, + [11073] = 10736, [11074] = 10737, - [11075] = 10738, - [11076] = 10739, - [11077] = 10301, - [11078] = 10672, - [11079] = 10300, - [11080] = 10290, - [11081] = 10880, - [11082] = 10671, - [11083] = 10298, + [11075] = 10291, + [11076] = 10670, + [11077] = 10292, + [11078] = 10293, + [11079] = 10294, + [11080] = 10684, + [11081] = 10318, + [11082] = 10735, + [11083] = 10736, [11084] = 10737, - [11085] = 10738, - [11086] = 10739, - [11087] = 10297, - [11088] = 10672, - [11089] = 10296, - [11090] = 10342, - [11091] = 10305, - [11092] = 10671, - [11093] = 11093, + [11085] = 10306, + [11086] = 10670, + [11087] = 10299, + [11088] = 10299, + [11089] = 10321, + [11090] = 10684, + [11091] = 10291, + [11092] = 10735, + [11093] = 10736, [11094] = 10737, - [11095] = 10738, - [11096] = 10739, - [11097] = 10358, - [11098] = 10672, - [11099] = 10306, - [11100] = 10307, - [11101] = 10924, - [11102] = 10671, - [11103] = 10308, + [11095] = 10308, + [11096] = 10670, + [11097] = 10308, + [11098] = 10293, + [11099] = 10304, + [11100] = 10684, + [11101] = 10291, + [11102] = 10735, + [11103] = 10736, [11104] = 10737, - [11105] = 10738, - [11106] = 10739, - [11107] = 10309, - [11108] = 10672, - [11109] = 10292, - [11110] = 10293, - [11111] = 10291, - [11112] = 10671, - [11113] = 11113, + [11105] = 10305, + [11106] = 10670, + [11107] = 11107, + [11108] = 10291, + [11109] = 10306, + [11110] = 10684, + [11111] = 10720, + [11112] = 10735, + [11113] = 10736, [11114] = 10737, - [11115] = 10738, - [11116] = 10739, - [11117] = 10306, - [11118] = 10672, + [11115] = 10299, + [11116] = 10670, + [11117] = 10292, + [11118] = 1511, [11119] = 11119, - [11120] = 10423, - [11121] = 10406, - [11122] = 10671, - [11123] = 10355, + [11120] = 10684, + [11121] = 10293, + [11122] = 10735, + [11123] = 10736, [11124] = 10737, - [11125] = 10738, - [11126] = 10739, - [11127] = 10427, - [11128] = 10672, - [11129] = 10295, - [11130] = 10427, - [11131] = 10857, - [11132] = 10671, - [11133] = 10355, + [11125] = 10308, + [11126] = 10670, + [11127] = 10735, + [11128] = 10965, + [11129] = 11129, + [11130] = 10684, + [11131] = 10292, + [11132] = 10735, + [11133] = 10736, [11134] = 10737, - [11135] = 10738, - [11136] = 10739, - [11137] = 10406, - [11138] = 10672, - [11139] = 10423, - [11140] = 10295, - [11141] = 10291, - [11142] = 10671, - [11143] = 10293, + [11135] = 10304, + [11136] = 10670, + [11137] = 10305, + [11138] = 10306, + [11139] = 10301, + [11140] = 10684, + [11141] = 10290, + [11142] = 10735, + [11143] = 10736, [11144] = 10737, - [11145] = 10738, - [11146] = 10739, - [11147] = 10292, - [11148] = 10672, - [11149] = 10309, - [11150] = 10308, - [11151] = 10307, - [11152] = 10671, - [11153] = 10306, + [11145] = 10299, + [11146] = 10670, + [11147] = 10298, + [11148] = 10308, + [11149] = 10300, + [11150] = 10684, + [11151] = 1517, + [11152] = 10735, + [11153] = 10736, [11154] = 10737, - [11155] = 10738, - [11156] = 10739, - [11157] = 10358, - [11158] = 10672, - [11159] = 10305, - [11160] = 10296, - [11161] = 10301, - [11162] = 10671, - [11163] = 10300, + [11155] = 10293, + [11156] = 10670, + [11157] = 10661, + [11158] = 10308, + [11159] = 10294, + [11160] = 10684, + [11161] = 10321, + [11162] = 10735, + [11163] = 10736, [11164] = 10737, - [11165] = 10738, - [11166] = 10739, - [11167] = 10290, - [11168] = 10672, - [11169] = 10298, - [11170] = 10297, - [11171] = 11171, - [11172] = 10671, - [11173] = 10297, + [11165] = 10341, + [11166] = 10670, + [11167] = 10294, + [11168] = 10314, + [11169] = 10673, + [11170] = 10684, + [11171] = 10677, + [11172] = 10735, + [11173] = 10736, [11174] = 10737, - [11175] = 10738, - [11176] = 10739, - [11177] = 10298, - [11178] = 10672, - [11179] = 10290, - [11180] = 10300, - [11181] = 10301, - [11182] = 10671, - [11183] = 10295, + [11175] = 10341, + [11176] = 10670, + [11177] = 10314, + [11178] = 10314, + [11179] = 10306, + [11180] = 10684, + [11181] = 10736, + [11182] = 10735, + [11183] = 10736, [11184] = 10737, - [11185] = 10738, - [11186] = 10739, - [11187] = 10427, - [11188] = 10672, - [11189] = 10355, - [11190] = 10406, - [11191] = 10423, - [11192] = 10671, - [11193] = 10291, - [11194] = 10737, - [11195] = 10293, - [11196] = 10672, - [11197] = 10292, - [11198] = 10309, - [11199] = 10671, - [11200] = 10308, - [11201] = 10737, - [11202] = 10307, - [11203] = 10672, - [11204] = 10292, - [11205] = 10358, - [11206] = 10671, - [11207] = 11207, - [11208] = 10737, - [11209] = 10296, - [11210] = 10672, - [11211] = 10305, - [11212] = 10342, - [11213] = 10671, - [11214] = 10296, - [11215] = 10737, - [11216] = 10305, - [11217] = 10672, - [11218] = 11218, - [11219] = 10301, - [11220] = 10671, - [11221] = 10300, - [11222] = 10737, - [11223] = 10290, - [11224] = 10672, - [11225] = 10298, - [11226] = 10297, - [11227] = 10671, - [11228] = 10358, - [11229] = 10737, - [11230] = 10306, - [11231] = 10672, - [11232] = 10307, - [11233] = 10308, - [11234] = 10671, - [11235] = 11235, - [11236] = 10737, - [11237] = 10300, - [11238] = 10672, - [11239] = 11239, - [11240] = 10309, - [11241] = 10671, - [11242] = 10305, - [11243] = 10737, - [11244] = 10293, - [11245] = 10672, - [11246] = 10291, - [11247] = 10423, - [11248] = 10671, - [11249] = 10406, - [11250] = 10737, - [11251] = 10355, - [11252] = 10672, - [11253] = 10427, - [11254] = 10295, - [11255] = 10671, - [11256] = 10295, - [11257] = 10737, - [11258] = 10427, - [11259] = 10355, - [11260] = 10406, - [11261] = 10671, - [11262] = 10737, - [11263] = 10423, - [11264] = 10672, - [11265] = 10291, - [11266] = 10671, - [11267] = 10358, - [11268] = 10293, - [11269] = 10292, - [11270] = 10671, - [11271] = 10309, - [11272] = 10308, - [11273] = 10671, - [11274] = 10307, - [11275] = 10306, - [11276] = 10671, - [11277] = 10358, - [11278] = 10671, - [11279] = 11279, - [11280] = 10671, - [11281] = 10305, - [11282] = 10671, - [11283] = 10296, - [11284] = 10671, - [11285] = 10301, - [11286] = 10671, - [11287] = 10300, - [11288] = 10671, - [11289] = 10290, - [11290] = 10671, - [11291] = 10298, - [11292] = 10671, - [11293] = 10297, - [11294] = 10671, - [11295] = 10297, - [11296] = 10671, - [11297] = 10298, - [11298] = 10671, - [11299] = 10290, - [11300] = 10671, - [11301] = 10300, - [11302] = 10671, - [11303] = 10301, - [11304] = 10671, - [11305] = 10296, - [11306] = 10671, - [11307] = 10342, - [11308] = 10671, - [11309] = 10305, - [11310] = 10671, - [11311] = 10295, - [11312] = 10671, - [11313] = 10427, - [11314] = 10671, - [11315] = 10355, - [11316] = 10671, - [11317] = 10668, - [11318] = 10671, - [11319] = 10406, - [11320] = 10671, - [11321] = 10423, - [11322] = 10671, - [11323] = 10358, - [11324] = 10671, - [11325] = 10291, - [11326] = 10671, - [11327] = 10293, - [11328] = 10671, - [11329] = 10292, - [11330] = 10671, - [11331] = 10309, - [11332] = 10671, - [11333] = 10308, - [11334] = 10671, - [11335] = 10307, - [11336] = 10671, - [11337] = 10306, - [11338] = 10671, - [11339] = 10358, - [11340] = 10671, - [11341] = 10307, - [11342] = 10306, - [11343] = 11343, - [11344] = 10406, - [11345] = 10739, - [11346] = 10738, - [11347] = 10308, - [11348] = 10737, - [11349] = 10292, - [11350] = 11350, - [11351] = 11350, - [11352] = 10296, - [11353] = 10301, - [11354] = 10480, - [11355] = 11355, - [11356] = 11356, - [11357] = 11357, - [11358] = 11358, - [11359] = 10838, - [11360] = 10300, - [11361] = 10290, - [11362] = 10298, - [11363] = 10297, - [11364] = 10309, - [11365] = 10292, - [11366] = 10293, - [11367] = 10291, - [11368] = 10423, - [11369] = 10300, - [11370] = 10355, - [11371] = 10427, - [11372] = 10295, - [11373] = 10295, - [11374] = 10427, - [11375] = 10355, - [11376] = 11376, - [11377] = 10839, - [11378] = 10406, - [11379] = 10423, - [11380] = 10291, - [11381] = 11358, - [11382] = 11382, - [11383] = 10293, - [11384] = 10292, - [11385] = 10309, - [11386] = 10308, - [11387] = 10307, - [11388] = 11388, - [11389] = 11389, + [11185] = 10316, + [11186] = 10670, + [11187] = 10339, + [11188] = 10317, + [11189] = 10737, + [11190] = 10684, + [11191] = 10316, + [11192] = 10735, + [11193] = 10317, + [11194] = 10670, + [11195] = 10666, + [11196] = 10318, + [11197] = 10684, + [11198] = 10318, + [11199] = 10735, + [11200] = 10339, + [11201] = 10670, + [11202] = 10316, + [11203] = 10321, + [11204] = 10684, + [11205] = 11205, + [11206] = 10735, + [11207] = 10317, + [11208] = 10670, + [11209] = 10291, + [11210] = 10292, + [11211] = 10684, + [11212] = 10321, + [11213] = 10735, + [11214] = 10293, + [11215] = 10670, + [11216] = 10291, + [11217] = 10294, + [11218] = 10684, + [11219] = 10292, + [11220] = 10735, + [11221] = 10293, + [11222] = 10670, + [11223] = 10304, + [11224] = 11224, + [11225] = 10684, + [11226] = 10305, + [11227] = 10735, + [11228] = 10291, + [11229] = 10670, + [11230] = 10292, + [11231] = 10306, + [11232] = 10684, + [11233] = 10318, + [11234] = 10735, + [11235] = 10301, + [11236] = 10670, + [11237] = 10290, + [11238] = 10341, + [11239] = 10684, + [11240] = 10298, + [11241] = 10735, + [11242] = 10300, + [11243] = 10670, + [11244] = 10294, + [11245] = 10299, + [11246] = 10684, + [11247] = 10308, + [11248] = 10735, + [11249] = 10293, + [11250] = 10670, + [11251] = 10304, + [11252] = 10304, + [11253] = 10684, + [11254] = 10305, + [11255] = 10735, + [11256] = 10306, + [11257] = 10299, + [11258] = 10308, + [11259] = 10684, + [11260] = 10735, + [11261] = 10823, + [11262] = 10304, + [11263] = 10321, + [11264] = 10684, + [11265] = 10305, + [11266] = 10306, + [11267] = 10301, + [11268] = 10684, + [11269] = 10299, + [11270] = 10316, + [11271] = 10684, + [11272] = 10341, + [11273] = 10341, + [11274] = 10684, + [11275] = 10308, + [11276] = 10684, + [11277] = 10812, + [11278] = 10684, + [11279] = 10314, + [11280] = 10684, + [11281] = 10301, + [11282] = 10684, + [11283] = 10292, + [11284] = 10684, + [11285] = 10290, + [11286] = 10684, + [11287] = 10316, + [11288] = 10684, + [11289] = 11289, + [11290] = 10684, + [11291] = 10341, + [11292] = 10684, + [11293] = 10298, + [11294] = 10684, + [11295] = 10344, + [11296] = 10684, + [11297] = 10314, + [11298] = 10684, + [11299] = 10317, + [11300] = 10684, + [11301] = 10318, + [11302] = 10684, + [11303] = 10300, + [11304] = 10684, + [11305] = 10294, + [11306] = 10684, + [11307] = 10291, + [11308] = 10684, + [11309] = 10339, + [11310] = 10684, + [11311] = 10316, + [11312] = 10684, + [11313] = 10317, + [11314] = 10684, + [11315] = 10292, + [11316] = 10684, + [11317] = 10321, + [11318] = 10684, + [11319] = 10314, + [11320] = 10684, + [11321] = 10304, + [11322] = 10684, + [11323] = 10305, + [11324] = 10684, + [11325] = 10306, + [11326] = 10684, + [11327] = 10291, + [11328] = 10684, + [11329] = 10299, + [11330] = 10684, + [11331] = 10308, + [11332] = 10684, + [11333] = 10292, + [11334] = 10684, + [11335] = 1535, + [11336] = 10684, + [11337] = 10318, + [11338] = 10684, + [11339] = 10293, + [11340] = 10678, + [11341] = 10341, + [11342] = 10294, + [11343] = 10314, + [11344] = 10344, + [11345] = 10547, + [11346] = 10314, + [11347] = 10304, + [11348] = 10618, + [11349] = 10305, + [11350] = 10306, + [11351] = 10358, + [11352] = 10339, + [11353] = 10339, + [11354] = 11025, + [11355] = 10803, + [11356] = 11129, + [11357] = 10299, + [11358] = 10308, + [11359] = 10316, + [11360] = 10317, + [11361] = 10293, + [11362] = 10294, + [11363] = 10318, + [11364] = 10316, + [11365] = 10317, + [11366] = 10295, + [11367] = 10321, + [11368] = 10318, + [11369] = 10291, + [11370] = 10304, + [11371] = 10305, + [11372] = 10306, + [11373] = 10299, + [11374] = 10341, + [11375] = 10292, + [11376] = 10344, + [11377] = 10314, + [11378] = 10293, + [11379] = 10426, + [11380] = 10308, + [11381] = 10339, + [11382] = 10316, + [11383] = 10433, + [11384] = 10321, + [11385] = 10317, + [11386] = 10301, + [11387] = 10318, + [11388] = 10290, + [11389] = 10426, [11390] = 11390, - [11391] = 11391, - [11392] = 11392, - [11393] = 11393, - [11394] = 10306, - [11395] = 10358, - [11396] = 10305, - [11397] = 10423, - [11398] = 10406, - [11399] = 10355, - [11400] = 10427, - [11401] = 11401, - [11402] = 10342, - [11403] = 10296, - [11404] = 10301, - [11405] = 10317, - [11406] = 10738, - [11407] = 10739, - [11408] = 11356, - [11409] = 10300, - [11410] = 10290, - [11411] = 10317, - [11412] = 11356, - [11413] = 10317, - [11414] = 11356, - [11415] = 10317, - [11416] = 11356, - [11417] = 10317, - [11418] = 11356, - [11419] = 10317, - [11420] = 11356, - [11421] = 10317, - [11422] = 11356, - [11423] = 10317, - [11424] = 11356, - [11425] = 10317, - [11426] = 11356, - [11427] = 10317, - [11428] = 11356, - [11429] = 10317, - [11430] = 11356, - [11431] = 10317, - [11432] = 11356, - [11433] = 10317, - [11434] = 11356, - [11435] = 10317, - [11436] = 11356, - [11437] = 10317, - [11438] = 11356, - [11439] = 10317, - [11440] = 11356, - [11441] = 10317, - [11442] = 11356, - [11443] = 10317, - [11444] = 11356, - [11445] = 10317, - [11446] = 11356, - [11447] = 10317, - [11448] = 11356, - [11449] = 10317, - [11450] = 11356, - [11451] = 11356, - [11452] = 11356, - [11453] = 11356, - [11454] = 11356, - [11455] = 11356, - [11456] = 11356, - [11457] = 11356, - [11458] = 11356, - [11459] = 11356, - [11460] = 11356, - [11461] = 11356, - [11462] = 11356, - [11463] = 11356, - [11464] = 11356, - [11465] = 11465, - [11466] = 11357, - [11467] = 10843, - [11468] = 10298, - [11469] = 10297, - [11470] = 10301, - [11471] = 10307, - [11472] = 10297, - [11473] = 10298, - [11474] = 10306, - [11475] = 11356, - [11476] = 10309, - [11477] = 10295, - [11478] = 10427, - [11479] = 10355, - [11480] = 11480, - [11481] = 10868, - [11482] = 10406, - [11483] = 10423, - [11484] = 10291, - [11485] = 10293, - [11486] = 10292, - [11487] = 10308, - [11488] = 10309, - [11489] = 10308, - [11490] = 10307, - [11491] = 10306, - [11492] = 10358, - [11493] = 10305, - [11494] = 10342, - [11495] = 10296, - [11496] = 10301, + [11391] = 10299, + [11392] = 10321, + [11393] = 10290, + [11394] = 10291, + [11395] = 10301, + [11396] = 10290, + [11397] = 10298, + [11398] = 10300, + [11399] = 10292, + [11400] = 10293, + [11401] = 10321, + [11402] = 10298, + [11403] = 10720, + [11404] = 10736, + [11405] = 10737, + [11406] = 11025, + [11407] = 10314, + [11408] = 10304, + [11409] = 10720, + [11410] = 11025, + [11411] = 10720, + [11412] = 11025, + [11413] = 10720, + [11414] = 11025, + [11415] = 10720, + [11416] = 11025, + [11417] = 10720, + [11418] = 11025, + [11419] = 10720, + [11420] = 11025, + [11421] = 10720, + [11422] = 11025, + [11423] = 10720, + [11424] = 11025, + [11425] = 10720, + [11426] = 11025, + [11427] = 10720, + [11428] = 11025, + [11429] = 10720, + [11430] = 11025, + [11431] = 10720, + [11432] = 11025, + [11433] = 10720, + [11434] = 11025, + [11435] = 10720, + [11436] = 11025, + [11437] = 10720, + [11438] = 11025, + [11439] = 10720, + [11440] = 11025, + [11441] = 10720, + [11442] = 11025, + [11443] = 10720, + [11444] = 11025, + [11445] = 10720, + [11446] = 11025, + [11447] = 10720, + [11448] = 11025, + [11449] = 11025, + [11450] = 11025, + [11451] = 11025, + [11452] = 11025, + [11453] = 11025, + [11454] = 11025, + [11455] = 11025, + [11456] = 11025, + [11457] = 11025, + [11458] = 11025, + [11459] = 11025, + [11460] = 11025, + [11461] = 11025, + [11462] = 11025, + [11463] = 10301, + [11464] = 10300, + [11465] = 10294, + [11466] = 10321, + [11467] = 10291, + [11468] = 10292, + [11469] = 10817, + [11470] = 10293, + [11471] = 10316, + [11472] = 10317, + [11473] = 10291, + [11474] = 10301, + [11475] = 11475, + [11476] = 10318, + [11477] = 10290, + [11478] = 10298, + [11479] = 10300, + [11480] = 10294, + [11481] = 11481, + [11482] = 10292, + [11483] = 11475, + [11484] = 10293, + [11485] = 10298, + [11486] = 10321, + [11487] = 10321, + [11488] = 10291, + [11489] = 10304, + [11490] = 10301, + [11491] = 10290, + [11492] = 10305, + [11493] = 10298, + [11494] = 10304, + [11495] = 10305, + [11496] = 10735, [11497] = 11497, }; @@ -16385,12869 +16385,12864 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1639, - '\'', 2018, - '(', 1507, - ')', 1508, - '*', 1686, - '+', 1891, - ',', 1504, - '-', 1886, - '.', 1632, - '/', 1711, - ':', 1500, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - '?', 1540, - '@', 1537, - '[', 1503, - ']', 1506, - '^', 2059, - '_', 1622, - '`', 585, - '{', 1618, - '|', 1509, - '}', 1619, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1640, + '\'', 2019, + '(', 1508, + ')', 1509, + '*', 1687, + '+', 1892, + ',', 1505, + '-', 1887, + '.', 1633, + '/', 1712, + ':', 1501, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + '?', 1541, + '@', 1538, + '[', 1504, + ']', 1507, + '^', 2060, + '_', 1623, + '`', 586, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1559); + lookahead == ' ') SKIP(959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1560); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1560); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); - if (lookahead != 0) ADVANCE(2249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1561); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if (lookahead != 0) ADVANCE(2250); END_STATE(); case 1: ADVANCE_MAP( - '\n', 1475, - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1686, - '+', 1729, - ',', 1504, - '-', 1552, - '.', 1632, - '/', 1711, - '0', 1936, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1687, + '+', 1730, + ',', 1505, + '-', 1553, + '.', 1633, + '/', 1712, + '0', 1937, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2058); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1475, - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1686, - '+', 1729, - ',', 1504, - '-', 1552, - '.', 1627, - '/', 1711, - '0', 1936, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1687, + '+', 1730, + ',', 1505, + '-', 1553, + '.', 1628, + '/', 1712, + '0', 1937, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2058); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'b', 1171, - 'c', 1154, - 'd', 1142, - 'f', 1029, - 'i', 1085, - 'm', 1033, - 'n', 1148, - 'r', 1082, - 't', 1162, - 'w', 1097, - '{', 1618, - '|', 1509, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'b', 1172, + 'c', 1155, + 'd', 1143, + 'f', 1030, + 'i', 1086, + 'm', 1034, + 'n', 1149, + 'r', 1083, + 't', 1163, + 'w', 1098, + '{', 1619, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ':', 1500, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ':', 1501, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(965); - if (lookahead == '#') ADVANCE(3585); + if (lookahead == '\n') ADVANCE(966); + if (lookahead == '#') ADVANCE(3586); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(5); if (lookahead != 0) ADVANCE(6); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(964); + if (lookahead == '\n') ADVANCE(965); if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1865, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2361, - 'N', 2357, - '[', 1503, - '_', 2265, - '`', 585, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'f', 2271, - 'i', 2262, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1866, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2362, + 'N', 2358, + '[', 1504, + '_', 2267, + '`', 586, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'f', 2272, + 'i', 2263, 'm', 2320, 'n', 2326, - 'o', 2337, + 'o', 2338, 's', 2349, - 't', 2340, - 'x', 2316, - '{', 1618, + 't', 2341, + 'x', 2317, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 8: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1866, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2359, - 'N', 2354, - '[', 1503, - '_', 1623, - '`', 585, - 'a', 2297, - 'b', 2286, - 'e', 2304, - 'f', 2269, - 'i', 2260, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1867, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2360, + 'N', 2355, + '[', 1504, + '_', 1624, + '`', 586, + 'a', 2298, + 'b', 2287, + 'e', 2305, + 'f', 2270, + 'i', 2261, 'm', 2319, - 'n', 2332, - 'o', 2337, - 's', 2346, - 't', 2338, - 'x', 2314, - '{', 1618, - '}', 1619, + 'n', 2333, + 'o', 2338, + 's', 2347, + 't', 2339, + 'x', 2315, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2249); + lookahead != ']') ADVANCE(2250); END_STATE(); case 9: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1867, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2360, - 'N', 2356, - '[', 1503, - ']', 1506, - '_', 2266, - '`', 585, - 'a', 2299, - 'b', 2287, - 'e', 2306, - 'f', 2270, - 'i', 2261, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1868, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2361, + 'N', 2357, + '[', 1504, + ']', 1507, + '_', 2268, + '`', 586, + 'a', 2300, + 'b', 2288, + 'e', 2307, + 'f', 2271, + 'i', 2262, 'm', 2321, - 'n', 2333, - 'o', 2337, - 's', 2347, - 't', 2339, - 'x', 2315, - '{', 1618, + 'n', 2334, + 'o', 2338, + 's', 2348, + 't', 2340, + 'x', 2316, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 10: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1867, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2360, - 'N', 2356, - '[', 1503, - ']', 1506, - '_', 2266, - '`', 585, - 'a', 2299, - 'b', 2287, - 'e', 2306, - 'f', 2270, - 'i', 2261, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1868, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2361, + 'N', 2357, + '[', 1504, + ']', 1507, + '_', 2268, + '`', 586, + 'a', 2300, + 'b', 2288, + 'e', 2307, + 'f', 2271, + 'i', 2262, 'm', 2321, - 'n', 2333, - 'o', 2337, - 's', 2347, - 't', 2339, - 'x', 2315, - '{', 1618, + 'n', 2334, + 'o', 2338, + 's', 2348, + 't', 2340, + 'x', 2316, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 11: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - ':', 2249, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2358, - 'N', 2355, - '_', 2264, - '`', 585, - 'a', 2292, - 'b', 2290, - 'c', 2275, - 'd', 2276, - 'e', 2296, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + ':', 2250, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2359, + 'N', 2356, + '_', 2266, + '`', 586, + 'a', 2293, + 'b', 2291, + 'c', 2276, + 'd', 2277, + 'e', 2297, 'f', 2324, - 'h', 2285, - 'i', 2259, - 'l', 2277, - 'm', 2268, - 'n', 2280, - 'o', 2335, - 'r', 2279, - 's', 2312, - 't', 2344, - 'u', 2345, - 'w', 2284, - 'x', 2330, - '}', 1619, + 'h', 2286, + 'i', 2260, + 'l', 2278, + 'm', 2269, + 'n', 2281, + 'o', 2336, + 'r', 2280, + 's', 2313, + 't', 2345, + 'u', 2346, + 'w', 2285, + 'x', 2331, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2249); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 12: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2358, - 'N', 2355, - '_', 2264, - '`', 585, - 'a', 2292, - 'b', 2290, - 'c', 2275, - 'd', 2276, - 'e', 2296, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2359, + 'N', 2356, + '_', 2266, + '`', 586, + 'a', 2293, + 'b', 2291, + 'c', 2276, + 'd', 2277, + 'e', 2297, 'f', 2324, - 'h', 2285, - 'i', 2259, - 'l', 2277, - 'm', 2268, - 'n', 2280, - 'o', 2335, - 'r', 2279, - 's', 2312, - 't', 2344, - 'u', 2345, - 'w', 2284, - 'x', 2330, - '}', 1619, - ',', 2249, - ':', 2249, + 'h', 2286, + 'i', 2260, + 'l', 2278, + 'm', 2269, + 'n', 2281, + 'o', 2336, + 'r', 2280, + 's', 2313, + 't', 2345, + 'u', 2346, + 'w', 2285, + 'x', 2331, + '}', 1620, + ',', 2250, + ':', 2250, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2249); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 13: ADVANCE_MAP( - '!', 2255, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2264, - '`', 585, - 'a', 2308, - 'b', 2291, - 'e', 2310, - 'i', 2303, - 'm', 2327, - 'n', 2331, - 'o', 2336, - 's', 2350, - 'x', 2330, + '!', 2256, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2266, + '`', 586, + 'a', 2309, + 'b', 2292, + 'e', 2311, + 'i', 2304, + 'm', 2328, + 'n', 2332, + 'o', 2337, + 's', 2351, + 'x', 2331, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 14: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 2257, - '>', 1534, - ']', 1506, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 2258, + '>', 1535, + ']', 1507, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, + 'o', 2342, + 's', 2350, + 'x', 2327, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 15: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - ']', 1506, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + ']', 1507, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, + 'o', 2342, + 's', 2350, + 'x', 2327, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 16: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, - '|', 1509, + 'o', 2342, + 's', 2350, + 'x', 2327, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2249); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2250); END_STATE(); case 17: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, - '|', 1509, + 'o', 2342, + 's', 2350, + 'x', 2327, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2249); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2250); END_STATE(); case 18: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '{', 1618, + 'x', 2317, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 19: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, + 'o', 2342, + 's', 2350, + 'x', 2327, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 20: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '{', 1618, + 'x', 2317, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 21: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '}', 1619, + 'x', 2317, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 22: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - ']', 1506, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + ']', 1507, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '}', 1619, + 'x', 2317, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(2249); + lookahead != '{') ADVANCE(2250); END_STATE(); case 23: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2267, - 'a', 2301, - 'b', 2288, - 'e', 2307, - 'i', 2302, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2265, + 'a', 2302, + 'b', 2289, + 'e', 2308, + 'i', 2303, 'm', 2323, 'n', 2322, - 'o', 2341, - 's', 2348, - 'x', 2318, + 'o', 2342, + 's', 2350, + 'x', 2327, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2250); END_STATE(); case 24: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '{', 1618, + 'x', 2317, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2250); END_STATE(); case 25: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2256, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2257, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, + 'x', 2317, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2250); END_STATE(); case 26: ADVANCE_MAP( - '!', 2255, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '!', 2256, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '{', 1618, + 'x', 2317, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2250); END_STATE(); case 27: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - ':', 1500, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1000, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1982, - '_', 1023, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 999, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + ':', 1501, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1001, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1024, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1000, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && - lookahead != ']') ADVANCE(2057); + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']') ADVANCE(2058); END_STATE(); case 28: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - ':', 1500, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + ':', 1501, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - lookahead != ']') ADVANCE(2057); + lookahead != ']') ADVANCE(2058); END_STATE(); case 29: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 30: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 31: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1000, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 999, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); - END_STATE(); - case 32: - ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1001, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1000, + 'f', 1147, + 'g', 1017, 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, 'w', 1096, - 'x', 1155, - '}', 1619, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 33: + case 32: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1000, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1023, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 999, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 34: + case 33: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1001, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1024, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1000, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 35: + case 34: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, 'w', 1096, - 'x', 1155, - '}', 1619, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 36: + case 35: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && + (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 37: + case 36: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); + END_STATE(); + case 37: + ADVANCE_MAP( + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 38: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1000, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 999, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1001, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1000, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 39: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 40: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - ';', 994, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - ']', 1506, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + ';', 995, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + ']', 1507, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead)) ADVANCE(2057); + (lookahead < '\'' || '>' < lookahead)) ADVANCE(2058); END_STATE(); case 41: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 42: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1034, - 'e', 1010, - 'f', 1146, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1052, - 'm', 1007, - 'n', 1065, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1015, - 'u', 1186, - 'w', 1095, - 'x', 1155, - '}', 1619, - 0xb5, 1183, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1035, + 'e', 1011, + 'f', 1147, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1053, + 'm', 1008, + 'n', 1066, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1016, + 'u', 1187, + 'w', 1096, + 'x', 1156, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 43: ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 1936, - '<', 1758, - '=', 2037, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 1937, + '<', 1759, + '=', 2038, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 44: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1865, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3264, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1866, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3266, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 45: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3268, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3269, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 46: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3268, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3269, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 47: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3268, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3269, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 48: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1866, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3221, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 1623, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3220, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3349, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1867, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3222, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 1624, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3221, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3350, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 49: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3269, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3221, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3220, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3349, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3270, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3222, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3221, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3350, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 50: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3269, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3225, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3222, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3349, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3270, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3226, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3223, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3350, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 51: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3269, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3225, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3222, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3349, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3270, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3226, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3223, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3350, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 52: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1867, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3239, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3266, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3237, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1868, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3240, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3268, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3238, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 53: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3239, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3237, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3240, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3238, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 54: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3243, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3240, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3244, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3241, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 55: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3243, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3240, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3244, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3241, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 56: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1867, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3239, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3266, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3237, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1868, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3240, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3268, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3238, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(3187); + (lookahead < ';' || '>' < lookahead)) ADVANCE(3188); END_STATE(); case 57: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3239, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3237, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3240, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3238, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 58: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3243, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3240, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3244, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3241, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 59: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3270, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3243, - 'G', 3243, - 'I', 3365, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'a', 3322, - 'b', 3309, - 'd', 3281, - 'e', 3240, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'i', 3256, - 'k', 3242, - 'm', 3244, - 'n', 3343, - 'o', 3349, - 'p', 3242, - 's', 3296, - 't', 3241, - 'u', 3354, - 'w', 3316, - 'x', 3330, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3271, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3244, + 'G', 3244, + 'I', 3366, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'a', 3323, + 'b', 3310, + 'd', 3282, + 'e', 3241, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'i', 3257, + 'k', 3243, + 'm', 3245, + 'n', 3344, + 'o', 3350, + 'p', 3243, + 's', 3297, + 't', 3242, + 'u', 3355, + 'w', 3317, + 'x', 3331, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 60: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - ':', 3187, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3194, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - ']', 1506, - '_', 3263, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3193, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + ':', 3188, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3195, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + ']', 1507, + '_', 3265, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3194, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 61: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 3271, - ':', 3187, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3210, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 3272, + ':', 3188, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3211, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 62: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 3271, - ':', 3187, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3194, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3193, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 3272, + ':', 3188, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3195, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3194, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 63: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 3271, - ':', 3187, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3210, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 3272, + ':', 3188, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3211, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 64: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 1868, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3194, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - ']', 1506, - '_', 3263, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3193, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 1869, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3195, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + ']', 1507, + '_', 3265, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3194, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, - ',', 3187, - ':', 3187, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '{', 1619, + '}', 1620, + 0xb5, 3354, + ',', 3188, + ':', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead)) ADVANCE(3187); + (lookahead < '\'' || '>' < lookahead)) ADVANCE(3188); END_STATE(); case 65: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 3271, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3210, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 3272, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3211, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, - ',', 3187, - ':', 3187, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, + ',', 3188, + ':', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 66: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 3271, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3194, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3193, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 3272, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3195, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1983, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3194, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, - ',', 3187, - ':', 3187, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, + ',', 3188, + ':', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 67: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 3271, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3286, - 'd', 3284, - 'e', 3210, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 3272, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3287, + 'd', 3285, + 'e', 3211, 'f', 3335, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3287, - 'm', 3207, - 'n', 3290, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3215, - 'u', 3357, - 'w', 3306, - 'x', 3340, - '}', 1619, - 0xb5, 3353, - ',', 3187, - ':', 3187, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3288, + 'm', 3208, + 'n', 3291, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3216, + 'u', 3358, + 'w', 3307, + 'x', 3341, + '}', 1620, + 0xb5, 3354, + ',', 3188, + ':', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3276); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 68: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '_', 3263, - '`', 585, - 'a', 3327, - 'b', 3313, - 'd', 3285, - 'e', 3189, - 'g', 3216, - 'h', 3345, - 'i', 3326, - 'k', 3216, - 'm', 3218, - 'n', 3341, - 'o', 3347, - 'p', 3216, - 's', 3301, - 't', 3216, - 'u', 3353, - 'w', 3315, - 'x', 3340, - 0xb5, 3353, + '!', 3204, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '_', 3265, + '`', 586, + 'a', 3328, + 'b', 3314, + 'd', 3286, + 'e', 3190, + 'g', 3217, + 'h', 3346, + 'i', 3327, + 'k', 3217, + 'm', 3219, + 'n', 3342, + 'o', 3348, + 'p', 3217, + 's', 3302, + 't', 3217, + 'u', 3354, + 'w', 3316, + 'x', 3341, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 69: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'a', 3327, - 'b', 3313, - 'd', 3285, - 'e', 3189, - 'g', 3216, - 'h', 3345, - 'i', 3326, - 'k', 3216, - 'm', 3218, - 'n', 3341, - 'o', 3347, - 'p', 3216, - 's', 3301, - 't', 3216, - 'u', 3353, - 'w', 3315, - 'x', 3340, - 0xb5, 3353, + '!', 3204, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'a', 3328, + 'b', 3314, + 'd', 3286, + 'e', 3190, + 'g', 3217, + 'h', 3346, + 'i', 3327, + 'k', 3217, + 'm', 3219, + 'n', 3342, + 'o', 3348, + 'p', 3217, + 's', 3302, + 't', 3217, + 'u', 3354, + 'w', 3316, + 'x', 3341, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(130); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 70: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'a', 3327, - 'b', 3313, - 'd', 3285, - 'e', 3212, - 'g', 3216, - 'h', 3345, - 'i', 3326, - 'k', 3216, - 'm', 3218, - 'n', 3341, - 'o', 3347, - 'p', 3216, - 's', 3301, - 't', 3216, - 'u', 3353, - 'w', 3315, - 'x', 3340, - 0xb5, 3353, + '!', 3204, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'a', 3328, + 'b', 3314, + 'd', 3286, + 'e', 3213, + 'g', 3217, + 'h', 3346, + 'i', 3327, + 'k', 3217, + 'm', 3219, + 'n', 3342, + 'o', 3348, + 'p', 3217, + 's', 3302, + 't', 3217, + 'u', 3354, + 'w', 3316, + 'x', 3341, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(130); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 71: ADVANCE_MAP( - '!', 3203, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'a', 3327, - 'b', 3313, - 'd', 3285, - 'e', 3212, - 'g', 3216, - 'h', 3345, - 'i', 3326, - 'k', 3216, - 'm', 3218, - 'n', 3341, - 'o', 3347, - 'p', 3216, - 's', 3301, - 't', 3216, - 'u', 3353, - 'w', 3315, - 'x', 3340, - 0xb5, 3353, + '!', 3204, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'a', 3328, + 'b', 3314, + 'd', 3286, + 'e', 3213, + 'g', 3217, + 'h', 3346, + 'i', 3327, + 'k', 3217, + 'm', 3219, + 'n', 3342, + 'o', 3348, + 'p', 3217, + 's', 3302, + 't', 3217, + 'u', 3354, + 'w', 3316, + 'x', 3341, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(130); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 72: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '(', 1848, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '{', 1618, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + lookahead == ' ') SKIP(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 73: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 74: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 75: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 76: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(141); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 77: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(141); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 78: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3202, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3203, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 79: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3202, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - ']', 1506, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3203, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + ']', 1507, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(141); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 80: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 81: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 82: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 83: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 84: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 85: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 86: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3202, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3203, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 87: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3202, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3203, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - '|', 1509, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + '|', 1510, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 88: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 89: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 90: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 91: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 92: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 93: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 94: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 95: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 96: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 97: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 98: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 99: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 100: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 101: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 102: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 103: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 104: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '9' < lookahead) && lookahead != '[' && (lookahead < '_' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3187); + lookahead != '{') ADVANCE(3188); END_STATE(); case 105: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3187); + lookahead != '{') ADVANCE(3188); END_STATE(); case 106: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3187); + lookahead != '{') ADVANCE(3188); END_STATE(); case 107: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '}', 1619, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '-' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3187); + lookahead != '{') ADVANCE(3188); END_STATE(); case 108: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 109: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 110: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 111: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 112: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3246, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3247, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 113: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 114: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 115: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3367, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'a', 3324, - 'b', 3310, - 'd', 3282, - 'e', 3249, - 'g', 3250, - 'h', 3344, - 'i', 3325, - 'k', 3250, - 'm', 3252, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3368, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'a', 3325, + 'b', 3311, + 'd', 3283, + 'e', 3250, + 'g', 3251, + 'h', 3345, + 'i', 3326, + 'k', 3251, + 'm', 3253, 'n', 3334, - 'o', 3350, - 'p', 3250, - 's', 3297, - 't', 3250, - 'u', 3352, - 'w', 3314, - 'x', 3333, - 0xb5, 3352, + 'o', 3351, + 'p', 3251, + 's', 3298, + 't', 3251, + 'u', 3353, + 'w', 3315, + 'x', 3338, + 0xb5, 3353, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 116: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3204, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3205, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 117: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3204, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3205, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 118: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3204, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3205, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 119: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 120: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 121: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 122: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3204, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3205, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 123: ADVANCE_MAP( - '!', 3203, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - 0xb5, 3354, + '!', 3204, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 124: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1931, - ':', 1500, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'E', 581, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 579, - 'f', 589, - 'h', 640, - 'i', 577, - 'l', 639, - 'm', 590, - 'n', 618, - 'o', 684, - 's', 708, - 't', 688, - 'u', 697, - 'x', 665, - '{', 1618, - '|', 1509, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1932, + ':', 1501, + '<', 1759, + '=', 561, + '>', 1535, + '?', 1700, + 'E', 582, + 'I', 747, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 580, + 'f', 590, + 'h', 641, + 'i', 578, + 'l', 640, + 'm', 591, + 'n', 619, + 'o', 685, + 's', 709, + 't', 689, + 'u', 698, + 'x', 666, + '{', 1619, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(125); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 125: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - ':', 1500, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 648, - 'f', 589, - 'h', 640, - 'i', 577, - 'l', 639, - 'm', 590, - 'n', 618, - 'o', 684, - 's', 708, - 't', 688, - 'u', 697, - 'x', 665, - '{', 1618, - '|', 1509, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + ':', 1501, + '<', 1759, + '=', 561, + '>', 1535, + '?', 1700, + 'I', 747, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 649, + 'f', 590, + 'h', 641, + 'i', 578, + 'l', 640, + 'm', 591, + 'n', 619, + 'o', 685, + 's', 709, + 't', 689, + 'u', 698, + 'x', 666, + '{', 1619, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(125); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 126: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'I', 746, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'f', 589, - 'g', 573, - 'h', 683, - 'i', 578, - 'k', 573, - 'm', 575, - 'n', 671, - 'o', 684, - 'p', 573, - 's', 611, - 't', 572, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - 0xb5, 692, - ); + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'I', 747, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'f', 590, + 'g', 574, + 'h', 684, + 'i', 579, + 'k', 574, + 'm', 576, + 'n', 672, + 'o', 685, + 'p', 574, + 's', 612, + 't', 573, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + 0xb5, 693, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 127: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - '<', 1758, - '=', 561, - '>', 1534, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 661, - 'f', 589, - 'i', 578, - 'm', 670, - 'n', 672, - 'o', 684, - 's', 708, - 't', 688, - 'x', 665, - '{', 1618, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + '<', 1759, + '=', 562, + '>', 1535, + 'I', 747, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 662, + 'f', 590, + 'i', 579, + 'm', 671, + 'n', 673, + 'o', 685, + 's', 709, + 't', 689, + 'x', 666, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 128: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '`', 585, - 'a', 1133, - 'b', 1105, - 'd', 1035, - 'e', 1012, - 'g', 1016, - 'h', 1161, - 'i', 1130, - 'k', 1016, - 'm', 1018, - 'n', 1156, - 'o', 1167, - 'p', 1016, - 's', 1073, - 't', 1016, - 'u', 1183, - 'w', 1109, - 'x', 1155, - 0xb5, 1183, + '!', 560, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '`', 586, + 'a', 1134, + 'b', 1106, + 'd', 1036, + 'e', 1013, + 'g', 1017, + 'h', 1162, + 'i', 1131, + 'k', 1017, + 'm', 1019, + 'n', 1157, + 'o', 1168, + 'p', 1017, + 's', 1074, + 't', 1017, + 'u', 1184, + 'w', 1110, + 'x', 1156, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(129); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 129: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '`', 585, - 'a', 1133, - 'b', 1105, - 'd', 1035, - 'e', 1012, - 'g', 1016, - 'h', 1161, - 'i', 1130, - 'k', 1016, - 'm', 1018, - 'n', 1156, - 'o', 1167, - 'p', 1016, - 's', 1073, - 't', 1016, - 'u', 1183, - 'w', 1109, - 'x', 1155, - 0xb5, 1183, + '!', 560, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '`', 586, + 'a', 1134, + 'b', 1106, + 'd', 1036, + 'e', 1013, + 'g', 1017, + 'h', 1162, + 'i', 1131, + 'k', 1017, + 'm', 1019, + 'n', 1157, + 'o', 1168, + 'p', 1017, + 's', 1074, + 't', 1017, + 'u', 1184, + 'w', 1110, + 'x', 1156, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(129); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 130: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '`', 585, - 'a', 1133, - 'b', 1105, - 'd', 1035, - 'e', 1012, - 'g', 1016, - 'h', 1161, - 'i', 1130, - 'k', 1016, - 'm', 1018, - 'n', 1156, - 'o', 1167, - 'p', 1016, - 's', 1073, - 't', 1016, - 'u', 1183, - 'w', 1109, - 'x', 1155, - 0xb5, 1183, + '!', 560, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '`', 586, + 'a', 1134, + 'b', 1106, + 'd', 1036, + 'e', 1013, + 'g', 1017, + 'h', 1162, + 'i', 1131, + 'k', 1017, + 'm', 1019, + 'n', 1157, + 'o', 1168, + 'p', 1017, + 's', 1074, + 't', 1017, + 'u', 1184, + 'w', 1110, + 'x', 1156, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(130); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 131: ADVANCE_MAP( - '!', 559, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '`', 585, - 'a', 1133, - 'b', 1105, - 'e', 1137, - 'i', 1130, - 'm', 1150, - 'n', 1157, - 'o', 1167, - 's', 1204, - 'x', 1155, + '!', 560, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '`', 586, + 'a', 1134, + 'b', 1106, + 'e', 1138, + 'i', 1131, + 'm', 1151, + 'n', 1158, + 'o', 1168, + 's', 1205, + 'x', 1156, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(131); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 132: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '(', 1848, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - ':', 1500, - ';', 994, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '[', 1503, - ']', 1506, - '_', 1893, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 565, - 'g', 573, - 'h', 683, - 'i', 624, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '(', 1849, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1250, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + '_', 1257, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1249, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, + 'n', 1292, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '{', 1619, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(149); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 133: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, + '!', 560, + '#', 3585, + '$', 1512, + '(', 1849, + '*', 1686, + '+', 1731, + ',', 1505, '-', 1545, '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, + '/', 1711, + ':', 1501, + ';', 995, + '<', 1759, '=', 561, - '>', 1534, - '?', 1699, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, - 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '[', 1504, + ']', 1507, + '_', 1894, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 566, + 'g', 574, + 'h', 684, + 'i', 625, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(136); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 134: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1249, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - '_', 1258, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1248, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(136); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 135: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1249, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1248, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1250, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1249, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(138); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 136: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(136); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 137: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '{', 1618, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '{', 1619, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(137); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 138: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(138); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 139: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 140: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(140); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 141: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(141); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 142: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - ']', 1506, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + ']', 1507, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 143: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '_', 584, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 565, - 'g', 573, - 'h', 683, - 'i', 624, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 561, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '_', 585, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 566, + 'g', 574, + 'h', 684, + 'i', 625, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 144: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 145: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, - '|', 1509, + 'o', 1301, + 's', 1318, + 'x', 1295, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 146: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - '|', 1509, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + '|', 1510, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 147: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 554, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 555, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, - '|', 1509, + 'o', 1301, + 's', 1318, + 'x', 1295, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 148: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 624, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 561, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 625, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(148); END_STATE(); case 149: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '/', 1710, - ':', 1500, - ';', 994, - '<', 1758, - '=', 560, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '[', 1503, - ']', 1506, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 624, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '/', 1711, + ':', 1501, + ';', 995, + '<', 1759, + '=', 561, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '[', 1504, + ']', 1507, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 625, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(149); END_STATE(); case 150: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150); END_STATE(); case 151: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '{', 1618, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151); END_STATE(); case 152: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(153); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 153: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(153); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 154: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 155: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - 0xb5, 692, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155); END_STATE(); case 156: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '{', 1618, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); END_STATE(); case 157: ADVANCE_MAP( - '!', 559, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 158: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158); END_STATE(); case 159: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '}', 1619, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159); END_STATE(); case 160: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - ']', 1506, - '_', 584, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 565, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '}', 1619, - 0xb5, 692, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + ']', 1507, + '_', 585, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 566, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 161: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(162); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 162: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(162); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 163: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1333, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'a', 1286, - 'b', 1274, - 'd', 1260, - 'e', 1250, - 'g', 1251, - 'h', 1298, - 'i', 1287, - 'k', 1251, - 'm', 1253, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1334, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'a', 1287, + 'b', 1275, + 'd', 1261, + 'e', 1251, + 'g', 1252, + 'h', 1299, + 'i', 1288, + 'k', 1252, + 'm', 1254, 'n', 1292, - 'o', 1300, - 'p', 1251, - 's', 1270, - 't', 1251, - 'u', 1308, - 'w', 1276, - 'x', 1291, - 0xb5, 1308, + 'o', 1301, + 'p', 1252, + 's', 1271, + 't', 1252, + 'u', 1309, + 'w', 1277, + 'x', 1295, + 0xb5, 1309, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 164: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - 0xb5, 692, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164); END_STATE(); case 165: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '{', 1618, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165); END_STATE(); case 166: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 1286, - 'b', 1274, - 'e', 1288, - 'i', 1287, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 1287, + 'b', 1275, + 'e', 1289, + 'i', 1288, 'm', 1294, 'n', 1293, - 'o', 1300, - 's', 1316, - 'x', 1291, + 'o', 1301, + 's', 1318, + 'x', 1295, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 167: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 560, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - 0xb5, 692, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 561, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167); END_STATE(); case 168: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 560, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 561, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168); END_STATE(); case 169: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - 0xb5, 692, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169); END_STATE(); case 170: ADVANCE_MAP( - '!', 559, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '{', 1618, + '!', 560, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170); END_STATE(); case 171: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 2956, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3057, - 'N', 3053, - '[', 1503, - '_', 2949, - '`', 585, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'f', 2967, - 'i', 2946, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 2957, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3058, + 'N', 3054, + '[', 1504, + '_', 2950, + '`', 586, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'f', 2968, + 'i', 2947, 'm', 3016, 'n', 3022, - 'o', 3033, + 'o', 3034, 's', 3045, - 't', 3036, - 'x', 3012, - '{', 1618, + 't', 3037, + 'x', 3013, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); case 172: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 2957, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3055, - 'N', 3050, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2993, - 'b', 2982, - 'e', 3000, - 'f', 2965, - 'i', 2944, - 'm', 3015, - 'n', 3028, - 'o', 3033, - 's', 3042, - 't', 3034, - 'x', 3010, - '{', 1618, - '}', 1619, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); - if (lookahead != 0 && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2937); - END_STATE(); - case 173: - ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, '0', 2958, - '<', 1531, - '=', 1851, - '>', 1534, + '<', 1532, + '=', 1852, + '>', 1535, 'I', 3056, - 'N', 3052, - '[', 1503, - ']', 1506, - '_', 2948, - '`', 585, - 'a', 2995, + 'N', 3051, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2994, 'b', 2983, - 'e', 3002, + 'e', 3001, 'f', 2966, 'i', 2945, - 'm', 3017, + 'm', 3015, 'n', 3029, - 'o', 3033, + 'o', 3034, 's', 3043, 't', 3035, 'x', 3011, - '{', 1618, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(239); + lookahead == ' ') SKIP(234); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2962); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != ']') ADVANCE(2938); END_STATE(); - case 174: + case 173: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 2958, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3056, - 'N', 3052, - '[', 1503, - ']', 1506, - '_', 2948, - '`', 585, - 'a', 2995, - 'b', 2983, - 'e', 3002, - 'f', 2966, - 'i', 2945, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 2959, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3057, + 'N', 3053, + '[', 1504, + ']', 1507, + '_', 2949, + '`', 586, + 'a', 2996, + 'b', 2984, + 'e', 3003, + 'f', 2967, + 'i', 2946, 'm', 3017, - 'n', 3029, - 'o', 3033, - 's', 3043, - 't', 3035, - 'x', 3011, - '{', 1618, + 'n', 3030, + 'o', 3034, + 's', 3044, + 't', 3036, + 'x', 3012, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2962); + lookahead == ' ') SKIP(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2963); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); - case 175: + case 174: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1632, - '/', 1710, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, '0', 2959, - ':', 2937, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3054, - 'N', 3051, - '_', 2947, - '`', 585, - 'a', 2988, - 'b', 2986, - 'c', 2971, - 'd', 2972, - 'e', 2992, - 'f', 3020, - 'h', 2981, - 'i', 2943, - 'l', 2973, - 'm', 2964, - 'n', 2976, - 'o', 3031, - 'r', 2975, - 's', 3008, - 't', 3040, - 'u', 3041, - 'w', 2980, - 'x', 3026, - '}', 1619, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3057, + 'N', 3053, + '[', 1504, + ']', 1507, + '_', 2949, + '`', 586, + 'a', 2996, + 'b', 2984, + 'e', 3003, + 'f', 2967, + 'i', 2946, + 'm', 3017, + 'n', 3030, + 'o', 3034, + 's', 3044, + 't', 3036, + 'x', 3012, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2963); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if (lookahead != 0 && + (lookahead < '\'' || '9' < lookahead) && + (lookahead < ';' || '>' < lookahead) && + lookahead != '}') ADVANCE(2938); + END_STATE(); + case 175: + ADVANCE_MAP( + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 2960, + ':', 2938, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3055, + 'N', 3052, + '_', 2948, + '`', 586, + 'a', 2989, + 'b', 2987, + 'c', 2972, + 'd', 2973, + 'e', 2993, + 'f', 3020, + 'h', 2982, + 'i', 2944, + 'l', 2974, + 'm', 2965, + 'n', 2977, + 'o', 3032, + 'r', 2976, + 's', 3009, + 't', 3041, + 'u', 3042, + 'w', 2981, + 'x', 3027, + '}', 1620, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2964); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2937); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 176: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1632, - '/', 1710, - '0', 2959, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3054, - 'N', 3051, - '_', 2947, - '`', 585, - 'a', 2988, - 'b', 2986, - 'c', 2971, - 'd', 2972, - 'e', 2992, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1633, + '/', 1711, + '0', 2960, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3055, + 'N', 3052, + '_', 2948, + '`', 586, + 'a', 2989, + 'b', 2987, + 'c', 2972, + 'd', 2973, + 'e', 2993, 'f', 3020, - 'h', 2981, - 'i', 2943, - 'l', 2973, - 'm', 2964, - 'n', 2976, - 'o', 3031, - 'r', 2975, - 's', 3008, - 't', 3040, - 'u', 3041, - 'w', 2980, - 'x', 3026, - '}', 1619, - ',', 2937, - ':', 2937, + 'h', 2982, + 'i', 2944, + 'l', 2974, + 'm', 2965, + 'n', 2977, + 'o', 3032, + 'r', 2976, + 's', 3009, + 't', 3041, + 'u', 3042, + 'w', 2981, + 'x', 3027, + '}', 1620, + ',', 2938, + ':', 2938, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2963); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2964); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2937); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 177: ADVANCE_MAP( - '!', 2942, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - '`', 585, - 'a', 3004, - 'b', 2987, - 'e', 3006, - 'i', 2999, - 'm', 3023, - 'n', 3027, - 'o', 3032, - 's', 3046, - 'x', 3026, + '!', 2943, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + '`', 586, + 'a', 3005, + 'b', 2988, + 'e', 3007, + 'i', 3000, + 'm', 3024, + 'n', 3028, + 'o', 3033, + 's', 3047, + 'x', 3027, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(131); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); case 178: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1531, - '=', 1851, - '>', 1534, - ']', 1506, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1532, + '=', 1852, + '>', 1535, + ']', 1507, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, + 'o', 3038, + 's', 3046, + 'x', 3023, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(140); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); case 179: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - ']', 1506, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + ']', 1507, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, + 'o', 3038, + 's', 3046, + 'x', 3023, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); case 180: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - ':', 1500, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + ':', 1501, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, - '|', 1509, + 'o', 3038, + 's', 3046, + 'x', 3023, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2937); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 181: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 1633, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 1634, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, - '|', 1509, + 'o', 3038, + 's', 3046, + 'x', 3023, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2937); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 182: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '{', 1618, + 'x', 3013, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 183: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, + 'o', 3038, + 's', 3046, + 'x', 3023, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 184: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '{', 1618, + 'x', 3013, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 185: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '}', 1619, + 'x', 3013, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 186: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - ']', 1506, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + ']', 1507, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '}', 1619, + 'x', 3013, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(2937); + lookahead != '{') ADVANCE(2938); END_STATE(); case 187: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2997, - 'b', 2984, - 'e', 3003, - 'i', 2998, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2998, + 'b', 2985, + 'e', 3004, + 'i', 2999, 'm', 3019, 'n', 3018, - 'o', 3037, - 's', 3044, - 'x', 3014, + 'o', 3038, + 's', 3046, + 'x', 3023, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2938); END_STATE(); case 188: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '{', 1618, + 'x', 3013, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2938); END_STATE(); case 189: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '{', 1618, + 'x', 3013, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2938); END_STATE(); case 190: ADVANCE_MAP( - '!', 2942, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - '<', 1531, - '=', 1850, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '!', 2943, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + '<', 1532, + '=', 1851, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, + 'x', 3013, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2938); END_STATE(); case 191: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3083, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3184, - 'N', 3180, - '[', 1503, - '_', 3076, - '`', 585, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'f', 3094, - 'i', 3073, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3084, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3185, + 'N', 3181, + '[', 1504, + '_', 3077, + '`', 586, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'f', 3095, + 'i', 3074, 'm', 3143, 'n', 3149, - 'o', 3160, + 'o', 3161, 's', 3172, - 't', 3163, - 'x', 3139, - '{', 1618, + 't', 3164, + 'x', 3140, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); case 192: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3084, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3182, - 'N', 3177, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 3120, - 'b', 3109, - 'e', 3127, - 'f', 3092, - 'i', 3071, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3085, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3183, + 'N', 3178, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 3121, + 'b', 3110, + 'e', 3128, + 'f', 3093, + 'i', 3072, 'm', 3142, - 'n', 3155, - 'o', 3160, - 's', 3169, - 't', 3161, - 'x', 3137, - '{', 1618, - '}', 1619, + 'n', 3156, + 'o', 3161, + 's', 3170, + 't', 3162, + 'x', 3138, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3089); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(3060); + lookahead != ']') ADVANCE(3061); END_STATE(); case 193: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3085, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3183, - 'N', 3179, - '[', 1503, - ']', 1506, - '_', 3075, - '`', 585, - 'a', 3122, - 'b', 3110, - 'e', 3129, - 'f', 3093, - 'i', 3072, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3086, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3184, + 'N', 3180, + '[', 1504, + ']', 1507, + '_', 3076, + '`', 586, + 'a', 3123, + 'b', 3111, + 'e', 3130, + 'f', 3094, + 'i', 3073, 'm', 3144, - 'n', 3156, - 'o', 3160, - 's', 3170, - 't', 3162, - 'x', 3138, - '{', 1618, + 'n', 3157, + 'o', 3161, + 's', 3171, + 't', 3163, + 'x', 3139, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3089); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3090); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); case 194: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3085, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3183, - 'N', 3179, - '[', 1503, - ']', 1506, - '_', 3075, - '`', 585, - 'a', 3122, - 'b', 3110, - 'e', 3129, - 'f', 3093, - 'i', 3072, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3086, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3184, + 'N', 3180, + '[', 1504, + ']', 1507, + '_', 3076, + '`', 586, + 'a', 3123, + 'b', 3111, + 'e', 3130, + 'f', 3094, + 'i', 3073, 'm', 3144, - 'n', 3156, - 'o', 3160, - 's', 3170, - 't', 3162, - 'x', 3138, - '{', 1618, + 'n', 3157, + 'o', 3161, + 's', 3171, + 't', 3163, + 'x', 3139, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3089); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3090); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); case 195: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 3086, - ':', 3060, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3181, - 'N', 3178, - '_', 3074, - '`', 585, - 'a', 3115, - 'b', 3113, - 'c', 3098, - 'd', 3099, - 'e', 3119, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 3087, + ':', 3061, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3182, + 'N', 3179, + '_', 3075, + '`', 586, + 'a', 3116, + 'b', 3114, + 'c', 3099, + 'd', 3100, + 'e', 3120, 'f', 3147, - 'h', 3108, - 'i', 3070, - 'l', 3100, - 'm', 3091, - 'n', 3103, - 'o', 3158, - 'r', 3102, - 's', 3135, - 't', 3167, - 'u', 3168, - 'w', 3107, - 'x', 3153, - '}', 1619, + 'h', 3109, + 'i', 3071, + 'l', 3101, + 'm', 3092, + 'n', 3104, + 'o', 3159, + 'r', 3103, + 's', 3136, + 't', 3168, + 'u', 3169, + 'w', 3108, + 'x', 3154, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3090); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3091); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3060); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 196: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - '-', 1554, - '.', 1627, - '/', 1710, - '0', 3086, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3181, - 'N', 3178, - '_', 3074, - '`', 585, - 'a', 3115, - 'b', 3113, - 'c', 3098, - 'd', 3099, - 'e', 3119, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + '-', 1555, + '.', 1628, + '/', 1711, + '0', 3087, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3182, + 'N', 3179, + '_', 3075, + '`', 586, + 'a', 3116, + 'b', 3114, + 'c', 3099, + 'd', 3100, + 'e', 3120, 'f', 3147, - 'h', 3108, - 'i', 3070, - 'l', 3100, - 'm', 3091, - 'n', 3103, - 'o', 3158, - 'r', 3102, - 's', 3135, - 't', 3167, - 'u', 3168, - 'w', 3107, - 'x', 3153, - '}', 1619, - ',', 3060, - ':', 3060, + 'h', 3109, + 'i', 3071, + 'l', 3101, + 'm', 3092, + 'n', 3104, + 'o', 3159, + 'r', 3103, + 's', 3136, + 't', 3168, + 'u', 3169, + 'w', 3108, + 'x', 3154, + '}', 1620, + ',', 3061, + ':', 3061, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3090); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3091); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(3060); + (lookahead < '_' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 197: ADVANCE_MAP( - '!', 3066, - '"', 2006, - '#', 3584, - '\'', 544, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - '`', 585, - 'a', 3131, - 'b', 3114, - 'e', 3133, - 'i', 3126, - 'm', 3150, - 'n', 3154, - 'o', 3159, - 's', 3173, - 'x', 3153, + '!', 3067, + '"', 2007, + '#', 3585, + '\'', 545, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + '`', 586, + 'a', 3132, + 'b', 3115, + 'e', 3134, + 'i', 3127, + 'm', 3151, + 'n', 3155, + 'o', 3160, + 's', 3174, + 'x', 3154, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(131); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 198: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3065, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3068, - '>', 1534, - ']', 1506, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3066, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3069, + '>', 1535, + ']', 1507, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, + 'o', 3165, + 's', 3173, + 'x', 3150, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(140); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); case 199: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - ')', 1508, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3065, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - ']', 1506, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '$', 1512, + ')', 1509, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3066, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + ']', 1507, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, + 'o', 3165, + 's', 3173, + 'x', 3150, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); case 200: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3065, - '/', 1710, - ':', 1500, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3066, + '/', 1711, + ':', 1501, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, - '|', 1509, + 'o', 3165, + 's', 3173, + 'x', 3150, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3060); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 201: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1545, - '.', 3065, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1546, + '.', 3066, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, - '|', 1509, + 'o', 3165, + 's', 3173, + 'x', 3150, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3060); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 202: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '!', 3067, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, - '{', 1618, + 'x', 3140, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 203: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, + 'o', 3165, + 's', 3173, + 'x', 3150, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 204: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '$', 1511, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '!', 3067, + '#', 3585, + '$', 1512, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, - '{', 1618, + 'x', 3140, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 205: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '!', 3067, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, - '}', 1619, + 'x', 3140, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3061); END_STATE(); case 206: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - ']', 1506, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '!', 3067, + '#', 3585, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + ']', 1507, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, - '}', 1619, + 'x', 3140, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '-' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(3060); + lookahead != '{') ADVANCE(3061); END_STATE(); case 207: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3124, - 'b', 3111, - 'e', 3130, - 'i', 3125, + '!', 3067, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3125, + 'b', 3112, + 'e', 3131, + 'i', 3126, 'm', 3146, 'n', 3145, - 'o', 3164, - 's', 3171, - 'x', 3141, + 'o', 3165, + 's', 3173, + 'x', 3150, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 208: ADVANCE_MAP( - '!', 3066, - '#', 3584, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - '<', 1758, - '=', 3067, - '>', 1534, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '!', 3067, + '#', 3585, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + '<', 1759, + '=', 3068, + '>', 1535, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, + 'x', 3140, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 209: ADVANCE_MAP( - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - '*', 1687, - '+', 1731, - '-', 1556, - '.', 1631, - '/', 1712, - '0', 2513, - '<', 1759, - '=', 2494, - '>', 1535, - 'I', 2909, - 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'f', 2523, - 'i', 2503, - 'm', 2718, - 'n', 2728, - 'o', 2757, - 's', 2828, - 't', 2758, - 'x', 2717, - '{', 1618, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + '*', 1688, + '+', 1732, + '-', 1557, + '.', 1632, + '/', 1713, + '0', 2514, + '<', 1760, + '=', 2495, + '>', 1536, + 'I', 2910, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'f', 2524, + 'i', 2504, + 'm', 2719, + 'n', 2729, + 'o', 2758, + 's', 2829, + 't', 2759, + 'x', 2718, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(2936); + lookahead != '}') ADVANCE(2937); END_STATE(); case 210: ADVANCE_MAP( - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1515, - '\'', 544, - '(', 1507, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1556, - '.', 1631, - '/', 1712, - '0', 2513, - '<', 1759, - '=', 2494, - '>', 1535, - 'I', 2909, - 'N', 2899, - '[', 1503, - '_', 1625, - '`', 585, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'f', 2523, - 'i', 2503, - 'm', 2718, - 'n', 2715, - 'o', 2757, - 's', 2828, - 't', 2758, - 'x', 2717, - '{', 1618, - '}', 1619, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1516, + '\'', 545, + '(', 1508, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1557, + '.', 1632, + '/', 1713, + '0', 2514, + '<', 1760, + '=', 2495, + '>', 1536, + 'I', 2910, + 'N', 2900, + '[', 1504, + '_', 1626, + '`', 586, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'f', 2524, + 'i', 2504, + 'm', 2719, + 'n', 2716, + 'o', 2758, + 's', 2829, + 't', 2759, + 'x', 2718, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2936); + lookahead != ']') ADVANCE(2937); END_STATE(); case 211: ADVANCE_MAP( - '!', 2492, - '"', 2006, - '#', 3592, - '\'', 544, - '*', 1687, - '+', 1731, - '-', 1549, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - '`', 585, - 'a', 2673, - 'b', 2627, - 'e', 2691, - 'i', 2689, - 'm', 2724, - 'n', 2733, - 'o', 2741, - 's', 2806, - 'x', 2721, + '!', 2493, + '"', 2007, + '#', 3593, + '\'', 545, + '*', 1688, + '+', 1732, + '-', 1550, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + '`', 586, + 'a', 2674, + 'b', 2628, + 'e', 2692, + 'i', 2690, + 'm', 2725, + 'n', 2734, + 'o', 2742, + 's', 2807, + 'x', 2722, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(131); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && (lookahead < '\'' || '+' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2936); + lookahead != '}') ADVANCE(2937); END_STATE(); case 212: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - ')', 1508, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1549, - '.', 2486, - '/', 1712, - ':', 1501, - '<', 1759, - '=', 2494, - '>', 1535, - ']', 1506, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, + '!', 2493, + '#', 3593, + '$', 1516, + ')', 1509, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1550, + '.', 2487, + '/', 1713, + ':', 1502, + '<', 1760, + '=', 2495, + '>', 1536, + ']', 1507, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(140); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2936); + lookahead != '}') ADVANCE(2937); END_STATE(); case 213: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - ')', 1508, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1549, - '.', 2486, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - ']', 1506, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, + '!', 2493, + '#', 3593, + '$', 1516, + ')', 1509, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1550, + '.', 2487, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + ']', 1507, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2936); + lookahead != '}') ADVANCE(2937); END_STATE(); case 214: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1549, - '.', 2486, - '/', 1712, - ':', 1501, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, - '|', 1510, + '!', 2493, + '#', 3593, + '$', 1516, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1550, + '.', 2487, + '/', 1713, + ':', 1502, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, + '|', 1511, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ':' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2936); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2937); END_STATE(); case 215: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1549, - '.', 2486, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, - '|', 1510, + '!', 2493, + '#', 3593, + '$', 1516, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1550, + '.', 2487, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, + '|', 1511, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '/' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2936); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2937); END_STATE(); case 216: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - '*', 1687, - '+', 1731, - '-', 1549, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '{', 1618, + '!', 2493, + '#', 3593, + '$', 1516, + '*', 1688, + '+', 1732, + '-', 1550, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 217: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - '*', 1687, - '+', 1731, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '{', 1618, + '!', 2493, + '#', 3593, + '$', 1516, + '*', 1688, + '+', 1732, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 218: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '$', 1515, - '*', 1687, - '+', 1731, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, + '!', 2493, + '#', 3593, + '$', 1516, + '*', 1688, + '+', 1732, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 219: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - ',', 2029, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - ']', 1506, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '}', 1619, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + ',', 2030, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + ']', 1507, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '-' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != '[' && (lookahead < '`' || 'b' < lookahead) && - lookahead != '{') ADVANCE(2936); + lookahead != '{') ADVANCE(2937); END_STATE(); case 220: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - ',', 1505, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '}', 1619, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + ',', 1506, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 221: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - '-', 1549, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '{', 1618, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + '-', 1550, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 222: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - '-', 1549, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2686, - 'b', 2634, - 'e', 2697, - 'i', 2687, - 'm', 2720, - 'n', 2719, - 'o', 2763, - 's', 2823, - 'x', 2713, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + '-', 1550, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2687, + 'b', 2635, + 'e', 2698, + 'i', 2688, + 'm', 2721, + 'n', 2720, + 'o', 2764, + 's', 2824, + 'x', 2714, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 223: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2493, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2494, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 224: ADVANCE_MAP( - '!', 2492, - '#', 3592, - '*', 1687, - '+', 1731, - '-', 1557, - '/', 1712, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '{', 1618, + '!', 2493, + '#', 3593, + '*', 1688, + '+', 1732, + '-', 1558, + '/', 1713, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 225: ADVANCE_MAP( - '!', 2495, - '"', 2006, - '#', 3588, - '$', 1515, - '\'', 544, - '(', 1507, - '*', 1688, - '+', 1732, - ',', 2029, - '-', 1553, - '.', 1629, - '/', 1713, - '0', 2508, - ':', 2936, - '<', 1760, - '=', 2496, - '>', 1536, - 'I', 2885, - 'N', 2877, - '_', 2507, - '`', 585, - 'a', 2661, - 'b', 2628, - 'c', 2525, - 'd', 2572, - 'e', 2672, - 'f', 2714, - 'h', 2637, - 'i', 2504, - 'l', 2588, - 'm', 2521, - 'n', 2573, - 'o', 2749, - 'r', 2574, - 's', 2709, - 't', 2750, - 'u', 2794, - 'w', 2625, - 'x', 2722, - '}', 1619, + '!', 2496, + '"', 2007, + '#', 3589, + '$', 1516, + '\'', 545, + '(', 1508, + '*', 1689, + '+', 1733, + ',', 2030, + '-', 1554, + '.', 1630, + '/', 1714, + '0', 2509, + ':', 2937, + '<', 1761, + '=', 2497, + '>', 1537, + 'I', 2886, + 'N', 2878, + '_', 2508, + '`', 586, + 'a', 2662, + 'b', 2629, + 'c', 2526, + 'd', 2573, + 'e', 2673, + 'f', 2715, + 'h', 2638, + 'i', 2505, + 'l', 2589, + 'm', 2522, + 'n', 2574, + 'o', 2750, + 'r', 2575, + 's', 2710, + 't', 2751, + 'u', 2795, + 'w', 2626, + 'x', 2723, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2509); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2896); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2510); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2897); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2897); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2898); END_STATE(); case 226: ADVANCE_MAP( - '!', 2495, - '"', 2006, - '#', 3588, - '$', 1515, - '\'', 544, - '(', 1507, - '*', 1688, - '+', 1732, - '-', 1553, - '.', 1629, - '/', 1713, - '0', 2508, - '<', 1760, - '=', 2496, - '>', 1536, - 'I', 2885, - 'N', 2877, - '_', 2507, - '`', 585, - 'a', 2661, - 'b', 2628, - 'c', 2525, - 'd', 2572, - 'e', 2672, - 'f', 2714, - 'h', 2637, - 'i', 2504, - 'l', 2588, - 'm', 2521, - 'n', 2573, - 'o', 2749, - 'r', 2574, - 's', 2709, - 't', 2750, - 'u', 2794, - 'w', 2625, - 'x', 2722, - '}', 1619, - ',', 2936, - ':', 2936, + '!', 2496, + '"', 2007, + '#', 3589, + '$', 1516, + '\'', 545, + '(', 1508, + '*', 1689, + '+', 1733, + '-', 1554, + '.', 1630, + '/', 1714, + '0', 2509, + '<', 1761, + '=', 2497, + '>', 1537, + 'I', 2886, + 'N', 2878, + '_', 2508, + '`', 586, + 'a', 2662, + 'b', 2629, + 'c', 2526, + 'd', 2573, + 'e', 2673, + 'f', 2715, + 'h', 2638, + 'i', 2505, + 'l', 2589, + 'm', 2522, + 'n', 2574, + 'o', 2750, + 'r', 2575, + 's', 2710, + 't', 2751, + 'u', 2795, + 'w', 2626, + 'x', 2723, + '}', 1620, + ',', 2937, + ':', 2937, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2509); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2896); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2510); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2897); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2897); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2898); END_STATE(); case 227: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1866, - '<', 1758, - '=', 2135, - '>', 1534, - 'B', 1965, - 'E', 2141, - 'G', 2145, - 'I', 2229, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 1623, - '`', 585, - 'a', 2182, - 'b', 1966, - 'd', 2154, - 'e', 2140, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'i', 2148, - 'k', 2144, - 'm', 2146, - 'n', 2193, - 'o', 2196, - 'p', 2144, - 's', 2164, - 't', 2143, - 'u', 2206, - 'w', 2177, - 'x', 2188, - '{', 1618, - '}', 1619, - 0xb5, 2206, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1867, + '<', 1759, + '=', 2136, + '>', 1535, + 'B', 1966, + 'E', 2142, + 'G', 2146, + 'I', 2230, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 1624, + '`', 586, + 'a', 2183, + 'b', 1967, + 'd', 2155, + 'e', 2141, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'i', 2149, + 'k', 2145, + 'm', 2147, + 'n', 2194, + 'o', 2197, + 'p', 2145, + 's', 2165, + 't', 2144, + 'u', 2207, + 'w', 2178, + 'x', 2189, + '{', 1619, + '}', 1620, + 0xb5, 2207, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 228: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - '?', 1699, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2185, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2196, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '}', 1619, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + '?', 1700, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2186, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2197, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 229: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - 'B', 1965, - 'E', 2145, - 'G', 2145, - 'I', 2229, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 1966, - 'd', 2154, - 'e', 2142, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'i', 2148, - 'k', 2144, - 'm', 2146, - 'n', 2193, - 'o', 2196, - 'p', 2144, - 's', 2164, - 't', 2143, - 'u', 2206, - 'w', 2177, - 'x', 2188, - '{', 1618, - '}', 1619, - 0xb5, 2206, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + 'B', 1966, + 'E', 2146, + 'G', 2146, + 'I', 2230, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 1967, + 'd', 2155, + 'e', 2143, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'i', 2149, + 'k', 2145, + 'm', 2147, + 'n', 2194, + 'o', 2197, + 'p', 2145, + 's', 2165, + 't', 2144, + 'u', 2207, + 'w', 2178, + 'x', 2189, + '{', 1619, + '}', 1620, + 0xb5, 2207, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 230: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - 'B', 1965, - 'E', 2141, - 'G', 2145, - 'I', 2229, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 1966, - 'd', 2154, - 'e', 2140, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'i', 2148, - 'k', 2144, - 'm', 2146, - 'n', 2193, - 'o', 2196, - 'p', 2144, - 's', 2164, - 't', 2143, - 'u', 2206, - 'w', 2177, - 'x', 2188, - '{', 1618, - '}', 1619, - 0xb5, 2206, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + 'B', 1966, + 'E', 2142, + 'G', 2146, + 'I', 2230, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 1967, + 'd', 2155, + 'e', 2141, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'i', 2149, + 'k', 2145, + 'm', 2147, + 'n', 2194, + 'o', 2197, + 'p', 2145, + 's', 2165, + 't', 2144, + 'u', 2207, + 'w', 2178, + 'x', 2189, + '{', 1619, + '}', 1620, + 0xb5, 2207, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 231: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2185, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2196, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '}', 1619, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2186, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2197, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 232: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - '?', 1699, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2185, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2196, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '}', 1619, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + '?', 1700, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2186, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2197, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 233: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - 'B', 1965, - 'E', 2145, - 'G', 2145, - 'I', 2229, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 1966, - 'd', 2154, - 'e', 2142, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'i', 2148, - 'k', 2144, - 'm', 2146, - 'n', 2193, - 'o', 2196, - 'p', 2144, - 's', 2164, - 't', 2143, - 'u', 2206, - 'w', 2177, - 'x', 2188, - '{', 1618, - '}', 1619, - 0xb5, 2206, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + 'B', 1966, + 'E', 2146, + 'G', 2146, + 'I', 2230, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 1967, + 'd', 2155, + 'e', 2143, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'i', 2149, + 'k', 2145, + 'm', 2147, + 'n', 2194, + 'o', 2197, + 'p', 2145, + 's', 2165, + 't', 2144, + 'u', 2207, + 'w', 2178, + 'x', 2189, + '{', 1619, + '}', 1620, + 0xb5, 2207, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 234: ADVANCE_MAP( - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1933, - '<', 1758, - '=', 2135, - '>', 1534, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2185, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2196, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '}', 1619, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1934, + '<', 1759, + '=', 2136, + '>', 1535, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2186, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2197, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 235: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - '?', 1699, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + '?', 1700, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 236: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 237: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - '?', 1699, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + '?', 1700, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 238: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'B', 1965, - 'E', 3382, - 'G', 3382, - 'I', 3454, - 'K', 3382, - 'M', 3382, - 'N', 3449, - 'P', 3382, - 'T', 3382, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 1967, - 'd', 3391, - 'e', 3379, - 'f', 3390, - 'g', 3381, - 'h', 3426, - 'i', 3385, - 'k', 3381, - 'm', 3383, - 'n', 3424, - 'o', 3427, - 'p', 3381, - 's', 3402, - 't', 3380, - 'u', 3434, - 'w', 3411, - 'x', 3421, - '{', 1618, - 0xb5, 3434, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'B', 1966, + 'E', 3383, + 'G', 3383, + 'I', 3455, + 'K', 3383, + 'M', 3383, + 'N', 3450, + 'P', 3383, + 'T', 3383, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 1968, + 'd', 3392, + 'e', 3380, + 'f', 3391, + 'g', 3382, + 'h', 3427, + 'i', 3386, + 'k', 3382, + 'm', 3384, + 'n', 3425, + 'o', 3428, + 'p', 3382, + 's', 3403, + 't', 3381, + 'u', 3435, + 'w', 3412, + 'x', 3422, + '{', 1619, + 0xb5, 3435, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 239: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 1504, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 1505, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 240: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - '?', 1699, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + '?', 1700, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '?' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 241: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 242: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'B', 1965, - 'E', 3382, - 'G', 3382, - 'I', 3454, - 'K', 3382, - 'M', 3382, - 'N', 3449, - 'P', 3382, - 'T', 3382, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 1967, - 'd', 3391, - 'e', 3379, - 'f', 3390, - 'g', 3381, - 'h', 3426, - 'i', 3385, - 'k', 3381, - 'm', 3383, - 'n', 3424, - 'o', 3427, - 'p', 3381, - 's', 3402, - 't', 3380, - 'u', 3434, - 'w', 3411, - 'x', 3421, - '{', 1618, - 0xb5, 3434, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'B', 1966, + 'E', 3383, + 'G', 3383, + 'I', 3455, + 'K', 3383, + 'M', 3383, + 'N', 3450, + 'P', 3383, + 'T', 3383, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 1968, + 'd', 3392, + 'e', 3380, + 'f', 3391, + 'g', 3382, + 'h', 3427, + 'i', 3386, + 'k', 3382, + 'm', 3384, + 'n', 3425, + 'o', 3428, + 'p', 3382, + 's', 3403, + 't', 3381, + 'u', 3435, + 'w', 3412, + 'x', 3422, + '{', 1619, + 0xb5, 3435, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 243: ADVANCE_MAP( - '!', 3377, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '*', 1685, - '+', 1730, - ',', 2029, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1934, - '<', 1758, - '=', 3378, - '>', 1534, - 'I', 3454, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'a', 3418, - 'b', 3407, - 'e', 3419, - 'f', 3390, - 'i', 3385, - 'm', 3422, - 'n', 3425, - 'o', 3427, - 's', 3438, - 't', 3431, - 'x', 3421, - '{', 1618, + '!', 3378, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '*', 1686, + '+', 1731, + ',', 2030, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1935, + '<', 1759, + '=', 3379, + '>', 1535, + 'I', 3455, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'a', 3419, + 'b', 3408, + 'e', 3420, + 'f', 3391, + 'i', 3386, + 'm', 3423, + 'n', 3426, + 'o', 3428, + 's', 3439, + 't', 3432, + 'x', 3422, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 244: ADVANCE_MAP( - '!', 2381, - '"', 2006, - '#', 3587, - '$', 1515, - '\'', 544, - '(', 1507, - '*', 1689, - '+', 1733, - ',', 2029, - '-', 1548, - '.', 1628, - '/', 1709, - '0', 2385, - '<', 1757, - '=', 2382, - '>', 1533, - 'I', 2443, - 'N', 2438, - '[', 1503, - ']', 1506, - '_', 2386, - '`', 585, - 'a', 2410, - 'b', 2403, - 'e', 2412, - 'f', 2390, - 'i', 2383, - 'm', 2416, - 'n', 2415, - 'o', 2418, - 's', 2428, - 't', 2419, - 'x', 2414, - '{', 1618, + '!', 2382, + '"', 2007, + '#', 3588, + '$', 1516, + '\'', 545, + '(', 1508, + '*', 1690, + '+', 1734, + ',', 2030, + '-', 1549, + '.', 1629, + '/', 1710, + '0', 2386, + '<', 1758, + '=', 2383, + '>', 1534, + 'I', 2444, + 'N', 2439, + '[', 1504, + ']', 1507, + '_', 2387, + '`', 586, + 'a', 2411, + 'b', 2404, + 'e', 2413, + 'f', 2391, + 'i', 2384, + 'm', 2417, + 'n', 2416, + 'o', 2419, + 's', 2429, + 't', 2420, + 'x', 2415, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2389); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2390); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2465); + lookahead != '}') ADVANCE(2466); END_STATE(); case 245: ADVANCE_MAP( - '!', 2381, - '"', 2006, - '#', 3587, - '$', 1515, - '\'', 544, - '(', 1507, - '*', 1689, - '+', 1733, - ',', 1505, - '-', 1548, - '.', 1628, - '/', 1709, - '0', 2385, - '<', 1757, - '=', 2382, - '>', 1533, - 'I', 2443, - 'N', 2438, - '[', 1503, - ']', 1506, - '_', 2386, - '`', 585, - 'a', 2410, - 'b', 2403, - 'e', 2412, - 'f', 2390, - 'i', 2383, - 'm', 2416, - 'n', 2415, - 'o', 2418, - 's', 2428, - 't', 2419, - 'x', 2414, - '{', 1618, + '!', 2382, + '"', 2007, + '#', 3588, + '$', 1516, + '\'', 545, + '(', 1508, + '*', 1690, + '+', 1734, + ',', 1506, + '-', 1549, + '.', 1629, + '/', 1710, + '0', 2386, + '<', 1758, + '=', 2383, + '>', 1534, + 'I', 2444, + 'N', 2439, + '[', 1504, + ']', 1507, + '_', 2387, + '`', 586, + 'a', 2411, + 'b', 2404, + 'e', 2413, + 'f', 2391, + 'i', 2384, + 'm', 2417, + 'n', 2416, + 'o', 2419, + 's', 2429, + 't', 2420, + 'x', 2415, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2390); if (lookahead != 0 && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && - lookahead != '}') ADVANCE(2465); + lookahead != '}') ADVANCE(2466); END_STATE(); case 246: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 247: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1935, - 'N', 2103, - '[', 1503, - ']', 1506, - '_', 2091, - '`', 585, - 'f', 2092, - 'n', 2098, - 't', 2099, - '{', 1618, - 'I', 2107, - 'i', 2107, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1936, + 'N', 2104, + '[', 1504, + ']', 1507, + '_', 2092, + '`', 586, + 'f', 2093, + 'n', 2099, + 't', 2100, + '{', 1619, + 'I', 2108, + 'i', 2108, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2125); + lookahead != '}') ADVANCE(2126); END_STATE(); case 248: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - ']', 1506, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + ']', 1507, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 249: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1935, - 'N', 2103, - '[', 1503, - ']', 1506, - '_', 2091, - '`', 585, - 'f', 2092, - 'n', 2098, - 't', 2099, - '{', 1618, - 'I', 2107, - 'i', 2107, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1936, + 'N', 2104, + '[', 1504, + ']', 1507, + '_', 2092, + '`', 586, + 'f', 2093, + 'n', 2099, + 't', 2100, + '{', 1619, + 'I', 2108, + 'i', 2108, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2125); + lookahead != '}') ADVANCE(2126); END_STATE(); case 250: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1931, - '=', 562, - '?', 1699, - 'E', 567, - 'G', 574, - 'I', 746, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 566, - 'f', 589, - 'g', 573, - 'h', 683, - 'i', 625, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1932, + '?', 1700, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + 'E', 582, + 'e', 582, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + lookahead == ' ') SKIP(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 251: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3264, - '`', 585, - 'd', 3279, - 'e', 3229, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + '=', 563, + 'E', 568, + 'G', 575, + 'I', 747, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 585, + '`', 586, + 'd', 588, + 'e', 567, + 'f', 590, + 'g', 574, + 'h', 684, + 'i', 626, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 252: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - 'E', 581, - 'e', 581, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3266, + '`', 586, + 'd', 3280, + 'e', 3230, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(3188); END_STATE(); case 253: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - 'N', 2357, - '[', 1503, - '_', 2265, - '`', 585, - 'f', 2271, - 'n', 2317, - 't', 2340, - '{', 1618, - 'I', 2361, - 'i', 2361, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + 'N', 2358, + '[', 1504, + '_', 2267, + '`', 586, + 'f', 2272, + 'n', 2318, + 't', 2341, + '{', 1619, + 'I', 2362, + 'i', 2362, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(2250); END_STATE(); case 254: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 3268, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3229, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 3269, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'd', 3280, + 'e', 3230, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 255: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 3268, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3233, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 3269, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'd', 3280, + 'e', 3234, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 256: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ':', 1500, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 652, - 'c', 675, - 'd', 619, - 'e', 730, - 'f', 589, - 'm', 674, - 'n', 668, - 't', 688, - 'u', 697, - '{', 1618, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ':', 1501, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 653, + 'c', 676, + 'd', 620, + 'e', 731, + 'f', 590, + 'm', 675, + 'n', 669, + 't', 689, + 'u', 698, + '{', 1619, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 257: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ':', 1500, - 'N', 1323, - '[', 1503, - '_', 1255, - '`', 585, - 'f', 1259, - 'n', 1290, - 't', 1299, - '{', 1618, - 'I', 1329, - 'i', 1329, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ':', 1501, + 'N', 1324, + '[', 1504, + '_', 1256, + '`', 586, + 'f', 1260, + 'n', 1291, + 't', 1300, + '{', 1619, + 'I', 1330, + 'i', 1330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 258: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - '=', 975, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 573, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + '=', 976, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'd', 588, + 'e', 574, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 259: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - '=', 975, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 566, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + '=', 976, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'd', 588, + 'e', 567, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 260: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - '=', 562, - '?', 1699, - 'E', 574, - 'G', 574, - 'I', 746, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 573, - 'f', 589, - 'g', 573, - 'h', 683, - 'i', 625, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + '=', 563, + 'E', 575, + 'G', 575, + 'I', 747, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'd', 588, + 'e', 574, + 'f', 590, + 'g', 574, + 'h', 684, + 'i', 626, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 261: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - '=', 562, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'b', 1171, - 'c', 1154, - 'd', 1142, - 'f', 1029, - 'i', 1085, - 'm', 1033, - 'n', 1148, - 'r', 1082, - 't', 1162, - 'w', 1097, - '{', 1618, - '|', 1509, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + '=', 563, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'b', 1172, + 'c', 1155, + 'd', 1143, + 'f', 1030, + 'i', 1086, + 'm', 1034, + 'n', 1149, + 'r', 1083, + 't', 1163, + 'w', 1098, + '{', 1619, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 262: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 573, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + '?', 1700, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 263: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'f', 1029, - 'i', 1085, - 'n', 1148, - 't', 1182, - '{', 1618, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'd', 588, + 'e', 574, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 264: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'N', 1228, - '[', 1503, - '_', 1021, - '`', 585, - 'f', 1029, - 'n', 1148, - 't', 1182, - '{', 1618, - 'I', 1234, - 'i', 1234, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'f', 1030, + 'i', 1086, + 'n', 1149, + 't', 1183, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 265: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'N', 1229, + '[', 1504, + '_', 1022, + '`', 586, + 'f', 1030, + 'n', 1149, + 't', 1183, + '{', 1619, + 'I', 1235, + 'i', 1235, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 266: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'N', 1456, - '[', 1503, - '_', 1340, - '`', 585, - 'f', 1344, - 'n', 1406, - 't', 1416, - '{', 1618, - 'I', 1466, - 'i', 1466, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 267: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1865, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - 'E', 581, - 'e', 581, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'N', 1457, + '[', 1504, + '_', 1341, + '`', 586, + 'f', 1345, + 'n', 1407, + 't', 1417, + '{', 1619, + 'I', 1467, + 'i', 1467, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); END_STATE(); case 268: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 3268, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3233, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1866, + 'N', 738, + '[', 1504, + '_', 585, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + 'E', 582, + 'e', 582, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(3187); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 269: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - ':', 1500, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 3269, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'd', 3280, + 'e', 3234, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(3188); END_STATE(); case 270: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'i', 2148, - 'n', 2192, - 't', 2197, - '{', 1618, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + ':', 1501, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(270); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 271: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'i', 2149, + 'n', 2193, + 't', 2198, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(271); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 272: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 1323, - '[', 1503, - '_', 1255, - '`', 585, - 'f', 1259, - 'n', 1290, - 't', 1299, - '{', 1618, - 'I', 1329, - 'i', 1329, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 273: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - ':', 1500, - '_', 2153, - '`', 585, - 'I', 2229, - 'i', 2229, - 'N', 2225, - 'n', 2225, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 1324, + '[', 1504, + '_', 1256, + '`', 586, + 'f', 1260, + 'n', 1291, + 't', 1300, + '{', 1619, + 'I', 1330, + 'i', 1330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(273); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && + lookahead != ';' && lookahead != ']' && - lookahead != '{' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 274: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '_', 2153, - '`', 585, - 'I', 2229, - 'i', 2229, - 'N', 2225, - 'n', 2225, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + ':', 1501, + '_', 2154, + '`', 586, + 'I', 2230, + 'i', 2230, + 'N', 2226, + 'n', 2226, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '{' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 275: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - 'N', 1228, - '[', 1503, - '_', 1021, - '`', 585, - 'f', 1029, - 'n', 1148, - 't', 1182, - '{', 1618, - 'I', 1234, - 'i', 1234, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '_', 2154, + '`', 586, + 'I', 2230, + 'i', 2230, + 'N', 2226, + 'n', 2226, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && + lookahead != '[' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '{' && + lookahead != '}') ADVANCE(2249); END_STATE(); case 276: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + 'N', 1229, + '[', 1504, + '_', 1022, + '`', 586, + 'f', 1030, + 'n', 1149, + 't', 1183, + '{', 1619, + 'I', 1235, + 'i', 1235, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 277: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 278: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - 'N', 1323, - '[', 1503, - '_', 1255, - '`', 585, - 'f', 1259, - 'n', 1290, - 't', 1299, - '{', 1618, - 'I', 1329, - 'i', 1329, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != '}') ADVANCE(2249); END_STATE(); case 279: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1627, - '0', 1932, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1028, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1064, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '|', 1509, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + 'N', 1324, + '[', 1504, + '_', 1256, + '`', 586, + 'f', 1260, + 'n', 1291, + 't', 1300, + '{', 1619, + 'I', 1330, + 'i', 1330, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2057); + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(2249); END_STATE(); case 280: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1889, - '.', 1632, - '0', 1865, - ':', 1500, - '<', 1530, - '=', 1849, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'a', 652, - 'c', 675, - 'd', 619, - 'e', 730, - 'f', 589, - 'm', 674, - 'n', 668, - 't', 688, - 'u', 697, - '{', 1618, - 'I', 746, - 'i', 746, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1628, + '0', 1933, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1029, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1065, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(2058); END_STATE(); case 281: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1889, - '.', 1632, - '0', 1865, - '<', 1530, - '=', 1849, - 'N', 3053, - '[', 1503, - '_', 2952, - '`', 585, - 'f', 2967, - 'n', 3013, - 't', 3036, - '{', 1618, - 'I', 3057, - 'i', 3057, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1890, + '.', 1633, + '0', 1866, + ':', 1501, + '<', 1531, + '=', 1850, + 'N', 738, + '[', 1504, + '_', 585, + '`', 586, + 'a', 653, + 'c', 676, + 'd', 620, + 'e', 731, + 'f', 590, + 'm', 675, + 'n', 669, + 't', 689, + 'u', 698, + '{', 1619, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(2937); + lookahead == ' ') SKIP(256); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 282: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1889, - '.', 1632, - '0', 1865, - 'N', 3180, - '[', 1503, - '_', 3079, - '`', 585, - 'f', 3094, - 'n', 3140, - 't', 3163, - '{', 1618, - 'I', 3184, - 'i', 3184, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1890, + '.', 1633, + '0', 1866, + '<', 1531, + '=', 1850, + 'N', 3054, + '[', 1504, + '_', 2954, + '`', 586, + 'f', 2968, + 'n', 3014, + 't', 3037, + '{', 1619, + 'I', 3058, + 'i', 3058, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < ';' || '=' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(2938); END_STATE(); case 283: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ')', 1508, - ',', 1504, - '-', 1545, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1890, '.', 1633, - ':', 1500, - '<', 1530, - '=', 975, - '>', 1532, - '?', 1699, - '@', 1537, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - '`', 585, - 'd', 1260, - 'e', 1251, - 'g', 1251, - 'h', 1298, - 'k', 1251, - 'm', 1254, - 'n', 1308, - 'p', 1251, - 's', 1271, - 't', 1251, - 'u', 1308, - 'w', 1276, - '{', 1618, - '|', 1509, - 0xb5, 1308, - 'B', 1333, - 'b', 1333, + '0', 1866, + 'N', 3181, + '[', 1504, + '_', 3081, + '`', 586, + 'f', 3095, + 'n', 3141, + 't', 3164, + '{', 1619, + 'I', 3185, + 'i', 3185, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(284); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + lookahead != '}') ADVANCE(3061); END_STATE(); case 284: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - '=', 975, - '>', 1532, - '?', 1699, - '@', 1537, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - ']', 1506, - '`', 585, - 'd', 1260, - 'e', 1251, - 'g', 1251, - 'h', 1298, - 'k', 1251, - 'm', 1254, - 'n', 1308, - 'p', 1251, - 's', 1271, - 't', 1251, - 'u', 1308, - 'w', 1276, - '{', 1618, - '|', 1509, - 0xb5, 1308, - 'B', 1333, - 'b', 1333, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 1634, + ':', 1501, + '<', 1531, + '=', 976, + '>', 1533, + '?', 1700, + '@', 1538, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + '`', 586, + 'd', 1261, + 'e', 1252, + 'g', 1252, + 'h', 1299, + 'k', 1252, + 'm', 1255, + 'n', 1309, + 'p', 1252, + 's', 1272, + 't', 1252, + 'u', 1309, + 'w', 1277, + '{', 1619, + '|', 1510, + 0xb5, 1309, + 'B', 1334, + 'b', 1334, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(284); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(285); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 285: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1632, - '0', 1866, - 'N', 2225, - '[', 1503, - '_', 1623, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'E', 2150, - 'e', 2150, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + '=', 976, + '>', 1533, + '?', 1700, + '@', 1538, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + ']', 1507, + '`', 586, + 'd', 1261, + 'e', 1252, + 'g', 1252, + 'h', 1299, + 'k', 1252, + 'm', 1255, + 'n', 1309, + 'p', 1252, + 's', 1272, + 't', 1252, + 'u', 1309, + 'w', 1277, + '{', 1619, + '|', 1510, + 0xb5, 1309, + 'B', 1334, + 'b', 1334, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead == ' ') SKIP(285); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 286: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1632, - '0', 1933, - '?', 1699, - 'N', 2225, - '[', 1503, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1633, + '0', 1867, + 'N', 2226, + '[', 1504, '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'E', 2151, + 'e', 2151, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 287: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1632, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'E', 2150, - 'e', 2150, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1633, + '0', 1934, + '?', 1700, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(291); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 288: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1632, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1633, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'E', 2151, + 'e', 2151, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 289: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1627, - '0', 1866, - 'N', 2225, - '[', 1503, - '_', 1623, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'E', 2150, - 'e', 2150, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1633, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 290: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1627, - '0', 1933, - '?', 1699, - 'N', 2225, - '[', 1503, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1628, + '0', 1867, + 'N', 2226, + '[', 1504, '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'E', 2151, + 'e', 2151, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 291: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'E', 2150, - 'e', 2150, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1628, + '0', 1934, + '?', 1700, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(291); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 292: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'E', 2151, + 'e', 2151, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 293: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 3571, - 'E', 3563, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3562, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != ']') ADVANCE(2249); END_STATE(); case 294: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 3571, - 'E', 3566, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3565, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 3572, + 'E', 3564, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3563, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != '}') ADVANCE(3557); END_STATE(); case 295: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1867, - 'E', 3563, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3570, - '`', 585, - 'd', 3575, - 'e', 3562, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 3572, + 'E', 3567, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3566, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != '}') ADVANCE(3557); END_STATE(); case 296: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1867, - 'E', 3239, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3266, - '`', 585, - 'd', 3281, - 'e', 3238, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1868, + 'E', 3564, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3571, + '`', 586, + 'd', 3576, + 'e', 3563, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3557); END_STATE(); case 297: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1868, + 'E', 3240, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3268, + '`', 586, + 'd', 3282, + 'e', 3239, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3188); END_STATE(); case 298: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 3479, - '[', 1503, - ']', 1506, - '_', 3475, - '`', 585, - 'f', 3476, - 'n', 3478, - 't', 3477, - '{', 1618, - 'I', 3480, - 'i', 3480, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && @@ -29255,1076 +29250,1076 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 299: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 2356, - '[', 1503, - ']', 1506, - '_', 2266, - '`', 585, - 'f', 2270, - 'n', 2352, - 't', 2339, - '{', 1618, - 'I', 2360, - 'i', 2360, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 3480, + '[', 1504, + ']', 1507, + '_', 3476, + '`', 586, + 'f', 3477, + 'n', 3479, + 't', 3478, + '{', 1619, + 'I', 3481, + 'i', 3481, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(3474); END_STATE(); case 300: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 3270, - 'E', 3239, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3238, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 2357, + '[', 1504, + ']', 1507, + '_', 2268, + '`', 586, + 'f', 2271, + 'n', 2353, + 't', 2340, + '{', 1619, + 'I', 2361, + 'i', 2361, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(2250); END_STATE(); case 301: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 3270, - 'E', 3243, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3242, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 3271, + 'E', 3240, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3239, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 302: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1934, - ';', 994, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 3271, + 'E', 3244, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3243, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(308); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != ';' && + lookahead != '}') ADVANCE(3188); END_STATE(); case 303: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1934, - '?', 1699, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1935, + ';', 995, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(310); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 304: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1632, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1935, + '?', 1700, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(311); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 305: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 3571, - 'E', 3566, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3565, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1633, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != '}') ADVANCE(3473); END_STATE(); case 306: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 3572, + 'E', 3567, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3566, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3557); END_STATE(); case 307: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 3270, - 'E', 3243, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3242, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3473); END_STATE(); case 308: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - ';', 994, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 3271, + 'E', 3244, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3243, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(308); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != ';' && + lookahead != '}') ADVANCE(3188); END_STATE(); case 309: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - '=', 975, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + ';', 995, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 310: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - '?', 1699, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + '=', 976, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(310); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 311: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - 'E', 3382, - 'G', 3382, - 'K', 3382, - 'M', 3382, - 'N', 3449, - 'P', 3382, - 'T', 3382, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'd', 3391, - 'e', 3381, - 'f', 3390, - 'g', 3381, - 'h', 3426, - 'k', 3381, - 'm', 3384, - 'n', 3433, - 'p', 3381, - 's', 3403, - 't', 3380, - 'u', 3434, - 'w', 3411, - '{', 1618, - 0xb5, 3434, - 'B', 1965, - 'b', 1965, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + '?', 1700, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(311); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 312: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + 'E', 3383, + 'G', 3383, + 'K', 3383, + 'M', 3383, + 'N', 3450, + 'P', 3383, + 'T', 3383, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'd', 3392, + 'e', 3382, + 'f', 3391, + 'g', 3382, + 'h', 3427, + 'k', 3382, + 'm', 3385, + 'n', 3434, + 'p', 3382, + 's', 3404, + 't', 3381, + 'u', 3435, + 'w', 3412, + '{', 1619, + 0xb5, 3435, + 'B', 1966, + 'b', 1966, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 313: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 314: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 1456, - '[', 1503, - ']', 1506, - '_', 1340, - '`', 585, - 'f', 1344, - 'n', 1443, - 't', 1416, - '{', 1618, - 'I', 1466, - 'i', 1466, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 315: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1554, - '.', 1632, - '0', 1936, - ':', 1500, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 1457, + '[', 1504, + ']', 1507, + '_', 1341, + '`', 586, + 'f', 1345, + 'n', 1444, + 't', 1417, + '{', 1619, + 'I', 1467, + 'i', 1467, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + lookahead != ';' && + lookahead != '}') ADVANCE(3473); END_STATE(); case 316: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1554, - '.', 1632, - '0', 1936, - ':', 1500, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1555, + '.', 1633, + '0', 1937, + ':', 1501, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 317: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1554, - '.', 1627, - '0', 1936, - ':', 1500, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1555, + '.', 1633, + '0', 1937, + ':', 1501, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(319); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 318: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 1504, - '-', 1554, - '.', 1627, - '0', 1936, - ':', 1500, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1555, + '.', 1628, + '0', 1937, + ':', 1501, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 319: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 3571, - 'E', 3563, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3562, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 1505, + '-', 1555, + '.', 1628, + '0', 1937, + ':', 1501, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') SKIP(319); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3556); + (lookahead < '0' || ';' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 320: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 3571, - 'E', 3566, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3565, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 3572, + 'E', 3564, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3563, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != '}') ADVANCE(3557); END_STATE(); case 321: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1867, - 'E', 3563, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3570, - '`', 585, - 'd', 3575, - 'e', 3562, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 3572, + 'E', 3567, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3566, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != '}') ADVANCE(3557); END_STATE(); case 322: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1867, - 'E', 3239, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3266, - '`', 585, - 'd', 3281, - 'e', 3238, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1868, + 'E', 3564, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3571, + '`', 586, + 'd', 3576, + 'e', 3563, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3557); END_STATE(); case 323: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1868, + 'E', 3240, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3268, + '`', 586, + 'd', 3282, + 'e', 3239, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3188); END_STATE(); case 324: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 3479, - '[', 1503, - ']', 1506, - '_', 3475, - '`', 585, - 'f', 3476, - 'n', 3478, - 't', 3477, - '{', 1618, - 'I', 3480, - 'i', 3480, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && @@ -30332,5747 +30327,5776 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 325: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1867, - 'N', 2356, - '[', 1503, - ']', 1506, - '_', 2266, - '`', 585, - 'f', 2270, - 'n', 2352, - 't', 2339, - '{', 1618, - 'I', 2360, - 'i', 2360, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 3480, + '[', 1504, + ']', 1507, + '_', 3476, + '`', 586, + 'f', 3477, + 'n', 3479, + 't', 3478, + '{', 1619, + 'I', 3481, + 'i', 3481, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(3474); END_STATE(); case 326: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 3270, - 'E', 3239, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3238, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1868, + 'N', 2357, + '[', 1504, + ']', 1507, + '_', 2268, + '`', 586, + 'f', 2271, + 'n', 2353, + 't', 2340, + '{', 1619, + 'I', 2361, + 'i', 2361, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(2250); END_STATE(); case 327: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 3270, - 'E', 3243, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3242, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 3271, + 'E', 3240, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3239, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 328: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1934, - ';', 994, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - '}', 1619, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 3271, + 'E', 3244, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3243, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(3472); - END_STATE(); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '}') ADVANCE(3188); + END_STATE(); case 329: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1934, - '?', 1699, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1935, + ';', 995, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + '}', 1620, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(3473); END_STATE(); case 330: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1632, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - '}', 1619, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1935, + '?', 1700, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(3472); + lookahead != ';' && + lookahead != '}') ADVANCE(3473); END_STATE(); case 331: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 3571, - 'E', 3566, - 'G', 3566, - 'K', 3566, - 'M', 3566, - 'N', 3582, - 'P', 3566, - 'T', 3566, - '[', 1503, - ']', 1506, - '_', 3568, - '`', 585, - 'd', 3575, - 'e', 3565, - 'f', 3573, - 'g', 3565, - 'h', 3579, - 'k', 3565, - 'm', 3567, - 'n', 3581, - 'p', 3565, - 's', 3577, - 't', 3564, - 'u', 3580, - 'w', 3578, - '{', 1618, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, - 'I', 3583, - 'i', 3583, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1633, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + '}', 1620, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3556); + lookahead != ';') ADVANCE(3473); END_STATE(); case 332: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 3572, + 'E', 3567, + 'G', 3567, + 'K', 3567, + 'M', 3567, + 'N', 3583, + 'P', 3567, + 'T', 3567, + '[', 1504, + ']', 1507, + '_', 3569, + '`', 586, + 'd', 3576, + 'e', 3566, + 'f', 3574, + 'g', 3566, + 'h', 3580, + 'k', 3566, + 'm', 3568, + 'n', 3582, + 'p', 3566, + 's', 3578, + 't', 3565, + 'u', 3581, + 'w', 3579, + '{', 1619, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + 'I', 3584, + 'i', 3584, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3573); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3557); END_STATE(); case 333: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 3270, - 'E', 3243, - 'G', 3243, - 'K', 3243, - 'M', 3243, - 'N', 3361, - 'P', 3243, - 'T', 3243, - '[', 1503, - ']', 1506, - '_', 3260, - '`', 585, - 'd', 3281, - 'e', 3242, - 'f', 3278, - 'g', 3242, - 'h', 3348, - 'k', 3242, - 'm', 3245, - 'n', 3356, - 'p', 3242, - 's', 3295, - 't', 3241, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3365, - 'i', 3365, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3473); END_STATE(); case 334: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1934, - '=', 975, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 3271, + 'E', 3244, + 'G', 3244, + 'K', 3244, + 'M', 3244, + 'N', 3362, + 'P', 3244, + 'T', 3244, + '[', 1504, + ']', 1507, + '_', 3261, + '`', 586, + 'd', 3282, + 'e', 3243, + 'f', 3279, + 'g', 3243, + 'h', 3349, + 'k', 3243, + 'm', 3246, + 'n', 3357, + 'p', 3243, + 's', 3296, + 't', 3242, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3366, + 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3275); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3188); END_STATE(); case 335: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1934, - 'E', 3382, - 'G', 3382, - 'K', 3382, - 'M', 3382, - 'N', 3449, - 'P', 3382, - 'T', 3382, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'd', 3391, - 'e', 3381, - 'f', 3390, - 'g', 3381, - 'h', 3426, - 'k', 3381, - 'm', 3384, - 'n', 3433, - 'p', 3381, - 's', 3403, - 't', 3380, - 'u', 3434, - 'w', 3411, - '{', 1618, - 0xb5, 3434, - 'B', 1965, - 'b', 1965, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1935, + '=', 976, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 336: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - '}', 1619, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1935, + 'E', 3383, + 'G', 3383, + 'K', 3383, + 'M', 3383, + 'N', 3450, + 'P', 3383, + 'T', 3383, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'd', 3392, + 'e', 3382, + 'f', 3391, + 'g', 3382, + 'h', 3427, + 'k', 3382, + 'm', 3385, + 'n', 3434, + 'p', 3382, + 's', 3404, + 't', 3381, + 'u', 3435, + 'w', 3412, + '{', 1619, + 0xb5, 3435, + 'B', 1966, + 'b', 1966, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(3472); + lookahead != ';' && + lookahead != '}') ADVANCE(3473); END_STATE(); case 337: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3386, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'E', 3387, - 'e', 3387, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + '}', 1620, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != ';') ADVANCE(3473); END_STATE(); case 338: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1547, - '.', 1627, - '0', 1934, - 'N', 1456, - '[', 1503, - ']', 1506, - '_', 1340, - '`', 585, - 'f', 1344, - 'n', 1443, - 't', 1416, - '{', 1618, - 'I', 1466, - 'i', 1466, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3387, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'E', 3388, + 'e', 3388, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3472); + lookahead != '}') ADVANCE(3473); END_STATE(); case 339: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1632, - '0', 1936, - '?', 1699, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1548, + '.', 1628, + '0', 1935, + 'N', 1457, + '[', 1504, + ']', 1507, + '_', 1341, + '`', 586, + 'f', 1345, + 'n', 1444, + 't', 1417, + '{', 1619, + 'I', 1467, + 'i', 1467, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1951); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + lookahead != ';' && + lookahead != '}') ADVANCE(3473); END_STATE(); case 340: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1632, - '0', 1936, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1633, + '0', 1937, + '?', 1700, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 341: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1632, - '0', 1936, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1633, + '0', 1937, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 342: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1632, - '0', 1868, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1633, + '0', 1937, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 343: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1627, - '0', 1936, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1633, + '0', 1869, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 344: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1627, - '0', 1936, - 'I', 1234, - 'N', 1228, - ']', 1506, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1628, + '0', 1937, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + lookahead != ']' && + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 345: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - ',', 2029, - '-', 1554, - '.', 1627, - '0', 1868, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, + '-', 1555, + '.', 1628, + '0', 1937, + 'I', 1235, + 'N', 1229, + ']', 1507, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 346: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + ',', 2030, '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 1624, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '.', 1628, + '0', 1869, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(346); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']') ADVANCE(2248); + (lookahead < '0' || ';' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 347: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 1625, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(347); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 348: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1632, - '0', 1936, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(348); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + lookahead != '}') ADVANCE(2249); END_STATE(); case 349: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1632, - '0', 1868, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1633, + '0', 1937, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 350: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1627, - '0', 1936, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1633, + '0', 1869, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 351: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1627, - '0', 1936, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1628, + '0', 1937, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 352: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1554, - '.', 1627, - '0', 1868, - 'E', 1002, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1001, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1628, + '0', 1937, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 353: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1555, + '.', 1628, + '0', 1869, + 'E', 1003, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1002, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3472); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 354: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3542, - '[', 1503, - ']', 1506, - '_', 3538, - '`', 585, - 'f', 3539, - 'n', 3541, - 't', 3540, - '{', 1618, - 'I', 3543, - 'i', 3543, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3536); + lookahead != '}') ADVANCE(3473); END_STATE(); case 355: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3052, - '[', 1503, - ']', 1506, - '_', 2954, - '`', 585, - 'f', 2966, - 'n', 3048, - 't', 3035, - '{', 1618, - 'I', 3056, - 'i', 3056, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3543, + '[', 1504, + ']', 1507, + '_', 3539, + '`', 586, + 'f', 3540, + 'n', 3542, + 't', 3541, + '{', 1619, + 'I', 3544, + 'i', 3544, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(3537); END_STATE(); case 356: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3053, + '[', 1504, + ']', 1507, + '_', 2956, + '`', 586, + 'f', 2967, + 'n', 3049, + 't', 3036, + '{', 1619, + 'I', 3057, + 'i', 3057, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + (lookahead < ';' || '=' < lookahead) && + lookahead != '}') ADVANCE(2938); END_STATE(); case 357: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3554, - '[', 1503, - ']', 1506, - '_', 3550, - '`', 585, - 'f', 3551, - 'n', 3553, - 't', 3552, - '{', 1618, - 'I', 3555, - 'i', 3555, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3548); + lookahead != '}') ADVANCE(3473); END_STATE(); case 358: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3179, - '[', 1503, - ']', 1506, - '_', 3081, - '`', 585, - 'f', 3093, - 'n', 3175, - 't', 3162, - '{', 1618, - 'I', 3183, - 'i', 3183, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + 'N', 3555, + '[', 1504, + ']', 1507, + '_', 3551, + '`', 586, + 'f', 3552, + 'n', 3554, + 't', 3553, + '{', 1619, + 'I', 3556, + 'i', 3556, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3549); END_STATE(); case 359: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1889, - '.', 1632, - '0', 1866, - '<', 1530, - '=', 1849, - 'N', 2225, - '[', 1503, - '_', 1623, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + 'N', 3180, + '[', 1504, + ']', 1507, + '_', 3083, + '`', 586, + 'f', 3094, + 'n', 3176, + 't', 3163, + '{', 1619, + 'I', 3184, + 'i', 3184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != ']') ADVANCE(2248); + lookahead != ';' && + lookahead != '}') ADVANCE(3061); END_STATE(); case 360: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1889, - '.', 1632, - '0', 1866, - 'N', 2225, - '[', 1503, - '_', 1623, - '`', 585, - 'f', 2155, - 'n', 2219, - 't', 2197, - '{', 1618, - '}', 1619, - 'I', 2229, - 'i', 2229, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1890, + '.', 1633, + '0', 1867, + '<', 1531, + '=', 1850, + 'N', 2226, + '[', 1504, + '_', 1624, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']') ADVANCE(2248); + (lookahead < ';' || '=' < lookahead) && + lookahead != ']') ADVANCE(2249); END_STATE(); case 361: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1890, + '.', 1633, '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + 'N', 2226, + '[', 1504, + '_', 1624, + '`', 586, + 'f', 2156, + 'n', 2220, + 't', 2198, + '{', 1619, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') SKIP(293); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3472); + lookahead != ';' && + lookahead != ']') ADVANCE(2249); END_STATE(); case 362: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3052, - '[', 1503, - ']', 1506, - '_', 2954, - '`', 585, - 'f', 2966, - 'n', 3048, - 't', 3035, - '{', 1618, - 'I', 3056, - 'i', 3056, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(3473); END_STATE(); case 363: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3449, - '[', 1503, - ']', 1506, - '_', 3389, - '`', 585, - 'f', 3390, - 'n', 3445, - 't', 3431, - '{', 1618, - 'I', 3454, - 'i', 3454, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3053, + '[', 1504, + ']', 1507, + '_', 2956, + '`', 586, + 'f', 2967, + 'n', 3049, + 't', 3036, + '{', 1619, + 'I', 3057, + 'i', 3057, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(3472); + (lookahead < ';' || '=' < lookahead) && + lookahead != '}') ADVANCE(2938); END_STATE(); case 364: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3554, - '[', 1503, - ']', 1506, - '_', 3550, - '`', 585, - 'f', 3551, - 'n', 3553, - 't', 3552, - '{', 1618, - 'I', 3555, - 'i', 3555, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1888, + '.', 1633, + '0', 1868, + 'N', 3450, + '[', 1504, + ']', 1507, + '_', 3390, + '`', 586, + 'f', 3391, + 'n', 3446, + 't', 3432, + '{', 1619, + 'I', 3455, + 'i', 3455, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3548); + lookahead != '}') ADVANCE(3473); END_STATE(); case 365: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, - '0', 1867, - 'N', 3179, - '[', 1503, - ']', 1506, - '_', 3081, - '`', 585, - 'f', 3093, - 'n', 3175, - 't', 3162, - '{', 1618, - 'I', 3183, - 'i', 3183, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1888, + '.', 1633, + '0', 1868, + 'N', 3555, + '[', 1504, + ']', 1507, + '_', 3551, + '`', 586, + 'f', 3552, + 'n', 3554, + 't', 3553, + '{', 1619, + 'I', 3556, + 'i', 3556, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3549); END_STATE(); case 366: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, '-', 1888, - '.', 1632, + '.', 1633, '0', 1868, - '<', 1530, - '=', 1849, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + 'N', 3180, + '[', 1504, + ']', 1507, + '_', 3083, + '`', 586, + 'f', 3094, + 'n', 3176, + 't', 3163, + '{', 1619, + 'I', 3184, + 'i', 3184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); + lookahead == ' ') ADVANCE(2031); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '}') ADVANCE(3061); + END_STATE(); + case 367: + ADVANCE_MAP( + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1889, + '.', 1633, + '0', 1869, + '<', 1531, + '=', 1850, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '=' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 367: + case 368: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1888, - '.', 1632, - '0', 1868, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1889, + '.', 1633, + '0', 1869, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 368: + case 369: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 2951, - '`', 585, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 2953, + '`', 586, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(375); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + lookahead == ' ') SKIP(376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2937); + lookahead != '}') ADVANCE(2938); END_STATE(); - case 369: + case 370: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 1023, - '`', 585, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 1024, + '`', 586, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(375); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); - case 370: + case 371: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '_', 3078, - '`', 585, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '_', 3080, + '`', 586, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(375); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + lookahead == ' ') SKIP(376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3060); + lookahead != '}') ADVANCE(3061); END_STATE(); - case 371: + case 372: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1888, - '.', 1632, - '0', 1868, - '<', 1530, - '=', 1849, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1889, + '.', 1633, + '0', 1869, + '<', 1531, + '=', 1850, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '=' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); - case 372: + case 373: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - '+', 1890, - '-', 1888, - '.', 1632, - '0', 1868, - 'I', 1234, - 'N', 1228, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1038, - 'd', 1051, - 'e', 1124, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1026, - 'n', 1067, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1175, - 'u', 1186, - 'w', 1096, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + '+', 1891, + '-', 1889, + '.', 1633, + '0', 1869, + 'I', 1235, + 'N', 1229, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1039, + 'd', 1052, + 'e', 1125, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1027, + 'n', 1068, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1176, + 'u', 1187, + 'w', 1097, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(352); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '{' < lookahead)) ADVANCE(2057); - END_STATE(); - case 373: - ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ',', 1504, - '-', 1545, - '.', 1632, - ':', 1500, - ';', 994, - '=', 975, - '?', 1699, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '[', 1503, - ']', 1506, - '`', 585, - 'd', 1035, - 'e', 1016, - 'g', 1016, - 'h', 1161, - 'k', 1016, - 'm', 1019, - 'n', 1183, - 'p', 1016, - 's', 1074, - 't', 1016, - 'u', 1183, - 'w', 1109, - '{', 1618, - '}', 1619, - 0xb5, 1183, - 'B', 1238, - 'b', 1238, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(374); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + (lookahead < '_' || '{' < lookahead)) ADVANCE(2058); END_STATE(); case 374: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ',', 1504, - '-', 1545, - ':', 1500, - ';', 994, - '=', 975, - '?', 1699, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '[', 1503, - ']', 1506, - '`', 585, - 'd', 1035, - 'e', 1016, - 'g', 1016, - 'h', 1161, - 'k', 1016, - 'm', 1019, - 'n', 1183, - 'p', 1016, - 's', 1074, - 't', 1016, - 'u', 1183, - 'w', 1109, - '{', 1618, - '}', 1619, - 0xb5, 1183, - 'B', 1238, - 'b', 1238, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + ',', 1505, + '-', 1546, + '.', 1633, + ':', 1501, + ';', 995, + '=', 976, + '?', 1700, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '[', 1504, + ']', 1507, + '`', 586, + 'd', 1036, + 'e', 1017, + 'g', 1017, + 'h', 1162, + 'k', 1017, + 'm', 1020, + 'n', 1184, + 'p', 1017, + 's', 1075, + 't', 1017, + 'u', 1184, + 'w', 1110, + '{', 1619, + '}', 1620, + 0xb5, 1184, + 'B', 1239, + 'b', 1239, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(374); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(375); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 375: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '`') ADVANCE(585); + ADVANCE_MAP( + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + ',', 1505, + '-', 1546, + ':', 1501, + ';', 995, + '=', 976, + '?', 1700, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '[', 1504, + ']', 1507, + '`', 586, + 'd', 1036, + 'e', 1017, + 'g', 1017, + 'h', 1162, + 'k', 1017, + 'm', 1020, + 'n', 1184, + 'p', 1017, + 's', 1075, + 't', 1017, + 'u', 1184, + 'w', 1110, + '{', 1619, + '}', 1620, + 0xb5, 1184, + 'B', 1239, + 'b', 1239, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(375); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 376: - ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1638, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3542, - '[', 1503, - ']', 1506, - '_', 3538, - '`', 585, - 'f', 3539, - 'n', 3541, - 't', 3540, - '{', 1618, - 'I', 3543, - 'i', 3543, - ); + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '`') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3536); + lookahead == ' ') SKIP(376); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 377: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1638, - '\'', 544, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1887, - '.', 1632, - '0', 1867, - '<', 1530, - '=', 1849, - 'N', 3542, - '[', 1503, - ']', 1506, - '_', 3538, - '`', 585, - 'f', 3539, - 'n', 3541, - 't', 3540, - '{', 1618, - 'I', 3543, - 'i', 3543, + '"', 2007, + '#', 3585, + '$', 1639, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3543, + '[', 1504, + ']', 1507, + '_', 3539, + '`', 586, + 'f', 3540, + 'n', 3542, + 't', 3541, + '{', 1619, + 'I', 3544, + 'i', 3544, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < ';' || '=' < lookahead) && - lookahead != '}') ADVANCE(3536); + lookahead != '}') ADVANCE(3537); END_STATE(); case 378: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - ',', 1504, - '-', 563, - '<', 1530, - '=', 975, - '>', 1532, - '@', 1537, - '`', 585, - '{', 1618, + '"', 2007, + '#', 3585, + '$', 1639, + '\'', 545, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1888, + '.', 1633, + '0', 1868, + '<', 1531, + '=', 1850, + 'N', 3543, + '[', 1504, + ']', 1507, + '_', 3539, + '`', 586, + 'f', 3540, + 'n', 3542, + 't', 3541, + '{', 1619, + 'I', 3544, + 'i', 3544, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(379); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < ';' || '=' < lookahead) && + lookahead != '}') ADVANCE(3537); END_STATE(); case 379: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - ',', 1504, - '-', 563, - '=', 975, - '>', 1532, - '@', 1537, - '`', 585, - '{', 1618, + '"', 2007, + '#', 3585, + '\'', 545, + ',', 1505, + '-', 564, + '<', 1531, + '=', 976, + '>', 1533, + '@', 1538, + '`', 586, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(379); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(380); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 380: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 3201, - '.', 1632, - 'E', 3192, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '_', 3263, - '`', 585, - 'd', 3285, - 'e', 3191, - 'g', 3216, - 'h', 3345, - 'k', 3216, - 'm', 3219, - 'n', 3353, - 'p', 3216, - 's', 3302, - 't', 3216, - 'u', 3353, - 'w', 3315, - 0xb5, 3353, - 'B', 3368, - 'b', 3368, + '"', 2007, + '#', 3585, + '\'', 545, + ',', 1505, + '-', 564, + '=', 976, + '>', 1533, + '@', 1538, + '`', 586, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < 'A' || '[' < lookahead) && - lookahead != ']' && - (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead == ' ') SKIP(380); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 381: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 3201, - '.', 1632, - 'E', 3192, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'd', 3285, - 'e', 3191, - 'g', 3216, - 'h', 3345, - 'k', 3216, - 'm', 3219, - 'n', 3353, - 'p', 3216, - 's', 3302, - 't', 3216, - 'u', 3353, - 'w', 3315, - 0xb5, 3353, - 'B', 3368, - 'b', 3368, + '"', 2007, + '#', 3585, + '\'', 545, + '-', 3202, + '.', 1633, + 'E', 3193, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '_', 3265, + '`', 586, + 'd', 3286, + 'e', 3192, + 'g', 3217, + 'h', 3346, + 'k', 3217, + 'm', 3220, + 'n', 3354, + 'p', 3217, + 's', 3303, + 't', 3217, + 'u', 3354, + 'w', 3316, + 0xb5, 3354, + 'B', 3369, + 'b', 3369, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(387); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(388); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 382: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 3201, - '.', 1632, - 'E', 3217, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'd', 3285, - 'e', 3216, - 'g', 3216, - 'h', 3345, - 'k', 3216, - 'm', 3219, - 'n', 3353, - 'p', 3216, - 's', 3302, - 't', 3216, - 'u', 3353, - 'w', 3315, - 0xb5, 3353, - 'B', 3368, - 'b', 3368, + '"', 2007, + '#', 3585, + '\'', 545, + '-', 3202, + '.', 1633, + 'E', 3193, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'd', 3286, + 'e', 3192, + 'g', 3217, + 'h', 3346, + 'k', 3217, + 'm', 3220, + 'n', 3354, + 'p', 3217, + 's', 3303, + 't', 3217, + 'u', 3354, + 'w', 3316, + 0xb5, 3354, + 'B', 3369, + 'b', 3369, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(387); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(388); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 383: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 3201, - 'E', 3217, - 'G', 3217, - 'K', 3217, - 'M', 3217, - 'P', 3217, - 'T', 3217, - '`', 585, - 'd', 3285, - 'e', 3216, - 'g', 3216, - 'h', 3345, - 'k', 3216, - 'm', 3219, - 'n', 3353, - 'p', 3216, - 's', 3302, - 't', 3216, - 'u', 3353, - 'w', 3315, - 0xb5, 3353, - 'B', 3368, - 'b', 3368, + '"', 2007, + '#', 3585, + '\'', 545, + '-', 3202, + '.', 1633, + 'E', 3218, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'd', 3286, + 'e', 3217, + 'g', 3217, + 'h', 3346, + 'k', 3217, + 'm', 3220, + 'n', 3354, + 'p', 3217, + 's', 3303, + 't', 3217, + 'u', 3354, + 'w', 3316, + 0xb5, 3354, + 'B', 3369, + 'b', 3369, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(387); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(388); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(3187); + lookahead != '}') ADVANCE(3188); END_STATE(); case 384: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '-') ADVANCE(2254); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2264); - if (lookahead == '`') ADVANCE(585); + ADVANCE_MAP( + '"', 2007, + '#', 3585, + '\'', 545, + '-', 3202, + 'E', 3218, + 'G', 3218, + 'K', 3218, + 'M', 3218, + 'P', 3218, + 'T', 3218, + '`', 586, + 'd', 3286, + 'e', 3217, + 'g', 3217, + 'h', 3346, + 'k', 3217, + 'm', 3220, + 'n', 3354, + 'p', 3217, + 's', 3303, + 't', 3217, + 'u', 3354, + 'w', 3316, + 0xb5, 3354, + 'B', 3369, + 'b', 3369, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2249); + lookahead != '}') ADVANCE(3188); END_STATE(); case 385: - ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 545, - '.', 1632, - '_', 1023, - '`', 585, - 'E', 998, - 'e', 998, - ); + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '-') ADVANCE(2255); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2266); + if (lookahead == '`') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '{' < lookahead) && + lookahead != '}') ADVANCE(2250); END_STATE(); case 386: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 545, - '.', 1632, - '`', 585, - 'E', 998, - 'e', 998, + '"', 2007, + '#', 3585, + '\'', 545, + '-', 546, + '.', 1633, + '_', 1024, + '`', 586, + 'E', 999, + 'e', 999, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(388); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 387: ADVANCE_MAP( - '"', 2006, - '#', 3584, - '\'', 544, - '-', 545, - 'E', 1017, - 'G', 1017, - 'K', 1017, - 'M', 1017, - 'P', 1017, - 'T', 1017, - '`', 585, - 'd', 1035, - 'e', 1016, - 'g', 1016, - 'h', 1161, - 'k', 1016, - 'm', 1019, - 'n', 1183, - 'p', 1016, - 's', 1074, - 't', 1016, - 'u', 1183, - 'w', 1109, - 0xb5, 1183, - 'B', 1238, - 'b', 1238, + '"', 2007, + '#', 3585, + '\'', 545, + '-', 546, + '.', 1633, + '`', 586, + 'E', 999, + 'e', 999, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(387); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(389); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 388: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '`') ADVANCE(585); + ADVANCE_MAP( + '"', 2007, + '#', 3585, + '\'', 545, + '-', 546, + 'E', 1018, + 'G', 1018, + 'K', 1018, + 'M', 1018, + 'P', 1018, + 'T', 1018, + '`', 586, + 'd', 1036, + 'e', 1017, + 'g', 1017, + 'h', 1162, + 'k', 1017, + 'm', 1020, + 'n', 1184, + 'p', 1017, + 's', 1075, + 't', 1017, + 'u', 1184, + 'w', 1110, + 0xb5, 1184, + 'B', 1239, + 'b', 1239, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(388); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 389: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '`') ADVANCE(585); + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '`') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(388); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1473); + lookahead == ' ') SKIP(389); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 390: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '`') ADVANCE(585); + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '`') ADVANCE(586); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(389); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + END_STATE(); + case 391: + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '`') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(390); + lookahead == ' ') SKIP(391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(2058); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(2059); END_STATE(); - case 391: + case 392: ADVANCE_MAP( - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - '+', 1736, - '-', 1556, - '.', 1631, - '0', 2513, - 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'f', 2523, - 'n', 2729, - 't', 2758, - '{', 1618, - 'I', 2909, - 'i', 2909, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + '+', 1737, + '-', 1557, + '.', 1632, + '0', 2514, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'f', 2524, + 'n', 2730, + 't', 2759, + '{', 1619, + 'I', 2910, + 'i', 2910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(2936); + lookahead != '}') ADVANCE(2937); END_STATE(); - case 392: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '\'') ADVANCE(544); - if (lookahead == '-') ADVANCE(2466); - if (lookahead == '`') ADVANCE(585); + case 393: + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '-') ADVANCE(2467); + if (lookahead == '`') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(388); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + lookahead == ' ') SKIP(389); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && (lookahead < '_' || '{' < lookahead) && - lookahead != '}') ADVANCE(2936); - END_STATE(); - case 393: - ADVANCE_MAP( - '"', 2006, - '#', 3587, - '$', 1515, - '\'', 544, - '(', 1507, - '+', 1734, - ',', 2029, - '-', 1548, - '.', 1628, - '0', 2385, - 'N', 2438, - '[', 1503, - ']', 1506, - '_', 2386, - '`', 585, - 'f', 2390, - 'n', 2434, - 't', 2419, - '{', 1618, - 'I', 2443, - 'i', 2443, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2389); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '}') ADVANCE(2465); + lookahead != '}') ADVANCE(2937); END_STATE(); case 394: ADVANCE_MAP( - '"', 2006, - '#', 3587, - '$', 1515, - '\'', 544, - '(', 1507, - '+', 1734, - ',', 1505, - '-', 1548, - '.', 1628, - '0', 2385, - 'N', 2438, - '[', 1503, - ']', 1506, - '_', 2386, - '`', 585, - 'f', 2390, - 'n', 2434, - 't', 2419, - '{', 1618, - 'I', 2443, - 'i', 2443, + '"', 2007, + '#', 3588, + '$', 1516, + '\'', 545, + '(', 1508, + '+', 1735, + ',', 2030, + '-', 1549, + '.', 1629, + '0', 2386, + 'N', 2439, + '[', 1504, + ']', 1507, + '_', 2387, + '`', 586, + 'f', 2391, + 'n', 2435, + 't', 2420, + '{', 1619, + 'I', 2444, + 'i', 2444, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2389); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2390); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(2465); + lookahead != '}') ADVANCE(2466); END_STATE(); case 395: ADVANCE_MAP( - '"', 2006, - '#', 3590, - '$', 1514, - '\'', 544, - '(', 1507, + '"', 2007, + '#', 3588, + '$', 1516, + '\'', 545, + '(', 1508, '+', 1735, - ',', 1504, - '-', 1550, - '.', 1630, - '0', 3489, - 'N', 3508, - '[', 1503, - ']', 1506, - '_', 3490, - '`', 585, - 'f', 3497, - 'n', 3506, - 't', 3503, - '{', 1618, - 'I', 3513, - 'i', 3513, + ',', 1506, + '-', 1549, + '.', 1629, + '0', 2386, + 'N', 2439, + '[', 1504, + ']', 1507, + '_', 2387, + '`', 586, + 'f', 2391, + 'n', 2435, + 't', 2420, + '{', 1619, + 'I', 2444, + 'i', 2444, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3493); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2390); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3535); + lookahead != '}') ADVANCE(2466); END_STATE(); case 396: ADVANCE_MAP( - '"', 2006, - '#', 3590, - '$', 1514, - '\'', 544, - '(', 1507, - '+', 1735, - ',', 2029, - '-', 1550, - '.', 1630, - '0', 3489, - 'N', 3508, - '[', 1503, - ']', 1506, - '_', 3490, - '`', 585, - 'f', 3497, - 'n', 3506, - 't', 3503, - '{', 1618, - 'I', 3513, - 'i', 3513, + '"', 2007, + '#', 3591, + '$', 1515, + '\'', 545, + '(', 1508, + '+', 1736, + ',', 1505, + '-', 1551, + '.', 1631, + '0', 3490, + 'N', 3509, + '[', 1504, + ']', 1507, + '_', 3491, + '`', 586, + 'f', 3498, + 'n', 3507, + 't', 3504, + '{', 1619, + 'I', 3514, + 'i', 3514, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3493); + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3494); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(3535); + lookahead != '}') ADVANCE(3536); END_STATE(); case 397: - if (lookahead == '"') ADVANCE(2006); - if (lookahead == '#') ADVANCE(2008); - if (lookahead == '\\') ADVANCE(725); + ADVANCE_MAP( + '"', 2007, + '#', 3591, + '$', 1515, + '\'', 545, + '(', 1508, + '+', 1736, + ',', 2030, + '-', 1551, + '.', 1631, + '0', 3490, + 'N', 3509, + '[', 1504, + ']', 1507, + '_', 3491, + '`', 586, + 'f', 3498, + 'n', 3507, + 't', 3504, + '{', 1619, + 'I', 3514, + 'i', 3514, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2007); - if (lookahead != 0) ADVANCE(2008); + lookahead == ' ') ADVANCE(2031); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3494); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '}') ADVANCE(3536); END_STATE(); case 398: - if (lookahead == '"') ADVANCE(2020); - if (lookahead == '#') ADVANCE(2013); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '\\') ADVANCE(721); + if (lookahead == '"') ADVANCE(2007); + if (lookahead == '#') ADVANCE(2009); + if (lookahead == '\\') ADVANCE(726); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2012); - if (lookahead != 0) ADVANCE(2013); + lookahead == ' ') ADVANCE(2008); + if (lookahead != 0) ADVANCE(2009); END_STATE(); case 399: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '+', 1890, - ',', 1504, - '-', 1885, - '.', 1633, - ':', 1500, - '<', 1530, - '=', 1849, - ']', 1506, - '_', 1258, - '|', 1509, - ); + if (lookahead == '"') ADVANCE(2021); + if (lookahead == '#') ADVANCE(2014); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '\\') ADVANCE(722); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') ADVANCE(2013); + if (lookahead != 0) ADVANCE(2014); END_STATE(); case 400: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - ']', 1506, - '|', 1509, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(400); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); - END_STATE(); - case 401: + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '+', 1891, + ',', 1505, + '-', 1886, + '.', 1634, + ':', 1501, + '<', 1531, + '=', 1850, + ']', 1507, + '_', 1257, + '|', 1510, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(401); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); + END_STATE(); + case 401: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - ',', 1504, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '_', 584, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + ']', 1507, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(421); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(401); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 402: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, - ']', 1506, - '_', 3537, - '}', 1619, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + ',', 1505, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '_', 585, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - lookahead != '{') ADVANCE(3536); + lookahead == ' ') SKIP(422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 403: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, - ']', 1506, - '_', 2952, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, + ']', 1507, + '_', 3538, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(2937); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3537); END_STATE(); case 404: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1884, - '.', 1632, - ']', 1506, - '_', 3549, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, + ']', 1507, + '_', 2954, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3548); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < ';' || '=' < lookahead) && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + lookahead != '{') ADVANCE(2938); END_STATE(); case 405: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - ',', 2029, - '-', 1884, - '.', 1632, - ']', 1506, - '_', 3079, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + ',', 2030, + '-', 1885, + '.', 1633, + ']', 1507, + '_', 3550, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3060); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3549); END_STATE(); case 406: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + ',', 2030, '-', 1885, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 2955, + '.', 1633, + ']', 1507, + '_', 3081, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token6_character_set_1, 13, lookahead))) ADVANCE(3061); END_STATE(); case 407: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 1258, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 2952, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 408: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 2952, - '{', 1618, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 1257, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + lookahead == ' ') SKIP(424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 409: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '+') ADVANCE(1890); - if (lookahead == '-') ADVANCE(1885); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(3082); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 2954, + '{', 1619, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 410: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1885, - '.', 1632, - '_', 3079, - '{', 1618, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '+') ADVANCE(1891); + if (lookahead == '-') ADVANCE(1886); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(3079); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + lookahead == ' ') SKIP(424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 411: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 2955, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1886, + '.', 1633, + '_', 3081, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3058); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + lookahead == ' ') SKIP(423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 412: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, '_', 2952, - 'i', 2996, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(427); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + lookahead == ' ') SKIP(430); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 413: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1849, - '_', 2952, - '{', 1618, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 2954, + 'i', 2997, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 414: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1852, - '_', 2952, - 'i', 2978, - '|', 1509, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1850, + '_', 2954, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + lookahead == ' ') SKIP(429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 415: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '<', 1530, - '=', 1852, - '_', 2952, - '|', 1509, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1853, + '_', 2954, + 'i', 2979, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 416: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '=', 3069, - '_', 3079, - 'i', 3105, - '|', 1509, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '<', 1531, + '=', 1853, + '_', 2954, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + lookahead == ' ') SKIP(427); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2938); END_STATE(); case 417: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '=', 3069, - '_', 3079, - '|', 1509, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '=', 3070, + '_', 3081, + 'i', 3106, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 418: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '+') ADVANCE(1890); - if (lookahead == '-') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(3082); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); - END_STATE(); - case 419: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '_', 3079, - 'i', 3123, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '=', 3070, + '_', 3081, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(427); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); + END_STATE(); + case 419: + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '+') ADVANCE(1891); + if (lookahead == '-') ADVANCE(1885); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(3079); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(430); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 420: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - '+', 1890, - '-', 1884, - '.', 1632, - '_', 3079, - '{', 1618, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '_', 3081, + 'i', 3124, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 421: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '(', 1507, - ',', 1504, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '$', 1512, + '(', 1508, + '+', 1891, + '-', 1885, + '.', 1633, + '_', 3081, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3061); END_STATE(); case 422: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '{') ADVANCE(1618); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '(', 1508, + ',', 1505, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(422); END_STATE(); case 423: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1545); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(423); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); END_STATE(); case 424: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '-') ADVANCE(1544); - if (lookahead == 'f') ADVANCE(589); - if (lookahead == 'n') ADVANCE(666); - if (lookahead == 't') ADVANCE(688); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '-') ADVANCE(1546); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(424); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 425: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '=') ADVANCE(562); - if (lookahead == 'i') ADVANCE(623); - if (lookahead == '|') ADVANCE(1509); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '-') ADVANCE(1545); + if (lookahead == 'f') ADVANCE(590); + if (lookahead == 'n') ADVANCE(667); + if (lookahead == 't') ADVANCE(689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(425); END_STATE(); case 426: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '|') ADVANCE(1509); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '=') ADVANCE(563); + if (lookahead == 'i') ADVANCE(624); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426); END_STATE(); case 427: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == 'i') ADVANCE(658); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '=') ADVANCE(563); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(427); END_STATE(); case 428: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == 'i') ADVANCE(659); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428); END_STATE(); case 429: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1507); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(429); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); END_STATE(); case 430: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 1633, - ':', 1500, - ']', 1506, - '_', 1258, - '|', 1509, - 'E', 1256, - 'e', 1256, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '(') ADVANCE(1508); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(430); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 431: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 1633, - ':', 1500, - ']', 1506, - '|', 1509, - 'E', 1256, - 'e', 1256, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 1634, + ':', 1501, + ']', 1507, + '_', 1257, + '|', 1510, + 'E', 1258, + 'e', 1258, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(435); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 432: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - '=', 975, - '?', 1540, - ']', 1506, - '|', 1509, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 1634, + ':', 1501, + ']', 1507, + '|', 1510, + 'E', 1258, + 'e', 1258, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(433); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(436); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 433: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - '=', 975, - ']', 1506, - '|', 1509, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + '=', 976, + '?', 1541, + ']', 1507, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(433); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(434); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 434: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - '=', 562, - ']', 1506, - '{', 1618, - '|', 1509, - '}', 1619, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + '=', 976, + ']', 1507, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 435: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ')', 1508, - ',', 1504, - '-', 1545, - '.', 554, - ':', 1500, - ']', 1506, - '|', 1509, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + '=', 563, + ']', 1507, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(435); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 436: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ',', 1504, - '-', 1545, - '.', 1632, - ':', 1500, - ';', 994, - '=', 975, - '?', 1699, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '[', 1503, - ']', 1506, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '$', 1512, + ')', 1509, + ',', 1505, + '-', 1546, + '.', 555, + ':', 1501, + ']', 1507, + '|', 1510, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(436); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 437: ADVANCE_MAP( - '#', 3584, - '$', 1511, - ',', 1504, - '-', 1545, - ':', 1500, - ';', 994, - '=', 975, - '?', 1699, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '[', 1503, - ']', 1506, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '$', 1512, + ',', 1505, + '-', 1546, + '.', 1633, + ':', 1501, + ';', 995, + '=', 976, + '?', 1700, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '[', 1504, + ']', 1507, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(438); END_STATE(); case 438: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '?') ADVANCE(1699); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + ',', 1505, + '-', 1546, + ':', 1501, + ';', 995, + '=', 976, + '?', 1700, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '[', 1504, + ']', 1507, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(446); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(438); END_STATE(); case 439: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '?') ADVANCE(1700); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 440: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '-', 1546, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 441: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - '.', 1632, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '-', 1546, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(448); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 442: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2265); - if (lookahead == '{') ADVANCE(1618); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '-', 1546, + '.', 1633, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + lookahead == ' ') SKIP(448); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 443: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(1258); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1256); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 444: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '.') ADVANCE(1632); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(1257); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1256); + lookahead == 'e') ADVANCE(1258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(452); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 445: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - '=', 562, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 624, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(445); + lookahead == ' ') SKIP(453); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 446: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '?') ADVANCE(1699); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '-', 1546, + '=', 563, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 625, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(446); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); END_STATE(); case 447: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '?') ADVANCE(1700); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(447); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 448: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '-', 1545, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '-', 1546, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(448); END_STATE(); case 449: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '{') ADVANCE(1618); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '-', 1546, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(449); + lookahead == ' ') SKIP(448); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 450: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(450); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); END_STATE(); case 451: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(450); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1338); + lookahead == ' ') SKIP(451); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 452: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '-') ADVANCE(1545); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(452); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(451); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1339); END_STATE(); case 453: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'd', 3282, - 'e', 3247, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '-') ADVANCE(1546); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(463); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(453); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 454: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3247, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'd', 3283, + 'e', 3248, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(463); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 455: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3250, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3248, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(463); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 456: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3251, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(463); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 457: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 458: ADVANCE_MAP( - '#', 3584, - '$', 1511, - '.', 1632, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(462); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 459: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2267); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + '.', 1633, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(467); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + lookahead == ' ') SKIP(462); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 460: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '.') ADVANCE(1632); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '.') ADVANCE(1633); if (lookahead == '_') ADVANCE(2265); - if (lookahead == '{') ADVANCE(1618); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(465); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2249); + lookahead == ' ') SKIP(468); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 461: - ADVANCE_MAP( - '#', 3584, - '$', 1511, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); + lookahead == ' ') SKIP(466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 462: ADVANCE_MAP( - '#', 3584, - '$', 1511, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3250, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '$', 1512, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(463); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(462); END_STATE(); case 463: ADVANCE_MAP( - '#', 3584, - '$', 1511, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'd', 1260, - 'e', 1251, - 'g', 1251, - 'h', 1298, - 'k', 1251, - 'm', 1254, - 'n', 1308, - 'p', 1251, - 's', 1271, - 't', 1251, - 'u', 1308, - 'w', 1276, - 0xb5, 1308, - 'B', 1333, - 'b', 1333, + '#', 3585, + '$', 1512, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'd', 1261, + 'e', 1252, + 'g', 1252, + 'h', 1299, + 'k', 1252, + 'm', 1255, + 'n', 1309, + 'p', 1252, + 's', 1272, + 't', 1252, + 'u', 1309, + 'w', 1277, + 0xb5, 1309, + 'B', 1334, + 'b', 1334, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(463); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 464: ADVANCE_MAP( - '#', 3584, - '$', 1511, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '$', 1512, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3251, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(463); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 465: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '{') ADVANCE(1618); + ADVANCE_MAP( + '#', 3585, + '$', 1512, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(465); + lookahead == ' ') SKIP(462); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 466: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(466); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); END_STATE(); case 467: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '$') ADVANCE(1511); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 468: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '(') ADVANCE(1848); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(1895); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '$') ADVANCE(1512); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2077); + lookahead == ' ') SKIP(468); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 469: - ADVANCE_MAP( - '#', 3584, - ',', 1504, - '-', 563, - '<', 1530, - '=', 975, - '>', 1532, - '@', 1537, - '[', 1503, - ']', 1506, - 'c', 1273, - 'e', 1304, - 'f', 1321, - 'i', 1284, - 'l', 1275, - 'o', 1289, - 'v', 1262, - '{', 1618, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '(') ADVANCE(1849); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(1896); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(470); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2078); END_STATE(); case 470: ADVANCE_MAP( - '#', 3584, - ',', 1504, - '-', 563, - '=', 975, - '>', 1532, - '@', 1537, - '[', 1503, - ']', 1506, - 'c', 1273, - 'e', 1304, - 'f', 1321, - 'i', 1284, - 'l', 1275, - 'o', 1289, - 'v', 1262, - '{', 1618, + '#', 3585, + ',', 1505, + '-', 564, + '<', 1531, + '=', 976, + '>', 1533, + '@', 1538, + '[', 1504, + ']', 1507, + 'c', 1274, + 'e', 1306, + 'f', 1322, + 'i', 1285, + 'l', 1276, + 'o', 1290, + 'v', 1263, + '{', 1619, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(470); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(471); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 471: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ',') ADVANCE(1504); - if (lookahead == ']') ADVANCE(1506); + ADVANCE_MAP( + '#', 3585, + ',', 1505, + '-', 564, + '=', 976, + '>', 1533, + '@', 1538, + '[', 1504, + ']', 1507, + 'c', 1274, + 'e', 1306, + 'f', 1322, + 'i', 1285, + 'l', 1276, + 'o', 1290, + 'v', 1263, + '{', 1619, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(471); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1983); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 472: - ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ',') ADVANCE(1505); + if (lookahead == ']') ADVANCE(1507); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1984); END_STATE(); case 473: ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3187); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3188); END_STATE(); case 474: ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3187); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3188); END_STATE(); case 475: ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3558, - 'G', 3560, - 'K', 3560, - 'M', 3560, - 'P', 3560, - 'T', 3560, - ']', 1506, - '_', 3569, - 'd', 3574, - 'e', 3557, - 'g', 3559, - 'h', 3579, - 'k', 3559, - 'm', 3561, - 'n', 3580, - 'p', 3559, - 's', 3576, - 't', 3559, - 'u', 3580, - 'w', 3578, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3556); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3188); END_STATE(); case 476: ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3558, - 'G', 3560, - 'K', 3560, - 'M', 3560, - 'P', 3560, - 'T', 3560, - ']', 1506, - 'd', 3574, - 'e', 3557, - 'g', 3559, - 'h', 3579, - 'k', 3559, - 'm', 3561, - 'n', 3580, - 'p', 3559, - 's', 3576, - 't', 3559, - 'u', 3580, - 'w', 3578, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3559, + 'G', 3561, + 'K', 3561, + 'M', 3561, + 'P', 3561, + 'T', 3561, + ']', 1507, + '_', 3570, + 'd', 3575, + 'e', 3558, + 'g', 3560, + 'h', 3580, + 'k', 3560, + 'm', 3562, + 'n', 3581, + 'p', 3560, + 's', 3577, + 't', 3560, + 'u', 3581, + 'w', 3579, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3556); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3557); END_STATE(); case 477: ADVANCE_MAP( - '#', 3584, - ',', 2029, - '.', 1632, - 'E', 3560, - 'G', 3560, - 'K', 3560, - 'M', 3560, - 'P', 3560, - 'T', 3560, - ']', 1506, - 'd', 3574, - 'e', 3559, - 'g', 3559, - 'h', 3579, - 'k', 3559, - 'm', 3561, - 'n', 3580, - 'p', 3559, - 's', 3576, - 't', 3559, - 'u', 3580, - 'w', 3578, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3559, + 'G', 3561, + 'K', 3561, + 'M', 3561, + 'P', 3561, + 'T', 3561, + ']', 1507, + 'd', 3575, + 'e', 3558, + 'g', 3560, + 'h', 3580, + 'k', 3560, + 'm', 3562, + 'n', 3581, + 'p', 3560, + 's', 3577, + 't', 3560, + 'u', 3581, + 'w', 3579, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3556); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3557); END_STATE(); case 478: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ',') ADVANCE(2029); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == ']') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2265); + ADVANCE_MAP( + '#', 3585, + ',', 2030, + '.', 1633, + 'E', 3561, + 'G', 3561, + 'K', 3561, + 'M', 3561, + 'P', 3561, + 'T', 3561, + ']', 1507, + 'd', 3575, + 'e', 3560, + 'g', 3560, + 'h', 3580, + 'k', 3560, + 'm', 3562, + 'n', 3581, + 'p', 3560, + 's', 3577, + 't', 3560, + 'u', 3581, + 'w', 3579, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2249); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3557); END_STATE(); case 479: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ',') ADVANCE(2029); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == ']') ADVANCE(1506); - if (lookahead == '_') ADVANCE(3474); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == ']') ADVANCE(1507); + if (lookahead == '_') ADVANCE(2267); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3473); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2250); END_STATE(); case 480: - ADVANCE_MAP( - '#', 3584, - ',', 2029, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - ']', 1506, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == ']') ADVANCE(1507); + if (lookahead == '_') ADVANCE(3475); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3474); END_STATE(); case 481: ADVANCE_MAP( - '#', 3584, - ',', 2029, - 'E', 3560, - 'G', 3560, - 'K', 3560, - 'M', 3560, - 'P', 3560, - 'T', 3560, - ']', 1506, - 'd', 3574, - 'e', 3559, - 'g', 3559, - 'h', 3579, - 'k', 3559, - 'm', 3561, - 'n', 3580, - 'p', 3559, - 's', 3576, - 't', 3559, - 'u', 3580, - 'w', 3578, - 0xb5, 3580, - 'B', 3556, - 'b', 3556, + '#', 3585, + ',', 2030, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + ']', 1507, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3556); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3188); END_STATE(); case 482: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ',') ADVANCE(2029); - if (lookahead == ']') ADVANCE(1506); + ADVANCE_MAP( + '#', 3585, + ',', 2030, + 'E', 3561, + 'G', 3561, + 'K', 3561, + 'M', 3561, + 'P', 3561, + 'T', 3561, + ']', 1507, + 'd', 3575, + 'e', 3560, + 'g', 3560, + 'h', 3580, + 'k', 3560, + 'm', 3562, + 'n', 3581, + 'p', 3560, + 's', 3577, + 't', 3560, + 'u', 3581, + 'w', 3579, + 0xb5, 3581, + 'B', 3557, + 'b', 3557, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3557); END_STATE(); case 483: - ADVANCE_MAP( - '#', 3584, - '-', 1545, - '.', 1632, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - '_', 3267, - 'd', 3282, - 'e', 3247, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == ']') ADVANCE(1507); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(488); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') ADVANCE(2031); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); END_STATE(); case 484: ADVANCE_MAP( - '#', 3584, - '-', 1545, - '.', 1632, - 'E', 3248, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3247, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '-', 1546, + '.', 1633, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + '_', 3264, + 'd', 3283, + 'e', 3248, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(488); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 485: ADVANCE_MAP( - '#', 3584, - '-', 1545, - '.', 1632, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3250, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '-', 1546, + '.', 1633, + 'E', 3249, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3248, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(488); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 486: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2267); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2362); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2249); - END_STATE(); - case 487: ADVANCE_MAP( - '#', 3584, - '-', 1545, - 'E', 3251, - 'G', 3251, - 'K', 3251, - 'M', 3251, - 'P', 3251, - 'T', 3251, - 'd', 3282, - 'e', 3250, - 'g', 3250, - 'h', 3344, - 'k', 3250, - 'm', 3253, - 'n', 3352, - 'p', 3250, - 's', 3298, - 't', 3250, - 'u', 3352, - 'w', 3314, - 0xb5, 3352, - 'B', 3367, - 'b', 3367, + '#', 3585, + '-', 1546, + '.', 1633, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3251, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(488); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3367); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); + END_STATE(); + case 487: + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2265); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 488: ADVANCE_MAP( - '#', 3584, - '-', 1545, - 'E', 1252, - 'G', 1252, - 'K', 1252, - 'M', 1252, - 'P', 1252, - 'T', 1252, - 'd', 1260, - 'e', 1251, - 'g', 1251, - 'h', 1298, - 'k', 1251, - 'm', 1254, - 'n', 1308, - 'p', 1251, - 's', 1271, - 't', 1251, - 'u', 1308, - 'w', 1276, - 0xb5, 1308, - 'B', 1333, - 'b', 1333, + '#', 3585, + '-', 1546, + 'E', 1253, + 'G', 1253, + 'K', 1253, + 'M', 1253, + 'P', 1253, + 'T', 1253, + 'd', 1261, + 'e', 1252, + 'g', 1252, + 'h', 1299, + 'k', 1252, + 'm', 1255, + 'n', 1309, + 'p', 1252, + 's', 1272, + 't', 1252, + 'u', 1309, + 'w', 1277, + 0xb5, 1309, + 'B', 1334, + 'b', 1334, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(488); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 489: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '-') ADVANCE(1545); + ADVANCE_MAP( + '#', 3585, + '-', 1546, + 'E', 3252, + 'G', 3252, + 'K', 3252, + 'M', 3252, + 'P', 3252, + 'T', 3252, + 'd', 3283, + 'e', 3251, + 'g', 3251, + 'h', 3345, + 'k', 3251, + 'm', 3254, + 'n', 3353, + 'p', 3251, + 's', 3299, + 't', 3251, + 'u', 3353, + 'w', 3315, + 0xb5, 3353, + 'B', 3368, + 'b', 3368, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(489); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(488); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 490: - ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'i', 3304, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '-') ADVANCE(1546); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(509); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(490); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 491: ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'i', 3305, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(510); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 492: ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'i', 3304, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(509); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 493: ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'i', 3305, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(510); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 494: ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'i', 3304, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(509); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(511); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 495: ADVANCE_MAP( - '#', 3584, - '.', 1632, - '=', 3206, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'i', 3305, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(510); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 496: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '=') ADVANCE(2258); - if (lookahead == '_') ADVANCE(2265); - if (lookahead == 'i') ADVANCE(2282); - if (lookahead == '|') ADVANCE(1509); + ADVANCE_MAP( + '#', 3585, + '.', 1633, + '=', 3207, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2249); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 497: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '=') ADVANCE(2258); - if (lookahead == '_') ADVANCE(2265); - if (lookahead == '|') ADVANCE(1509); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '=') ADVANCE(2259); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == 'i') ADVANCE(2283); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 498: - ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '=') ADVANCE(2259); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 499: ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 500: ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 501: ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 502: ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(517); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 503: ADVANCE_MAP( - '#', 3584, - '.', 1632, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '.', 1633, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 504: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2265); - if (lookahead == 'i') ADVANCE(2300); + ADVANCE_MAP( + '#', 3585, + '.', 1633, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2249); + lookahead == ' ') SKIP(517); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 505: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(2265); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == 'i') ADVANCE(2301); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 506: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); - if (lookahead == '_') ADVANCE(3264); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3259); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(2267); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2250); END_STATE(); case 507: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == '_') ADVANCE(3266); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3259); + lookahead == 'e') ADVANCE(3260); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 508: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '.') ADVANCE(1632); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3260); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); END_STATE(); case 509: + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '.') ADVANCE(1633); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(3188); + END_STATE(); + case 510: ADVANCE_MAP( - '#', 3584, - '=', 562, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 623, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '|', 1509, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(509); - END_STATE(); - case 510: - ADVANCE_MAP( - '#', 3584, - '=', 562, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '|', 1509, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '=', 563, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 624, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '|', 1510, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(510); END_STATE(); case 511: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '=') ADVANCE(562); - if (lookahead == 'i') ADVANCE(623); - if (lookahead == '|') ADVANCE(1509); + ADVANCE_MAP( + '#', 3585, + '=', 563, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '|', 1510, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(511); END_STATE(); case 512: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '|') ADVANCE(1509); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '=') ADVANCE(563); + if (lookahead == 'i') ADVANCE(624); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(512); END_STATE(); case 513: - ADVANCE_MAP( - '#', 3584, - '=', 3206, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'i', 3304, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - ); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '=') ADVANCE(563); + if (lookahead == '|') ADVANCE(1510); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(509); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(513); END_STATE(); case 514: ADVANCE_MAP( - '#', 3584, - '=', 3206, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + '=', 3207, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'i', 3305, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(510); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 515: ADVANCE_MAP( - '#', 3584, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + '=', 3207, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); + lookahead == ' ') SKIP(511); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 516: ADVANCE_MAP( - '#', 3584, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '{', 1618, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '#', 3585, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); END_STATE(); case 517: ADVANCE_MAP( - '#', 3584, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '{', 1619, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(517); END_STATE(); case 518: ADVANCE_MAP( - '#', 3584, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '{', 1618, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '#', 3585, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 519: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == 'i') ADVANCE(1397); + ADVANCE_MAP( + '#', 3585, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '{', 1619, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(521); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') SKIP(517); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 520: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == 'i') ADVANCE(1287); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == 'i') ADVANCE(1398); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(520); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); + lookahead == ' ') SKIP(522); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); END_STATE(); case 521: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == 'i') ADVANCE(658); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == 'i') ADVANCE(1288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(521); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); END_STATE(); case 522: - if (lookahead == '#') ADVANCE(3584); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == 'i') ADVANCE(659); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); END_STATE(); case 523: - if (lookahead == '#') ADVANCE(3584); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(523); END_STATE(); case 524: - if (lookahead == '#') ADVANCE(3584); + if (lookahead == '#') ADVANCE(3585); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1558); + lookahead == ' ') SKIP(524); END_STATE(); case 525: - if (lookahead == '#') ADVANCE(3584); + if (lookahead == '#') ADVANCE(3585); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2077); + lookahead == ' ') SKIP(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1559); END_STATE(); case 526: - if (lookahead == '#') ADVANCE(3584); + if (lookahead == '#') ADVANCE(3585); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3187); + lookahead == ' ') SKIP(524); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2078); END_STATE(); case 527: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '$') ADVANCE(1515); - if (lookahead == '-') ADVANCE(1549); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3585); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(449); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(3188); END_STATE(); case 528: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '$') ADVANCE(1515); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '$') ADVANCE(1516); + if (lookahead == '-') ADVANCE(1550); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(466); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(450); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 529: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == ',') ADVANCE(2029); - if (lookahead == ']') ADVANCE(1506); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '$') ADVANCE(1516); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(467); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 530: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '-') ADVANCE(1549); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == ']') ADVANCE(1507); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(489); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2937); END_STATE(); case 531: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '.') ADVANCE(1636); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2510); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '-') ADVANCE(1550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(490); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 532: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '=') ADVANCE(2501); - if (lookahead == 'i') ADVANCE(2609); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '.') ADVANCE(1637); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2512); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 533: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '=') ADVANCE(2501); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '=') ADVANCE(2502); + if (lookahead == 'i') ADVANCE(2610); + if (lookahead == '|') ADVANCE(1511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(512); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 534: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '_') ADVANCE(2512); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2510); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '=') ADVANCE(2502); + if (lookahead == '|') ADVANCE(1511); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(513); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 535: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == 'i') ADVANCE(2688); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '_') ADVANCE(2511); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2512); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(521); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == ' ') SKIP(524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 536: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == '{') ADVANCE(1618); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == 'i') ADVANCE(2689); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 537: - if (lookahead == '#') ADVANCE(3592); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2510); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == '{') ADVANCE(1619); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 538: - if (lookahead == '#') ADVANCE(3590); - if (lookahead == ',') ADVANCE(2029); - if (lookahead == ']') ADVANCE(1506); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2512); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 539: - if (lookahead == '#') ADVANCE(3590); - if (lookahead == '.') ADVANCE(1635); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3494); + if (lookahead == '#') ADVANCE(3591); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == ']') ADVANCE(1507); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3535); + lookahead == ' ') ADVANCE(2031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 540: - if (lookahead == '#') ADVANCE(3590); - if (lookahead == '_') ADVANCE(3496); + if (lookahead == '#') ADVANCE(3591); + if (lookahead == '.') ADVANCE(1636); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3494); + lookahead == 'e') ADVANCE(3495); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3536); END_STATE(); case 541: - if (lookahead == '#') ADVANCE(3590); + if (lookahead == '#') ADVANCE(3591); + if (lookahead == '_') ADVANCE(3497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3494); + lookahead == 'e') ADVANCE(3495); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == ' ') SKIP(524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 542: - if (lookahead == '#') ADVANCE(3590); + if (lookahead == '#') ADVANCE(3591); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3495); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 543: - if (lookahead == '#') ADVANCE(2015); - if (lookahead == '\'') ADVANCE(2017); - if (lookahead == '(') ADVANCE(1507); + if (lookahead == '#') ADVANCE(3591); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2014); - if (lookahead != 0) ADVANCE(2015); + lookahead == ' ') SKIP(524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 544: - if (lookahead == '\'') ADVANCE(2009); - if (lookahead != 0) ADVANCE(544); + if (lookahead == '#') ADVANCE(2016); + if (lookahead == '\'') ADVANCE(2018); + if (lookahead == '(') ADVANCE(1508); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2015); + if (lookahead != 0) ADVANCE(2016); END_STATE(); case 545: - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '\'') ADVANCE(2010); + if (lookahead != 0) ADVANCE(545); END_STATE(); case 546: - if (lookahead == '-') ADVANCE(591); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 547: - if (lookahead == '-') ADVANCE(637); + if (lookahead == '-') ADVANCE(592); END_STATE(); case 548: - if (lookahead == '-') ADVANCE(727); + if (lookahead == '-') ADVANCE(638); END_STATE(); case 549: - if (lookahead == '-') ADVANCE(669); + if (lookahead == '-') ADVANCE(728); END_STATE(); case 550: - if (lookahead == '-') ADVANCE(706); + if (lookahead == '-') ADVANCE(670); END_STATE(); case 551: - if (lookahead == '-') ADVANCE(763); + if (lookahead == '-') ADVANCE(707); END_STATE(); case 552: - if (lookahead == '-') ADVANCE(728); + if (lookahead == '-') ADVANCE(764); END_STATE(); case 553: - if (lookahead == '-') ADVANCE(682); + if (lookahead == '-') ADVANCE(729); END_STATE(); case 554: - if (lookahead == '.') ADVANCE(555); + if (lookahead == '-') ADVANCE(683); END_STATE(); case 555: - if (lookahead == '.') ADVANCE(1538); + if (lookahead == '.') ADVANCE(556); END_STATE(); case 556: - if (lookahead == '2') ADVANCE(752); - if (lookahead == '0' || - lookahead == '1') ADVANCE(757); + if (lookahead == '.') ADVANCE(1539); END_STATE(); case 557: - if (lookahead == ':') ADVANCE(760); + if (lookahead == '2') ADVANCE(753); + if (lookahead == '0' || + lookahead == '1') ADVANCE(758); END_STATE(); case 558: if (lookahead == ':') ADVANCE(761); END_STATE(); case 559: - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); + if (lookahead == ':') ADVANCE(762); END_STATE(); case 560: - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '>') ADVANCE(1620); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); END_STATE(); case 561: - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1621); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 562: - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 563: - if (lookahead == '>') ADVANCE(1502); + if (lookahead == '>') ADVANCE(1621); END_STATE(); case 564: - ADVANCE_MAP( - 'I', 738, - '_', 582, - 'i', 738, - 'l', 694, - '+', 582, - '-', 582, - 'B', 1965, - 'b', 1965, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == '>') ADVANCE(1503); END_STATE(); case 565: ADVANCE_MAP( - 'I', 738, - '_', 582, - 'i', 738, - 'n', 606, - '+', 582, - '-', 582, - 'B', 1965, - 'b', 1965, + 'I', 739, + '_', 583, + 'i', 739, + 'l', 695, + '+', 583, + '-', 583, + 'B', 1966, + 'b', 1966, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 566: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + ADVANCE_MAP( + 'I', 739, + '_', 583, + 'i', 739, + 'n', 607, + '+', 583, + '-', 583, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 567: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(739); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 568: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'a') ADVANCE(709); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(598); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 569: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'l') ADVANCE(694); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'a') ADVANCE(710); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 570: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'l') ADVANCE(695); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 571: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'r') ADVANCE(723); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'n') ADVANCE(607); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 572: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'r') ADVANCE(724); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 573: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'r') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 574: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 575: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'o') ADVANCE(603); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(598); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 576: - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 'o') ADVANCE(604); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 577: - if (lookahead == 'N') ADVANCE(740); - if (lookahead == 'f') ADVANCE(1604); - if (lookahead == 'n') ADVANCE(1581); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 578: - if (lookahead == 'N') ADVANCE(740); - if (lookahead == 'n') ADVANCE(1581); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'f') ADVANCE(1605); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 579: - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'l') ADVANCE(694); - if (lookahead == 'n') ADVANCE(606); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 580: - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'l') ADVANCE(695); + if (lookahead == 'n') ADVANCE(607); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == '-') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 581: - if (lookahead == '_') ADVANCE(582); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'n') ADVANCE(607); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == '-') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 582: - if (lookahead == '_') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == '_') ADVANCE(583); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 583: if (lookahead == '_') ADVANCE(583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 584: if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 585: - if (lookahead == '`') ADVANCE(2010); - if (lookahead != 0) ADVANCE(585); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(707); + if (lookahead == '`') ADVANCE(2011); + if (lookahead != 0) ADVANCE(586); END_STATE(); case 587: - if (lookahead == 'a') ADVANCE(731); + if (lookahead == 'a') ADVANCE(708); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(731); - if (lookahead == 'o') ADVANCE(1599); + if (lookahead == 'a') ADVANCE(732); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(732); + if (lookahead == 'o') ADVANCE(1600); END_STATE(); case 590: - if (lookahead == 'a') ADVANCE(645); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 'a') ADVANCE(650); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(662); - if (lookahead == 'o') ADVANCE(686); - if (lookahead == 's') ADVANCE(632); - if (lookahead == 'x') ADVANCE(673); + if (lookahead == 'a') ADVANCE(646); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(689); + if (lookahead == 'a') ADVANCE(663); + if (lookahead == 'o') ADVANCE(687); + if (lookahead == 's') ADVANCE(633); + if (lookahead == 'x') ADVANCE(674); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(693); + if (lookahead == 'a') ADVANCE(690); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(715); + if (lookahead == 'a') ADVANCE(694); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(719); + if (lookahead == 'a') ADVANCE(716); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(716); + if (lookahead == 'a') ADVANCE(720); END_STATE(); case 597: - if (lookahead == 'b') ADVANCE(1965); + if (lookahead == 'a') ADVANCE(717); END_STATE(); case 598: - if (lookahead == 'c') ADVANCE(1969); + if (lookahead == 'b') ADVANCE(1966); END_STATE(); case 599: - if (lookahead == 'c') ADVANCE(630); + if (lookahead == 'c') ADVANCE(1970); END_STATE(); case 600: if (lookahead == 'c') ADVANCE(631); END_STATE(); case 601: - if (lookahead == 'c') ADVANCE(622); + if (lookahead == 'c') ADVANCE(632); END_STATE(); case 602: - if (lookahead == 'd') ADVANCE(1813); + if (lookahead == 'c') ADVANCE(623); END_STATE(); case 603: - if (lookahead == 'd') ADVANCE(1714); + if (lookahead == 'd') ADVANCE(1814); END_STATE(); case 604: - if (lookahead == 'd') ADVANCE(1795); + if (lookahead == 'd') ADVANCE(1715); END_STATE(); case 605: - if (lookahead == 'd') ADVANCE(724); + if (lookahead == 'd') ADVANCE(1796); END_STATE(); case 606: - if (lookahead == 'd') ADVANCE(695); + if (lookahead == 'd') ADVANCE(725); END_STATE(); case 607: - if (lookahead == 'd') ADVANCE(614); + if (lookahead == 'd') ADVANCE(696); END_STATE(); case 608: - if (lookahead == 'e') ADVANCE(1908); + if (lookahead == 'd') ADVANCE(615); END_STATE(); case 609: - if (lookahead == 'e') ADVANCE(1917); + if (lookahead == 'e') ADVANCE(1909); END_STATE(); case 610: - if (lookahead == 'e') ADVANCE(598); + if (lookahead == 'e') ADVANCE(1918); END_STATE(); case 611: - if (lookahead == 'e') ADVANCE(598); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 'e') ADVANCE(599); END_STATE(); case 612: - if (lookahead == 'e') ADVANCE(1610); + if (lookahead == 'e') ADVANCE(599); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 613: - if (lookahead == 'e') ADVANCE(1495); + if (lookahead == 'e') ADVANCE(1611); END_STATE(); case 614: - if (lookahead == 'e') ADVANCE(1664); + if (lookahead == 'e') ADVANCE(1496); END_STATE(); case 615: - if (lookahead == 'e') ADVANCE(1592); + if (lookahead == 'e') ADVANCE(1665); END_STATE(); case 616: - if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1593); END_STATE(); case 617: - if (lookahead == 'e') ADVANCE(1490); + if (lookahead == 'e') ADVANCE(1526); END_STATE(); case 618: - if (lookahead == 'e') ADVANCE(726); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'e') ADVANCE(1491); END_STATE(); case 619: - if (lookahead == 'e') ADVANCE(627); + if (lookahead == 'e') ADVANCE(727); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 620: - if (lookahead == 'e') ADVANCE(690); + if (lookahead == 'e') ADVANCE(628); END_STATE(); case 621: if (lookahead == 'e') ADVANCE(691); END_STATE(); case 622: - if (lookahead == 'e') ADVANCE(651); + if (lookahead == 'e') ADVANCE(692); END_STATE(); case 623: - if (lookahead == 'f') ADVANCE(1604); + if (lookahead == 'e') ADVANCE(652); END_STATE(); case 624: - if (lookahead == 'f') ADVANCE(1604); - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'f') ADVANCE(1605); END_STATE(); case 625: - if (lookahead == 'f') ADVANCE(1604); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + if (lookahead == 'f') ADVANCE(1605); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 626: - if (lookahead == 'f') ADVANCE(1524); + if (lookahead == 'f') ADVANCE(1605); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(741); END_STATE(); case 627: - if (lookahead == 'f') ADVANCE(1476); + if (lookahead == 'f') ADVANCE(1525); END_STATE(); case 628: - if (lookahead == 'h') ADVANCE(1781); + if (lookahead == 'f') ADVANCE(1477); END_STATE(); case 629: - if (lookahead == 'h') ADVANCE(1775); + if (lookahead == 'h') ADVANCE(1782); END_STATE(); case 630: - if (lookahead == 'h') ADVANCE(1645); + if (lookahead == 'h') ADVANCE(1776); END_STATE(); case 631: - if (lookahead == 'h') ADVANCE(1613); + if (lookahead == 'h') ADVANCE(1646); END_STATE(); case 632: - if (lookahead == 'h') ADVANCE(647); + if (lookahead == 'h') ADVANCE(1614); END_STATE(); case 633: - if (lookahead == 'h') ADVANCE(1516); + if (lookahead == 'h') ADVANCE(648); END_STATE(); case 634: - if (lookahead == 'h') ADVANCE(1522); + if (lookahead == 'h') ADVANCE(1517); END_STATE(); case 635: - if (lookahead == 'h') ADVANCE(549); + if (lookahead == 'h') ADVANCE(1523); END_STATE(); case 636: - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'h') ADVANCE(550); END_STATE(); case 637: - if (lookahead == 'i') ADVANCE(656); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 638: - if (lookahead == 'i') ADVANCE(593); + if (lookahead == 'i') ADVANCE(657); END_STATE(); case 639: - if (lookahead == 'i') ADVANCE(698); + if (lookahead == 'i') ADVANCE(594); END_STATE(); case 640: - if (lookahead == 'i') ADVANCE(607); + if (lookahead == 'i') ADVANCE(699); END_STATE(); case 641: - if (lookahead == 'i') ADVANCE(711); + if (lookahead == 'i') ADVANCE(608); END_STATE(); case 642: if (lookahead == 'i') ADVANCE(712); @@ -36081,134 +36105,134 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(713); END_STATE(); case 644: - if (lookahead == 'k') ADVANCE(1969); + if (lookahead == 'i') ADVANCE(714); END_STATE(); case 645: - if (lookahead == 'k') ADVANCE(615); + if (lookahead == 'k') ADVANCE(1970); END_STATE(); case 646: - if (lookahead == 'l') ADVANCE(1898); + if (lookahead == 'k') ADVANCE(616); END_STATE(); case 647: - if (lookahead == 'l') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(1743); + if (lookahead == 'l') ADVANCE(1899); END_STATE(); case 648: - if (lookahead == 'l') ADVANCE(694); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'l') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1744); END_STATE(); case 649: - if (lookahead == 'l') ADVANCE(696); + if (lookahead == 'l') ADVANCE(695); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 650: - if (lookahead == 'l') ADVANCE(646); + if (lookahead == 'l') ADVANCE(697); END_STATE(); case 651: - if (lookahead == 'l') ADVANCE(653); + if (lookahead == 'l') ADVANCE(647); END_STATE(); case 652: - if (lookahead == 'l') ADVANCE(638); + if (lookahead == 'l') ADVANCE(654); END_STATE(); case 653: - if (lookahead == 'l') ADVANCE(553); + if (lookahead == 'l') ADVANCE(639); END_STATE(); case 654: - if (lookahead == 'l') ADVANCE(617); + if (lookahead == 'l') ADVANCE(554); END_STATE(); case 655: - if (lookahead == 'n') ADVANCE(1969); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + if (lookahead == 'l') ADVANCE(618); END_STATE(); case 656: - if (lookahead == 'n') ADVANCE(1769); + if (lookahead == 'n') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 657: - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(1770); END_STATE(); case 658: - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 659: - if (lookahead == 'n') ADVANCE(1523); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 660: - if (lookahead == 'n') ADVANCE(1485); + if (lookahead == 'n') ADVANCE(1524); END_STATE(); case 661: - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'n') ADVANCE(1486); END_STATE(); case 662: - if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 663: - if (lookahead == 'n') ADVANCE(699); + if (lookahead == 'n') ADVANCE(605); END_STATE(); case 664: - if (lookahead == 'o') ADVANCE(626); + if (lookahead == 'n') ADVANCE(700); END_STATE(); case 665: - if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'o') ADVANCE(627); END_STATE(); case 666: - if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 667: - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(702); END_STATE(); case 668: - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 669: - if (lookahead == 'o') ADVANCE(679); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 670: - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 'o') ADVANCE(680); END_STATE(); case 671: - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 672: - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 673: - if (lookahead == 'o') ADVANCE(687); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 674: - if (lookahead == 'o') ADVANCE(605); + if (lookahead == 'o') ADVANCE(688); END_STATE(); case 675: - if (lookahead == 'o') ADVANCE(663); + if (lookahead == 'o') ADVANCE(606); END_STATE(); case 676: - if (lookahead == 'o') ADVANCE(710); + if (lookahead == 'o') ADVANCE(664); END_STATE(); case 677: - if (lookahead == 'o') ADVANCE(710); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'o') ADVANCE(711); END_STATE(); case 678: - if (lookahead == 'p') ADVANCE(616); + if (lookahead == 'o') ADVANCE(711); + if (lookahead == 's') ADVANCE(1970); END_STATE(); case 679: - if (lookahead == 'p') ADVANCE(714); + if (lookahead == 'p') ADVANCE(617); END_STATE(); case 680: - if (lookahead == 'p') ADVANCE(594); + if (lookahead == 'p') ADVANCE(715); END_STATE(); case 681: if (lookahead == 'p') ADVANCE(595); @@ -36217,144 +36241,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(596); END_STATE(); case 683: - if (lookahead == 'r') ADVANCE(1969); + if (lookahead == 'p') ADVANCE(597); END_STATE(); case 684: - if (lookahead == 'r') ADVANCE(1829); + if (lookahead == 'r') ADVANCE(1970); END_STATE(); case 685: - if (lookahead == 'r') ADVANCE(1821); + if (lookahead == 'r') ADVANCE(1830); END_STATE(); case 686: - if (lookahead == 'r') ADVANCE(1807); + if (lookahead == 'r') ADVANCE(1822); END_STATE(); case 687: - if (lookahead == 'r') ADVANCE(1801); + if (lookahead == 'r') ADVANCE(1808); END_STATE(); case 688: - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'r') ADVANCE(1802); END_STATE(); case 689: - if (lookahead == 'r') ADVANCE(720); + if (lookahead == 'r') ADVANCE(723); END_STATE(); case 690: - if (lookahead == 'r') ADVANCE(659); + if (lookahead == 'r') ADVANCE(721); END_STATE(); case 691: if (lookahead == 'r') ADVANCE(660); END_STATE(); case 692: - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'r') ADVANCE(661); END_STATE(); case 693: - if (lookahead == 's') ADVANCE(970); + if (lookahead == 's') ADVANCE(1970); END_STATE(); case 694: - if (lookahead == 's') ADVANCE(612); + if (lookahead == 's') ADVANCE(971); END_STATE(); case 695: - if (lookahead == 's') ADVANCE(548); + if (lookahead == 's') ADVANCE(613); END_STATE(); case 696: - if (lookahead == 's') ADVANCE(609); + if (lookahead == 's') ADVANCE(549); END_STATE(); case 697: - if (lookahead == 's') ADVANCE(613); + if (lookahead == 's') ADVANCE(610); END_STATE(); case 698: - if (lookahead == 's') ADVANCE(703); + if (lookahead == 's') ADVANCE(614); END_STATE(); case 699: if (lookahead == 's') ADVANCE(704); END_STATE(); case 700: - if (lookahead == 's') ADVANCE(552); + if (lookahead == 's') ADVANCE(705); END_STATE(); case 701: - if (lookahead == 't') ADVANCE(1837); + if (lookahead == 's') ADVANCE(553); END_STATE(); case 702: if (lookahead == 't') ADVANCE(1838); END_STATE(); case 703: - if (lookahead == 't') ADVANCE(1526); + if (lookahead == 't') ADVANCE(1839); END_STATE(); case 704: - if (lookahead == 't') ADVANCE(989); + if (lookahead == 't') ADVANCE(1527); END_STATE(); case 705: - if (lookahead == 't') ADVANCE(546); + if (lookahead == 't') ADVANCE(990); END_STATE(); case 706: - if (lookahead == 't') ADVANCE(732); + if (lookahead == 't') ADVANCE(547); END_STATE(); case 707: - if (lookahead == 't') ADVANCE(599); + if (lookahead == 't') ADVANCE(733); END_STATE(); case 708: - if (lookahead == 't') ADVANCE(592); + if (lookahead == 't') ADVANCE(600); END_STATE(); case 709: - if (lookahead == 't') ADVANCE(600); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 710: - if (lookahead == 't') ADVANCE(547); + if (lookahead == 't') ADVANCE(601); END_STATE(); case 711: - if (lookahead == 't') ADVANCE(628); + if (lookahead == 't') ADVANCE(548); END_STATE(); case 712: if (lookahead == 't') ADVANCE(629); END_STATE(); case 713: - if (lookahead == 't') ADVANCE(635); + if (lookahead == 't') ADVANCE(630); END_STATE(); case 714: - if (lookahead == 't') ADVANCE(550); + if (lookahead == 't') ADVANCE(636); END_STATE(); case 715: - if (lookahead == 't') ADVANCE(633); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 716: if (lookahead == 't') ADVANCE(634); END_STATE(); case 717: - if (lookahead == 't') ADVANCE(620); + if (lookahead == 't') ADVANCE(635); END_STATE(); case 718: if (lookahead == 't') ADVANCE(621); END_STATE(); case 719: - if (lookahead == 't') ADVANCE(717); + if (lookahead == 't') ADVANCE(622); END_STATE(); case 720: - if (lookahead == 't') ADVANCE(700); + if (lookahead == 't') ADVANCE(718); END_STATE(); case 721: - if (lookahead == 'u') ADVANCE(733); - if (lookahead == 'x') ADVANCE(771); - if (lookahead != 0) ADVANCE(2021); + if (lookahead == 't') ADVANCE(701); END_STATE(); case 722: - if (lookahead == 'u') ADVANCE(608); + if (lookahead == 'u') ADVANCE(734); + if (lookahead == 'x') ADVANCE(772); + if (lookahead != 0) ADVANCE(2022); END_STATE(); case 723: - if (lookahead == 'u') ADVANCE(608); - if (lookahead == 'y') ADVANCE(1640); + if (lookahead == 'u') ADVANCE(609); END_STATE(); case 724: - if (lookahead == 'u') ADVANCE(654); + if (lookahead == 'u') ADVANCE(609); + if (lookahead == 'y') ADVANCE(1641); END_STATE(); case 725: - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'x') ADVANCE(772); - if (lookahead != 0) ADVANCE(2011); + if (lookahead == 'u') ADVANCE(655); END_STATE(); case 726: - if (lookahead == 'w') ADVANCE(1677); + if (lookahead == 'u') ADVANCE(735); + if (lookahead == 'x') ADVANCE(773); + if (lookahead != 0) ADVANCE(2012); END_STATE(); case 727: - if (lookahead == 'w') ADVANCE(641); + if (lookahead == 'w') ADVANCE(1678); END_STATE(); case 728: if (lookahead == 'w') ADVANCE(642); @@ -36363,8028 +36387,8003 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(643); END_STATE(); case 730: - if (lookahead == 'x') ADVANCE(718); + if (lookahead == 'w') ADVANCE(644); END_STATE(); case 731: - if (lookahead == 'y') ADVANCE(1969); + if (lookahead == 'x') ADVANCE(719); END_STATE(); case 732: - if (lookahead == 'y') ADVANCE(678); + if (lookahead == 'y') ADVANCE(1970); END_STATE(); case 733: - if (lookahead == '{') ADVANCE(768); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(766); + if (lookahead == 'y') ADVANCE(679); END_STATE(); case 734: - if (lookahead == '{') ADVANCE(770); + if (lookahead == '{') ADVANCE(769); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(773); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(767); END_STATE(); case 735: - if (lookahead == '}') ADVANCE(2021); + if (lookahead == '{') ADVANCE(771); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(774); END_STATE(); case 736: - if (lookahead == '}') ADVANCE(2011); + if (lookahead == '}') ADVANCE(2022); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(736); END_STATE(); case 737: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == '}') ADVANCE(2012); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(737); END_STATE(); case 738: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 739: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1963); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 740: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1960); + lookahead == 'f') ADVANCE(1964); END_STATE(); case 741: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(748); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1961); END_STATE(); case 742: if (lookahead == 'I' || lookahead == 'i') ADVANCE(749); END_STATE(); case 743: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(739); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(750); END_STATE(); case 744: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(741); + lookahead == 'n') ADVANCE(740); END_STATE(); case 745: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1964); + lookahead == 'n') ADVANCE(742); END_STATE(); case 746: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + lookahead == 'n') ADVANCE(1965); END_STATE(); case 747: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(742); + lookahead == 'n') ADVANCE(741); END_STATE(); case 748: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(750); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(743); END_STATE(); case 749: if (lookahead == 'T' || lookahead == 't') ADVANCE(751); END_STATE(); case 750: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1961); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(752); END_STATE(); case 751: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1956); + lookahead == 'y') ADVANCE(1962); END_STATE(); case 752: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1989); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1957); END_STATE(); case 753: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1990); END_STATE(); case 754: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); END_STATE(); case 755: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1986); END_STATE(); case 756: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1985); END_STATE(); case 757: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1999); END_STATE(); case 758: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1990); END_STATE(); case 759: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 760: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(753); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1998); END_STATE(); case 761: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(754); END_STATE(); case 762: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(758); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(755); END_STATE(); case 763: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(759); END_STATE(); case 764: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(760); END_STATE(); case 765: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(764); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); END_STATE(); case 766: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(765); END_STATE(); case 767: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2021); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(772); END_STATE(); case 768: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2022); END_STATE(); case 769: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2011); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(736); END_STATE(); case 770: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(736); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2012); END_STATE(); case 771: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(767); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(737); END_STATE(); case 772: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(768); END_STATE(); case 773: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(772); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(770); END_STATE(); case 774: - if (eof) ADVANCE(962); - ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2358, - 'N', 2355, - '[', 1503, - '^', 2059, - '_', 2264, - '`', 585, - 'a', 2293, - 'b', 2290, - 'c', 2311, - 'd', 2276, - 'e', 2309, - 'f', 2272, - 'h', 2285, - 'i', 2259, - 'l', 2278, - 'm', 2274, - 'n', 2328, - 'o', 2335, - 'r', 2279, - 's', 2312, - 't', 2334, - 'u', 2345, - 'w', 2283, - 'x', 2330, - '{', 1618, - '}', 1619, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(773); END_STATE(); case 775: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2358, - 'N', 2355, - '[', 1503, - '^', 2059, - '_', 2264, - '`', 585, - 'a', 2292, - 'b', 2290, - 'c', 2311, - 'd', 2276, - 'e', 2309, - 'f', 2272, - 'h', 2285, - 'i', 2259, - 'l', 2278, - 'm', 2274, - 'n', 2328, - 'o', 2335, - 'r', 2279, - 's', 2312, - 't', 2334, - 'u', 2345, - 'w', 2283, - 'x', 2330, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2359, + 'N', 2356, + '[', 1504, + '^', 2060, + '_', 2266, + '`', 586, + 'a', 2294, + 'b', 2291, + 'c', 2312, + 'd', 2277, + 'e', 2310, + 'f', 2273, + 'h', 2286, + 'i', 2260, + 'l', 2279, + 'm', 2275, + 'n', 2329, + 'o', 2336, + 'r', 2280, + 's', 2313, + 't', 2335, + 'u', 2346, + 'w', 2284, + 'x', 2331, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + lookahead == ' ') SKIP(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 776: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2361, - 'N', 2357, - '[', 1503, - '_', 2265, - '`', 585, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'f', 2271, - 'i', 2262, - 'm', 2320, - 'n', 2326, - 'o', 2337, - 's', 2349, - 't', 2340, - 'x', 2316, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2359, + 'N', 2356, + '[', 1504, + '^', 2060, + '_', 2266, + '`', 586, + 'a', 2293, + 'b', 2291, + 'c', 2312, + 'd', 2277, + 'e', 2310, + 'f', 2273, + 'h', 2286, + 'i', 2260, + 'l', 2279, + 'm', 2275, + 'n', 2329, + 'o', 2336, + 'r', 2280, + 's', 2313, + 't', 2335, + 'u', 2346, + 'w', 2284, + 'x', 2331, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(819); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && - lookahead != ']') ADVANCE(2249); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 777: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, + '\n', 1476, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, '0', 1866, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - 'I', 2359, - 'N', 2354, - '[', 1503, - '_', 2263, - '`', 585, - 'a', 2297, - 'b', 2286, - 'e', 2252, - 'f', 2269, - 'i', 2260, - 'm', 2319, - 'n', 2332, - 'o', 2250, - 's', 2346, - 't', 2338, - 'x', 2314, - '{', 1618, - '|', 1509, - '}', 1619, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2362, + 'N', 2358, + '[', 1504, + '_', 2267, + '`', 586, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'f', 2272, + 'i', 2263, + 'm', 2320, + 'n', 2326, + 'o', 2338, + 's', 2349, + 't', 2341, + 'x', 2317, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(852); + lookahead == ' ') SKIP(820); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - lookahead != ']') ADVANCE(2249); + lookahead != ']') ADVANCE(2250); END_STATE(); case 778: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, + '\n', 1476, + '!', 2256, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1867, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + 'I', 2360, + 'N', 2355, + '[', 1504, + '_', 2264, + '`', 586, 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, - 'm', 2320, - 'n', 2329, - 'o', 2337, - 's', 2349, - 'x', 2316, - '|', 1509, - '}', 1619, + 'b', 2287, + 'e', 2253, + 'f', 2270, + 'i', 2261, + 'm', 2319, + 'n', 2333, + 'o', 2251, + 's', 2347, + 't', 2339, + 'x', 2315, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2249); + lookahead != ']') ADVANCE(2250); END_STATE(); case 779: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2255, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 2257, - '>', 1534, - '_', 2265, - 'a', 2298, - 'b', 2289, - 'e', 2305, - 'i', 2300, + '\n', 1476, + '!', 2256, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, 'm', 2320, - 'n', 2329, - 'o', 2337, + 'n', 2330, + 'o', 2338, 's', 2349, - 'x', 2316, - '|', 1509, - '}', 1619, + 'x', 2317, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(829); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2249); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2250); END_STATE(); case 780: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ')', 1508, + '\n', 1476, + '!', 2256, + '#', 3585, + ')', 1509, '*', 1686, - '+', 1729, - ',', 1504, - '-', 1552, - '.', 1632, + '+', 1731, + '-', 1545, + '.', 1633, '/', 1711, - '0', 1936, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '|', 1509, - '}', 1619, + ';', 995, + '<', 1759, + '=', 2258, + '>', 1535, + '_', 2267, + 'a', 2299, + 'b', 2290, + 'e', 2306, + 'i', 2301, + 'm', 2320, + 'n', 2330, + 'o', 2338, + 's', 2349, + 'x', 2317, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(781); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(830); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && - (lookahead < 'A' || '[' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2057); + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2250); END_STATE(); case 781: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1511, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1686, - '+', 1729, - ',', 1504, - '-', 1552, - '.', 1627, - '/', 1711, - '0', 1936, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - 'I', 1234, - 'N', 1228, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1038, - 'd', 1051, - 'e', 1123, - 'f', 1146, - 'h', 1099, - 'i', 1020, - 'l', 1052, - 'm', 1027, - 'n', 1066, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1175, - 'u', 1186, - 'w', 1096, - 'x', 1155, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1512, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1687, + '+', 1730, + ',', 1505, + '-', 1553, + '.', 1633, + '/', 1712, + '0', 1937, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(781); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(782); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && (lookahead < 'A' || '[' < lookahead) && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(2057); + (lookahead < '_' || '}' < lookahead)) ADVANCE(2058); END_STATE(); case 782: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, + '\n', 1476, + '!', 2037, + '"', 2007, + '#', 3585, '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1687, '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3263, - '`', 585, - 'a', 3318, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3188, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + ',', 1505, + '-', 1553, + '.', 1628, + '/', 1712, + '0', 1937, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + 'I', 1235, + 'N', 1229, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1039, + 'd', 1052, + 'e', 1124, + 'f', 1147, + 'h', 1100, + 'i', 1021, + 'l', 1053, + 'm', 1028, + 'n', 1067, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1176, + 'u', 1187, + 'w', 1097, + 'x', 1156, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(782); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < 'A' || '[' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(2058); END_STATE(); case 783: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3318, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3188, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3265, + '`', 586, + 'a', 3319, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3189, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 784: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3318, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3211, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3319, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3189, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 785: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3318, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3211, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3319, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3212, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 786: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3263, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3188, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3319, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3212, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(816); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 787: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3264, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, - 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3265, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3189, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 788: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3317, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3266, + '`', 586, + 'a', 3322, 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3188, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + 'd', 3280, + 'e', 3229, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, + 'n', 3337, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(816); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 789: - if (eof) ADVANCE(962); - ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3211, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(816); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); - END_STATE(); - case 790: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, - 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3189, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); - case 791: - if (eof) ADVANCE(962); + case 790: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, - 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3212, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); - case 792: - if (eof) ADVANCE(962); + case 791: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1866, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3221, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, '_', 3262, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3195, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3197, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, + 'n', 3337, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(851); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); - case 793: - if (eof) ADVANCE(962); + case 792: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, '0', 3269, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3221, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3195, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3197, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, + 'n', 3337, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(851); + lookahead == ' ') SKIP(818); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); + END_STATE(); + case 793: + if (eof) ADVANCE(963); + ADVANCE_MAP( + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1867, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3222, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3263, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3196, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3198, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if (lookahead != 0 && + lookahead != ']') ADVANCE(3188); END_STATE(); case 794: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 3269, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3225, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3199, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3197, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3270, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3222, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3196, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3198, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(851); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + lookahead == ' ') SKIP(852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 795: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 3270, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3226, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3317, - 'b', 3312, - 'c', 3328, - 'd', 3284, - 'e', 3211, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3254, - 'k', 3216, - 'l', 3288, - 'm', 3209, - 'n', 3338, - 'o', 3346, - 'p', 3216, - 'r', 3289, - 's', 3299, - 't', 3213, - 'u', 3357, - 'w', 3305, - 'x', 3340, - '{', 1618, - '}', 1619, - 0xb5, 3353, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, + 'a', 3321, + 'b', 3309, + 'd', 3277, + 'e', 3200, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3198, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(816); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 796: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3268, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'I', 3366, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'i', 3257, - 'k', 3233, - 'm', 3235, - 'n', 3337, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3232, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3269, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3318, + 'b', 3313, + 'c', 3329, + 'd', 3285, + 'e', 3212, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3255, + 'k', 3217, + 'l', 3289, + 'm', 3210, + 'n', 3339, + 'o', 3347, + 'p', 3217, + 'r', 3290, + 's', 3300, + 't', 3214, + 'u', 3358, + 'w', 3306, + 'x', 3341, + '{', 1619, + '}', 1620, 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 797: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, '0', 3269, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3225, - 'G', 3225, - 'I', 3364, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'a', 3320, - 'b', 3308, - 'd', 3276, - 'e', 3199, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'i', 3255, - 'k', 3224, - 'm', 3226, - 'n', 3342, - 'o', 3197, - 'p', 3224, - 's', 3292, - 't', 3223, - 'u', 3354, - 'w', 3316, - 'x', 3329, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'I', 3367, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'i', 3258, + 'k', 3234, + 'm', 3236, + 'n', 3337, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3233, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(851); + lookahead == ' ') SKIP(818); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 798: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, + '\n', 1476, + '!', 3204, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3270, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3226, + 'G', 3226, + 'I', 3365, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + 'b', 3309, + 'd', 3277, + 'e', 3200, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'i', 3256, + 'k', 3225, + 'm', 3227, + 'n', 3343, + 'o', 3198, + 'p', 3225, + 's', 3293, + 't', 3224, + 'u', 3355, + 'w', 3317, + 'x', 3330, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(852); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 799: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(824); + lookahead == ' ') SKIP(825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 800: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(824); + lookahead == ' ') SKIP(825); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 801: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(824); + lookahead == ' ') SKIP(825); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 802: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(828); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(825); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 803: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3228, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(828); + lookahead == ' ') SKIP(829); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 804: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3229, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(828); + lookahead == ' ') SKIP(829); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 805: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3203, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3205, - '>', 1534, - 'B', 3187, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'a', 3321, - 'b', 3311, - 'd', 3279, - 'e', 3231, - 'g', 3233, - 'h', 3348, - 'i', 3323, - 'k', 3233, - 'm', 3235, - 'n', 3339, - 'o', 3349, - 'p', 3233, - 's', 3294, - 't', 3233, - 'u', 3354, - 'w', 3316, - 'x', 3331, - '|', 1509, - '}', 1619, - 0xb5, 3354, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(828); + lookahead == ' ') SKIP(829); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 806: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 1011, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 3204, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3206, + '>', 1535, + 'B', 3188, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'a', 3322, + 'b', 3312, + 'd', 3280, + 'e', 3232, + 'g', 3234, + 'h', 3349, + 'i', 3324, + 'k', 3234, + 'm', 3236, + 'n', 3340, + 'o', 3350, + 'p', 3234, + 's', 3295, + 't', 3234, + 'u', 3355, + 'w', 3317, + 'x', 3332, + '|', 1510, + '}', 1620, + 0xb5, 3355, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(809); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(829); + if (lookahead != 0 && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 807: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1238, - 'E', 996, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 995, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 1012, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, + 'n', 1153, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, + 'w', 1089, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 808: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 1865, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1238, - 'E', 996, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 995, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1239, + 'E', 997, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 996, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, + 'n', 1153, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, + 'w', 1089, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 809: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 1011, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 1866, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1239, + 'E', 997, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 996, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, + 'n', 1153, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, + 'w', 1089, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(809); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(811); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 810: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 1011, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 1012, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, + 'n', 1153, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, + 'w', 1089, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(810); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 811: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1115, - 'b', 1104, - 'c', 1141, - 'd', 1051, - 'e', 1136, - 'f', 1028, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 1012, + 'f', 1029, + 'g', 1017, 'h', 1099, - 'i', 1020, - 'l', 1053, - 'm', 1032, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, 'n', 1153, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1162, - 'u', 1186, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, 'w', 1089, - 'x', 1155, - '{', 1618, - '}', 1619, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 812: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1931, - ':', 1500, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1141, - 'd', 1051, - 'e', 1136, - 'f', 1028, - 'h', 1099, - 'i', 1020, - 'l', 1053, - 'm', 1032, - 'n', 1153, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1162, - 'u', 1186, - 'w', 1089, - 'x', 1155, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1116, + 'b', 1105, + 'c', 1142, + 'd', 1052, + 'e', 1137, + 'f', 1029, + 'h', 1100, + 'i', 1021, + 'l', 1054, + 'm', 1033, + 'n', 1154, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1163, + 'u', 1187, + 'w', 1090, + 'x', 1156, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(814); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 813: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 661, - 'f', 589, - 'i', 578, - 'm', 670, - 'n', 672, - 'o', 684, - 's', 708, - 't', 688, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1932, + ':', 1501, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1142, + 'd', 1052, + 'e', 1137, + 'f', 1029, + 'h', 1100, + 'i', 1021, + 'l', 1054, + 'm', 1033, + 'n', 1154, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1163, + 'u', 1187, + 'w', 1090, + 'x', 1156, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(815); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 814: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ':', 1500, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1141, - 'd', 1051, - 'e', 1136, - 'f', 1028, - 'h', 1099, - 'i', 1020, - 'l', 1053, - 'm', 1032, - 'n', 1153, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1162, - 'u', 1186, - 'w', 1089, - 'x', 1155, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'I', 747, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 662, + 'f', 590, + 'i', 579, + 'm', 671, + 'n', 673, + 'o', 685, + 's', 709, + 't', 689, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(814); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(816); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 815: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 661, - 'f', 589, - 'i', 578, - 'm', 670, - 'n', 672, - 'o', 684, - 's', 708, - 't', 688, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1932, + ':', 1501, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1142, + 'd', 1052, + 'e', 1137, + 'f', 1029, + 'h', 1100, + 'i', 1021, + 'l', 1054, + 'm', 1033, + 'n', 1154, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1163, + 'u', 1187, + 'w', 1090, + 'x', 1156, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(815); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 816: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1141, - 'd', 1034, - 'e', 1011, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1020, - 'k', 1016, - 'l', 1053, - 'm', 1009, - 'n', 1152, - 'o', 1166, - 'p', 1016, - 'r', 1054, - 's', 1071, - 't', 1013, - 'u', 1186, - 'w', 1088, - 'x', 1155, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'I', 747, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 662, + 'f', 590, + 'i', 579, + 'm', 671, + 'n', 673, + 'o', 685, + 's', 709, + 't', 689, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(816); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 817: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'I', 746, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'f', 589, - 'g', 573, - 'h', 683, - 'i', 578, - 'k', 573, - 'm', 575, - 'n', 671, - 'o', 684, - 'p', 573, - 's', 611, - 't', 572, - 'u', 692, - 'w', 644, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1142, + 'd', 1035, + 'e', 1012, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1021, + 'k', 1017, + 'l', 1054, + 'm', 1010, + 'n', 1153, + 'o', 1167, + 'p', 1017, + 'r', 1055, + 's', 1072, + 't', 1014, + 'u', 1187, + 'w', 1089, + 'x', 1156, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 818: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1114, - 'b', 1104, - 'c', 1141, - 'd', 1051, - 'e', 1136, - 'f', 1028, - 'h', 1099, - 'i', 1020, - 'l', 1053, - 'm', 1032, - 'n', 1153, - 'o', 1166, - 'r', 1054, - 's', 1143, - 't', 1162, - 'u', 1186, - 'w', 1089, - 'x', 1155, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'I', 747, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'f', 590, + 'g', 574, + 'h', 684, + 'i', 579, + 'k', 574, + 'm', 576, + 'n', 672, + 'o', 685, + 'p', 574, + 's', 612, + 't', 573, + 'u', 693, + 'w', 645, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 819: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1931, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'I', 746, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'a', 657, - 'b', 636, - 'e', 661, - 'f', 589, - 'i', 578, - 'm', 670, - 'n', 672, - 'o', 684, - 's', 708, - 't', 688, - 'x', 665, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1115, + 'b', 1105, + 'c', 1142, + 'd', 1052, + 'e', 1137, + 'f', 1029, + 'h', 1100, + 'i', 1021, + 'l', 1054, + 'm', 1033, + 'n', 1154, + 'o', 1167, + 'r', 1055, + 's', 1144, + 't', 1163, + 'u', 1187, + 'w', 1090, + 'x', 1156, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(819); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 820: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, + '\n', 1476, + '!', 560, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, '*', 1686, - '+', 1729, - '-', 1551, - '.', 1632, + '+', 1731, + '-', 1548, + '.', 1628, '/', 1711, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - '?', 1699, - 'E', 581, + '0', 1932, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'I', 747, + 'N', 738, + '[', 1504, '_', 584, - 'a', 657, - 'b', 636, - 'e', 580, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '|', 1509, - '}', 1619, + '`', 586, + 'a', 658, + 'b', 637, + 'e', 662, + 'f', 590, + 'i', 579, + 'm', 671, + 'n', 673, + 'o', 685, + 's', 709, + 't', 689, + 'x', 666, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(820); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 821: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1686, - '+', 1729, - '-', 1551, - '/', 1711, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - '?', 1699, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1687, + '+', 1730, + '-', 1552, + '.', 1633, + '/', 1712, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + '?', 1700, + 'E', 582, + '_', 585, + 'a', 658, + 'b', 637, + 'e', 581, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(821); + lookahead == ' ') SKIP(822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 822: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1687, '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '_', 584, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 565, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, + '-', 1552, + '/', 1712, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + '?', 1700, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + 'o', 685, + 's', 709, + 'x', 666, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(822); END_STATE(); case 823: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '_', 585, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 566, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(823); + lookahead == ' ') SKIP(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 824: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(824); END_STATE(); case 825: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(825); END_STATE(); case 826: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ':', 1500, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - '_', 584, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 565, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + 'o', 685, + 's', 709, + 'x', 666, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(827); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(826); END_STATE(); case 827: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - ':', 1500, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - '?', 1699, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + ':', 1501, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + '_', 585, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 566, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(827); + lookahead == ' ') SKIP(828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 828: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'B', 1965, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'a', 657, - 'b', 1968, - 'd', 587, - 'e', 570, - 'g', 573, - 'h', 683, - 'i', 658, - 'k', 573, - 'm', 575, - 'n', 677, - 'o', 684, - 'p', 573, - 's', 611, - 't', 573, - 'u', 692, - 'w', 644, - 'x', 665, - '|', 1509, - '}', 1619, - 0xb5, 692, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + ':', 1501, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + '?', 1700, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(828); END_STATE(); case 829: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 559, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - ';', 994, - '<', 1758, - '=', 561, - '>', 1534, - 'a', 657, - 'b', 636, - 'e', 661, - 'i', 658, - 'm', 670, - 'n', 676, - 'o', 684, - 's', 708, - 'x', 665, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'B', 1966, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'a', 658, + 'b', 1969, + 'd', 588, + 'e', 571, + 'g', 574, + 'h', 684, + 'i', 659, + 'k', 574, + 'm', 576, + 'n', 678, + 'o', 685, + 'p', 574, + 's', 612, + 't', 574, + 'u', 693, + 'w', 645, + 'x', 666, + '|', 1510, + '}', 1620, + 0xb5, 693, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(829); END_STATE(); case 830: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1632, - '/', 1710, - '0', 2956, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3054, - 'N', 3051, - '[', 1503, - '^', 2059, - '_', 2947, - '`', 585, - 'a', 2989, - 'b', 2986, - 'c', 3007, - 'd', 2972, - 'e', 3005, - 'f', 2968, - 'h', 2981, - 'i', 2943, - 'l', 2974, - 'm', 2970, - 'n', 3024, - 'o', 3031, - 'r', 2975, - 's', 3008, - 't', 3030, - 'u', 3041, - 'w', 2979, - 'x', 3026, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 560, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '/', 1711, + ';', 995, + '<', 1759, + '=', 562, + '>', 1535, + 'a', 658, + 'b', 637, + 'e', 662, + 'i', 659, + 'm', 671, + 'n', 677, + 'o', 685, + 's', 709, + 'x', 666, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(830); END_STATE(); case 831: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 2956, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3054, - 'N', 3051, - '[', 1503, - '^', 2059, - '_', 2947, - '`', 585, - 'a', 2988, - 'b', 2986, - 'c', 3007, - 'd', 2972, - 'e', 3005, - 'f', 2968, - 'h', 2981, - 'i', 2943, - 'l', 2974, - 'm', 2970, - 'n', 3024, - 'o', 3031, - 'r', 2975, - 's', 3008, - 't', 3030, - 'u', 3041, - 'w', 2979, - 'x', 3026, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1633, + '/', 1711, + '0', 2957, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3055, + 'N', 3052, + '[', 1504, + '^', 2060, + '_', 2948, + '`', 586, + 'a', 2990, + 'b', 2987, + 'c', 3008, + 'd', 2973, + 'e', 3006, + 'f', 2969, + 'h', 2982, + 'i', 2944, + 'l', 2975, + 'm', 2971, + 'n', 3025, + 'o', 3032, + 'r', 2976, + 's', 3009, + 't', 3031, + 'u', 3042, + 'w', 2980, + 'x', 3027, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + lookahead == ' ') SKIP(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 832: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 2956, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3057, - 'N', 3053, - '[', 1503, - '_', 2949, - '`', 585, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'f', 2967, - 'i', 2946, - 'm', 3016, - 'n', 3022, - 'o', 3033, - 's', 3045, - 't', 3036, - 'x', 3012, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 2957, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3055, + 'N', 3052, + '[', 1504, + '^', 2060, + '_', 2948, + '`', 586, + 'a', 2989, + 'b', 2987, + 'c', 3008, + 'd', 2973, + 'e', 3006, + 'f', 2969, + 'h', 2982, + 'i', 2944, + 'l', 2975, + 'm', 2971, + 'n', 3025, + 'o', 3032, + 'r', 2976, + 's', 3009, + 't', 3031, + 'u', 3042, + 'w', 2980, + 'x', 3027, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(819); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); if (lookahead != 0 && - lookahead != ']') ADVANCE(2937); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 833: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, + '\n', 1476, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, '0', 2957, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - 'I', 3055, - 'N', 3050, - '[', 1503, - '_', 2953, - '`', 585, - 'a', 2993, - 'b', 2982, - 'e', 2940, - 'f', 2965, - 'i', 2944, - 'm', 3015, - 'n', 3028, - 'o', 2938, - 's', 3042, - 't', 3034, - 'x', 3010, - '{', 1618, - '|', 1509, - '}', 1619, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3058, + 'N', 3054, + '[', 1504, + '_', 2950, + '`', 586, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'f', 2968, + 'i', 2947, + 'm', 3016, + 'n', 3022, + 'o', 3034, + 's', 3045, + 't', 3037, + 'x', 3013, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(852); + lookahead == ' ') SKIP(820); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); if (lookahead != 0 && - lookahead != ']') ADVANCE(2937); + lookahead != ']') ADVANCE(2938); END_STATE(); case 834: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, + '\n', 1476, + '!', 2943, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 2958, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'I', 3056, + 'N', 3051, + '[', 1504, + '_', 2955, + '`', 586, 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, - 'm', 3016, - 'n', 3025, - 'o', 3033, - 's', 3045, - 'x', 3012, - '|', 1509, - '}', 1619, + 'b', 2983, + 'e', 2941, + 'f', 2966, + 'i', 2945, + 'm', 3015, + 'n', 3029, + 'o', 2939, + 's', 3043, + 't', 3035, + 'x', 3011, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(825); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2962); if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); + lookahead != ']') ADVANCE(2938); END_STATE(); case 835: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2942, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '.', 1632, - '/', 1710, - ';', 994, - '<', 1531, - '=', 1851, - '>', 1534, - 'a', 2994, - 'b', 2985, - 'e', 3001, - 'i', 2996, + '\n', 1476, + '!', 2943, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, 'm', 3016, - 'n', 3025, - 'o', 3033, + 'n', 3026, + 'o', 3034, 's', 3045, - 'x', 3012, - '|', 1509, - '}', 1619, + 'x', 3013, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(829); + lookahead == ' ') SKIP(826); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 836: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1555, - '.', 1627, - '/', 1710, - '0', 3083, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3181, - 'N', 3178, - '[', 1503, - '^', 2059, - '_', 3074, - '`', 585, - 'a', 3116, - 'b', 3113, - 'c', 3134, - 'd', 3099, - 'e', 3132, - 'f', 3095, - 'h', 3108, - 'i', 3070, - 'l', 3101, - 'm', 3097, - 'n', 3151, - 'o', 3158, - 'r', 3102, - 's', 3135, - 't', 3157, - 'u', 3168, - 'w', 3106, - 'x', 3153, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 2943, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1545, + '.', 1633, + '/', 1711, + ';', 995, + '<', 1532, + '=', 1852, + '>', 1535, + 'a', 2995, + 'b', 2986, + 'e', 3002, + 'i', 2997, + 'm', 3016, + 'n', 3026, + 'o', 3034, + 's', 3045, + 'x', 3013, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + lookahead == ' ') SKIP(830); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3060); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 837: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3083, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3181, - 'N', 3178, - '[', 1503, - '^', 2059, - '_', 3074, - '`', 585, - 'a', 3115, - 'b', 3113, - 'c', 3134, - 'd', 3099, - 'e', 3132, - 'f', 3095, - 'h', 3108, - 'i', 3070, - 'l', 3101, - 'm', 3097, - 'n', 3151, - 'o', 3158, - 'r', 3102, - 's', 3135, - 't', 3157, - 'u', 3168, - 'w', 3106, - 'x', 3153, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1556, + '.', 1628, + '/', 1711, + '0', 3084, + ';', 995, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3182, + 'N', 3179, + '[', 1504, + '^', 2060, + '_', 3075, + '`', 586, + 'a', 3117, + 'b', 3114, + 'c', 3135, + 'd', 3100, + 'e', 3133, + 'f', 3096, + 'h', 3109, + 'i', 3071, + 'l', 3102, + 'm', 3098, + 'n', 3152, + 'o', 3159, + 'r', 3103, + 's', 3136, + 't', 3158, + 'u', 3169, + 'w', 3107, + 'x', 3154, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + lookahead == ' ') SKIP(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3060); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 838: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 3083, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3184, - 'N', 3180, - '[', 1503, - '_', 3076, - '`', 585, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'f', 3094, - 'i', 3073, - 'm', 3143, - 'n', 3149, - 'o', 3160, - 's', 3172, - 't', 3163, - 'x', 3139, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3084, + ';', 995, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3182, + 'N', 3179, + '[', 1504, + '^', 2060, + '_', 3075, + '`', 586, + 'a', 3116, + 'b', 3114, + 'c', 3135, + 'd', 3100, + 'e', 3133, + 'f', 3096, + 'h', 3109, + 'i', 3071, + 'l', 3102, + 'm', 3098, + 'n', 3152, + 'o', 3159, + 'r', 3103, + 's', 3136, + 't', 3158, + 'u', 3169, + 'w', 3107, + 'x', 3154, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(819); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && - lookahead != ']') ADVANCE(3060); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 839: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, + '\n', 1476, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, '0', 3084, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, - 'I', 3182, - 'N', 3177, - '[', 1503, - '_', 3080, - '`', 585, - 'a', 3120, - 'b', 3109, - 'e', 3063, - 'f', 3092, - 'i', 3071, - 'm', 3142, - 'n', 3155, - 'o', 3061, - 's', 3169, - 't', 3161, - 'x', 3137, - '{', 1618, - '|', 1509, - '}', 1619, + ';', 995, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3185, + 'N', 3181, + '[', 1504, + '_', 3077, + '`', 586, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'f', 3095, + 'i', 3074, + 'm', 3143, + 'n', 3149, + 'o', 3161, + 's', 3172, + 't', 3164, + 'x', 3140, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(852); + lookahead == ' ') SKIP(820); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); if (lookahead != 0 && - lookahead != ']') ADVANCE(3060); + lookahead != ']') ADVANCE(3061); END_STATE(); case 840: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1545, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, + '\n', 1476, + '!', 3067, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 3085, + ';', 995, + '<', 1759, + '=', 3069, + '>', 1535, + 'I', 3183, + 'N', 3178, + '[', 1504, + '_', 3082, + '`', 586, 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, - 'm', 3143, - 'n', 3152, - 'o', 3160, - 's', 3172, - 'x', 3139, - '|', 1509, - '}', 1619, + 'b', 3110, + 'e', 3064, + 'f', 3093, + 'i', 3072, + 'm', 3142, + 'n', 3156, + 'o', 3062, + 's', 3170, + 't', 3162, + 'x', 3138, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(825); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3089); if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3060); + lookahead != ']') ADVANCE(3061); END_STATE(); case 841: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 3066, - '#', 3584, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1544, - '/', 1710, - ';', 994, - '<', 1758, - '=', 3068, - '>', 1534, - 'a', 3121, - 'b', 3112, - 'e', 3128, - 'i', 3123, + '\n', 1476, + '!', 3067, + '#', 3585, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1546, + '/', 1711, + ';', 995, + '<', 1759, + '=', 3069, + '>', 1535, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, 'm', 3143, - 'n', 3152, - 'o', 3160, + 'n', 3153, + 'o', 3161, 's', 3172, - 'x', 3139, - '|', 1509, - '}', 1619, + 'x', 3140, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(829); + lookahead == ' ') SKIP(826); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3060); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 842: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1687, + '\n', 1476, + '!', 3067, + '#', 3585, + ')', 1509, + '*', 1686, '+', 1731, - '-', 1548, - '.', 1631, - '/', 1712, - '0', 2513, - ';', 994, + '-', 1545, + '/', 1711, + ';', 995, '<', 1759, - '=', 2494, + '=', 3069, '>', 1535, - 'I', 2908, - 'N', 2898, - '[', 1503, - '^', 2060, - '_', 2506, - '`', 585, - 'a', 2657, - 'b', 2626, - 'c', 2705, - 'd', 2561, - 'e', 2690, - 'f', 2518, - 'h', 2635, - 'i', 2502, - 'l', 2585, - 'm', 2529, - 'n', 2723, - 'o', 2740, - 'r', 2562, - 's', 2706, - 't', 2742, - 'u', 2792, - 'w', 2612, - 'x', 2721, - '{', 1618, - '}', 1619, + 'a', 3122, + 'b', 3113, + 'e', 3129, + 'i', 3124, + 'm', 3143, + 'n', 3153, + 'o', 3161, + 's', 3172, + 'x', 3140, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + lookahead == ' ') SKIP(830); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2936); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 843: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1687, - '+', 1731, - '-', 1548, - '.', 1631, - '/', 1712, - '0', 2513, - ';', 994, - '<', 1759, - '=', 2494, - '>', 1535, + '\n', 1476, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1549, + '.', 1632, + '/', 1713, + '0', 2514, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, 'I', 2909, 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'a', 2684, - 'b', 2633, - 'e', 2366, - 'f', 2523, + '[', 1504, + '^', 2061, + '_', 2507, + '`', 586, + 'a', 2658, + 'b', 2627, + 'c', 2706, + 'd', 2562, + 'e', 2691, + 'f', 2519, + 'h', 2636, 'i', 2503, - 'm', 2718, - 'n', 2715, - 'o', 2364, - 's', 2828, - 't', 2758, - 'x', 2717, - '{', 1618, - '|', 1510, - '}', 1619, + 'l', 2586, + 'm', 2530, + 'n', 2724, + 'o', 2741, + 'r', 2563, + 's', 2707, + 't', 2743, + 'u', 2793, + 'w', 2613, + 'x', 2722, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(852); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + lookahead == ' ') SKIP(819); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && - lookahead != ']') ADVANCE(2936); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); END_STATE(); case 844: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1687, - '+', 1731, - '-', 1548, - '.', 1631, - '/', 1712, - '0', 2513, - ';', 994, - '<', 1759, - '=', 2494, - '>', 1535, - 'I', 2909, - 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'f', 2523, - 'i', 2503, - 'm', 2718, - 'n', 2728, - 'o', 2757, - 's', 2828, - 't', 2758, - 'x', 2717, - '{', 1618, - '|', 1510, - '}', 1619, + '\n', 1476, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1549, + '.', 1632, + '/', 1713, + '0', 2514, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, + 'I', 2910, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'a', 2685, + 'b', 2634, + 'e', 2367, + 'f', 2524, + 'i', 2504, + 'm', 2719, + 'n', 2716, + 'o', 2365, + 's', 2829, + 't', 2759, + 'x', 2718, + '{', 1619, + '|', 1511, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(819); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && - lookahead != ']') ADVANCE(2936); + lookahead != ']') ADVANCE(2937); END_STATE(); case 845: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1687, - '+', 1731, - '-', 1556, - '.', 1631, - '/', 1712, - '0', 2513, - ';', 994, - '<', 1759, - '=', 2494, - '>', 1535, - 'I', 2908, - 'N', 2898, - '[', 1503, - '^', 2060, - '_', 2506, - '`', 585, - 'a', 2658, - 'b', 2626, - 'c', 2705, - 'd', 2561, - 'e', 2690, - 'f', 2518, - 'h', 2635, - 'i', 2502, - 'l', 2585, - 'm', 2529, - 'n', 2723, - 'o', 2740, - 'r', 2562, - 's', 2706, - 't', 2742, - 'u', 2792, - 'w', 2612, - 'x', 2721, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1549, + '.', 1632, + '/', 1713, + '0', 2514, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, + 'I', 2910, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'f', 2524, + 'i', 2504, + 'm', 2719, + 'n', 2729, + 'o', 2758, + 's', 2829, + 't', 2759, + 'x', 2718, + '{', 1619, + '|', 1511, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + lookahead == ' ') SKIP(820); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2936); + lookahead != ']') ADVANCE(2937); END_STATE(); case 846: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '#', 3592, - ')', 1508, - '*', 1687, - '+', 1731, - '-', 1549, - '/', 1712, - ';', 994, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '|', 1510, - '}', 1619, + '\n', 1476, + '!', 2493, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1557, + '.', 1632, + '/', 1713, + '0', 2514, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, + 'I', 2909, + 'N', 2899, + '[', 1504, + '^', 2061, + '_', 2507, + '`', 586, + 'a', 2659, + 'b', 2627, + 'c', 2706, + 'd', 2562, + 'e', 2691, + 'f', 2519, + 'h', 2636, + 'i', 2503, + 'l', 2586, + 'm', 2530, + 'n', 2724, + 'o', 2741, + 'r', 2563, + 's', 2707, + 't', 2743, + 'u', 2793, + 'w', 2613, + 'x', 2722, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(825); + lookahead == ' ') SKIP(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2936); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); END_STATE(); case 847: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2492, - '#', 3592, - ')', 1508, - '*', 1687, - '+', 1731, - '-', 1557, - '/', 1712, - ';', 994, - '<', 1759, - '=', 2494, - '>', 1535, - 'a', 2684, - 'b', 2633, - 'e', 2696, - 'i', 2688, - 'm', 2718, - 'n', 2716, - 'o', 2757, - 's', 2828, - 'x', 2717, - '|', 1510, - '}', 1619, + '\n', 1476, + '!', 2493, + '#', 3593, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1550, + '/', 1713, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '|', 1511, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(829); + lookahead == ' ') SKIP(826); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2936); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); END_STATE(); case 848: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1933, - ';', 994, - '<', 1758, - '=', 2135, - '>', 1534, - '?', 1699, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2083, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2079, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2493, + '#', 3593, + ')', 1509, + '*', 1688, + '+', 1732, + '-', 1558, + '/', 1713, + ';', 995, + '<', 1760, + '=', 2495, + '>', 1536, + 'a', 2685, + 'b', 2634, + 'e', 2697, + 'i', 2689, + 'm', 2719, + 'n', 2717, + 'o', 2758, + 's', 2829, + 'x', 2718, + '|', 1511, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(850); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(830); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); END_STATE(); case 849: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1632, - '/', 1710, - '0', 1933, - ';', 994, - '<', 1758, - '=', 2135, - '>', 1534, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2083, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2079, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1934, + ';', 995, + '<', 1759, + '=', 2136, + '>', 1535, + '?', 1700, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2084, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2080, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(852); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(851); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 850: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1933, - ';', 994, - '<', 1758, - '=', 2135, - '>', 1534, - '?', 1699, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2083, - 'f', 2155, - 'i', 2148, - 'm', 2190, - 'n', 2194, - 'o', 2079, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1633, + '/', 1711, + '0', 1934, + ';', 995, + '<', 1759, + '=', 2136, + '>', 1535, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2084, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2080, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(850); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 851: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1933, - ';', 994, - '<', 1758, - '=', 2135, - '>', 1534, - 'B', 1965, - 'E', 2145, - 'G', 2145, - 'I', 2229, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 2153, - '`', 585, - 'a', 2182, - 'b', 1966, - 'd', 2154, - 'e', 2081, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'i', 2148, - 'k', 2144, - 'm', 2146, - 'n', 2193, - 'o', 2079, - 'p', 2144, - 's', 2164, - 't', 2143, - 'u', 2206, - 'w', 2177, - 'x', 2188, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 2206, + '\n', 1476, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1934, + ';', 995, + '<', 1759, + '=', 2136, + '>', 1535, + '?', 1700, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2084, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2080, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(851); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 852: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '!', 2134, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1685, - '+', 1730, - '-', 1547, - '.', 1627, - '/', 1710, - '0', 1933, - ';', 994, - '<', 1758, - '=', 2135, - '>', 1534, - 'I', 2229, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'a', 2182, - 'b', 2173, - 'e', 2083, - 'f', 2155, - 'i', 2148, - 'm', 2190, + '\n', 1476, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1934, + ';', 995, + '<', 1759, + '=', 2136, + '>', 1535, + 'B', 1966, + 'E', 2146, + 'G', 2146, + 'I', 2230, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 2154, + '`', 586, + 'a', 2183, + 'b', 1967, + 'd', 2155, + 'e', 2082, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'i', 2149, + 'k', 2145, + 'm', 2147, 'n', 2194, - 'o', 2079, - 's', 2210, - 't', 2197, - 'x', 2188, - '{', 1618, - '|', 1509, - '}', 1619, + 'o', 2080, + 'p', 2145, + 's', 2165, + 't', 2144, + 'u', 2207, + 'w', 2178, + 'x', 2189, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 2207, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(852); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 853: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1931, - ';', 994, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '!', 2135, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1686, + '+', 1731, + '-', 1548, + '.', 1628, + '/', 1711, + '0', 1934, + ';', 995, + '<', 1759, + '=', 2136, + '>', 1535, + 'I', 2230, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'a', 2183, + 'b', 2174, + 'e', 2084, + 'f', 2156, + 'i', 2149, + 'm', 2191, + 'n', 2195, + 'o', 2080, + 's', 2211, + 't', 2198, + 'x', 2189, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(857); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(853); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (lookahead != 0 && + lookahead != ']') ADVANCE(2249); END_STATE(); case 854: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - ';', 994, - 'I', 2358, - 'N', 2355, - '[', 1503, - '^', 2059, - '_', 2264, - '`', 585, - 'a', 2295, - 'b', 2342, - 'c', 2311, - 'd', 2276, - 'e', 2343, - 'f', 2272, - 'h', 2285, - 'i', 2281, - 'l', 2278, - 'm', 2273, - 'n', 2325, - 'o', 2353, - 'r', 2279, - 's', 2313, - 't', 2334, - 'u', 2345, - 'w', 2283, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1932, + ';', 995, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(858); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 855: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 2956, - ';', 994, - '<', 1530, - '=', 1849, - 'I', 3054, - 'N', 3051, - '[', 1503, - '^', 2059, - '_', 2947, - '`', 585, - 'a', 2991, - 'b', 3038, - 'c', 3007, - 'd', 2972, - 'e', 3039, - 'f', 2968, - 'h', 2981, - 'i', 2977, - 'l', 2974, - 'm', 2969, - 'n', 3021, - 'o', 3049, - 'r', 2975, - 's', 3009, - 't', 3030, - 'u', 3041, - 'w', 2979, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + ';', 995, + 'I', 2359, + 'N', 2356, + '[', 1504, + '^', 2060, + '_', 2266, + '`', 586, + 'a', 2296, + 'b', 2343, + 'c', 2312, + 'd', 2277, + 'e', 2344, + 'f', 2273, + 'h', 2286, + 'i', 2282, + 'l', 2279, + 'm', 2274, + 'n', 2325, + 'o', 2354, + 'r', 2280, + 's', 2314, + 't', 2335, + 'u', 2346, + 'w', 2284, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(858); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + lookahead == ' ') SKIP(859); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 856: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ';', 994, - '=', 975, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 2957, + ';', 995, + '<', 1531, + '=', 1850, + 'I', 3055, + 'N', 3052, + '[', 1504, + '^', 2060, + '_', 2948, + '`', 586, + 'a', 2992, + 'b', 3039, + 'c', 3008, + 'd', 2973, + 'e', 3040, + 'f', 2969, + 'h', 2982, + 'i', 2978, + 'l', 2975, + 'm', 2970, + 'n', 3021, + 'o', 3050, + 'r', 2976, + 's', 3010, + 't', 3031, + 'u', 3042, + 'w', 2980, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(856); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(859); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 857: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ';', 994, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ';', 995, + '=', 976, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(857); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 858: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ';', 994, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ';', 995, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(858); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 859: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1684, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 3083, - ';', 994, - 'I', 3181, - 'N', 3178, - '[', 1503, - '^', 2059, - '_', 3074, - '`', 585, - 'a', 3118, - 'b', 3165, - 'c', 3134, - 'd', 3099, - 'e', 3166, - 'f', 3095, - 'h', 3108, - 'i', 3104, - 'l', 3101, - 'm', 3096, - 'n', 3148, - 'o', 3176, - 'r', 3102, - 's', 3136, - 't', 3157, - 'u', 3168, - 'w', 3106, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ';', 995, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(858); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3060); + lookahead == ' ') SKIP(859); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 860: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1931, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1685, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 3084, + ';', 995, + 'I', 3182, + 'N', 3179, + '[', 1504, + '^', 2060, + '_', 3075, + '`', 586, + 'a', 3119, + 'b', 3166, + 'c', 3135, + 'd', 3100, + 'e', 3167, + 'f', 3096, + 'h', 3109, + 'i', 3105, + 'l', 3102, + 'm', 3097, + 'n', 3148, + 'o', 3177, + 'r', 3103, + 's', 3137, + 't', 3158, + 'u', 3169, + 'w', 3107, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(859); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 861: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1932, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 862: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 1865, - ';', 994, - 'I', 2358, - 'N', 2355, - '[', 1503, - '^', 2059, - '_', 2264, - '`', 585, - 'a', 2295, - 'b', 2342, - 'c', 2311, - 'd', 2276, - 'e', 2343, - 'f', 2272, - 'h', 2285, - 'i', 2281, - 'l', 2278, - 'm', 2273, - 'n', 2325, - 'o', 2353, - 'r', 2279, - 's', 2313, - 't', 2334, - 'u', 2345, - 'w', 2283, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 863: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1632, - '0', 2956, - ';', 994, - '<', 1530, - '=', 1849, - 'I', 3054, - 'N', 3051, - '[', 1503, - '^', 2059, - '_', 2947, - '`', 585, - 'a', 2991, - 'b', 3038, - 'c', 3007, - 'd', 2972, - 'e', 3039, - 'f', 2968, - 'h', 2981, - 'i', 2977, - 'l', 2974, - 'm', 2969, - 'n', 3021, - 'o', 3049, - 'r', 2975, - 's', 3009, - 't', 3030, - 'u', 3041, - 'w', 2979, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 1866, + ';', 995, + 'I', 2359, + 'N', 2356, + '[', 1504, + '^', 2060, + '_', 2266, + '`', 586, + 'a', 2296, + 'b', 2343, + 'c', 2312, + 'd', 2277, + 'e', 2344, + 'f', 2273, + 'h', 2286, + 'i', 2282, + 'l', 2279, + 'm', 2274, + 'n', 2325, + 'o', 2354, + 'r', 2280, + 's', 2314, + 't', 2335, + 'u', 2346, + 'w', 2284, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2960); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 864: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ':', 1500, - ';', 994, - 'E', 574, - 'G', 574, - 'I', 746, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'c', 586, - 'd', 588, - 'e', 569, - 'f', 589, - 'g', 573, - 'h', 683, - 'i', 625, - 'k', 573, - 'm', 568, - 'n', 667, - 'p', 573, - 's', 610, - 't', 571, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1633, + '0', 2957, + ';', 995, + '<', 1531, + '=', 1850, + 'I', 3055, + 'N', 3052, + '[', 1504, + '^', 2060, + '_', 2948, + '`', 586, + 'a', 2992, + 'b', 3039, + 'c', 3008, + 'd', 2973, + 'e', 3040, + 'f', 2969, + 'h', 2982, + 'i', 2978, + 'l', 2975, + 'm', 2970, + 'n', 3021, + 'o', 3050, + 'r', 2976, + 's', 3010, + 't', 3031, + 'u', 3042, + 'w', 2980, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(864); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2961); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 865: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ':', 1501, + ';', 995, + 'E', 575, + 'G', 575, + 'I', 747, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'c', 587, + 'd', 589, + 'e', 570, + 'f', 590, + 'g', 574, + 'h', 684, + 'i', 626, + 'k', 574, + 'm', 569, + 'n', 668, + 'p', 574, + 's', 611, + 't', 572, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(865); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 866: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ';', 994, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 867: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1865, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ';', 995, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 868: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 3083, - ';', 994, - 'I', 3181, - 'N', 3178, - '[', 1503, - '^', 2059, - '_', 3074, - '`', 585, - 'a', 3118, - 'b', 3165, - 'c', 3134, - 'd', 3099, - 'e', 3166, - 'f', 3095, - 'h', 3108, - 'i', 3104, - 'l', 3101, - 'm', 3096, - 'n', 3148, - 'o', 3176, - 'r', 3102, - 's', 3136, - 't', 3157, - 'u', 3168, - 'w', 3106, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1866, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3087); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3060); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 869: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1933, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 3084, + ';', 995, + 'I', 3182, + 'N', 3179, + '[', 1504, + '^', 2060, + '_', 3075, + '`', 586, + 'a', 3119, + 'b', 3166, + 'c', 3135, + 'd', 3100, + 'e', 3167, + 'f', 3096, + 'h', 3109, + 'i', 3105, + 'l', 3102, + 'm', 3097, + 'n', 3148, + 'o', 3177, + 'r', 3103, + 's', 3137, + 't', 3158, + 'u', 3169, + 'w', 3107, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3088); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 870: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1931, - ';', 994, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1934, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(894); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(870); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (lookahead != 0 && + lookahead != ']') ADVANCE(2249); END_STATE(); case 871: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1931, - ';', 994, - '?', 1699, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'E', 581, - 'e', 581, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1932, + ';', 995, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(895); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 872: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1931, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1932, + ';', 995, + '?', 1700, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'E', 582, + 'e', 582, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(896); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 873: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3263, - '`', 585, - 'a', 3319, - 'b', 3351, - 'c', 3328, - 'd', 3284, - 'e', 3190, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3303, - 'k', 3216, - 'l', 3288, - 'm', 3208, - 'n', 3336, - 'o', 3358, - 'p', 3216, - 'r', 3289, - 's', 3300, - 't', 3213, - 'u', 3357, - 'w', 3305, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1932, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(896); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 874: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3265, + '`', 586, + 'a', 3320, + 'b', 3352, + 'c', 3329, + 'd', 3285, + 'e', 3191, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3304, + 'k', 3217, + 'l', 3289, + 'm', 3209, + 'n', 3336, + 'o', 3359, + 'p', 3217, + 'r', 3290, + 's', 3301, + 't', 3214, + 'u', 3358, + 'w', 3306, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 875: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3264, - '`', 585, - 'd', 3279, - 'e', 3229, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 876: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'I', 2358, - 'N', 2355, - '[', 1503, - '^', 2059, - '_', 2264, - '`', 585, - 'a', 2294, - 'b', 2342, - 'c', 2311, - 'd', 2276, - 'e', 2343, - 'f', 2272, - 'h', 2285, - 'i', 2281, - 'l', 2278, - 'm', 2273, - 'n', 2325, - 'o', 2353, - 'r', 2279, - 's', 2313, - 't', 2334, - 'u', 2345, - 'w', 2283, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3266, + '`', 586, + 'd', 3280, + 'e', 3230, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2363); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); + lookahead != ']') ADVANCE(3188); END_STATE(); case 877: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'E', 581, - 'e', 581, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'I', 2359, + 'N', 2356, + '[', 1504, + '^', 2060, + '_', 2266, + '`', 586, + 'a', 2295, + 'b', 2343, + 'c', 2312, + 'd', 2277, + 'e', 2344, + 'f', 2273, + 'h', 2286, + 'i', 2282, + 'l', 2279, + 'm', 2274, + 'n', 2325, + 'o', 2354, + 'r', 2280, + 's', 2314, + 't', 2335, + 'u', 2346, + 'w', 2284, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2364); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(2250); END_STATE(); case 878: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1865, - ';', 994, - 'N', 2357, - '[', 1503, - '_', 2265, - '`', 585, - 'f', 2271, - 'n', 2317, - 't', 2340, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2361, - 'i', 2361, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'N', 738, + '[', 1504, + '_', 585, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'E', 582, + 'e', 582, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (lookahead != 0 && - lookahead != ']') ADVANCE(2249); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 879: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3268, - ';', 994, - 'B', 3368, - 'E', 3192, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3319, - 'b', 3351, - 'c', 3328, - 'd', 3284, - 'e', 3190, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3303, - 'k', 3216, - 'l', 3288, - 'm', 3208, - 'n', 3336, - 'o', 3358, - 'p', 3216, - 'r', 3289, - 's', 3300, - 't', 3213, - 'u', 3357, - 'w', 3305, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1866, + ';', 995, + 'N', 2358, + '[', 1504, + '_', 2267, + '`', 586, + 'f', 2272, + 'n', 2318, + 't', 2341, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2362, + 'i', 2362, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(896); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + lookahead != ']') ADVANCE(2250); END_STATE(); case 880: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3268, - ';', 994, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3319, - 'b', 3351, - 'c', 3328, - 'd', 3284, - 'e', 3214, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3303, - 'k', 3216, - 'l', 3288, - 'm', 3208, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3269, + ';', 995, + 'B', 3369, + 'E', 3193, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3320, + 'b', 3352, + 'c', 3329, + 'd', 3285, + 'e', 3191, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3304, + 'k', 3217, + 'l', 3289, + 'm', 3209, 'n', 3336, - 'o', 3358, - 'p', 3216, - 'r', 3289, - 's', 3300, - 't', 3213, - 'u', 3357, - 'w', 3305, - '{', 1618, - '}', 1619, - 0xb5, 3353, + 'o', 3359, + 'p', 3217, + 'r', 3290, + 's', 3301, + 't', 3214, + 'u', 3358, + 'w', 3306, + '{', 1619, + '}', 1620, + 0xb5, 3354, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(896); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); + lookahead == ' ') SKIP(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 881: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3268, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3229, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3269, + ';', 995, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3320, + 'b', 3352, + 'c', 3329, + 'd', 3285, + 'e', 3215, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3304, + 'k', 3217, + 'l', 3289, + 'm', 3209, + 'n', 3336, + 'o', 3359, + 'p', 3217, + 'r', 3290, + 's', 3301, + 't', 3214, + 'u', 3358, + 'w', 3306, + '{', 1619, + '}', 1620, 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 882: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3268, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3233, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3269, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'd', 3280, + 'e', 3230, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + lookahead == ' ') SKIP(899); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 883: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1866, - ';', 994, - 'E', 3221, - 'G', 3225, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3269, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, '_', 3262, - '`', 585, - 'd', 3276, - 'e', 3196, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'k', 3224, - 'm', 3227, - 'n', 3355, - 'o', 3198, - 'p', 3224, - 's', 3291, - 't', 3223, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3364, - 'i', 3364, + '`', 586, + 'd', 3280, + 'e', 3234, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(911); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(899); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 884: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1866, - ';', 994, - 'E', 2150, - 'N', 2225, - '[', 1503, - '_', 2152, - '`', 585, - 'e', 2078, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1867, + ';', 995, + 'E', 3222, + 'G', 3226, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3263, + '`', 586, + 'd', 3277, + 'e', 3197, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'k', 3225, + 'm', 3228, + 'n', 3356, + 'o', 3199, + 'p', 3225, + 's', 3292, + 't', 3224, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3365, + 'i', 3365, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(912); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(3188); END_STATE(); case 885: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1866, - ';', 994, - 'N', 2354, - '[', 1503, - '_', 2263, - '`', 585, - 'e', 2253, - 'f', 2269, - 'n', 2351, - 'o', 2251, - 't', 2338, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2359, - 'i', 2359, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1867, + ';', 995, + 'E', 2151, + 'N', 2226, + '[', 1504, + '_', 2153, + '`', 586, + 'e', 2079, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && lookahead != ']') ADVANCE(2249); END_STATE(); case 886: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3269, - ';', 994, - 'E', 3221, - 'G', 3225, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'd', 3276, - 'e', 3196, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'k', 3224, - 'm', 3227, - 'n', 3355, - 'o', 3198, - 'p', 3224, - 's', 3291, - 't', 3223, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3364, - 'i', 3364, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1867, + ';', 995, + 'N', 2355, + '[', 1504, + '_', 2264, + '`', 586, + 'e', 2254, + 'f', 2270, + 'n', 2352, + 'o', 2252, + 't', 2339, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2360, + 'i', 2360, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(911); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(2250); END_STATE(); case 887: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 3269, - ';', 994, - 'E', 3225, - 'G', 3225, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'd', 3276, - 'e', 3200, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'k', 3224, - 'm', 3227, - 'n', 3355, - 'o', 3198, - 'p', 3224, - 's', 3291, - 't', 3223, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3364, - 'i', 3364, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3270, + ';', 995, + 'E', 3222, + 'G', 3226, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, + 'd', 3277, + 'e', 3197, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'k', 3225, + 'm', 3228, + 'n', 3356, + 'o', 3199, + 'p', 3225, + 's', 3292, + 't', 3224, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3365, + 'i', 3365, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(911); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + lookahead == ' ') SKIP(912); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(3188); END_STATE(); case 888: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1933, - ';', 994, - '?', 1699, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 3270, + ';', 995, + 'E', 3226, + 'G', 3226, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, + 'd', 3277, + 'e', 3201, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'k', 3225, + 'm', 3228, + 'n', 3356, + 'o', 3199, + 'p', 3225, + 's', 3292, + 't', 3224, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3365, + 'i', 3365, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(910); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(912); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(3188); END_STATE(); case 889: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1933, - ';', 994, - 'E', 2150, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2078, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1934, + ';', 995, + '?', 1700, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(911); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 890: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1632, - '0', 1933, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1934, + ';', 995, + 'E', 2151, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2079, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 891: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - '=', 975, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1034, - 'e', 1014, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1085, - 'k', 1016, - 'l', 1053, - 'm', 1008, - 'n', 1147, - 'o', 1221, - 'p', 1016, - 'r', 1054, - 's', 1072, - 't', 1013, - 'u', 1186, - 'w', 1088, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1633, + '0', 1934, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (lookahead != 0 && + lookahead != ']') ADVANCE(2249); END_STATE(); case 892: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - '=', 975, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'c', 586, - 'd', 587, - 'e', 569, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + '=', 976, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1035, + 'e', 1015, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1086, + 'k', 1017, + 'l', 1054, + 'm', 1009, + 'n', 1148, + 'o', 1222, + 'p', 1017, + 'r', 1055, + 's', 1073, + 't', 1014, + 'u', 1187, + 'w', 1089, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(892); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 893: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - '=', 975, - 'E', 567, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'c', 586, - 'd', 587, - 'e', 564, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + '=', 976, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'c', 587, + 'd', 588, + 'e', 570, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(892); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + lookahead == ' ') SKIP(893); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 894: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - '?', 1699, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + '=', 976, + 'E', 568, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'c', 587, + 'd', 588, + 'e', 565, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(894); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(893); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 895: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - '?', 1699, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + '?', 1700, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(895); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 896: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'B', 1238, - 'E', 1017, - 'G', 1017, - 'I', 1234, - 'K', 1017, - 'M', 1017, - 'N', 1228, - 'P', 1017, - 'T', 1017, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1034, - 'e', 1014, - 'f', 1028, - 'g', 1016, - 'h', 1098, - 'i', 1085, - 'k', 1016, - 'l', 1053, - 'm', 1008, - 'n', 1147, - 'o', 1221, - 'p', 1016, - 'r', 1054, - 's', 1072, - 't', 1013, - 'u', 1186, - 'w', 1088, - '{', 1618, - '}', 1619, - 0xb5, 1183, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + '?', 1700, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(896); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 897: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'N', 737, - 'P', 574, - 'T', 574, - '[', 1503, - '_', 583, - '`', 585, - 'd', 587, - 'e', 573, - 'f', 589, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 667, - 'p', 573, - 's', 610, - 't', 572, - 'u', 692, - 'w', 644, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'B', 1239, + 'E', 1018, + 'G', 1018, + 'I', 1235, + 'K', 1018, + 'M', 1018, + 'N', 1229, + 'P', 1018, + 'T', 1018, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1035, + 'e', 1015, + 'f', 1029, + 'g', 1017, + 'h', 1099, + 'i', 1086, + 'k', 1017, + 'l', 1054, + 'm', 1009, + 'n', 1148, + 'o', 1222, + 'p', 1017, + 'r', 1055, + 's', 1073, + 't', 1014, + 'u', 1187, + 'w', 1089, + '{', 1619, + '}', 1620, + 0xb5, 1184, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 898: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 899: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'N', 738, + 'P', 575, + 'T', 575, + '[', 1504, + '_', 584, + '`', 586, + 'd', 588, + 'e', 574, + 'f', 590, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 668, + 'p', 574, + 's', 611, + 't', 573, + 'u', 693, + 'w', 645, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); END_STATE(); case 900: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'I', 1464, - 'N', 1455, - '[', 1503, - '^', 2059, - '_', 1339, - '`', 585, - 'a', 1387, - 'b', 1418, - 'c', 1403, - 'd', 1351, - 'e', 1420, - 'f', 1341, - 'h', 1379, - 'i', 1374, - 'l', 1352, - 'm', 1346, - 'n', 1407, - 'o', 1453, - 'r', 1353, - 's', 1404, - 't', 1412, - 'u', 1429, - 'w', 1377, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1473); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 901: - if (eof) ADVANCE(962); - ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, - 'N', 737, - '[', 1503, - '_', 583, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 746, - 'i', 746, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - END_STATE(); - case 902: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1931, - ';', 994, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'I', 1465, 'N', 1456, - '[', 1503, + '[', 1504, + '^', 2060, '_', 1340, - '`', 585, - 'f', 1344, - 'n', 1406, - 't', 1416, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 1466, - 'i', 1466, + '`', 586, + 'a', 1388, + 'b', 1419, + 'c', 1404, + 'd', 1352, + 'e', 1421, + 'f', 1342, + 'h', 1380, + 'i', 1375, + 'l', 1353, + 'm', 1347, + 'n', 1408, + 'o', 1454, + 'r', 1354, + 's', 1405, + 't', 1413, + 'u', 1430, + 'w', 1378, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); END_STATE(); - case 903: - if (eof) ADVANCE(962); + case 902: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1865, - ';', 994, - 'E', 998, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 997, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'N', 738, + '[', 1504, + '_', 584, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + END_STATE(); + case 903: + if (eof) ADVANCE(963); + ADVANCE_MAP( + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1932, + ';', 995, + 'N', 1457, + '[', 1504, + '_', 1341, + '`', 586, + 'f', 1345, + 'n', 1407, + 't', 1417, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 1467, + 'i', 1467, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); END_STATE(); case 904: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1865, - ';', 994, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'E', 581, - 'e', 581, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1866, + ';', 995, + 'E', 999, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 998, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 905: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 3268, - ';', 994, - 'B', 3368, - 'E', 3217, - 'G', 3217, - 'I', 3363, - 'K', 3217, - 'M', 3217, - 'N', 3360, - 'P', 3217, - 'T', 3217, - '[', 1503, - '^', 2059, - '_', 3258, - '`', 585, - 'a', 3319, - 'b', 3351, - 'c', 3328, - 'd', 3284, - 'e', 3214, - 'f', 3283, - 'g', 3216, - 'h', 3307, - 'i', 3303, - 'k', 3216, - 'l', 3288, - 'm', 3208, - 'n', 3336, - 'o', 3358, - 'p', 3216, - 'r', 3289, - 's', 3300, - 't', 3213, - 'u', 3357, - 'w', 3305, - '{', 1618, - '}', 1619, - 0xb5, 3353, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1866, + ';', 995, + 'N', 738, + '[', 1504, + '_', 585, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'E', 582, + 'e', 582, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(896); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3368); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3187); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 906: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 3268, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'N', 3362, - 'P', 3234, - 'T', 3234, - '[', 1503, - '_', 3261, - '`', 585, - 'd', 3279, - 'e', 3233, - 'f', 3280, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3332, - 'p', 3233, - 's', 3293, - 't', 3232, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 3269, + ';', 995, + 'B', 3369, + 'E', 3218, + 'G', 3218, + 'I', 3364, + 'K', 3218, + 'M', 3218, + 'N', 3361, + 'P', 3218, + 'T', 3218, + '[', 1504, + '^', 2060, + '_', 3259, + '`', 586, + 'a', 3320, + 'b', 3352, + 'c', 3329, + 'd', 3285, + 'e', 3215, + 'f', 3284, + 'g', 3217, + 'h', 3308, + 'i', 3304, + 'k', 3217, + 'l', 3289, + 'm', 3209, + 'n', 3336, + 'o', 3359, + 'p', 3217, + 'r', 3290, + 's', 3301, + 't', 3214, + 'u', 3358, + 'w', 3306, + '{', 1619, + '}', 1620, 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3366, - 'i', 3366, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3369); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3188); END_STATE(); case 907: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1866, - ';', 994, - 'E', 2150, - 'N', 2225, - '[', 1503, - '_', 2152, - '`', 585, - 'e', 2078, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 3269, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'N', 3363, + 'P', 3235, + 'T', 3235, + '[', 1504, + '_', 3262, + '`', 586, + 'd', 3280, + 'e', 3234, + 'f', 3281, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3333, + 'p', 3234, + 's', 3294, + 't', 3233, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3367, + 'i', 3367, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(899); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(3188); END_STATE(); case 908: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 3269, - ';', 994, - 'E', 3225, - 'G', 3225, - 'K', 3225, - 'M', 3225, - 'N', 3359, - 'P', 3225, - 'T', 3225, - '[', 1503, - '_', 3265, - '`', 585, - 'd', 3276, - 'e', 3200, - 'f', 3277, - 'g', 3224, - 'h', 3348, - 'k', 3224, - 'm', 3227, - 'n', 3355, - 'o', 3198, - 'p', 3224, - 's', 3291, - 't', 3223, - 'u', 3354, - 'w', 3316, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, - 'I', 3364, - 'i', 3364, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1867, + ';', 995, + 'E', 2151, + 'N', 2226, + '[', 1504, + '_', 2153, + '`', 586, + 'e', 2079, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(911); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3273); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(3187); + lookahead != ']') ADVANCE(2249); END_STATE(); case 909: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - '=', 975, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 3270, + ';', 995, + 'E', 3226, + 'G', 3226, + 'K', 3226, + 'M', 3226, + 'N', 3360, + 'P', 3226, + 'T', 3226, + '[', 1504, + '_', 3267, + '`', 586, + 'd', 3277, + 'e', 3201, + 'f', 3278, + 'g', 3225, + 'h', 3349, + 'k', 3225, + 'm', 3228, + 'n', 3356, + 'o', 3199, + 'p', 3225, + 's', 3292, + 't', 3224, + 'u', 3355, + 'w', 3317, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + 'I', 3365, + 'i', 3365, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(909); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(912); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3274); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(3188); END_STATE(); case 910: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - '?', 1699, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + '=', 976, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(910); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 911: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'E', 2145, - 'G', 2145, - 'K', 2145, - 'M', 2145, - 'N', 2225, - 'P', 2145, - 'T', 2145, - '[', 1503, - '_', 2153, - '`', 585, - 'd', 2154, - 'e', 2082, - 'f', 2155, - 'g', 2144, - 'h', 2195, - 'k', 2144, - 'm', 2147, - 'n', 2205, - 'o', 2080, - 'p', 2144, - 's', 2165, - 't', 2143, - 'u', 2206, - 'w', 2177, - '{', 1618, - '|', 1509, - '}', 1619, - 0xb5, 2206, - 'B', 1965, - 'b', 1965, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + '?', 1700, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(911); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 912: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'E', 2150, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2078, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'E', 2146, + 'G', 2146, + 'K', 2146, + 'M', 2146, + 'N', 2226, + 'P', 2146, + 'T', 2146, + '[', 1504, + '_', 2154, + '`', 586, + 'd', 2155, + 'e', 2083, + 'f', 2156, + 'g', 2145, + 'h', 2196, + 'k', 2145, + 'm', 2148, + 'n', 2206, + 'o', 2081, + 'p', 2145, + 's', 2166, + 't', 2144, + 'u', 2207, + 'w', 2178, + '{', 1619, + '|', 1510, + '}', 1620, + 0xb5, 2207, + 'B', 1966, + 'b', 1966, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + lookahead == ' ') SKIP(912); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 913: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'E', 2151, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2079, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(913); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 914: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2249); END_STATE(); case 915: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2192, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(915); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 916: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2153, - '`', 585, - 'f', 2155, - 'n', 2192, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2193, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(916); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 917: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1728, - '-', 1547, - '.', 1627, - '0', 1933, - ';', 994, - 'N', 1456, - '[', 1503, - '_', 1340, - '`', 585, - 'e', 1335, - 'f', 1344, - 'n', 1443, - 'o', 1334, - 't', 1416, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 1466, - 'i', 1466, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2154, + '`', 586, + 'f', 2156, + 'n', 2193, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1949); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') SKIP(917); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2249); END_STATE(); case 918: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - '<', 1530, - '=', 1849, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1116, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1729, + '-', 1548, + '.', 1628, + '0', 1934, + ';', 995, + 'N', 1457, + '[', 1504, + '_', 1341, + '`', 586, + 'e', 1336, + 'f', 1345, + 'n', 1444, + 'o', 1335, + 't', 1417, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 1467, + 'i', 1467, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1950); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); + if (lookahead != 0 && + lookahead != ']') ADVANCE(2249); END_STATE(); case 919: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - '<', 1530, - '=', 1849, - 'I', 3054, - 'N', 3051, - '[', 1503, - '^', 2059, - '_', 2951, - '`', 585, - 'a', 2990, - 'b', 3038, - 'c', 3007, - 'd', 2972, - 'e', 3039, - 'f', 2968, - 'h', 2981, - 'i', 2977, - 'l', 2974, - 'm', 2969, - 'n', 3021, - 'o', 3049, - 'r', 2975, - 's', 3009, - 't', 3030, - 'u', 3041, - 'w', 2979, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1866, + ';', 995, + '<', 1531, + '=', 1850, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1024, + '`', 586, + 'a', 1117, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3059); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 920: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - '<', 1530, - '=', 1849, - 'N', 737, - '[', 1503, - '_', 584, - '`', 585, - 'f', 589, - 'n', 668, - 't', 688, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 746, - 'i', 746, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1866, + ';', 995, + '<', 1531, + '=', 1850, + 'I', 3055, + 'N', 3052, + '[', 1504, + '^', 2060, + '_', 2953, + '`', 586, + 'a', 2991, + 'b', 3039, + 'c', 3008, + 'd', 2973, + 'e', 3040, + 'f', 2969, + 'h', 2982, + 'i', 2978, + 'l', 2975, + 'm', 2970, + 'n', 3021, + 'o', 3050, + 'r', 2976, + 's', 3010, + 't', 3031, + 'u', 3042, + 'w', 2980, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3060); + if (lookahead != 0 && + (lookahead < ']' || '{' < lookahead)) ADVANCE(2938); END_STATE(); case 921: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - '<', 1530, - '=', 1849, - 'N', 3053, - '[', 1503, - '_', 2952, - '`', 585, - 'f', 2967, - 'n', 3013, - 't', 3036, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 3057, - 'i', 3057, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1866, + ';', 995, + '<', 1531, + '=', 1850, + 'N', 738, + '[', 1504, + '_', 585, + '`', 586, + 'f', 590, + 'n', 669, + 't', 689, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 747, + 'i', 747, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (lookahead != 0 && - lookahead != ']') ADVANCE(2937); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); END_STATE(); case 922: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - 'I', 3181, - 'N', 3178, - '[', 1503, - '^', 2059, - '_', 3078, - '`', 585, - 'a', 3117, - 'b', 3165, - 'c', 3134, - 'd', 3099, - 'e', 3166, - 'f', 3095, - 'h', 3108, - 'i', 3104, - 'l', 3101, - 'm', 3096, - 'n', 3148, - 'o', 3176, - 'r', 3102, - 's', 3136, - 't', 3157, - 'u', 3168, - 'w', 3106, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1866, + ';', 995, + '<', 1531, + '=', 1850, + 'N', 3054, + '[', 1504, + '_', 2954, + '`', 586, + 'f', 2968, + 'n', 3014, + 't', 3037, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 3058, + 'i', 3058, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3186); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(3060); + lookahead != ']') ADVANCE(2938); END_STATE(); case 923: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1865, - ';', 994, - 'N', 3180, - '[', 1503, - '_', 3079, - '`', 585, - 'f', 3094, - 'n', 3140, - 't', 3163, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 3184, - 'i', 3184, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1866, + ';', 995, + 'I', 3182, + 'N', 3179, + '[', 1504, + '^', 2060, + '_', 3080, + '`', 586, + 'a', 3118, + 'b', 3166, + 'c', 3135, + 'd', 3100, + 'e', 3167, + 'f', 3096, + 'h', 3109, + 'i', 3105, + 'l', 3102, + 'm', 3097, + 'n', 3148, + 'o', 3177, + 'r', 3103, + 's', 3137, + 't', 3158, + 'u', 3169, + 'w', 3107, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(3187); if (lookahead != 0 && - lookahead != ']') ADVANCE(3060); + (lookahead < ']' || '{' < lookahead)) ADVANCE(3061); END_STATE(); case 924: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, '0', 1866, - ';', 994, - '<', 1530, - '=', 1849, - 'N', 2225, - '[', 1503, - '_', 2152, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + ';', 995, + 'N', 3181, + '[', 1504, + '_', 3081, + '`', 586, + 'f', 3095, + 'n', 3141, + 't', 3164, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 3185, + 'i', 3185, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); + lookahead == ' ') SKIP(902); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(3061); END_STATE(); case 925: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1866, - ';', 994, - '<', 1530, - '=', 1849, - 'N', 3050, - '[', 1503, - '_', 2950, - '`', 585, - 'e', 2941, - 'f', 2965, - 'n', 3047, - 'o', 2939, - 't', 3034, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 3055, - 'i', 3055, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1867, + ';', 995, + '<', 1531, + '=', 1850, + 'N', 2226, + '[', 1504, + '_', 2153, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(2937); + lookahead != ']') ADVANCE(2249); END_STATE(); case 926: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1866, - ';', 994, - 'N', 2225, - '[', 1503, - '_', 2152, - '`', 585, - 'e', 2084, - 'f', 2155, - 'n', 2219, - 'o', 2080, - 't', 2197, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 2229, - 'i', 2229, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1867, + ';', 995, + '<', 1531, + '=', 1850, + 'N', 3051, + '[', 1504, + '_', 2951, + '`', 586, + 'e', 2942, + 'f', 2966, + 'n', 3048, + 'o', 2940, + 't', 3035, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 3056, + 'i', 3056, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(2248); + lookahead != ']') ADVANCE(2938); END_STATE(); case 927: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1887, - '.', 1632, - '0', 1866, - ';', 994, - 'N', 3177, - '[', 1503, - '_', 3077, - '`', 585, - 'e', 3064, - 'f', 3092, - 'n', 3174, - 'o', 3062, - 't', 3161, - '{', 1618, - '|', 1509, - '}', 1619, - 'I', 3182, - 'i', 3182, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1867, + ';', 995, + 'N', 2226, + '[', 1504, + '_', 2153, + '`', 586, + 'e', 2085, + 'f', 2156, + 'n', 2220, + 'o', 2081, + 't', 2198, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 2230, + 'i', 2230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); if (lookahead != 0 && - lookahead != ']') ADVANCE(3060); + lookahead != ']') ADVANCE(2249); END_STATE(); case 928: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1889, - '.', 1632, - '0', 1865, - ';', 994, - '<', 1530, - '=', 1849, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1023, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1888, + '.', 1633, + '0', 1867, + ';', 995, + 'N', 3178, + '[', 1504, + '_', 3078, + '`', 586, + 'e', 3065, + 'f', 3093, + 'n', 3175, + 'o', 3063, + 't', 3162, + '{', 1619, + '|', 1510, + '}', 1620, + 'I', 3183, + 'i', 3183, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1875); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if (lookahead != 0 && + lookahead != ']') ADVANCE(3061); END_STATE(); case 929: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3592, + '\n', 1476, + '"', 2007, + '#', 3585, '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1690, - '+', 1736, - '-', 1556, - '.', 1631, - '0', 2513, - ';', 994, - 'I', 2908, - 'N', 2898, - '[', 1503, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1890, + '.', 1633, + '0', 1866, + ';', 995, + '<', 1531, + '=', 1850, + 'I', 1235, + 'N', 1229, + '[', 1504, '^', 2060, - '_', 2506, - '`', 585, - 'a', 2660, - 'b', 2765, - 'c', 2705, - 'd', 2561, - 'e', 2766, - 'f', 2518, - 'h', 2635, - 'i', 2606, - 'l', 2585, - 'm', 2530, - 'n', 2730, - 'o', 2865, - 'r', 2562, - 's', 2707, - 't', 2742, - 'u', 2792, - 'w', 2612, - '{', 1618, - '}', 1619, + '_', 1024, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(858); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); - if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2936); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 930: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1736, - '-', 1548, - '.', 1631, - '0', 2513, - ';', 994, - 'I', 2908, - 'N', 2898, - '[', 1503, - '^', 2060, - '_', 2506, - '`', 585, - 'a', 2659, - 'b', 2765, - 'c', 2705, - 'd', 2561, - 'e', 2766, - 'f', 2518, - 'h', 2635, - 'i', 2606, - 'l', 2585, - 'm', 2530, - 'n', 2730, - 'o', 2865, - 'r', 2562, - 's', 2707, - 't', 2742, - 'u', 2792, - 'w', 2612, - '{', 1618, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1691, + '+', 1737, + '-', 1557, + '.', 1632, + '0', 2514, + ';', 995, + 'I', 2909, + 'N', 2899, + '[', 1504, + '^', 2061, + '_', 2507, + '`', 586, + 'a', 2661, + 'b', 2766, + 'c', 2706, + 'd', 2562, + 'e', 2767, + 'f', 2519, + 'h', 2636, + 'i', 2607, + 'l', 2586, + 'm', 2531, + 'n', 2731, + 'o', 2866, + 'r', 2563, + 's', 2708, + 't', 2743, + 'u', 2793, + 'w', 2613, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(899); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + lookahead == ' ') SKIP(859); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2936); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); END_STATE(); case 931: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1736, - '-', 1548, - '.', 1631, - '0', 2513, - ';', 994, - 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'e', 2367, - 'f', 2523, - 'n', 2846, - 'o', 2365, - 't', 2758, - '{', 1618, - '|', 1510, - '}', 1619, + '\n', 1476, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1737, + '-', 1549, + '.', 1632, + '0', 2514, + ';', 995, 'I', 2909, - 'i', 2909, + 'N', 2899, + '[', 1504, + '^', 2061, + '_', 2507, + '`', 586, + 'a', 2660, + 'b', 2766, + 'c', 2706, + 'd', 2562, + 'e', 2767, + 'f', 2519, + 'h', 2636, + 'i', 2607, + 'l', 2586, + 'm', 2531, + 'n', 2731, + 'o', 2866, + 'r', 2563, + 's', 2708, + 't', 2743, + 'u', 2793, + 'w', 2613, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(914); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + lookahead == ' ') SKIP(900); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && - lookahead != ']') ADVANCE(2936); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); END_STATE(); case 932: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1736, - '-', 1548, - '.', 1631, - '0', 2513, - ';', 994, - 'N', 2899, - '[', 1503, - '_', 2517, - '`', 585, - 'f', 2523, - 'n', 2729, - 't', 2758, - '{', 1618, - '|', 1510, - '}', 1619, - 'I', 2909, - 'i', 2909, + '\n', 1476, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1737, + '-', 1549, + '.', 1632, + '0', 2514, + ';', 995, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'e', 2368, + 'f', 2524, + 'n', 2847, + 'o', 2366, + 't', 2759, + '{', 1619, + '|', 1511, + '}', 1620, + 'I', 2910, + 'i', 2910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(901); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); + lookahead == ' ') SKIP(915); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && - lookahead != ']') ADVANCE(2936); + lookahead != ']') ADVANCE(2937); END_STATE(); case 933: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '"', 2006, - '#', 3592, - '$', 1513, - '\'', 544, - '(', 1507, - ')', 1508, - '+', 1736, - '-', 1556, - '.', 1631, - '0', 2513, - ';', 994, - 'I', 2908, - 'N', 2898, - '[', 1503, - '^', 2060, - '_', 2506, - '`', 585, - 'a', 2660, - 'b', 2765, - 'c', 2705, - 'd', 2561, - 'e', 2766, - 'f', 2518, - 'h', 2635, - 'i', 2606, - 'l', 2585, - 'm', 2530, + '\n', 1476, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1737, + '-', 1549, + '.', 1632, + '0', 2514, + ';', 995, + 'N', 2900, + '[', 1504, + '_', 2518, + '`', 586, + 'f', 2524, 'n', 2730, - 'o', 2865, - 'r', 2562, - 's', 2707, - 't', 2742, - 'u', 2792, - 'w', 2612, - '{', 1618, - '}', 1619, + 't', 2759, + '{', 1619, + '|', 1511, + '}', 1620, + 'I', 2910, + 'i', 2910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(866); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2516); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2935); + lookahead == ' ') SKIP(902); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); if (lookahead != 0 && - (lookahead < ']' || '{' < lookahead)) ADVANCE(2936); + lookahead != ']') ADVANCE(2937); END_STATE(); case 934: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1885, + '\n', 1476, + '"', 2007, + '#', 3593, + '$', 1514, + '\'', 545, + '(', 1508, + ')', 1509, + '+', 1737, + '-', 1557, '.', 1632, - ';', 994, - '<', 1530, - '=', 1849, - '_', 2952, - '|', 1509, - '}', 1619, + '0', 2514, + ';', 995, + 'I', 2909, + 'N', 2899, + '[', 1504, + '^', 2061, + '_', 2507, + '`', 586, + 'a', 2661, + 'b', 2766, + 'c', 2706, + 'd', 2562, + 'e', 2767, + 'f', 2519, + 'h', 2636, + 'i', 2607, + 'l', 2586, + 'm', 2531, + 'n', 2731, + 'o', 2866, + 'r', 2563, + 's', 2708, + 't', 2743, + 'u', 2793, + 'w', 2613, + '{', 1619, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(867); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2517); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(2936); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); + (lookahead < ']' || '{' < lookahead)) ADVANCE(2937); END_STATE(); case 935: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1885, - '.', 1632, - ';', 994, - '_', 3079, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1886, + '.', 1633, + ';', 995, + '<', 1531, + '=', 1850, + '_', 2954, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -44392,29 +44391,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3060); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 936: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1884, - '.', 1632, - ';', 994, - '<', 1530, - '=', 1849, - '_', 2952, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1886, + '.', 1633, + ';', 995, + '_', 3081, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -44422,27 +44419,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 937: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '+', 1890, - '-', 1884, - '.', 1632, - ';', 994, - '_', 3079, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1885, + '.', 1633, + ';', 995, + '<', 1531, + '=', 1850, + '_', 2954, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -44450,76 +44449,104 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3060); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2938); END_STATE(); case 938: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - '-', 1545, - ';', 994, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '+', 1891, + '-', 1885, + '.', 1633, + ';', 995, + '_', 3081, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(938); + lookahead == ' ') SKIP(940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3061); END_STATE(); case 939: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - '$', 1511, - '(', 1507, - ')', 1508, - ';', 994, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + '-', 1546, + ';', 995, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(939); END_STATE(); case 940: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - '.', 1632, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + '$', 1512, + '(', 1508, + ')', 1509, + ';', 995, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(940); + END_STATE(); + case 941: + if (eof) ADVANCE(963); + ADVANCE_MAP( + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + '.', 1633, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44528,43 +44555,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 941: - if (eof) ADVANCE(962); + case 942: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - '.', 1632, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + '.', 1633, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(946); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44572,43 +44599,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 942: - if (eof) ADVANCE(962); + case 943: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - '.', 1632, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + '.', 1633, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(946); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44616,24 +44643,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 943: - if (eof) ADVANCE(962); + case 944: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - '.', 1632, - ';', 994, - '_', 2265, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + '.', 1633, + ';', 995, + '_', 2267, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(948); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44642,113 +44669,113 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2249); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2250); END_STATE(); - case 944: - if (eof) ADVANCE(962); + case 945: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - ';', 994, - '=', 975, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + ';', 995, + '=', 976, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(944); + lookahead == ' ') SKIP(945); END_STATE(); - case 945: - if (eof) ADVANCE(962); + case 946: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - ';', 994, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + ';', 995, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(946); END_STATE(); - case 946: - if (eof) ADVANCE(962); + case 947: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '-', 1545, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '-', 1546, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(946); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44756,69 +44783,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); - END_STATE(); - case 947: - if (eof) ADVANCE(962); - if (lookahead == '\n') ADVANCE(1475); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ')') ADVANCE(1508); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == ';') ADVANCE(994); - if (lookahead == '|') ADVANCE(1509); - if (lookahead == '}') ADVANCE(1619); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(947); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 948: - if (eof) ADVANCE(962); - if (lookahead == '\n') ADVANCE(1475); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ')') ADVANCE(1508); - if (lookahead == '-') ADVANCE(1545); - if (lookahead == ';') ADVANCE(994); - if (lookahead == '|') ADVANCE(1509); - if (lookahead == '}') ADVANCE(1619); + if (eof) ADVANCE(963); + if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ')') ADVANCE(1509); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == ';') ADVANCE(995); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1620); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1474); + lookahead == ' ') SKIP(948); END_STATE(); case 949: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); + if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ')') ADVANCE(1509); + if (lookahead == '-') ADVANCE(1546); + if (lookahead == ';') ADVANCE(995); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1620); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1475); + END_STATE(); + case 950: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '.', 1632, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - '_', 3264, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '.', 1633, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + '_', 3266, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(953); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(954); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44827,42 +44854,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 950: - if (eof) ADVANCE(962); + case 951: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '.', 1632, - ';', 994, - 'E', 3230, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3229, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '.', 1633, + ';', 995, + 'E', 3231, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3230, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(953); + lookahead == ' ') SKIP(954); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44870,42 +44897,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 951: - if (eof) ADVANCE(962); + case 952: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '.', 1632, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + '.', 1633, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(953); + lookahead == ' ') SKIP(954); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44913,23 +44940,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); - case 952: - if (eof) ADVANCE(962); + case 953: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - '.', 1632, - ';', 994, - '_', 2265, - '|', 1509, - '}', 1619, + '\n', 1476, + '#', 3585, + ')', 1509, + '.', 1633, + ';', 995, + '_', 2267, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(955); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + lookahead == ' ') SKIP(956); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -44938,75 +44965,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2249); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2250); END_STATE(); - case 953: - if (eof) ADVANCE(962); + case 954: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - ';', 994, - 'E', 574, - 'G', 574, - 'K', 574, - 'M', 574, - 'P', 574, - 'T', 574, - 'd', 587, - 'e', 573, - 'g', 573, - 'h', 683, - 'k', 573, - 'm', 576, - 'n', 692, - 'p', 573, - 's', 610, - 't', 573, - 'u', 692, - 'w', 644, - '|', 1509, - '}', 1619, - 0xb5, 692, - 'B', 1965, - 'b', 1965, + '\n', 1476, + '#', 3585, + ')', 1509, + ';', 995, + 'E', 575, + 'G', 575, + 'K', 575, + 'M', 575, + 'P', 575, + 'T', 575, + 'd', 588, + 'e', 574, + 'g', 574, + 'h', 684, + 'k', 574, + 'm', 577, + 'n', 693, + 'p', 574, + 's', 611, + 't', 574, + 'u', 693, + 'w', 645, + '|', 1510, + '}', 1620, + 0xb5, 693, + 'B', 1966, + 'b', 1966, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(953); + lookahead == ' ') SKIP(954); END_STATE(); - case 954: - if (eof) ADVANCE(962); + case 955: + if (eof) ADVANCE(963); ADVANCE_MAP( - '\n', 1475, - '#', 3584, - ')', 1508, - ';', 994, - 'E', 3234, - 'G', 3234, - 'K', 3234, - 'M', 3234, - 'P', 3234, - 'T', 3234, - 'd', 3279, - 'e', 3233, - 'g', 3233, - 'h', 3348, - 'k', 3233, - 'm', 3236, - 'n', 3354, - 'p', 3233, - 's', 3293, - 't', 3233, - 'u', 3354, - 'w', 3316, - '|', 1509, - '}', 1619, - 0xb5, 3354, - 'B', 3187, - 'b', 3187, + '\n', 1476, + '#', 3585, + ')', 1509, + ';', 995, + 'E', 3235, + 'G', 3235, + 'K', 3235, + 'M', 3235, + 'P', 3235, + 'T', 3235, + 'd', 3280, + 'e', 3234, + 'g', 3234, + 'h', 3349, + 'k', 3234, + 'm', 3237, + 'n', 3355, + 'p', 3234, + 's', 3294, + 't', 3234, + 'u', 3355, + 'w', 3317, + '|', 1510, + '}', 1620, + 0xb5, 3355, + 'B', 3188, + 'b', 3188, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(953); + lookahead == ' ') SKIP(954); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -45014,30 +45041,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3187); - END_STATE(); - case 955: - if (eof) ADVANCE(962); - if (lookahead == '\n') ADVANCE(1475); - if (lookahead == '#') ADVANCE(3584); - if (lookahead == ')') ADVANCE(1508); - if (lookahead == ';') ADVANCE(994); - if (lookahead == '|') ADVANCE(1509); - if (lookahead == '}') ADVANCE(1619); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(955); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3188); END_STATE(); case 956: - if (eof) ADVANCE(962); - if (lookahead == '\n') ADVANCE(1475); - if (lookahead == '#') ADVANCE(3592); - if (lookahead == ')') ADVANCE(1508); - if (lookahead == '-') ADVANCE(1549); - if (lookahead == ';') ADVANCE(994); + if (eof) ADVANCE(963); + if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '#') ADVANCE(3585); + if (lookahead == ')') ADVANCE(1509); + if (lookahead == ';') ADVANCE(995); if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1619); + if (lookahead == '}') ADVANCE(1620); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(956); + END_STATE(); + case 957: + if (eof) ADVANCE(963); + if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == ')') ADVANCE(1509); + if (lookahead == '-') ADVANCE(1550); + if (lookahead == ';') ADVANCE(995); + if (lookahead == '|') ADVANCE(1511); + if (lookahead == '}') ADVANCE(1620); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(947); + lookahead == ' ') SKIP(948); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -45045,18 +45072,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2936); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); END_STATE(); - case 957: - if (eof) ADVANCE(962); - if (lookahead == '\n') ADVANCE(1475); - if (lookahead == '#') ADVANCE(3592); - if (lookahead == ')') ADVANCE(1508); - if (lookahead == ';') ADVANCE(994); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1619); + case 958: + if (eof) ADVANCE(963); + if (lookahead == '\n') ADVANCE(1476); + if (lookahead == '#') ADVANCE(3593); + if (lookahead == ')') ADVANCE(1509); + if (lookahead == ';') ADVANCE(995); + if (lookahead == '|') ADVANCE(1511); + if (lookahead == '}') ADVANCE(1620); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(956); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -45064,3927 +45091,3922 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2936); - END_STATE(); - case 958: - if (eof) ADVANCE(962); - ADVANCE_MAP( - '!', 2036, - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1508, - '*', 1686, - '+', 1729, - ',', 1504, - '-', 1546, - '.', 1627, - '/', 1711, - ':', 1500, - ';', 994, - '<', 1758, - '=', 976, - '>', 1534, - '?', 1699, - '@', 1537, - '[', 1503, - ']', 1506, - '^', 2059, - '_', 1626, - '`', 585, - '{', 1618, - '|', 1509, - '}', 1619, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2053); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1333); - if (lookahead != 0) ADVANCE(2057); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2937); END_STATE(); case 959: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - ')', 1907, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ':', 1500, - '=', 975, - '>', 1532, - '@', 1537, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '|', 1509, - '}', 1619, + '!', 2037, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1509, + '*', 1687, + '+', 1730, + ',', 1505, + '-', 1547, + '.', 1628, + '/', 1712, + ':', 1501, + ';', 995, + '<', 1759, + '=', 977, + '>', 1535, + '?', 1700, + '@', 1538, + '[', 1504, + ']', 1507, + '^', 2060, + '_', 1627, + '`', 586, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(960); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2054); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1334); + if (lookahead != 0) ADVANCE(2058); END_STATE(); case 960: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '"', 2006, - '#', 3584, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - ':', 1500, - '=', 975, - '>', 1532, - '@', 1537, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, - '|', 1509, - '}', 1619, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + ')', 1908, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ':', 1501, + '=', 976, + '>', 1533, + '@', 1538, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(960); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + lookahead == ' ') SKIP(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 961: - if (eof) ADVANCE(962); + if (eof) ADVANCE(963); ADVANCE_MAP( - '"', 2006, - '#', 3586, - '$', 1512, - '\'', 544, - '(', 1507, - '+', 1728, - '-', 1555, - '.', 1627, - '0', 1931, - 'I', 1234, - 'N', 1228, - '[', 1503, - '^', 2059, - '_', 1021, - '`', 585, - 'a', 1117, - 'b', 1171, - 'c', 1141, - 'd', 1051, - 'e', 1173, - 'f', 1028, - 'h', 1099, - 'i', 1085, - 'l', 1053, - 'm', 1031, - 'n', 1148, - 'o', 1221, - 'r', 1054, - 's', 1144, - 't', 1162, - 'u', 1186, - 'w', 1089, - '{', 1618, + '"', 2007, + '#', 3585, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + ':', 1501, + '=', 976, + '>', 1533, + '@', 1538, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + '|', 1510, + '}', 1620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1947); - if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 962: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(963); + ADVANCE_MAP( + '"', 2007, + '#', 3587, + '$', 1513, + '\'', 545, + '(', 1508, + '+', 1729, + '-', 1556, + '.', 1628, + '0', 1932, + 'I', 1235, + 'N', 1229, + '[', 1504, + '^', 2060, + '_', 1022, + '`', 586, + 'a', 1118, + 'b', 1172, + 'c', 1142, + 'd', 1052, + 'e', 1174, + 'f', 1029, + 'h', 1100, + 'i', 1086, + 'l', 1054, + 'm', 1032, + 'n', 1149, + 'o', 1222, + 'r', 1055, + 's', 1145, + 't', 1163, + 'u', 1187, + 'w', 1090, + '{', 1619, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1948); + if (set_contains(sym_cmd_identifier_character_set_1, 668, lookahead)) ADVANCE(1239); END_STATE(); case 963: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 964: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(965); - if (lookahead == '#') ADVANCE(3585); + END_STATE(); + case 966: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(966); + if (lookahead == '#') ADVANCE(3586); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(5); if (lookahead != 0) ADVANCE(6); END_STATE(); - case 966: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2600); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); - END_STATE(); case 967: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1078); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(2601); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 968: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2598); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1079); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 969: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1369); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == '-') ADVANCE(2599); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 970: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1370); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 971: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 972: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 973: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 974: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 975: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 976: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); END_STATE(); case 977: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1075); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 978: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2591); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1076); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 979: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2593); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == '-') ADVANCE(2592); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 980: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1366); + if (lookahead == '-') ADVANCE(2594); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); + END_STATE(); + case 981: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(1367); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); - case 981: + case 982: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); - case 982: + case 983: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); - END_STATE(); - case 983: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 984: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 985: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 986: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 987: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 988: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 989: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 990: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 991: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 992: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 993: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 994: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 995: - ACCEPT_TOKEN(sym_cmd_identifier); - ADVANCE_MAP( - '+', 582, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 996: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(582); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'i') ADVANCE(1039); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + '+', 583, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 997: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(582); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(583); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1040); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 998: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(582); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(583); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 999: ACCEPT_TOKEN(sym_cmd_identifier); - ADVANCE_MAP( - '+', 2038, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'l', 1191, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(583); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1000: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(2038); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'i') ADVANCE(1039); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + '+', 2039, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'l', 1192, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1001: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(2038); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(2039); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1040); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1002: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '+') ADVANCE(2038); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(2039); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1003: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1036); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(2039); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1004: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1223); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(1037); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1005: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1106); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(1224); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1006: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '-') ADVANCE(1224); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(1107); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1007: ACCEPT_TOKEN(sym_cmd_identifier); - ADVANCE_MAP( - 'I', 1229, - 'a', 1111, - 'i', 1125, - 'o', 1045, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(1225); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1008: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - 'I', 1229, - 'a', 1194, - 'i', 1125, - 'o', 1048, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1112, + 'i', 1126, + 'o', 1046, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1009: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - 'I', 1229, - 'a', 1194, - 'i', 1125, - 'o', 1045, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1195, + 'i', 1126, + 'o', 1049, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1010: ACCEPT_TOKEN(sym_cmd_identifier); ADVANCE_MAP( - 'I', 1229, - 'i', 1229, - 'l', 1191, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1195, + 'i', 1126, + 'o', 1046, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1011: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + 'I', 1230, + 'i', 1230, + 'l', 1192, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1012: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'n') ADVANCE(1050); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1013: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1212); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'n') ADVANCE(1051); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1014: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1015: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1226); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1016: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1227); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1017: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1039); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1018: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 'o') ADVANCE(1047); - if (lookahead == 's') ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1040); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1019: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 's') ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1126); + if (lookahead == 'o') ADVANCE(1048); + if (lookahead == 's') ADVANCE(1239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1020: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N') ADVANCE(1230); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'n') ADVANCE(1576); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1126); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1021: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == '_') ADVANCE(1021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1021); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'N') ADVANCE(1231); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'n') ADVANCE(1577); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1022: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == '_') ADVANCE(1022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1022); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1023: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == '_') ADVANCE(1023); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1024: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1110); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1025: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1227); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1111); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1026: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'o') ADVANCE(1048); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1228); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1027: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1028: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1029: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1122); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1030: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1184); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1031: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1048); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1185); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1032: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1033: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1194); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1034: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1225); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1035: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1225); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1226); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1036: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1139); - if (lookahead == 'o') ADVANCE(1169); - if (lookahead == 's') ADVANCE(1092); - if (lookahead == 'x') ADVANCE(1158); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1226); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1037: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1181); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1140); + if (lookahead == 'o') ADVANCE(1170); + if (lookahead == 's') ADVANCE(1093); + if (lookahead == 'x') ADVANCE(1159); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1038: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'a') ADVANCE(1208); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1182); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1039: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1040: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1041: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1090); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'c') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1042: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'c') ADVANCE(1091); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1043: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'c') ADVANCE(1062); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'c') ADVANCE(1092); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1044: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1818); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'c') ADVANCE(1063); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1045: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1718); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1819); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1046: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1798); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1719); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1047: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1721); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1799); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1048: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1216); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1722); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1049: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1056); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1217); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1050: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'd') ADVANCE(1185); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1057); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1051: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'd') ADVANCE(1186); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1052: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1053: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1054: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1055: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1498); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1088); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1056: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1666); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1499); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1057: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1913); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1667); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1058: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1922); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1914); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1059: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1697); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1923); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1060: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1597); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1698); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1061: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1493); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1598); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1062: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1653); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1494); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1063: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1567); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1654); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1064: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1568); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1065: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 's') ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1066: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 's') ADVANCE(1239); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1067: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1222); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1068: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1612); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1069: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1594); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1613); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1070: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1024); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1595); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1071: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1025); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1072: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1073: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1074: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1040); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1075: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1131); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1076: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1178); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1132); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1077: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1132); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1179); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1078: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1135); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1133); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1079: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1138); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1136); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1080: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1174); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1139); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1081: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1165); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1175); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1082: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1207); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1166); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1083: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1180); - if (lookahead == 'i') ADVANCE(1120); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1208); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1084: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'e') ADVANCE(1180); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1181); + if (lookahead == 'i') ADVANCE(1121); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1085: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1181); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1086: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'f') ADVANCE(1479); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1087: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'g') ADVANCE(1102); - if (lookahead == 't') ADVANCE(1214); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1480); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1088: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1083); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'g') ADVANCE(1103); + if (lookahead == 't') ADVANCE(1215); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1089: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1083); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1090: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1616); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1091: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1647); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1617); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1092: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1113); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1648); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1093: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1784); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1114); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1094: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1778); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1785); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1095: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1103); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1779); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1096: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1103); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1097: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'h') ADVANCE(1084); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1098: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1049); - if (lookahead == 'r') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1085); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1099: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1049); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1050); + if (lookahead == 'r') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1100: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1030); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1050); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1101: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1134); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1031); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1102: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1189); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1135); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1103: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1120); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1190); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1104: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1121); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1105: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1106: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1129); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1107: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'i') ADVANCE(1205); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1130); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1108: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'i') ADVANCE(1206); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1109: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1207); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1110: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1563); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1111: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'k') ADVANCE(1069); - if (lookahead == 't') ADVANCE(1041); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1564); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1112: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1903); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1070); + if (lookahead == 't') ADVANCE(1042); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1113: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1740); - if (lookahead == 'r') ADVANCE(1746); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1904); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1114: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1747); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1115: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1116: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1117: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1118: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1025); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1119: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1112); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1026); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1120: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1060); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1113); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1121: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'l') ADVANCE(1061); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1122: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1188); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1062); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1123: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1189); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1124: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1125: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1238); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1126: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1187); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1127: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1488); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1188); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1128: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1650); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1489); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1129: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1772); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1651); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1130: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1585); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1773); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1131: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1217); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1586); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1132: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'n') ADVANCE(1218); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1133: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1219); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1134: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1215); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1135: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1219); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1216); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1136: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1220); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1137: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1050); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1138: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1220); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1139: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1046); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1221); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1140: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'n') ADVANCE(1203); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1047); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1141: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1204); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1142: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1143: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1144: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1145: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1159); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1146: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1160); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1147: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 's') ADVANCE(1238); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1148: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1149: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1164); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1150: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1047); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1165); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1151: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1179); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1152: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 's') ADVANCE(1238); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1180); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1153: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1154: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1140); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1155: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1141); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1156: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 's') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1169); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1157: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1202); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 's') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1158: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'o') ADVANCE(1170); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1203); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1159: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(1590); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1171); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1160: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'p') ADVANCE(1151); - if (lookahead == 't') ADVANCE(1080); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'p') ADVANCE(1591); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1161: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'p') ADVANCE(1152); + if (lookahead == 't') ADVANCE(1081); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1162: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1212); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1163: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1571); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1213); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1164: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1572); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1165: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1662); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1166: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1834); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1663); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1167: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1168: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1826); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1169: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1810); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1827); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1170: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1804); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1811); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1171: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1805); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1172: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1043); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1173: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1044); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1174: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1127); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1175: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1226); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1128); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1176: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1149); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1227); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1177: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1128); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1150); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1178: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1118); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1129); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1179: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1198); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1119); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1180: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1059); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1199); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1181: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1210); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1060); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1182: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'r') ADVANCE(1213); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1211); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1183: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1214); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1184: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(973); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1185: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1004); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(974); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1186: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1055); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1005); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1187: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1197); - if (lookahead == 't') ADVANCE(1101); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1056); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1188: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1058); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1198); + if (lookahead == 't') ADVANCE(1102); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1189: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1209); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1059); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1190: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1199); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1210); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1191: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1068); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1200); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1192: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 's') ADVANCE(1006); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1069); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1193: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(977); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1007); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1194: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1041); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(978); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1195: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(987); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1042); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1196: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1845); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(988); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1197: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(992); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1846); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1198: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(967); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(993); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1199: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1529); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(968); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1200: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1003); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1530); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1201: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1840); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1004); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1202: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1005); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1841); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1203: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1101); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1006); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1204: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1102); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1205: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1093); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1206: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 't') ADVANCE(1094); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1207: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1214); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1095); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1208: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1042); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1215); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1209: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1081); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1043); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1210: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 't') ADVANCE(1192); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1082); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1211: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1172); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1193); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1212: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1057); - if (lookahead == 'y') ADVANCE(1643); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1173); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1213: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1057); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1058); + if (lookahead == 'y') ADVANCE(1644); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1214: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1177); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1058); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1215: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1063); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1178); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1216: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'u') ADVANCE(1121); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1064); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1217: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(983); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(1122); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1218: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1671); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'v') ADVANCE(984); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1219: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1483); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'v') ADVANCE(1672); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1220: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1658); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'v') ADVANCE(1484); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1221: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'v') ADVANCE(1659); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1222: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(1679); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1223: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'w') ADVANCE(1107); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'w') ADVANCE(1680); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1224: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'w') ADVANCE(1108); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1225: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'w') ADVANCE(1109); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1226: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1643); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'y') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1227: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'y') ADVANCE(1675); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'y') ADVANCE(1644); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1228: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'y') ADVANCE(1676); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1229: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1230: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1232); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1231: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1236); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1233); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1232: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1235); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'i') ADVANCE(1237); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1233: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1236); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1234: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'n') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1235: ACCEPT_TOKEN(sym_cmd_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1231); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1236: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1237); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1232); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1237: ACCEPT_TOKEN(sym_cmd_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1238: ACCEPT_TOKEN(sym_cmd_identifier); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1239: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(591); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + ACCEPT_TOKEN(sym_cmd_identifier); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1240: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(637); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(592); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1241: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(727); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(638); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1242: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(728); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(601); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1244: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(664); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(602); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(728); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(665); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1246: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(681); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(729); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(729); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(682); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1248: ACCEPT_TOKEN(sym_identifier); - ADVANCE_MAP( - 'I', 1324, - '_', 1257, - 'i', 1324, - 'n', 1267, - '+', 582, - '-', 582, - 'B', 1333, - 'b', 1333, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '-') ADVANCE(730); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == '_') ADVANCE(1257); - if (lookahead == 'i') ADVANCE(1263); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + ADVANCE_MAP( + 'I', 1325, + '_', 1259, + 'i', 1325, + 'n', 1268, + '+', 583, + '-', 583, + 'B', 1334, + 'b', 1334, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == 'n') ADVANCE(1267); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'i') ADVANCE(1264); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'n') ADVANCE(1268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1263); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1285); - if (lookahead == 'o') ADVANCE(1266); - if (lookahead == 's') ADVANCE(1333); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1264); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1333); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1286); + if (lookahead == 'o') ADVANCE(1267); + if (lookahead == 's') ADVANCE(1334); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1255); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1286); + if (lookahead == 's') ADVANCE(1334); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1257); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(1256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1256); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1257: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 1259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1277); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(1259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1260: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1322); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'a') ADVANCE(1278); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1261: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1303); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'a') ADVANCE(1323); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1262: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1307); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'a') ADVANCE(1304); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1263: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'a') ADVANCE(1308); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1265: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1816); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'c') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1266: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1719); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'd') ADVANCE(1817); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1267: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1310); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'd') ADVANCE(1720); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1911); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'd') ADVANCE(1311); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1920); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1912); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1264); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1921); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1264); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1265); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1244); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1265); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1280); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1245); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1314); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1281); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1311); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(1315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(1312); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1309); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'k') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1901); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1310); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1278); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1902); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1281); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1279); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1242); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1282); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1243); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1282); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1244); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1297); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'l') ADVANCE(1283); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1333); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'm') ADVANCE(1298); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1265); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1334); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1266); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1267); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1272); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1268); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1313); - if (lookahead == 'u') ADVANCE(1279); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1328); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1273); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1314); + if (lookahead == 'u') ADVANCE(1280); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1329); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1292: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(1317); - if (lookahead == 's') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1293: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(1317); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1266); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1267); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1295: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(1302); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1305); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1303); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1296); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1305); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'p') ADVANCE(1297); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1320); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1832); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1321); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1824); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1833); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1519); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1825); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1319); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1520); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1306); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1320); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1318); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1319); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1295); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1307); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1247); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1296); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1248); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1269); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1241); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1270); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1315); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1242); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1245); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1316); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1843); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1246); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1239); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1844); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1528); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1240); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1529); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1240); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1241); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1246); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1312); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1247); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1268); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(1313); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1283); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'u') ADVANCE(1269); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'u') ADVANCE(1284); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1328); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'y') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1329); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1327); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1331); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1328); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1327: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1330); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'i') ADVANCE(1332); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1331); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1325); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'n') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1326); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1332); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1327); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1333: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1335: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'r') ADVANCE(1417); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1336: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2189); - if (lookahead == '>') ADVANCE(2061); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'r') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1337: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2169); - if (lookahead == '>') ADVANCE(2063); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == '+') ADVANCE(2190); + if (lookahead == '>') ADVANCE(2062); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1338: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1474); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1338); + if (lookahead == '+') ADVANCE(2170); + if (lookahead == '>') ADVANCE(2064); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1339: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1339); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1339); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == '-') ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1339); END_STATE(); case 1340: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == '_') ADVANCE(1340); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1340); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1341: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1393); - if (lookahead == 'o') ADVANCE(1413); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == '_') ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1341); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1342: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1383); + if (lookahead == 'a') ADVANCE(1394); + if (lookahead == 'o') ADVANCE(1414); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1343: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1454); + if (lookahead == 'a') ADVANCE(1384); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1344: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1385); + if (lookahead == 'a') ADVANCE(1455); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1345: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'a') ADVANCE(1386); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1346: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1434); - if (lookahead == 'o') ADVANCE(1349); - if (lookahead == 'u') ADVANCE(1435); + if (lookahead == 'a') ADVANCE(1428); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1347: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1378); + if (lookahead == 'a') ADVANCE(1435); + if (lookahead == 'o') ADVANCE(1350); + if (lookahead == 'u') ADVANCE(1436); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1348: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1361); + if (lookahead == 'c') ADVANCE(1379); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1349: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1448); + if (lookahead == 'c') ADVANCE(1362); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1350: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1355); + if (lookahead == 'd') ADVANCE(1449); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1351: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1375); - if (lookahead == 'o') ADVANCE(1601); + if (lookahead == 'd') ADVANCE(1356); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1352: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1405); + if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'o') ADVANCE(1602); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1353: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1434); + if (lookahead == 'o') ADVANCE(1406); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1354: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1497); + if (lookahead == 'e') ADVANCE(1377); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1355: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1668); + if (lookahead == 'e') ADVANCE(1498); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1356: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1910); + if (lookahead == 'e') ADVANCE(1669); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1357: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1919); + if (lookahead == 'e') ADVANCE(1911); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1358: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1696); + if (lookahead == 'e') ADVANCE(1920); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1359: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1596); + if (lookahead == 'e') ADVANCE(1697); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1360: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1492); + if (lookahead == 'e') ADVANCE(1597); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1361: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1655); + if (lookahead == 'e') ADVANCE(1493); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1362: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1566); + if (lookahead == 'e') ADVANCE(1656); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1363: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1912); + if (lookahead == 'e') ADVANCE(1567); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1364: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1921); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1913); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1365: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1342); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'e') ADVANCE(1922); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1366: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1398); + if (lookahead == 'e') ADVANCE(1343); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1367: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1424); + if (lookahead == 'e') ADVANCE(1399); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1368: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1399); + if (lookahead == 'e') ADVANCE(1425); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1369: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1401); + if (lookahead == 'e') ADVANCE(1400); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1370: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'e') ADVANCE(1402); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1371: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1421); + if (lookahead == 'e') ADVANCE(1403); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1372: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1415); + if (lookahead == 'e') ADVANCE(1422); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1373: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1426); - if (lookahead == 'i') ADVANCE(1391); + if (lookahead == 'e') ADVANCE(1416); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1374: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(1606); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1457); + if (lookahead == 'e') ADVANCE(1427); + if (lookahead == 'i') ADVANCE(1392); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1375: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(1478); + if (lookahead == 'f') ADVANCE(1607); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1458); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(1382); - if (lookahead == 't') ADVANCE(1446); + if (lookahead == 'f') ADVANCE(1479); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1373); + if (lookahead == 'g') ADVANCE(1383); + if (lookahead == 't') ADVANCE(1447); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1615); + if (lookahead == 'h') ADVANCE(1374); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1350); + if (lookahead == 'h') ADVANCE(1616); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1351); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1400); + if (lookahead == 'i') ADVANCE(1346); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1432); + if (lookahead == 'i') ADVANCE(1401); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(1562); + if (lookahead == 'i') ADVANCE(1433); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1900); + if (lookahead == 'k') ADVANCE(1563); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1428); + if (lookahead == 'l') ADVANCE(1901); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1902); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == 'l') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1380); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'l') ADVANCE(1903); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1384); + if (lookahead == 'l') ADVANCE(1381); + if (lookahead == 's') ADVANCE(1682); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1343); + if (lookahead == 'l') ADVANCE(1385); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1386); + if (lookahead == 'l') ADVANCE(1344); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1359); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'l') ADVANCE(1387); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1360); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1431); + if (lookahead == 'l') ADVANCE(1361); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1430); + if (lookahead == 'l') ADVANCE(1432); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1487); + if (lookahead == 'n') ADVANCE(1431); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1649); + if (lookahead == 'n') ADVANCE(1488); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1584); + if (lookahead == 'n') ADVANCE(1650); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1449); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'n') ADVANCE(1585); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'n') ADVANCE(1450); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1451); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1451); + if (lookahead == 'n') ADVANCE(1448); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'n') ADVANCE(1452); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1453); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1444); + if (lookahead == 'o') ADVANCE(1395); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1410); + if (lookahead == 'o') ADVANCE(1445); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1439); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); + if (lookahead == 'o') ADVANCE(1411); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1436); - if (lookahead == 'u') ADVANCE(1388); + if (lookahead == 'o') ADVANCE(1440); + if (lookahead == 'u') ADVANCE(1391); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1463); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == 'a') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1437); + if (lookahead == 'u') ADVANCE(1389); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1464); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1425); + if (lookahead == 'o') ADVANCE(1415); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1589); + if (lookahead == 'o') ADVANCE(1426); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1409); - if (lookahead == 't') ADVANCE(1371); + if (lookahead == 'p') ADVANCE(1590); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1445); + if (lookahead == 'p') ADVANCE(1410); + if (lookahead == 't') ADVANCE(1372); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1570); + if (lookahead == 'r') ADVANCE(1446); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(1571); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1661); + if (lookahead == 'r') ADVANCE(1519); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1442); + if (lookahead == 'r') ADVANCE(1662); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1336); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == 'r') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1365); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'r') ADVANCE(1337); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1348); + if (lookahead == 'r') ADVANCE(1366); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1422); - if (lookahead == 'x') ADVANCE(1411); + if (lookahead == 'r') ADVANCE(1349); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1395); + if (lookahead == 'r') ADVANCE(1423); + if (lookahead == 'x') ADVANCE(1412); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1408); + if (lookahead == 'r') ADVANCE(1396); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1396); + if (lookahead == 'r') ADVANCE(1409); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1389); + if (lookahead == 'r') ADVANCE(1397); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1438); + if (lookahead == 'r') ADVANCE(1390); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1358); + if (lookahead == 'r') ADVANCE(1439); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(972); + if (lookahead == 'r') ADVANCE(1359); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1364); + if (lookahead == 's') ADVANCE(973); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1354); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 's') ADVANCE(1365); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1437); - if (lookahead == 't') ADVANCE(1381); + if (lookahead == 's') ADVANCE(1355); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1357); + if (lookahead == 's') ADVANCE(1438); + if (lookahead == 't') ADVANCE(1382); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1441); + if (lookahead == 's') ADVANCE(1358); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(980); + if (lookahead == 's') ADVANCE(1442); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1347); + if (lookahead == 't') ADVANCE(981); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(986); + if (lookahead == 't') ADVANCE(1348); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1842); + if (lookahead == 't') ADVANCE(987); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(991); + if (lookahead == 't') ADVANCE(1843); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(969); + if (lookahead == 't') ADVANCE(992); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1844); + if (lookahead == 't') ADVANCE(970); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1337); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == 't') ADVANCE(1845); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1372); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 't') ADVANCE(1338); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1363); + if (lookahead == 't') ADVANCE(1373); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (lookahead == 'u') ADVANCE(1364); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1419); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'u') ADVANCE(1391); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1356); - if (lookahead == 'y') ADVANCE(1642); + if (lookahead == 'u') ADVANCE(1420); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1423); + if (lookahead == 'u') ADVANCE(1357); + if (lookahead == 'y') ADVANCE(1643); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1362); + if (lookahead == 'u') ADVANCE(1424); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1392); + if (lookahead == 'u') ADVANCE(1363); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(982); + if (lookahead == 'u') ADVANCE(1393); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1670); + if (lookahead == 'v') ADVANCE(983); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1482); + if (lookahead == 'v') ADVANCE(1671); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1657); + if (lookahead == 'v') ADVANCE(1483); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1367); + if (lookahead == 'v') ADVANCE(1658); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(1674); + if (lookahead == 'v') ADVANCE(1368); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1463); + if (lookahead == 'y') ADVANCE(1675); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1456: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); + lookahead == 'a') ADVANCE(1464); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1461); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1458: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1462); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1469); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1460: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1470); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1461: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1467); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == 'i') ADVANCE(1471); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1462: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1468); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1473); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1464: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1457); + lookahead == 'n') ADVANCE(1474); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1465: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1474); + lookahead == 'n') ADVANCE(1458); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1466: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1458); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + lookahead == 'n') ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1467: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1459); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1468: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1460); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1471); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1461); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1470: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || lookahead == 't') ADVANCE(1472); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1471: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1473); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1473); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1472: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(1474); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1474: ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(1475); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(1476); END_STATE(); case 1477: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1478: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1479: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1480: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1482: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1483: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1484: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1486: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1487: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1488: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1489: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1497: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1498: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1499: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1501: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1505: ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1510: ACCEPT_TOKEN(anon_sym_PIPE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_PIPE); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1512: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2019); - if (lookahead == '\'') ADVANCE(2016); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2019); - if (lookahead == '\'') ADVANCE(2016); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '"') ADVANCE(2020); + if (lookahead == '\'') ADVANCE(2017); END_STATE(); case 1514: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '"') ADVANCE(2020); + if (lookahead == '\'') ADVANCE(2017); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1515: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1516: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1517: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1518: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1519: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1520: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1521: ACCEPT_TOKEN(anon_sym_error); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1522: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_error); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1523: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1524: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1525: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_list); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1527: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1528: ACCEPT_TOKEN(anon_sym_list); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1529: ACCEPT_TOKEN(anon_sym_list); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_list); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1531: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1761); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1762); END_STATE(); case 1533: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '=') ADVANCE(1766); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1534: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1765); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '=') ADVANCE(1767); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1535: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1768); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '=') ADVANCE(1766); END_STATE(); case 1536: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1767); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '=') ADVANCE(1769); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1768); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1539: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1542: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); END_STATE(); case 1543: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1545: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1541); END_STATE(); case 1546: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1541); - if (lookahead == '=') ADVANCE(1692); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 1547: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '=') ADVANCE(1693); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); + lookahead == 'i') ADVANCE(2042); END_STATE(); case 1548: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1543); + if (lookahead == '-') ADVANCE(1542); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2909); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'i') ADVANCE(744); END_STATE(); case 1549: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1543); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1544); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2910); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1550: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1542); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '-') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1551: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(1692); + if (lookahead == '-') ADVANCE(1543); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3514); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1552: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(1692); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + if (lookahead == '=') ADVANCE(1693); END_STATE(); case 1553: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + if (lookahead == '=') ADVANCE(1693); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2886); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == 'i') ADVANCE(2042); END_STATE(); case 1554: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + lookahead == 'i') ADVANCE(2887); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1555: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); + lookahead == 'i') ADVANCE(2042); END_STATE(); case 1556: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2909); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'i') ADVANCE(744); END_STATE(); case 1557: ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2910); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1558: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1559: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); END_STATE(); case 1560: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2051); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1562: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1563: ACCEPT_TOKEN(anon_sym_break); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1564: ACCEPT_TOKEN(anon_sym_break); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_break); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1566: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1567: ACCEPT_TOKEN(anon_sym_continue); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1568: ACCEPT_TOKEN(anon_sym_continue); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_continue); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1570: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1571: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1572: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1574: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1575: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2883); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == 'f') ADVANCE(2442); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1576: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1232); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'f') ADVANCE(2884); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2905); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == 'f') ADVANCE(1233); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1578: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2904); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'f') ADVANCE(2906); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1957); + lookahead == 'f') ADVANCE(2905); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1580: ACCEPT_TOKEN(anon_sym_in); @@ -48994,11823 +49016,11828 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1581: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1960); + lookahead == 'f') ADVANCE(1959); END_STATE(); case 1582: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1961); END_STATE(); case 1583: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1584: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1585: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1586: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1587: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1589: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1590: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1591: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_make); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1593: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1594: ACCEPT_TOKEN(anon_sym_make); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_make); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1599: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_do); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_do); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_do); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1605: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1606: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1607: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1608: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1609: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1610: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1611: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1612: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1613: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1614: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1615: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1616: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1617: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1618: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1619: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1620: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1621: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 1622: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(1892); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1623: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1893); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1624: ACCEPT_TOKEN(anon_sym__); if (lookahead == '_') ADVANCE(2153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1625: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1626: ACCEPT_TOKEN(anon_sym__); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2518); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1627: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym__); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1628: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1629: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1630: ACCEPT_TOKEN(anon_sym_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1631: ACCEPT_TOKEN(anon_sym_DOT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1632: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(anon_sym_DOT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1633: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(555); END_STATE(); case 1634: ACCEPT_TOKEN(anon_sym_DOT2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + if (lookahead == '.') ADVANCE(556); END_STATE(); case 1635: ACCEPT_TOKEN(anon_sym_DOT2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 1636: ACCEPT_TOKEN(anon_sym_DOT2); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1637: ACCEPT_TOKEN(anon_sym_DOT2); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1638: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT2); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 1639: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(2019); - if (lookahead == '\'') ADVANCE(2016); END_STATE(); case 1640: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(2020); + if (lookahead == '\'') ADVANCE(2017); END_STATE(); case 1641: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1642: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1643: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1644: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1645: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1646: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1647: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1648: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1649: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1650: ACCEPT_TOKEN(anon_sym_return); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1651: ACCEPT_TOKEN(anon_sym_return); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1652: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2603); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_return); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1653: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1079); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(2604); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1654: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1080); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1655: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1370); + if (lookahead == '-') ADVANCE(2603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); + END_STATE(); + case 1656: + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(1371); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); - case 1656: + case 1657: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); - case 1657: + case 1658: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); - END_STATE(); - case 1658: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1659: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1660: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1661: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1662: ACCEPT_TOKEN(anon_sym_register); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1663: ACCEPT_TOKEN(anon_sym_register); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1664: - ACCEPT_TOKEN(anon_sym_hide); + ACCEPT_TOKEN(anon_sym_register); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1665: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2597); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1666: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1077); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(2598); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1667: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2596); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1078); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1668: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1368); + if (lookahead == '-') ADVANCE(2597); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); + END_STATE(); + case 1669: + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == '-') ADVANCE(1369); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); - case 1669: + case 1670: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); - case 1670: + case 1671: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == '!' || lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); - END_STATE(); - case 1671: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1672: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1673: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1674: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1675: ACCEPT_TOKEN(anon_sym_overlay); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1676: ACCEPT_TOKEN(anon_sym_overlay); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1677: - ACCEPT_TOKEN(anon_sym_new); + ACCEPT_TOKEN(anon_sym_overlay); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1678: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); END_STATE(); case 1679: ACCEPT_TOKEN(anon_sym_new); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1680: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + ACCEPT_TOKEN(anon_sym_new); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1681: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1682: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1683: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1684: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1685: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1700); END_STATE(); case 1686: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1700); - if (lookahead == '=') ADVANCE(1693); + if (lookahead == '*') ADVANCE(1701); END_STATE(); case 1687: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1703); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '*') ADVANCE(1701); + if (lookahead == '=') ADVANCE(1694); END_STATE(); case 1688: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1702); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '*') ADVANCE(1704); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1689: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1701); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == '*') ADVANCE(1703); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1690: ACCEPT_TOKEN(anon_sym_STAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '*') ADVANCE(1702); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1691: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1692: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 1693: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 1694: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 1695: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 1696: - ACCEPT_TOKEN(anon_sym_where); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 1697: ACCEPT_TOKEN(anon_sym_where); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1698: ACCEPT_TOKEN(anon_sym_where); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1699: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_where); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1700: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1701: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1702: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1703: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1704: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1705: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1706: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '=') ADVANCE(1695); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1707: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '=') ADVANCE(1696); END_STATE(); case 1708: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1709: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '/') ADVANCE(1725); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1710: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1724); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '/') ADVANCE(1726); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1711: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1724); - if (lookahead == '=') ADVANCE(1694); + if (lookahead == '/') ADVANCE(1725); END_STATE(); case 1712: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1727); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '/') ADVANCE(1725); + if (lookahead == '=') ADVANCE(1695); END_STATE(); case 1713: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1726); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '/') ADVANCE(1728); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1714: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1727); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1715: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1716: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(2669); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1717: ACCEPT_TOKEN(anon_sym_mod); if (lookahead == 'u') ADVANCE(2670); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1718: ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(1121); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(2671); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1719: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'u') ADVANCE(1122); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1720: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1721: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_mod); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1724: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_mod); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1726: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1727: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1728: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1729: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1706); - if (lookahead == '=') ADVANCE(1691); END_STATE(); case 1730: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1704); + if (lookahead == '+') ADVANCE(1707); + if (lookahead == '=') ADVANCE(1692); END_STATE(); case 1731: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1708); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '+') ADVANCE(1705); END_STATE(); case 1732: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1707); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '+') ADVANCE(1709); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1733: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1705); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == '+') ADVANCE(1708); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1734: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == '+') ADVANCE(1706); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1735: ACCEPT_TOKEN(anon_sym_PLUS); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1736: ACCEPT_TOKEN(anon_sym_PLUS); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_PLUS); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1738: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1739: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1740: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1741: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1742: ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1744: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1745: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1746: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1747: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1748: ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1750: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1751: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1752: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1754: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1755: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1756: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1757: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '=') ADVANCE(1762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1758: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1761); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '=') ADVANCE(1763); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1759: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1764); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '=') ADVANCE(1762); END_STATE(); case 1760: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1763); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '=') ADVANCE(1765); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1761: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1764); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1762: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1763: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1764: ACCEPT_TOKEN(anon_sym_LT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1765: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1766: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1767: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1768: ACCEPT_TOKEN(anon_sym_GT_EQ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1769: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_GT_EQ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1770: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1771: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1772: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1773: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1774: ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1775: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHin); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1776: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1777: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1778: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1779: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1780: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1781: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1782: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1783: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1784: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1785: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1786: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1787: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1788: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1789: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1790: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1791: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1792: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1793: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1794: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 1795: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1796: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1797: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1798: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1799: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1800: ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1801: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1802: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1803: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1804: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1805: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1806: ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1807: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1808: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1809: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1810: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1811: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1812: ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1813: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHor); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1814: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1815: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1816: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1817: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1818: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1819: ACCEPT_TOKEN(anon_sym_and); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1820: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1821: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_and); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1822: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1823: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1824: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1825: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1826: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1827: ACCEPT_TOKEN(anon_sym_xor); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1828: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1829: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_xor); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1830: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1831: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1832: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 1833: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1834: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1835: ACCEPT_TOKEN(anon_sym_or); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1836: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1837: - ACCEPT_TOKEN(anon_sym_not); + ACCEPT_TOKEN(anon_sym_or); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1838: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(637); END_STATE(); case 1839: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(2632); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(638); END_STATE(); case 1840: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(1106); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(2633); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1841: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(2640); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1107); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1842: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == '-') ADVANCE(2641); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1843: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1844: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1845: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1846: ACCEPT_TOKEN(anon_sym_not); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1847: ACCEPT_TOKEN(anon_sym_not); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1848: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_not); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1849: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1850: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '>') ADVANCE(1620); - if (lookahead == '~') ADVANCE(1787); END_STATE(); case 1851: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1621); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 1852: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 1853: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(2241); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + ACCEPT_TOKEN(anon_sym_EQ2); + if (lookahead == '>') ADVANCE(1621); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3462); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '-') ADVANCE(2242); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(762); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '-') ADVANCE(3463); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1856); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '-') ADVANCE(763); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1857); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1858); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2027); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1859); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1860); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1861); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1862); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1863); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2078); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1864); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1870); + if (lookahead == '_') ADVANCE(1865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1872); + if (lookahead == '_') ADVANCE(1879); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (lookahead == '_') ADVANCE(1879); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1873); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1879); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1875); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1855); + if (lookahead == '_') ADVANCE(1879); + if (lookahead == 'b') ADVANCE(2046); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'x') ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1869); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1853); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1870); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1854); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1854); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1872); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1873); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1855); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1870); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1872); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1873); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1875); END_STATE(); case 1879: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1879); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1880); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1882); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1883: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1883); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1884: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1884); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1885: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1541); END_STATE(); case 1886: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1541); - if (lookahead == '=') ADVANCE(1692); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 1887: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '=') ADVANCE(1693); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); + lookahead == 'i') ADVANCE(2042); END_STATE(); case 1888: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + lookahead == 'i') ADVANCE(744); END_STATE(); case 1889: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); + lookahead == 'i') ADVANCE(2042); END_STATE(); case 1890: - ACCEPT_TOKEN(anon_sym_PLUS2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(744); END_STATE(); case 1891: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1706); - if (lookahead == '=') ADVANCE(1691); END_STATE(); case 1892: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1892); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1707); + if (lookahead == '=') ADVANCE(1692); END_STATE(); case 1893: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1894: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2027); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 1895: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 1896: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2078); END_STATE(); case 1897: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1897); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 1898: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(1898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 1899: ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1900: ACCEPT_TOKEN(anon_sym_null); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1901: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1902: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1903: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1904: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1905: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1906: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1907: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1908: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1909: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1910: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1911: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1912: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1913: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1914: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1915: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1916: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1917: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1918: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); END_STATE(); case 1919: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == '!' || - lookahead == '.' || - lookahead == '?') ADVANCE(1238); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1473); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1920: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '!' || + lookahead == '.' || + lookahead == '?') ADVANCE(1239); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); END_STATE(); case 1921: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 1922: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1475); END_STATE(); case 1923: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 1924: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 1925: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1926: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2241); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1927: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3462); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '-') ADVANCE(2242); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1928: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2115); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '-') ADVANCE(3463); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1929: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(762); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '-') ADVANCE(2116); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1930: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2055); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '-') ADVANCE(763); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1931: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '-') ADVANCE(2056); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1932: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1940); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 1933: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1941); END_STATE(); case 1934: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 1935: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1946); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 1936: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1947); END_STATE(); case 1937: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1929); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(2046); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'x') ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 1938: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1937); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1930); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1930); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); END_STATE(); case 1940: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1931); END_STATE(); case 1941: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1926); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1940); END_STATE(); case 1942: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1941); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1927); END_STATE(); case 1943: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1927); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1928); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1928); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1929); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1946); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1940); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1941); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1946); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1947); END_STATE(); case 1953: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); + END_STATE(); + case 1954: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1953); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1954); END_STATE(); - case 1954: + case 1955: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1954); - END_STATE(); - case 1955: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(1955); END_STATE(); case 1956: - ACCEPT_TOKEN(aux_sym__val_number_token4); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1956); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2231); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3455); + lookahead == 'i') ADVANCE(2232); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); + lookahead == 'i') ADVANCE(3456); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(747); + lookahead == 'i') ADVANCE(2109); END_STATE(); case 1961: - ACCEPT_TOKEN(aux_sym__val_number_token5); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(748); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(744); + lookahead == 'i') ADVANCE(2043); END_STATE(); case 1964: - ACCEPT_TOKEN(aux_sym__val_number_token6); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(745); END_STATE(); case 1965: - ACCEPT_TOKEN(sym_filesize_unit); + ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); case 1966: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(2212); END_STATE(); case 1967: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3439); + if (lookahead == 'i') ADVANCE(2213); END_STATE(); case 1968: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'i') ADVANCE(3440); END_STATE(); case 1969: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 1970: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 1971: ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == ',') ADVANCE(2937); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1954); + lookahead == '_') ADVANCE(2448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1972: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2916); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == '_') ADVANCE(1955); END_STATE(); case 1973: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == '_') ADVANCE(2917); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1974: - ACCEPT_TOKEN(anon_sym_0o); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3518); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1975: ACCEPT_TOKEN(anon_sym_0o); + if (lookahead == ',') ADVANCE(2937); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1955); + lookahead == '_') ADVANCE(2451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1976: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2919); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == '_') ADVANCE(1956); END_STATE(); case 1977: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3520); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == '_') ADVANCE(2920); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1978: - ACCEPT_TOKEN(anon_sym_0x); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2464); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3521); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1979: ACCEPT_TOKEN(anon_sym_0x); + if (lookahead == ',') ADVANCE(2937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1953); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 1980: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2933); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1954); END_STATE(); case 1981: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3534); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2934); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 1982: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 1983: + ACCEPT_TOKEN(anon_sym_LBRACK2); + END_STATE(); + case 1984: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1983); - END_STATE(); - case 1984: - ACCEPT_TOKEN(sym_val_date); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1984); END_STATE(); case 1985: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(756); - if (lookahead == '+' || - lookahead == '-') ADVANCE(556); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); END_STATE(); case 1986: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2239); + if (lookahead == '.') ADVANCE(757); if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); + lookahead == '-') ADVANCE(557); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); END_STATE(); case 1987: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3464); + if (lookahead == '.') ADVANCE(2240); if (lookahead == '+' || - lookahead == '-') ADVANCE(3374); + lookahead == '-') ADVANCE(2132); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); END_STATE(); case 1988: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2118); + if (lookahead == '.') ADVANCE(3465); if (lookahead == '+' || - lookahead == '-') ADVANCE(2088); + lookahead == '-') ADVANCE(3375); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); END_STATE(); case 1989: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(755); + if (lookahead == '.') ADVANCE(2119); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2089); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1985); END_STATE(); case 1990: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2003); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2235); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(756); END_STATE(); case 1991: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2004); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3459); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2236); END_STATE(); case 1992: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2005); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2112); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3460); END_STATE(); case 1993: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2244); + if (lookahead == ':') ADVANCE(2006); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2113); END_STATE(); case 1994: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3468); + if (lookahead == 'T') ADVANCE(2245); END_STATE(); case 1995: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2120); + if (lookahead == 'T') ADVANCE(3469); END_STATE(); case 1996: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2052); + if (lookahead == 'T') ADVANCE(2121); END_STATE(); case 1997: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(765); + if (lookahead == 'T') ADVANCE(2053); END_STATE(); case 1998: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(556); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1998); + if (lookahead == 'T') ADVANCE(766); END_STATE(); case 1999: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); + lookahead == '-') ADVANCE(557); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1999); END_STATE(); case 2000: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3374); + lookahead == '-') ADVANCE(2132); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2000); END_STATE(); case 2001: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2088); + lookahead == '-') ADVANCE(3375); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1984); + lookahead == 'z') ADVANCE(1985); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); END_STATE(); case 2002: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(755); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2089); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); END_STATE(); case 2003: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2235); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(756); END_STATE(); case 2004: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3459); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2236); END_STATE(); case 2005: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2112); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3460); END_STATE(); case 2006: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2113); END_STATE(); case 2007: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 2008: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(2008); + if (lookahead == '#') ADVANCE(2009); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2007); + lookahead == ' ') ADVANCE(2008); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(2008); + lookahead != '\\') ADVANCE(2009); END_STATE(); - case 2008: + case 2009: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2008); + lookahead != '\\') ADVANCE(2009); END_STATE(); - case 2009: + case 2010: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 2010: + case 2011: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 2011: + case 2012: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 2012: + case 2013: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(2013); + if (lookahead == '#') ADVANCE(2014); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2012); + lookahead == ' ') ADVANCE(2013); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(2013); + lookahead != '\\') ADVANCE(2014); END_STATE(); - case 2013: + case 2014: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(2013); + lookahead != '\\') ADVANCE(2014); END_STATE(); - case 2014: + case 2015: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(2015); + if (lookahead == '#') ADVANCE(2016); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2014); + lookahead == ' ') ADVANCE(2015); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2015); + lookahead != '(') ADVANCE(2016); END_STATE(); - case 2015: + case 2016: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2015); - END_STATE(); - case 2016: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + lookahead != '(') ADVANCE(2016); END_STATE(); case 2017: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 2018: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(2009); - if (lookahead != 0) ADVANCE(544); END_STATE(); case 2019: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(2010); + if (lookahead != 0) ADVANCE(545); END_STATE(); case 2020: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 2021: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 2022: - ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3593); - if (lookahead == '.') ADVANCE(1637); - if (lookahead == '_') ADVANCE(1894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2027); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2028); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3593); - if (lookahead == '.') ADVANCE(1637); - if (lookahead == '_') ADVANCE(1897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2028); + if (lookahead == '#') ADVANCE(3594); + if (lookahead == '.') ADVANCE(1638); + if (lookahead == '_') ADVANCE(1895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2028); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2029); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3593); - if (lookahead == '_') ADVANCE(2026); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (lookahead == '#') ADVANCE(3594); + if (lookahead == '.') ADVANCE(1638); + if (lookahead == '_') ADVANCE(1898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2029); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '#') ADVANCE(3593); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (lookahead == '#') ADVANCE(3594); + if (lookahead == '_') ADVANCE(2027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (lookahead == '_') ADVANCE(2026); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (lookahead == '#') ADVANCE(3594); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2027); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (lookahead == '_') ADVANCE(2027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2029: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(aux_sym__list_item_starts_with_sign_token1); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2030: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2029); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2030); END_STATE(); case 2031: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(3589); - if (lookahead == '.') ADVANCE(1634); - if (lookahead == '_') ADVANCE(1896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1859); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(2030); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2031); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + if (lookahead == '#') ADVANCE(3590); + if (lookahead == '.') ADVANCE(1635); + if (lookahead == '_') ADVANCE(1897); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1860); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 2033: - ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(2051); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '-') ADVANCE(2055); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == '-') ADVANCE(2052); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == ':') ADVANCE(760); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2057); + if (lookahead == '-') ADVANCE(2056); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == ':') ADVANCE(761); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '_') ADVANCE(2038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1962); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == '_') ADVANCE(2039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2043); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1963); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2039); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2044); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym__record_key_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2040); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2044); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2041); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1961); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1954); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1962); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(1955); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2034); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1956); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1996); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2035); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2035); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2047); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2036); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2048); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2049); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2033); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2051); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym__record_key_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2054); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2034); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); case 2056: + ACCEPT_TOKEN(aux_sym__record_key_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2055); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); + END_STATE(); + case 2057: ACCEPT_TOKEN(aux_sym__record_key_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1953); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1954); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); - case 2057: + case 2058: ACCEPT_TOKEN(aux_sym__record_key_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2058); END_STATE(); - case 2058: + case 2059: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2058); - END_STATE(); - case 2059: - ACCEPT_TOKEN(anon_sym_CARET); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2059); END_STATE(); case 2060: ACCEPT_TOKEN(anon_sym_CARET); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2061: - ACCEPT_TOKEN(anon_sym_err_GT); + ACCEPT_TOKEN(anon_sym_CARET); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2062: ACCEPT_TOKEN(anon_sym_err_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2063: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_err_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2064: ACCEPT_TOKEN(anon_sym_out_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2065: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_out_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2066: ACCEPT_TOKEN(anon_sym_e_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2067: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(anon_sym_e_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2068: ACCEPT_TOKEN(anon_sym_o_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2069: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(anon_sym_o_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2070: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2071: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2072: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2073: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2074: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2075: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2076: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); END_STATE(); case 2077: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2077); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2149); - if (lookahead == '-') ADVANCE(2151); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == '_') ADVANCE(2151); - if (lookahead == 'r') ADVANCE(2198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2078); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'r') ADVANCE(1829); - if (lookahead == 'u') ADVANCE(2213); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2150); + if (lookahead == '-') ADVANCE(2152); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == '_') ADVANCE(2152); + if (lookahead == 'r') ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(2213); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'r') ADVANCE(1830); + if (lookahead == 'u') ADVANCE(2214); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 2187, - '>', 2065, - 'I', 2226, - 'i', 2226, - 'n', 2163, - 'r', 2198, - 'B', 1965, - 'b', 1965, - ); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(2214); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'r') ADVANCE(2198); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + ADVANCE_MAP( + '+', 2188, + '>', 2066, + 'I', 2227, + 'i', 2227, + 'n', 2164, + 'r', 2199, + 'B', 1966, + 'b', 1966, + ); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'n') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2198); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'r') ADVANCE(2199); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'r') ADVANCE(2198); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'n') ADVANCE(2164); + if (lookahead == 'r') ADVANCE(2199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2189); - if (lookahead == '>') ADVANCE(2061); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'r') ADVANCE(2199); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2169); - if (lookahead == '>') ADVANCE(2063); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '+') ADVANCE(2190); + if (lookahead == '>') ADVANCE(2062); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == '-') ADVANCE(2116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == '+') ADVANCE(2170); + if (lookahead == '>') ADVANCE(2064); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == '2') ADVANCE(2111); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2119); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == '-') ADVANCE(2117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == ':') ADVANCE(2122); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == '2') ADVANCE(2112); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == ':') ADVANCE(2124); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == ':') ADVANCE(2123); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == '_') ADVANCE(2091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == ':') ADVANCE(2125); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'a') ADVANCE(2096); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == '_') ADVANCE(2092); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'e') ADVANCE(1908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'a') ADVANCE(2097); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'e') ADVANCE(1917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'e') ADVANCE(1909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'l') ADVANCE(1898); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'e') ADVANCE(1918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'l') ADVANCE(2100); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'l') ADVANCE(1899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'l') ADVANCE(2095); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'l') ADVANCE(2101); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'o') ADVANCE(2101); - if (lookahead == 'u') ADVANCE(2097); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'l') ADVANCE(2096); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'r') ADVANCE(2102); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'o') ADVANCE(2102); + if (lookahead == 'u') ADVANCE(2098); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2107); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 's') ADVANCE(2094); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'r') ADVANCE(2103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 't') ADVANCE(1837); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 's') ADVANCE(2095); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'u') ADVANCE(2093); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 't') ADVANCE(1838); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'u') ADVANCE(2094); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2107); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1960); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1964); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2110); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); + if (lookahead == ',') ADVANCE(2249); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + lookahead == 'n') ADVANCE(1965); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); + if (lookahead == ',') ADVANCE(2249); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2110); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1956); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2111); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1957); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1993); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2114); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1989); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1993); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2115); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2089); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2123); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(2248); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2125); + if (lookahead == ',') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2156); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == ',') ADVANCE(2249); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2126); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2174); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '-') ADVANCE(2157); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2222); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '-') ADVANCE(2175); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2243); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '-') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '-') ADVANCE(2244); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2234); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2240); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '-') ADVANCE(2224); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2245); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '2') ADVANCE(2235); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2241); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2247); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == ':') ADVANCE(2246); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == ':') ADVANCE(2248); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2075); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2073); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '>') ADVANCE(2076); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2069); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '>') ADVANCE(2074); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2071); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '>') ADVANCE(2070); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - 'I', 2226, - '_', 2151, - 'i', 2226, - 'n', 2163, - '+', 2151, - '-', 2151, - 'B', 1965, - 'b', 1965, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '>') ADVANCE(2072); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == '_') ADVANCE(2151); - if (lookahead == 'i') ADVANCE(2158); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2151); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + ADVANCE_MAP( + 'I', 2227, + '_', 2152, + 'i', 2227, + 'n', 2164, + '+', 2152, + '-', 2152, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == '_') ADVANCE(2152); + if (lookahead == 'i') ADVANCE(2159); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2152); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'n') ADVANCE(2164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'r') ADVANCE(2221); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2158); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2183); - if (lookahead == 'o') ADVANCE(2161); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2159); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2183); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(2162); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N') ADVANCE(2227); - if (lookahead == 'n') ADVANCE(1579); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2151); - if (lookahead == 'o') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'N') ADVANCE(2228); + if (lookahead == 'n') ADVANCE(1580); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2151); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '_') ADVANCE(2152); + if (lookahead == 'o') ADVANCE(2137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '_') ADVANCE(2152); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2224); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == '_') ADVANCE(2154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2181); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'a') ADVANCE(2225); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2186); - if (lookahead == 'o') ADVANCE(2200); - if (lookahead == 's') ADVANCE(2170); - if (lookahead == 'x') ADVANCE(2191); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'a') ADVANCE(2182); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2202); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'a') ADVANCE(2187); + if (lookahead == 'o') ADVANCE(2201); + if (lookahead == 's') ADVANCE(2171); + if (lookahead == 'x') ADVANCE(2192); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'a') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'c') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1813); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'c') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1714); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'd') ADVANCE(1814); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(1795); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'd') ADVANCE(1715); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2208); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'd') ADVANCE(1796); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2159); - if (lookahead == 't') ADVANCE(2157); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'd') ADVANCE(2209); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(2160); + if (lookahead == 't') ADVANCE(2158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1908); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(2160); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1917); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(1909); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2137); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(1918); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(2138); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2179); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'e') ADVANCE(2205); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(1781); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'h') ADVANCE(2180); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(1775); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'h') ADVANCE(1782); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2212); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'h') ADVANCE(1776); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2184); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'i') ADVANCE(2213); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2214); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'i') ADVANCE(2185); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2217); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'i') ADVANCE(2215); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'k') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'i') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1898); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'k') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(1743); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'l') ADVANCE(1899); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2178); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'l') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1744); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2207); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'l') ADVANCE(2179); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2160); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'l') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(1969); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'n') ADVANCE(2161); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(1769); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'n') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2163); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'n') ADVANCE(1770); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2162); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'n') ADVANCE(2164); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2136); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'n') ADVANCE(2163); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2199); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2137); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2221); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2200); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2161); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2222); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2201); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2162); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2211); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2202); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(2180); + if (lookahead == 'o') ADVANCE(2212); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 'u') ADVANCE(2180); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 'u') ADVANCE(2181); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1829); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(1830); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2085); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(2221); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1821); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(2086); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1807); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(1822); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1801); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(1808); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(1802); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2139); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(2219); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(2140); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'r') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(2181); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2167); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 's') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2128); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 's') ADVANCE(2168); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2130); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 's') ADVANCE(2129); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2157); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 's') ADVANCE(2131); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1837); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2158); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2126); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(1838); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2086); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2127); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2171); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2087); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2127); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2172); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2138); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2128); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2172); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2139); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2209); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2173); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 't') ADVANCE(2210); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2166); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'u') ADVANCE(2181); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2216); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'u') ADVANCE(2167); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(2175); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'u') ADVANCE(2217); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'w') ADVANCE(2176); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'y') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'w') ADVANCE(2177); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'y') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1957); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1958); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2233); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1964); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'n') ADVANCE(2228); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2228); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + lookahead == 'n') ADVANCE(1965); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2233); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1956); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2234); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1990); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1957); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1984); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1991); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2129); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1985); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2133); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2130); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1986); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2134); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1999); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1987); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1990); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2000); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2236); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1991); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1993); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2242); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1994); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2243); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2238); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2132); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2239); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2246); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2133); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2247); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2249: - ACCEPT_TOKEN(aux_sym_unquoted_token2); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2249); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'r') ADVANCE(1829); - if (lookahead == 'u') ADVANCE(2213); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(2213); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'r') ADVANCE(1830); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'n') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'n') ADVANCE(2164); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '>') ADVANCE(1620); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1621); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(1230); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'n') ADVANCE(1576); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '>') ADVANCE(1621); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(2227); - if (lookahead == 'n') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(1231); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'n') ADVANCE(1577); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(3451); + if (lookahead == 'N') ADVANCE(2228); if (lookahead == 'n') ADVANCE(1580); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(740); + if (lookahead == 'N') ADVANCE(3452); if (lookahead == 'n') ADVANCE(1581); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1023); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(2181); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == 'a') ADVANCE(2182); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(650); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1048); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1208); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1088); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(1604); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(1083); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1605); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(1103); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1049); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(2212); + if (lookahead == 'i') ADVANCE(1050); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3439); + if (lookahead == 'i') ADVANCE(2213); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1314); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(3440); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'i') ADVANCE(1315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2160); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(2161); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3396); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(3397); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1265); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1266); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1585); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'n') ADVANCE(1586); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'n') ADVANCE(2164); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3399); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1267); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(3400); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1268); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(1050); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2199); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 'o') ADVANCE(2200); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'o') ADVANCE(3429); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2161); + if (lookahead == 'o') ADVANCE(2162); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3397); + if (lookahead == 'o') ADVANCE(3398); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'o') ADVANCE(1317); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1266); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1267); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1047); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1302); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(710); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(711); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1202); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1169); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'o') ADVANCE(1203); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1212); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1834); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1213); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1829); + if (lookahead == 'r') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == 'r') ADVANCE(1830); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'r') ADVANCE(2221); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1832); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(723); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1833); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1226); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(1055); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1227); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(2157); + if (lookahead == 's') ADVANCE(1056); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3393); + if (lookahead == 't') ADVANCE(2158); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(3394); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + lookahead == 'n') ADVANCE(2228); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + lookahead == 'n') ADVANCE(3452); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(741); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2364: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2586); - if (lookahead == '>') ADVANCE(2068); - if (lookahead == 'r') ADVANCE(1836); - if (lookahead == 'u') ADVANCE(2829); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2586); - if (lookahead == '>') ADVANCE(2068); - if (lookahead == 'u') ADVANCE(2829); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2587); + if (lookahead == '>') ADVANCE(2069); + if (lookahead == 'r') ADVANCE(1837); + if (lookahead == 'u') ADVANCE(2830); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2711); - if (lookahead == '>') ADVANCE(2066); - if (lookahead == 'n') ADVANCE(2549); - if (lookahead == 'r') ADVANCE(2759); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2587); + if (lookahead == '>') ADVANCE(2069); + if (lookahead == 'u') ADVANCE(2830); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2711); - if (lookahead == '>') ADVANCE(2066); - if (lookahead == 'r') ADVANCE(2759); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2712); + if (lookahead == '>') ADVANCE(2067); + if (lookahead == 'n') ADVANCE(2550); + if (lookahead == 'r') ADVANCE(2760); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '+') ADVANCE(2712); - if (lookahead == '>') ADVANCE(2062); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(2067); + if (lookahead == 'r') ADVANCE(2760); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2594); - if (lookahead == '>') ADVANCE(2064); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2713); + if (lookahead == '>') ADVANCE(2063); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == '+') ADVANCE(2595); + if (lookahead == '>') ADVANCE(2065); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2457); - if (lookahead == '_') ADVANCE(2386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2435); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2458); + if (lookahead == '_') ADVANCE(2387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2387); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2436); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2458); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2403); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '-') ADVANCE(2436); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2459); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '.') ADVANCE(2455); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2377); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '-') ADVANCE(2437); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '2') ADVANCE(2448); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '.') ADVANCE(2456); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2378); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2466); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == ':') ADVANCE(2449); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '2') ADVANCE(2449); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2457); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == ':') ADVANCE(2461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == ':') ADVANCE(2450); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == ':') ADVANCE(2463); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == ':') ADVANCE(2462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '=') ADVANCE(1754); - if (lookahead == '~') ADVANCE(1792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == ':') ADVANCE(2464); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '=') ADVANCE(1750); - if (lookahead == '~') ADVANCE(1788); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '=') ADVANCE(1755); + if (lookahead == '~') ADVANCE(1793); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'N') ADVANCE(2439); - if (lookahead == 'n') ADVANCE(1574); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '=') ADVANCE(1751); + if (lookahead == '~') ADVANCE(1789); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'T') ADVANCE(2460); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'N') ADVANCE(2440); + if (lookahead == 'n') ADVANCE(1575); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '_') ADVANCE(2386); - if (lookahead == 'b') ADVANCE(1970); - if (lookahead == 'o') ADVANCE(1974); - if (lookahead == 'x') ADVANCE(1978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'T') ADVANCE(2461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '_') ADVANCE(2386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2387); + if (lookahead == 'b') ADVANCE(1971); + if (lookahead == 'o') ADVANCE(1975); + if (lookahead == 'x') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '_') ADVANCE(2386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2387); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '_') ADVANCE(2386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2387); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '_') ADVANCE(2386); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2387); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'a') ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2389); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'a') ADVANCE(2423); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'a') ADVANCE(2409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'a') ADVANCE(2413); - if (lookahead == 'o') ADVANCE(2421); - if (lookahead == 's') ADVANCE(2399); - if (lookahead == 'x') ADVANCE(2417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'a') ADVANCE(2424); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'd') ADVANCE(1814); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'a') ADVANCE(2414); + if (lookahead == 'o') ADVANCE(2422); + if (lookahead == 's') ADVANCE(2400); + if (lookahead == 'x') ADVANCE(2418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'd') ADVANCE(2425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'd') ADVANCE(1815); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'd') ADVANCE(1715); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'd') ADVANCE(2426); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'd') ADVANCE(1796); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'd') ADVANCE(1716); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'e') ADVANCE(1909); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'd') ADVANCE(1797); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'e') ADVANCE(1918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'e') ADVANCE(1910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'h') ADVANCE(2407); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'e') ADVANCE(1919); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'h') ADVANCE(1782); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'h') ADVANCE(2408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'h') ADVANCE(1776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'h') ADVANCE(1783); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'i') ADVANCE(2411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'h') ADVANCE(1777); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'i') ADVANCE(2427); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'i') ADVANCE(2412); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'i') ADVANCE(2430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'i') ADVANCE(2428); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'i') ADVANCE(2431); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'l') ADVANCE(1899); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'i') ADVANCE(2432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'l') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(1744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'l') ADVANCE(1900); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'l') ADVANCE(2424); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'l') ADVANCE(1739); + if (lookahead == 'r') ADVANCE(1745); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'l') ADVANCE(2406); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'l') ADVANCE(2425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'n') ADVANCE(2393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'l') ADVANCE(2407); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'n') ADVANCE(1770); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'n') ADVANCE(2394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'n') ADVANCE(2394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'n') ADVANCE(1771); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'n') ADVANCE(2396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'n') ADVANCE(2395); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'o') ADVANCE(2420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'n') ADVANCE(2397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'o') ADVANCE(2429); - if (lookahead == 'u') ADVANCE(2409); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'o') ADVANCE(2421); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'o') ADVANCE(2395); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'o') ADVANCE(2430); + if (lookahead == 'u') ADVANCE(2410); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'o') ADVANCE(2422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'o') ADVANCE(2396); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(1830); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'o') ADVANCE(2423); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(2433); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(1831); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(1822); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(2434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(1808); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(1823); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(1802); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(1809); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'r') ADVANCE(2432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(1803); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 's') ADVANCE(2398); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'r') ADVANCE(2433); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 's') ADVANCE(2372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 's') ADVANCE(2399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 's') ADVANCE(2375); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 's') ADVANCE(2373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 's') ADVANCE(2376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2391); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 't') ADVANCE(2371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2373); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 't') ADVANCE(2392); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 't') ADVANCE(2374); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 't') ADVANCE(2401); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2426); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 't') ADVANCE(2402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'u') ADVANCE(2397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 't') ADVANCE(2427); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'u') ADVANCE(2409); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'u') ADVANCE(2398); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'w') ADVANCE(2404); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'u') ADVANCE(2410); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'w') ADVANCE(2405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2377); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2465); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'w') ADVANCE(2406); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2378); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2445); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2442); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + lookahead == 'i') ADVANCE(2446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2445); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2439); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + lookahead == 'n') ADVANCE(2466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2440); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2378); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2379); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2384); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2380); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2376); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2381); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2378); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2459); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2379); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2460); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2375); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2380); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2464); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2463); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == ',') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(1543); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2524); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2927); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2525); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2867); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2928); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2518); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2526); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == '-') ADVANCE(2868); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2536); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2527); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2536); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2537); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2869); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2537); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2869); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2870); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2868); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == '-') ADVANCE(2870); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2632); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2869); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2632); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2633); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2640); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2633); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '-') ADVANCE(2641); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2928); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2642); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2870); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2929); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2872); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2871); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2872); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2873); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2871); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == '-') ADVANCE(2873); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(1539); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2872); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2485); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '.') ADVANCE(1540); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2925); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2488); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '.') ADVANCE(2486); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '2') ADVANCE(2917); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2926); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '.') ADVANCE(2926); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2489); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2918); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2920); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '2') ADVANCE(2918); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2927); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2930); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ':') ADVANCE(2919); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2921); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(2932); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ':') ADVANCE(2931); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1756); - if (lookahead == '~') ADVANCE(1794); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == ':') ADVANCE(2933); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1752); - if (lookahead == '>') ADVANCE(1621); - if (lookahead == '~') ADVANCE(1790); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '=') ADVANCE(1757); + if (lookahead == '~') ADVANCE(1795); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1752); - if (lookahead == '~') ADVANCE(1790); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '=') ADVANCE(1753); + if (lookahead == '>') ADVANCE(1622); + if (lookahead == '~') ADVANCE(1791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1755); - if (lookahead == '~') ADVANCE(1793); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == '=') ADVANCE(1753); + if (lookahead == '~') ADVANCE(1791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(1751); - if (lookahead == '~') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1756); + if (lookahead == '~') ADVANCE(1794); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2076); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '=') ADVANCE(1752); + if (lookahead == '~') ADVANCE(1790); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2074); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(2077); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2070); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(2075); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2072); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(2071); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(1621); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(2073); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(2900); - if (lookahead == 'f') ADVANCE(1608); - if (lookahead == 'n') ADVANCE(1577); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '>') ADVANCE(1622); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N') ADVANCE(2901); + if (lookahead == 'f') ADVANCE(1609); if (lookahead == 'n') ADVANCE(1578); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(2878); - if (lookahead == 'f') ADVANCE(1605); - if (lookahead == 'n') ADVANCE(1575); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'N') ADVANCE(2902); + if (lookahead == 'n') ADVANCE(1579); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T') ADVANCE(2929); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'N') ADVANCE(2879); + if (lookahead == 'f') ADVANCE(1606); + if (lookahead == 'n') ADVANCE(1576); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2506); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'T') ADVANCE(2930); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(2507); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2507); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2509); - if (lookahead == 'b') ADVANCE(2893); - if (lookahead == 'o') ADVANCE(2894); - if (lookahead == 'x') ADVANCE(2895); + if (lookahead == '_') ADVANCE(2508); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2509); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2508); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2509); + if (lookahead == '_') ADVANCE(2510); + if (lookahead == 'b') ADVANCE(2894); + if (lookahead == 'o') ADVANCE(2895); + if (lookahead == 'x') ADVANCE(2896); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2509); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2511); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2510); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(2511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1863); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2513); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2517); - if (lookahead == 'b') ADVANCE(1972); - if (lookahead == 'o') ADVANCE(1976); - if (lookahead == 'x') ADVANCE(1980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2515); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2468); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2518); + if (lookahead == 'b') ADVANCE(1973); + if (lookahead == 'o') ADVANCE(1977); + if (lookahead == 'x') ADVANCE(1981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2516); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2514); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2469); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2517); + if (lookahead == '_') ADVANCE(2518); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2515); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2517); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2516); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2671); - if (lookahead == 'o') ADVANCE(2743); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2518); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2649); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2672); + if (lookahead == 'o') ADVANCE(2744); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2873); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2650); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'o') ADVANCE(2546); - if (lookahead == 'u') ADVANCE(2817); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'a') ADVANCE(2874); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2650); + if (lookahead == 'a') ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2547); + if (lookahead == 'u') ADVANCE(2818); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2662); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2651); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2703); - if (lookahead == 'o') ADVANCE(2746); - if (lookahead == 's') ADVANCE(2614); - if (lookahead == 'x') ADVANCE(2732); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2663); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2815); - if (lookahead == 'o') ADVANCE(2679); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'a') ADVANCE(2704); + if (lookahead == 'o') ADVANCE(2747); + if (lookahead == 's') ADVANCE(2615); + if (lookahead == 'x') ADVANCE(2733); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2704); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 's') ADVANCE(2619); - if (lookahead == 'x') ADVANCE(2731); + if (lookahead == 'a') ADVANCE(2816); + if (lookahead == 'o') ADVANCE(2680); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2875); + if (lookahead == 'a') ADVANCE(2705); + if (lookahead == 'o') ADVANCE(2755); + if (lookahead == 's') ADVANCE(2620); + if (lookahead == 'x') ADVANCE(2732); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2786); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2876); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2809); - if (lookahead == 'o') ADVANCE(2543); - if (lookahead == 'u') ADVANCE(2810); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2787); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2809); - if (lookahead == 'o') ADVANCE(2557); - if (lookahead == 'u') ADVANCE(2810); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2810); + if (lookahead == 'o') ADVANCE(2544); + if (lookahead == 'u') ADVANCE(2811); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2773); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2810); + if (lookahead == 'o') ADVANCE(2558); + if (lookahead == 'u') ADVANCE(2811); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2787); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'a') ADVANCE(2774); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2775); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2788); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'a') ADVANCE(2776); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2778); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'a') ADVANCE(2777); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(2702); - if (lookahead == 'o') ADVANCE(2761); - if (lookahead == 's') ADVANCE(2622); - if (lookahead == 'x') ADVANCE(2725); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2779); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2613); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2703); + if (lookahead == 'o') ADVANCE(2762); + if (lookahead == 's') ADVANCE(2623); + if (lookahead == 'x') ADVANCE(2726); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2617); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'c') ADVANCE(2614); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'c') ADVANCE(2618); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2581); + if (lookahead == 'c') ADVANCE(2619); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2570); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'c') ADVANCE(2582); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1819); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'c') ADVANCE(2571); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1717); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1820); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1799); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1718); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1815); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'd') ADVANCE(1800); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1716); + if (lookahead == 'd') ADVANCE(1816); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1797); + if (lookahead == 'd') ADVANCE(1717); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1820); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1798); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2793); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1821); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1723); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(2794); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1800); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1724); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1817); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1801); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2791); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1818); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1720); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(2792); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(1722); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1721); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2788); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(1723); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(2789); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2789); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'd') ADVANCE(2857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2564); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(2790); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2577); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'd') ADVANCE(2565); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2607); - if (lookahead == 'o') ADVANCE(1603); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'd') ADVANCE(2578); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2610); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2608); + if (lookahead == 'o') ADVANCE(1604); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1499); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2611); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1667); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1500); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1914); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1668); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1923); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1915); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1698); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1924); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1598); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1699); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1494); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1599); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1654); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1495); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1568); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1655); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2608); - if (lookahead == 'o') ADVANCE(1600); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'e') ADVANCE(1569); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2866); - if (lookahead == 'o') ADVANCE(2827); + if (lookahead == 'e') ADVANCE(2609); + if (lookahead == 'o') ADVANCE(1601); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2884); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2611); + if (lookahead == 'e') ADVANCE(2867); + if (lookahead == 'o') ADVANCE(2828); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2885); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1496); + if (lookahead == 'e') ADVANCE(2612); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1611); + if (lookahead == 'e') ADVANCE(1497); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1665); + if (lookahead == 'e') ADVANCE(1612); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1593); + if (lookahead == 'e') ADVANCE(1666); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1595); + if (lookahead == 'e') ADVANCE(1594); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1491); + if (lookahead == 'e') ADVANCE(1596); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1652); + if (lookahead == 'e') ADVANCE(1492); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1565); + if (lookahead == 'e') ADVANCE(1653); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1916); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1566); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1925); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1917); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2808); - if (lookahead == 'o') ADVANCE(2708); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(1926); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2498); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2809); + if (lookahead == 'o') ADVANCE(2709); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2519); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2499); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2816); - if (lookahead == 'i') ADVANCE(2796); - if (lookahead == 'o') ADVANCE(2710); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'e') ADVANCE(2520); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2522); + if (lookahead == 'e') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(2797); + if (lookahead == 'o') ADVANCE(2711); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2774); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2523); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2676); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2775); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2769); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'e') ADVANCE(2677); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2681); + if (lookahead == 'e') ADVANCE(2770); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2782); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2682); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'e') ADVANCE(2783); - if (lookahead == 'i') ADVANCE(2668); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2693); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'i') ADVANCE(2669); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2695); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'e') ADVANCE(2694); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2698); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2696); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2771); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'e') ADVANCE(2699); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2699); + if (lookahead == 'e') ADVANCE(2772); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2770); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2700); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2700); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2771); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'e') ADVANCE(2701); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2756); + if (lookahead == 'e') ADVANCE(2702); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2748); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2757); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1608); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2900); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2749); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1480); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'f') ADVANCE(1609); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2901); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1477); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'f') ADVANCE(1481); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(1609); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'f') ADVANCE(1478); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'g') ADVANCE(2639); - if (lookahead == 't') ADVANCE(2853); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'f') ADVANCE(1610); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'g') ADVANCE(2648); - if (lookahead == 't') ADVANCE(2852); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'g') ADVANCE(2640); + if (lookahead == 't') ADVANCE(2854); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2595); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'g') ADVANCE(2649); + if (lookahead == 't') ADVANCE(2853); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1617); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(2596); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2653); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(1618); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1785); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(2654); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1779); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(1786); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1646); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'h') ADVANCE(1780); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1614); + if (lookahead == 'h') ADVANCE(1647); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2654); + if (lookahead == 'h') ADVANCE(1615); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1783); + if (lookahead == 'h') ADVANCE(2655); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1777); + if (lookahead == 'h') ADVANCE(1784); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2656); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(1778); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1786); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(2657); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(1780); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(1787); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2629); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'h') ADVANCE(1781); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2807); - if (lookahead == 'r') ADVANCE(2587); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'h') ADVANCE(2630); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2807); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2808); + if (lookahead == 'r') ADVANCE(2588); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2814); - if (lookahead == 'r') ADVANCE(2589); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2808); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2667); + if (lookahead == 'i') ADVANCE(2815); + if (lookahead == 'r') ADVANCE(2590); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2528); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2668); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2532); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2529); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2685); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2533); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2826); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2686); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2824); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2827); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2559); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2825); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2692); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2560); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2560); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2693); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2694); + if (lookahead == 'i') ADVANCE(2561); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2800); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2695); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2677); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2801); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2682); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2678); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2830); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2683); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2835); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2831); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'i') ADVANCE(2836); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2838); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2837); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2837); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2839); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2839); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'i') ADVANCE(2838); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2801); + if (lookahead == 'i') ADVANCE(2840); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(1564); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'i') ADVANCE(2802); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(1561); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'k') ADVANCE(1565); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(2578); - if (lookahead == 't') ADVANCE(2539); + if (lookahead == 'k') ADVANCE(1562); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1904); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'k') ADVANCE(2579); + if (lookahead == 't') ADVANCE(2540); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(1747); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(1905); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1745); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'l') ADVANCE(1742); + if (lookahead == 'r') ADVANCE(1748); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1906); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(1740); + if (lookahead == 'r') ADVANCE(1746); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1742); - if (lookahead == 'r') ADVANCE(1748); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(1907); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2630); - if (lookahead == 'n') ADVANCE(2542); - if (lookahead == 's') ADVANCE(1683); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(1743); + if (lookahead == 'r') ADVANCE(1749); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2630); - if (lookahead == 'n') ADVANCE(2542); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2631); + if (lookahead == 'n') ADVANCE(2543); + if (lookahead == 's') ADVANCE(1684); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2630); - if (lookahead == 's') ADVANCE(1683); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2631); + if (lookahead == 'n') ADVANCE(2543); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2630); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2631); + if (lookahead == 's') ADVANCE(1684); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'l') ADVANCE(2631); - if (lookahead == 'n') ADVANCE(2545); - if (lookahead == 's') ADVANCE(1680); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2790); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2632); + if (lookahead == 'n') ADVANCE(2546); + if (lookahead == 's') ADVANCE(1681); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2652); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2791); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2655); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2653); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2520); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2656); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2527); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'l') ADVANCE(2521); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2579); + if (lookahead == 'l') ADVANCE(2528); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2568); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2580); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2580); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'l') ADVANCE(2569); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2569); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2581); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2799); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2570); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2795); - if (lookahead == 'n') ADVANCE(2558); - if (lookahead == 'r') ADVANCE(2785); - if (lookahead == 'x') ADVANCE(2739); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'l') ADVANCE(2800); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2542); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2796); + if (lookahead == 'n') ADVANCE(2559); + if (lookahead == 'r') ADVANCE(2786); + if (lookahead == 'x') ADVANCE(2740); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2797); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2543); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1489); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2798); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2857); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1490); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1773); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2858); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1651); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1774); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2798); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'n') ADVANCE(1652); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1486); + if (lookahead == 'n') ADVANCE(2799); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2861); + if (lookahead == 'n') ADVANCE(1487); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1771); + if (lookahead == 'n') ADVANCE(2862); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1648); + if (lookahead == 'n') ADVANCE(1772); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2548); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1649); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1774); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2549); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2552); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1775); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1583); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2553); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1587); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1584); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(1586); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1588); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2556); - if (lookahead == 'r') ADVANCE(2784); - if (lookahead == 'x') ADVANCE(2738); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(1587); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2556); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2557); + if (lookahead == 'r') ADVANCE(2785); + if (lookahead == 'x') ADVANCE(2739); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2855); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2557); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2858); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2856); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2854); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'n') ADVANCE(2859); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2862); + if (lookahead == 'n') ADVANCE(2855); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2549); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2863); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2553); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2550); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2859); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2554); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2863); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'n') ADVANCE(2860); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2860); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2864); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2864); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'n') ADVANCE(2861); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2551); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2865); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2544); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2552); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2547); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'n') ADVANCE(2545); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2674); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2548); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2849); - if (lookahead == 't') ADVANCE(2534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2675); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2849); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2850); + if (lookahead == 't') ADVANCE(2535); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2736); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2850); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2850); - if (lookahead == 't') ADVANCE(2535); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'o') ADVANCE(2737); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2737); + if (lookahead == 'o') ADVANCE(2851); + if (lookahead == 't') ADVANCE(2536); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2497); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2738); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2851); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2498); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2764); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2852); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2751); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'o') ADVANCE(2765); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(2664); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2752); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2833); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2834); + if (lookahead == 'u') ADVANCE(2665); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2908); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2760); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2834); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2550); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2761); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2831); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2551); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2554); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2832); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2744); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2555); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2752); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'o') ADVANCE(2745); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(2663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2906); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2753); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2555); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(2664); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2762); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2556); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2753); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'o') ADVANCE(2763); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2745); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2754); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2822); - if (lookahead == 'u') ADVANCE(2664); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2746); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2825); - if (lookahead == 'u') ADVANCE(2664); + if (lookahead == 'o') ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2665); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'a') ADVANCE(2908); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2821); - if (lookahead == 'u') ADVANCE(2663); + if (lookahead == 'o') ADVANCE(2826); + if (lookahead == 'u') ADVANCE(2665); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2906); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == 'a') ADVANCE(2908); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2755); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'o') ADVANCE(2822); + if (lookahead == 'u') ADVANCE(2664); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2907); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2747); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2756); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2832); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2748); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2780); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2833); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'o') ADVANCE(2781); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(1591); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'o') ADVANCE(2782); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(1588); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'p') ADVANCE(1592); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(2734); - if (lookahead == 't') ADVANCE(2601); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'p') ADVANCE(1589); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'p') ADVANCE(2735); - if (lookahead == 't') ADVANCE(2599); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 't') ADVANCE(2602); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1835); - if (lookahead == 'v') ADVANCE(2590); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'p') ADVANCE(2736); + if (lookahead == 't') ADVANCE(2600); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1835); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1836); + if (lookahead == 'v') ADVANCE(2591); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2848); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1836); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1572); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2849); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1827); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1573); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1521); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1828); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1811); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1522); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1805); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1812); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1663); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1806); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1831); - if (lookahead == 'v') ADVANCE(2592); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(1664); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2874); + if (lookahead == 'r') ADVANCE(1832); + if (lookahead == 'v') ADVANCE(2593); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1569); + if (lookahead == 'r') ADVANCE(2875); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1823); + if (lookahead == 'r') ADVANCE(1570); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1517); + if (lookahead == 'r') ADVANCE(1824); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1809); + if (lookahead == 'r') ADVANCE(1518); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1803); + if (lookahead == 'r') ADVANCE(1810); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1660); + if (lookahead == 'r') ADVANCE(1804); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1836); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1661); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2847); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1837); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2368); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2848); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1828); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2369); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1812); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1829); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1806); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1813); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1833); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1807); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(1825); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1834); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2587); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(1826); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2784); - if (lookahead == 'x') ADVANCE(2738); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2588); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2541); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2785); + if (lookahead == 'x') ADVANCE(2739); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2540); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(2542); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2666); + if (lookahead == 'r') ADVANCE(2541); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2675); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2667); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2680); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(2676); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2500); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2681); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2843); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2501); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2665); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2844); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2842); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2666); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2844); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2843); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2678); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2845); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2845); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(2679); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2683); + if (lookahead == 'r') ADVANCE(2846); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2813); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2684); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2820); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(2814); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2772); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2821); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2567); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2773); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2727); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2568); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2726); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'r') ADVANCE(2728); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(974); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2727); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(971); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 's') ADVANCE(975); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2469); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(972); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2475); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 's') ADVANCE(2470); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2584); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2476); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2473); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2585); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2563); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2474); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2474); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2564); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2575); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 's') ADVANCE(2475); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 's') ADVANCE(2576); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2818); + if (lookahead == 's') ADVANCE(2577); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2812); - if (lookahead == 't') ADVANCE(2636); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2819); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2819); - if (lookahead == 't') ADVANCE(2638); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 's') ADVANCE(2813); + if (lookahead == 't') ADVANCE(2637); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2566); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2820); + if (lookahead == 't') ADVANCE(2639); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2840); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2567); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 's') ADVANCE(2841); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2481); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2842); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2484); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 's') ADVANCE(2482); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2482); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2485); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 's') ADVANCE(2483); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2534); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2484); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2467); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2535); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(978); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2468); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2537); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(979); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(988); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2538); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1841); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(989); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(993); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(1842); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(968); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(994); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2470); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 't') ADVANCE(969); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2538); + if (lookahead == 't') ADVANCE(2471); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(979); + if (lookahead == 't') ADVANCE(2539); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(985); + if (lookahead == 't') ADVANCE(980); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1527); + if (lookahead == 't') ADVANCE(986); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(990); + if (lookahead == 't') ADVANCE(1528); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(966); + if (lookahead == 't') ADVANCE(991); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1846); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(967); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1839); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(1847); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2531); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(1840); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2471); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2532); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2472); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2472); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(1848); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2479); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 't') ADVANCE(2473); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2533); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2480); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2369); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2534); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2623); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2370); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2476); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2624); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2478); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2477); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2477); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2479); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2499); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2478); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2500); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2615); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2625); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 't') ADVANCE(2616); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2620); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 't') ADVANCE(2617); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 't') ADVANCE(2621); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2605); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2622); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2604); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 't') ADVANCE(2606); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2605); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2804); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2806); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2802); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2805); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 't') ADVANCE(2803); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2664); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2804); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2583); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2665); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2908); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2565); - if (lookahead == 'y') ADVANCE(1644); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2584); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2767); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2566); + if (lookahead == 'y') ADVANCE(1645); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'u') ADVANCE(2768); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2834); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2769); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2779); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'u') ADVANCE(2835); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2777); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2780); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2582); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'u') ADVANCE(2778); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2571); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2583); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2670); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2572); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(984); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2671); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1672); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'v') ADVANCE(985); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1484); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'v') ADVANCE(1673); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1659); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'v') ADVANCE(1485); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(981); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'v') ADVANCE(1660); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1669); + if (lookahead == 'v') ADVANCE(982); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1481); + if (lookahead == 'v') ADVANCE(1670); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(1656); + if (lookahead == 'v') ADVANCE(1482); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(2590); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'v') ADVANCE(1657); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(1678); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'v') ADVANCE(2591); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2644); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'w') ADVANCE(1679); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'w') ADVANCE(2645); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2642); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'w') ADVANCE(2646); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2646); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'w') ADVANCE(2643); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'w') ADVANCE(2647); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2643); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'w') ADVANCE(2648); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1676); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'w') ADVANCE(2644); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1641); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == 'y') ADVANCE(1677); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(1673); + if (lookahead == 'y') ADVANCE(1642); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2488); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2876); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'y') ADVANCE(1674); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2884); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2489); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2877); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2883); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2885); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2882); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == 'f') ADVANCE(2884); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2889); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2883); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2890); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == 'i') ADVANCE(2891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2887); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == 'i') ADVANCE(2889); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2896); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2888); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2878); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == 'n') ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2880); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2881); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2891); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2882); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'T' || lookahead == 't') ADVANCE(2892); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2896); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2893); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); + lookahead == ':') ADVANCE(2937); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(2897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '7') || + lookahead == ':') ADVANCE(2937); + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(2894); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2895); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + lookahead == ':') ADVANCE(2937); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(2898); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2906); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2905); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2908); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2904); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'f') ADVANCE(2906); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2912); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2905); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2913); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2911); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + lookahead == 'i') ADVANCE(2914); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2910); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == 'i') ADVANCE(2912); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2935); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2911); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2900); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + lookahead == 'n') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2901); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2902); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2903); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2914); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2904); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'T' || lookahead == 't') ADVANCE(2915); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2935); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2916); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2916); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2489); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2917); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2920); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2490); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2919); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2921); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2936); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2920); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2480); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2937); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2505); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2481); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2491); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2506); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2487); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2492); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2876); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2488); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2489); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2877); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2921); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2490); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2922); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2923); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2924); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2931: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2490); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2925); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2931); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2491); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2933); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2932); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2934); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2934); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2935); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2936); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(2935); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 12, lookahead))) ADVANCE(2937); END_STATE(); case 2937: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 2938: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'r') ADVANCE(1829); - if (lookahead == 'u') ADVANCE(2213); END_STATE(); case 2939: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(2213); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'r') ADVANCE(1830); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 2940: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'n') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'n') ADVANCE(2164); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 2943: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(1230); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'n') ADVANCE(1576); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(2227); - if (lookahead == 'n') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(1231); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'n') ADVANCE(1577); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(3451); + if (lookahead == 'N') ADVANCE(2228); if (lookahead == 'n') ADVANCE(1580); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(740); + if (lookahead == 'N') ADVANCE(3452); if (lookahead == 'n') ADVANCE(1581); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1021); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1022); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2949: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(3387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1023); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(2153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(2154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 2958: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(2046); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'x') ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 2961: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 2962: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 2963: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 2964: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 2965: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(2181); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2966: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == 'a') ADVANCE(2182); END_STATE(); case 2967: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 2968: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(650); END_STATE(); case 2969: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1048); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2970: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2971: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1208); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2972: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2973: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2976: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1088); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(1604); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2979: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(1083); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1605); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(1103); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1049); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2982: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(2212); + if (lookahead == 'i') ADVANCE(1050); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3439); + if (lookahead == 'i') ADVANCE(2213); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1314); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(3440); END_STATE(); case 2985: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'i') ADVANCE(1315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2988: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2991: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2160); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 2994: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(2161); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3396); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(3397); END_STATE(); case 2997: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1265); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1266); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1585); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'n') ADVANCE(1586); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'n') ADVANCE(2164); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3399); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1267); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(3400); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1268); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(1050); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2199); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 'o') ADVANCE(2200); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'o') ADVANCE(3429); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2161); + if (lookahead == 'o') ADVANCE(2162); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3397); + if (lookahead == 'o') ADVANCE(3398); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'o') ADVANCE(1317); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1266); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1267); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1047); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1302); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3024: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3025: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(710); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3026: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(711); END_STATE(); case 3027: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1202); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1169); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3028: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'o') ADVANCE(1203); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3029: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3030: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1212); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3031: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1834); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1213); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3032: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3033: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1829); + if (lookahead == 'r') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3034: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == 'r') ADVANCE(1830); END_STATE(); case 3035: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'r') ADVANCE(2221); END_STATE(); case 3036: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 3037: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1832); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(723); END_STATE(); case 3038: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1833); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3039: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3040: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1226); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3041: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(1055); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1227); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3042: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(2157); + if (lookahead == 's') ADVANCE(1056); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3043: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3393); + if (lookahead == 't') ADVANCE(2158); END_STATE(); case 3044: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(3394); END_STATE(); case 3045: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 3046: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3047: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3048: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3049: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3050: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3051: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3052: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3053: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3054: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3055: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3056: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + lookahead == 'n') ADVANCE(2228); END_STATE(); case 3057: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3058: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(741); END_STATE(); case 3059: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3060: - ACCEPT_TOKEN(aux_sym_unquoted_token5); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3061: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'r') ADVANCE(1829); - if (lookahead == 'u') ADVANCE(2213); END_STATE(); case 3062: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(2213); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'r') ADVANCE(1830); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 3063: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'n') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 3064: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'n') ADVANCE(2164); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 3065: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(555); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'r') ADVANCE(2199); END_STATE(); case 3066: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); + if (lookahead == '.') ADVANCE(556); END_STATE(); case 3067: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '>') ADVANCE(1620); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); END_STATE(); case 3068: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1621); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 3069: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 3070: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(1230); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'n') ADVANCE(1576); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '>') ADVANCE(1621); END_STATE(); case 3071: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(2227); - if (lookahead == 'n') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(1231); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'n') ADVANCE(1577); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3072: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(3451); + if (lookahead == 'N') ADVANCE(2228); if (lookahead == 'n') ADVANCE(1580); END_STATE(); case 3073: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(740); + if (lookahead == 'N') ADVANCE(3452); if (lookahead == 'n') ADVANCE(1581); END_STATE(); case 3074: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1021); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 3075: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1022); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3076: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(3387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3077: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3078: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1023); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3079: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3080: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3081: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3082: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(2154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3083: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3084: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 3085: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 3086: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3087: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(2046); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'x') ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3088: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 3089: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 3090: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3091: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3092: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(2181); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3093: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == 'a') ADVANCE(2182); END_STATE(); case 3094: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3095: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(650); END_STATE(); case 3096: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1048); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3097: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1194); - if (lookahead == 'o') ADVANCE(1045); - if (lookahead == 'u') ADVANCE(1195); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3098: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1208); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1195); + if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1196); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3099: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3100: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3101: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3102: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3103: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1088); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3104: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3105: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(1604); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3106: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1083); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1605); END_STATE(); case 3107: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1103); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3108: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1049); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3109: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(2212); + if (lookahead == 'i') ADVANCE(1050); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3110: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(3439); + if (lookahead == 'i') ADVANCE(2213); END_STATE(); case 3111: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1314); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(3440); END_STATE(); case 3112: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'i') ADVANCE(1315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3113: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 3114: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3115: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3116: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3117: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3118: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1100); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3119: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3120: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(2160); + if (lookahead == 'l') ADVANCE(1192); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3121: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(2161); END_STATE(); case 3122: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(3396); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 3123: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(3397); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1265); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1266); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1585); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'n') ADVANCE(1586); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'n') ADVANCE(2164); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(3399); + if (lookahead == 'n') ADVANCE(607); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1267); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(3400); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1268); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(1050); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1051); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2199); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 'o') ADVANCE(2200); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'o') ADVANCE(3429); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2161); + if (lookahead == 'o') ADVANCE(2162); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3397); + if (lookahead == 'o') ADVANCE(3398); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'o') ADVANCE(1317); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1266); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(1267); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1047); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1302); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1048); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(710); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3153: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(711); END_STATE(); case 3154: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1202); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1169); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'o') ADVANCE(1203); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1212); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3158: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1834); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1213); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1829); + if (lookahead == 'r') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3161: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == 'r') ADVANCE(1830); END_STATE(); case 3162: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'r') ADVANCE(2221); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1832); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(723); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1833); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1226); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(1055); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1227); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(2157); + if (lookahead == 's') ADVANCE(1056); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(3393); + if (lookahead == 't') ADVANCE(2158); END_STATE(); case 3171: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 't') ADVANCE(3394); END_STATE(); case 3172: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 3173: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3174: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3175: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3176: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3177: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3178: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3179: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3180: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3181: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3182: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3183: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + lookahead == 'n') ADVANCE(2228); END_STATE(); case 3184: ACCEPT_TOKEN(aux_sym_unquoted_token5); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3185: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(741); END_STATE(); case 3186: ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3187: - ACCEPT_TOKEN(aux_sym_unquoted_token6); + ACCEPT_TOKEN(aux_sym_unquoted_token5); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3188: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 582, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); END_STATE(); case 3189: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - '+', 582, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'n', 1050, - 'B', 1238, - 'b', 1238, + '+', 583, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3190: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - '+', 582, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, + '+', 583, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'n', 1051, + 'B', 1239, + 'b', 1239, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3191: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(582); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + '+', 583, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3192: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(582); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'i') ADVANCE(1039); + if (lookahead == '+') ADVANCE(583); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3193: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2038, - '-', 1022, - 'I', 1229, - '_', 1022, - 'i', 1229, - 'l', 1191, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '+') ADVANCE(583); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1040); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3194: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2038); - if (lookahead == '-') ADVANCE(1022); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == '_') ADVANCE(1022); - if (lookahead == 'i') ADVANCE(1039); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + '+', 2039, + '-', 1023, + 'I', 1230, + '_', 1023, + 'i', 1230, + 'l', 1192, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3195: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2149, - '-', 2151, - '>', 2065, - 'I', 2226, - '_', 2151, - 'i', 2226, - 'n', 2163, - 'r', 2198, - 'B', 1965, - 'b', 1965, - ); + if (lookahead == '+') ADVANCE(2039); + if (lookahead == '-') ADVANCE(1023); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == '_') ADVANCE(1023); + if (lookahead == 'i') ADVANCE(1040); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3196: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - '+', 2149, - '-', 2151, - '>', 2065, - 'I', 2226, - '_', 2151, - 'i', 2226, - 'r', 2198, - 'B', 1965, - 'b', 1965, + '+', 2150, + '-', 2152, + '>', 2066, + 'I', 2227, + '_', 2152, + 'i', 2227, + 'n', 2164, + 'r', 2199, + 'B', 1966, + 'b', 1966, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3197: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'r') ADVANCE(1829); - if (lookahead == 'u') ADVANCE(2213); + ADVANCE_MAP( + '+', 2150, + '-', 2152, + '>', 2066, + 'I', 2227, + '_', 2152, + 'i', 2227, + 'r', 2199, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3198: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2168); - if (lookahead == '>') ADVANCE(2067); - if (lookahead == 'u') ADVANCE(2213); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'r') ADVANCE(1830); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 3199: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2187, - '>', 2065, - 'I', 2226, - 'i', 2226, - 'n', 2163, - 'r', 2198, - 'B', 1965, - 'b', 1965, - ); + if (lookahead == '+') ADVANCE(2169); + if (lookahead == '>') ADVANCE(2068); + if (lookahead == 'u') ADVANCE(2214); END_STATE(); case 3200: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2065); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'r') ADVANCE(2198); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + ADVANCE_MAP( + '+', 2188, + '>', 2066, + 'I', 2227, + 'i', 2227, + 'n', 2164, + 'r', 2199, + 'B', 1966, + 'b', 1966, + ); END_STATE(); case 3201: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(2066); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'r') ADVANCE(2199); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3202: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(555); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 3203: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); + if (lookahead == '.') ADVANCE(556); END_STATE(); case 3204: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '>') ADVANCE(1620); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); END_STATE(); case 3205: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1621); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 3206: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); END_STATE(); case 3207: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 1229, - 'a', 1111, - 'i', 1125, - 'o', 1045, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, - ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '>') ADVANCE(1621); END_STATE(); case 3208: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - 'I', 1229, - 'a', 1194, - 'i', 1125, - 'o', 1048, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1112, + 'i', 1126, + 'o', 1046, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3209: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - 'I', 1229, - 'a', 1194, - 'i', 1125, - 'o', 1045, - 's', 1238, - 'u', 1195, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1195, + 'i', 1126, + 'o', 1049, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3210: ACCEPT_TOKEN(aux_sym_unquoted_token6); ADVANCE_MAP( - 'I', 1229, - 'i', 1229, - 'l', 1191, - 'n', 1050, - 'r', 1176, - 'x', 1160, - 'B', 1238, - 'b', 1238, + 'I', 1230, + 'a', 1195, + 'i', 1126, + 'o', 1046, + 's', 1239, + 'u', 1196, + 'B', 1239, + 'b', 1239, ); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3211: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + ADVANCE_MAP( + 'I', 1230, + 'i', 1230, + 'l', 1192, + 'n', 1051, + 'r', 1177, + 'x', 1161, + 'B', 1239, + 'b', 1239, + ); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3212: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'n') ADVANCE(1050); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'n') ADVANCE(1051); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1212); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'n') ADVANCE(1051); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1176); - if (lookahead == 'x') ADVANCE(1160); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); - if (lookahead == 'r') ADVANCE(1226); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1161); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1229); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'r') ADVANCE(1227); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1039); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 'o') ADVANCE(1047); - if (lookahead == 's') ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1040); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 's') ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1126); + if (lookahead == 'o') ADVANCE(1048); + if (lookahead == 's') ADVANCE(1239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 2226, - '_', 2151, - 'i', 2226, - 'n', 2163, - '+', 2151, - '-', 2151, - 'B', 1965, - 'b', 1965, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == 'I') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1126); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == '_') ADVANCE(2151); - if (lookahead == 'i') ADVANCE(2158); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2151); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + ADVANCE_MAP( + 'I', 2227, + '_', 2152, + 'i', 2227, + 'n', 2164, + '+', 2152, + '-', 2152, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'n') ADVANCE(2163); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == '_') ADVANCE(2152); + if (lookahead == 'i') ADVANCE(2159); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2152); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'n') ADVANCE(2164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2226); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); + if (lookahead == 'r') ADVANCE(2221); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2158); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2227); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2183); - if (lookahead == 'o') ADVANCE(2161); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2159); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2226); - if (lookahead == 'i') ADVANCE(2183); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2184); + if (lookahead == 'o') ADVANCE(2162); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 738, - '_', 582, - 'i', 738, - 'n', 606, - '+', 582, - '-', 582, - 'B', 1965, - 'b', 1965, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == 'I') ADVANCE(2227); + if (lookahead == 'i') ADVANCE(2184); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + ADVANCE_MAP( + 'I', 739, + '_', 583, + 'i', 739, + 'n', 607, + '+', 583, + '-', 583, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(739); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(598); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'n') ADVANCE(607); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'r') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'o') ADVANCE(603); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(598); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 'o') ADVANCE(604); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 3450, - '_', 3388, - 'i', 3450, - 'n', 3399, - '+', 3388, - '-', 3388, - 'B', 1965, - 'b', 1965, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == '_') ADVANCE(3388); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3388); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + ADVANCE_MAP( + 'I', 3451, + '_', 3389, + 'i', 3451, + 'n', 3400, + '+', 3389, + '-', 3389, + 'B', 1966, + 'b', 1966, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == '_') ADVANCE(3388); - if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == '_') ADVANCE(3389); + if (lookahead == 'i') ADVANCE(3451); if (lookahead == '+' || - lookahead == '-') ADVANCE(3388); + lookahead == '-') ADVANCE(3389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == 'n') ADVANCE(3399); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == '_') ADVANCE(3389); + if (lookahead == 'i') ADVANCE(3395); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(3400); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(3445); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3416); - if (lookahead == 'o') ADVANCE(3397); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3395); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3416); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3417); + if (lookahead == 'o') ADVANCE(3398); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 1324, - '_', 1257, - 'i', 1324, - 'n', 1267, - '+', 582, - '-', 582, - 'B', 1333, - 'b', 1333, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3417); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == '_') ADVANCE(1257); - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + ADVANCE_MAP( + 'I', 1325, + '_', 1259, + 'i', 1325, + 'n', 1268, + '+', 583, + '-', 583, + 'B', 1334, + 'b', 1334, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == '_') ADVANCE(1257); - if (lookahead == 'i') ADVANCE(1263); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'i') ADVANCE(1325); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == 'n') ADVANCE(1267); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'i') ADVANCE(1264); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1882); + if (set_contains(sym_long_flag_identifier_character_set_1, 777, lookahead)) ADVANCE(1334); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'n') ADVANCE(1268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1263); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1285); - if (lookahead == 'o') ADVANCE(1266); - if (lookahead == 's') ADVANCE(1333); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1264); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1333); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1286); + if (lookahead == 'o') ADVANCE(1267); + if (lookahead == 's') ADVANCE(1334); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(1230); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'n') ADVANCE(1576); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1286); + if (lookahead == 's') ADVANCE(1334); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(2227); - if (lookahead == 'n') ADVANCE(1579); + if (lookahead == 'N') ADVANCE(1231); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'n') ADVANCE(1577); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(3451); + if (lookahead == 'N') ADVANCE(2228); if (lookahead == 'n') ADVANCE(1580); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(740); + if (lookahead == 'N') ADVANCE(3452); if (lookahead == 'n') ADVANCE(1581); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1021); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'N') ADVANCE(741); + if (lookahead == 'n') ADVANCE(1582); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(582); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if (lookahead == '_') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1022); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3260: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(583); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(3387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1023); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == '_') ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1858); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3265: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3266: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3267: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1857); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == '_') ADVANCE(2154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3268: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3269: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 3270: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 3271: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3272: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(2046); + if (lookahead == 'o') ADVANCE(2047); + if (lookahead == 'x') ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3273: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1942); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); END_STATE(); case 3274: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1943); END_STATE(); case 3275: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3276: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(2224); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3277: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(2181); + if (lookahead == 'a') ADVANCE(2225); END_STATE(); case 3278: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == 'a') ADVANCE(2182); END_STATE(); case 3279: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(731); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3280: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(732); END_STATE(); case 3281: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(3448); + if (lookahead == 'a') ADVANCE(650); END_STATE(); case 3282: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1322); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'a') ADVANCE(3449); END_STATE(); case 3283: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1323); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3284: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1225); - if (lookahead == 'e') ADVANCE(1086); - if (lookahead == 'o') ADVANCE(1602); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3285: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1225); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1226); + if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'o') ADVANCE(1603); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3286: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1208); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1226); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3287: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3288: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'o') ADVANCE(1145); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3289: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'o') ADVANCE(1146); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3290: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 's') ADVANCE(1238); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1088); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3291: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2159); + if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3292: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2159); - if (lookahead == 't') ADVANCE(2157); + if (lookahead == 'e') ADVANCE(2160); END_STATE(); case 3293: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(598); + if (lookahead == 'e') ADVANCE(2160); + if (lookahead == 't') ADVANCE(2158); END_STATE(); case 3294: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(598); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 'e') ADVANCE(599); END_STATE(); case 3295: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(3395); + if (lookahead == 'e') ADVANCE(599); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 3296: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(3395); - if (lookahead == 't') ADVANCE(3393); + if (lookahead == 'e') ADVANCE(3396); END_STATE(); case 3297: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1264); - if (lookahead == 't') ADVANCE(1261); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(3396); + if (lookahead == 't') ADVANCE(3394); END_STATE(); case 3298: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1264); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'e') ADVANCE(1265); + if (lookahead == 't') ADVANCE(1262); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3299: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 'o') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1265); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3300: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 'o') ADVANCE(1211); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 'o') ADVANCE(1212); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3301: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1040); - if (lookahead == 't') ADVANCE(1037); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 'o') ADVANCE(1212); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3302: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1040); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (lookahead == 't') ADVANCE(1038); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3303: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1607); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1041); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3304: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(1604); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3305: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1083); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'f') ADVANCE(1605); END_STATE(); case 3306: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1103); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1084); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3307: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1049); - if (lookahead == 'r') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'h') ADVANCE(1104); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3308: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(2212); + if (lookahead == 'i') ADVANCE(1050); + if (lookahead == 'r') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3309: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(3439); + if (lookahead == 'i') ADVANCE(2213); END_STATE(); case 3310: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1314); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(3440); END_STATE(); case 3311: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(705); + if (lookahead == 'i') ADVANCE(1315); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3312: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(706); END_STATE(); case 3313: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1200); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3314: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'i') ADVANCE(1201); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3315: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3316: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(1969); + if (lookahead == 'k') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3317: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1970); END_STATE(); case 3318: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3319: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1682); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3320: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2160); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 's') ADVANCE(1683); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3321: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(602); + if (lookahead == 'n') ADVANCE(2161); END_STATE(); case 3322: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(3396); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 3323: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(3397); END_STATE(); case 3324: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1265); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1574); END_STATE(); case 3325: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'n') ADVANCE(1266); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3326: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1585); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1583); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3327: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(1044); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1586); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3328: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1126); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'n') ADVANCE(1045); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3329: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2199); + if (lookahead == 'o') ADVANCE(1127); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3330: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 'o') ADVANCE(2200); END_STATE(); case 3331: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(685); + if (lookahead == 'o') ADVANCE(3429); END_STATE(); case 3332: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(650); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 3333: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3334: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'o') ADVANCE(1317); - if (lookahead == 's') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 's') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3335: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1163); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1164); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3336: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1196); - if (lookahead == 's') ADVANCE(1238); - if (lookahead == 'u') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3337: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(650); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(651); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(746); END_STATE(); case 3338: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 's') ADVANCE(1238); - if (lookahead == 'u') ADVANCE(1119); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1302); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3339: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(710); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1120); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3340: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1168); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(711); + if (lookahead == 's') ADVANCE(1970); END_STATE(); case 3341: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1202); - if (lookahead == 's') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1169); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3342: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2215); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'o') ADVANCE(1203); + if (lookahead == 's') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3343: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(2216); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3344: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3345: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3346: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1834); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3347: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1834); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1835); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3348: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1969); + if (lookahead == 'r') ADVANCE(1835); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3349: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1829); + if (lookahead == 'r') ADVANCE(1970); END_STATE(); case 3350: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1832); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1830); END_STATE(); case 3351: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1070); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'r') ADVANCE(1833); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3352: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1333); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1071); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3353: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1238); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1334); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3354: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 's') ADVANCE(1239); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3355: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(2180); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 's') ADVANCE(1970); END_STATE(); case 3356: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(2181); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3357: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1055); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3358: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1076); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 's') ADVANCE(1056); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3359: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2230); + if (lookahead == 'v') ADVANCE(1077); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3360: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + lookahead == 'a') ADVANCE(2231); END_STATE(); case 3361: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(1234); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3362: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3363: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(746); END_STATE(); case 3364: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); + lookahead == 'n') ADVANCE(1231); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3365: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + lookahead == 'n') ADVANCE(2228); END_STATE(); case 3366: ACCEPT_TOKEN(aux_sym_unquoted_token6); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3367: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1333); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(741); END_STATE(); case 3368: ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1238); + if (set_contains(sym_identifier_character_set_1, 776, lookahead)) ADVANCE(1334); END_STATE(); case 3369: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + ACCEPT_TOKEN(aux_sym_unquoted_token6); + if (set_contains(sym_cmd_identifier_character_set_2, 779, lookahead)) ADVANCE(1239); END_STATE(); case 3370: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '-') ADVANCE(3393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3371: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '-') ADVANCE(3409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3372: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3466); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '-') ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3373: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '-') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3374: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(3458); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '-') ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3375: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3469); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '2') ADVANCE(3459); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3471); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == ':') ADVANCE(3470); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '=') ADVANCE(1753); - if (lookahead == '~') ADVANCE(1791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == ':') ADVANCE(3472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '=') ADVANCE(1749); - if (lookahead == '~') ADVANCE(1787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '=') ADVANCE(1754); + if (lookahead == '~') ADVANCE(1792); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == 'n') ADVANCE(3399); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '=') ADVANCE(1750); + if (lookahead == '~') ADVANCE(1788); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(3400); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(3445); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3416); - if (lookahead == 'o') ADVANCE(3397); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3395); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3416); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3417); + if (lookahead == 'o') ADVANCE(3398); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N') ADVANCE(3451); - if (lookahead == 'n') ADVANCE(1580); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3417); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'N') ADVANCE(3452); + if (lookahead == 'n') ADVANCE(1581); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3388); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '_') ADVANCE(3387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '_') ADVANCE(3389); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3414); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'a') ADVANCE(3415); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3420); - if (lookahead == 'o') ADVANCE(3429); - if (lookahead == 's') ADVANCE(3406); - if (lookahead == 'x') ADVANCE(3423); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'a') ADVANCE(3449); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'a') ADVANCE(3421); + if (lookahead == 'o') ADVANCE(3430); + if (lookahead == 's') ADVANCE(3407); + if (lookahead == 'x') ADVANCE(3424); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'a') ADVANCE(3433); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'c') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(1813); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'c') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3397: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(1714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'd') ADVANCE(1814); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3398: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(1795); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'd') ADVANCE(1715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3399: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'd') ADVANCE(3436); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'd') ADVANCE(1796); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3400: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'd') ADVANCE(3437); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3401: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'e') ADVANCE(1909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3402: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3395); - if (lookahead == 't') ADVANCE(3393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'e') ADVANCE(1918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3403: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3395); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'e') ADVANCE(3396); + if (lookahead == 't') ADVANCE(3394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3404: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(1781); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'e') ADVANCE(3396); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3405: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(1775); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'h') ADVANCE(1782); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3406: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'h') ADVANCE(3413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'h') ADVANCE(1776); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3407: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(3439); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'h') ADVANCE(3414); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3408: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(3417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'i') ADVANCE(3440); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3409: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(3440); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'i') ADVANCE(3418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3410: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'i') ADVANCE(3442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'i') ADVANCE(3441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3411: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'k') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'i') ADVANCE(3443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3412: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1898); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'k') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3413: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(1743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'l') ADVANCE(1899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3414: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3435); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'l') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(1744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3415: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3412); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'l') ADVANCE(3436); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3416: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(1969); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'l') ADVANCE(3413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3417: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(1769); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'n') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3418: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(3396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'n') ADVANCE(1770); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3419: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'n') ADVANCE(3397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3420: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(3398); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'n') ADVANCE(3400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3421: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3428); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'n') ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3422: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'o') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3423: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'o') ADVANCE(3398); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3424: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'o') ADVANCE(3431); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3425: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'u') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(3416); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'a') ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3426: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3427: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1829); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3428: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1821); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(1830); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3429: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(1822); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3430: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(1801); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(1808); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3431: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(1802); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3432: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(3445); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3433: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'r') ADVANCE(3444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3434: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3435: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3401); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 's') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3436: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 's') ADVANCE(3402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3437: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3373); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 's') ADVANCE(3372); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3438: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 's') ADVANCE(3374); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3439: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3369); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3440: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3404); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3441: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3442: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3443: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3406); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3444: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 't') ADVANCE(3438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3445: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'u') ADVANCE(3401); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3446: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'w') ADVANCE(3409); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3447: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'w') ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3448: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'y') ADVANCE(1969); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'w') ADVANCE(3411); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3449: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'y') ADVANCE(1970); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3450: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3451: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1958); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3452: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1959); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3453: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1964); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3457); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3454: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + lookahead == 'n') ADVANCE(1965); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3455: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3456: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3457); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3457: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1956); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3458); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3458: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1991); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1957); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3459: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3460: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3461: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3462: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3463: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1987); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3464: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3465: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1991); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3466: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3467: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1994); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3468: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1995); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3469: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3470: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3464); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3471: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3472: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3473: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3473); END_STATE(); case 3474: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); END_STATE(); case 3475: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3476: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3477: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3478: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 3479: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(3416); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3480: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3481: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(3528); - if (lookahead == '_') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3482: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '-') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3483: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3526); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3484); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3535); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3535); + if (lookahead == '-') ADVANCE(3530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3484: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '2') ADVANCE(3518); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3527); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '.') ADVANCE(3527); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3485); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 13, lookahead))) ADVANCE(3536); END_STATE(); case 3485: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3519); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3521); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '2') ADVANCE(3519); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3528); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3486: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3531); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == ':') ADVANCE(3520); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3522); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3487: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3533); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == ':') ADVANCE(3532); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3488: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T') ADVANCE(3530); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == ':') ADVANCE(3534); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3489: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3490); - if (lookahead == 'b') ADVANCE(1973); - if (lookahead == 'o') ADVANCE(1977); - if (lookahead == 'x') ADVANCE(1981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'T') ADVANCE(3531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3490: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3491); + if (lookahead == 'b') ADVANCE(1974); + if (lookahead == 'o') ADVANCE(1978); + if (lookahead == 'x') ADVANCE(1982); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3491: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3492: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3493: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3490); + if (lookahead == '_') ADVANCE(3491); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3494: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3495); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3495: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3496); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1884); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3496: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(3496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1884); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3497: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'a') ADVANCE(3500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '_') ADVANCE(3497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1862); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3498: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1915); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'a') ADVANCE(3501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3499: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1924); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'e') ADVANCE(1916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3500: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3504); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'e') ADVANCE(1925); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3501: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(1905); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'l') ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3502: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3501); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'l') ADVANCE(1906); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3503: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'l') ADVANCE(3502); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3504: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 's') ADVANCE(3499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'r') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3505: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 's') ADVANCE(3500); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3506: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3502); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'u') ADVANCE(3499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3507: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3484); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3535); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'u') ADVANCE(3503); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3508: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3485); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3509: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3510: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3511: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3514); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == 'i') ADVANCE(3516); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3512: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3535); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3513: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3509); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + lookahead == 'n') ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3514: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3510); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3515: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3516); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3516: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3535); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3517: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3518: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3518); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3519: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3521); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3520: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3520); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3522); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3521: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3535); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3521); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3522: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3523: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3524: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3489); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3525: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3526: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3527: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3528: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3522); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3529: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3523); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3530: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3531: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3525); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3532: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3533: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3532); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3534: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3534); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3533); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3535: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3536: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3537: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); END_STATE(); case 3538: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3539: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3540: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3541: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 3542: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(3416); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3543: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3544: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '#') ADVANCE(3591); - if (lookahead == '_') ADVANCE(3546); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3545: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '#') ADVANCE(3591); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + if (lookahead == '#') ADVANCE(3592); + if (lookahead == '_') ADVANCE(3547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 3546: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(3546); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + if (lookahead == '#') ADVANCE(3592); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 3547: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + if (lookahead == '_') ADVANCE(3547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 3548: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 3549: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); END_STATE(); case 3550: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3551: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3552: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3553: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + if (lookahead == 'r') ADVANCE(3445); END_STATE(); case 3554: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); + if (lookahead == 'u') ADVANCE(3416); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3555: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3556: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3557: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(738); - if (lookahead == '+' || - lookahead == '-') ADVANCE(582); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); END_STATE(); case 3558: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == '_') ADVANCE(582); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(739); if (lookahead == '+' || - lookahead == '-') ADVANCE(582); + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3559: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(738); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == '_') ADVANCE(583); + if (lookahead == 'i') ADVANCE(598); + if (lookahead == '+' || + lookahead == '-') ADVANCE(583); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3560: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(739); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3561: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(738); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(598); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3562: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == '_') ADVANCE(3388); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3388); + if (lookahead == 'I') ADVANCE(739); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 's') ADVANCE(1970); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3563: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == '_') ADVANCE(3388); - if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == '_') ADVANCE(3389); + if (lookahead == 'i') ADVANCE(3451); if (lookahead == '+' || - lookahead == '-') ADVANCE(3388); + lookahead == '-') ADVANCE(3389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3564: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == '_') ADVANCE(3389); + if (lookahead == 'i') ADVANCE(3395); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); END_STATE(); case 3565: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3450); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(3445); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3566: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3567: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I') ADVANCE(3450); - if (lookahead == 'i') ADVANCE(3416); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3395); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1965); + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3568: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1952); + if (lookahead == 'I') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(3417); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1966); END_STATE(); case 3569: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(3387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1953); END_STATE(); case 3570: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if (lookahead == '_') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3571: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'b') ADVANCE(1971); - if (lookahead == 'o') ADVANCE(1975); - if (lookahead == 'x') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(3390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); END_STATE(); case 3572: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1944); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'b') ADVANCE(1972); + if (lookahead == 'o') ADVANCE(1976); + if (lookahead == 'x') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3573: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(3414); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1945); END_STATE(); case 3574: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(731); + if (lookahead == 'a') ADVANCE(3415); END_STATE(); case 3575: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(3448); + if (lookahead == 'a') ADVANCE(732); END_STATE(); case 3576: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(598); + if (lookahead == 'a') ADVANCE(3449); END_STATE(); case 3577: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(3395); + if (lookahead == 'e') ADVANCE(599); END_STATE(); case 3578: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'k') ADVANCE(1969); + if (lookahead == 'e') ADVANCE(3396); END_STATE(); case 3579: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(1969); + if (lookahead == 'k') ADVANCE(1970); END_STATE(); case 3580: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(1969); + if (lookahead == 'r') ADVANCE(1970); END_STATE(); case 3581: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(1969); - if (lookahead == 'u') ADVANCE(3415); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + if (lookahead == 's') ADVANCE(1970); END_STATE(); case 3582: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); + if (lookahead == 's') ADVANCE(1970); + if (lookahead == 'u') ADVANCE(3416); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3453); + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3583: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3454); END_STATE(); case 3584: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3452); END_STATE(); case 3585: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(964); - if (lookahead != 0) ADVANCE(6); END_STATE(); case 3586: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(963); + if (lookahead == '\n') ADVANCE(965); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 3587: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2465); + if (lookahead == '!') ADVANCE(964); END_STATE(); case 3588: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ',' || - lookahead == ':') ADVANCE(2936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2897); + if (lookahead == ',') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2466); END_STATE(); case 3589: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + if (lookahead == ',' || + lookahead == ':') ADVANCE(2937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(2898); END_STATE(); case 3590: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3535); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 12, lookahead))) ADVANCE(2033); END_STATE(); case 3591: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3547); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3536); END_STATE(); case 3592: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 12, lookahead))) ADVANCE(3548); END_STATE(); case 3593: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2028); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2937); END_STATE(); case 3594: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(3596); + if ((!eof && set_contains(aux_sym__list_item_starts_with_sign_token1_character_set_1, 11, lookahead))) ADVANCE(2029); END_STATE(); case 3595: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(3597); + END_STATE(); + case 3596: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(3594); + if (lookahead == '#') ADVANCE(3595); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3595); + lookahead == ' ') ADVANCE(3596); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3596); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3597); END_STATE(); - case 3596: + case 3597: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(3596); + lookahead != '\n') ADVANCE(3597); END_STATE(); default: return false; @@ -61319,871 +61346,871 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 961}, - [2] = {.lex_state = 279}, - [3] = {.lex_state = 279}, - [4] = {.lex_state = 279}, - [5] = {.lex_state = 279}, - [6] = {.lex_state = 279}, - [7] = {.lex_state = 279}, - [8] = {.lex_state = 279}, - [9] = {.lex_state = 279}, - [10] = {.lex_state = 279}, - [11] = {.lex_state = 279}, - [12] = {.lex_state = 279}, - [13] = {.lex_state = 279}, - [14] = {.lex_state = 279}, - [15] = {.lex_state = 279}, - [16] = {.lex_state = 279}, - [17] = {.lex_state = 279}, - [18] = {.lex_state = 279}, - [19] = {.lex_state = 279}, - [20] = {.lex_state = 279}, - [21] = {.lex_state = 279}, - [22] = {.lex_state = 279}, - [23] = {.lex_state = 279}, - [24] = {.lex_state = 279}, - [25] = {.lex_state = 279}, - [26] = {.lex_state = 279}, - [27] = {.lex_state = 279}, - [28] = {.lex_state = 279}, - [29] = {.lex_state = 279}, - [30] = {.lex_state = 279}, - [31] = {.lex_state = 279}, - [32] = {.lex_state = 279}, - [33] = {.lex_state = 279}, - [34] = {.lex_state = 279}, - [35] = {.lex_state = 279}, - [36] = {.lex_state = 279}, - [37] = {.lex_state = 279}, - [38] = {.lex_state = 279}, - [39] = {.lex_state = 279}, - [40] = {.lex_state = 279}, - [41] = {.lex_state = 279}, - [42] = {.lex_state = 279}, - [43] = {.lex_state = 279}, - [44] = {.lex_state = 279}, - [45] = {.lex_state = 279}, - [46] = {.lex_state = 279}, - [47] = {.lex_state = 279}, - [48] = {.lex_state = 959}, - [49] = {.lex_state = 959}, - [50] = {.lex_state = 959}, - [51] = {.lex_state = 959}, - [52] = {.lex_state = 959}, - [53] = {.lex_state = 959}, - [54] = {.lex_state = 959}, - [55] = {.lex_state = 959}, - [56] = {.lex_state = 959}, - [57] = {.lex_state = 959}, - [58] = {.lex_state = 959}, - [59] = {.lex_state = 959}, - [60] = {.lex_state = 959}, - [61] = {.lex_state = 959}, - [62] = {.lex_state = 959}, - [63] = {.lex_state = 959}, - [64] = {.lex_state = 959}, - [65] = {.lex_state = 959}, - [66] = {.lex_state = 959}, - [67] = {.lex_state = 959}, - [68] = {.lex_state = 959}, - [69] = {.lex_state = 959}, - [70] = {.lex_state = 959}, - [71] = {.lex_state = 959}, - [72] = {.lex_state = 959}, - [73] = {.lex_state = 959}, - [74] = {.lex_state = 959}, - [75] = {.lex_state = 959}, - [76] = {.lex_state = 959}, - [77] = {.lex_state = 959}, - [78] = {.lex_state = 959}, - [79] = {.lex_state = 959}, - [80] = {.lex_state = 959}, - [81] = {.lex_state = 959}, - [82] = {.lex_state = 959}, - [83] = {.lex_state = 959}, - [84] = {.lex_state = 959}, - [85] = {.lex_state = 959}, - [86] = {.lex_state = 959}, - [87] = {.lex_state = 959}, - [88] = {.lex_state = 959}, - [89] = {.lex_state = 959}, - [90] = {.lex_state = 959}, - [91] = {.lex_state = 959}, - [92] = {.lex_state = 959}, - [93] = {.lex_state = 959}, - [94] = {.lex_state = 959}, - [95] = {.lex_state = 959}, - [96] = {.lex_state = 959}, - [97] = {.lex_state = 959}, - [98] = {.lex_state = 959}, - [99] = {.lex_state = 959}, - [100] = {.lex_state = 959}, - [101] = {.lex_state = 959}, - [102] = {.lex_state = 959}, - [103] = {.lex_state = 959}, - [104] = {.lex_state = 959}, - [105] = {.lex_state = 959}, - [106] = {.lex_state = 959}, - [107] = {.lex_state = 959}, - [108] = {.lex_state = 959}, - [109] = {.lex_state = 959}, - [110] = {.lex_state = 959}, - [111] = {.lex_state = 959}, - [112] = {.lex_state = 959}, - [113] = {.lex_state = 959}, - [114] = {.lex_state = 959}, - [115] = {.lex_state = 959}, - [116] = {.lex_state = 959}, - [117] = {.lex_state = 959}, - [118] = {.lex_state = 959}, - [119] = {.lex_state = 959}, - [120] = {.lex_state = 959}, - [121] = {.lex_state = 959}, - [122] = {.lex_state = 959}, - [123] = {.lex_state = 959}, - [124] = {.lex_state = 959}, - [125] = {.lex_state = 959}, - [126] = {.lex_state = 959}, - [127] = {.lex_state = 959}, - [128] = {.lex_state = 959}, - [129] = {.lex_state = 959}, - [130] = {.lex_state = 959}, - [131] = {.lex_state = 959}, - [132] = {.lex_state = 959}, - [133] = {.lex_state = 959}, - [134] = {.lex_state = 959}, - [135] = {.lex_state = 959}, - [136] = {.lex_state = 959}, - [137] = {.lex_state = 959}, - [138] = {.lex_state = 959}, - [139] = {.lex_state = 959}, - [140] = {.lex_state = 959}, - [141] = {.lex_state = 959}, - [142] = {.lex_state = 959}, - [143] = {.lex_state = 959}, - [144] = {.lex_state = 959}, - [145] = {.lex_state = 959}, - [146] = {.lex_state = 959}, - [147] = {.lex_state = 959}, - [148] = {.lex_state = 959}, - [149] = {.lex_state = 959}, - [150] = {.lex_state = 959}, - [151] = {.lex_state = 959}, - [152] = {.lex_state = 959}, - [153] = {.lex_state = 959}, - [154] = {.lex_state = 959}, - [155] = {.lex_state = 959}, - [156] = {.lex_state = 959}, - [157] = {.lex_state = 959}, - [158] = {.lex_state = 959}, - [159] = {.lex_state = 959}, - [160] = {.lex_state = 959}, - [161] = {.lex_state = 959}, - [162] = {.lex_state = 959}, - [163] = {.lex_state = 959}, - [164] = {.lex_state = 959}, - [165] = {.lex_state = 959}, - [166] = {.lex_state = 959}, - [167] = {.lex_state = 959}, - [168] = {.lex_state = 959}, - [169] = {.lex_state = 959}, - [170] = {.lex_state = 959}, - [171] = {.lex_state = 959}, - [172] = {.lex_state = 959}, - [173] = {.lex_state = 959}, - [174] = {.lex_state = 959}, - [175] = {.lex_state = 959}, - [176] = {.lex_state = 959}, - [177] = {.lex_state = 959}, - [178] = {.lex_state = 959}, - [179] = {.lex_state = 959}, - [180] = {.lex_state = 959}, - [181] = {.lex_state = 959}, - [182] = {.lex_state = 959}, - [183] = {.lex_state = 959}, - [184] = {.lex_state = 959}, - [185] = {.lex_state = 959}, - [186] = {.lex_state = 959}, - [187] = {.lex_state = 959}, - [188] = {.lex_state = 959}, - [189] = {.lex_state = 959}, - [190] = {.lex_state = 959}, - [191] = {.lex_state = 959}, - [192] = {.lex_state = 959}, - [193] = {.lex_state = 959}, - [194] = {.lex_state = 959}, - [195] = {.lex_state = 959}, - [196] = {.lex_state = 959}, - [197] = {.lex_state = 959}, - [198] = {.lex_state = 959}, - [199] = {.lex_state = 959}, - [200] = {.lex_state = 959}, - [201] = {.lex_state = 959}, - [202] = {.lex_state = 959}, - [203] = {.lex_state = 959}, - [204] = {.lex_state = 959}, - [205] = {.lex_state = 959}, - [206] = {.lex_state = 959}, - [207] = {.lex_state = 959}, - [208] = {.lex_state = 959}, - [209] = {.lex_state = 959}, - [210] = {.lex_state = 959}, - [211] = {.lex_state = 959}, - [212] = {.lex_state = 959}, - [213] = {.lex_state = 959}, - [214] = {.lex_state = 959}, - [215] = {.lex_state = 959}, - [216] = {.lex_state = 959}, - [217] = {.lex_state = 959}, - [218] = {.lex_state = 959}, - [219] = {.lex_state = 959}, - [220] = {.lex_state = 959}, - [221] = {.lex_state = 959}, - [222] = {.lex_state = 959}, - [223] = {.lex_state = 959}, - [224] = {.lex_state = 959}, - [225] = {.lex_state = 959}, - [226] = {.lex_state = 959}, - [227] = {.lex_state = 959}, - [228] = {.lex_state = 959}, - [229] = {.lex_state = 959}, - [230] = {.lex_state = 959}, - [231] = {.lex_state = 959}, - [232] = {.lex_state = 959}, - [233] = {.lex_state = 959}, - [234] = {.lex_state = 959}, - [235] = {.lex_state = 959}, - [236] = {.lex_state = 959}, - [237] = {.lex_state = 959}, - [238] = {.lex_state = 959}, - [239] = {.lex_state = 959}, - [240] = {.lex_state = 959}, - [241] = {.lex_state = 959}, - [242] = {.lex_state = 959}, - [243] = {.lex_state = 959}, - [244] = {.lex_state = 959}, - [245] = {.lex_state = 959}, - [246] = {.lex_state = 959}, - [247] = {.lex_state = 959}, - [248] = {.lex_state = 959}, - [249] = {.lex_state = 959}, - [250] = {.lex_state = 959}, - [251] = {.lex_state = 959}, - [252] = {.lex_state = 959}, - [253] = {.lex_state = 959}, - [254] = {.lex_state = 959}, - [255] = {.lex_state = 959}, - [256] = {.lex_state = 959}, - [257] = {.lex_state = 959}, - [258] = {.lex_state = 959}, - [259] = {.lex_state = 959}, - [260] = {.lex_state = 959}, - [261] = {.lex_state = 959}, - [262] = {.lex_state = 959}, - [263] = {.lex_state = 959}, - [264] = {.lex_state = 786}, - [265] = {.lex_state = 786}, - [266] = {.lex_state = 831}, - [267] = {.lex_state = 788}, - [268] = {.lex_state = 788}, - [269] = {.lex_state = 788}, - [270] = {.lex_state = 786}, - [271] = {.lex_state = 788}, - [272] = {.lex_state = 786}, - [273] = {.lex_state = 788}, - [274] = {.lex_state = 789}, - [275] = {.lex_state = 788}, + [1] = {.lex_state = 962}, + [2] = {.lex_state = 280}, + [3] = {.lex_state = 280}, + [4] = {.lex_state = 280}, + [5] = {.lex_state = 280}, + [6] = {.lex_state = 280}, + [7] = {.lex_state = 280}, + [8] = {.lex_state = 280}, + [9] = {.lex_state = 280}, + [10] = {.lex_state = 280}, + [11] = {.lex_state = 280}, + [12] = {.lex_state = 280}, + [13] = {.lex_state = 280}, + [14] = {.lex_state = 280}, + [15] = {.lex_state = 280}, + [16] = {.lex_state = 280}, + [17] = {.lex_state = 280}, + [18] = {.lex_state = 280}, + [19] = {.lex_state = 280}, + [20] = {.lex_state = 280}, + [21] = {.lex_state = 280}, + [22] = {.lex_state = 280}, + [23] = {.lex_state = 280}, + [24] = {.lex_state = 280}, + [25] = {.lex_state = 280}, + [26] = {.lex_state = 280}, + [27] = {.lex_state = 280}, + [28] = {.lex_state = 280}, + [29] = {.lex_state = 280}, + [30] = {.lex_state = 280}, + [31] = {.lex_state = 280}, + [32] = {.lex_state = 280}, + [33] = {.lex_state = 280}, + [34] = {.lex_state = 280}, + [35] = {.lex_state = 280}, + [36] = {.lex_state = 280}, + [37] = {.lex_state = 280}, + [38] = {.lex_state = 280}, + [39] = {.lex_state = 280}, + [40] = {.lex_state = 280}, + [41] = {.lex_state = 280}, + [42] = {.lex_state = 280}, + [43] = {.lex_state = 280}, + [44] = {.lex_state = 280}, + [45] = {.lex_state = 280}, + [46] = {.lex_state = 280}, + [47] = {.lex_state = 280}, + [48] = {.lex_state = 960}, + [49] = {.lex_state = 960}, + [50] = {.lex_state = 960}, + [51] = {.lex_state = 960}, + [52] = {.lex_state = 960}, + [53] = {.lex_state = 960}, + [54] = {.lex_state = 960}, + [55] = {.lex_state = 960}, + [56] = {.lex_state = 960}, + [57] = {.lex_state = 960}, + [58] = {.lex_state = 960}, + [59] = {.lex_state = 960}, + [60] = {.lex_state = 960}, + [61] = {.lex_state = 960}, + [62] = {.lex_state = 960}, + [63] = {.lex_state = 960}, + [64] = {.lex_state = 960}, + [65] = {.lex_state = 960}, + [66] = {.lex_state = 960}, + [67] = {.lex_state = 960}, + [68] = {.lex_state = 960}, + [69] = {.lex_state = 960}, + [70] = {.lex_state = 960}, + [71] = {.lex_state = 960}, + [72] = {.lex_state = 960}, + [73] = {.lex_state = 960}, + [74] = {.lex_state = 960}, + [75] = {.lex_state = 960}, + [76] = {.lex_state = 960}, + [77] = {.lex_state = 960}, + [78] = {.lex_state = 960}, + [79] = {.lex_state = 960}, + [80] = {.lex_state = 960}, + [81] = {.lex_state = 960}, + [82] = {.lex_state = 960}, + [83] = {.lex_state = 960}, + [84] = {.lex_state = 960}, + [85] = {.lex_state = 960}, + [86] = {.lex_state = 960}, + [87] = {.lex_state = 960}, + [88] = {.lex_state = 960}, + [89] = {.lex_state = 960}, + [90] = {.lex_state = 960}, + [91] = {.lex_state = 960}, + [92] = {.lex_state = 960}, + [93] = {.lex_state = 960}, + [94] = {.lex_state = 960}, + [95] = {.lex_state = 960}, + [96] = {.lex_state = 960}, + [97] = {.lex_state = 960}, + [98] = {.lex_state = 960}, + [99] = {.lex_state = 960}, + [100] = {.lex_state = 960}, + [101] = {.lex_state = 960}, + [102] = {.lex_state = 960}, + [103] = {.lex_state = 960}, + [104] = {.lex_state = 960}, + [105] = {.lex_state = 960}, + [106] = {.lex_state = 960}, + [107] = {.lex_state = 960}, + [108] = {.lex_state = 960}, + [109] = {.lex_state = 960}, + [110] = {.lex_state = 960}, + [111] = {.lex_state = 960}, + [112] = {.lex_state = 960}, + [113] = {.lex_state = 960}, + [114] = {.lex_state = 960}, + [115] = {.lex_state = 960}, + [116] = {.lex_state = 960}, + [117] = {.lex_state = 960}, + [118] = {.lex_state = 960}, + [119] = {.lex_state = 960}, + [120] = {.lex_state = 960}, + [121] = {.lex_state = 960}, + [122] = {.lex_state = 960}, + [123] = {.lex_state = 960}, + [124] = {.lex_state = 960}, + [125] = {.lex_state = 960}, + [126] = {.lex_state = 960}, + [127] = {.lex_state = 960}, + [128] = {.lex_state = 960}, + [129] = {.lex_state = 960}, + [130] = {.lex_state = 960}, + [131] = {.lex_state = 960}, + [132] = {.lex_state = 960}, + [133] = {.lex_state = 960}, + [134] = {.lex_state = 960}, + [135] = {.lex_state = 960}, + [136] = {.lex_state = 960}, + [137] = {.lex_state = 960}, + [138] = {.lex_state = 960}, + [139] = {.lex_state = 960}, + [140] = {.lex_state = 960}, + [141] = {.lex_state = 960}, + [142] = {.lex_state = 960}, + [143] = {.lex_state = 960}, + [144] = {.lex_state = 960}, + [145] = {.lex_state = 960}, + [146] = {.lex_state = 960}, + [147] = {.lex_state = 960}, + [148] = {.lex_state = 960}, + [149] = {.lex_state = 960}, + [150] = {.lex_state = 960}, + [151] = {.lex_state = 960}, + [152] = {.lex_state = 960}, + [153] = {.lex_state = 960}, + [154] = {.lex_state = 960}, + [155] = {.lex_state = 960}, + [156] = {.lex_state = 960}, + [157] = {.lex_state = 960}, + [158] = {.lex_state = 960}, + [159] = {.lex_state = 960}, + [160] = {.lex_state = 960}, + [161] = {.lex_state = 960}, + [162] = {.lex_state = 960}, + [163] = {.lex_state = 960}, + [164] = {.lex_state = 960}, + [165] = {.lex_state = 960}, + [166] = {.lex_state = 960}, + [167] = {.lex_state = 960}, + [168] = {.lex_state = 960}, + [169] = {.lex_state = 960}, + [170] = {.lex_state = 960}, + [171] = {.lex_state = 960}, + [172] = {.lex_state = 960}, + [173] = {.lex_state = 960}, + [174] = {.lex_state = 960}, + [175] = {.lex_state = 960}, + [176] = {.lex_state = 960}, + [177] = {.lex_state = 960}, + [178] = {.lex_state = 960}, + [179] = {.lex_state = 960}, + [180] = {.lex_state = 960}, + [181] = {.lex_state = 960}, + [182] = {.lex_state = 960}, + [183] = {.lex_state = 960}, + [184] = {.lex_state = 960}, + [185] = {.lex_state = 960}, + [186] = {.lex_state = 960}, + [187] = {.lex_state = 960}, + [188] = {.lex_state = 960}, + [189] = {.lex_state = 960}, + [190] = {.lex_state = 960}, + [191] = {.lex_state = 960}, + [192] = {.lex_state = 960}, + [193] = {.lex_state = 960}, + [194] = {.lex_state = 960}, + [195] = {.lex_state = 960}, + [196] = {.lex_state = 960}, + [197] = {.lex_state = 960}, + [198] = {.lex_state = 960}, + [199] = {.lex_state = 960}, + [200] = {.lex_state = 960}, + [201] = {.lex_state = 960}, + [202] = {.lex_state = 960}, + [203] = {.lex_state = 960}, + [204] = {.lex_state = 960}, + [205] = {.lex_state = 960}, + [206] = {.lex_state = 960}, + [207] = {.lex_state = 960}, + [208] = {.lex_state = 960}, + [209] = {.lex_state = 960}, + [210] = {.lex_state = 960}, + [211] = {.lex_state = 960}, + [212] = {.lex_state = 960}, + [213] = {.lex_state = 960}, + [214] = {.lex_state = 960}, + [215] = {.lex_state = 960}, + [216] = {.lex_state = 960}, + [217] = {.lex_state = 960}, + [218] = {.lex_state = 960}, + [219] = {.lex_state = 960}, + [220] = {.lex_state = 960}, + [221] = {.lex_state = 960}, + [222] = {.lex_state = 960}, + [223] = {.lex_state = 960}, + [224] = {.lex_state = 960}, + [225] = {.lex_state = 960}, + [226] = {.lex_state = 960}, + [227] = {.lex_state = 960}, + [228] = {.lex_state = 960}, + [229] = {.lex_state = 960}, + [230] = {.lex_state = 960}, + [231] = {.lex_state = 960}, + [232] = {.lex_state = 960}, + [233] = {.lex_state = 960}, + [234] = {.lex_state = 960}, + [235] = {.lex_state = 960}, + [236] = {.lex_state = 960}, + [237] = {.lex_state = 960}, + [238] = {.lex_state = 960}, + [239] = {.lex_state = 960}, + [240] = {.lex_state = 960}, + [241] = {.lex_state = 960}, + [242] = {.lex_state = 960}, + [243] = {.lex_state = 960}, + [244] = {.lex_state = 960}, + [245] = {.lex_state = 960}, + [246] = {.lex_state = 960}, + [247] = {.lex_state = 960}, + [248] = {.lex_state = 960}, + [249] = {.lex_state = 960}, + [250] = {.lex_state = 960}, + [251] = {.lex_state = 960}, + [252] = {.lex_state = 960}, + [253] = {.lex_state = 960}, + [254] = {.lex_state = 960}, + [255] = {.lex_state = 960}, + [256] = {.lex_state = 960}, + [257] = {.lex_state = 960}, + [258] = {.lex_state = 960}, + [259] = {.lex_state = 960}, + [260] = {.lex_state = 960}, + [261] = {.lex_state = 960}, + [262] = {.lex_state = 960}, + [263] = {.lex_state = 960}, + [264] = {.lex_state = 787}, + [265] = {.lex_state = 787}, + [266] = {.lex_state = 787}, + [267] = {.lex_state = 832}, + [268] = {.lex_state = 787}, + [269] = {.lex_state = 789}, + [270] = {.lex_state = 789}, + [271] = {.lex_state = 789}, + [272] = {.lex_state = 789}, + [273] = {.lex_state = 789}, + [274] = {.lex_state = 783}, + [275] = {.lex_state = 832}, [276] = {.lex_state = 789}, - [277] = {.lex_state = 782}, - [278] = {.lex_state = 782}, - [279] = {.lex_state = 788}, - [280] = {.lex_state = 789}, - [281] = {.lex_state = 788}, - [282] = {.lex_state = 788}, - [283] = {.lex_state = 789}, - [284] = {.lex_state = 831}, - [285] = {.lex_state = 789}, - [286] = {.lex_state = 789}, - [287] = {.lex_state = 788}, - [288] = {.lex_state = 812}, - [289] = {.lex_state = 812}, - [290] = {.lex_state = 808}, - [291] = {.lex_state = 808}, - [292] = {.lex_state = 783}, - [293] = {.lex_state = 913}, - [294] = {.lex_state = 795}, - [295] = {.lex_state = 789}, - [296] = {.lex_state = 789}, - [297] = {.lex_state = 812}, - [298] = {.lex_state = 789}, - [299] = {.lex_state = 783}, - [300] = {.lex_state = 812}, - [301] = {.lex_state = 789}, - [302] = {.lex_state = 795}, - [303] = {.lex_state = 783}, - [304] = {.lex_state = 812}, - [305] = {.lex_state = 812}, - [306] = {.lex_state = 789}, - [307] = {.lex_state = 812}, - [308] = {.lex_state = 783}, - [309] = {.lex_state = 812}, - [310] = {.lex_state = 812}, - [311] = {.lex_state = 775}, - [312] = {.lex_state = 812}, - [313] = {.lex_state = 830}, - [314] = {.lex_state = 812}, - [315] = {.lex_state = 812}, - [316] = {.lex_state = 782}, - [317] = {.lex_state = 783}, - [318] = {.lex_state = 812}, - [319] = {.lex_state = 812}, - [320] = {.lex_state = 789}, - [321] = {.lex_state = 812}, - [322] = {.lex_state = 782}, - [323] = {.lex_state = 812}, - [324] = {.lex_state = 812}, - [325] = {.lex_state = 816}, - [326] = {.lex_state = 784}, - [327] = {.lex_state = 807}, - [328] = {.lex_state = 816}, - [329] = {.lex_state = 830}, - [330] = {.lex_state = 780}, - [331] = {.lex_state = 783}, - [332] = {.lex_state = 812}, - [333] = {.lex_state = 783}, - [334] = {.lex_state = 807}, - [335] = {.lex_state = 812}, - [336] = {.lex_state = 775}, - [337] = {.lex_state = 807}, - [338] = {.lex_state = 784}, - [339] = {.lex_state = 808}, - [340] = {.lex_state = 807}, - [341] = {.lex_state = 812}, - [342] = {.lex_state = 816}, - [343] = {.lex_state = 807}, - [344] = {.lex_state = 812}, - [345] = {.lex_state = 808}, - [346] = {.lex_state = 812}, - [347] = {.lex_state = 783}, - [348] = {.lex_state = 784}, - [349] = {.lex_state = 780}, - [350] = {.lex_state = 812}, - [351] = {.lex_state = 812}, - [352] = {.lex_state = 795}, - [353] = {.lex_state = 812}, - [354] = {.lex_state = 812}, - [355] = {.lex_state = 812}, - [356] = {.lex_state = 780}, - [357] = {.lex_state = 783}, - [358] = {.lex_state = 783}, - [359] = {.lex_state = 913}, - [360] = {.lex_state = 784}, - [361] = {.lex_state = 795}, - [362] = {.lex_state = 812}, - [363] = {.lex_state = 812}, - [364] = {.lex_state = 812}, - [365] = {.lex_state = 812}, - [366] = {.lex_state = 780}, - [367] = {.lex_state = 812}, - [368] = {.lex_state = 812}, - [369] = {.lex_state = 812}, - [370] = {.lex_state = 784}, - [371] = {.lex_state = 812}, - [372] = {.lex_state = 806}, - [373] = {.lex_state = 806}, - [374] = {.lex_state = 816}, - [375] = {.lex_state = 784}, - [376] = {.lex_state = 812}, - [377] = {.lex_state = 837}, - [378] = {.lex_state = 1}, + [277] = {.lex_state = 789}, + [278] = {.lex_state = 783}, + [279] = {.lex_state = 790}, + [280] = {.lex_state = 790}, + [281] = {.lex_state = 789}, + [282] = {.lex_state = 789}, + [283] = {.lex_state = 790}, + [284] = {.lex_state = 790}, + [285] = {.lex_state = 790}, + [286] = {.lex_state = 790}, + [287] = {.lex_state = 789}, + [288] = {.lex_state = 813}, + [289] = {.lex_state = 813}, + [290] = {.lex_state = 796}, + [291] = {.lex_state = 790}, + [292] = {.lex_state = 813}, + [293] = {.lex_state = 790}, + [294] = {.lex_state = 813}, + [295] = {.lex_state = 790}, + [296] = {.lex_state = 813}, + [297] = {.lex_state = 813}, + [298] = {.lex_state = 784}, + [299] = {.lex_state = 813}, + [300] = {.lex_state = 784}, + [301] = {.lex_state = 813}, + [302] = {.lex_state = 813}, + [303] = {.lex_state = 796}, + [304] = {.lex_state = 784}, + [305] = {.lex_state = 776}, + [306] = {.lex_state = 790}, + [307] = {.lex_state = 813}, + [308] = {.lex_state = 784}, + [309] = {.lex_state = 813}, + [310] = {.lex_state = 813}, + [311] = {.lex_state = 813}, + [312] = {.lex_state = 831}, + [313] = {.lex_state = 813}, + [314] = {.lex_state = 813}, + [315] = {.lex_state = 914}, + [316] = {.lex_state = 809}, + [317] = {.lex_state = 809}, + [318] = {.lex_state = 790}, + [319] = {.lex_state = 783}, + [320] = {.lex_state = 790}, + [321] = {.lex_state = 783}, + [322] = {.lex_state = 784}, + [323] = {.lex_state = 784}, + [324] = {.lex_state = 785}, + [325] = {.lex_state = 817}, + [326] = {.lex_state = 813}, + [327] = {.lex_state = 813}, + [328] = {.lex_state = 784}, + [329] = {.lex_state = 785}, + [330] = {.lex_state = 813}, + [331] = {.lex_state = 813}, + [332] = {.lex_state = 781}, + [333] = {.lex_state = 796}, + [334] = {.lex_state = 813}, + [335] = {.lex_state = 781}, + [336] = {.lex_state = 781}, + [337] = {.lex_state = 813}, + [338] = {.lex_state = 813}, + [339] = {.lex_state = 813}, + [340] = {.lex_state = 813}, + [341] = {.lex_state = 813}, + [342] = {.lex_state = 776}, + [343] = {.lex_state = 784}, + [344] = {.lex_state = 813}, + [345] = {.lex_state = 785}, + [346] = {.lex_state = 809}, + [347] = {.lex_state = 809}, + [348] = {.lex_state = 813}, + [349] = {.lex_state = 813}, + [350] = {.lex_state = 785}, + [351] = {.lex_state = 813}, + [352] = {.lex_state = 813}, + [353] = {.lex_state = 914}, + [354] = {.lex_state = 813}, + [355] = {.lex_state = 808}, + [356] = {.lex_state = 817}, + [357] = {.lex_state = 808}, + [358] = {.lex_state = 785}, + [359] = {.lex_state = 808}, + [360] = {.lex_state = 808}, + [361] = {.lex_state = 808}, + [362] = {.lex_state = 831}, + [363] = {.lex_state = 813}, + [364] = {.lex_state = 796}, + [365] = {.lex_state = 784}, + [366] = {.lex_state = 817}, + [367] = {.lex_state = 781}, + [368] = {.lex_state = 813}, + [369] = {.lex_state = 784}, + [370] = {.lex_state = 813}, + [371] = {.lex_state = 813}, + [372] = {.lex_state = 807}, + [373] = {.lex_state = 838}, + [374] = {.lex_state = 1}, + [375] = {.lex_state = 813}, + [376] = {.lex_state = 817}, + [377] = {.lex_state = 807}, + [378] = {.lex_state = 817}, [379] = {.lex_state = 807}, - [380] = {.lex_state = 806}, - [381] = {.lex_state = 774}, - [382] = {.lex_state = 784}, - [383] = {.lex_state = 806}, - [384] = {.lex_state = 807}, - [385] = {.lex_state = 812}, + [380] = {.lex_state = 817}, + [381] = {.lex_state = 813}, + [382] = {.lex_state = 813}, + [383] = {.lex_state = 813}, + [384] = {.lex_state = 813}, + [385] = {.lex_state = 1}, [386] = {.lex_state = 1}, - [387] = {.lex_state = 806}, - [388] = {.lex_state = 806}, - [389] = {.lex_state = 807}, - [390] = {.lex_state = 806}, - [391] = {.lex_state = 812}, - [392] = {.lex_state = 806}, - [393] = {.lex_state = 806}, - [394] = {.lex_state = 806}, - [395] = {.lex_state = 812}, - [396] = {.lex_state = 806}, - [397] = {.lex_state = 816}, - [398] = {.lex_state = 1}, - [399] = {.lex_state = 806}, - [400] = {.lex_state = 785}, - [401] = {.lex_state = 1}, - [402] = {.lex_state = 807}, - [403] = {.lex_state = 806}, - [404] = {.lex_state = 816}, - [405] = {.lex_state = 806}, - [406] = {.lex_state = 812}, - [407] = {.lex_state = 812}, - [408] = {.lex_state = 812}, - [409] = {.lex_state = 812}, - [410] = {.lex_state = 806}, - [411] = {.lex_state = 842}, + [387] = {.lex_state = 813}, + [388] = {.lex_state = 813}, + [389] = {.lex_state = 843}, + [390] = {.lex_state = 813}, + [391] = {.lex_state = 813}, + [392] = {.lex_state = 807}, + [393] = {.lex_state = 807}, + [394] = {.lex_state = 808}, + [395] = {.lex_state = 1}, + [396] = {.lex_state = 808}, + [397] = {.lex_state = 807}, + [398] = {.lex_state = 808}, + [399] = {.lex_state = 807}, + [400] = {.lex_state = 808}, + [401] = {.lex_state = 775}, + [402] = {.lex_state = 808}, + [403] = {.lex_state = 807}, + [404] = {.lex_state = 807}, + [405] = {.lex_state = 785}, + [406] = {.lex_state = 807}, + [407] = {.lex_state = 807}, + [408] = {.lex_state = 807}, + [409] = {.lex_state = 807}, + [410] = {.lex_state = 786}, + [411] = {.lex_state = 807}, [412] = {.lex_state = 807}, - [413] = {.lex_state = 806}, - [414] = {.lex_state = 812}, - [415] = {.lex_state = 806}, - [416] = {.lex_state = 806}, - [417] = {.lex_state = 784}, - [418] = {.lex_state = 784}, - [419] = {.lex_state = 806}, - [420] = {.lex_state = 812}, - [421] = {.lex_state = 806}, - [422] = {.lex_state = 784}, - [423] = {.lex_state = 816}, - [424] = {.lex_state = 816}, - [425] = {.lex_state = 806}, - [426] = {.lex_state = 842}, - [427] = {.lex_state = 806}, - [428] = {.lex_state = 837}, - [429] = {.lex_state = 816}, - [430] = {.lex_state = 816}, - [431] = {.lex_state = 816}, - [432] = {.lex_state = 816}, - [433] = {.lex_state = 812}, - [434] = {.lex_state = 816}, - [435] = {.lex_state = 806}, - [436] = {.lex_state = 806}, - [437] = {.lex_state = 816}, - [438] = {.lex_state = 816}, - [439] = {.lex_state = 816}, - [440] = {.lex_state = 806}, - [441] = {.lex_state = 812}, - [442] = {.lex_state = 806}, - [443] = {.lex_state = 816}, - [444] = {.lex_state = 816}, - [445] = {.lex_state = 806}, - [446] = {.lex_state = 806}, - [447] = {.lex_state = 816}, - [448] = {.lex_state = 816}, - [449] = {.lex_state = 816}, - [450] = {.lex_state = 816}, - [451] = {.lex_state = 816}, - [452] = {.lex_state = 806}, - [453] = {.lex_state = 816}, - [454] = {.lex_state = 816}, - [455] = {.lex_state = 806}, - [456] = {.lex_state = 806}, - [457] = {.lex_state = 806}, - [458] = {.lex_state = 806}, - [459] = {.lex_state = 780}, - [460] = {.lex_state = 780}, - [461] = {.lex_state = 812}, - [462] = {.lex_state = 780}, - [463] = {.lex_state = 816}, - [464] = {.lex_state = 816}, - [465] = {.lex_state = 816}, - [466] = {.lex_state = 816}, - [467] = {.lex_state = 816}, - [468] = {.lex_state = 816}, - [469] = {.lex_state = 816}, - [470] = {.lex_state = 816}, - [471] = {.lex_state = 806}, - [472] = {.lex_state = 816}, - [473] = {.lex_state = 816}, - [474] = {.lex_state = 806}, - [475] = {.lex_state = 780}, - [476] = {.lex_state = 774}, - [477] = {.lex_state = 806}, - [478] = {.lex_state = 806}, - [479] = {.lex_state = 810}, - [480] = {.lex_state = 785}, - [481] = {.lex_state = 810}, - [482] = {.lex_state = 810}, - [483] = {.lex_state = 806}, - [484] = {.lex_state = 806}, - [485] = {.lex_state = 806}, - [486] = {.lex_state = 816}, - [487] = {.lex_state = 816}, - [488] = {.lex_state = 816}, - [489] = {.lex_state = 816}, - [490] = {.lex_state = 816}, - [491] = {.lex_state = 816}, - [492] = {.lex_state = 816}, - [493] = {.lex_state = 816}, - [494] = {.lex_state = 816}, - [495] = {.lex_state = 816}, - [496] = {.lex_state = 816}, - [497] = {.lex_state = 806}, - [498] = {.lex_state = 816}, - [499] = {.lex_state = 816}, - [500] = {.lex_state = 816}, - [501] = {.lex_state = 780}, - [502] = {.lex_state = 816}, - [503] = {.lex_state = 816}, - [504] = {.lex_state = 806}, - [505] = {.lex_state = 812}, - [506] = {.lex_state = 812}, - [507] = {.lex_state = 816}, - [508] = {.lex_state = 816}, - [509] = {.lex_state = 806}, - [510] = {.lex_state = 816}, - [511] = {.lex_state = 816}, - [512] = {.lex_state = 812}, - [513] = {.lex_state = 816}, - [514] = {.lex_state = 806}, - [515] = {.lex_state = 816}, - [516] = {.lex_state = 816}, - [517] = {.lex_state = 816}, - [518] = {.lex_state = 816}, - [519] = {.lex_state = 816}, - [520] = {.lex_state = 816}, - [521] = {.lex_state = 816}, - [522] = {.lex_state = 816}, - [523] = {.lex_state = 816}, - [524] = {.lex_state = 812}, - [525] = {.lex_state = 816}, - [526] = {.lex_state = 816}, - [527] = {.lex_state = 816}, - [528] = {.lex_state = 816}, - [529] = {.lex_state = 816}, - [530] = {.lex_state = 816}, - [531] = {.lex_state = 816}, - [532] = {.lex_state = 816}, - [533] = {.lex_state = 816}, - [534] = {.lex_state = 816}, - [535] = {.lex_state = 816}, - [536] = {.lex_state = 816}, - [537] = {.lex_state = 816}, - [538] = {.lex_state = 816}, - [539] = {.lex_state = 816}, - [540] = {.lex_state = 816}, - [541] = {.lex_state = 816}, - [542] = {.lex_state = 816}, - [543] = {.lex_state = 816}, - [544] = {.lex_state = 816}, - [545] = {.lex_state = 816}, - [546] = {.lex_state = 816}, - [547] = {.lex_state = 816}, - [548] = {.lex_state = 816}, - [549] = {.lex_state = 816}, - [550] = {.lex_state = 816}, - [551] = {.lex_state = 816}, - [552] = {.lex_state = 816}, - [553] = {.lex_state = 816}, - [554] = {.lex_state = 816}, - [555] = {.lex_state = 806}, - [556] = {.lex_state = 816}, - [557] = {.lex_state = 806}, - [558] = {.lex_state = 836}, - [559] = {.lex_state = 810}, - [560] = {.lex_state = 806}, - [561] = {.lex_state = 810}, - [562] = {.lex_state = 845}, - [563] = {.lex_state = 816}, - [564] = {.lex_state = 810}, - [565] = {.lex_state = 816}, - [566] = {.lex_state = 816}, - [567] = {.lex_state = 816}, - [568] = {.lex_state = 816}, - [569] = {.lex_state = 806}, - [570] = {.lex_state = 816}, - [571] = {.lex_state = 806}, - [572] = {.lex_state = 816}, - [573] = {.lex_state = 816}, - [574] = {.lex_state = 816}, - [575] = {.lex_state = 816}, - [576] = {.lex_state = 816}, - [577] = {.lex_state = 806}, - [578] = {.lex_state = 816}, - [579] = {.lex_state = 816}, - [580] = {.lex_state = 816}, - [581] = {.lex_state = 816}, - [582] = {.lex_state = 816}, - [583] = {.lex_state = 816}, - [584] = {.lex_state = 816}, - [585] = {.lex_state = 816}, - [586] = {.lex_state = 816}, - [587] = {.lex_state = 816}, - [588] = {.lex_state = 816}, - [589] = {.lex_state = 816}, - [590] = {.lex_state = 816}, - [591] = {.lex_state = 816}, - [592] = {.lex_state = 816}, - [593] = {.lex_state = 816}, - [594] = {.lex_state = 816}, - [595] = {.lex_state = 806}, - [596] = {.lex_state = 816}, - [597] = {.lex_state = 806}, - [598] = {.lex_state = 816}, - [599] = {.lex_state = 816}, - [600] = {.lex_state = 816}, - [601] = {.lex_state = 806}, - [602] = {.lex_state = 816}, - [603] = {.lex_state = 806}, - [604] = {.lex_state = 816}, - [605] = {.lex_state = 816}, - [606] = {.lex_state = 806}, - [607] = {.lex_state = 816}, - [608] = {.lex_state = 810}, - [609] = {.lex_state = 810}, - [610] = {.lex_state = 810}, - [611] = {.lex_state = 810}, - [612] = {.lex_state = 810}, - [613] = {.lex_state = 810}, - [614] = {.lex_state = 810}, - [615] = {.lex_state = 810}, - [616] = {.lex_state = 810}, - [617] = {.lex_state = 810}, - [618] = {.lex_state = 810}, - [619] = {.lex_state = 810}, - [620] = {.lex_state = 810}, - [621] = {.lex_state = 810}, - [622] = {.lex_state = 810}, - [623] = {.lex_state = 810}, - [624] = {.lex_state = 810}, - [625] = {.lex_state = 810}, - [626] = {.lex_state = 810}, - [627] = {.lex_state = 810}, - [628] = {.lex_state = 810}, - [629] = {.lex_state = 810}, - [630] = {.lex_state = 810}, - [631] = {.lex_state = 810}, - [632] = {.lex_state = 810}, - [633] = {.lex_state = 810}, - [634] = {.lex_state = 810}, - [635] = {.lex_state = 810}, - [636] = {.lex_state = 836}, - [637] = {.lex_state = 810}, - [638] = {.lex_state = 810}, - [639] = {.lex_state = 810}, - [640] = {.lex_state = 810}, - [641] = {.lex_state = 845}, - [642] = {.lex_state = 810}, - [643] = {.lex_state = 810}, - [644] = {.lex_state = 810}, - [645] = {.lex_state = 810}, - [646] = {.lex_state = 810}, - [647] = {.lex_state = 810}, - [648] = {.lex_state = 810}, - [649] = {.lex_state = 810}, - [650] = {.lex_state = 810}, - [651] = {.lex_state = 810}, - [652] = {.lex_state = 810}, - [653] = {.lex_state = 810}, - [654] = {.lex_state = 806}, - [655] = {.lex_state = 810}, - [656] = {.lex_state = 810}, - [657] = {.lex_state = 806}, - [658] = {.lex_state = 810}, - [659] = {.lex_state = 806}, - [660] = {.lex_state = 810}, - [661] = {.lex_state = 810}, - [662] = {.lex_state = 810}, - [663] = {.lex_state = 810}, - [664] = {.lex_state = 806}, - [665] = {.lex_state = 810}, - [666] = {.lex_state = 806}, - [667] = {.lex_state = 806}, - [668] = {.lex_state = 810}, - [669] = {.lex_state = 806}, - [670] = {.lex_state = 810}, - [671] = {.lex_state = 810}, - [672] = {.lex_state = 810}, - [673] = {.lex_state = 810}, - [674] = {.lex_state = 810}, - [675] = {.lex_state = 810}, - [676] = {.lex_state = 810}, - [677] = {.lex_state = 810}, - [678] = {.lex_state = 810}, - [679] = {.lex_state = 810}, - [680] = {.lex_state = 810}, - [681] = {.lex_state = 810}, - [682] = {.lex_state = 810}, - [683] = {.lex_state = 810}, - [684] = {.lex_state = 810}, - [685] = {.lex_state = 810}, - [686] = {.lex_state = 810}, - [687] = {.lex_state = 810}, - [688] = {.lex_state = 810}, - [689] = {.lex_state = 810}, - [690] = {.lex_state = 810}, - [691] = {.lex_state = 810}, - [692] = {.lex_state = 810}, - [693] = {.lex_state = 810}, - [694] = {.lex_state = 810}, - [695] = {.lex_state = 810}, - [696] = {.lex_state = 810}, - [697] = {.lex_state = 810}, - [698] = {.lex_state = 810}, - [699] = {.lex_state = 810}, - [700] = {.lex_state = 810}, - [701] = {.lex_state = 810}, - [702] = {.lex_state = 810}, - [703] = {.lex_state = 810}, - [704] = {.lex_state = 810}, - [705] = {.lex_state = 810}, - [706] = {.lex_state = 810}, - [707] = {.lex_state = 810}, - [708] = {.lex_state = 810}, - [709] = {.lex_state = 810}, - [710] = {.lex_state = 810}, - [711] = {.lex_state = 810}, - [712] = {.lex_state = 810}, - [713] = {.lex_state = 810}, - [714] = {.lex_state = 810}, - [715] = {.lex_state = 810}, - [716] = {.lex_state = 810}, - [717] = {.lex_state = 810}, - [718] = {.lex_state = 810}, - [719] = {.lex_state = 810}, - [720] = {.lex_state = 810}, - [721] = {.lex_state = 810}, - [722] = {.lex_state = 810}, - [723] = {.lex_state = 810}, - [724] = {.lex_state = 810}, - [725] = {.lex_state = 810}, - [726] = {.lex_state = 810}, - [727] = {.lex_state = 810}, - [728] = {.lex_state = 810}, - [729] = {.lex_state = 810}, - [730] = {.lex_state = 810}, - [731] = {.lex_state = 810}, - [732] = {.lex_state = 810}, - [733] = {.lex_state = 810}, - [734] = {.lex_state = 810}, - [735] = {.lex_state = 810}, - [736] = {.lex_state = 810}, - [737] = {.lex_state = 810}, - [738] = {.lex_state = 810}, - [739] = {.lex_state = 810}, - [740] = {.lex_state = 810}, - [741] = {.lex_state = 810}, - [742] = {.lex_state = 810}, + [413] = {.lex_state = 807}, + [414] = {.lex_state = 813}, + [415] = {.lex_state = 807}, + [416] = {.lex_state = 807}, + [417] = {.lex_state = 785}, + [418] = {.lex_state = 785}, + [419] = {.lex_state = 785}, + [420] = {.lex_state = 785}, + [421] = {.lex_state = 807}, + [422] = {.lex_state = 807}, + [423] = {.lex_state = 807}, + [424] = {.lex_state = 781}, + [425] = {.lex_state = 817}, + [426] = {.lex_state = 817}, + [427] = {.lex_state = 817}, + [428] = {.lex_state = 781}, + [429] = {.lex_state = 817}, + [430] = {.lex_state = 817}, + [431] = {.lex_state = 817}, + [432] = {.lex_state = 817}, + [433] = {.lex_state = 807}, + [434] = {.lex_state = 781}, + [435] = {.lex_state = 813}, + [436] = {.lex_state = 813}, + [437] = {.lex_state = 813}, + [438] = {.lex_state = 781}, + [439] = {.lex_state = 838}, + [440] = {.lex_state = 817}, + [441] = {.lex_state = 817}, + [442] = {.lex_state = 813}, + [443] = {.lex_state = 813}, + [444] = {.lex_state = 843}, + [445] = {.lex_state = 817}, + [446] = {.lex_state = 817}, + [447] = {.lex_state = 817}, + [448] = {.lex_state = 817}, + [449] = {.lex_state = 817}, + [450] = {.lex_state = 807}, + [451] = {.lex_state = 807}, + [452] = {.lex_state = 775}, + [453] = {.lex_state = 807}, + [454] = {.lex_state = 807}, + [455] = {.lex_state = 807}, + [456] = {.lex_state = 807}, + [457] = {.lex_state = 817}, + [458] = {.lex_state = 811}, + [459] = {.lex_state = 811}, + [460] = {.lex_state = 811}, + [461] = {.lex_state = 813}, + [462] = {.lex_state = 817}, + [463] = {.lex_state = 807}, + [464] = {.lex_state = 807}, + [465] = {.lex_state = 817}, + [466] = {.lex_state = 807}, + [467] = {.lex_state = 817}, + [468] = {.lex_state = 807}, + [469] = {.lex_state = 817}, + [470] = {.lex_state = 807}, + [471] = {.lex_state = 807}, + [472] = {.lex_state = 817}, + [473] = {.lex_state = 817}, + [474] = {.lex_state = 807}, + [475] = {.lex_state = 786}, + [476] = {.lex_state = 817}, + [477] = {.lex_state = 817}, + [478] = {.lex_state = 807}, + [479] = {.lex_state = 781}, + [480] = {.lex_state = 817}, + [481] = {.lex_state = 817}, + [482] = {.lex_state = 807}, + [483] = {.lex_state = 817}, + [484] = {.lex_state = 807}, + [485] = {.lex_state = 807}, + [486] = {.lex_state = 817}, + [487] = {.lex_state = 807}, + [488] = {.lex_state = 817}, + [489] = {.lex_state = 817}, + [490] = {.lex_state = 817}, + [491] = {.lex_state = 817}, + [492] = {.lex_state = 817}, + [493] = {.lex_state = 817}, + [494] = {.lex_state = 817}, + [495] = {.lex_state = 817}, + [496] = {.lex_state = 817}, + [497] = {.lex_state = 817}, + [498] = {.lex_state = 817}, + [499] = {.lex_state = 817}, + [500] = {.lex_state = 817}, + [501] = {.lex_state = 817}, + [502] = {.lex_state = 817}, + [503] = {.lex_state = 817}, + [504] = {.lex_state = 813}, + [505] = {.lex_state = 817}, + [506] = {.lex_state = 817}, + [507] = {.lex_state = 817}, + [508] = {.lex_state = 817}, + [509] = {.lex_state = 817}, + [510] = {.lex_state = 817}, + [511] = {.lex_state = 817}, + [512] = {.lex_state = 817}, + [513] = {.lex_state = 817}, + [514] = {.lex_state = 817}, + [515] = {.lex_state = 817}, + [516] = {.lex_state = 817}, + [517] = {.lex_state = 817}, + [518] = {.lex_state = 817}, + [519] = {.lex_state = 807}, + [520] = {.lex_state = 817}, + [521] = {.lex_state = 817}, + [522] = {.lex_state = 817}, + [523] = {.lex_state = 817}, + [524] = {.lex_state = 817}, + [525] = {.lex_state = 807}, + [526] = {.lex_state = 807}, + [527] = {.lex_state = 807}, + [528] = {.lex_state = 817}, + [529] = {.lex_state = 817}, + [530] = {.lex_state = 817}, + [531] = {.lex_state = 817}, + [532] = {.lex_state = 817}, + [533] = {.lex_state = 817}, + [534] = {.lex_state = 817}, + [535] = {.lex_state = 817}, + [536] = {.lex_state = 817}, + [537] = {.lex_state = 846}, + [538] = {.lex_state = 817}, + [539] = {.lex_state = 817}, + [540] = {.lex_state = 817}, + [541] = {.lex_state = 817}, + [542] = {.lex_state = 817}, + [543] = {.lex_state = 817}, + [544] = {.lex_state = 837}, + [545] = {.lex_state = 817}, + [546] = {.lex_state = 817}, + [547] = {.lex_state = 817}, + [548] = {.lex_state = 817}, + [549] = {.lex_state = 817}, + [550] = {.lex_state = 817}, + [551] = {.lex_state = 817}, + [552] = {.lex_state = 811}, + [553] = {.lex_state = 817}, + [554] = {.lex_state = 807}, + [555] = {.lex_state = 817}, + [556] = {.lex_state = 817}, + [557] = {.lex_state = 817}, + [558] = {.lex_state = 817}, + [559] = {.lex_state = 817}, + [560] = {.lex_state = 817}, + [561] = {.lex_state = 817}, + [562] = {.lex_state = 807}, + [563] = {.lex_state = 817}, + [564] = {.lex_state = 807}, + [565] = {.lex_state = 817}, + [566] = {.lex_state = 817}, + [567] = {.lex_state = 817}, + [568] = {.lex_state = 817}, + [569] = {.lex_state = 817}, + [570] = {.lex_state = 817}, + [571] = {.lex_state = 817}, + [572] = {.lex_state = 817}, + [573] = {.lex_state = 807}, + [574] = {.lex_state = 807}, + [575] = {.lex_state = 817}, + [576] = {.lex_state = 807}, + [577] = {.lex_state = 817}, + [578] = {.lex_state = 817}, + [579] = {.lex_state = 817}, + [580] = {.lex_state = 807}, + [581] = {.lex_state = 807}, + [582] = {.lex_state = 817}, + [583] = {.lex_state = 817}, + [584] = {.lex_state = 817}, + [585] = {.lex_state = 817}, + [586] = {.lex_state = 817}, + [587] = {.lex_state = 817}, + [588] = {.lex_state = 817}, + [589] = {.lex_state = 817}, + [590] = {.lex_state = 817}, + [591] = {.lex_state = 817}, + [592] = {.lex_state = 817}, + [593] = {.lex_state = 807}, + [594] = {.lex_state = 817}, + [595] = {.lex_state = 811}, + [596] = {.lex_state = 811}, + [597] = {.lex_state = 817}, + [598] = {.lex_state = 817}, + [599] = {.lex_state = 817}, + [600] = {.lex_state = 817}, + [601] = {.lex_state = 817}, + [602] = {.lex_state = 817}, + [603] = {.lex_state = 807}, + [604] = {.lex_state = 817}, + [605] = {.lex_state = 807}, + [606] = {.lex_state = 817}, + [607] = {.lex_state = 817}, + [608] = {.lex_state = 811}, + [609] = {.lex_state = 811}, + [610] = {.lex_state = 811}, + [611] = {.lex_state = 811}, + [612] = {.lex_state = 811}, + [613] = {.lex_state = 811}, + [614] = {.lex_state = 811}, + [615] = {.lex_state = 811}, + [616] = {.lex_state = 811}, + [617] = {.lex_state = 811}, + [618] = {.lex_state = 811}, + [619] = {.lex_state = 811}, + [620] = {.lex_state = 811}, + [621] = {.lex_state = 811}, + [622] = {.lex_state = 811}, + [623] = {.lex_state = 811}, + [624] = {.lex_state = 811}, + [625] = {.lex_state = 807}, + [626] = {.lex_state = 807}, + [627] = {.lex_state = 811}, + [628] = {.lex_state = 811}, + [629] = {.lex_state = 811}, + [630] = {.lex_state = 811}, + [631] = {.lex_state = 811}, + [632] = {.lex_state = 811}, + [633] = {.lex_state = 811}, + [634] = {.lex_state = 811}, + [635] = {.lex_state = 811}, + [636] = {.lex_state = 811}, + [637] = {.lex_state = 811}, + [638] = {.lex_state = 811}, + [639] = {.lex_state = 811}, + [640] = {.lex_state = 811}, + [641] = {.lex_state = 811}, + [642] = {.lex_state = 807}, + [643] = {.lex_state = 807}, + [644] = {.lex_state = 837}, + [645] = {.lex_state = 811}, + [646] = {.lex_state = 811}, + [647] = {.lex_state = 807}, + [648] = {.lex_state = 846}, + [649] = {.lex_state = 811}, + [650] = {.lex_state = 807}, + [651] = {.lex_state = 811}, + [652] = {.lex_state = 811}, + [653] = {.lex_state = 811}, + [654] = {.lex_state = 811}, + [655] = {.lex_state = 811}, + [656] = {.lex_state = 811}, + [657] = {.lex_state = 811}, + [658] = {.lex_state = 811}, + [659] = {.lex_state = 811}, + [660] = {.lex_state = 811}, + [661] = {.lex_state = 811}, + [662] = {.lex_state = 811}, + [663] = {.lex_state = 811}, + [664] = {.lex_state = 811}, + [665] = {.lex_state = 811}, + [666] = {.lex_state = 811}, + [667] = {.lex_state = 811}, + [668] = {.lex_state = 811}, + [669] = {.lex_state = 811}, + [670] = {.lex_state = 811}, + [671] = {.lex_state = 811}, + [672] = {.lex_state = 811}, + [673] = {.lex_state = 811}, + [674] = {.lex_state = 811}, + [675] = {.lex_state = 811}, + [676] = {.lex_state = 811}, + [677] = {.lex_state = 811}, + [678] = {.lex_state = 811}, + [679] = {.lex_state = 807}, + [680] = {.lex_state = 811}, + [681] = {.lex_state = 811}, + [682] = {.lex_state = 811}, + [683] = {.lex_state = 811}, + [684] = {.lex_state = 811}, + [685] = {.lex_state = 811}, + [686] = {.lex_state = 811}, + [687] = {.lex_state = 811}, + [688] = {.lex_state = 811}, + [689] = {.lex_state = 811}, + [690] = {.lex_state = 811}, + [691] = {.lex_state = 811}, + [692] = {.lex_state = 811}, + [693] = {.lex_state = 811}, + [694] = {.lex_state = 811}, + [695] = {.lex_state = 811}, + [696] = {.lex_state = 811}, + [697] = {.lex_state = 811}, + [698] = {.lex_state = 811}, + [699] = {.lex_state = 811}, + [700] = {.lex_state = 811}, + [701] = {.lex_state = 811}, + [702] = {.lex_state = 811}, + [703] = {.lex_state = 811}, + [704] = {.lex_state = 811}, + [705] = {.lex_state = 811}, + [706] = {.lex_state = 811}, + [707] = {.lex_state = 811}, + [708] = {.lex_state = 811}, + [709] = {.lex_state = 811}, + [710] = {.lex_state = 811}, + [711] = {.lex_state = 811}, + [712] = {.lex_state = 811}, + [713] = {.lex_state = 811}, + [714] = {.lex_state = 811}, + [715] = {.lex_state = 811}, + [716] = {.lex_state = 811}, + [717] = {.lex_state = 811}, + [718] = {.lex_state = 811}, + [719] = {.lex_state = 811}, + [720] = {.lex_state = 811}, + [721] = {.lex_state = 811}, + [722] = {.lex_state = 811}, + [723] = {.lex_state = 811}, + [724] = {.lex_state = 811}, + [725] = {.lex_state = 811}, + [726] = {.lex_state = 811}, + [727] = {.lex_state = 811}, + [728] = {.lex_state = 811}, + [729] = {.lex_state = 811}, + [730] = {.lex_state = 811}, + [731] = {.lex_state = 811}, + [732] = {.lex_state = 811}, + [733] = {.lex_state = 811}, + [734] = {.lex_state = 811}, + [735] = {.lex_state = 811}, + [736] = {.lex_state = 811}, + [737] = {.lex_state = 811}, + [738] = {.lex_state = 811}, + [739] = {.lex_state = 811}, + [740] = {.lex_state = 811}, + [741] = {.lex_state = 811}, + [742] = {.lex_state = 811}, [743] = {.lex_state = 60}, [744] = {.lex_state = 60}, - [745] = {.lex_state = 64}, + [745] = {.lex_state = 62}, [746] = {.lex_state = 64}, - [747] = {.lex_state = 33}, - [748] = {.lex_state = 33}, - [749] = {.lex_state = 175}, + [747] = {.lex_state = 62}, + [748] = {.lex_state = 175}, + [749] = {.lex_state = 62}, [750] = {.lex_state = 62}, - [751] = {.lex_state = 62}, - [752] = {.lex_state = 62}, + [751] = {.lex_state = 64}, + [752] = {.lex_state = 33}, [753] = {.lex_state = 62}, - [754] = {.lex_state = 62}, - [755] = {.lex_state = 27}, - [756] = {.lex_state = 66}, + [754] = {.lex_state = 33}, + [755] = {.lex_state = 31}, + [756] = {.lex_state = 31}, [757] = {.lex_state = 61}, - [758] = {.lex_state = 31}, + [758] = {.lex_state = 61}, [759] = {.lex_state = 61}, - [760] = {.lex_state = 31}, + [760] = {.lex_state = 61}, [761] = {.lex_state = 66}, - [762] = {.lex_state = 27}, - [763] = {.lex_state = 31}, - [764] = {.lex_state = 61}, - [765] = {.lex_state = 66}, - [766] = {.lex_state = 66}, - [767] = {.lex_state = 176}, - [768] = {.lex_state = 31}, - [769] = {.lex_state = 61}, + [762] = {.lex_state = 31}, + [763] = {.lex_state = 27}, + [764] = {.lex_state = 66}, + [765] = {.lex_state = 27}, + [766] = {.lex_state = 61}, + [767] = {.lex_state = 66}, + [768] = {.lex_state = 66}, + [769] = {.lex_state = 66}, [770] = {.lex_state = 31}, - [771] = {.lex_state = 66}, - [772] = {.lex_state = 61}, - [773] = {.lex_state = 30}, + [771] = {.lex_state = 176}, + [772] = {.lex_state = 31}, + [773] = {.lex_state = 32}, [774] = {.lex_state = 30}, - [775] = {.lex_state = 65}, + [775] = {.lex_state = 38}, [776] = {.lex_state = 30}, [777] = {.lex_state = 32}, - [778] = {.lex_state = 32}, + [778] = {.lex_state = 38}, [779] = {.lex_state = 32}, - [780] = {.lex_state = 32}, - [781] = {.lex_state = 32}, - [782] = {.lex_state = 32}, - [783] = {.lex_state = 65}, + [780] = {.lex_state = 38}, + [781] = {.lex_state = 38}, + [782] = {.lex_state = 30}, + [783] = {.lex_state = 38}, [784] = {.lex_state = 32}, [785] = {.lex_state = 32}, - [786] = {.lex_state = 38}, - [787] = {.lex_state = 11}, + [786] = {.lex_state = 32}, + [787] = {.lex_state = 32}, [788] = {.lex_state = 32}, [789] = {.lex_state = 32}, - [790] = {.lex_state = 38}, - [791] = {.lex_state = 30}, - [792] = {.lex_state = 38}, + [790] = {.lex_state = 63}, + [791] = {.lex_state = 32}, + [792] = {.lex_state = 32}, [793] = {.lex_state = 65}, - [794] = {.lex_state = 65}, - [795] = {.lex_state = 63}, - [796] = {.lex_state = 32}, - [797] = {.lex_state = 32}, - [798] = {.lex_state = 38}, + [794] = {.lex_state = 11}, + [795] = {.lex_state = 32}, + [796] = {.lex_state = 65}, + [797] = {.lex_state = 65}, + [798] = {.lex_state = 32}, [799] = {.lex_state = 32}, - [800] = {.lex_state = 38}, - [801] = {.lex_state = 32}, - [802] = {.lex_state = 30}, - [803] = {.lex_state = 65}, - [804] = {.lex_state = 32}, + [800] = {.lex_state = 30}, + [801] = {.lex_state = 65}, + [802] = {.lex_state = 32}, + [803] = {.lex_state = 30}, + [804] = {.lex_state = 65}, [805] = {.lex_state = 39}, [806] = {.lex_state = 39}, [807] = {.lex_state = 39}, - [808] = {.lex_state = 39}, - [809] = {.lex_state = 29}, - [810] = {.lex_state = 37}, + [808] = {.lex_state = 37}, + [809] = {.lex_state = 37}, + [810] = {.lex_state = 34}, [811] = {.lex_state = 37}, - [812] = {.lex_state = 37}, - [813] = {.lex_state = 37}, + [812] = {.lex_state = 39}, + [813] = {.lex_state = 39}, [814] = {.lex_state = 37}, - [815] = {.lex_state = 39}, - [816] = {.lex_state = 29}, - [817] = {.lex_state = 39}, + [815] = {.lex_state = 29}, + [816] = {.lex_state = 34}, + [817] = {.lex_state = 34}, [818] = {.lex_state = 39}, - [819] = {.lex_state = 29}, - [820] = {.lex_state = 29}, + [819] = {.lex_state = 37}, + [820] = {.lex_state = 39}, [821] = {.lex_state = 39}, - [822] = {.lex_state = 34}, - [823] = {.lex_state = 39}, - [824] = {.lex_state = 12}, - [825] = {.lex_state = 67}, + [822] = {.lex_state = 39}, + [823] = {.lex_state = 29}, + [824] = {.lex_state = 39}, + [825] = {.lex_state = 39}, [826] = {.lex_state = 39}, - [827] = {.lex_state = 39}, - [828] = {.lex_state = 34}, + [827] = {.lex_state = 12}, + [828] = {.lex_state = 29}, [829] = {.lex_state = 39}, [830] = {.lex_state = 39}, - [831] = {.lex_state = 39}, - [832] = {.lex_state = 34}, - [833] = {.lex_state = 39}, - [834] = {.lex_state = 36}, - [835] = {.lex_state = 42}, + [831] = {.lex_state = 67}, + [832] = {.lex_state = 39}, + [833] = {.lex_state = 29}, + [834] = {.lex_state = 32}, + [835] = {.lex_state = 32}, [836] = {.lex_state = 32}, - [837] = {.lex_state = 42}, - [838] = {.lex_state = 42}, - [839] = {.lex_state = 32}, - [840] = {.lex_state = 32}, - [841] = {.lex_state = 32}, - [842] = {.lex_state = 225}, - [843] = {.lex_state = 32}, - [844] = {.lex_state = 36}, - [845] = {.lex_state = 32}, - [846] = {.lex_state = 36}, - [847] = {.lex_state = 32}, - [848] = {.lex_state = 36}, - [849] = {.lex_state = 195}, + [837] = {.lex_state = 32}, + [838] = {.lex_state = 36}, + [839] = {.lex_state = 36}, + [840] = {.lex_state = 36}, + [841] = {.lex_state = 36}, + [842] = {.lex_state = 32}, + [843] = {.lex_state = 195}, + [844] = {.lex_state = 42}, + [845] = {.lex_state = 42}, + [846] = {.lex_state = 32}, + [847] = {.lex_state = 225}, + [848] = {.lex_state = 42}, + [849] = {.lex_state = 32}, [850] = {.lex_state = 35}, [851] = {.lex_state = 35}, [852] = {.lex_state = 35}, - [853] = {.lex_state = 35}, + [853] = {.lex_state = 39}, [854] = {.lex_state = 35}, [855] = {.lex_state = 35}, [856] = {.lex_state = 35}, [857] = {.lex_state = 35}, - [858] = {.lex_state = 35}, + [858] = {.lex_state = 226}, [859] = {.lex_state = 35}, [860] = {.lex_state = 35}, [861] = {.lex_state = 35}, - [862] = {.lex_state = 226}, + [862] = {.lex_state = 35}, [863] = {.lex_state = 35}, [864] = {.lex_state = 35}, - [865] = {.lex_state = 39}, + [865] = {.lex_state = 35}, [866] = {.lex_state = 35}, [867] = {.lex_state = 35}, [868] = {.lex_state = 35}, @@ -62197,29 +62224,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 35}, [877] = {.lex_state = 35}, [878] = {.lex_state = 35}, - [879] = {.lex_state = 39}, + [879] = {.lex_state = 35}, [880] = {.lex_state = 35}, [881] = {.lex_state = 35}, - [882] = {.lex_state = 35}, + [882] = {.lex_state = 39}, [883] = {.lex_state = 35}, [884] = {.lex_state = 35}, [885] = {.lex_state = 35}, - [886] = {.lex_state = 35}, + [886] = {.lex_state = 39}, [887] = {.lex_state = 35}, [888] = {.lex_state = 35}, [889] = {.lex_state = 35}, - [890] = {.lex_state = 35}, + [890] = {.lex_state = 39}, [891] = {.lex_state = 35}, [892] = {.lex_state = 35}, - [893] = {.lex_state = 35}, - [894] = {.lex_state = 35}, - [895] = {.lex_state = 39}, - [896] = {.lex_state = 39}, - [897] = {.lex_state = 35}, - [898] = {.lex_state = 39}, - [899] = {.lex_state = 39}, + [893] = {.lex_state = 39}, + [894] = {.lex_state = 196}, + [895] = {.lex_state = 35}, + [896] = {.lex_state = 35}, + [897] = {.lex_state = 39}, + [898] = {.lex_state = 35}, + [899] = {.lex_state = 35}, [900] = {.lex_state = 35}, - [901] = {.lex_state = 35}, + [901] = {.lex_state = 39}, [902] = {.lex_state = 35}, [903] = {.lex_state = 35}, [904] = {.lex_state = 35}, @@ -62232,9 +62259,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 35}, [912] = {.lex_state = 35}, [913] = {.lex_state = 35}, - [914] = {.lex_state = 39}, + [914] = {.lex_state = 35}, [915] = {.lex_state = 35}, - [916] = {.lex_state = 196}, + [916] = {.lex_state = 35}, [917] = {.lex_state = 35}, [918] = {.lex_state = 35}, [919] = {.lex_state = 35}, @@ -62317,9649 +62344,9649 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [996] = {.lex_state = 261}, [997] = {.lex_state = 261}, [998] = {.lex_state = 261}, - [999] = {.lex_state = 919}, + [999] = {.lex_state = 261}, [1000] = {.lex_state = 261}, [1001] = {.lex_state = 261}, [1002] = {.lex_state = 261}, - [1003] = {.lex_state = 261}, + [1003] = {.lex_state = 920}, [1004] = {.lex_state = 261}, [1005] = {.lex_state = 261}, - [1006] = {.lex_state = 261}, - [1007] = {.lex_state = 919}, + [1006] = {.lex_state = 920}, + [1007] = {.lex_state = 261}, [1008] = {.lex_state = 261}, [1009] = {.lex_state = 261}, [1010] = {.lex_state = 261}, [1011] = {.lex_state = 261}, - [1012] = {.lex_state = 918}, - [1013] = {.lex_state = 918}, - [1014] = {.lex_state = 918}, - [1015] = {.lex_state = 918}, - [1016] = {.lex_state = 918}, - [1017] = {.lex_state = 918}, - [1018] = {.lex_state = 261}, - [1019] = {.lex_state = 261}, - [1020] = {.lex_state = 792}, - [1021] = {.lex_state = 922}, - [1022] = {.lex_state = 922}, - [1023] = {.lex_state = 918}, - [1024] = {.lex_state = 918}, - [1025] = {.lex_state = 918}, - [1026] = {.lex_state = 918}, - [1027] = {.lex_state = 918}, - [1028] = {.lex_state = 792}, - [1029] = {.lex_state = 918}, - [1030] = {.lex_state = 928}, - [1031] = {.lex_state = 918}, - [1032] = {.lex_state = 918}, - [1033] = {.lex_state = 918}, - [1034] = {.lex_state = 793}, - [1035] = {.lex_state = 928}, - [1036] = {.lex_state = 918}, - [1037] = {.lex_state = 918}, - [1038] = {.lex_state = 792}, - [1039] = {.lex_state = 918}, - [1040] = {.lex_state = 918}, - [1041] = {.lex_state = 918}, - [1042] = {.lex_state = 918}, - [1043] = {.lex_state = 928}, - [1044] = {.lex_state = 793}, - [1045] = {.lex_state = 928}, - [1046] = {.lex_state = 918}, - [1047] = {.lex_state = 922}, - [1048] = {.lex_state = 922}, - [1049] = {.lex_state = 792}, - [1050] = {.lex_state = 928}, - [1051] = {.lex_state = 918}, - [1052] = {.lex_state = 918}, - [1053] = {.lex_state = 928}, - [1054] = {.lex_state = 833}, - [1055] = {.lex_state = 793}, - [1056] = {.lex_state = 793}, - [1057] = {.lex_state = 793}, - [1058] = {.lex_state = 918}, - [1059] = {.lex_state = 918}, - [1060] = {.lex_state = 918}, - [1061] = {.lex_state = 918}, - [1062] = {.lex_state = 918}, - [1063] = {.lex_state = 918}, - [1064] = {.lex_state = 918}, - [1065] = {.lex_state = 794}, - [1066] = {.lex_state = 794}, - [1067] = {.lex_state = 918}, - [1068] = {.lex_state = 918}, - [1069] = {.lex_state = 918}, - [1070] = {.lex_state = 794}, - [1071] = {.lex_state = 918}, - [1072] = {.lex_state = 914}, - [1073] = {.lex_state = 928}, - [1074] = {.lex_state = 928}, - [1075] = {.lex_state = 928}, - [1076] = {.lex_state = 794}, - [1077] = {.lex_state = 918}, + [1012] = {.lex_state = 261}, + [1013] = {.lex_state = 919}, + [1014] = {.lex_state = 261}, + [1015] = {.lex_state = 919}, + [1016] = {.lex_state = 919}, + [1017] = {.lex_state = 919}, + [1018] = {.lex_state = 919}, + [1019] = {.lex_state = 919}, + [1020] = {.lex_state = 923}, + [1021] = {.lex_state = 793}, + [1022] = {.lex_state = 919}, + [1023] = {.lex_state = 923}, + [1024] = {.lex_state = 793}, + [1025] = {.lex_state = 919}, + [1026] = {.lex_state = 919}, + [1027] = {.lex_state = 919}, + [1028] = {.lex_state = 919}, + [1029] = {.lex_state = 919}, + [1030] = {.lex_state = 919}, + [1031] = {.lex_state = 919}, + [1032] = {.lex_state = 919}, + [1033] = {.lex_state = 794}, + [1034] = {.lex_state = 794}, + [1035] = {.lex_state = 794}, + [1036] = {.lex_state = 923}, + [1037] = {.lex_state = 929}, + [1038] = {.lex_state = 919}, + [1039] = {.lex_state = 919}, + [1040] = {.lex_state = 919}, + [1041] = {.lex_state = 919}, + [1042] = {.lex_state = 919}, + [1043] = {.lex_state = 919}, + [1044] = {.lex_state = 919}, + [1045] = {.lex_state = 919}, + [1046] = {.lex_state = 923}, + [1047] = {.lex_state = 794}, + [1048] = {.lex_state = 929}, + [1049] = {.lex_state = 834}, + [1050] = {.lex_state = 794}, + [1051] = {.lex_state = 793}, + [1052] = {.lex_state = 793}, + [1053] = {.lex_state = 919}, + [1054] = {.lex_state = 929}, + [1055] = {.lex_state = 929}, + [1056] = {.lex_state = 929}, + [1057] = {.lex_state = 929}, + [1058] = {.lex_state = 794}, + [1059] = {.lex_state = 915}, + [1060] = {.lex_state = 795}, + [1061] = {.lex_state = 919}, + [1062] = {.lex_state = 919}, + [1063] = {.lex_state = 919}, + [1064] = {.lex_state = 919}, + [1065] = {.lex_state = 919}, + [1066] = {.lex_state = 919}, + [1067] = {.lex_state = 919}, + [1068] = {.lex_state = 919}, + [1069] = {.lex_state = 795}, + [1070] = {.lex_state = 4}, + [1071] = {.lex_state = 919}, + [1072] = {.lex_state = 919}, + [1073] = {.lex_state = 919}, + [1074] = {.lex_state = 795}, + [1075] = {.lex_state = 929}, + [1076] = {.lex_state = 929}, + [1077] = {.lex_state = 929}, [1078] = {.lex_state = 794}, - [1079] = {.lex_state = 793}, - [1080] = {.lex_state = 928}, + [1079] = {.lex_state = 794}, + [1080] = {.lex_state = 919}, [1081] = {.lex_state = 4}, - [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 914}, - [1084] = {.lex_state = 793}, - [1085] = {.lex_state = 914}, - [1086] = {.lex_state = 914}, - [1087] = {.lex_state = 928}, - [1088] = {.lex_state = 793}, - [1089] = {.lex_state = 793}, - [1090] = {.lex_state = 914}, - [1091] = {.lex_state = 928}, - [1092] = {.lex_state = 833}, - [1093] = {.lex_state = 793}, - [1094] = {.lex_state = 794}, - [1095] = {.lex_state = 849}, - [1096] = {.lex_state = 777}, - [1097] = {.lex_state = 915}, - [1098] = {.lex_state = 928}, - [1099] = {.lex_state = 849}, - [1100] = {.lex_state = 849}, - [1101] = {.lex_state = 914}, - [1102] = {.lex_state = 849}, - [1103] = {.lex_state = 914}, - [1104] = {.lex_state = 928}, - [1105] = {.lex_state = 914}, - [1106] = {.lex_state = 849}, - [1107] = {.lex_state = 914}, - [1108] = {.lex_state = 928}, - [1109] = {.lex_state = 914}, - [1110] = {.lex_state = 928}, - [1111] = {.lex_state = 849}, - [1112] = {.lex_state = 794}, - [1113] = {.lex_state = 849}, - [1114] = {.lex_state = 849}, - [1115] = {.lex_state = 797}, - [1116] = {.lex_state = 914}, - [1117] = {.lex_state = 797}, - [1118] = {.lex_state = 849}, - [1119] = {.lex_state = 849}, - [1120] = {.lex_state = 928}, - [1121] = {.lex_state = 849}, - [1122] = {.lex_state = 794}, - [1123] = {.lex_state = 928}, - [1124] = {.lex_state = 849}, - [1125] = {.lex_state = 794}, - [1126] = {.lex_state = 914}, - [1127] = {.lex_state = 794}, - [1128] = {.lex_state = 914}, - [1129] = {.lex_state = 849}, - [1130] = {.lex_state = 914}, - [1131] = {.lex_state = 849}, - [1132] = {.lex_state = 794}, - [1133] = {.lex_state = 873}, - [1134] = {.lex_state = 928}, - [1135] = {.lex_state = 914}, - [1136] = {.lex_state = 928}, - [1137] = {.lex_state = 928}, - [1138] = {.lex_state = 794}, - [1139] = {.lex_state = 928}, - [1140] = {.lex_state = 873}, - [1141] = {.lex_state = 928}, - [1142] = {.lex_state = 849}, - [1143] = {.lex_state = 928}, - [1144] = {.lex_state = 928}, - [1145] = {.lex_state = 928}, - [1146] = {.lex_state = 856}, - [1147] = {.lex_state = 928}, - [1148] = {.lex_state = 849}, - [1149] = {.lex_state = 856}, - [1150] = {.lex_state = 928}, - [1151] = {.lex_state = 856}, - [1152] = {.lex_state = 849}, - [1153] = {.lex_state = 851}, - [1154] = {.lex_state = 851}, - [1155] = {.lex_state = 851}, - [1156] = {.lex_state = 913}, - [1157] = {.lex_state = 879}, - [1158] = {.lex_state = 913}, - [1159] = {.lex_state = 849}, - [1160] = {.lex_state = 928}, - [1161] = {.lex_state = 848}, - [1162] = {.lex_state = 849}, - [1163] = {.lex_state = 928}, - [1164] = {.lex_state = 928}, - [1165] = {.lex_state = 913}, - [1166] = {.lex_state = 797}, - [1167] = {.lex_state = 797}, - [1168] = {.lex_state = 849}, - [1169] = {.lex_state = 928}, - [1170] = {.lex_state = 848}, - [1171] = {.lex_state = 848}, - [1172] = {.lex_state = 849}, - [1173] = {.lex_state = 849}, - [1174] = {.lex_state = 849}, - [1175] = {.lex_state = 873}, - [1176] = {.lex_state = 928}, - [1177] = {.lex_state = 913}, - [1178] = {.lex_state = 914}, - [1179] = {.lex_state = 914}, - [1180] = {.lex_state = 777}, - [1181] = {.lex_state = 879}, - [1182] = {.lex_state = 849}, - [1183] = {.lex_state = 849}, - [1184] = {.lex_state = 849}, - [1185] = {.lex_state = 914}, - [1186] = {.lex_state = 928}, - [1187] = {.lex_state = 849}, - [1188] = {.lex_state = 879}, - [1189] = {.lex_state = 914}, - [1190] = {.lex_state = 849}, - [1191] = {.lex_state = 928}, - [1192] = {.lex_state = 849}, - [1193] = {.lex_state = 848}, - [1194] = {.lex_state = 849}, - [1195] = {.lex_state = 928}, - [1196] = {.lex_state = 915}, - [1197] = {.lex_state = 873}, - [1198] = {.lex_state = 913}, - [1199] = {.lex_state = 879}, - [1200] = {.lex_state = 879}, - [1201] = {.lex_state = 849}, - [1202] = {.lex_state = 879}, - [1203] = {.lex_state = 879}, + [1082] = {.lex_state = 834}, + [1083] = {.lex_state = 794}, + [1084] = {.lex_state = 795}, + [1085] = {.lex_state = 929}, + [1086] = {.lex_state = 915}, + [1087] = {.lex_state = 794}, + [1088] = {.lex_state = 915}, + [1089] = {.lex_state = 795}, + [1090] = {.lex_state = 915}, + [1091] = {.lex_state = 795}, + [1092] = {.lex_state = 929}, + [1093] = {.lex_state = 915}, + [1094] = {.lex_state = 929}, + [1095] = {.lex_state = 795}, + [1096] = {.lex_state = 874}, + [1097] = {.lex_state = 874}, + [1098] = {.lex_state = 929}, + [1099] = {.lex_state = 929}, + [1100] = {.lex_state = 929}, + [1101] = {.lex_state = 798}, + [1102] = {.lex_state = 915}, + [1103] = {.lex_state = 915}, + [1104] = {.lex_state = 850}, + [1105] = {.lex_state = 915}, + [1106] = {.lex_state = 915}, + [1107] = {.lex_state = 915}, + [1108] = {.lex_state = 850}, + [1109] = {.lex_state = 850}, + [1110] = {.lex_state = 850}, + [1111] = {.lex_state = 850}, + [1112] = {.lex_state = 850}, + [1113] = {.lex_state = 915}, + [1114] = {.lex_state = 850}, + [1115] = {.lex_state = 850}, + [1116] = {.lex_state = 850}, + [1117] = {.lex_state = 850}, + [1118] = {.lex_state = 850}, + [1119] = {.lex_state = 929}, + [1120] = {.lex_state = 850}, + [1121] = {.lex_state = 915}, + [1122] = {.lex_state = 915}, + [1123] = {.lex_state = 850}, + [1124] = {.lex_state = 915}, + [1125] = {.lex_state = 795}, + [1126] = {.lex_state = 798}, + [1127] = {.lex_state = 915}, + [1128] = {.lex_state = 795}, + [1129] = {.lex_state = 850}, + [1130] = {.lex_state = 916}, + [1131] = {.lex_state = 795}, + [1132] = {.lex_state = 795}, + [1133] = {.lex_state = 929}, + [1134] = {.lex_state = 795}, + [1135] = {.lex_state = 929}, + [1136] = {.lex_state = 929}, + [1137] = {.lex_state = 929}, + [1138] = {.lex_state = 850}, + [1139] = {.lex_state = 929}, + [1140] = {.lex_state = 929}, + [1141] = {.lex_state = 929}, + [1142] = {.lex_state = 929}, + [1143] = {.lex_state = 778}, + [1144] = {.lex_state = 880}, + [1145] = {.lex_state = 850}, + [1146] = {.lex_state = 880}, + [1147] = {.lex_state = 915}, + [1148] = {.lex_state = 850}, + [1149] = {.lex_state = 852}, + [1150] = {.lex_state = 914}, + [1151] = {.lex_state = 852}, + [1152] = {.lex_state = 852}, + [1153] = {.lex_state = 914}, + [1154] = {.lex_state = 850}, + [1155] = {.lex_state = 916}, + [1156] = {.lex_state = 849}, + [1157] = {.lex_state = 849}, + [1158] = {.lex_state = 880}, + [1159] = {.lex_state = 850}, + [1160] = {.lex_state = 850}, + [1161] = {.lex_state = 880}, + [1162] = {.lex_state = 850}, + [1163] = {.lex_state = 915}, + [1164] = {.lex_state = 850}, + [1165] = {.lex_state = 798}, + [1166] = {.lex_state = 914}, + [1167] = {.lex_state = 850}, + [1168] = {.lex_state = 915}, + [1169] = {.lex_state = 850}, + [1170] = {.lex_state = 850}, + [1171] = {.lex_state = 850}, + [1172] = {.lex_state = 850}, + [1173] = {.lex_state = 929}, + [1174] = {.lex_state = 850}, + [1175] = {.lex_state = 929}, + [1176] = {.lex_state = 929}, + [1177] = {.lex_state = 929}, + [1178] = {.lex_state = 850}, + [1179] = {.lex_state = 857}, + [1180] = {.lex_state = 857}, + [1181] = {.lex_state = 929}, + [1182] = {.lex_state = 929}, + [1183] = {.lex_state = 929}, + [1184] = {.lex_state = 929}, + [1185] = {.lex_state = 929}, + [1186] = {.lex_state = 929}, + [1187] = {.lex_state = 929}, + [1188] = {.lex_state = 929}, + [1189] = {.lex_state = 915}, + [1190] = {.lex_state = 778}, + [1191] = {.lex_state = 857}, + [1192] = {.lex_state = 874}, + [1193] = {.lex_state = 914}, + [1194] = {.lex_state = 874}, + [1195] = {.lex_state = 880}, + [1196] = {.lex_state = 849}, + [1197] = {.lex_state = 914}, + [1198] = {.lex_state = 798}, + [1199] = {.lex_state = 850}, + [1200] = {.lex_state = 849}, + [1201] = {.lex_state = 850}, + [1202] = {.lex_state = 914}, + [1203] = {.lex_state = 914}, [1204] = {.lex_state = 849}, - [1205] = {.lex_state = 843}, - [1206] = {.lex_state = 848}, - [1207] = {.lex_state = 880}, - [1208] = {.lex_state = 839}, - [1209] = {.lex_state = 849}, + [1205] = {.lex_state = 850}, + [1206] = {.lex_state = 849}, + [1207] = {.lex_state = 914}, + [1208] = {.lex_state = 840}, + [1209] = {.lex_state = 852}, [1210] = {.lex_state = 856}, - [1211] = {.lex_state = 913}, - [1212] = {.lex_state = 913}, - [1213] = {.lex_state = 855}, - [1214] = {.lex_state = 856}, - [1215] = {.lex_state = 913}, - [1216] = {.lex_state = 851}, - [1217] = {.lex_state = 849}, + [1211] = {.lex_state = 881}, + [1212] = {.lex_state = 849}, + [1213] = {.lex_state = 850}, + [1214] = {.lex_state = 849}, + [1215] = {.lex_state = 857}, + [1216] = {.lex_state = 881}, + [1217] = {.lex_state = 914}, [1218] = {.lex_state = 880}, - [1219] = {.lex_state = 848}, - [1220] = {.lex_state = 246}, - [1221] = {.lex_state = 880}, - [1222] = {.lex_state = 848}, - [1223] = {.lex_state = 913}, - [1224] = {.lex_state = 848}, - [1225] = {.lex_state = 849}, - [1226] = {.lex_state = 879}, - [1227] = {.lex_state = 880}, - [1228] = {.lex_state = 246}, - [1229] = {.lex_state = 913}, - [1230] = {.lex_state = 856}, - [1231] = {.lex_state = 849}, - [1232] = {.lex_state = 879}, - [1233] = {.lex_state = 849}, - [1234] = {.lex_state = 851}, - [1235] = {.lex_state = 879}, - [1236] = {.lex_state = 880}, - [1237] = {.lex_state = 851}, - [1238] = {.lex_state = 880}, - [1239] = {.lex_state = 849}, - [1240] = {.lex_state = 849}, - [1241] = {.lex_state = 852}, - [1242] = {.lex_state = 852}, - [1243] = {.lex_state = 849}, - [1244] = {.lex_state = 852}, - [1245] = {.lex_state = 852}, - [1246] = {.lex_state = 852}, - [1247] = {.lex_state = 852}, - [1248] = {.lex_state = 852}, - [1249] = {.lex_state = 852}, - [1250] = {.lex_state = 852}, - [1251] = {.lex_state = 852}, - [1252] = {.lex_state = 852}, - [1253] = {.lex_state = 849}, - [1254] = {.lex_state = 852}, - [1255] = {.lex_state = 852}, - [1256] = {.lex_state = 852}, - [1257] = {.lex_state = 852}, - [1258] = {.lex_state = 852}, - [1259] = {.lex_state = 870}, - [1260] = {.lex_state = 852}, - [1261] = {.lex_state = 852}, - [1262] = {.lex_state = 852}, - [1263] = {.lex_state = 852}, - [1264] = {.lex_state = 852}, - [1265] = {.lex_state = 870}, - [1266] = {.lex_state = 870}, - [1267] = {.lex_state = 843}, - [1268] = {.lex_state = 852}, - [1269] = {.lex_state = 852}, - [1270] = {.lex_state = 852}, - [1271] = {.lex_state = 852}, - [1272] = {.lex_state = 855}, - [1273] = {.lex_state = 852}, - [1274] = {.lex_state = 852}, - [1275] = {.lex_state = 852}, - [1276] = {.lex_state = 852}, - [1277] = {.lex_state = 852}, - [1278] = {.lex_state = 852}, - [1279] = {.lex_state = 852}, - [1280] = {.lex_state = 852}, - [1281] = {.lex_state = 852}, - [1282] = {.lex_state = 852}, - [1283] = {.lex_state = 852}, - [1284] = {.lex_state = 876}, - [1285] = {.lex_state = 852}, - [1286] = {.lex_state = 870}, - [1287] = {.lex_state = 870}, - [1288] = {.lex_state = 852}, - [1289] = {.lex_state = 870}, - [1290] = {.lex_state = 852}, - [1291] = {.lex_state = 852}, - [1292] = {.lex_state = 852}, - [1293] = {.lex_state = 852}, - [1294] = {.lex_state = 852}, - [1295] = {.lex_state = 852}, - [1296] = {.lex_state = 864}, - [1297] = {.lex_state = 852}, - [1298] = {.lex_state = 852}, - [1299] = {.lex_state = 852}, - [1300] = {.lex_state = 864}, - [1301] = {.lex_state = 852}, - [1302] = {.lex_state = 852}, - [1303] = {.lex_state = 852}, - [1304] = {.lex_state = 852}, - [1305] = {.lex_state = 852}, - [1306] = {.lex_state = 880}, - [1307] = {.lex_state = 852}, - [1308] = {.lex_state = 852}, - [1309] = {.lex_state = 852}, - [1310] = {.lex_state = 870}, - [1311] = {.lex_state = 852}, - [1312] = {.lex_state = 852}, - [1313] = {.lex_state = 852}, - [1314] = {.lex_state = 880}, - [1315] = {.lex_state = 880}, - [1316] = {.lex_state = 852}, - [1317] = {.lex_state = 852}, - [1318] = {.lex_state = 876}, - [1319] = {.lex_state = 870}, - [1320] = {.lex_state = 905}, - [1321] = {.lex_state = 852}, - [1322] = {.lex_state = 870}, - [1323] = {.lex_state = 880}, - [1324] = {.lex_state = 852}, - [1325] = {.lex_state = 852}, - [1326] = {.lex_state = 849}, - [1327] = {.lex_state = 839}, - [1328] = {.lex_state = 870}, - [1329] = {.lex_state = 870}, - [1330] = {.lex_state = 874}, - [1331] = {.lex_state = 849}, - [1332] = {.lex_state = 874}, - [1333] = {.lex_state = 870}, - [1334] = {.lex_state = 870}, - [1335] = {.lex_state = 870}, - [1336] = {.lex_state = 864}, - [1337] = {.lex_state = 870}, - [1338] = {.lex_state = 863}, - [1339] = {.lex_state = 849}, - [1340] = {.lex_state = 903}, - [1341] = {.lex_state = 276}, - [1342] = {.lex_state = 852}, - [1343] = {.lex_state = 852}, - [1344] = {.lex_state = 852}, - [1345] = {.lex_state = 276}, - [1346] = {.lex_state = 852}, - [1347] = {.lex_state = 852}, - [1348] = {.lex_state = 870}, - [1349] = {.lex_state = 852}, - [1350] = {.lex_state = 852}, - [1351] = {.lex_state = 852}, - [1352] = {.lex_state = 874}, - [1353] = {.lex_state = 853}, - [1354] = {.lex_state = 876}, - [1355] = {.lex_state = 891}, - [1356] = {.lex_state = 276}, - [1357] = {.lex_state = 276}, - [1358] = {.lex_state = 870}, - [1359] = {.lex_state = 891}, - [1360] = {.lex_state = 870}, - [1361] = {.lex_state = 870}, - [1362] = {.lex_state = 276}, - [1363] = {.lex_state = 874}, - [1364] = {.lex_state = 854}, - [1365] = {.lex_state = 276}, - [1366] = {.lex_state = 870}, - [1367] = {.lex_state = 276}, - [1368] = {.lex_state = 276}, - [1369] = {.lex_state = 852}, - [1370] = {.lex_state = 276}, - [1371] = {.lex_state = 276}, - [1372] = {.lex_state = 891}, - [1373] = {.lex_state = 276}, - [1374] = {.lex_state = 852}, - [1375] = {.lex_state = 852}, - [1376] = {.lex_state = 870}, - [1377] = {.lex_state = 905}, - [1378] = {.lex_state = 852}, - [1379] = {.lex_state = 276}, - [1380] = {.lex_state = 852}, - [1381] = {.lex_state = 852}, - [1382] = {.lex_state = 872}, - [1383] = {.lex_state = 853}, - [1384] = {.lex_state = 872}, - [1385] = {.lex_state = 852}, - [1386] = {.lex_state = 870}, - [1387] = {.lex_state = 852}, - [1388] = {.lex_state = 852}, - [1389] = {.lex_state = 276}, - [1390] = {.lex_state = 852}, - [1391] = {.lex_state = 870}, - [1392] = {.lex_state = 870}, - [1393] = {.lex_state = 852}, - [1394] = {.lex_state = 852}, + [1219] = {.lex_state = 850}, + [1220] = {.lex_state = 857}, + [1221] = {.lex_state = 881}, + [1222] = {.lex_state = 880}, + [1223] = {.lex_state = 850}, + [1224] = {.lex_state = 852}, + [1225] = {.lex_state = 881}, + [1226] = {.lex_state = 850}, + [1227] = {.lex_state = 852}, + [1228] = {.lex_state = 914}, + [1229] = {.lex_state = 857}, + [1230] = {.lex_state = 880}, + [1231] = {.lex_state = 880}, + [1232] = {.lex_state = 246}, + [1233] = {.lex_state = 881}, + [1234] = {.lex_state = 850}, + [1235] = {.lex_state = 880}, + [1236] = {.lex_state = 844}, + [1237] = {.lex_state = 246}, + [1238] = {.lex_state = 853}, + [1239] = {.lex_state = 871}, + [1240] = {.lex_state = 853}, + [1241] = {.lex_state = 853}, + [1242] = {.lex_state = 844}, + [1243] = {.lex_state = 853}, + [1244] = {.lex_state = 853}, + [1245] = {.lex_state = 853}, + [1246] = {.lex_state = 853}, + [1247] = {.lex_state = 906}, + [1248] = {.lex_state = 853}, + [1249] = {.lex_state = 853}, + [1250] = {.lex_state = 853}, + [1251] = {.lex_state = 853}, + [1252] = {.lex_state = 871}, + [1253] = {.lex_state = 853}, + [1254] = {.lex_state = 853}, + [1255] = {.lex_state = 853}, + [1256] = {.lex_state = 853}, + [1257] = {.lex_state = 853}, + [1258] = {.lex_state = 853}, + [1259] = {.lex_state = 853}, + [1260] = {.lex_state = 853}, + [1261] = {.lex_state = 853}, + [1262] = {.lex_state = 853}, + [1263] = {.lex_state = 853}, + [1264] = {.lex_state = 853}, + [1265] = {.lex_state = 853}, + [1266] = {.lex_state = 853}, + [1267] = {.lex_state = 853}, + [1268] = {.lex_state = 853}, + [1269] = {.lex_state = 853}, + [1270] = {.lex_state = 853}, + [1271] = {.lex_state = 853}, + [1272] = {.lex_state = 853}, + [1273] = {.lex_state = 853}, + [1274] = {.lex_state = 853}, + [1275] = {.lex_state = 853}, + [1276] = {.lex_state = 853}, + [1277] = {.lex_state = 853}, + [1278] = {.lex_state = 853}, + [1279] = {.lex_state = 853}, + [1280] = {.lex_state = 853}, + [1281] = {.lex_state = 853}, + [1282] = {.lex_state = 853}, + [1283] = {.lex_state = 871}, + [1284] = {.lex_state = 853}, + [1285] = {.lex_state = 856}, + [1286] = {.lex_state = 871}, + [1287] = {.lex_state = 853}, + [1288] = {.lex_state = 871}, + [1289] = {.lex_state = 877}, + [1290] = {.lex_state = 871}, + [1291] = {.lex_state = 853}, + [1292] = {.lex_state = 871}, + [1293] = {.lex_state = 853}, + [1294] = {.lex_state = 875}, + [1295] = {.lex_state = 871}, + [1296] = {.lex_state = 865}, + [1297] = {.lex_state = 850}, + [1298] = {.lex_state = 853}, + [1299] = {.lex_state = 871}, + [1300] = {.lex_state = 871}, + [1301] = {.lex_state = 853}, + [1302] = {.lex_state = 871}, + [1303] = {.lex_state = 853}, + [1304] = {.lex_state = 850}, + [1305] = {.lex_state = 865}, + [1306] = {.lex_state = 853}, + [1307] = {.lex_state = 853}, + [1308] = {.lex_state = 881}, + [1309] = {.lex_state = 853}, + [1310] = {.lex_state = 871}, + [1311] = {.lex_state = 853}, + [1312] = {.lex_state = 865}, + [1313] = {.lex_state = 881}, + [1314] = {.lex_state = 850}, + [1315] = {.lex_state = 877}, + [1316] = {.lex_state = 850}, + [1317] = {.lex_state = 840}, + [1318] = {.lex_state = 850}, + [1319] = {.lex_state = 871}, + [1320] = {.lex_state = 853}, + [1321] = {.lex_state = 850}, + [1322] = {.lex_state = 853}, + [1323] = {.lex_state = 853}, + [1324] = {.lex_state = 853}, + [1325] = {.lex_state = 853}, + [1326] = {.lex_state = 850}, + [1327] = {.lex_state = 881}, + [1328] = {.lex_state = 871}, + [1329] = {.lex_state = 881}, + [1330] = {.lex_state = 853}, + [1331] = {.lex_state = 881}, + [1332] = {.lex_state = 853}, + [1333] = {.lex_state = 871}, + [1334] = {.lex_state = 853}, + [1335] = {.lex_state = 853}, + [1336] = {.lex_state = 853}, + [1337] = {.lex_state = 853}, + [1338] = {.lex_state = 864}, + [1339] = {.lex_state = 875}, + [1340] = {.lex_state = 871}, + [1341] = {.lex_state = 871}, + [1342] = {.lex_state = 871}, + [1343] = {.lex_state = 871}, + [1344] = {.lex_state = 871}, + [1345] = {.lex_state = 277}, + [1346] = {.lex_state = 853}, + [1347] = {.lex_state = 277}, + [1348] = {.lex_state = 853}, + [1349] = {.lex_state = 871}, + [1350] = {.lex_state = 853}, + [1351] = {.lex_state = 854}, + [1352] = {.lex_state = 853}, + [1353] = {.lex_state = 865}, + [1354] = {.lex_state = 871}, + [1355] = {.lex_state = 277}, + [1356] = {.lex_state = 853}, + [1357] = {.lex_state = 854}, + [1358] = {.lex_state = 873}, + [1359] = {.lex_state = 892}, + [1360] = {.lex_state = 853}, + [1361] = {.lex_state = 871}, + [1362] = {.lex_state = 906}, + [1363] = {.lex_state = 277}, + [1364] = {.lex_state = 871}, + [1365] = {.lex_state = 853}, + [1366] = {.lex_state = 853}, + [1367] = {.lex_state = 853}, + [1368] = {.lex_state = 853}, + [1369] = {.lex_state = 853}, + [1370] = {.lex_state = 871}, + [1371] = {.lex_state = 871}, + [1372] = {.lex_state = 853}, + [1373] = {.lex_state = 277}, + [1374] = {.lex_state = 873}, + [1375] = {.lex_state = 277}, + [1376] = {.lex_state = 877}, + [1377] = {.lex_state = 873}, + [1378] = {.lex_state = 864}, + [1379] = {.lex_state = 871}, + [1380] = {.lex_state = 877}, + [1381] = {.lex_state = 854}, + [1382] = {.lex_state = 277}, + [1383] = {.lex_state = 855}, + [1384] = {.lex_state = 277}, + [1385] = {.lex_state = 277}, + [1386] = {.lex_state = 871}, + [1387] = {.lex_state = 853}, + [1388] = {.lex_state = 853}, + [1389] = {.lex_state = 277}, + [1390] = {.lex_state = 871}, + [1391] = {.lex_state = 871}, + [1392] = {.lex_state = 871}, + [1393] = {.lex_state = 853}, + [1394] = {.lex_state = 853}, [1395] = {.lex_state = 853}, - [1396] = {.lex_state = 852}, - [1397] = {.lex_state = 852}, - [1398] = {.lex_state = 870}, - [1399] = {.lex_state = 872}, - [1400] = {.lex_state = 852}, - [1401] = {.lex_state = 852}, - [1402] = {.lex_state = 852}, - [1403] = {.lex_state = 852}, - [1404] = {.lex_state = 852}, - [1405] = {.lex_state = 852}, - [1406] = {.lex_state = 852}, - [1407] = {.lex_state = 852}, - [1408] = {.lex_state = 852}, - [1409] = {.lex_state = 276}, - [1410] = {.lex_state = 852}, - [1411] = {.lex_state = 852}, - [1412] = {.lex_state = 276}, - [1413] = {.lex_state = 876}, - [1414] = {.lex_state = 852}, - [1415] = {.lex_state = 276}, - [1416] = {.lex_state = 852}, - [1417] = {.lex_state = 853}, - [1418] = {.lex_state = 852}, - [1419] = {.lex_state = 852}, - [1420] = {.lex_state = 852}, - [1421] = {.lex_state = 852}, - [1422] = {.lex_state = 276}, - [1423] = {.lex_state = 276}, - [1424] = {.lex_state = 870}, - [1425] = {.lex_state = 852}, - [1426] = {.lex_state = 276}, - [1427] = {.lex_state = 276}, - [1428] = {.lex_state = 852}, - [1429] = {.lex_state = 852}, - [1430] = {.lex_state = 852}, - [1431] = {.lex_state = 852}, - [1432] = {.lex_state = 852}, - [1433] = {.lex_state = 852}, - [1434] = {.lex_state = 852}, - [1435] = {.lex_state = 903}, - [1436] = {.lex_state = 852}, - [1437] = {.lex_state = 872}, - [1438] = {.lex_state = 852}, - [1439] = {.lex_state = 852}, - [1440] = {.lex_state = 872}, - [1441] = {.lex_state = 852}, - [1442] = {.lex_state = 852}, - [1443] = {.lex_state = 864}, - [1444] = {.lex_state = 863}, - [1445] = {.lex_state = 276}, - [1446] = {.lex_state = 852}, - [1447] = {.lex_state = 852}, - [1448] = {.lex_state = 852}, - [1449] = {.lex_state = 852}, - [1450] = {.lex_state = 870}, - [1451] = {.lex_state = 870}, - [1452] = {.lex_state = 870}, - [1453] = {.lex_state = 870}, - [1454] = {.lex_state = 870}, - [1455] = {.lex_state = 852}, - [1456] = {.lex_state = 870}, - [1457] = {.lex_state = 852}, - [1458] = {.lex_state = 852}, - [1459] = {.lex_state = 872}, - [1460] = {.lex_state = 852}, - [1461] = {.lex_state = 852}, - [1462] = {.lex_state = 852}, - [1463] = {.lex_state = 872}, - [1464] = {.lex_state = 872}, - [1465] = {.lex_state = 852}, - [1466] = {.lex_state = 870}, - [1467] = {.lex_state = 870}, - [1468] = {.lex_state = 853}, - [1469] = {.lex_state = 853}, - [1470] = {.lex_state = 872}, - [1471] = {.lex_state = 870}, - [1472] = {.lex_state = 870}, - [1473] = {.lex_state = 870}, - [1474] = {.lex_state = 853}, - [1475] = {.lex_state = 898}, - [1476] = {.lex_state = 872}, - [1477] = {.lex_state = 898}, - [1478] = {.lex_state = 276}, - [1479] = {.lex_state = 898}, - [1480] = {.lex_state = 903}, - [1481] = {.lex_state = 872}, - [1482] = {.lex_state = 872}, - [1483] = {.lex_state = 891}, - [1484] = {.lex_state = 872}, - [1485] = {.lex_state = 891}, - [1486] = {.lex_state = 870}, - [1487] = {.lex_state = 903}, + [1396] = {.lex_state = 853}, + [1397] = {.lex_state = 854}, + [1398] = {.lex_state = 277}, + [1399] = {.lex_state = 853}, + [1400] = {.lex_state = 853}, + [1401] = {.lex_state = 853}, + [1402] = {.lex_state = 277}, + [1403] = {.lex_state = 853}, + [1404] = {.lex_state = 873}, + [1405] = {.lex_state = 277}, + [1406] = {.lex_state = 853}, + [1407] = {.lex_state = 853}, + [1408] = {.lex_state = 853}, + [1409] = {.lex_state = 853}, + [1410] = {.lex_state = 853}, + [1411] = {.lex_state = 853}, + [1412] = {.lex_state = 853}, + [1413] = {.lex_state = 873}, + [1414] = {.lex_state = 277}, + [1415] = {.lex_state = 904}, + [1416] = {.lex_state = 873}, + [1417] = {.lex_state = 904}, + [1418] = {.lex_state = 277}, + [1419] = {.lex_state = 853}, + [1420] = {.lex_state = 853}, + [1421] = {.lex_state = 853}, + [1422] = {.lex_state = 853}, + [1423] = {.lex_state = 853}, + [1424] = {.lex_state = 853}, + [1425] = {.lex_state = 853}, + [1426] = {.lex_state = 853}, + [1427] = {.lex_state = 853}, + [1428] = {.lex_state = 853}, + [1429] = {.lex_state = 277}, + [1430] = {.lex_state = 853}, + [1431] = {.lex_state = 853}, + [1432] = {.lex_state = 853}, + [1433] = {.lex_state = 853}, + [1434] = {.lex_state = 853}, + [1435] = {.lex_state = 853}, + [1436] = {.lex_state = 853}, + [1437] = {.lex_state = 875}, + [1438] = {.lex_state = 853}, + [1439] = {.lex_state = 853}, + [1440] = {.lex_state = 853}, + [1441] = {.lex_state = 853}, + [1442] = {.lex_state = 853}, + [1443] = {.lex_state = 853}, + [1444] = {.lex_state = 853}, + [1445] = {.lex_state = 875}, + [1446] = {.lex_state = 277}, + [1447] = {.lex_state = 853}, + [1448] = {.lex_state = 853}, + [1449] = {.lex_state = 892}, + [1450] = {.lex_state = 277}, + [1451] = {.lex_state = 277}, + [1452] = {.lex_state = 892}, + [1453] = {.lex_state = 871}, + [1454] = {.lex_state = 853}, + [1455] = {.lex_state = 853}, + [1456] = {.lex_state = 871}, + [1457] = {.lex_state = 853}, + [1458] = {.lex_state = 853}, + [1459] = {.lex_state = 277}, + [1460] = {.lex_state = 853}, + [1461] = {.lex_state = 853}, + [1462] = {.lex_state = 871}, + [1463] = {.lex_state = 853}, + [1464] = {.lex_state = 853}, + [1465] = {.lex_state = 873}, + [1466] = {.lex_state = 873}, + [1467] = {.lex_state = 277}, + [1468] = {.lex_state = 871}, + [1469] = {.lex_state = 854}, + [1470] = {.lex_state = 871}, + [1471] = {.lex_state = 319}, + [1472] = {.lex_state = 854}, + [1473] = {.lex_state = 898}, + [1474] = {.lex_state = 901}, + [1475] = {.lex_state = 873}, + [1476] = {.lex_state = 873}, + [1477] = {.lex_state = 871}, + [1478] = {.lex_state = 871}, + [1479] = {.lex_state = 854}, + [1480] = {.lex_state = 854}, + [1481] = {.lex_state = 904}, + [1482] = {.lex_state = 854}, + [1483] = {.lex_state = 873}, + [1484] = {.lex_state = 873}, + [1485] = {.lex_state = 871}, + [1486] = {.lex_state = 854}, + [1487] = {.lex_state = 904}, [1488] = {.lex_state = 854}, - [1489] = {.lex_state = 872}, - [1490] = {.lex_state = 930}, - [1491] = {.lex_state = 318}, - [1492] = {.lex_state = 870}, - [1493] = {.lex_state = 870}, - [1494] = {.lex_state = 870}, - [1495] = {.lex_state = 870}, - [1496] = {.lex_state = 318}, - [1497] = {.lex_state = 853}, - [1498] = {.lex_state = 853}, - [1499] = {.lex_state = 870}, - [1500] = {.lex_state = 870}, - [1501] = {.lex_state = 318}, - [1502] = {.lex_state = 870}, - [1503] = {.lex_state = 787}, - [1504] = {.lex_state = 870}, - [1505] = {.lex_state = 787}, - [1506] = {.lex_state = 853}, - [1507] = {.lex_state = 870}, - [1508] = {.lex_state = 870}, - [1509] = {.lex_state = 870}, - [1510] = {.lex_state = 870}, - [1511] = {.lex_state = 853}, - [1512] = {.lex_state = 853}, - [1513] = {.lex_state = 870}, - [1514] = {.lex_state = 870}, - [1515] = {.lex_state = 900}, - [1516] = {.lex_state = 861}, - [1517] = {.lex_state = 861}, - [1518] = {.lex_state = 891}, - [1519] = {.lex_state = 318}, - [1520] = {.lex_state = 862}, - [1521] = {.lex_state = 891}, - [1522] = {.lex_state = 870}, - [1523] = {.lex_state = 872}, - [1524] = {.lex_state = 853}, - [1525] = {.lex_state = 853}, - [1526] = {.lex_state = 853}, - [1527] = {.lex_state = 870}, - [1528] = {.lex_state = 853}, - [1529] = {.lex_state = 870}, - [1530] = {.lex_state = 853}, - [1531] = {.lex_state = 872}, - [1532] = {.lex_state = 318}, - [1533] = {.lex_state = 318}, - [1534] = {.lex_state = 870}, - [1535] = {.lex_state = 318}, - [1536] = {.lex_state = 853}, - [1537] = {.lex_state = 853}, - [1538] = {.lex_state = 913}, - [1539] = {.lex_state = 913}, - [1540] = {.lex_state = 913}, - [1541] = {.lex_state = 870}, - [1542] = {.lex_state = 853}, - [1543] = {.lex_state = 853}, - [1544] = {.lex_state = 913}, - [1545] = {.lex_state = 915}, - [1546] = {.lex_state = 915}, - [1547] = {.lex_state = 915}, - [1548] = {.lex_state = 915}, - [1549] = {.lex_state = 915}, - [1550] = {.lex_state = 915}, - [1551] = {.lex_state = 853}, - [1552] = {.lex_state = 915}, - [1553] = {.lex_state = 853}, - [1554] = {.lex_state = 915}, - [1555] = {.lex_state = 870}, - [1556] = {.lex_state = 853}, - [1557] = {.lex_state = 853}, - [1558] = {.lex_state = 913}, - [1559] = {.lex_state = 913}, - [1560] = {.lex_state = 913}, - [1561] = {.lex_state = 913}, - [1562] = {.lex_state = 913}, - [1563] = {.lex_state = 870}, - [1564] = {.lex_state = 870}, - [1565] = {.lex_state = 870}, - [1566] = {.lex_state = 860}, - [1567] = {.lex_state = 913}, - [1568] = {.lex_state = 870}, - [1569] = {.lex_state = 870}, - [1570] = {.lex_state = 913}, - [1571] = {.lex_state = 913}, - [1572] = {.lex_state = 913}, - [1573] = {.lex_state = 862}, - [1574] = {.lex_state = 913}, - [1575] = {.lex_state = 913}, - [1576] = {.lex_state = 913}, - [1577] = {.lex_state = 913}, - [1578] = {.lex_state = 913}, - [1579] = {.lex_state = 870}, - [1580] = {.lex_state = 856}, - [1581] = {.lex_state = 913}, - [1582] = {.lex_state = 870}, - [1583] = {.lex_state = 891}, - [1584] = {.lex_state = 870}, - [1585] = {.lex_state = 898}, - [1586] = {.lex_state = 913}, - [1587] = {.lex_state = 913}, - [1588] = {.lex_state = 913}, - [1589] = {.lex_state = 898}, - [1590] = {.lex_state = 853}, - [1591] = {.lex_state = 870}, - [1592] = {.lex_state = 929}, - [1593] = {.lex_state = 853}, - [1594] = {.lex_state = 913}, - [1595] = {.lex_state = 913}, - [1596] = {.lex_state = 913}, - [1597] = {.lex_state = 915}, - [1598] = {.lex_state = 898}, - [1599] = {.lex_state = 900}, - [1600] = {.lex_state = 913}, - [1601] = {.lex_state = 915}, - [1602] = {.lex_state = 870}, - [1603] = {.lex_state = 913}, - [1604] = {.lex_state = 915}, - [1605] = {.lex_state = 915}, - [1606] = {.lex_state = 870}, - [1607] = {.lex_state = 913}, - [1608] = {.lex_state = 853}, - [1609] = {.lex_state = 913}, - [1610] = {.lex_state = 870}, - [1611] = {.lex_state = 913}, - [1612] = {.lex_state = 870}, - [1613] = {.lex_state = 913}, - [1614] = {.lex_state = 913}, - [1615] = {.lex_state = 366}, - [1616] = {.lex_state = 913}, - [1617] = {.lex_state = 913}, - [1618] = {.lex_state = 913}, - [1619] = {.lex_state = 861}, - [1620] = {.lex_state = 913}, - [1621] = {.lex_state = 870}, - [1622] = {.lex_state = 913}, - [1623] = {.lex_state = 913}, - [1624] = {.lex_state = 913}, - [1625] = {.lex_state = 930}, - [1626] = {.lex_state = 913}, - [1627] = {.lex_state = 867}, - [1628] = {.lex_state = 913}, - [1629] = {.lex_state = 913}, - [1630] = {.lex_state = 860}, - [1631] = {.lex_state = 915}, - [1632] = {.lex_state = 915}, - [1633] = {.lex_state = 915}, - [1634] = {.lex_state = 860}, - [1635] = {.lex_state = 913}, - [1636] = {.lex_state = 787}, - [1637] = {.lex_state = 860}, - [1638] = {.lex_state = 913}, - [1639] = {.lex_state = 913}, - [1640] = {.lex_state = 832}, - [1641] = {.lex_state = 787}, - [1642] = {.lex_state = 853}, - [1643] = {.lex_state = 915}, - [1644] = {.lex_state = 915}, - [1645] = {.lex_state = 867}, - [1646] = {.lex_state = 915}, - [1647] = {.lex_state = 915}, - [1648] = {.lex_state = 859}, - [1649] = {.lex_state = 913}, - [1650] = {.lex_state = 860}, - [1651] = {.lex_state = 913}, - [1652] = {.lex_state = 913}, - [1653] = {.lex_state = 913}, - [1654] = {.lex_state = 913}, - [1655] = {.lex_state = 913}, - [1656] = {.lex_state = 913}, - [1657] = {.lex_state = 913}, - [1658] = {.lex_state = 853}, - [1659] = {.lex_state = 913}, - [1660] = {.lex_state = 860}, - [1661] = {.lex_state = 913}, - [1662] = {.lex_state = 913}, - [1663] = {.lex_state = 913}, - [1664] = {.lex_state = 913}, - [1665] = {.lex_state = 913}, - [1666] = {.lex_state = 913}, - [1667] = {.lex_state = 913}, - [1668] = {.lex_state = 913}, - [1669] = {.lex_state = 913}, - [1670] = {.lex_state = 790}, - [1671] = {.lex_state = 790}, - [1672] = {.lex_state = 913}, - [1673] = {.lex_state = 913}, - [1674] = {.lex_state = 853}, - [1675] = {.lex_state = 913}, - [1676] = {.lex_state = 790}, - [1677] = {.lex_state = 913}, - [1678] = {.lex_state = 913}, - [1679] = {.lex_state = 913}, - [1680] = {.lex_state = 913}, - [1681] = {.lex_state = 913}, - [1682] = {.lex_state = 860}, - [1683] = {.lex_state = 913}, - [1684] = {.lex_state = 913}, - [1685] = {.lex_state = 913}, - [1686] = {.lex_state = 913}, - [1687] = {.lex_state = 853}, - [1688] = {.lex_state = 913}, - [1689] = {.lex_state = 913}, - [1690] = {.lex_state = 913}, - [1691] = {.lex_state = 913}, - [1692] = {.lex_state = 913}, - [1693] = {.lex_state = 790}, - [1694] = {.lex_state = 870}, - [1695] = {.lex_state = 913}, - [1696] = {.lex_state = 913}, - [1697] = {.lex_state = 366}, - [1698] = {.lex_state = 913}, - [1699] = {.lex_state = 913}, - [1700] = {.lex_state = 913}, - [1701] = {.lex_state = 913}, - [1702] = {.lex_state = 913}, - [1703] = {.lex_state = 913}, - [1704] = {.lex_state = 790}, - [1705] = {.lex_state = 913}, - [1706] = {.lex_state = 870}, - [1707] = {.lex_state = 913}, - [1708] = {.lex_state = 915}, - [1709] = {.lex_state = 861}, - [1710] = {.lex_state = 913}, - [1711] = {.lex_state = 915}, - [1712] = {.lex_state = 915}, - [1713] = {.lex_state = 366}, - [1714] = {.lex_state = 913}, - [1715] = {.lex_state = 366}, - [1716] = {.lex_state = 913}, - [1717] = {.lex_state = 913}, - [1718] = {.lex_state = 913}, - [1719] = {.lex_state = 366}, - [1720] = {.lex_state = 913}, - [1721] = {.lex_state = 366}, - [1722] = {.lex_state = 913}, - [1723] = {.lex_state = 915}, - [1724] = {.lex_state = 915}, - [1725] = {.lex_state = 915}, - [1726] = {.lex_state = 913}, - [1727] = {.lex_state = 915}, - [1728] = {.lex_state = 915}, - [1729] = {.lex_state = 853}, - [1730] = {.lex_state = 915}, - [1731] = {.lex_state = 856}, - [1732] = {.lex_state = 913}, - [1733] = {.lex_state = 913}, - [1734] = {.lex_state = 856}, - [1735] = {.lex_state = 913}, - [1736] = {.lex_state = 913}, - [1737] = {.lex_state = 913}, - [1738] = {.lex_state = 853}, - [1739] = {.lex_state = 913}, - [1740] = {.lex_state = 853}, - [1741] = {.lex_state = 913}, - [1742] = {.lex_state = 915}, - [1743] = {.lex_state = 913}, - [1744] = {.lex_state = 853}, - [1745] = {.lex_state = 856}, - [1746] = {.lex_state = 856}, - [1747] = {.lex_state = 865}, - [1748] = {.lex_state = 915}, - [1749] = {.lex_state = 856}, - [1750] = {.lex_state = 860}, - [1751] = {.lex_state = 913}, - [1752] = {.lex_state = 913}, - [1753] = {.lex_state = 860}, - [1754] = {.lex_state = 318}, - [1755] = {.lex_state = 865}, - [1756] = {.lex_state = 913}, - [1757] = {.lex_state = 865}, - [1758] = {.lex_state = 856}, - [1759] = {.lex_state = 856}, - [1760] = {.lex_state = 856}, - [1761] = {.lex_state = 860}, - [1762] = {.lex_state = 867}, - [1763] = {.lex_state = 791}, - [1764] = {.lex_state = 860}, - [1765] = {.lex_state = 853}, - [1766] = {.lex_state = 791}, - [1767] = {.lex_state = 856}, - [1768] = {.lex_state = 791}, - [1769] = {.lex_state = 791}, - [1770] = {.lex_state = 913}, - [1771] = {.lex_state = 913}, - [1772] = {.lex_state = 856}, - [1773] = {.lex_state = 859}, - [1774] = {.lex_state = 856}, - [1775] = {.lex_state = 856}, - [1776] = {.lex_state = 913}, - [1777] = {.lex_state = 856}, - [1778] = {.lex_state = 913}, - [1779] = {.lex_state = 915}, - [1780] = {.lex_state = 913}, - [1781] = {.lex_state = 860}, - [1782] = {.lex_state = 371}, - [1783] = {.lex_state = 371}, - [1784] = {.lex_state = 371}, - [1785] = {.lex_state = 860}, - [1786] = {.lex_state = 790}, - [1787] = {.lex_state = 913}, - [1788] = {.lex_state = 371}, - [1789] = {.lex_state = 790}, - [1790] = {.lex_state = 867}, - [1791] = {.lex_state = 913}, - [1792] = {.lex_state = 913}, - [1793] = {.lex_state = 913}, - [1794] = {.lex_state = 915}, - [1795] = {.lex_state = 913}, - [1796] = {.lex_state = 853}, - [1797] = {.lex_state = 913}, - [1798] = {.lex_state = 853}, - [1799] = {.lex_state = 913}, - [1800] = {.lex_state = 853}, - [1801] = {.lex_state = 853}, - [1802] = {.lex_state = 853}, - [1803] = {.lex_state = 790}, - [1804] = {.lex_state = 913}, - [1805] = {.lex_state = 853}, - [1806] = {.lex_state = 853}, - [1807] = {.lex_state = 913}, - [1808] = {.lex_state = 913}, - [1809] = {.lex_state = 913}, - [1810] = {.lex_state = 853}, - [1811] = {.lex_state = 913}, - [1812] = {.lex_state = 913}, - [1813] = {.lex_state = 913}, - [1814] = {.lex_state = 913}, - [1815] = {.lex_state = 913}, - [1816] = {.lex_state = 913}, - [1817] = {.lex_state = 913}, - [1818] = {.lex_state = 913}, - [1819] = {.lex_state = 790}, - [1820] = {.lex_state = 856}, - [1821] = {.lex_state = 913}, - [1822] = {.lex_state = 913}, - [1823] = {.lex_state = 913}, - [1824] = {.lex_state = 913}, - [1825] = {.lex_state = 913}, - [1826] = {.lex_state = 915}, - [1827] = {.lex_state = 913}, - [1828] = {.lex_state = 790}, - [1829] = {.lex_state = 913}, - [1830] = {.lex_state = 913}, - [1831] = {.lex_state = 913}, - [1832] = {.lex_state = 913}, - [1833] = {.lex_state = 913}, - [1834] = {.lex_state = 913}, - [1835] = {.lex_state = 913}, - [1836] = {.lex_state = 913}, - [1837] = {.lex_state = 913}, - [1838] = {.lex_state = 913}, - [1839] = {.lex_state = 856}, - [1840] = {.lex_state = 913}, - [1841] = {.lex_state = 913}, - [1842] = {.lex_state = 856}, - [1843] = {.lex_state = 913}, - [1844] = {.lex_state = 913}, - [1845] = {.lex_state = 913}, - [1846] = {.lex_state = 913}, - [1847] = {.lex_state = 913}, - [1848] = {.lex_state = 913}, - [1849] = {.lex_state = 913}, - [1850] = {.lex_state = 913}, - [1851] = {.lex_state = 913}, - [1852] = {.lex_state = 913}, - [1853] = {.lex_state = 913}, - [1854] = {.lex_state = 913}, - [1855] = {.lex_state = 913}, - [1856] = {.lex_state = 913}, - [1857] = {.lex_state = 913}, - [1858] = {.lex_state = 913}, - [1859] = {.lex_state = 913}, - [1860] = {.lex_state = 913}, - [1861] = {.lex_state = 913}, - [1862] = {.lex_state = 913}, - [1863] = {.lex_state = 913}, - [1864] = {.lex_state = 913}, - [1865] = {.lex_state = 913}, - [1866] = {.lex_state = 913}, - [1867] = {.lex_state = 860}, - [1868] = {.lex_state = 318}, - [1869] = {.lex_state = 913}, - [1870] = {.lex_state = 856}, - [1871] = {.lex_state = 791}, - [1872] = {.lex_state = 856}, - [1873] = {.lex_state = 913}, - [1874] = {.lex_state = 913}, - [1875] = {.lex_state = 933}, - [1876] = {.lex_state = 913}, - [1877] = {.lex_state = 856}, - [1878] = {.lex_state = 913}, - [1879] = {.lex_state = 371}, - [1880] = {.lex_state = 915}, - [1881] = {.lex_state = 915}, - [1882] = {.lex_state = 915}, - [1883] = {.lex_state = 913}, - [1884] = {.lex_state = 913}, - [1885] = {.lex_state = 856}, - [1886] = {.lex_state = 915}, - [1887] = {.lex_state = 915}, - [1888] = {.lex_state = 929}, - [1889] = {.lex_state = 915}, - [1890] = {.lex_state = 915}, - [1891] = {.lex_state = 915}, - [1892] = {.lex_state = 915}, - [1893] = {.lex_state = 915}, - [1894] = {.lex_state = 913}, - [1895] = {.lex_state = 915}, - [1896] = {.lex_state = 913}, - [1897] = {.lex_state = 853}, - [1898] = {.lex_state = 856}, - [1899] = {.lex_state = 913}, - [1900] = {.lex_state = 868}, - [1901] = {.lex_state = 856}, - [1902] = {.lex_state = 915}, - [1903] = {.lex_state = 915}, - [1904] = {.lex_state = 915}, - [1905] = {.lex_state = 913}, - [1906] = {.lex_state = 913}, - [1907] = {.lex_state = 913}, - [1908] = {.lex_state = 913}, - [1909] = {.lex_state = 791}, - [1910] = {.lex_state = 371}, - [1911] = {.lex_state = 856}, - [1912] = {.lex_state = 913}, - [1913] = {.lex_state = 913}, - [1914] = {.lex_state = 856}, - [1915] = {.lex_state = 913}, - [1916] = {.lex_state = 832}, - [1917] = {.lex_state = 856}, - [1918] = {.lex_state = 856}, - [1919] = {.lex_state = 913}, - [1920] = {.lex_state = 915}, - [1921] = {.lex_state = 915}, - [1922] = {.lex_state = 913}, - [1923] = {.lex_state = 853}, - [1924] = {.lex_state = 915}, - [1925] = {.lex_state = 856}, - [1926] = {.lex_state = 776}, - [1927] = {.lex_state = 856}, - [1928] = {.lex_state = 853}, - [1929] = {.lex_state = 853}, - [1930] = {.lex_state = 856}, - [1931] = {.lex_state = 856}, - [1932] = {.lex_state = 856}, - [1933] = {.lex_state = 856}, - [1934] = {.lex_state = 853}, - [1935] = {.lex_state = 856}, - [1936] = {.lex_state = 853}, - [1937] = {.lex_state = 856}, - [1938] = {.lex_state = 865}, - [1939] = {.lex_state = 856}, - [1940] = {.lex_state = 856}, - [1941] = {.lex_state = 853}, - [1942] = {.lex_state = 856}, - [1943] = {.lex_state = 853}, - [1944] = {.lex_state = 853}, - [1945] = {.lex_state = 856}, - [1946] = {.lex_state = 856}, - [1947] = {.lex_state = 856}, - [1948] = {.lex_state = 856}, - [1949] = {.lex_state = 853}, - [1950] = {.lex_state = 856}, - [1951] = {.lex_state = 856}, - [1952] = {.lex_state = 856}, - [1953] = {.lex_state = 856}, - [1954] = {.lex_state = 856}, - [1955] = {.lex_state = 865}, - [1956] = {.lex_state = 856}, - [1957] = {.lex_state = 856}, - [1958] = {.lex_state = 853}, - [1959] = {.lex_state = 856}, - [1960] = {.lex_state = 856}, - [1961] = {.lex_state = 856}, - [1962] = {.lex_state = 856}, - [1963] = {.lex_state = 856}, - [1964] = {.lex_state = 856}, - [1965] = {.lex_state = 796}, - [1966] = {.lex_state = 856}, - [1967] = {.lex_state = 856}, - [1968] = {.lex_state = 856}, - [1969] = {.lex_state = 856}, - [1970] = {.lex_state = 856}, - [1971] = {.lex_state = 856}, - [1972] = {.lex_state = 856}, - [1973] = {.lex_state = 813}, - [1974] = {.lex_state = 856}, - [1975] = {.lex_state = 856}, - [1976] = {.lex_state = 856}, - [1977] = {.lex_state = 856}, - [1978] = {.lex_state = 856}, - [1979] = {.lex_state = 856}, - [1980] = {.lex_state = 865}, - [1981] = {.lex_state = 856}, - [1982] = {.lex_state = 856}, - [1983] = {.lex_state = 856}, - [1984] = {.lex_state = 856}, - [1985] = {.lex_state = 856}, - [1986] = {.lex_state = 856}, - [1987] = {.lex_state = 856}, - [1988] = {.lex_state = 856}, - [1989] = {.lex_state = 856}, - [1990] = {.lex_state = 856}, - [1991] = {.lex_state = 856}, - [1992] = {.lex_state = 856}, - [1993] = {.lex_state = 933}, - [1994] = {.lex_state = 856}, - [1995] = {.lex_state = 856}, - [1996] = {.lex_state = 856}, - [1997] = {.lex_state = 856}, - [1998] = {.lex_state = 856}, - [1999] = {.lex_state = 856}, - [2000] = {.lex_state = 856}, - [2001] = {.lex_state = 856}, - [2002] = {.lex_state = 856}, - [2003] = {.lex_state = 856}, - [2004] = {.lex_state = 856}, - [2005] = {.lex_state = 813}, - [2006] = {.lex_state = 856}, - [2007] = {.lex_state = 856}, - [2008] = {.lex_state = 856}, - [2009] = {.lex_state = 856}, - [2010] = {.lex_state = 856}, - [2011] = {.lex_state = 856}, - [2012] = {.lex_state = 856}, - [2013] = {.lex_state = 856}, - [2014] = {.lex_state = 856}, - [2015] = {.lex_state = 853}, - [2016] = {.lex_state = 853}, - [2017] = {.lex_state = 813}, - [2018] = {.lex_state = 856}, - [2019] = {.lex_state = 856}, - [2020] = {.lex_state = 856}, - [2021] = {.lex_state = 856}, - [2022] = {.lex_state = 856}, - [2023] = {.lex_state = 856}, - [2024] = {.lex_state = 856}, - [2025] = {.lex_state = 856}, - [2026] = {.lex_state = 856}, - [2027] = {.lex_state = 856}, - [2028] = {.lex_state = 856}, - [2029] = {.lex_state = 856}, - [2030] = {.lex_state = 853}, - [2031] = {.lex_state = 856}, - [2032] = {.lex_state = 856}, - [2033] = {.lex_state = 856}, - [2034] = {.lex_state = 856}, - [2035] = {.lex_state = 856}, - [2036] = {.lex_state = 856}, - [2037] = {.lex_state = 856}, - [2038] = {.lex_state = 856}, - [2039] = {.lex_state = 856}, - [2040] = {.lex_state = 856}, - [2041] = {.lex_state = 856}, - [2042] = {.lex_state = 856}, - [2043] = {.lex_state = 813}, - [2044] = {.lex_state = 856}, - [2045] = {.lex_state = 856}, - [2046] = {.lex_state = 367}, - [2047] = {.lex_state = 856}, - [2048] = {.lex_state = 367}, - [2049] = {.lex_state = 856}, - [2050] = {.lex_state = 856}, - [2051] = {.lex_state = 367}, - [2052] = {.lex_state = 856}, - [2053] = {.lex_state = 856}, - [2054] = {.lex_state = 856}, - [2055] = {.lex_state = 856}, - [2056] = {.lex_state = 856}, - [2057] = {.lex_state = 856}, - [2058] = {.lex_state = 856}, - [2059] = {.lex_state = 856}, - [2060] = {.lex_state = 796}, - [2061] = {.lex_state = 856}, - [2062] = {.lex_state = 856}, - [2063] = {.lex_state = 856}, - [2064] = {.lex_state = 856}, - [2065] = {.lex_state = 856}, - [2066] = {.lex_state = 856}, - [2067] = {.lex_state = 856}, - [2068] = {.lex_state = 856}, - [2069] = {.lex_state = 856}, - [2070] = {.lex_state = 856}, - [2071] = {.lex_state = 916}, - [2072] = {.lex_state = 856}, - [2073] = {.lex_state = 856}, - [2074] = {.lex_state = 856}, - [2075] = {.lex_state = 856}, - [2076] = {.lex_state = 856}, - [2077] = {.lex_state = 856}, - [2078] = {.lex_state = 856}, - [2079] = {.lex_state = 367}, - [2080] = {.lex_state = 856}, - [2081] = {.lex_state = 856}, - [2082] = {.lex_state = 856}, - [2083] = {.lex_state = 791}, - [2084] = {.lex_state = 856}, - [2085] = {.lex_state = 813}, - [2086] = {.lex_state = 856}, - [2087] = {.lex_state = 916}, - [2088] = {.lex_state = 856}, - [2089] = {.lex_state = 856}, - [2090] = {.lex_state = 813}, - [2091] = {.lex_state = 856}, - [2092] = {.lex_state = 856}, - [2093] = {.lex_state = 856}, - [2094] = {.lex_state = 813}, - [2095] = {.lex_state = 813}, - [2096] = {.lex_state = 856}, - [2097] = {.lex_state = 367}, - [2098] = {.lex_state = 367}, - [2099] = {.lex_state = 367}, - [2100] = {.lex_state = 367}, - [2101] = {.lex_state = 367}, - [2102] = {.lex_state = 856}, - [2103] = {.lex_state = 856}, - [2104] = {.lex_state = 367}, - [2105] = {.lex_state = 367}, - [2106] = {.lex_state = 856}, - [2107] = {.lex_state = 856}, - [2108] = {.lex_state = 367}, - [2109] = {.lex_state = 868}, - [2110] = {.lex_state = 856}, - [2111] = {.lex_state = 856}, - [2112] = {.lex_state = 791}, - [2113] = {.lex_state = 856}, - [2114] = {.lex_state = 856}, - [2115] = {.lex_state = 856}, - [2116] = {.lex_state = 856}, - [2117] = {.lex_state = 856}, - [2118] = {.lex_state = 856}, - [2119] = {.lex_state = 791}, - [2120] = {.lex_state = 856}, - [2121] = {.lex_state = 856}, - [2122] = {.lex_state = 813}, - [2123] = {.lex_state = 856}, - [2124] = {.lex_state = 791}, - [2125] = {.lex_state = 856}, - [2126] = {.lex_state = 791}, - [2127] = {.lex_state = 813}, - [2128] = {.lex_state = 856}, - [2129] = {.lex_state = 856}, - [2130] = {.lex_state = 856}, - [2131] = {.lex_state = 856}, - [2132] = {.lex_state = 856}, - [2133] = {.lex_state = 853}, - [2134] = {.lex_state = 856}, - [2135] = {.lex_state = 856}, - [2136] = {.lex_state = 856}, - [2137] = {.lex_state = 856}, - [2138] = {.lex_state = 813}, - [2139] = {.lex_state = 856}, - [2140] = {.lex_state = 813}, - [2141] = {.lex_state = 791}, - [2142] = {.lex_state = 813}, - [2143] = {.lex_state = 813}, - [2144] = {.lex_state = 856}, - [2145] = {.lex_state = 856}, - [2146] = {.lex_state = 856}, - [2147] = {.lex_state = 813}, - [2148] = {.lex_state = 246}, - [2149] = {.lex_state = 246}, - [2150] = {.lex_state = 813}, - [2151] = {.lex_state = 856}, - [2152] = {.lex_state = 856}, - [2153] = {.lex_state = 856}, - [2154] = {.lex_state = 856}, - [2155] = {.lex_state = 856}, - [2156] = {.lex_state = 856}, - [2157] = {.lex_state = 856}, - [2158] = {.lex_state = 856}, - [2159] = {.lex_state = 246}, - [2160] = {.lex_state = 856}, - [2161] = {.lex_state = 817}, - [2162] = {.lex_state = 856}, - [2163] = {.lex_state = 856}, - [2164] = {.lex_state = 856}, - [2165] = {.lex_state = 246}, - [2166] = {.lex_state = 856}, - [2167] = {.lex_state = 796}, - [2168] = {.lex_state = 856}, - [2169] = {.lex_state = 856}, - [2170] = {.lex_state = 246}, - [2171] = {.lex_state = 856}, - [2172] = {.lex_state = 856}, - [2173] = {.lex_state = 856}, - [2174] = {.lex_state = 856}, - [2175] = {.lex_state = 856}, - [2176] = {.lex_state = 856}, - [2177] = {.lex_state = 856}, - [2178] = {.lex_state = 856}, - [2179] = {.lex_state = 856}, - [2180] = {.lex_state = 856}, - [2181] = {.lex_state = 916}, - [2182] = {.lex_state = 856}, - [2183] = {.lex_state = 856}, - [2184] = {.lex_state = 856}, - [2185] = {.lex_state = 856}, - [2186] = {.lex_state = 372}, - [2187] = {.lex_state = 372}, - [2188] = {.lex_state = 856}, - [2189] = {.lex_state = 856}, - [2190] = {.lex_state = 856}, - [2191] = {.lex_state = 246}, - [2192] = {.lex_state = 813}, - [2193] = {.lex_state = 813}, - [2194] = {.lex_state = 856}, - [2195] = {.lex_state = 856}, - [2196] = {.lex_state = 856}, - [2197] = {.lex_state = 856}, - [2198] = {.lex_state = 817}, - [2199] = {.lex_state = 246}, - [2200] = {.lex_state = 856}, - [2201] = {.lex_state = 856}, - [2202] = {.lex_state = 246}, - [2203] = {.lex_state = 856}, - [2204] = {.lex_state = 856}, - [2205] = {.lex_state = 856}, - [2206] = {.lex_state = 856}, - [2207] = {.lex_state = 856}, - [2208] = {.lex_state = 856}, - [2209] = {.lex_state = 372}, + [1489] = {.lex_state = 871}, + [1490] = {.lex_state = 854}, + [1491] = {.lex_state = 854}, + [1492] = {.lex_state = 871}, + [1493] = {.lex_state = 871}, + [1494] = {.lex_state = 277}, + [1495] = {.lex_state = 854}, + [1496] = {.lex_state = 854}, + [1497] = {.lex_state = 892}, + [1498] = {.lex_state = 855}, + [1499] = {.lex_state = 871}, + [1500] = {.lex_state = 319}, + [1501] = {.lex_state = 873}, + [1502] = {.lex_state = 931}, + [1503] = {.lex_state = 873}, + [1504] = {.lex_state = 871}, + [1505] = {.lex_state = 871}, + [1506] = {.lex_state = 319}, + [1507] = {.lex_state = 854}, + [1508] = {.lex_state = 898}, + [1509] = {.lex_state = 898}, + [1510] = {.lex_state = 862}, + [1511] = {.lex_state = 871}, + [1512] = {.lex_state = 892}, + [1513] = {.lex_state = 319}, + [1514] = {.lex_state = 854}, + [1515] = {.lex_state = 319}, + [1516] = {.lex_state = 873}, + [1517] = {.lex_state = 871}, + [1518] = {.lex_state = 892}, + [1519] = {.lex_state = 871}, + [1520] = {.lex_state = 319}, + [1521] = {.lex_state = 871}, + [1522] = {.lex_state = 862}, + [1523] = {.lex_state = 863}, + [1524] = {.lex_state = 892}, + [1525] = {.lex_state = 871}, + [1526] = {.lex_state = 788}, + [1527] = {.lex_state = 871}, + [1528] = {.lex_state = 788}, + [1529] = {.lex_state = 871}, + [1530] = {.lex_state = 854}, + [1531] = {.lex_state = 319}, + [1532] = {.lex_state = 871}, + [1533] = {.lex_state = 871}, + [1534] = {.lex_state = 854}, + [1535] = {.lex_state = 871}, + [1536] = {.lex_state = 871}, + [1537] = {.lex_state = 873}, + [1538] = {.lex_state = 367}, + [1539] = {.lex_state = 914}, + [1540] = {.lex_state = 914}, + [1541] = {.lex_state = 930}, + [1542] = {.lex_state = 861}, + [1543] = {.lex_state = 914}, + [1544] = {.lex_state = 914}, + [1545] = {.lex_state = 914}, + [1546] = {.lex_state = 914}, + [1547] = {.lex_state = 898}, + [1548] = {.lex_state = 861}, + [1549] = {.lex_state = 898}, + [1550] = {.lex_state = 914}, + [1551] = {.lex_state = 914}, + [1552] = {.lex_state = 861}, + [1553] = {.lex_state = 914}, + [1554] = {.lex_state = 871}, + [1555] = {.lex_state = 914}, + [1556] = {.lex_state = 931}, + [1557] = {.lex_state = 861}, + [1558] = {.lex_state = 916}, + [1559] = {.lex_state = 871}, + [1560] = {.lex_state = 914}, + [1561] = {.lex_state = 914}, + [1562] = {.lex_state = 914}, + [1563] = {.lex_state = 367}, + [1564] = {.lex_state = 916}, + [1565] = {.lex_state = 914}, + [1566] = {.lex_state = 916}, + [1567] = {.lex_state = 871}, + [1568] = {.lex_state = 914}, + [1569] = {.lex_state = 868}, + [1570] = {.lex_state = 914}, + [1571] = {.lex_state = 914}, + [1572] = {.lex_state = 914}, + [1573] = {.lex_state = 914}, + [1574] = {.lex_state = 914}, + [1575] = {.lex_state = 916}, + [1576] = {.lex_state = 854}, + [1577] = {.lex_state = 916}, + [1578] = {.lex_state = 914}, + [1579] = {.lex_state = 914}, + [1580] = {.lex_state = 914}, + [1581] = {.lex_state = 871}, + [1582] = {.lex_state = 916}, + [1583] = {.lex_state = 861}, + [1584] = {.lex_state = 916}, + [1585] = {.lex_state = 914}, + [1586] = {.lex_state = 914}, + [1587] = {.lex_state = 914}, + [1588] = {.lex_state = 914}, + [1589] = {.lex_state = 868}, + [1590] = {.lex_state = 871}, + [1591] = {.lex_state = 914}, + [1592] = {.lex_state = 914}, + [1593] = {.lex_state = 914}, + [1594] = {.lex_state = 916}, + [1595] = {.lex_state = 914}, + [1596] = {.lex_state = 892}, + [1597] = {.lex_state = 914}, + [1598] = {.lex_state = 871}, + [1599] = {.lex_state = 833}, + [1600] = {.lex_state = 914}, + [1601] = {.lex_state = 871}, + [1602] = {.lex_state = 914}, + [1603] = {.lex_state = 914}, + [1604] = {.lex_state = 916}, + [1605] = {.lex_state = 916}, + [1606] = {.lex_state = 914}, + [1607] = {.lex_state = 854}, + [1608] = {.lex_state = 916}, + [1609] = {.lex_state = 914}, + [1610] = {.lex_state = 916}, + [1611] = {.lex_state = 854}, + [1612] = {.lex_state = 871}, + [1613] = {.lex_state = 854}, + [1614] = {.lex_state = 914}, + [1615] = {.lex_state = 914}, + [1616] = {.lex_state = 854}, + [1617] = {.lex_state = 914}, + [1618] = {.lex_state = 854}, + [1619] = {.lex_state = 871}, + [1620] = {.lex_state = 871}, + [1621] = {.lex_state = 914}, + [1622] = {.lex_state = 914}, + [1623] = {.lex_state = 914}, + [1624] = {.lex_state = 914}, + [1625] = {.lex_state = 914}, + [1626] = {.lex_state = 788}, + [1627] = {.lex_state = 367}, + [1628] = {.lex_state = 914}, + [1629] = {.lex_state = 788}, + [1630] = {.lex_state = 914}, + [1631] = {.lex_state = 854}, + [1632] = {.lex_state = 914}, + [1633] = {.lex_state = 871}, + [1634] = {.lex_state = 916}, + [1635] = {.lex_state = 914}, + [1636] = {.lex_state = 860}, + [1637] = {.lex_state = 914}, + [1638] = {.lex_state = 914}, + [1639] = {.lex_state = 916}, + [1640] = {.lex_state = 914}, + [1641] = {.lex_state = 871}, + [1642] = {.lex_state = 914}, + [1643] = {.lex_state = 916}, + [1644] = {.lex_state = 914}, + [1645] = {.lex_state = 914}, + [1646] = {.lex_state = 914}, + [1647] = {.lex_state = 916}, + [1648] = {.lex_state = 916}, + [1649] = {.lex_state = 854}, + [1650] = {.lex_state = 916}, + [1651] = {.lex_state = 861}, + [1652] = {.lex_state = 914}, + [1653] = {.lex_state = 914}, + [1654] = {.lex_state = 914}, + [1655] = {.lex_state = 914}, + [1656] = {.lex_state = 914}, + [1657] = {.lex_state = 914}, + [1658] = {.lex_state = 914}, + [1659] = {.lex_state = 914}, + [1660] = {.lex_state = 916}, + [1661] = {.lex_state = 901}, + [1662] = {.lex_state = 914}, + [1663] = {.lex_state = 871}, + [1664] = {.lex_state = 914}, + [1665] = {.lex_state = 857}, + [1666] = {.lex_state = 914}, + [1667] = {.lex_state = 916}, + [1668] = {.lex_state = 914}, + [1669] = {.lex_state = 871}, + [1670] = {.lex_state = 854}, + [1671] = {.lex_state = 914}, + [1672] = {.lex_state = 914}, + [1673] = {.lex_state = 914}, + [1674] = {.lex_state = 861}, + [1675] = {.lex_state = 916}, + [1676] = {.lex_state = 854}, + [1677] = {.lex_state = 914}, + [1678] = {.lex_state = 916}, + [1679] = {.lex_state = 871}, + [1680] = {.lex_state = 871}, + [1681] = {.lex_state = 914}, + [1682] = {.lex_state = 914}, + [1683] = {.lex_state = 914}, + [1684] = {.lex_state = 914}, + [1685] = {.lex_state = 854}, + [1686] = {.lex_state = 914}, + [1687] = {.lex_state = 914}, + [1688] = {.lex_state = 914}, + [1689] = {.lex_state = 854}, + [1690] = {.lex_state = 914}, + [1691] = {.lex_state = 791}, + [1692] = {.lex_state = 914}, + [1693] = {.lex_state = 914}, + [1694] = {.lex_state = 791}, + [1695] = {.lex_state = 914}, + [1696] = {.lex_state = 862}, + [1697] = {.lex_state = 367}, + [1698] = {.lex_state = 367}, + [1699] = {.lex_state = 367}, + [1700] = {.lex_state = 863}, + [1701] = {.lex_state = 914}, + [1702] = {.lex_state = 791}, + [1703] = {.lex_state = 791}, + [1704] = {.lex_state = 914}, + [1705] = {.lex_state = 791}, + [1706] = {.lex_state = 914}, + [1707] = {.lex_state = 854}, + [1708] = {.lex_state = 914}, + [1709] = {.lex_state = 862}, + [1710] = {.lex_state = 914}, + [1711] = {.lex_state = 871}, + [1712] = {.lex_state = 914}, + [1713] = {.lex_state = 914}, + [1714] = {.lex_state = 916}, + [1715] = {.lex_state = 871}, + [1716] = {.lex_state = 914}, + [1717] = {.lex_state = 914}, + [1718] = {.lex_state = 898}, + [1719] = {.lex_state = 916}, + [1720] = {.lex_state = 914}, + [1721] = {.lex_state = 914}, + [1722] = {.lex_state = 916}, + [1723] = {.lex_state = 914}, + [1724] = {.lex_state = 914}, + [1725] = {.lex_state = 914}, + [1726] = {.lex_state = 914}, + [1727] = {.lex_state = 914}, + [1728] = {.lex_state = 914}, + [1729] = {.lex_state = 914}, + [1730] = {.lex_state = 914}, + [1731] = {.lex_state = 914}, + [1732] = {.lex_state = 914}, + [1733] = {.lex_state = 914}, + [1734] = {.lex_state = 914}, + [1735] = {.lex_state = 914}, + [1736] = {.lex_state = 857}, + [1737] = {.lex_state = 857}, + [1738] = {.lex_state = 857}, + [1739] = {.lex_state = 914}, + [1740] = {.lex_state = 857}, + [1741] = {.lex_state = 857}, + [1742] = {.lex_state = 857}, + [1743] = {.lex_state = 857}, + [1744] = {.lex_state = 914}, + [1745] = {.lex_state = 857}, + [1746] = {.lex_state = 914}, + [1747] = {.lex_state = 930}, + [1748] = {.lex_state = 857}, + [1749] = {.lex_state = 857}, + [1750] = {.lex_state = 857}, + [1751] = {.lex_state = 857}, + [1752] = {.lex_state = 914}, + [1753] = {.lex_state = 792}, + [1754] = {.lex_state = 914}, + [1755] = {.lex_state = 914}, + [1756] = {.lex_state = 914}, + [1757] = {.lex_state = 914}, + [1758] = {.lex_state = 914}, + [1759] = {.lex_state = 914}, + [1760] = {.lex_state = 792}, + [1761] = {.lex_state = 914}, + [1762] = {.lex_state = 914}, + [1763] = {.lex_state = 914}, + [1764] = {.lex_state = 833}, + [1765] = {.lex_state = 914}, + [1766] = {.lex_state = 854}, + [1767] = {.lex_state = 914}, + [1768] = {.lex_state = 914}, + [1769] = {.lex_state = 914}, + [1770] = {.lex_state = 854}, + [1771] = {.lex_state = 914}, + [1772] = {.lex_state = 914}, + [1773] = {.lex_state = 914}, + [1774] = {.lex_state = 914}, + [1775] = {.lex_state = 914}, + [1776] = {.lex_state = 914}, + [1777] = {.lex_state = 914}, + [1778] = {.lex_state = 857}, + [1779] = {.lex_state = 914}, + [1780] = {.lex_state = 857}, + [1781] = {.lex_state = 857}, + [1782] = {.lex_state = 857}, + [1783] = {.lex_state = 914}, + [1784] = {.lex_state = 861}, + [1785] = {.lex_state = 857}, + [1786] = {.lex_state = 854}, + [1787] = {.lex_state = 916}, + [1788] = {.lex_state = 857}, + [1789] = {.lex_state = 916}, + [1790] = {.lex_state = 861}, + [1791] = {.lex_state = 914}, + [1792] = {.lex_state = 914}, + [1793] = {.lex_state = 914}, + [1794] = {.lex_state = 914}, + [1795] = {.lex_state = 914}, + [1796] = {.lex_state = 914}, + [1797] = {.lex_state = 914}, + [1798] = {.lex_state = 372}, + [1799] = {.lex_state = 914}, + [1800] = {.lex_state = 914}, + [1801] = {.lex_state = 854}, + [1802] = {.lex_state = 319}, + [1803] = {.lex_state = 854}, + [1804] = {.lex_state = 854}, + [1805] = {.lex_state = 854}, + [1806] = {.lex_state = 854}, + [1807] = {.lex_state = 854}, + [1808] = {.lex_state = 854}, + [1809] = {.lex_state = 854}, + [1810] = {.lex_state = 854}, + [1811] = {.lex_state = 854}, + [1812] = {.lex_state = 854}, + [1813] = {.lex_state = 857}, + [1814] = {.lex_state = 857}, + [1815] = {.lex_state = 866}, + [1816] = {.lex_state = 857}, + [1817] = {.lex_state = 866}, + [1818] = {.lex_state = 866}, + [1819] = {.lex_state = 914}, + [1820] = {.lex_state = 914}, + [1821] = {.lex_state = 791}, + [1822] = {.lex_state = 791}, + [1823] = {.lex_state = 791}, + [1824] = {.lex_state = 791}, + [1825] = {.lex_state = 791}, + [1826] = {.lex_state = 860}, + [1827] = {.lex_state = 916}, + [1828] = {.lex_state = 854}, + [1829] = {.lex_state = 869}, + [1830] = {.lex_state = 857}, + [1831] = {.lex_state = 857}, + [1832] = {.lex_state = 857}, + [1833] = {.lex_state = 857}, + [1834] = {.lex_state = 857}, + [1835] = {.lex_state = 916}, + [1836] = {.lex_state = 916}, + [1837] = {.lex_state = 916}, + [1838] = {.lex_state = 868}, + [1839] = {.lex_state = 792}, + [1840] = {.lex_state = 319}, + [1841] = {.lex_state = 792}, + [1842] = {.lex_state = 792}, + [1843] = {.lex_state = 792}, + [1844] = {.lex_state = 868}, + [1845] = {.lex_state = 861}, + [1846] = {.lex_state = 914}, + [1847] = {.lex_state = 861}, + [1848] = {.lex_state = 914}, + [1849] = {.lex_state = 914}, + [1850] = {.lex_state = 861}, + [1851] = {.lex_state = 916}, + [1852] = {.lex_state = 916}, + [1853] = {.lex_state = 861}, + [1854] = {.lex_state = 914}, + [1855] = {.lex_state = 916}, + [1856] = {.lex_state = 861}, + [1857] = {.lex_state = 914}, + [1858] = {.lex_state = 914}, + [1859] = {.lex_state = 914}, + [1860] = {.lex_state = 916}, + [1861] = {.lex_state = 914}, + [1862] = {.lex_state = 934}, + [1863] = {.lex_state = 914}, + [1864] = {.lex_state = 372}, + [1865] = {.lex_state = 372}, + [1866] = {.lex_state = 372}, + [1867] = {.lex_state = 372}, + [1868] = {.lex_state = 914}, + [1869] = {.lex_state = 916}, + [1870] = {.lex_state = 916}, + [1871] = {.lex_state = 916}, + [1872] = {.lex_state = 916}, + [1873] = {.lex_state = 916}, + [1874] = {.lex_state = 914}, + [1875] = {.lex_state = 916}, + [1876] = {.lex_state = 916}, + [1877] = {.lex_state = 916}, + [1878] = {.lex_state = 916}, + [1879] = {.lex_state = 914}, + [1880] = {.lex_state = 372}, + [1881] = {.lex_state = 914}, + [1882] = {.lex_state = 914}, + [1883] = {.lex_state = 914}, + [1884] = {.lex_state = 916}, + [1885] = {.lex_state = 916}, + [1886] = {.lex_state = 916}, + [1887] = {.lex_state = 916}, + [1888] = {.lex_state = 914}, + [1889] = {.lex_state = 914}, + [1890] = {.lex_state = 914}, + [1891] = {.lex_state = 914}, + [1892] = {.lex_state = 914}, + [1893] = {.lex_state = 914}, + [1894] = {.lex_state = 914}, + [1895] = {.lex_state = 914}, + [1896] = {.lex_state = 916}, + [1897] = {.lex_state = 916}, + [1898] = {.lex_state = 914}, + [1899] = {.lex_state = 914}, + [1900] = {.lex_state = 914}, + [1901] = {.lex_state = 914}, + [1902] = {.lex_state = 914}, + [1903] = {.lex_state = 914}, + [1904] = {.lex_state = 914}, + [1905] = {.lex_state = 914}, + [1906] = {.lex_state = 914}, + [1907] = {.lex_state = 914}, + [1908] = {.lex_state = 914}, + [1909] = {.lex_state = 914}, + [1910] = {.lex_state = 914}, + [1911] = {.lex_state = 914}, + [1912] = {.lex_state = 914}, + [1913] = {.lex_state = 914}, + [1914] = {.lex_state = 914}, + [1915] = {.lex_state = 914}, + [1916] = {.lex_state = 914}, + [1917] = {.lex_state = 914}, + [1918] = {.lex_state = 914}, + [1919] = {.lex_state = 914}, + [1920] = {.lex_state = 914}, + [1921] = {.lex_state = 914}, + [1922] = {.lex_state = 914}, + [1923] = {.lex_state = 914}, + [1924] = {.lex_state = 914}, + [1925] = {.lex_state = 857}, + [1926] = {.lex_state = 857}, + [1927] = {.lex_state = 857}, + [1928] = {.lex_state = 857}, + [1929] = {.lex_state = 857}, + [1930] = {.lex_state = 857}, + [1931] = {.lex_state = 857}, + [1932] = {.lex_state = 857}, + [1933] = {.lex_state = 857}, + [1934] = {.lex_state = 857}, + [1935] = {.lex_state = 857}, + [1936] = {.lex_state = 857}, + [1937] = {.lex_state = 857}, + [1938] = {.lex_state = 857}, + [1939] = {.lex_state = 857}, + [1940] = {.lex_state = 857}, + [1941] = {.lex_state = 857}, + [1942] = {.lex_state = 857}, + [1943] = {.lex_state = 857}, + [1944] = {.lex_state = 857}, + [1945] = {.lex_state = 857}, + [1946] = {.lex_state = 857}, + [1947] = {.lex_state = 857}, + [1948] = {.lex_state = 857}, + [1949] = {.lex_state = 857}, + [1950] = {.lex_state = 857}, + [1951] = {.lex_state = 857}, + [1952] = {.lex_state = 857}, + [1953] = {.lex_state = 857}, + [1954] = {.lex_state = 857}, + [1955] = {.lex_state = 814}, + [1956] = {.lex_state = 814}, + [1957] = {.lex_state = 857}, + [1958] = {.lex_state = 857}, + [1959] = {.lex_state = 857}, + [1960] = {.lex_state = 857}, + [1961] = {.lex_state = 857}, + [1962] = {.lex_state = 857}, + [1963] = {.lex_state = 857}, + [1964] = {.lex_state = 857}, + [1965] = {.lex_state = 857}, + [1966] = {.lex_state = 857}, + [1967] = {.lex_state = 857}, + [1968] = {.lex_state = 857}, + [1969] = {.lex_state = 857}, + [1970] = {.lex_state = 857}, + [1971] = {.lex_state = 857}, + [1972] = {.lex_state = 857}, + [1973] = {.lex_state = 857}, + [1974] = {.lex_state = 854}, + [1975] = {.lex_state = 797}, + [1976] = {.lex_state = 857}, + [1977] = {.lex_state = 857}, + [1978] = {.lex_state = 857}, + [1979] = {.lex_state = 857}, + [1980] = {.lex_state = 857}, + [1981] = {.lex_state = 857}, + [1982] = {.lex_state = 857}, + [1983] = {.lex_state = 857}, + [1984] = {.lex_state = 857}, + [1985] = {.lex_state = 857}, + [1986] = {.lex_state = 857}, + [1987] = {.lex_state = 857}, + [1988] = {.lex_state = 857}, + [1989] = {.lex_state = 857}, + [1990] = {.lex_state = 857}, + [1991] = {.lex_state = 857}, + [1992] = {.lex_state = 857}, + [1993] = {.lex_state = 857}, + [1994] = {.lex_state = 857}, + [1995] = {.lex_state = 857}, + [1996] = {.lex_state = 857}, + [1997] = {.lex_state = 857}, + [1998] = {.lex_state = 857}, + [1999] = {.lex_state = 857}, + [2000] = {.lex_state = 857}, + [2001] = {.lex_state = 857}, + [2002] = {.lex_state = 857}, + [2003] = {.lex_state = 857}, + [2004] = {.lex_state = 857}, + [2005] = {.lex_state = 857}, + [2006] = {.lex_state = 857}, + [2007] = {.lex_state = 857}, + [2008] = {.lex_state = 857}, + [2009] = {.lex_state = 814}, + [2010] = {.lex_state = 857}, + [2011] = {.lex_state = 934}, + [2012] = {.lex_state = 792}, + [2013] = {.lex_state = 857}, + [2014] = {.lex_state = 792}, + [2015] = {.lex_state = 792}, + [2016] = {.lex_state = 857}, + [2017] = {.lex_state = 792}, + [2018] = {.lex_state = 857}, + [2019] = {.lex_state = 857}, + [2020] = {.lex_state = 814}, + [2021] = {.lex_state = 857}, + [2022] = {.lex_state = 854}, + [2023] = {.lex_state = 857}, + [2024] = {.lex_state = 857}, + [2025] = {.lex_state = 854}, + [2026] = {.lex_state = 857}, + [2027] = {.lex_state = 857}, + [2028] = {.lex_state = 857}, + [2029] = {.lex_state = 857}, + [2030] = {.lex_state = 814}, + [2031] = {.lex_state = 857}, + [2032] = {.lex_state = 857}, + [2033] = {.lex_state = 857}, + [2034] = {.lex_state = 917}, + [2035] = {.lex_state = 857}, + [2036] = {.lex_state = 814}, + [2037] = {.lex_state = 857}, + [2038] = {.lex_state = 814}, + [2039] = {.lex_state = 814}, + [2040] = {.lex_state = 857}, + [2041] = {.lex_state = 857}, + [2042] = {.lex_state = 857}, + [2043] = {.lex_state = 857}, + [2044] = {.lex_state = 857}, + [2045] = {.lex_state = 814}, + [2046] = {.lex_state = 814}, + [2047] = {.lex_state = 857}, + [2048] = {.lex_state = 814}, + [2049] = {.lex_state = 857}, + [2050] = {.lex_state = 857}, + [2051] = {.lex_state = 869}, + [2052] = {.lex_state = 857}, + [2053] = {.lex_state = 857}, + [2054] = {.lex_state = 814}, + [2055] = {.lex_state = 814}, + [2056] = {.lex_state = 854}, + [2057] = {.lex_state = 857}, + [2058] = {.lex_state = 854}, + [2059] = {.lex_state = 857}, + [2060] = {.lex_state = 854}, + [2061] = {.lex_state = 857}, + [2062] = {.lex_state = 814}, + [2063] = {.lex_state = 857}, + [2064] = {.lex_state = 797}, + [2065] = {.lex_state = 857}, + [2066] = {.lex_state = 857}, + [2067] = {.lex_state = 854}, + [2068] = {.lex_state = 854}, + [2069] = {.lex_state = 854}, + [2070] = {.lex_state = 854}, + [2071] = {.lex_state = 857}, + [2072] = {.lex_state = 857}, + [2073] = {.lex_state = 854}, + [2074] = {.lex_state = 777}, + [2075] = {.lex_state = 814}, + [2076] = {.lex_state = 857}, + [2077] = {.lex_state = 857}, + [2078] = {.lex_state = 857}, + [2079] = {.lex_state = 857}, + [2080] = {.lex_state = 857}, + [2081] = {.lex_state = 917}, + [2082] = {.lex_state = 857}, + [2083] = {.lex_state = 857}, + [2084] = {.lex_state = 854}, + [2085] = {.lex_state = 857}, + [2086] = {.lex_state = 857}, + [2087] = {.lex_state = 368}, + [2088] = {.lex_state = 368}, + [2089] = {.lex_state = 368}, + [2090] = {.lex_state = 368}, + [2091] = {.lex_state = 857}, + [2092] = {.lex_state = 857}, + [2093] = {.lex_state = 857}, + [2094] = {.lex_state = 857}, + [2095] = {.lex_state = 857}, + [2096] = {.lex_state = 368}, + [2097] = {.lex_state = 368}, + [2098] = {.lex_state = 368}, + [2099] = {.lex_state = 368}, + [2100] = {.lex_state = 368}, + [2101] = {.lex_state = 368}, + [2102] = {.lex_state = 368}, + [2103] = {.lex_state = 368}, + [2104] = {.lex_state = 857}, + [2105] = {.lex_state = 857}, + [2106] = {.lex_state = 857}, + [2107] = {.lex_state = 857}, + [2108] = {.lex_state = 792}, + [2109] = {.lex_state = 866}, + [2110] = {.lex_state = 857}, + [2111] = {.lex_state = 857}, + [2112] = {.lex_state = 857}, + [2113] = {.lex_state = 854}, + [2114] = {.lex_state = 792}, + [2115] = {.lex_state = 866}, + [2116] = {.lex_state = 857}, + [2117] = {.lex_state = 857}, + [2118] = {.lex_state = 857}, + [2119] = {.lex_state = 857}, + [2120] = {.lex_state = 857}, + [2121] = {.lex_state = 857}, + [2122] = {.lex_state = 857}, + [2123] = {.lex_state = 857}, + [2124] = {.lex_state = 857}, + [2125] = {.lex_state = 857}, + [2126] = {.lex_state = 857}, + [2127] = {.lex_state = 857}, + [2128] = {.lex_state = 857}, + [2129] = {.lex_state = 857}, + [2130] = {.lex_state = 866}, + [2131] = {.lex_state = 857}, + [2132] = {.lex_state = 857}, + [2133] = {.lex_state = 857}, + [2134] = {.lex_state = 857}, + [2135] = {.lex_state = 857}, + [2136] = {.lex_state = 857}, + [2137] = {.lex_state = 857}, + [2138] = {.lex_state = 857}, + [2139] = {.lex_state = 857}, + [2140] = {.lex_state = 857}, + [2141] = {.lex_state = 857}, + [2142] = {.lex_state = 857}, + [2143] = {.lex_state = 857}, + [2144] = {.lex_state = 857}, + [2145] = {.lex_state = 857}, + [2146] = {.lex_state = 857}, + [2147] = {.lex_state = 857}, + [2148] = {.lex_state = 814}, + [2149] = {.lex_state = 857}, + [2150] = {.lex_state = 857}, + [2151] = {.lex_state = 857}, + [2152] = {.lex_state = 857}, + [2153] = {.lex_state = 857}, + [2154] = {.lex_state = 857}, + [2155] = {.lex_state = 246}, + [2156] = {.lex_state = 857}, + [2157] = {.lex_state = 857}, + [2158] = {.lex_state = 857}, + [2159] = {.lex_state = 857}, + [2160] = {.lex_state = 857}, + [2161] = {.lex_state = 857}, + [2162] = {.lex_state = 857}, + [2163] = {.lex_state = 857}, + [2164] = {.lex_state = 857}, + [2165] = {.lex_state = 814}, + [2166] = {.lex_state = 857}, + [2167] = {.lex_state = 857}, + [2168] = {.lex_state = 857}, + [2169] = {.lex_state = 857}, + [2170] = {.lex_state = 857}, + [2171] = {.lex_state = 857}, + [2172] = {.lex_state = 246}, + [2173] = {.lex_state = 857}, + [2174] = {.lex_state = 857}, + [2175] = {.lex_state = 373}, + [2176] = {.lex_state = 373}, + [2177] = {.lex_state = 373}, + [2178] = {.lex_state = 246}, + [2179] = {.lex_state = 373}, + [2180] = {.lex_state = 857}, + [2181] = {.lex_state = 857}, + [2182] = {.lex_state = 857}, + [2183] = {.lex_state = 373}, + [2184] = {.lex_state = 246}, + [2185] = {.lex_state = 373}, + [2186] = {.lex_state = 373}, + [2187] = {.lex_state = 246}, + [2188] = {.lex_state = 373}, + [2189] = {.lex_state = 373}, + [2190] = {.lex_state = 246}, + [2191] = {.lex_state = 373}, + [2192] = {.lex_state = 373}, + [2193] = {.lex_state = 246}, + [2194] = {.lex_state = 373}, + [2195] = {.lex_state = 246}, + [2196] = {.lex_state = 857}, + [2197] = {.lex_state = 249}, + [2198] = {.lex_state = 246}, + [2199] = {.lex_state = 857}, + [2200] = {.lex_state = 246}, + [2201] = {.lex_state = 857}, + [2202] = {.lex_state = 857}, + [2203] = {.lex_state = 246}, + [2204] = {.lex_state = 857}, + [2205] = {.lex_state = 857}, + [2206] = {.lex_state = 246}, + [2207] = {.lex_state = 246}, + [2208] = {.lex_state = 246}, + [2209] = {.lex_state = 246}, [2210] = {.lex_state = 246}, [2211] = {.lex_state = 246}, - [2212] = {.lex_state = 856}, - [2213] = {.lex_state = 856}, - [2214] = {.lex_state = 856}, - [2215] = {.lex_state = 856}, - [2216] = {.lex_state = 856}, - [2217] = {.lex_state = 856}, - [2218] = {.lex_state = 856}, - [2219] = {.lex_state = 856}, - [2220] = {.lex_state = 813}, + [2212] = {.lex_state = 246}, + [2213] = {.lex_state = 246}, + [2214] = {.lex_state = 857}, + [2215] = {.lex_state = 857}, + [2216] = {.lex_state = 246}, + [2217] = {.lex_state = 246}, + [2218] = {.lex_state = 246}, + [2219] = {.lex_state = 246}, + [2220] = {.lex_state = 857}, [2221] = {.lex_state = 246}, - [2222] = {.lex_state = 856}, - [2223] = {.lex_state = 246}, - [2224] = {.lex_state = 813}, - [2225] = {.lex_state = 856}, - [2226] = {.lex_state = 246}, - [2227] = {.lex_state = 856}, - [2228] = {.lex_state = 856}, - [2229] = {.lex_state = 856}, - [2230] = {.lex_state = 856}, - [2231] = {.lex_state = 249}, - [2232] = {.lex_state = 813}, - [2233] = {.lex_state = 856}, - [2234] = {.lex_state = 856}, - [2235] = {.lex_state = 813}, - [2236] = {.lex_state = 856}, - [2237] = {.lex_state = 856}, - [2238] = {.lex_state = 372}, - [2239] = {.lex_state = 856}, - [2240] = {.lex_state = 856}, + [2222] = {.lex_state = 246}, + [2223] = {.lex_state = 857}, + [2224] = {.lex_state = 246}, + [2225] = {.lex_state = 857}, + [2226] = {.lex_state = 857}, + [2227] = {.lex_state = 246}, + [2228] = {.lex_state = 857}, + [2229] = {.lex_state = 246}, + [2230] = {.lex_state = 857}, + [2231] = {.lex_state = 246}, + [2232] = {.lex_state = 857}, + [2233] = {.lex_state = 246}, + [2234] = {.lex_state = 857}, + [2235] = {.lex_state = 818}, + [2236] = {.lex_state = 246}, + [2237] = {.lex_state = 818}, + [2238] = {.lex_state = 246}, + [2239] = {.lex_state = 246}, + [2240] = {.lex_state = 246}, [2241] = {.lex_state = 246}, [2242] = {.lex_state = 246}, [2243] = {.lex_state = 246}, [2244] = {.lex_state = 246}, - [2245] = {.lex_state = 813}, - [2246] = {.lex_state = 856}, - [2247] = {.lex_state = 869}, - [2248] = {.lex_state = 856}, - [2249] = {.lex_state = 856}, - [2250] = {.lex_state = 246}, - [2251] = {.lex_state = 856}, - [2252] = {.lex_state = 246}, - [2253] = {.lex_state = 856}, - [2254] = {.lex_state = 856}, - [2255] = {.lex_state = 856}, - [2256] = {.lex_state = 856}, - [2257] = {.lex_state = 246}, - [2258] = {.lex_state = 246}, - [2259] = {.lex_state = 856}, - [2260] = {.lex_state = 246}, - [2261] = {.lex_state = 372}, - [2262] = {.lex_state = 372}, - [2263] = {.lex_state = 372}, - [2264] = {.lex_state = 856}, - [2265] = {.lex_state = 796}, - [2266] = {.lex_state = 856}, - [2267] = {.lex_state = 856}, - [2268] = {.lex_state = 372}, - [2269] = {.lex_state = 372}, - [2270] = {.lex_state = 246}, - [2271] = {.lex_state = 246}, - [2272] = {.lex_state = 246}, - [2273] = {.lex_state = 856}, - [2274] = {.lex_state = 856}, - [2275] = {.lex_state = 856}, - [2276] = {.lex_state = 856}, - [2277] = {.lex_state = 856}, - [2278] = {.lex_state = 246}, - [2279] = {.lex_state = 856}, - [2280] = {.lex_state = 246}, - [2281] = {.lex_state = 246}, - [2282] = {.lex_state = 856}, - [2283] = {.lex_state = 856}, - [2284] = {.lex_state = 246}, - [2285] = {.lex_state = 856}, - [2286] = {.lex_state = 856}, - [2287] = {.lex_state = 246}, - [2288] = {.lex_state = 856}, - [2289] = {.lex_state = 856}, - [2290] = {.lex_state = 372}, - [2291] = {.lex_state = 856}, - [2292] = {.lex_state = 856}, - [2293] = {.lex_state = 856}, - [2294] = {.lex_state = 372}, - [2295] = {.lex_state = 372}, - [2296] = {.lex_state = 856}, - [2297] = {.lex_state = 856}, - [2298] = {.lex_state = 246}, - [2299] = {.lex_state = 856}, - [2300] = {.lex_state = 856}, - [2301] = {.lex_state = 813}, - [2302] = {.lex_state = 813}, - [2303] = {.lex_state = 856}, - [2304] = {.lex_state = 856}, - [2305] = {.lex_state = 916}, - [2306] = {.lex_state = 856}, - [2307] = {.lex_state = 813}, - [2308] = {.lex_state = 246}, - [2309] = {.lex_state = 856}, - [2310] = {.lex_state = 776}, - [2311] = {.lex_state = 856}, - [2312] = {.lex_state = 856}, - [2313] = {.lex_state = 856}, - [2314] = {.lex_state = 246}, - [2315] = {.lex_state = 246}, - [2316] = {.lex_state = 856}, - [2317] = {.lex_state = 246}, - [2318] = {.lex_state = 246}, - [2319] = {.lex_state = 813}, - [2320] = {.lex_state = 856}, - [2321] = {.lex_state = 856}, - [2322] = {.lex_state = 856}, - [2323] = {.lex_state = 856}, - [2324] = {.lex_state = 817}, - [2325] = {.lex_state = 856}, - [2326] = {.lex_state = 856}, - [2327] = {.lex_state = 856}, - [2328] = {.lex_state = 856}, - [2329] = {.lex_state = 856}, - [2330] = {.lex_state = 813}, - [2331] = {.lex_state = 856}, - [2332] = {.lex_state = 246}, - [2333] = {.lex_state = 856}, - [2334] = {.lex_state = 856}, - [2335] = {.lex_state = 856}, - [2336] = {.lex_state = 856}, - [2337] = {.lex_state = 856}, - [2338] = {.lex_state = 856}, - [2339] = {.lex_state = 856}, - [2340] = {.lex_state = 856}, - [2341] = {.lex_state = 246}, - [2342] = {.lex_state = 856}, - [2343] = {.lex_state = 856}, - [2344] = {.lex_state = 856}, - [2345] = {.lex_state = 856}, - [2346] = {.lex_state = 856}, - [2347] = {.lex_state = 856}, - [2348] = {.lex_state = 246}, - [2349] = {.lex_state = 856}, - [2350] = {.lex_state = 56}, - [2351] = {.lex_state = 813}, - [2352] = {.lex_state = 856}, - [2353] = {.lex_state = 813}, - [2354] = {.lex_state = 856}, - [2355] = {.lex_state = 856}, - [2356] = {.lex_state = 856}, - [2357] = {.lex_state = 856}, - [2358] = {.lex_state = 246}, - [2359] = {.lex_state = 813}, - [2360] = {.lex_state = 813}, - [2361] = {.lex_state = 813}, - [2362] = {.lex_state = 856}, - [2363] = {.lex_state = 246}, - [2364] = {.lex_state = 56}, - [2365] = {.lex_state = 856}, - [2366] = {.lex_state = 856}, - [2367] = {.lex_state = 813}, - [2368] = {.lex_state = 246}, - [2369] = {.lex_state = 856}, - [2370] = {.lex_state = 856}, - [2371] = {.lex_state = 856}, - [2372] = {.lex_state = 856}, - [2373] = {.lex_state = 856}, - [2374] = {.lex_state = 856}, - [2375] = {.lex_state = 856}, - [2376] = {.lex_state = 57}, - [2377] = {.lex_state = 57}, - [2378] = {.lex_state = 856}, - [2379] = {.lex_state = 263}, - [2380] = {.lex_state = 263}, - [2381] = {.lex_state = 247}, - [2382] = {.lex_state = 813}, - [2383] = {.lex_state = 856}, - [2384] = {.lex_state = 856}, - [2385] = {.lex_state = 57}, - [2386] = {.lex_state = 856}, - [2387] = {.lex_state = 856}, - [2388] = {.lex_state = 856}, - [2389] = {.lex_state = 48}, - [2390] = {.lex_state = 856}, - [2391] = {.lex_state = 48}, - [2392] = {.lex_state = 856}, - [2393] = {.lex_state = 856}, - [2394] = {.lex_state = 813}, - [2395] = {.lex_state = 813}, - [2396] = {.lex_state = 856}, - [2397] = {.lex_state = 263}, - [2398] = {.lex_state = 813}, - [2399] = {.lex_state = 856}, - [2400] = {.lex_state = 856}, - [2401] = {.lex_state = 844}, - [2402] = {.lex_state = 856}, - [2403] = {.lex_state = 856}, - [2404] = {.lex_state = 817}, - [2405] = {.lex_state = 813}, - [2406] = {.lex_state = 57}, - [2407] = {.lex_state = 263}, - [2408] = {.lex_state = 856}, - [2409] = {.lex_state = 856}, - [2410] = {.lex_state = 869}, - [2411] = {.lex_state = 174}, - [2412] = {.lex_state = 856}, - [2413] = {.lex_state = 856}, - [2414] = {.lex_state = 817}, - [2415] = {.lex_state = 813}, - [2416] = {.lex_state = 813}, - [2417] = {.lex_state = 838}, - [2418] = {.lex_state = 856}, - [2419] = {.lex_state = 813}, - [2420] = {.lex_state = 856}, - [2421] = {.lex_state = 813}, - [2422] = {.lex_state = 813}, - [2423] = {.lex_state = 52}, - [2424] = {.lex_state = 813}, - [2425] = {.lex_state = 856}, - [2426] = {.lex_state = 856}, - [2427] = {.lex_state = 52}, - [2428] = {.lex_state = 817}, - [2429] = {.lex_state = 57}, - [2430] = {.lex_state = 856}, - [2431] = {.lex_state = 817}, - [2432] = {.lex_state = 58}, - [2433] = {.lex_state = 58}, - [2434] = {.lex_state = 246}, - [2435] = {.lex_state = 817}, - [2436] = {.lex_state = 813}, - [2437] = {.lex_state = 817}, - [2438] = {.lex_state = 813}, - [2439] = {.lex_state = 817}, - [2440] = {.lex_state = 246}, - [2441] = {.lex_state = 817}, - [2442] = {.lex_state = 172}, - [2443] = {.lex_state = 58}, - [2444] = {.lex_state = 817}, - [2445] = {.lex_state = 813}, - [2446] = {.lex_state = 817}, - [2447] = {.lex_state = 817}, - [2448] = {.lex_state = 844}, - [2449] = {.lex_state = 58}, - [2450] = {.lex_state = 49}, - [2451] = {.lex_state = 817}, - [2452] = {.lex_state = 817}, - [2453] = {.lex_state = 813}, - [2454] = {.lex_state = 817}, - [2455] = {.lex_state = 247}, - [2456] = {.lex_state = 173}, - [2457] = {.lex_state = 817}, - [2458] = {.lex_state = 817}, - [2459] = {.lex_state = 58}, - [2460] = {.lex_state = 817}, - [2461] = {.lex_state = 817}, - [2462] = {.lex_state = 247}, - [2463] = {.lex_state = 247}, - [2464] = {.lex_state = 247}, - [2465] = {.lex_state = 227}, - [2466] = {.lex_state = 817}, - [2467] = {.lex_state = 838}, - [2468] = {.lex_state = 817}, - [2469] = {.lex_state = 817}, - [2470] = {.lex_state = 817}, - [2471] = {.lex_state = 817}, - [2472] = {.lex_state = 227}, - [2473] = {.lex_state = 247}, - [2474] = {.lex_state = 817}, - [2475] = {.lex_state = 813}, - [2476] = {.lex_state = 817}, - [2477] = {.lex_state = 817}, - [2478] = {.lex_state = 247}, - [2479] = {.lex_state = 817}, - [2480] = {.lex_state = 247}, - [2481] = {.lex_state = 817}, - [2482] = {.lex_state = 817}, - [2483] = {.lex_state = 817}, - [2484] = {.lex_state = 49}, - [2485] = {.lex_state = 817}, - [2486] = {.lex_state = 817}, - [2487] = {.lex_state = 817}, - [2488] = {.lex_state = 817}, - [2489] = {.lex_state = 817}, - [2490] = {.lex_state = 817}, - [2491] = {.lex_state = 817}, - [2492] = {.lex_state = 817}, - [2493] = {.lex_state = 817}, - [2494] = {.lex_state = 817}, - [2495] = {.lex_state = 817}, - [2496] = {.lex_state = 817}, - [2497] = {.lex_state = 817}, - [2498] = {.lex_state = 58}, - [2499] = {.lex_state = 959}, - [2500] = {.lex_state = 817}, - [2501] = {.lex_state = 817}, - [2502] = {.lex_state = 817}, - [2503] = {.lex_state = 817}, - [2504] = {.lex_state = 817}, - [2505] = {.lex_state = 817}, - [2506] = {.lex_state = 817}, - [2507] = {.lex_state = 817}, - [2508] = {.lex_state = 817}, - [2509] = {.lex_state = 817}, - [2510] = {.lex_state = 817}, - [2511] = {.lex_state = 817}, - [2512] = {.lex_state = 817}, - [2513] = {.lex_state = 817}, - [2514] = {.lex_state = 44}, - [2515] = {.lex_state = 817}, - [2516] = {.lex_state = 817}, - [2517] = {.lex_state = 53}, + [2245] = {.lex_state = 246}, + [2246] = {.lex_state = 246}, + [2247] = {.lex_state = 246}, + [2248] = {.lex_state = 797}, + [2249] = {.lex_state = 857}, + [2250] = {.lex_state = 814}, + [2251] = {.lex_state = 857}, + [2252] = {.lex_state = 857}, + [2253] = {.lex_state = 857}, + [2254] = {.lex_state = 857}, + [2255] = {.lex_state = 857}, + [2256] = {.lex_state = 857}, + [2257] = {.lex_state = 857}, + [2258] = {.lex_state = 917}, + [2259] = {.lex_state = 857}, + [2260] = {.lex_state = 857}, + [2261] = {.lex_state = 777}, + [2262] = {.lex_state = 857}, + [2263] = {.lex_state = 814}, + [2264] = {.lex_state = 857}, + [2265] = {.lex_state = 857}, + [2266] = {.lex_state = 857}, + [2267] = {.lex_state = 857}, + [2268] = {.lex_state = 814}, + [2269] = {.lex_state = 870}, + [2270] = {.lex_state = 797}, + [2271] = {.lex_state = 857}, + [2272] = {.lex_state = 857}, + [2273] = {.lex_state = 857}, + [2274] = {.lex_state = 857}, + [2275] = {.lex_state = 814}, + [2276] = {.lex_state = 857}, + [2277] = {.lex_state = 857}, + [2278] = {.lex_state = 857}, + [2279] = {.lex_state = 857}, + [2280] = {.lex_state = 857}, + [2281] = {.lex_state = 857}, + [2282] = {.lex_state = 857}, + [2283] = {.lex_state = 857}, + [2284] = {.lex_state = 857}, + [2285] = {.lex_state = 857}, + [2286] = {.lex_state = 857}, + [2287] = {.lex_state = 857}, + [2288] = {.lex_state = 857}, + [2289] = {.lex_state = 857}, + [2290] = {.lex_state = 857}, + [2291] = {.lex_state = 857}, + [2292] = {.lex_state = 818}, + [2293] = {.lex_state = 857}, + [2294] = {.lex_state = 857}, + [2295] = {.lex_state = 857}, + [2296] = {.lex_state = 857}, + [2297] = {.lex_state = 246}, + [2298] = {.lex_state = 857}, + [2299] = {.lex_state = 857}, + [2300] = {.lex_state = 814}, + [2301] = {.lex_state = 857}, + [2302] = {.lex_state = 857}, + [2303] = {.lex_state = 857}, + [2304] = {.lex_state = 857}, + [2305] = {.lex_state = 814}, + [2306] = {.lex_state = 857}, + [2307] = {.lex_state = 857}, + [2308] = {.lex_state = 857}, + [2309] = {.lex_state = 814}, + [2310] = {.lex_state = 814}, + [2311] = {.lex_state = 814}, + [2312] = {.lex_state = 857}, + [2313] = {.lex_state = 857}, + [2314] = {.lex_state = 814}, + [2315] = {.lex_state = 814}, + [2316] = {.lex_state = 857}, + [2317] = {.lex_state = 857}, + [2318] = {.lex_state = 814}, + [2319] = {.lex_state = 814}, + [2320] = {.lex_state = 857}, + [2321] = {.lex_state = 857}, + [2322] = {.lex_state = 857}, + [2323] = {.lex_state = 814}, + [2324] = {.lex_state = 857}, + [2325] = {.lex_state = 857}, + [2326] = {.lex_state = 857}, + [2327] = {.lex_state = 857}, + [2328] = {.lex_state = 857}, + [2329] = {.lex_state = 857}, + [2330] = {.lex_state = 857}, + [2331] = {.lex_state = 857}, + [2332] = {.lex_state = 857}, + [2333] = {.lex_state = 857}, + [2334] = {.lex_state = 857}, + [2335] = {.lex_state = 857}, + [2336] = {.lex_state = 917}, + [2337] = {.lex_state = 857}, + [2338] = {.lex_state = 857}, + [2339] = {.lex_state = 857}, + [2340] = {.lex_state = 857}, + [2341] = {.lex_state = 857}, + [2342] = {.lex_state = 857}, + [2343] = {.lex_state = 857}, + [2344] = {.lex_state = 857}, + [2345] = {.lex_state = 857}, + [2346] = {.lex_state = 857}, + [2347] = {.lex_state = 857}, + [2348] = {.lex_state = 814}, + [2349] = {.lex_state = 857}, + [2350] = {.lex_state = 857}, + [2351] = {.lex_state = 857}, + [2352] = {.lex_state = 857}, + [2353] = {.lex_state = 857}, + [2354] = {.lex_state = 857}, + [2355] = {.lex_state = 56}, + [2356] = {.lex_state = 56}, + [2357] = {.lex_state = 857}, + [2358] = {.lex_state = 857}, + [2359] = {.lex_state = 857}, + [2360] = {.lex_state = 857}, + [2361] = {.lex_state = 857}, + [2362] = {.lex_state = 857}, + [2363] = {.lex_state = 857}, + [2364] = {.lex_state = 814}, + [2365] = {.lex_state = 857}, + [2366] = {.lex_state = 857}, + [2367] = {.lex_state = 857}, + [2368] = {.lex_state = 857}, + [2369] = {.lex_state = 857}, + [2370] = {.lex_state = 857}, + [2371] = {.lex_state = 857}, + [2372] = {.lex_state = 814}, + [2373] = {.lex_state = 814}, + [2374] = {.lex_state = 814}, + [2375] = {.lex_state = 818}, + [2376] = {.lex_state = 857}, + [2377] = {.lex_state = 857}, + [2378] = {.lex_state = 857}, + [2379] = {.lex_state = 814}, + [2380] = {.lex_state = 814}, + [2381] = {.lex_state = 857}, + [2382] = {.lex_state = 845}, + [2383] = {.lex_state = 264}, + [2384] = {.lex_state = 818}, + [2385] = {.lex_state = 48}, + [2386] = {.lex_state = 48}, + [2387] = {.lex_state = 857}, + [2388] = {.lex_state = 857}, + [2389] = {.lex_state = 857}, + [2390] = {.lex_state = 857}, + [2391] = {.lex_state = 818}, + [2392] = {.lex_state = 857}, + [2393] = {.lex_state = 857}, + [2394] = {.lex_state = 857}, + [2395] = {.lex_state = 264}, + [2396] = {.lex_state = 857}, + [2397] = {.lex_state = 814}, + [2398] = {.lex_state = 52}, + [2399] = {.lex_state = 52}, + [2400] = {.lex_state = 857}, + [2401] = {.lex_state = 857}, + [2402] = {.lex_state = 57}, + [2403] = {.lex_state = 57}, + [2404] = {.lex_state = 57}, + [2405] = {.lex_state = 57}, + [2406] = {.lex_state = 857}, + [2407] = {.lex_state = 247}, + [2408] = {.lex_state = 814}, + [2409] = {.lex_state = 814}, + [2410] = {.lex_state = 814}, + [2411] = {.lex_state = 814}, + [2412] = {.lex_state = 814}, + [2413] = {.lex_state = 857}, + [2414] = {.lex_state = 857}, + [2415] = {.lex_state = 857}, + [2416] = {.lex_state = 814}, + [2417] = {.lex_state = 870}, + [2418] = {.lex_state = 857}, + [2419] = {.lex_state = 857}, + [2420] = {.lex_state = 857}, + [2421] = {.lex_state = 264}, + [2422] = {.lex_state = 857}, + [2423] = {.lex_state = 857}, + [2424] = {.lex_state = 264}, + [2425] = {.lex_state = 857}, + [2426] = {.lex_state = 857}, + [2427] = {.lex_state = 839}, + [2428] = {.lex_state = 174}, + [2429] = {.lex_state = 857}, + [2430] = {.lex_state = 57}, + [2431] = {.lex_state = 818}, + [2432] = {.lex_state = 814}, + [2433] = {.lex_state = 818}, + [2434] = {.lex_state = 49}, + [2435] = {.lex_state = 58}, + [2436] = {.lex_state = 49}, + [2437] = {.lex_state = 818}, + [2438] = {.lex_state = 58}, + [2439] = {.lex_state = 818}, + [2440] = {.lex_state = 58}, + [2441] = {.lex_state = 818}, + [2442] = {.lex_state = 58}, + [2443] = {.lex_state = 49}, + [2444] = {.lex_state = 247}, + [2445] = {.lex_state = 227}, + [2446] = {.lex_state = 246}, + [2447] = {.lex_state = 818}, + [2448] = {.lex_state = 818}, + [2449] = {.lex_state = 247}, + [2450] = {.lex_state = 246}, + [2451] = {.lex_state = 818}, + [2452] = {.lex_state = 818}, + [2453] = {.lex_state = 845}, + [2454] = {.lex_state = 814}, + [2455] = {.lex_state = 818}, + [2456] = {.lex_state = 58}, + [2457] = {.lex_state = 818}, + [2458] = {.lex_state = 818}, + [2459] = {.lex_state = 818}, + [2460] = {.lex_state = 818}, + [2461] = {.lex_state = 818}, + [2462] = {.lex_state = 818}, + [2463] = {.lex_state = 818}, + [2464] = {.lex_state = 818}, + [2465] = {.lex_state = 818}, + [2466] = {.lex_state = 818}, + [2467] = {.lex_state = 227}, + [2468] = {.lex_state = 818}, + [2469] = {.lex_state = 818}, + [2470] = {.lex_state = 818}, + [2471] = {.lex_state = 818}, + [2472] = {.lex_state = 818}, + [2473] = {.lex_state = 814}, + [2474] = {.lex_state = 814}, + [2475] = {.lex_state = 818}, + [2476] = {.lex_state = 818}, + [2477] = {.lex_state = 172}, + [2478] = {.lex_state = 818}, + [2479] = {.lex_state = 818}, + [2480] = {.lex_state = 818}, + [2481] = {.lex_state = 818}, + [2482] = {.lex_state = 818}, + [2483] = {.lex_state = 818}, + [2484] = {.lex_state = 818}, + [2485] = {.lex_state = 818}, + [2486] = {.lex_state = 818}, + [2487] = {.lex_state = 58}, + [2488] = {.lex_state = 818}, + [2489] = {.lex_state = 818}, + [2490] = {.lex_state = 818}, + [2491] = {.lex_state = 818}, + [2492] = {.lex_state = 818}, + [2493] = {.lex_state = 818}, + [2494] = {.lex_state = 818}, + [2495] = {.lex_state = 960}, + [2496] = {.lex_state = 818}, + [2497] = {.lex_state = 818}, + [2498] = {.lex_state = 814}, + [2499] = {.lex_state = 818}, + [2500] = {.lex_state = 818}, + [2501] = {.lex_state = 818}, + [2502] = {.lex_state = 839}, + [2503] = {.lex_state = 818}, + [2504] = {.lex_state = 44}, + [2505] = {.lex_state = 818}, + [2506] = {.lex_state = 247}, + [2507] = {.lex_state = 247}, + [2508] = {.lex_state = 247}, + [2509] = {.lex_state = 247}, + [2510] = {.lex_state = 818}, + [2511] = {.lex_state = 44}, + [2512] = {.lex_state = 173}, + [2513] = {.lex_state = 818}, + [2514] = {.lex_state = 818}, + [2515] = {.lex_state = 818}, + [2516] = {.lex_state = 818}, + [2517] = {.lex_state = 818}, [2518] = {.lex_state = 49}, - [2519] = {.lex_state = 817}, - [2520] = {.lex_state = 817}, - [2521] = {.lex_state = 817}, - [2522] = {.lex_state = 49}, + [2519] = {.lex_state = 53}, + [2520] = {.lex_state = 818}, + [2521] = {.lex_state = 818}, + [2522] = {.lex_state = 818}, [2523] = {.lex_state = 53}, - [2524] = {.lex_state = 813}, - [2525] = {.lex_state = 817}, - [2526] = {.lex_state = 817}, - [2527] = {.lex_state = 817}, - [2528] = {.lex_state = 49}, - [2529] = {.lex_state = 247}, - [2530] = {.lex_state = 53}, - [2531] = {.lex_state = 53}, - [2532] = {.lex_state = 53}, - [2533] = {.lex_state = 44}, - [2534] = {.lex_state = 813}, - [2535] = {.lex_state = 817}, - [2536] = {.lex_state = 275}, - [2537] = {.lex_state = 817}, - [2538] = {.lex_state = 817}, - [2539] = {.lex_state = 817}, + [2524] = {.lex_state = 247}, + [2525] = {.lex_state = 49}, + [2526] = {.lex_state = 53}, + [2527] = {.lex_state = 53}, + [2528] = {.lex_state = 53}, + [2529] = {.lex_state = 818}, + [2530] = {.lex_state = 818}, + [2531] = {.lex_state = 247}, + [2532] = {.lex_state = 814}, + [2533] = {.lex_state = 814}, + [2534] = {.lex_state = 818}, + [2535] = {.lex_state = 818}, + [2536] = {.lex_state = 818}, + [2537] = {.lex_state = 45}, + [2538] = {.lex_state = 241}, + [2539] = {.lex_state = 818}, [2540] = {.lex_state = 45}, - [2541] = {.lex_state = 959}, - [2542] = {.lex_state = 817}, - [2543] = {.lex_state = 817}, - [2544] = {.lex_state = 817}, - [2545] = {.lex_state = 241}, - [2546] = {.lex_state = 817}, - [2547] = {.lex_state = 54}, - [2548] = {.lex_state = 817}, - [2549] = {.lex_state = 241}, - [2550] = {.lex_state = 817}, - [2551] = {.lex_state = 817}, - [2552] = {.lex_state = 817}, - [2553] = {.lex_state = 316}, - [2554] = {.lex_state = 817}, - [2555] = {.lex_state = 817}, - [2556] = {.lex_state = 817}, - [2557] = {.lex_state = 54}, - [2558] = {.lex_state = 817}, - [2559] = {.lex_state = 817}, - [2560] = {.lex_state = 817}, - [2561] = {.lex_state = 817}, - [2562] = {.lex_state = 817}, - [2563] = {.lex_state = 817}, - [2564] = {.lex_state = 817}, - [2565] = {.lex_state = 817}, - [2566] = {.lex_state = 817}, - [2567] = {.lex_state = 817}, - [2568] = {.lex_state = 817}, - [2569] = {.lex_state = 817}, - [2570] = {.lex_state = 817}, - [2571] = {.lex_state = 817}, - [2572] = {.lex_state = 59}, - [2573] = {.lex_state = 817}, - [2574] = {.lex_state = 817}, - [2575] = {.lex_state = 817}, - [2576] = {.lex_state = 241}, - [2577] = {.lex_state = 817}, - [2578] = {.lex_state = 241}, - [2579] = {.lex_state = 817}, - [2580] = {.lex_state = 241}, - [2581] = {.lex_state = 54}, - [2582] = {.lex_state = 241}, - [2583] = {.lex_state = 817}, - [2584] = {.lex_state = 10}, - [2585] = {.lex_state = 316}, - [2586] = {.lex_state = 817}, - [2587] = {.lex_state = 817}, - [2588] = {.lex_state = 171}, - [2589] = {.lex_state = 54}, - [2590] = {.lex_state = 50}, - [2591] = {.lex_state = 230}, - [2592] = {.lex_state = 817}, - [2593] = {.lex_state = 817}, - [2594] = {.lex_state = 50}, - [2595] = {.lex_state = 241}, - [2596] = {.lex_state = 959}, - [2597] = {.lex_state = 817}, - [2598] = {.lex_state = 817}, - [2599] = {.lex_state = 817}, - [2600] = {.lex_state = 241}, - [2601] = {.lex_state = 241}, - [2602] = {.lex_state = 45}, - [2603] = {.lex_state = 45}, - [2604] = {.lex_state = 817}, - [2605] = {.lex_state = 817}, - [2606] = {.lex_state = 817}, - [2607] = {.lex_state = 817}, + [2541] = {.lex_state = 818}, + [2542] = {.lex_state = 818}, + [2543] = {.lex_state = 45}, + [2544] = {.lex_state = 818}, + [2545] = {.lex_state = 818}, + [2546] = {.lex_state = 45}, + [2547] = {.lex_state = 45}, + [2548] = {.lex_state = 818}, + [2549] = {.lex_state = 818}, + [2550] = {.lex_state = 818}, + [2551] = {.lex_state = 818}, + [2552] = {.lex_state = 818}, + [2553] = {.lex_state = 818}, + [2554] = {.lex_state = 241}, + [2555] = {.lex_state = 818}, + [2556] = {.lex_state = 818}, + [2557] = {.lex_state = 818}, + [2558] = {.lex_state = 241}, + [2559] = {.lex_state = 241}, + [2560] = {.lex_state = 241}, + [2561] = {.lex_state = 241}, + [2562] = {.lex_state = 241}, + [2563] = {.lex_state = 960}, + [2564] = {.lex_state = 50}, + [2565] = {.lex_state = 818}, + [2566] = {.lex_state = 241}, + [2567] = {.lex_state = 818}, + [2568] = {.lex_state = 50}, + [2569] = {.lex_state = 818}, + [2570] = {.lex_state = 818}, + [2571] = {.lex_state = 50}, + [2572] = {.lex_state = 230}, + [2573] = {.lex_state = 50}, + [2574] = {.lex_state = 818}, + [2575] = {.lex_state = 241}, + [2576] = {.lex_state = 279}, + [2577] = {.lex_state = 818}, + [2578] = {.lex_state = 818}, + [2579] = {.lex_state = 818}, + [2580] = {.lex_state = 818}, + [2581] = {.lex_state = 818}, + [2582] = {.lex_state = 818}, + [2583] = {.lex_state = 818}, + [2584] = {.lex_state = 230}, + [2585] = {.lex_state = 818}, + [2586] = {.lex_state = 818}, + [2587] = {.lex_state = 50}, + [2588] = {.lex_state = 818}, + [2589] = {.lex_state = 171}, + [2590] = {.lex_state = 818}, + [2591] = {.lex_state = 818}, + [2592] = {.lex_state = 54}, + [2593] = {.lex_state = 230}, + [2594] = {.lex_state = 230}, + [2595] = {.lex_state = 248}, + [2596] = {.lex_state = 818}, + [2597] = {.lex_state = 818}, + [2598] = {.lex_state = 818}, + [2599] = {.lex_state = 818}, + [2600] = {.lex_state = 818}, + [2601] = {.lex_state = 818}, + [2602] = {.lex_state = 818}, + [2603] = {.lex_state = 818}, + [2604] = {.lex_state = 818}, + [2605] = {.lex_state = 818}, + [2606] = {.lex_state = 818}, + [2607] = {.lex_state = 818}, [2608] = {.lex_state = 54}, - [2609] = {.lex_state = 241}, - [2610] = {.lex_state = 230}, - [2611] = {.lex_state = 817}, - [2612] = {.lex_state = 241}, - [2613] = {.lex_state = 54}, - [2614] = {.lex_state = 817}, - [2615] = {.lex_state = 817}, - [2616] = {.lex_state = 50}, - [2617] = {.lex_state = 817}, - [2618] = {.lex_state = 45}, - [2619] = {.lex_state = 817}, - [2620] = {.lex_state = 817}, - [2621] = {.lex_state = 817}, - [2622] = {.lex_state = 817}, - [2623] = {.lex_state = 241}, - [2624] = {.lex_state = 817}, - [2625] = {.lex_state = 241}, - [2626] = {.lex_state = 817}, - [2627] = {.lex_state = 50}, - [2628] = {.lex_state = 817}, - [2629] = {.lex_state = 241}, - [2630] = {.lex_state = 817}, - [2631] = {.lex_state = 817}, - [2632] = {.lex_state = 59}, - [2633] = {.lex_state = 817}, - [2634] = {.lex_state = 230}, - [2635] = {.lex_state = 817}, - [2636] = {.lex_state = 241}, - [2637] = {.lex_state = 230}, - [2638] = {.lex_state = 316}, - [2639] = {.lex_state = 316}, - [2640] = {.lex_state = 817}, - [2641] = {.lex_state = 50}, - [2642] = {.lex_state = 45}, - [2643] = {.lex_state = 817}, - [2644] = {.lex_state = 817}, + [2609] = {.lex_state = 59}, + [2610] = {.lex_state = 54}, + [2611] = {.lex_state = 54}, + [2612] = {.lex_state = 54}, + [2613] = {.lex_state = 818}, + [2614] = {.lex_state = 818}, + [2615] = {.lex_state = 818}, + [2616] = {.lex_state = 960}, + [2617] = {.lex_state = 818}, + [2618] = {.lex_state = 818}, + [2619] = {.lex_state = 818}, + [2620] = {.lex_state = 818}, + [2621] = {.lex_state = 818}, + [2622] = {.lex_state = 818}, + [2623] = {.lex_state = 818}, + [2624] = {.lex_state = 818}, + [2625] = {.lex_state = 818}, + [2626] = {.lex_state = 10}, + [2627] = {.lex_state = 241}, + [2628] = {.lex_state = 818}, + [2629] = {.lex_state = 818}, + [2630] = {.lex_state = 241}, + [2631] = {.lex_state = 818}, + [2632] = {.lex_state = 241}, + [2633] = {.lex_state = 241}, + [2634] = {.lex_state = 317}, + [2635] = {.lex_state = 276}, + [2636] = {.lex_state = 317}, + [2637] = {.lex_state = 317}, + [2638] = {.lex_state = 818}, + [2639] = {.lex_state = 59}, + [2640] = {.lex_state = 54}, + [2641] = {.lex_state = 241}, + [2642] = {.lex_state = 241}, + [2643] = {.lex_state = 818}, + [2644] = {.lex_state = 317}, [2645] = {.lex_state = 230}, - [2646] = {.lex_state = 278}, - [2647] = {.lex_state = 248}, - [2648] = {.lex_state = 231}, - [2649] = {.lex_state = 231}, - [2650] = {.lex_state = 229}, - [2651] = {.lex_state = 315}, - [2652] = {.lex_state = 236}, - [2653] = {.lex_state = 229}, - [2654] = {.lex_state = 229}, + [2646] = {.lex_state = 818}, + [2647] = {.lex_state = 818}, + [2648] = {.lex_state = 229}, + [2649] = {.lex_state = 240}, + [2650] = {.lex_state = 236}, + [2651] = {.lex_state = 46}, + [2652] = {.lex_state = 231}, + [2653] = {.lex_state = 231}, + [2654] = {.lex_state = 270}, [2655] = {.lex_state = 231}, - [2656] = {.lex_state = 231}, - [2657] = {.lex_state = 240}, - [2658] = {.lex_state = 231}, - [2659] = {.lex_state = 236}, - [2660] = {.lex_state = 240}, - [2661] = {.lex_state = 236}, - [2662] = {.lex_state = 240}, - [2663] = {.lex_state = 315}, - [2664] = {.lex_state = 269}, - [2665] = {.lex_state = 229}, - [2666] = {.lex_state = 229}, - [2667] = {.lex_state = 9}, - [2668] = {.lex_state = 231}, - [2669] = {.lex_state = 236}, + [2656] = {.lex_state = 46}, + [2657] = {.lex_state = 236}, + [2658] = {.lex_state = 55}, + [2659] = {.lex_state = 229}, + [2660] = {.lex_state = 55}, + [2661] = {.lex_state = 342}, + [2662] = {.lex_state = 342}, + [2663] = {.lex_state = 8}, + [2664] = {.lex_state = 231}, + [2665] = {.lex_state = 236}, + [2666] = {.lex_state = 231}, + [2667] = {.lex_state = 273}, + [2668] = {.lex_state = 236}, + [2669] = {.lex_state = 316}, [2670] = {.lex_state = 236}, - [2671] = {.lex_state = 236}, + [2671] = {.lex_state = 46}, [2672] = {.lex_state = 231}, - [2673] = {.lex_state = 341}, - [2674] = {.lex_state = 277}, - [2675] = {.lex_state = 240}, - [2676] = {.lex_state = 236}, - [2677] = {.lex_state = 242}, + [2673] = {.lex_state = 46}, + [2674] = {.lex_state = 46}, + [2675] = {.lex_state = 342}, + [2676] = {.lex_state = 231}, + [2677] = {.lex_state = 342}, [2678] = {.lex_state = 231}, - [2679] = {.lex_state = 46}, - [2680] = {.lex_state = 236}, - [2681] = {.lex_state = 46}, - [2682] = {.lex_state = 236}, - [2683] = {.lex_state = 231}, - [2684] = {.lex_state = 315}, - [2685] = {.lex_state = 315}, - [2686] = {.lex_state = 46}, - [2687] = {.lex_state = 341}, - [2688] = {.lex_state = 341}, - [2689] = {.lex_state = 46}, - [2690] = {.lex_state = 231}, - [2691] = {.lex_state = 342}, - [2692] = {.lex_state = 231}, - [2693] = {.lex_state = 236}, - [2694] = {.lex_state = 8}, - [2695] = {.lex_state = 341}, - [2696] = {.lex_state = 46}, - [2697] = {.lex_state = 341}, - [2698] = {.lex_state = 342}, - [2699] = {.lex_state = 236}, + [2679] = {.lex_state = 236}, + [2680] = {.lex_state = 271}, + [2681] = {.lex_state = 278}, + [2682] = {.lex_state = 240}, + [2683] = {.lex_state = 236}, + [2684] = {.lex_state = 231}, + [2685] = {.lex_state = 231}, + [2686] = {.lex_state = 231}, + [2687] = {.lex_state = 236}, + [2688] = {.lex_state = 9}, + [2689] = {.lex_state = 240}, + [2690] = {.lex_state = 273}, + [2691] = {.lex_state = 240}, + [2692] = {.lex_state = 270}, + [2693] = {.lex_state = 231}, + [2694] = {.lex_state = 236}, + [2695] = {.lex_state = 231}, + [2696] = {.lex_state = 242}, + [2697] = {.lex_state = 273}, + [2698] = {.lex_state = 242}, + [2699] = {.lex_state = 242}, [2700] = {.lex_state = 236}, - [2701] = {.lex_state = 55}, - [2702] = {.lex_state = 341}, - [2703] = {.lex_state = 270}, - [2704] = {.lex_state = 341}, - [2705] = {.lex_state = 236}, + [2701] = {.lex_state = 229}, + [2702] = {.lex_state = 51}, + [2703] = {.lex_state = 231}, + [2704] = {.lex_state = 231}, + [2705] = {.lex_state = 343}, [2706] = {.lex_state = 236}, - [2707] = {.lex_state = 272}, - [2708] = {.lex_state = 55}, - [2709] = {.lex_state = 231}, - [2710] = {.lex_state = 272}, - [2711] = {.lex_state = 231}, - [2712] = {.lex_state = 51}, - [2713] = {.lex_state = 272}, - [2714] = {.lex_state = 242}, - [2715] = {.lex_state = 242}, - [2716] = {.lex_state = 341}, - [2717] = {.lex_state = 269}, - [2718] = {.lex_state = 231}, - [2719] = {.lex_state = 231}, - [2720] = {.lex_state = 341}, - [2721] = {.lex_state = 231}, - [2722] = {.lex_state = 46}, + [2707] = {.lex_state = 343}, + [2708] = {.lex_state = 342}, + [2709] = {.lex_state = 236}, + [2710] = {.lex_state = 231}, + [2711] = {.lex_state = 342}, + [2712] = {.lex_state = 229}, + [2713] = {.lex_state = 342}, + [2714] = {.lex_state = 46}, + [2715] = {.lex_state = 316}, + [2716] = {.lex_state = 316}, + [2717] = {.lex_state = 236}, + [2718] = {.lex_state = 342}, + [2719] = {.lex_state = 342}, + [2720] = {.lex_state = 229}, + [2721] = {.lex_state = 316}, + [2722] = {.lex_state = 236}, [2723] = {.lex_state = 236}, - [2724] = {.lex_state = 340}, - [2725] = {.lex_state = 316}, - [2726] = {.lex_state = 272}, - [2727] = {.lex_state = 241}, - [2728] = {.lex_state = 272}, - [2729] = {.lex_state = 272}, - [2730] = {.lex_state = 272}, - [2731] = {.lex_state = 124}, - [2732] = {.lex_state = 272}, - [2733] = {.lex_state = 235}, - [2734] = {.lex_state = 272}, - [2735] = {.lex_state = 272}, - [2736] = {.lex_state = 272}, - [2737] = {.lex_state = 124}, - [2738] = {.lex_state = 124}, - [2739] = {.lex_state = 272}, - [2740] = {.lex_state = 272}, - [2741] = {.lex_state = 272}, - [2742] = {.lex_state = 316}, - [2743] = {.lex_state = 269}, - [2744] = {.lex_state = 47}, - [2745] = {.lex_state = 269}, - [2746] = {.lex_state = 241}, - [2747] = {.lex_state = 244}, - [2748] = {.lex_state = 340}, - [2749] = {.lex_state = 272}, - [2750] = {.lex_state = 272}, - [2751] = {.lex_state = 272}, - [2752] = {.lex_state = 272}, - [2753] = {.lex_state = 238}, - [2754] = {.lex_state = 272}, - [2755] = {.lex_state = 124}, - [2756] = {.lex_state = 339}, - [2757] = {.lex_state = 339}, - [2758] = {.lex_state = 339}, - [2759] = {.lex_state = 272}, - [2760] = {.lex_state = 272}, + [2724] = {.lex_state = 273}, + [2725] = {.lex_state = 272}, + [2726] = {.lex_state = 124}, + [2727] = {.lex_state = 273}, + [2728] = {.lex_state = 273}, + [2729] = {.lex_state = 273}, + [2730] = {.lex_state = 235}, + [2731] = {.lex_state = 273}, + [2732] = {.lex_state = 244}, + [2733] = {.lex_state = 273}, + [2734] = {.lex_state = 235}, + [2735] = {.lex_state = 273}, + [2736] = {.lex_state = 235}, + [2737] = {.lex_state = 273}, + [2738] = {.lex_state = 273}, + [2739] = {.lex_state = 228}, + [2740] = {.lex_state = 257}, + [2741] = {.lex_state = 273}, + [2742] = {.lex_state = 273}, + [2743] = {.lex_state = 273}, + [2744] = {.lex_state = 273}, + [2745] = {.lex_state = 273}, + [2746] = {.lex_state = 246}, + [2747] = {.lex_state = 124}, + [2748] = {.lex_state = 273}, + [2749] = {.lex_state = 273}, + [2750] = {.lex_state = 273}, + [2751] = {.lex_state = 273}, + [2752] = {.lex_state = 273}, + [2753] = {.lex_state = 273}, + [2754] = {.lex_state = 273}, + [2755] = {.lex_state = 273}, + [2756] = {.lex_state = 273}, + [2757] = {.lex_state = 273}, + [2758] = {.lex_state = 273}, + [2759] = {.lex_state = 317}, + [2760] = {.lex_state = 273}, [2761] = {.lex_state = 272}, - [2762] = {.lex_state = 272}, - [2763] = {.lex_state = 246}, + [2762] = {.lex_state = 273}, + [2763] = {.lex_state = 273}, [2764] = {.lex_state = 124}, - [2765] = {.lex_state = 272}, - [2766] = {.lex_state = 272}, - [2767] = {.lex_state = 272}, - [2768] = {.lex_state = 238}, - [2769] = {.lex_state = 47}, - [2770] = {.lex_state = 272}, - [2771] = {.lex_state = 272}, - [2772] = {.lex_state = 124}, - [2773] = {.lex_state = 272}, - [2774] = {.lex_state = 272}, - [2775] = {.lex_state = 339}, - [2776] = {.lex_state = 233}, - [2777] = {.lex_state = 340}, - [2778] = {.lex_state = 233}, - [2779] = {.lex_state = 272}, - [2780] = {.lex_state = 272}, - [2781] = {.lex_state = 272}, - [2782] = {.lex_state = 272}, - [2783] = {.lex_state = 124}, - [2784] = {.lex_state = 272}, - [2785] = {.lex_state = 272}, - [2786] = {.lex_state = 272}, - [2787] = {.lex_state = 272}, - [2788] = {.lex_state = 272}, - [2789] = {.lex_state = 272}, - [2790] = {.lex_state = 272}, - [2791] = {.lex_state = 272}, - [2792] = {.lex_state = 272}, - [2793] = {.lex_state = 272}, - [2794] = {.lex_state = 272}, - [2795] = {.lex_state = 272}, - [2796] = {.lex_state = 345}, - [2797] = {.lex_state = 340}, - [2798] = {.lex_state = 345}, - [2799] = {.lex_state = 233}, - [2800] = {.lex_state = 272}, - [2801] = {.lex_state = 272}, - [2802] = {.lex_state = 272}, - [2803] = {.lex_state = 272}, + [2765] = {.lex_state = 273}, + [2766] = {.lex_state = 273}, + [2767] = {.lex_state = 273}, + [2768] = {.lex_state = 273}, + [2769] = {.lex_state = 273}, + [2770] = {.lex_state = 273}, + [2771] = {.lex_state = 273}, + [2772] = {.lex_state = 273}, + [2773] = {.lex_state = 273}, + [2774] = {.lex_state = 233}, + [2775] = {.lex_state = 273}, + [2776] = {.lex_state = 273}, + [2777] = {.lex_state = 273}, + [2778] = {.lex_state = 273}, + [2779] = {.lex_state = 273}, + [2780] = {.lex_state = 273}, + [2781] = {.lex_state = 273}, + [2782] = {.lex_state = 124}, + [2783] = {.lex_state = 273}, + [2784] = {.lex_state = 124}, + [2785] = {.lex_state = 273}, + [2786] = {.lex_state = 235}, + [2787] = {.lex_state = 273}, + [2788] = {.lex_state = 273}, + [2789] = {.lex_state = 273}, + [2790] = {.lex_state = 273}, + [2791] = {.lex_state = 273}, + [2792] = {.lex_state = 273}, + [2793] = {.lex_state = 273}, + [2794] = {.lex_state = 273}, + [2795] = {.lex_state = 273}, + [2796] = {.lex_state = 272}, + [2797] = {.lex_state = 273}, + [2798] = {.lex_state = 273}, + [2799] = {.lex_state = 273}, + [2800] = {.lex_state = 273}, + [2801] = {.lex_state = 124}, + [2802] = {.lex_state = 273}, + [2803] = {.lex_state = 241}, [2804] = {.lex_state = 124}, - [2805] = {.lex_state = 316}, - [2806] = {.lex_state = 241}, - [2807] = {.lex_state = 272}, - [2808] = {.lex_state = 241}, - [2809] = {.lex_state = 272}, - [2810] = {.lex_state = 241}, - [2811] = {.lex_state = 7}, - [2812] = {.lex_state = 194}, - [2813] = {.lex_state = 272}, - [2814] = {.lex_state = 272}, - [2815] = {.lex_state = 235}, - [2816] = {.lex_state = 235}, - [2817] = {.lex_state = 235}, - [2818] = {.lex_state = 228}, - [2819] = {.lex_state = 272}, - [2820] = {.lex_state = 228}, - [2821] = {.lex_state = 272}, - [2822] = {.lex_state = 272}, - [2823] = {.lex_state = 272}, - [2824] = {.lex_state = 272}, - [2825] = {.lex_state = 272}, - [2826] = {.lex_state = 272}, - [2827] = {.lex_state = 272}, - [2828] = {.lex_state = 272}, - [2829] = {.lex_state = 272}, - [2830] = {.lex_state = 272}, - [2831] = {.lex_state = 272}, - [2832] = {.lex_state = 272}, - [2833] = {.lex_state = 272}, - [2834] = {.lex_state = 272}, - [2835] = {.lex_state = 272}, - [2836] = {.lex_state = 272}, - [2837] = {.lex_state = 124}, - [2838] = {.lex_state = 272}, - [2839] = {.lex_state = 272}, - [2840] = {.lex_state = 316}, - [2841] = {.lex_state = 272}, - [2842] = {.lex_state = 272}, - [2843] = {.lex_state = 272}, - [2844] = {.lex_state = 124}, - [2845] = {.lex_state = 340}, - [2846] = {.lex_state = 349}, - [2847] = {.lex_state = 241}, - [2848] = {.lex_state = 316}, - [2849] = {.lex_state = 340}, - [2850] = {.lex_state = 349}, - [2851] = {.lex_state = 340}, - [2852] = {.lex_state = 271}, - [2853] = {.lex_state = 272}, - [2854] = {.lex_state = 316}, - [2855] = {.lex_state = 257}, - [2856] = {.lex_state = 316}, - [2857] = {.lex_state = 272}, - [2858] = {.lex_state = 272}, - [2859] = {.lex_state = 272}, - [2860] = {.lex_state = 272}, - [2861] = {.lex_state = 272}, - [2862] = {.lex_state = 272}, - [2863] = {.lex_state = 272}, - [2864] = {.lex_state = 272}, - [2865] = {.lex_state = 272}, - [2866] = {.lex_state = 272}, - [2867] = {.lex_state = 272}, - [2868] = {.lex_state = 272}, - [2869] = {.lex_state = 272}, - [2870] = {.lex_state = 272}, - [2871] = {.lex_state = 272}, - [2872] = {.lex_state = 272}, - [2873] = {.lex_state = 241}, - [2874] = {.lex_state = 272}, - [2875] = {.lex_state = 272}, - [2876] = {.lex_state = 272}, - [2877] = {.lex_state = 272}, - [2878] = {.lex_state = 272}, - [2879] = {.lex_state = 272}, - [2880] = {.lex_state = 272}, - [2881] = {.lex_state = 272}, - [2882] = {.lex_state = 272}, - [2883] = {.lex_state = 272}, - [2884] = {.lex_state = 272}, - [2885] = {.lex_state = 272}, - [2886] = {.lex_state = 272}, - [2887] = {.lex_state = 272}, - [2888] = {.lex_state = 124}, - [2889] = {.lex_state = 272}, - [2890] = {.lex_state = 272}, - [2891] = {.lex_state = 271}, - [2892] = {.lex_state = 272}, - [2893] = {.lex_state = 272}, - [2894] = {.lex_state = 272}, - [2895] = {.lex_state = 272}, - [2896] = {.lex_state = 272}, - [2897] = {.lex_state = 272}, - [2898] = {.lex_state = 272}, - [2899] = {.lex_state = 272}, - [2900] = {.lex_state = 124}, - [2901] = {.lex_state = 272}, - [2902] = {.lex_state = 316}, - [2903] = {.lex_state = 124}, - [2904] = {.lex_state = 272}, - [2905] = {.lex_state = 272}, - [2906] = {.lex_state = 238}, - [2907] = {.lex_state = 272}, - [2908] = {.lex_state = 228}, - [2909] = {.lex_state = 272}, - [2910] = {.lex_state = 272}, - [2911] = {.lex_state = 272}, - [2912] = {.lex_state = 272}, - [2913] = {.lex_state = 272}, - [2914] = {.lex_state = 271}, - [2915] = {.lex_state = 228}, - [2916] = {.lex_state = 272}, - [2917] = {.lex_state = 272}, - [2918] = {.lex_state = 272}, - [2919] = {.lex_state = 272}, - [2920] = {.lex_state = 272}, - [2921] = {.lex_state = 272}, - [2922] = {.lex_state = 271}, - [2923] = {.lex_state = 272}, - [2924] = {.lex_state = 272}, - [2925] = {.lex_state = 272}, - [2926] = {.lex_state = 271}, - [2927] = {.lex_state = 272}, - [2928] = {.lex_state = 272}, - [2929] = {.lex_state = 272}, - [2930] = {.lex_state = 272}, - [2931] = {.lex_state = 246}, - [2932] = {.lex_state = 272}, - [2933] = {.lex_state = 272}, - [2934] = {.lex_state = 272}, - [2935] = {.lex_state = 124}, - [2936] = {.lex_state = 272}, - [2937] = {.lex_state = 272}, - [2938] = {.lex_state = 272}, - [2939] = {.lex_state = 272}, - [2940] = {.lex_state = 272}, - [2941] = {.lex_state = 272}, - [2942] = {.lex_state = 272}, - [2943] = {.lex_state = 124}, - [2944] = {.lex_state = 272}, - [2945] = {.lex_state = 272}, - [2946] = {.lex_state = 272}, - [2947] = {.lex_state = 257}, - [2948] = {.lex_state = 272}, - [2949] = {.lex_state = 272}, - [2950] = {.lex_state = 272}, - [2951] = {.lex_state = 272}, - [2952] = {.lex_state = 272}, - [2953] = {.lex_state = 272}, - [2954] = {.lex_state = 272}, - [2955] = {.lex_state = 243}, - [2956] = {.lex_state = 341}, - [2957] = {.lex_state = 246}, - [2958] = {.lex_state = 348}, + [2805] = {.lex_state = 246}, + [2806] = {.lex_state = 233}, + [2807] = {.lex_state = 273}, + [2808] = {.lex_state = 273}, + [2809] = {.lex_state = 273}, + [2810] = {.lex_state = 273}, + [2811] = {.lex_state = 273}, + [2812] = {.lex_state = 273}, + [2813] = {.lex_state = 194}, + [2814] = {.lex_state = 273}, + [2815] = {.lex_state = 270}, + [2816] = {.lex_state = 273}, + [2817] = {.lex_state = 272}, + [2818] = {.lex_state = 270}, + [2819] = {.lex_state = 273}, + [2820] = {.lex_state = 233}, + [2821] = {.lex_state = 273}, + [2822] = {.lex_state = 273}, + [2823] = {.lex_state = 273}, + [2824] = {.lex_state = 317}, + [2825] = {.lex_state = 273}, + [2826] = {.lex_state = 273}, + [2827] = {.lex_state = 273}, + [2828] = {.lex_state = 273}, + [2829] = {.lex_state = 273}, + [2830] = {.lex_state = 273}, + [2831] = {.lex_state = 273}, + [2832] = {.lex_state = 273}, + [2833] = {.lex_state = 228}, + [2834] = {.lex_state = 273}, + [2835] = {.lex_state = 273}, + [2836] = {.lex_state = 273}, + [2837] = {.lex_state = 273}, + [2838] = {.lex_state = 273}, + [2839] = {.lex_state = 241}, + [2840] = {.lex_state = 273}, + [2841] = {.lex_state = 273}, + [2842] = {.lex_state = 257}, + [2843] = {.lex_state = 273}, + [2844] = {.lex_state = 228}, + [2845] = {.lex_state = 273}, + [2846] = {.lex_state = 273}, + [2847] = {.lex_state = 273}, + [2848] = {.lex_state = 273}, + [2849] = {.lex_state = 124}, + [2850] = {.lex_state = 47}, + [2851] = {.lex_state = 273}, + [2852] = {.lex_state = 273}, + [2853] = {.lex_state = 273}, + [2854] = {.lex_state = 273}, + [2855] = {.lex_state = 273}, + [2856] = {.lex_state = 273}, + [2857] = {.lex_state = 273}, + [2858] = {.lex_state = 273}, + [2859] = {.lex_state = 273}, + [2860] = {.lex_state = 273}, + [2861] = {.lex_state = 273}, + [2862] = {.lex_state = 273}, + [2863] = {.lex_state = 273}, + [2864] = {.lex_state = 273}, + [2865] = {.lex_state = 273}, + [2866] = {.lex_state = 273}, + [2867] = {.lex_state = 273}, + [2868] = {.lex_state = 273}, + [2869] = {.lex_state = 273}, + [2870] = {.lex_state = 273}, + [2871] = {.lex_state = 273}, + [2872] = {.lex_state = 273}, + [2873] = {.lex_state = 124}, + [2874] = {.lex_state = 273}, + [2875] = {.lex_state = 241}, + [2876] = {.lex_state = 273}, + [2877] = {.lex_state = 241}, + [2878] = {.lex_state = 124}, + [2879] = {.lex_state = 238}, + [2880] = {.lex_state = 124}, + [2881] = {.lex_state = 340}, + [2882] = {.lex_state = 273}, + [2883] = {.lex_state = 238}, + [2884] = {.lex_state = 273}, + [2885] = {.lex_state = 273}, + [2886] = {.lex_state = 273}, + [2887] = {.lex_state = 241}, + [2888] = {.lex_state = 273}, + [2889] = {.lex_state = 7}, + [2890] = {.lex_state = 340}, + [2891] = {.lex_state = 273}, + [2892] = {.lex_state = 124}, + [2893] = {.lex_state = 341}, + [2894] = {.lex_state = 273}, + [2895] = {.lex_state = 273}, + [2896] = {.lex_state = 273}, + [2897] = {.lex_state = 273}, + [2898] = {.lex_state = 317}, + [2899] = {.lex_state = 350}, + [2900] = {.lex_state = 273}, + [2901] = {.lex_state = 273}, + [2902] = {.lex_state = 272}, + [2903] = {.lex_state = 273}, + [2904] = {.lex_state = 273}, + [2905] = {.lex_state = 124}, + [2906] = {.lex_state = 273}, + [2907] = {.lex_state = 273}, + [2908] = {.lex_state = 273}, + [2909] = {.lex_state = 341}, + [2910] = {.lex_state = 273}, + [2911] = {.lex_state = 273}, + [2912] = {.lex_state = 273}, + [2913] = {.lex_state = 350}, + [2914] = {.lex_state = 273}, + [2915] = {.lex_state = 341}, + [2916] = {.lex_state = 341}, + [2917] = {.lex_state = 317}, + [2918] = {.lex_state = 273}, + [2919] = {.lex_state = 273}, + [2920] = {.lex_state = 273}, + [2921] = {.lex_state = 273}, + [2922] = {.lex_state = 273}, + [2923] = {.lex_state = 341}, + [2924] = {.lex_state = 273}, + [2925] = {.lex_state = 273}, + [2926] = {.lex_state = 273}, + [2927] = {.lex_state = 238}, + [2928] = {.lex_state = 47}, + [2929] = {.lex_state = 273}, + [2930] = {.lex_state = 273}, + [2931] = {.lex_state = 124}, + [2932] = {.lex_state = 273}, + [2933] = {.lex_state = 241}, + [2934] = {.lex_state = 273}, + [2935] = {.lex_state = 341}, + [2936] = {.lex_state = 317}, + [2937] = {.lex_state = 273}, + [2938] = {.lex_state = 273}, + [2939] = {.lex_state = 241}, + [2940] = {.lex_state = 346}, + [2941] = {.lex_state = 341}, + [2942] = {.lex_state = 273}, + [2943] = {.lex_state = 317}, + [2944] = {.lex_state = 228}, + [2945] = {.lex_state = 317}, + [2946] = {.lex_state = 124}, + [2947] = {.lex_state = 346}, + [2948] = {.lex_state = 273}, + [2949] = {.lex_state = 317}, + [2950] = {.lex_state = 273}, + [2951] = {.lex_state = 340}, + [2952] = {.lex_state = 340}, + [2953] = {.lex_state = 273}, + [2954] = {.lex_state = 273}, + [2955] = {.lex_state = 319}, + [2956] = {.lex_state = 243}, + [2957] = {.lex_state = 243}, + [2958] = {.lex_state = 126}, [2959] = {.lex_state = 243}, - [2960] = {.lex_state = 341}, - [2961] = {.lex_state = 341}, - [2962] = {.lex_state = 341}, - [2963] = {.lex_state = 341}, - [2964] = {.lex_state = 348}, - [2965] = {.lex_state = 341}, - [2966] = {.lex_state = 210}, - [2967] = {.lex_state = 348}, - [2968] = {.lex_state = 264}, - [2969] = {.lex_state = 264}, + [2960] = {.lex_state = 243}, + [2961] = {.lex_state = 243}, + [2962] = {.lex_state = 243}, + [2963] = {.lex_state = 243}, + [2964] = {.lex_state = 243}, + [2965] = {.lex_state = 243}, + [2966] = {.lex_state = 342}, + [2967] = {.lex_state = 210}, + [2968] = {.lex_state = 243}, + [2969] = {.lex_state = 344}, [2970] = {.lex_state = 126}, - [2971] = {.lex_state = 236}, - [2972] = {.lex_state = 272}, - [2973] = {.lex_state = 236}, - [2974] = {.lex_state = 264}, - [2975] = {.lex_state = 243}, - [2976] = {.lex_state = 236}, - [2977] = {.lex_state = 193}, - [2978] = {.lex_state = 264}, - [2979] = {.lex_state = 231}, - [2980] = {.lex_state = 243}, - [2981] = {.lex_state = 243}, - [2982] = {.lex_state = 343}, + [2971] = {.lex_state = 243}, + [2972] = {.lex_state = 243}, + [2973] = {.lex_state = 319}, + [2974] = {.lex_state = 265}, + [2975] = {.lex_state = 342}, + [2976] = {.lex_state = 342}, + [2977] = {.lex_state = 265}, + [2978] = {.lex_state = 193}, + [2979] = {.lex_state = 342}, + [2980] = {.lex_state = 236}, + [2981] = {.lex_state = 342}, + [2982] = {.lex_state = 243}, [2983] = {.lex_state = 243}, [2984] = {.lex_state = 243}, [2985] = {.lex_state = 243}, - [2986] = {.lex_state = 243}, - [2987] = {.lex_state = 243}, + [2986] = {.lex_state = 342}, + [2987] = {.lex_state = 342}, [2988] = {.lex_state = 243}, - [2989] = {.lex_state = 264}, - [2990] = {.lex_state = 272}, - [2991] = {.lex_state = 243}, - [2992] = {.lex_state = 243}, + [2989] = {.lex_state = 243}, + [2990] = {.lex_state = 342}, + [2991] = {.lex_state = 344}, + [2992] = {.lex_state = 231}, [2993] = {.lex_state = 243}, [2994] = {.lex_state = 243}, [2995] = {.lex_state = 243}, - [2996] = {.lex_state = 126}, - [2997] = {.lex_state = 243}, - [2998] = {.lex_state = 343}, - [2999] = {.lex_state = 243}, - [3000] = {.lex_state = 243}, - [3001] = {.lex_state = 269}, - [3002] = {.lex_state = 343}, - [3003] = {.lex_state = 264}, - [3004] = {.lex_state = 318}, - [3005] = {.lex_state = 231}, + [2996] = {.lex_state = 243}, + [2997] = {.lex_state = 265}, + [2998] = {.lex_state = 243}, + [2999] = {.lex_state = 273}, + [3000] = {.lex_state = 345}, + [3001] = {.lex_state = 349}, + [3002] = {.lex_state = 231}, + [3003] = {.lex_state = 243}, + [3004] = {.lex_state = 273}, + [3005] = {.lex_state = 243}, [3006] = {.lex_state = 243}, - [3007] = {.lex_state = 341}, - [3008] = {.lex_state = 243}, - [3009] = {.lex_state = 341}, - [3010] = {.lex_state = 341}, - [3011] = {.lex_state = 126}, - [3012] = {.lex_state = 231}, - [3013] = {.lex_state = 243}, - [3014] = {.lex_state = 192}, + [3007] = {.lex_state = 243}, + [3008] = {.lex_state = 265}, + [3009] = {.lex_state = 243}, + [3010] = {.lex_state = 270}, + [3011] = {.lex_state = 243}, + [3012] = {.lex_state = 349}, + [3013] = {.lex_state = 231}, + [3014] = {.lex_state = 231}, [3015] = {.lex_state = 243}, [3016] = {.lex_state = 243}, - [3017] = {.lex_state = 348}, + [3017] = {.lex_state = 124}, [3018] = {.lex_state = 243}, - [3019] = {.lex_state = 341}, - [3020] = {.lex_state = 341}, - [3021] = {.lex_state = 245}, + [3019] = {.lex_state = 243}, + [3020] = {.lex_state = 231}, + [3021] = {.lex_state = 243}, [3022] = {.lex_state = 243}, - [3023] = {.lex_state = 243}, - [3024] = {.lex_state = 243}, - [3025] = {.lex_state = 348}, - [3026] = {.lex_state = 236}, - [3027] = {.lex_state = 344}, + [3023] = {.lex_state = 246}, + [3024] = {.lex_state = 231}, + [3025] = {.lex_state = 243}, + [3026] = {.lex_state = 243}, + [3027] = {.lex_state = 243}, [3028] = {.lex_state = 243}, [3029] = {.lex_state = 243}, - [3030] = {.lex_state = 124}, - [3031] = {.lex_state = 243}, - [3032] = {.lex_state = 231}, - [3033] = {.lex_state = 348}, - [3034] = {.lex_state = 236}, - [3035] = {.lex_state = 243}, - [3036] = {.lex_state = 352}, - [3037] = {.lex_state = 243}, - [3038] = {.lex_state = 236}, - [3039] = {.lex_state = 348}, - [3040] = {.lex_state = 352}, - [3041] = {.lex_state = 243}, - [3042] = {.lex_state = 243}, + [3030] = {.lex_state = 243}, + [3031] = {.lex_state = 270}, + [3032] = {.lex_state = 243}, + [3033] = {.lex_state = 231}, + [3034] = {.lex_state = 342}, + [3035] = {.lex_state = 236}, + [3036] = {.lex_state = 243}, + [3037] = {.lex_state = 236}, + [3038] = {.lex_state = 243}, + [3039] = {.lex_state = 243}, + [3040] = {.lex_state = 349}, + [3041] = {.lex_state = 342}, + [3042] = {.lex_state = 265}, [3043] = {.lex_state = 124}, - [3044] = {.lex_state = 243}, - [3045] = {.lex_state = 231}, - [3046] = {.lex_state = 243}, - [3047] = {.lex_state = 341}, - [3048] = {.lex_state = 231}, - [3049] = {.lex_state = 236}, - [3050] = {.lex_state = 243}, - [3051] = {.lex_state = 243}, - [3052] = {.lex_state = 243}, - [3053] = {.lex_state = 243}, + [3044] = {.lex_state = 344}, + [3045] = {.lex_state = 243}, + [3046] = {.lex_state = 236}, + [3047] = {.lex_state = 243}, + [3048] = {.lex_state = 243}, + [3049] = {.lex_state = 342}, + [3050] = {.lex_state = 246}, + [3051] = {.lex_state = 126}, + [3052] = {.lex_state = 353}, + [3053] = {.lex_state = 273}, [3054] = {.lex_state = 243}, [3055] = {.lex_state = 243}, [3056] = {.lex_state = 243}, - [3057] = {.lex_state = 246}, + [3057] = {.lex_state = 349}, [3058] = {.lex_state = 243}, - [3059] = {.lex_state = 243}, - [3060] = {.lex_state = 124}, + [3059] = {.lex_state = 265}, + [3060] = {.lex_state = 243}, [3061] = {.lex_state = 243}, - [3062] = {.lex_state = 243}, - [3063] = {.lex_state = 341}, - [3064] = {.lex_state = 318}, - [3065] = {.lex_state = 243}, + [3062] = {.lex_state = 342}, + [3063] = {.lex_state = 243}, + [3064] = {.lex_state = 243}, + [3065] = {.lex_state = 349}, [3066] = {.lex_state = 243}, - [3067] = {.lex_state = 124}, - [3068] = {.lex_state = 341}, - [3069] = {.lex_state = 243}, - [3070] = {.lex_state = 243}, + [3067] = {.lex_state = 236}, + [3068] = {.lex_state = 243}, + [3069] = {.lex_state = 349}, + [3070] = {.lex_state = 342}, [3071] = {.lex_state = 243}, - [3072] = {.lex_state = 341}, - [3073] = {.lex_state = 243}, + [3072] = {.lex_state = 243}, + [3073] = {.lex_state = 192}, [3074] = {.lex_state = 243}, - [3075] = {.lex_state = 243}, + [3075] = {.lex_state = 236}, [3076] = {.lex_state = 243}, - [3077] = {.lex_state = 243}, - [3078] = {.lex_state = 243}, + [3077] = {.lex_state = 353}, + [3078] = {.lex_state = 349}, [3079] = {.lex_state = 243}, - [3080] = {.lex_state = 269}, - [3081] = {.lex_state = 231}, - [3082] = {.lex_state = 243}, - [3083] = {.lex_state = 243}, - [3084] = {.lex_state = 243}, - [3085] = {.lex_state = 272}, - [3086] = {.lex_state = 271}, - [3087] = {.lex_state = 271}, - [3088] = {.lex_state = 239}, - [3089] = {.lex_state = 234}, - [3090] = {.lex_state = 234}, - [3091] = {.lex_state = 234}, - [3092] = {.lex_state = 234}, - [3093] = {.lex_state = 234}, - [3094] = {.lex_state = 271}, - [3095] = {.lex_state = 234}, - [3096] = {.lex_state = 234}, - [3097] = {.lex_state = 271}, - [3098] = {.lex_state = 269}, - [3099] = {.lex_state = 234}, - [3100] = {.lex_state = 271}, - [3101] = {.lex_state = 234}, - [3102] = {.lex_state = 271}, - [3103] = {.lex_state = 271}, - [3104] = {.lex_state = 271}, - [3105] = {.lex_state = 234}, - [3106] = {.lex_state = 234}, - [3107] = {.lex_state = 124}, - [3108] = {.lex_state = 234}, - [3109] = {.lex_state = 271}, - [3110] = {.lex_state = 271}, - [3111] = {.lex_state = 271}, - [3112] = {.lex_state = 239}, - [3113] = {.lex_state = 271}, - [3114] = {.lex_state = 271}, - [3115] = {.lex_state = 271}, - [3116] = {.lex_state = 271}, - [3117] = {.lex_state = 271}, + [3080] = {.lex_state = 342}, + [3081] = {.lex_state = 124}, + [3082] = {.lex_state = 342}, + [3083] = {.lex_state = 245}, + [3084] = {.lex_state = 124}, + [3085] = {.lex_state = 236}, + [3086] = {.lex_state = 272}, + [3087] = {.lex_state = 345}, + [3088] = {.lex_state = 345}, + [3089] = {.lex_state = 272}, + [3090] = {.lex_state = 272}, + [3091] = {.lex_state = 272}, + [3092] = {.lex_state = 272}, + [3093] = {.lex_state = 272}, + [3094] = {.lex_state = 317}, + [3095] = {.lex_state = 317}, + [3096] = {.lex_state = 272}, + [3097] = {.lex_state = 272}, + [3098] = {.lex_state = 272}, + [3099] = {.lex_state = 272}, + [3100] = {.lex_state = 272}, + [3101] = {.lex_state = 272}, + [3102] = {.lex_state = 272}, + [3103] = {.lex_state = 272}, + [3104] = {.lex_state = 234}, + [3105] = {.lex_state = 317}, + [3106] = {.lex_state = 317}, + [3107] = {.lex_state = 317}, + [3108] = {.lex_state = 317}, + [3109] = {.lex_state = 234}, + [3110] = {.lex_state = 234}, + [3111] = {.lex_state = 234}, + [3112] = {.lex_state = 234}, + [3113] = {.lex_state = 234}, + [3114] = {.lex_state = 124}, + [3115] = {.lex_state = 234}, + [3116] = {.lex_state = 234}, + [3117] = {.lex_state = 234}, [3118] = {.lex_state = 234}, - [3119] = {.lex_state = 271}, - [3120] = {.lex_state = 271}, - [3121] = {.lex_state = 271}, - [3122] = {.lex_state = 271}, - [3123] = {.lex_state = 271}, - [3124] = {.lex_state = 271}, - [3125] = {.lex_state = 271}, - [3126] = {.lex_state = 271}, - [3127] = {.lex_state = 350}, - [3128] = {.lex_state = 271}, - [3129] = {.lex_state = 350}, - [3130] = {.lex_state = 271}, - [3131] = {.lex_state = 271}, - [3132] = {.lex_state = 271}, - [3133] = {.lex_state = 271}, - [3134] = {.lex_state = 271}, - [3135] = {.lex_state = 271}, - [3136] = {.lex_state = 239}, - [3137] = {.lex_state = 271}, - [3138] = {.lex_state = 271}, - [3139] = {.lex_state = 271}, - [3140] = {.lex_state = 271}, - [3141] = {.lex_state = 271}, - [3142] = {.lex_state = 271}, - [3143] = {.lex_state = 350}, - [3144] = {.lex_state = 271}, - [3145] = {.lex_state = 271}, + [3119] = {.lex_state = 234}, + [3120] = {.lex_state = 345}, + [3121] = {.lex_state = 234}, + [3122] = {.lex_state = 234}, + [3123] = {.lex_state = 345}, + [3124] = {.lex_state = 234}, + [3125] = {.lex_state = 345}, + [3126] = {.lex_state = 345}, + [3127] = {.lex_state = 234}, + [3128] = {.lex_state = 234}, + [3129] = {.lex_state = 234}, + [3130] = {.lex_state = 234}, + [3131] = {.lex_state = 234}, + [3132] = {.lex_state = 234}, + [3133] = {.lex_state = 272}, + [3134] = {.lex_state = 270}, + [3135] = {.lex_state = 270}, + [3136] = {.lex_state = 234}, + [3137] = {.lex_state = 234}, + [3138] = {.lex_state = 272}, + [3139] = {.lex_state = 272}, + [3140] = {.lex_state = 272}, + [3141] = {.lex_state = 272}, + [3142] = {.lex_state = 272}, + [3143] = {.lex_state = 234}, + [3144] = {.lex_state = 272}, + [3145] = {.lex_state = 239}, [3146] = {.lex_state = 239}, - [3147] = {.lex_state = 271}, - [3148] = {.lex_state = 271}, - [3149] = {.lex_state = 271}, - [3150] = {.lex_state = 271}, - [3151] = {.lex_state = 271}, - [3152] = {.lex_state = 271}, - [3153] = {.lex_state = 271}, - [3154] = {.lex_state = 271}, - [3155] = {.lex_state = 271}, - [3156] = {.lex_state = 271}, - [3157] = {.lex_state = 271}, - [3158] = {.lex_state = 234}, - [3159] = {.lex_state = 271}, - [3160] = {.lex_state = 271}, - [3161] = {.lex_state = 271}, - [3162] = {.lex_state = 271}, - [3163] = {.lex_state = 271}, - [3164] = {.lex_state = 271}, - [3165] = {.lex_state = 271}, - [3166] = {.lex_state = 271}, - [3167] = {.lex_state = 271}, - [3168] = {.lex_state = 271}, - [3169] = {.lex_state = 271}, - [3170] = {.lex_state = 271}, - [3171] = {.lex_state = 271}, - [3172] = {.lex_state = 234}, - [3173] = {.lex_state = 271}, - [3174] = {.lex_state = 271}, - [3175] = {.lex_state = 271}, - [3176] = {.lex_state = 271}, - [3177] = {.lex_state = 271}, - [3178] = {.lex_state = 271}, - [3179] = {.lex_state = 271}, - [3180] = {.lex_state = 271}, - [3181] = {.lex_state = 271}, - [3182] = {.lex_state = 271}, - [3183] = {.lex_state = 271}, - [3184] = {.lex_state = 239}, - [3185] = {.lex_state = 271}, - [3186] = {.lex_state = 271}, - [3187] = {.lex_state = 271}, - [3188] = {.lex_state = 271}, - [3189] = {.lex_state = 271}, - [3190] = {.lex_state = 271}, - [3191] = {.lex_state = 271}, - [3192] = {.lex_state = 271}, - [3193] = {.lex_state = 271}, - [3194] = {.lex_state = 271}, - [3195] = {.lex_state = 271}, - [3196] = {.lex_state = 271}, - [3197] = {.lex_state = 271}, - [3198] = {.lex_state = 271}, - [3199] = {.lex_state = 271}, - [3200] = {.lex_state = 271}, - [3201] = {.lex_state = 271}, - [3202] = {.lex_state = 124}, - [3203] = {.lex_state = 271}, - [3204] = {.lex_state = 271}, - [3205] = {.lex_state = 234}, - [3206] = {.lex_state = 271}, - [3207] = {.lex_state = 316}, - [3208] = {.lex_state = 234}, - [3209] = {.lex_state = 271}, - [3210] = {.lex_state = 271}, - [3211] = {.lex_state = 234}, - [3212] = {.lex_state = 239}, - [3213] = {.lex_state = 234}, - [3214] = {.lex_state = 234}, - [3215] = {.lex_state = 234}, - [3216] = {.lex_state = 234}, - [3217] = {.lex_state = 271}, - [3218] = {.lex_state = 234}, - [3219] = {.lex_state = 234}, - [3220] = {.lex_state = 271}, - [3221] = {.lex_state = 234}, - [3222] = {.lex_state = 239}, - [3223] = {.lex_state = 234}, - [3224] = {.lex_state = 271}, - [3225] = {.lex_state = 271}, - [3226] = {.lex_state = 234}, - [3227] = {.lex_state = 234}, - [3228] = {.lex_state = 234}, - [3229] = {.lex_state = 234}, - [3230] = {.lex_state = 234}, - [3231] = {.lex_state = 234}, - [3232] = {.lex_state = 271}, - [3233] = {.lex_state = 269}, - [3234] = {.lex_state = 271}, - [3235] = {.lex_state = 271}, - [3236] = {.lex_state = 271}, - [3237] = {.lex_state = 271}, - [3238] = {.lex_state = 271}, - [3239] = {.lex_state = 271}, - [3240] = {.lex_state = 271}, - [3241] = {.lex_state = 234}, - [3242] = {.lex_state = 271}, - [3243] = {.lex_state = 271}, - [3244] = {.lex_state = 271}, - [3245] = {.lex_state = 316}, - [3246] = {.lex_state = 271}, + [3147] = {.lex_state = 239}, + [3148] = {.lex_state = 239}, + [3149] = {.lex_state = 239}, + [3150] = {.lex_state = 239}, + [3151] = {.lex_state = 239}, + [3152] = {.lex_state = 239}, + [3153] = {.lex_state = 239}, + [3154] = {.lex_state = 239}, + [3155] = {.lex_state = 239}, + [3156] = {.lex_state = 239}, + [3157] = {.lex_state = 239}, + [3158] = {.lex_state = 239}, + [3159] = {.lex_state = 239}, + [3160] = {.lex_state = 239}, + [3161] = {.lex_state = 239}, + [3162] = {.lex_state = 272}, + [3163] = {.lex_state = 239}, + [3164] = {.lex_state = 272}, + [3165] = {.lex_state = 239}, + [3166] = {.lex_state = 239}, + [3167] = {.lex_state = 239}, + [3168] = {.lex_state = 239}, + [3169] = {.lex_state = 239}, + [3170] = {.lex_state = 239}, + [3171] = {.lex_state = 239}, + [3172] = {.lex_state = 239}, + [3173] = {.lex_state = 239}, + [3174] = {.lex_state = 239}, + [3175] = {.lex_state = 239}, + [3176] = {.lex_state = 239}, + [3177] = {.lex_state = 239}, + [3178] = {.lex_state = 272}, + [3179] = {.lex_state = 270}, + [3180] = {.lex_state = 272}, + [3181] = {.lex_state = 272}, + [3182] = {.lex_state = 272}, + [3183] = {.lex_state = 270}, + [3184] = {.lex_state = 351}, + [3185] = {.lex_state = 351}, + [3186] = {.lex_state = 351}, + [3187] = {.lex_state = 270}, + [3188] = {.lex_state = 270}, + [3189] = {.lex_state = 345}, + [3190] = {.lex_state = 124}, + [3191] = {.lex_state = 234}, + [3192] = {.lex_state = 345}, + [3193] = {.lex_state = 191}, + [3194] = {.lex_state = 345}, + [3195] = {.lex_state = 345}, + [3196] = {.lex_state = 317}, + [3197] = {.lex_state = 345}, + [3198] = {.lex_state = 317}, + [3199] = {.lex_state = 317}, + [3200] = {.lex_state = 317}, + [3201] = {.lex_state = 345}, + [3202] = {.lex_state = 345}, + [3203] = {.lex_state = 345}, + [3204] = {.lex_state = 345}, + [3205] = {.lex_state = 345}, + [3206] = {.lex_state = 345}, + [3207] = {.lex_state = 345}, + [3208] = {.lex_state = 345}, + [3209] = {.lex_state = 345}, + [3210] = {.lex_state = 345}, + [3211] = {.lex_state = 345}, + [3212] = {.lex_state = 345}, + [3213] = {.lex_state = 345}, + [3214] = {.lex_state = 345}, + [3215] = {.lex_state = 345}, + [3216] = {.lex_state = 345}, + [3217] = {.lex_state = 345}, + [3218] = {.lex_state = 345}, + [3219] = {.lex_state = 345}, + [3220] = {.lex_state = 345}, + [3221] = {.lex_state = 345}, + [3222] = {.lex_state = 234}, + [3223] = {.lex_state = 345}, + [3224] = {.lex_state = 345}, + [3225] = {.lex_state = 345}, + [3226] = {.lex_state = 345}, + [3227] = {.lex_state = 345}, + [3228] = {.lex_state = 345}, + [3229] = {.lex_state = 345}, + [3230] = {.lex_state = 345}, + [3231] = {.lex_state = 345}, + [3232] = {.lex_state = 345}, + [3233] = {.lex_state = 345}, + [3234] = {.lex_state = 345}, + [3235] = {.lex_state = 345}, + [3236] = {.lex_state = 345}, + [3237] = {.lex_state = 345}, + [3238] = {.lex_state = 345}, + [3239] = {.lex_state = 345}, + [3240] = {.lex_state = 345}, + [3241] = {.lex_state = 345}, + [3242] = {.lex_state = 345}, + [3243] = {.lex_state = 345}, + [3244] = {.lex_state = 345}, + [3245] = {.lex_state = 345}, + [3246] = {.lex_state = 234}, [3247] = {.lex_state = 234}, - [3248] = {.lex_state = 271}, - [3249] = {.lex_state = 271}, - [3250] = {.lex_state = 234}, - [3251] = {.lex_state = 271}, - [3252] = {.lex_state = 271}, - [3253] = {.lex_state = 271}, - [3254] = {.lex_state = 271}, - [3255] = {.lex_state = 271}, - [3256] = {.lex_state = 271}, - [3257] = {.lex_state = 234}, - [3258] = {.lex_state = 271}, - [3259] = {.lex_state = 271}, - [3260] = {.lex_state = 271}, - [3261] = {.lex_state = 239}, - [3262] = {.lex_state = 271}, + [3248] = {.lex_state = 234}, + [3249] = {.lex_state = 234}, + [3250] = {.lex_state = 239}, + [3251] = {.lex_state = 239}, + [3252] = {.lex_state = 239}, + [3253] = {.lex_state = 239}, + [3254] = {.lex_state = 239}, + [3255] = {.lex_state = 272}, + [3256] = {.lex_state = 239}, + [3257] = {.lex_state = 239}, + [3258] = {.lex_state = 272}, + [3259] = {.lex_state = 272}, + [3260] = {.lex_state = 239}, + [3261] = {.lex_state = 272}, + [3262] = {.lex_state = 272}, [3263] = {.lex_state = 239}, - [3264] = {.lex_state = 234}, - [3265] = {.lex_state = 239}, - [3266] = {.lex_state = 271}, - [3267] = {.lex_state = 239}, - [3268] = {.lex_state = 271}, + [3264] = {.lex_state = 239}, + [3265] = {.lex_state = 272}, + [3266] = {.lex_state = 272}, + [3267] = {.lex_state = 272}, + [3268] = {.lex_state = 239}, [3269] = {.lex_state = 239}, - [3270] = {.lex_state = 271}, - [3271] = {.lex_state = 239}, - [3272] = {.lex_state = 271}, + [3270] = {.lex_state = 272}, + [3271] = {.lex_state = 272}, + [3272] = {.lex_state = 272}, [3273] = {.lex_state = 239}, - [3274] = {.lex_state = 271}, + [3274] = {.lex_state = 272}, [3275] = {.lex_state = 239}, - [3276] = {.lex_state = 124}, + [3276] = {.lex_state = 272}, [3277] = {.lex_state = 239}, - [3278] = {.lex_state = 271}, + [3278] = {.lex_state = 239}, [3279] = {.lex_state = 239}, - [3280] = {.lex_state = 271}, - [3281] = {.lex_state = 239}, - [3282] = {.lex_state = 271}, - [3283] = {.lex_state = 271}, + [3280] = {.lex_state = 239}, + [3281] = {.lex_state = 234}, + [3282] = {.lex_state = 239}, + [3283] = {.lex_state = 239}, [3284] = {.lex_state = 239}, - [3285] = {.lex_state = 271}, + [3285] = {.lex_state = 234}, [3286] = {.lex_state = 239}, - [3287] = {.lex_state = 344}, - [3288] = {.lex_state = 271}, - [3289] = {.lex_state = 271}, - [3290] = {.lex_state = 234}, - [3291] = {.lex_state = 271}, - [3292] = {.lex_state = 271}, - [3293] = {.lex_state = 344}, - [3294] = {.lex_state = 271}, - [3295] = {.lex_state = 239}, - [3296] = {.lex_state = 271}, - [3297] = {.lex_state = 271}, - [3298] = {.lex_state = 271}, - [3299] = {.lex_state = 271}, - [3300] = {.lex_state = 271}, - [3301] = {.lex_state = 271}, - [3302] = {.lex_state = 269}, - [3303] = {.lex_state = 269}, - [3304] = {.lex_state = 234}, - [3305] = {.lex_state = 234}, - [3306] = {.lex_state = 234}, - [3307] = {.lex_state = 271}, - [3308] = {.lex_state = 271}, - [3309] = {.lex_state = 239}, - [3310] = {.lex_state = 239}, - [3311] = {.lex_state = 271}, - [3312] = {.lex_state = 271}, - [3313] = {.lex_state = 239}, - [3314] = {.lex_state = 271}, - [3315] = {.lex_state = 271}, - [3316] = {.lex_state = 239}, - [3317] = {.lex_state = 271}, - [3318] = {.lex_state = 271}, - [3319] = {.lex_state = 271}, - [3320] = {.lex_state = 239}, - [3321] = {.lex_state = 271}, - [3322] = {.lex_state = 271}, - [3323] = {.lex_state = 271}, - [3324] = {.lex_state = 271}, - [3325] = {.lex_state = 234}, - [3326] = {.lex_state = 234}, - [3327] = {.lex_state = 271}, - [3328] = {.lex_state = 271}, - [3329] = {.lex_state = 271}, - [3330] = {.lex_state = 271}, - [3331] = {.lex_state = 271}, - [3332] = {.lex_state = 271}, - [3333] = {.lex_state = 271}, - [3334] = {.lex_state = 271}, - [3335] = {.lex_state = 269}, - [3336] = {.lex_state = 271}, - [3337] = {.lex_state = 271}, - [3338] = {.lex_state = 271}, - [3339] = {.lex_state = 271}, - [3340] = {.lex_state = 271}, - [3341] = {.lex_state = 271}, - [3342] = {.lex_state = 271}, - [3343] = {.lex_state = 271}, - [3344] = {.lex_state = 271}, - [3345] = {.lex_state = 271}, - [3346] = {.lex_state = 271}, - [3347] = {.lex_state = 271}, - [3348] = {.lex_state = 271}, - [3349] = {.lex_state = 271}, - [3350] = {.lex_state = 234}, - [3351] = {.lex_state = 234}, - [3352] = {.lex_state = 271}, - [3353] = {.lex_state = 271}, - [3354] = {.lex_state = 239}, - [3355] = {.lex_state = 271}, - [3356] = {.lex_state = 271}, - [3357] = {.lex_state = 234}, - [3358] = {.lex_state = 271}, - [3359] = {.lex_state = 271}, - [3360] = {.lex_state = 271}, - [3361] = {.lex_state = 344}, - [3362] = {.lex_state = 269}, - [3363] = {.lex_state = 271}, - [3364] = {.lex_state = 271}, - [3365] = {.lex_state = 344}, - [3366] = {.lex_state = 239}, - [3367] = {.lex_state = 271}, - [3368] = {.lex_state = 271}, - [3369] = {.lex_state = 271}, - [3370] = {.lex_state = 269}, - [3371] = {.lex_state = 271}, - [3372] = {.lex_state = 271}, - [3373] = {.lex_state = 239}, - [3374] = {.lex_state = 271}, - [3375] = {.lex_state = 239}, - [3376] = {.lex_state = 269}, - [3377] = {.lex_state = 271}, - [3378] = {.lex_state = 269}, - [3379] = {.lex_state = 271}, - [3380] = {.lex_state = 269}, - [3381] = {.lex_state = 271}, - [3382] = {.lex_state = 271}, - [3383] = {.lex_state = 271}, - [3384] = {.lex_state = 269}, - [3385] = {.lex_state = 271}, - [3386] = {.lex_state = 239}, - [3387] = {.lex_state = 271}, - [3388] = {.lex_state = 271}, - [3389] = {.lex_state = 271}, - [3390] = {.lex_state = 271}, - [3391] = {.lex_state = 271}, - [3392] = {.lex_state = 271}, - [3393] = {.lex_state = 271}, - [3394] = {.lex_state = 271}, - [3395] = {.lex_state = 271}, - [3396] = {.lex_state = 271}, - [3397] = {.lex_state = 271}, - [3398] = {.lex_state = 271}, - [3399] = {.lex_state = 269}, - [3400] = {.lex_state = 271}, - [3401] = {.lex_state = 234}, - [3402] = {.lex_state = 344}, - [3403] = {.lex_state = 234}, - [3404] = {.lex_state = 271}, - [3405] = {.lex_state = 271}, - [3406] = {.lex_state = 271}, - [3407] = {.lex_state = 271}, - [3408] = {.lex_state = 271}, - [3409] = {.lex_state = 271}, - [3410] = {.lex_state = 271}, - [3411] = {.lex_state = 271}, - [3412] = {.lex_state = 271}, - [3413] = {.lex_state = 239}, - [3414] = {.lex_state = 271}, - [3415] = {.lex_state = 271}, - [3416] = {.lex_state = 271}, - [3417] = {.lex_state = 269}, - [3418] = {.lex_state = 271}, - [3419] = {.lex_state = 271}, - [3420] = {.lex_state = 271}, - [3421] = {.lex_state = 271}, - [3422] = {.lex_state = 271}, - [3423] = {.lex_state = 271}, - [3424] = {.lex_state = 271}, - [3425] = {.lex_state = 271}, - [3426] = {.lex_state = 239}, - [3427] = {.lex_state = 239}, - [3428] = {.lex_state = 271}, - [3429] = {.lex_state = 239}, - [3430] = {.lex_state = 271}, - [3431] = {.lex_state = 271}, - [3432] = {.lex_state = 271}, - [3433] = {.lex_state = 234}, - [3434] = {.lex_state = 271}, - [3435] = {.lex_state = 271}, - [3436] = {.lex_state = 271}, - [3437] = {.lex_state = 271}, - [3438] = {.lex_state = 271}, - [3439] = {.lex_state = 234}, - [3440] = {.lex_state = 271}, - [3441] = {.lex_state = 239}, - [3442] = {.lex_state = 271}, - [3443] = {.lex_state = 271}, - [3444] = {.lex_state = 271}, - [3445] = {.lex_state = 271}, - [3446] = {.lex_state = 234}, - [3447] = {.lex_state = 239}, - [3448] = {.lex_state = 271}, - [3449] = {.lex_state = 271}, - [3450] = {.lex_state = 271}, - [3451] = {.lex_state = 271}, - [3452] = {.lex_state = 271}, - [3453] = {.lex_state = 271}, - [3454] = {.lex_state = 271}, - [3455] = {.lex_state = 271}, - [3456] = {.lex_state = 316}, - [3457] = {.lex_state = 271}, - [3458] = {.lex_state = 271}, - [3459] = {.lex_state = 271}, - [3460] = {.lex_state = 271}, - [3461] = {.lex_state = 271}, - [3462] = {.lex_state = 271}, - [3463] = {.lex_state = 271}, - [3464] = {.lex_state = 271}, - [3465] = {.lex_state = 271}, - [3466] = {.lex_state = 271}, - [3467] = {.lex_state = 271}, - [3468] = {.lex_state = 271}, - [3469] = {.lex_state = 271}, - [3470] = {.lex_state = 271}, - [3471] = {.lex_state = 271}, - [3472] = {.lex_state = 271}, - [3473] = {.lex_state = 271}, - [3474] = {.lex_state = 271}, - [3475] = {.lex_state = 271}, - [3476] = {.lex_state = 269}, - [3477] = {.lex_state = 316}, - [3478] = {.lex_state = 239}, - [3479] = {.lex_state = 271}, - [3480] = {.lex_state = 316}, - [3481] = {.lex_state = 316}, - [3482] = {.lex_state = 344}, - [3483] = {.lex_state = 271}, - [3484] = {.lex_state = 239}, - [3485] = {.lex_state = 269}, - [3486] = {.lex_state = 239}, - [3487] = {.lex_state = 234}, - [3488] = {.lex_state = 271}, - [3489] = {.lex_state = 271}, - [3490] = {.lex_state = 239}, - [3491] = {.lex_state = 271}, - [3492] = {.lex_state = 271}, - [3493] = {.lex_state = 239}, - [3494] = {.lex_state = 271}, - [3495] = {.lex_state = 271}, - [3496] = {.lex_state = 271}, - [3497] = {.lex_state = 239}, - [3498] = {.lex_state = 271}, - [3499] = {.lex_state = 271}, - [3500] = {.lex_state = 239}, - [3501] = {.lex_state = 239}, - [3502] = {.lex_state = 344}, - [3503] = {.lex_state = 271}, - [3504] = {.lex_state = 239}, - [3505] = {.lex_state = 271}, - [3506] = {.lex_state = 271}, - [3507] = {.lex_state = 271}, - [3508] = {.lex_state = 271}, - [3509] = {.lex_state = 239}, - [3510] = {.lex_state = 316}, - [3511] = {.lex_state = 239}, - [3512] = {.lex_state = 239}, - [3513] = {.lex_state = 344}, - [3514] = {.lex_state = 344}, - [3515] = {.lex_state = 344}, - [3516] = {.lex_state = 344}, - [3517] = {.lex_state = 344}, - [3518] = {.lex_state = 271}, - [3519] = {.lex_state = 271}, - [3520] = {.lex_state = 271}, - [3521] = {.lex_state = 269}, - [3522] = {.lex_state = 239}, - [3523] = {.lex_state = 271}, - [3524] = {.lex_state = 271}, - [3525] = {.lex_state = 271}, - [3526] = {.lex_state = 271}, - [3527] = {.lex_state = 271}, - [3528] = {.lex_state = 239}, - [3529] = {.lex_state = 271}, - [3530] = {.lex_state = 271}, - [3531] = {.lex_state = 271}, - [3532] = {.lex_state = 239}, - [3533] = {.lex_state = 239}, - [3534] = {.lex_state = 271}, - [3535] = {.lex_state = 271}, - [3536] = {.lex_state = 271}, - [3537] = {.lex_state = 316}, - [3538] = {.lex_state = 271}, - [3539] = {.lex_state = 271}, - [3540] = {.lex_state = 271}, - [3541] = {.lex_state = 271}, - [3542] = {.lex_state = 344}, - [3543] = {.lex_state = 344}, - [3544] = {.lex_state = 344}, - [3545] = {.lex_state = 344}, - [3546] = {.lex_state = 344}, - [3547] = {.lex_state = 344}, - [3548] = {.lex_state = 344}, - [3549] = {.lex_state = 344}, - [3550] = {.lex_state = 271}, - [3551] = {.lex_state = 271}, - [3552] = {.lex_state = 271}, - [3553] = {.lex_state = 271}, - [3554] = {.lex_state = 271}, - [3555] = {.lex_state = 344}, - [3556] = {.lex_state = 344}, - [3557] = {.lex_state = 344}, - [3558] = {.lex_state = 344}, - [3559] = {.lex_state = 316}, - [3560] = {.lex_state = 271}, - [3561] = {.lex_state = 271}, - [3562] = {.lex_state = 271}, - [3563] = {.lex_state = 269}, - [3564] = {.lex_state = 271}, - [3565] = {.lex_state = 344}, - [3566] = {.lex_state = 344}, - [3567] = {.lex_state = 344}, - [3568] = {.lex_state = 344}, - [3569] = {.lex_state = 344}, - [3570] = {.lex_state = 344}, - [3571] = {.lex_state = 344}, - [3572] = {.lex_state = 344}, - [3573] = {.lex_state = 271}, - [3574] = {.lex_state = 271}, - [3575] = {.lex_state = 344}, - [3576] = {.lex_state = 344}, - [3577] = {.lex_state = 239}, - [3578] = {.lex_state = 234}, - [3579] = {.lex_state = 344}, - [3580] = {.lex_state = 344}, - [3581] = {.lex_state = 344}, - [3582] = {.lex_state = 271}, - [3583] = {.lex_state = 344}, - [3584] = {.lex_state = 344}, - [3585] = {.lex_state = 271}, - [3586] = {.lex_state = 271}, - [3587] = {.lex_state = 344}, - [3588] = {.lex_state = 344}, - [3589] = {.lex_state = 344}, - [3590] = {.lex_state = 344}, - [3591] = {.lex_state = 344}, - [3592] = {.lex_state = 344}, - [3593] = {.lex_state = 344}, - [3594] = {.lex_state = 344}, - [3595] = {.lex_state = 344}, - [3596] = {.lex_state = 344}, - [3597] = {.lex_state = 344}, - [3598] = {.lex_state = 344}, - [3599] = {.lex_state = 344}, - [3600] = {.lex_state = 344}, - [3601] = {.lex_state = 344}, - [3602] = {.lex_state = 344}, - [3603] = {.lex_state = 344}, - [3604] = {.lex_state = 344}, - [3605] = {.lex_state = 271}, - [3606] = {.lex_state = 271}, - [3607] = {.lex_state = 271}, - [3608] = {.lex_state = 271}, - [3609] = {.lex_state = 271}, - [3610] = {.lex_state = 271}, - [3611] = {.lex_state = 124}, - [3612] = {.lex_state = 271}, - [3613] = {.lex_state = 234}, - [3614] = {.lex_state = 271}, - [3615] = {.lex_state = 239}, - [3616] = {.lex_state = 271}, - [3617] = {.lex_state = 316}, - [3618] = {.lex_state = 234}, - [3619] = {.lex_state = 271}, - [3620] = {.lex_state = 271}, - [3621] = {.lex_state = 234}, - [3622] = {.lex_state = 271}, - [3623] = {.lex_state = 271}, - [3624] = {.lex_state = 124}, - [3625] = {.lex_state = 271}, - [3626] = {.lex_state = 271}, - [3627] = {.lex_state = 271}, - [3628] = {.lex_state = 271}, - [3629] = {.lex_state = 271}, - [3630] = {.lex_state = 271}, - [3631] = {.lex_state = 271}, - [3632] = {.lex_state = 271}, - [3633] = {.lex_state = 271}, - [3634] = {.lex_state = 271}, - [3635] = {.lex_state = 344}, - [3636] = {.lex_state = 316}, - [3637] = {.lex_state = 316}, - [3638] = {.lex_state = 191}, - [3639] = {.lex_state = 234}, - [3640] = {.lex_state = 124}, - [3641] = {.lex_state = 239}, - [3642] = {.lex_state = 239}, - [3643] = {.lex_state = 271}, - [3644] = {.lex_state = 239}, - [3645] = {.lex_state = 239}, - [3646] = {.lex_state = 209}, - [3647] = {.lex_state = 271}, - [3648] = {.lex_state = 271}, - [3649] = {.lex_state = 271}, - [3650] = {.lex_state = 271}, - [3651] = {.lex_state = 271}, - [3652] = {.lex_state = 271}, - [3653] = {.lex_state = 271}, - [3654] = {.lex_state = 271}, - [3655] = {.lex_state = 234}, - [3656] = {.lex_state = 271}, - [3657] = {.lex_state = 271}, - [3658] = {.lex_state = 271}, - [3659] = {.lex_state = 239}, - [3660] = {.lex_state = 271}, - [3661] = {.lex_state = 271}, - [3662] = {.lex_state = 239}, - [3663] = {.lex_state = 271}, - [3664] = {.lex_state = 271}, - [3665] = {.lex_state = 271}, - [3666] = {.lex_state = 271}, - [3667] = {.lex_state = 271}, - [3668] = {.lex_state = 271}, - [3669] = {.lex_state = 239}, - [3670] = {.lex_state = 271}, - [3671] = {.lex_state = 234}, - [3672] = {.lex_state = 271}, - [3673] = {.lex_state = 271}, - [3674] = {.lex_state = 271}, - [3675] = {.lex_state = 234}, - [3676] = {.lex_state = 271}, - [3677] = {.lex_state = 271}, - [3678] = {.lex_state = 271}, - [3679] = {.lex_state = 271}, - [3680] = {.lex_state = 344}, - [3681] = {.lex_state = 271}, - [3682] = {.lex_state = 271}, - [3683] = {.lex_state = 271}, - [3684] = {.lex_state = 234}, - [3685] = {.lex_state = 271}, - [3686] = {.lex_state = 271}, - [3687] = {.lex_state = 271}, - [3688] = {.lex_state = 271}, - [3689] = {.lex_state = 271}, - [3690] = {.lex_state = 271}, - [3691] = {.lex_state = 239}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 271}, - [3694] = {.lex_state = 271}, - [3695] = {.lex_state = 271}, - [3696] = {.lex_state = 271}, - [3697] = {.lex_state = 271}, - [3698] = {.lex_state = 271}, - [3699] = {.lex_state = 271}, - [3700] = {.lex_state = 271}, - [3701] = {.lex_state = 271}, + [3287] = {.lex_state = 239}, + [3288] = {.lex_state = 239}, + [3289] = {.lex_state = 239}, + [3290] = {.lex_state = 239}, + [3291] = {.lex_state = 239}, + [3292] = {.lex_state = 239}, + [3293] = {.lex_state = 124}, + [3294] = {.lex_state = 124}, + [3295] = {.lex_state = 124}, + [3296] = {.lex_state = 234}, + [3297] = {.lex_state = 234}, + [3298] = {.lex_state = 124}, + [3299] = {.lex_state = 124}, + [3300] = {.lex_state = 239}, + [3301] = {.lex_state = 239}, + [3302] = {.lex_state = 209}, + [3303] = {.lex_state = 317}, + [3304] = {.lex_state = 317}, + [3305] = {.lex_state = 239}, + [3306] = {.lex_state = 270}, + [3307] = {.lex_state = 239}, + [3308] = {.lex_state = 345}, + [3309] = {.lex_state = 345}, + [3310] = {.lex_state = 270}, + [3311] = {.lex_state = 272}, + [3312] = {.lex_state = 272}, + [3313] = {.lex_state = 272}, + [3314] = {.lex_state = 272}, + [3315] = {.lex_state = 272}, + [3316] = {.lex_state = 272}, + [3317] = {.lex_state = 272}, + [3318] = {.lex_state = 272}, + [3319] = {.lex_state = 272}, + [3320] = {.lex_state = 272}, + [3321] = {.lex_state = 272}, + [3322] = {.lex_state = 272}, + [3323] = {.lex_state = 272}, + [3324] = {.lex_state = 272}, + [3325] = {.lex_state = 272}, + [3326] = {.lex_state = 272}, + [3327] = {.lex_state = 272}, + [3328] = {.lex_state = 272}, + [3329] = {.lex_state = 272}, + [3330] = {.lex_state = 272}, + [3331] = {.lex_state = 272}, + [3332] = {.lex_state = 272}, + [3333] = {.lex_state = 272}, + [3334] = {.lex_state = 272}, + [3335] = {.lex_state = 272}, + [3336] = {.lex_state = 272}, + [3337] = {.lex_state = 272}, + [3338] = {.lex_state = 272}, + [3339] = {.lex_state = 272}, + [3340] = {.lex_state = 272}, + [3341] = {.lex_state = 272}, + [3342] = {.lex_state = 272}, + [3343] = {.lex_state = 272}, + [3344] = {.lex_state = 272}, + [3345] = {.lex_state = 272}, + [3346] = {.lex_state = 272}, + [3347] = {.lex_state = 272}, + [3348] = {.lex_state = 272}, + [3349] = {.lex_state = 272}, + [3350] = {.lex_state = 272}, + [3351] = {.lex_state = 272}, + [3352] = {.lex_state = 272}, + [3353] = {.lex_state = 272}, + [3354] = {.lex_state = 272}, + [3355] = {.lex_state = 272}, + [3356] = {.lex_state = 272}, + [3357] = {.lex_state = 272}, + [3358] = {.lex_state = 272}, + [3359] = {.lex_state = 272}, + [3360] = {.lex_state = 272}, + [3361] = {.lex_state = 272}, + [3362] = {.lex_state = 272}, + [3363] = {.lex_state = 272}, + [3364] = {.lex_state = 272}, + [3365] = {.lex_state = 272}, + [3366] = {.lex_state = 272}, + [3367] = {.lex_state = 272}, + [3368] = {.lex_state = 272}, + [3369] = {.lex_state = 272}, + [3370] = {.lex_state = 272}, + [3371] = {.lex_state = 272}, + [3372] = {.lex_state = 272}, + [3373] = {.lex_state = 272}, + [3374] = {.lex_state = 272}, + [3375] = {.lex_state = 272}, + [3376] = {.lex_state = 272}, + [3377] = {.lex_state = 272}, + [3378] = {.lex_state = 272}, + [3379] = {.lex_state = 272}, + [3380] = {.lex_state = 272}, + [3381] = {.lex_state = 272}, + [3382] = {.lex_state = 272}, + [3383] = {.lex_state = 272}, + [3384] = {.lex_state = 272}, + [3385] = {.lex_state = 272}, + [3386] = {.lex_state = 272}, + [3387] = {.lex_state = 272}, + [3388] = {.lex_state = 272}, + [3389] = {.lex_state = 272}, + [3390] = {.lex_state = 272}, + [3391] = {.lex_state = 272}, + [3392] = {.lex_state = 272}, + [3393] = {.lex_state = 272}, + [3394] = {.lex_state = 272}, + [3395] = {.lex_state = 272}, + [3396] = {.lex_state = 272}, + [3397] = {.lex_state = 272}, + [3398] = {.lex_state = 272}, + [3399] = {.lex_state = 272}, + [3400] = {.lex_state = 272}, + [3401] = {.lex_state = 272}, + [3402] = {.lex_state = 272}, + [3403] = {.lex_state = 272}, + [3404] = {.lex_state = 272}, + [3405] = {.lex_state = 272}, + [3406] = {.lex_state = 272}, + [3407] = {.lex_state = 272}, + [3408] = {.lex_state = 272}, + [3409] = {.lex_state = 272}, + [3410] = {.lex_state = 272}, + [3411] = {.lex_state = 272}, + [3412] = {.lex_state = 272}, + [3413] = {.lex_state = 272}, + [3414] = {.lex_state = 272}, + [3415] = {.lex_state = 272}, + [3416] = {.lex_state = 272}, + [3417] = {.lex_state = 272}, + [3418] = {.lex_state = 272}, + [3419] = {.lex_state = 272}, + [3420] = {.lex_state = 272}, + [3421] = {.lex_state = 272}, + [3422] = {.lex_state = 272}, + [3423] = {.lex_state = 272}, + [3424] = {.lex_state = 272}, + [3425] = {.lex_state = 272}, + [3426] = {.lex_state = 272}, + [3427] = {.lex_state = 272}, + [3428] = {.lex_state = 272}, + [3429] = {.lex_state = 272}, + [3430] = {.lex_state = 272}, + [3431] = {.lex_state = 272}, + [3432] = {.lex_state = 272}, + [3433] = {.lex_state = 272}, + [3434] = {.lex_state = 272}, + [3435] = {.lex_state = 272}, + [3436] = {.lex_state = 272}, + [3437] = {.lex_state = 272}, + [3438] = {.lex_state = 272}, + [3439] = {.lex_state = 272}, + [3440] = {.lex_state = 272}, + [3441] = {.lex_state = 272}, + [3442] = {.lex_state = 272}, + [3443] = {.lex_state = 272}, + [3444] = {.lex_state = 272}, + [3445] = {.lex_state = 272}, + [3446] = {.lex_state = 272}, + [3447] = {.lex_state = 272}, + [3448] = {.lex_state = 272}, + [3449] = {.lex_state = 272}, + [3450] = {.lex_state = 270}, + [3451] = {.lex_state = 272}, + [3452] = {.lex_state = 272}, + [3453] = {.lex_state = 272}, + [3454] = {.lex_state = 272}, + [3455] = {.lex_state = 272}, + [3456] = {.lex_state = 272}, + [3457] = {.lex_state = 272}, + [3458] = {.lex_state = 272}, + [3459] = {.lex_state = 272}, + [3460] = {.lex_state = 272}, + [3461] = {.lex_state = 272}, + [3462] = {.lex_state = 272}, + [3463] = {.lex_state = 272}, + [3464] = {.lex_state = 272}, + [3465] = {.lex_state = 272}, + [3466] = {.lex_state = 272}, + [3467] = {.lex_state = 272}, + [3468] = {.lex_state = 272}, + [3469] = {.lex_state = 272}, + [3470] = {.lex_state = 272}, + [3471] = {.lex_state = 272}, + [3472] = {.lex_state = 272}, + [3473] = {.lex_state = 272}, + [3474] = {.lex_state = 272}, + [3475] = {.lex_state = 272}, + [3476] = {.lex_state = 272}, + [3477] = {.lex_state = 272}, + [3478] = {.lex_state = 272}, + [3479] = {.lex_state = 272}, + [3480] = {.lex_state = 272}, + [3481] = {.lex_state = 272}, + [3482] = {.lex_state = 272}, + [3483] = {.lex_state = 272}, + [3484] = {.lex_state = 272}, + [3485] = {.lex_state = 272}, + [3486] = {.lex_state = 272}, + [3487] = {.lex_state = 272}, + [3488] = {.lex_state = 272}, + [3489] = {.lex_state = 272}, + [3490] = {.lex_state = 272}, + [3491] = {.lex_state = 272}, + [3492] = {.lex_state = 272}, + [3493] = {.lex_state = 272}, + [3494] = {.lex_state = 272}, + [3495] = {.lex_state = 272}, + [3496] = {.lex_state = 272}, + [3497] = {.lex_state = 272}, + [3498] = {.lex_state = 272}, + [3499] = {.lex_state = 272}, + [3500] = {.lex_state = 272}, + [3501] = {.lex_state = 272}, + [3502] = {.lex_state = 272}, + [3503] = {.lex_state = 272}, + [3504] = {.lex_state = 272}, + [3505] = {.lex_state = 272}, + [3506] = {.lex_state = 272}, + [3507] = {.lex_state = 272}, + [3508] = {.lex_state = 272}, + [3509] = {.lex_state = 272}, + [3510] = {.lex_state = 272}, + [3511] = {.lex_state = 272}, + [3512] = {.lex_state = 272}, + [3513] = {.lex_state = 272}, + [3514] = {.lex_state = 272}, + [3515] = {.lex_state = 272}, + [3516] = {.lex_state = 272}, + [3517] = {.lex_state = 272}, + [3518] = {.lex_state = 272}, + [3519] = {.lex_state = 272}, + [3520] = {.lex_state = 272}, + [3521] = {.lex_state = 272}, + [3522] = {.lex_state = 272}, + [3523] = {.lex_state = 272}, + [3524] = {.lex_state = 272}, + [3525] = {.lex_state = 272}, + [3526] = {.lex_state = 272}, + [3527] = {.lex_state = 272}, + [3528] = {.lex_state = 272}, + [3529] = {.lex_state = 272}, + [3530] = {.lex_state = 272}, + [3531] = {.lex_state = 272}, + [3532] = {.lex_state = 272}, + [3533] = {.lex_state = 272}, + [3534] = {.lex_state = 272}, + [3535] = {.lex_state = 272}, + [3536] = {.lex_state = 272}, + [3537] = {.lex_state = 272}, + [3538] = {.lex_state = 272}, + [3539] = {.lex_state = 272}, + [3540] = {.lex_state = 272}, + [3541] = {.lex_state = 272}, + [3542] = {.lex_state = 272}, + [3543] = {.lex_state = 272}, + [3544] = {.lex_state = 272}, + [3545] = {.lex_state = 272}, + [3546] = {.lex_state = 272}, + [3547] = {.lex_state = 272}, + [3548] = {.lex_state = 272}, + [3549] = {.lex_state = 272}, + [3550] = {.lex_state = 272}, + [3551] = {.lex_state = 272}, + [3552] = {.lex_state = 272}, + [3553] = {.lex_state = 272}, + [3554] = {.lex_state = 272}, + [3555] = {.lex_state = 272}, + [3556] = {.lex_state = 272}, + [3557] = {.lex_state = 272}, + [3558] = {.lex_state = 272}, + [3559] = {.lex_state = 272}, + [3560] = {.lex_state = 272}, + [3561] = {.lex_state = 272}, + [3562] = {.lex_state = 272}, + [3563] = {.lex_state = 272}, + [3564] = {.lex_state = 272}, + [3565] = {.lex_state = 272}, + [3566] = {.lex_state = 272}, + [3567] = {.lex_state = 272}, + [3568] = {.lex_state = 272}, + [3569] = {.lex_state = 272}, + [3570] = {.lex_state = 272}, + [3571] = {.lex_state = 272}, + [3572] = {.lex_state = 272}, + [3573] = {.lex_state = 272}, + [3574] = {.lex_state = 272}, + [3575] = {.lex_state = 272}, + [3576] = {.lex_state = 272}, + [3577] = {.lex_state = 272}, + [3578] = {.lex_state = 272}, + [3579] = {.lex_state = 272}, + [3580] = {.lex_state = 272}, + [3581] = {.lex_state = 272}, + [3582] = {.lex_state = 272}, + [3583] = {.lex_state = 272}, + [3584] = {.lex_state = 272}, + [3585] = {.lex_state = 272}, + [3586] = {.lex_state = 272}, + [3587] = {.lex_state = 272}, + [3588] = {.lex_state = 272}, + [3589] = {.lex_state = 272}, + [3590] = {.lex_state = 272}, + [3591] = {.lex_state = 272}, + [3592] = {.lex_state = 272}, + [3593] = {.lex_state = 272}, + [3594] = {.lex_state = 272}, + [3595] = {.lex_state = 272}, + [3596] = {.lex_state = 272}, + [3597] = {.lex_state = 272}, + [3598] = {.lex_state = 272}, + [3599] = {.lex_state = 272}, + [3600] = {.lex_state = 272}, + [3601] = {.lex_state = 272}, + [3602] = {.lex_state = 272}, + [3603] = {.lex_state = 272}, + [3604] = {.lex_state = 272}, + [3605] = {.lex_state = 272}, + [3606] = {.lex_state = 272}, + [3607] = {.lex_state = 272}, + [3608] = {.lex_state = 272}, + [3609] = {.lex_state = 272}, + [3610] = {.lex_state = 272}, + [3611] = {.lex_state = 272}, + [3612] = {.lex_state = 272}, + [3613] = {.lex_state = 272}, + [3614] = {.lex_state = 272}, + [3615] = {.lex_state = 272}, + [3616] = {.lex_state = 272}, + [3617] = {.lex_state = 272}, + [3618] = {.lex_state = 272}, + [3619] = {.lex_state = 272}, + [3620] = {.lex_state = 272}, + [3621] = {.lex_state = 272}, + [3622] = {.lex_state = 272}, + [3623] = {.lex_state = 234}, + [3624] = {.lex_state = 234}, + [3625] = {.lex_state = 272}, + [3626] = {.lex_state = 272}, + [3627] = {.lex_state = 272}, + [3628] = {.lex_state = 272}, + [3629] = {.lex_state = 272}, + [3630] = {.lex_state = 272}, + [3631] = {.lex_state = 272}, + [3632] = {.lex_state = 272}, + [3633] = {.lex_state = 272}, + [3634] = {.lex_state = 272}, + [3635] = {.lex_state = 272}, + [3636] = {.lex_state = 272}, + [3637] = {.lex_state = 272}, + [3638] = {.lex_state = 272}, + [3639] = {.lex_state = 272}, + [3640] = {.lex_state = 272}, + [3641] = {.lex_state = 272}, + [3642] = {.lex_state = 272}, + [3643] = {.lex_state = 272}, + [3644] = {.lex_state = 272}, + [3645] = {.lex_state = 272}, + [3646] = {.lex_state = 272}, + [3647] = {.lex_state = 272}, + [3648] = {.lex_state = 272}, + [3649] = {.lex_state = 272}, + [3650] = {.lex_state = 272}, + [3651] = {.lex_state = 272}, + [3652] = {.lex_state = 272}, + [3653] = {.lex_state = 272}, + [3654] = {.lex_state = 272}, + [3655] = {.lex_state = 272}, + [3656] = {.lex_state = 272}, + [3657] = {.lex_state = 272}, + [3658] = {.lex_state = 272}, + [3659] = {.lex_state = 272}, + [3660] = {.lex_state = 272}, + [3661] = {.lex_state = 272}, + [3662] = {.lex_state = 272}, + [3663] = {.lex_state = 272}, + [3664] = {.lex_state = 272}, + [3665] = {.lex_state = 272}, + [3666] = {.lex_state = 272}, + [3667] = {.lex_state = 272}, + [3668] = {.lex_state = 272}, + [3669] = {.lex_state = 272}, + [3670] = {.lex_state = 272}, + [3671] = {.lex_state = 272}, + [3672] = {.lex_state = 272}, + [3673] = {.lex_state = 272}, + [3674] = {.lex_state = 272}, + [3675] = {.lex_state = 272}, + [3676] = {.lex_state = 234}, + [3677] = {.lex_state = 272}, + [3678] = {.lex_state = 272}, + [3679] = {.lex_state = 272}, + [3680] = {.lex_state = 272}, + [3681] = {.lex_state = 272}, + [3682] = {.lex_state = 272}, + [3683] = {.lex_state = 272}, + [3684] = {.lex_state = 272}, + [3685] = {.lex_state = 272}, + [3686] = {.lex_state = 272}, + [3687] = {.lex_state = 272}, + [3688] = {.lex_state = 272}, + [3689] = {.lex_state = 272}, + [3690] = {.lex_state = 234}, + [3691] = {.lex_state = 234}, + [3692] = {.lex_state = 234}, + [3693] = {.lex_state = 234}, + [3694] = {.lex_state = 234}, + [3695] = {.lex_state = 234}, + [3696] = {.lex_state = 234}, + [3697] = {.lex_state = 234}, + [3698] = {.lex_state = 234}, + [3699] = {.lex_state = 270}, + [3700] = {.lex_state = 234}, + [3701] = {.lex_state = 234}, [3702] = {.lex_state = 234}, - [3703] = {.lex_state = 271}, - [3704] = {.lex_state = 271}, - [3705] = {.lex_state = 271}, - [3706] = {.lex_state = 271}, - [3707] = {.lex_state = 271}, - [3708] = {.lex_state = 271}, - [3709] = {.lex_state = 271}, - [3710] = {.lex_state = 271}, - [3711] = {.lex_state = 271}, + [3703] = {.lex_state = 234}, + [3704] = {.lex_state = 234}, + [3705] = {.lex_state = 270}, + [3706] = {.lex_state = 270}, + [3707] = {.lex_state = 270}, + [3708] = {.lex_state = 270}, + [3709] = {.lex_state = 270}, + [3710] = {.lex_state = 270}, + [3711] = {.lex_state = 270}, [3712] = {.lex_state = 234}, - [3713] = {.lex_state = 271}, - [3714] = {.lex_state = 271}, - [3715] = {.lex_state = 271}, - [3716] = {.lex_state = 271}, - [3717] = {.lex_state = 271}, - [3718] = {.lex_state = 271}, - [3719] = {.lex_state = 271}, - [3720] = {.lex_state = 271}, - [3721] = {.lex_state = 271}, - [3722] = {.lex_state = 271}, - [3723] = {.lex_state = 271}, - [3724] = {.lex_state = 271}, + [3713] = {.lex_state = 234}, + [3714] = {.lex_state = 234}, + [3715] = {.lex_state = 234}, + [3716] = {.lex_state = 234}, + [3717] = {.lex_state = 234}, + [3718] = {.lex_state = 234}, + [3719] = {.lex_state = 234}, + [3720] = {.lex_state = 234}, + [3721] = {.lex_state = 234}, + [3722] = {.lex_state = 234}, + [3723] = {.lex_state = 234}, + [3724] = {.lex_state = 234}, [3725] = {.lex_state = 234}, - [3726] = {.lex_state = 271}, - [3727] = {.lex_state = 271}, - [3728] = {.lex_state = 271}, - [3729] = {.lex_state = 318}, + [3726] = {.lex_state = 345}, + [3727] = {.lex_state = 345}, + [3728] = {.lex_state = 272}, + [3729] = {.lex_state = 126}, [3730] = {.lex_state = 126}, - [3731] = {.lex_state = 126}, + [3731] = {.lex_state = 926}, [3732] = {.lex_state = 126}, [3733] = {.lex_state = 126}, [3734] = {.lex_state = 126}, [3735] = {.lex_state = 126}, - [3736] = {.lex_state = 318}, + [3736] = {.lex_state = 319}, [3737] = {.lex_state = 126}, - [3738] = {.lex_state = 126}, + [3738] = {.lex_state = 319}, [3739] = {.lex_state = 126}, [3740] = {.lex_state = 126}, [3741] = {.lex_state = 126}, [3742] = {.lex_state = 126}, - [3743] = {.lex_state = 318}, - [3744] = {.lex_state = 346}, - [3745] = {.lex_state = 318}, - [3746] = {.lex_state = 318}, + [3743] = {.lex_state = 126}, + [3744] = {.lex_state = 126}, + [3745] = {.lex_state = 126}, + [3746] = {.lex_state = 126}, [3747] = {.lex_state = 126}, - [3748] = {.lex_state = 318}, - [3749] = {.lex_state = 318}, - [3750] = {.lex_state = 318}, - [3751] = {.lex_state = 246}, - [3752] = {.lex_state = 318}, - [3753] = {.lex_state = 318}, - [3754] = {.lex_state = 126}, + [3748] = {.lex_state = 126}, + [3749] = {.lex_state = 126}, + [3750] = {.lex_state = 126}, + [3751] = {.lex_state = 126}, + [3752] = {.lex_state = 126}, + [3753] = {.lex_state = 126}, + [3754] = {.lex_state = 319}, [3755] = {.lex_state = 126}, [3756] = {.lex_state = 126}, - [3757] = {.lex_state = 126}, - [3758] = {.lex_state = 126}, - [3759] = {.lex_state = 126}, - [3760] = {.lex_state = 126}, - [3761] = {.lex_state = 126}, + [3757] = {.lex_state = 347}, + [3758] = {.lex_state = 347}, + [3759] = {.lex_state = 347}, + [3760] = {.lex_state = 347}, + [3761] = {.lex_state = 319}, [3762] = {.lex_state = 126}, - [3763] = {.lex_state = 126}, - [3764] = {.lex_state = 126}, - [3765] = {.lex_state = 346}, - [3766] = {.lex_state = 318}, - [3767] = {.lex_state = 126}, - [3768] = {.lex_state = 126}, - [3769] = {.lex_state = 318}, - [3770] = {.lex_state = 126}, - [3771] = {.lex_state = 318}, - [3772] = {.lex_state = 126}, - [3773] = {.lex_state = 126}, - [3774] = {.lex_state = 126}, - [3775] = {.lex_state = 126}, - [3776] = {.lex_state = 126}, - [3777] = {.lex_state = 126}, - [3778] = {.lex_state = 318}, - [3779] = {.lex_state = 126}, - [3780] = {.lex_state = 126}, - [3781] = {.lex_state = 318}, - [3782] = {.lex_state = 126}, - [3783] = {.lex_state = 318}, - [3784] = {.lex_state = 126}, - [3785] = {.lex_state = 318}, - [3786] = {.lex_state = 318}, - [3787] = {.lex_state = 126}, - [3788] = {.lex_state = 126}, - [3789] = {.lex_state = 126}, - [3790] = {.lex_state = 318}, - [3791] = {.lex_state = 126}, - [3792] = {.lex_state = 318}, - [3793] = {.lex_state = 126}, - [3794] = {.lex_state = 318}, - [3795] = {.lex_state = 126}, - [3796] = {.lex_state = 126}, - [3797] = {.lex_state = 318}, - [3798] = {.lex_state = 126}, - [3799] = {.lex_state = 126}, - [3800] = {.lex_state = 318}, - [3801] = {.lex_state = 318}, - [3802] = {.lex_state = 318}, - [3803] = {.lex_state = 318}, - [3804] = {.lex_state = 126}, - [3805] = {.lex_state = 126}, - [3806] = {.lex_state = 126}, - [3807] = {.lex_state = 126}, - [3808] = {.lex_state = 346}, - [3809] = {.lex_state = 318}, - [3810] = {.lex_state = 318}, - [3811] = {.lex_state = 318}, - [3812] = {.lex_state = 318}, - [3813] = {.lex_state = 318}, - [3814] = {.lex_state = 318}, + [3763] = {.lex_state = 319}, + [3764] = {.lex_state = 319}, + [3765] = {.lex_state = 319}, + [3766] = {.lex_state = 319}, + [3767] = {.lex_state = 319}, + [3768] = {.lex_state = 319}, + [3769] = {.lex_state = 319}, + [3770] = {.lex_state = 319}, + [3771] = {.lex_state = 319}, + [3772] = {.lex_state = 319}, + [3773] = {.lex_state = 319}, + [3774] = {.lex_state = 319}, + [3775] = {.lex_state = 319}, + [3776] = {.lex_state = 319}, + [3777] = {.lex_state = 319}, + [3778] = {.lex_state = 319}, + [3779] = {.lex_state = 319}, + [3780] = {.lex_state = 319}, + [3781] = {.lex_state = 319}, + [3782] = {.lex_state = 319}, + [3783] = {.lex_state = 319}, + [3784] = {.lex_state = 319}, + [3785] = {.lex_state = 319}, + [3786] = {.lex_state = 319}, + [3787] = {.lex_state = 319}, + [3788] = {.lex_state = 319}, + [3789] = {.lex_state = 319}, + [3790] = {.lex_state = 319}, + [3791] = {.lex_state = 319}, + [3792] = {.lex_state = 319}, + [3793] = {.lex_state = 319}, + [3794] = {.lex_state = 319}, + [3795] = {.lex_state = 319}, + [3796] = {.lex_state = 319}, + [3797] = {.lex_state = 319}, + [3798] = {.lex_state = 319}, + [3799] = {.lex_state = 319}, + [3800] = {.lex_state = 319}, + [3801] = {.lex_state = 319}, + [3802] = {.lex_state = 319}, + [3803] = {.lex_state = 319}, + [3804] = {.lex_state = 347}, + [3805] = {.lex_state = 319}, + [3806] = {.lex_state = 319}, + [3807] = {.lex_state = 319}, + [3808] = {.lex_state = 319}, + [3809] = {.lex_state = 319}, + [3810] = {.lex_state = 319}, + [3811] = {.lex_state = 319}, + [3812] = {.lex_state = 126}, + [3813] = {.lex_state = 246}, + [3814] = {.lex_state = 319}, [3815] = {.lex_state = 126}, - [3816] = {.lex_state = 346}, - [3817] = {.lex_state = 318}, - [3818] = {.lex_state = 925}, - [3819] = {.lex_state = 318}, - [3820] = {.lex_state = 318}, - [3821] = {.lex_state = 318}, + [3816] = {.lex_state = 126}, + [3817] = {.lex_state = 126}, + [3818] = {.lex_state = 126}, + [3819] = {.lex_state = 126}, + [3820] = {.lex_state = 126}, + [3821] = {.lex_state = 126}, [3822] = {.lex_state = 126}, - [3823] = {.lex_state = 318}, + [3823] = {.lex_state = 126}, [3824] = {.lex_state = 126}, - [3825] = {.lex_state = 318}, - [3826] = {.lex_state = 318}, - [3827] = {.lex_state = 318}, - [3828] = {.lex_state = 318}, - [3829] = {.lex_state = 318}, - [3830] = {.lex_state = 318}, + [3825] = {.lex_state = 126}, + [3826] = {.lex_state = 126}, + [3827] = {.lex_state = 126}, + [3828] = {.lex_state = 126}, + [3829] = {.lex_state = 319}, + [3830] = {.lex_state = 126}, [3831] = {.lex_state = 126}, - [3832] = {.lex_state = 346}, - [3833] = {.lex_state = 318}, - [3834] = {.lex_state = 318}, - [3835] = {.lex_state = 346}, - [3836] = {.lex_state = 126}, - [3837] = {.lex_state = 318}, + [3832] = {.lex_state = 126}, + [3833] = {.lex_state = 126}, + [3834] = {.lex_state = 319}, + [3835] = {.lex_state = 126}, + [3836] = {.lex_state = 319}, + [3837] = {.lex_state = 319}, [3838] = {.lex_state = 126}, - [3839] = {.lex_state = 318}, - [3840] = {.lex_state = 346}, - [3841] = {.lex_state = 346}, - [3842] = {.lex_state = 126}, - [3843] = {.lex_state = 318}, - [3844] = {.lex_state = 318}, - [3845] = {.lex_state = 318}, - [3846] = {.lex_state = 318}, - [3847] = {.lex_state = 318}, - [3848] = {.lex_state = 318}, - [3849] = {.lex_state = 318}, + [3839] = {.lex_state = 126}, + [3840] = {.lex_state = 126}, + [3841] = {.lex_state = 319}, + [3842] = {.lex_state = 319}, + [3843] = {.lex_state = 319}, + [3844] = {.lex_state = 126}, + [3845] = {.lex_state = 126}, + [3846] = {.lex_state = 126}, + [3847] = {.lex_state = 126}, + [3848] = {.lex_state = 126}, + [3849] = {.lex_state = 126}, [3850] = {.lex_state = 126}, - [3851] = {.lex_state = 318}, + [3851] = {.lex_state = 126}, [3852] = {.lex_state = 126}, - [3853] = {.lex_state = 126}, + [3853] = {.lex_state = 347}, [3854] = {.lex_state = 126}, - [3855] = {.lex_state = 318}, - [3856] = {.lex_state = 318}, - [3857] = {.lex_state = 318}, - [3858] = {.lex_state = 318}, + [3855] = {.lex_state = 126}, + [3856] = {.lex_state = 126}, + [3857] = {.lex_state = 126}, + [3858] = {.lex_state = 126}, [3859] = {.lex_state = 126}, - [3860] = {.lex_state = 318}, - [3861] = {.lex_state = 126}, - [3862] = {.lex_state = 318}, - [3863] = {.lex_state = 318}, - [3864] = {.lex_state = 925}, - [3865] = {.lex_state = 346}, - [3866] = {.lex_state = 318}, - [3867] = {.lex_state = 924}, - [3868] = {.lex_state = 924}, - [3869] = {.lex_state = 924}, - [3870] = {.lex_state = 924}, - [3871] = {.lex_state = 924}, - [3872] = {.lex_state = 924}, - [3873] = {.lex_state = 924}, - [3874] = {.lex_state = 927}, - [3875] = {.lex_state = 924}, - [3876] = {.lex_state = 924}, - [3877] = {.lex_state = 924}, - [3878] = {.lex_state = 924}, - [3879] = {.lex_state = 924}, - [3880] = {.lex_state = 927}, - [3881] = {.lex_state = 926}, - [3882] = {.lex_state = 926}, - [3883] = {.lex_state = 926}, - [3884] = {.lex_state = 926}, - [3885] = {.lex_state = 926}, - [3886] = {.lex_state = 926}, - [3887] = {.lex_state = 926}, - [3888] = {.lex_state = 926}, - [3889] = {.lex_state = 926}, - [3890] = {.lex_state = 926}, - [3891] = {.lex_state = 927}, - [3892] = {.lex_state = 926}, - [3893] = {.lex_state = 926}, + [3860] = {.lex_state = 347}, + [3861] = {.lex_state = 319}, + [3862] = {.lex_state = 347}, + [3863] = {.lex_state = 319}, + [3864] = {.lex_state = 926}, + [3865] = {.lex_state = 347}, + [3866] = {.lex_state = 319}, + [3867] = {.lex_state = 925}, + [3868] = {.lex_state = 925}, + [3869] = {.lex_state = 925}, + [3870] = {.lex_state = 925}, + [3871] = {.lex_state = 925}, + [3872] = {.lex_state = 925}, + [3873] = {.lex_state = 925}, + [3874] = {.lex_state = 925}, + [3875] = {.lex_state = 928}, + [3876] = {.lex_state = 925}, + [3877] = {.lex_state = 925}, + [3878] = {.lex_state = 925}, + [3879] = {.lex_state = 925}, + [3880] = {.lex_state = 928}, + [3881] = {.lex_state = 927}, + [3882] = {.lex_state = 927}, + [3883] = {.lex_state = 927}, + [3884] = {.lex_state = 927}, + [3885] = {.lex_state = 927}, + [3886] = {.lex_state = 927}, + [3887] = {.lex_state = 927}, + [3888] = {.lex_state = 927}, + [3889] = {.lex_state = 927}, + [3890] = {.lex_state = 928}, + [3891] = {.lex_state = 928}, + [3892] = {.lex_state = 927}, + [3893] = {.lex_state = 927}, [3894] = {.lex_state = 927}, - [3895] = {.lex_state = 926}, - [3896] = {.lex_state = 926}, - [3897] = {.lex_state = 926}, - [3898] = {.lex_state = 926}, - [3899] = {.lex_state = 926}, - [3900] = {.lex_state = 926}, - [3901] = {.lex_state = 926}, - [3902] = {.lex_state = 926}, - [3903] = {.lex_state = 926}, - [3904] = {.lex_state = 926}, - [3905] = {.lex_state = 926}, - [3906] = {.lex_state = 926}, - [3907] = {.lex_state = 883}, - [3908] = {.lex_state = 883}, - [3909] = {.lex_state = 347}, - [3910] = {.lex_state = 883}, - [3911] = {.lex_state = 886}, - [3912] = {.lex_state = 886}, - [3913] = {.lex_state = 886}, - [3914] = {.lex_state = 886}, - [3915] = {.lex_state = 886}, - [3916] = {.lex_state = 883}, - [3917] = {.lex_state = 921}, - [3918] = {.lex_state = 886}, - [3919] = {.lex_state = 886}, - [3920] = {.lex_state = 886}, - [3921] = {.lex_state = 886}, + [3895] = {.lex_state = 927}, + [3896] = {.lex_state = 927}, + [3897] = {.lex_state = 927}, + [3898] = {.lex_state = 927}, + [3899] = {.lex_state = 927}, + [3900] = {.lex_state = 927}, + [3901] = {.lex_state = 927}, + [3902] = {.lex_state = 927}, + [3903] = {.lex_state = 927}, + [3904] = {.lex_state = 927}, + [3905] = {.lex_state = 927}, + [3906] = {.lex_state = 927}, + [3907] = {.lex_state = 884}, + [3908] = {.lex_state = 348}, + [3909] = {.lex_state = 884}, + [3910] = {.lex_state = 887}, + [3911] = {.lex_state = 887}, + [3912] = {.lex_state = 887}, + [3913] = {.lex_state = 887}, + [3914] = {.lex_state = 884}, + [3915] = {.lex_state = 887}, + [3916] = {.lex_state = 884}, + [3917] = {.lex_state = 888}, + [3918] = {.lex_state = 888}, + [3919] = {.lex_state = 887}, + [3920] = {.lex_state = 888}, + [3921] = {.lex_state = 888}, [3922] = {.lex_state = 887}, - [3923] = {.lex_state = 887}, - [3924] = {.lex_state = 887}, - [3925] = {.lex_state = 886}, + [3923] = {.lex_state = 888}, + [3924] = {.lex_state = 922}, + [3925] = {.lex_state = 887}, [3926] = {.lex_state = 887}, [3927] = {.lex_state = 887}, - [3928] = {.lex_state = 890}, - [3929] = {.lex_state = 887}, - [3930] = {.lex_state = 887}, - [3931] = {.lex_state = 890}, - [3932] = {.lex_state = 890}, - [3933] = {.lex_state = 887}, - [3934] = {.lex_state = 890}, - [3935] = {.lex_state = 890}, - [3936] = {.lex_state = 885}, - [3937] = {.lex_state = 921}, - [3938] = {.lex_state = 890}, - [3939] = {.lex_state = 885}, - [3940] = {.lex_state = 890}, - [3941] = {.lex_state = 908}, - [3942] = {.lex_state = 890}, - [3943] = {.lex_state = 890}, - [3944] = {.lex_state = 890}, - [3945] = {.lex_state = 890}, - [3946] = {.lex_state = 884}, - [3947] = {.lex_state = 890}, - [3948] = {.lex_state = 887}, - [3949] = {.lex_state = 887}, - [3950] = {.lex_state = 890}, - [3951] = {.lex_state = 890}, - [3952] = {.lex_state = 890}, - [3953] = {.lex_state = 884}, - [3954] = {.lex_state = 908}, - [3955] = {.lex_state = 889}, - [3956] = {.lex_state = 820}, - [3957] = {.lex_state = 890}, - [3958] = {.lex_state = 890}, + [3928] = {.lex_state = 891}, + [3929] = {.lex_state = 891}, + [3930] = {.lex_state = 891}, + [3931] = {.lex_state = 891}, + [3932] = {.lex_state = 909}, + [3933] = {.lex_state = 891}, + [3934] = {.lex_state = 885}, + [3935] = {.lex_state = 886}, + [3936] = {.lex_state = 891}, + [3937] = {.lex_state = 891}, + [3938] = {.lex_state = 888}, + [3939] = {.lex_state = 886}, + [3940] = {.lex_state = 891}, + [3941] = {.lex_state = 891}, + [3942] = {.lex_state = 888}, + [3943] = {.lex_state = 885}, + [3944] = {.lex_state = 888}, + [3945] = {.lex_state = 891}, + [3946] = {.lex_state = 891}, + [3947] = {.lex_state = 888}, + [3948] = {.lex_state = 891}, + [3949] = {.lex_state = 922}, + [3950] = {.lex_state = 891}, + [3951] = {.lex_state = 888}, + [3952] = {.lex_state = 891}, + [3953] = {.lex_state = 891}, + [3954] = {.lex_state = 885}, + [3955] = {.lex_state = 921}, + [3956] = {.lex_state = 921}, + [3957] = {.lex_state = 921}, + [3958] = {.lex_state = 889}, [3959] = {.lex_state = 890}, - [3960] = {.lex_state = 890}, - [3961] = {.lex_state = 820}, - [3962] = {.lex_state = 890}, - [3963] = {.lex_state = 889}, - [3964] = {.lex_state = 907}, + [3960] = {.lex_state = 891}, + [3961] = {.lex_state = 921}, + [3962] = {.lex_state = 891}, + [3963] = {.lex_state = 891}, + [3964] = {.lex_state = 889}, [3965] = {.lex_state = 889}, [3966] = {.lex_state = 890}, - [3967] = {.lex_state = 884}, - [3968] = {.lex_state = 889}, - [3969] = {.lex_state = 889}, - [3970] = {.lex_state = 890}, - [3971] = {.lex_state = 911}, - [3972] = {.lex_state = 920}, - [3973] = {.lex_state = 889}, - [3974] = {.lex_state = 820}, - [3975] = {.lex_state = 911}, - [3976] = {.lex_state = 820}, - [3977] = {.lex_state = 884}, - [3978] = {.lex_state = 911}, - [3979] = {.lex_state = 888}, - [3980] = {.lex_state = 889}, - [3981] = {.lex_state = 890}, - [3982] = {.lex_state = 890}, - [3983] = {.lex_state = 889}, - [3984] = {.lex_state = 888}, - [3985] = {.lex_state = 888}, - [3986] = {.lex_state = 890}, - [3987] = {.lex_state = 888}, - [3988] = {.lex_state = 890}, - [3989] = {.lex_state = 890}, - [3990] = {.lex_state = 890}, - [3991] = {.lex_state = 890}, - [3992] = {.lex_state = 907}, - [3993] = {.lex_state = 885}, - [3994] = {.lex_state = 890}, - [3995] = {.lex_state = 920}, - [3996] = {.lex_state = 920}, - [3997] = {.lex_state = 885}, - [3998] = {.lex_state = 920}, - [3999] = {.lex_state = 920}, - [4000] = {.lex_state = 920}, - [4001] = {.lex_state = 820}, - [4002] = {.lex_state = 907}, - [4003] = {.lex_state = 890}, - [4004] = {.lex_state = 820}, - [4005] = {.lex_state = 72}, - [4006] = {.lex_state = 820}, - [4007] = {.lex_state = 909}, - [4008] = {.lex_state = 890}, - [4009] = {.lex_state = 890}, - [4010] = {.lex_state = 890}, - [4011] = {.lex_state = 912}, - [4012] = {.lex_state = 911}, - [4013] = {.lex_state = 890}, - [4014] = {.lex_state = 889}, - [4015] = {.lex_state = 912}, - [4016] = {.lex_state = 890}, - [4017] = {.lex_state = 907}, - [4018] = {.lex_state = 890}, - [4019] = {.lex_state = 889}, + [3967] = {.lex_state = 821}, + [3968] = {.lex_state = 890}, + [3969] = {.lex_state = 890}, + [3970] = {.lex_state = 891}, + [3971] = {.lex_state = 891}, + [3972] = {.lex_state = 890}, + [3973] = {.lex_state = 912}, + [3974] = {.lex_state = 912}, + [3975] = {.lex_state = 890}, + [3976] = {.lex_state = 891}, + [3977] = {.lex_state = 909}, + [3978] = {.lex_state = 821}, + [3979] = {.lex_state = 891}, + [3980] = {.lex_state = 890}, + [3981] = {.lex_state = 891}, + [3982] = {.lex_state = 886}, + [3983] = {.lex_state = 921}, + [3984] = {.lex_state = 891}, + [3985] = {.lex_state = 908}, + [3986] = {.lex_state = 821}, + [3987] = {.lex_state = 891}, + [3988] = {.lex_state = 921}, + [3989] = {.lex_state = 891}, + [3990] = {.lex_state = 891}, + [3991] = {.lex_state = 912}, + [3992] = {.lex_state = 885}, + [3993] = {.lex_state = 891}, + [3994] = {.lex_state = 821}, + [3995] = {.lex_state = 891}, + [3996] = {.lex_state = 908}, + [3997] = {.lex_state = 889}, + [3998] = {.lex_state = 890}, + [3999] = {.lex_state = 891}, + [4000] = {.lex_state = 886}, + [4001] = {.lex_state = 890}, + [4002] = {.lex_state = 921}, + [4003] = {.lex_state = 891}, + [4004] = {.lex_state = 889}, + [4005] = {.lex_state = 891}, + [4006] = {.lex_state = 891}, + [4007] = {.lex_state = 908}, + [4008] = {.lex_state = 891}, + [4009] = {.lex_state = 921}, + [4010] = {.lex_state = 821}, + [4011] = {.lex_state = 821}, + [4012] = {.lex_state = 913}, + [4013] = {.lex_state = 891}, + [4014] = {.lex_state = 891}, + [4015] = {.lex_state = 132}, + [4016] = {.lex_state = 889}, + [4017] = {.lex_state = 912}, + [4018] = {.lex_state = 891}, + [4019] = {.lex_state = 72}, [4020] = {.lex_state = 890}, - [4021] = {.lex_state = 889}, - [4022] = {.lex_state = 890}, - [4023] = {.lex_state = 890}, - [4024] = {.lex_state = 888}, - [4025] = {.lex_state = 888}, - [4026] = {.lex_state = 889}, - [4027] = {.lex_state = 889}, - [4028] = {.lex_state = 890}, - [4029] = {.lex_state = 912}, - [4030] = {.lex_state = 72}, - [4031] = {.lex_state = 890}, - [4032] = {.lex_state = 889}, - [4033] = {.lex_state = 920}, - [4034] = {.lex_state = 890}, - [4035] = {.lex_state = 917}, - [4036] = {.lex_state = 889}, - [4037] = {.lex_state = 890}, - [4038] = {.lex_state = 890}, - [4039] = {.lex_state = 920}, - [4040] = {.lex_state = 920}, - [4041] = {.lex_state = 890}, + [4021] = {.lex_state = 890}, + [4022] = {.lex_state = 891}, + [4023] = {.lex_state = 889}, + [4024] = {.lex_state = 890}, + [4025] = {.lex_state = 912}, + [4026] = {.lex_state = 910}, + [4027] = {.lex_state = 932}, + [4028] = {.lex_state = 72}, + [4029] = {.lex_state = 890}, + [4030] = {.lex_state = 913}, + [4031] = {.lex_state = 891}, + [4032] = {.lex_state = 891}, + [4033] = {.lex_state = 891}, + [4034] = {.lex_state = 891}, + [4035] = {.lex_state = 132}, + [4036] = {.lex_state = 891}, + [4037] = {.lex_state = 821}, + [4038] = {.lex_state = 891}, + [4039] = {.lex_state = 891}, + [4040] = {.lex_state = 378}, + [4041] = {.lex_state = 908}, [4042] = {.lex_state = 890}, - [4043] = {.lex_state = 920}, - [4044] = {.lex_state = 889}, - [4045] = {.lex_state = 920}, - [4046] = {.lex_state = 920}, - [4047] = {.lex_state = 890}, - [4048] = {.lex_state = 888}, - [4049] = {.lex_state = 923}, - [4050] = {.lex_state = 377}, - [4051] = {.lex_state = 911}, - [4052] = {.lex_state = 134}, - [4053] = {.lex_state = 911}, - [4054] = {.lex_state = 923}, - [4055] = {.lex_state = 931}, - [4056] = {.lex_state = 820}, - [4057] = {.lex_state = 134}, - [4058] = {.lex_state = 888}, - [4059] = {.lex_state = 376}, - [4060] = {.lex_state = 914}, - [4061] = {.lex_state = 914}, - [4062] = {.lex_state = 914}, - [4063] = {.lex_state = 914}, - [4064] = {.lex_state = 914}, - [4065] = {.lex_state = 914}, - [4066] = {.lex_state = 914}, - [4067] = {.lex_state = 914}, - [4068] = {.lex_state = 914}, - [4069] = {.lex_state = 914}, - [4070] = {.lex_state = 914}, - [4071] = {.lex_state = 914}, - [4072] = {.lex_state = 914}, - [4073] = {.lex_state = 914}, - [4074] = {.lex_state = 914}, - [4075] = {.lex_state = 914}, - [4076] = {.lex_state = 890}, - [4077] = {.lex_state = 914}, - [4078] = {.lex_state = 914}, - [4079] = {.lex_state = 75}, - [4080] = {.lex_state = 914}, - [4081] = {.lex_state = 914}, - [4082] = {.lex_state = 914}, - [4083] = {.lex_state = 890}, - [4084] = {.lex_state = 914}, - [4085] = {.lex_state = 914}, - [4086] = {.lex_state = 890}, - [4087] = {.lex_state = 914}, - [4088] = {.lex_state = 178}, - [4089] = {.lex_state = 917}, - [4090] = {.lex_state = 914}, - [4091] = {.lex_state = 820}, - [4092] = {.lex_state = 914}, - [4093] = {.lex_state = 820}, - [4094] = {.lex_state = 914}, - [4095] = {.lex_state = 914}, - [4096] = {.lex_state = 914}, - [4097] = {.lex_state = 914}, - [4098] = {.lex_state = 80}, - [4099] = {.lex_state = 914}, - [4100] = {.lex_state = 820}, - [4101] = {.lex_state = 914}, - [4102] = {.lex_state = 914}, - [4103] = {.lex_state = 135}, - [4104] = {.lex_state = 912}, - [4105] = {.lex_state = 890}, - [4106] = {.lex_state = 75}, - [4107] = {.lex_state = 914}, - [4108] = {.lex_state = 890}, - [4109] = {.lex_state = 914}, - [4110] = {.lex_state = 914}, - [4111] = {.lex_state = 914}, - [4112] = {.lex_state = 912}, - [4113] = {.lex_state = 914}, - [4114] = {.lex_state = 914}, - [4115] = {.lex_state = 890}, - [4116] = {.lex_state = 80}, - [4117] = {.lex_state = 914}, - [4118] = {.lex_state = 914}, - [4119] = {.lex_state = 914}, - [4120] = {.lex_state = 820}, - [4121] = {.lex_state = 914}, - [4122] = {.lex_state = 73}, - [4123] = {.lex_state = 914}, - [4124] = {.lex_state = 914}, - [4125] = {.lex_state = 73}, - [4126] = {.lex_state = 914}, - [4127] = {.lex_state = 914}, - [4128] = {.lex_state = 914}, - [4129] = {.lex_state = 914}, - [4130] = {.lex_state = 914}, - [4131] = {.lex_state = 914}, - [4132] = {.lex_state = 912}, - [4133] = {.lex_state = 135}, + [4043] = {.lex_state = 924}, + [4044] = {.lex_state = 890}, + [4045] = {.lex_state = 921}, + [4046] = {.lex_state = 821}, + [4047] = {.lex_state = 921}, + [4048] = {.lex_state = 891}, + [4049] = {.lex_state = 913}, + [4050] = {.lex_state = 924}, + [4051] = {.lex_state = 921}, + [4052] = {.lex_state = 921}, + [4053] = {.lex_state = 889}, + [4054] = {.lex_state = 918}, + [4055] = {.lex_state = 912}, + [4056] = {.lex_state = 891}, + [4057] = {.lex_state = 891}, + [4058] = {.lex_state = 890}, + [4059] = {.lex_state = 891}, + [4060] = {.lex_state = 915}, + [4061] = {.lex_state = 915}, + [4062] = {.lex_state = 915}, + [4063] = {.lex_state = 915}, + [4064] = {.lex_state = 915}, + [4065] = {.lex_state = 915}, + [4066] = {.lex_state = 915}, + [4067] = {.lex_state = 915}, + [4068] = {.lex_state = 915}, + [4069] = {.lex_state = 915}, + [4070] = {.lex_state = 915}, + [4071] = {.lex_state = 363}, + [4072] = {.lex_state = 915}, + [4073] = {.lex_state = 915}, + [4074] = {.lex_state = 915}, + [4075] = {.lex_state = 915}, + [4076] = {.lex_state = 915}, + [4077] = {.lex_state = 915}, + [4078] = {.lex_state = 915}, + [4079] = {.lex_state = 915}, + [4080] = {.lex_state = 915}, + [4081] = {.lex_state = 915}, + [4082] = {.lex_state = 915}, + [4083] = {.lex_state = 915}, + [4084] = {.lex_state = 915}, + [4085] = {.lex_state = 915}, + [4086] = {.lex_state = 915}, + [4087] = {.lex_state = 915}, + [4088] = {.lex_state = 915}, + [4089] = {.lex_state = 915}, + [4090] = {.lex_state = 915}, + [4091] = {.lex_state = 470}, + [4092] = {.lex_state = 915}, + [4093] = {.lex_state = 915}, + [4094] = {.lex_state = 915}, + [4095] = {.lex_state = 915}, + [4096] = {.lex_state = 915}, + [4097] = {.lex_state = 915}, + [4098] = {.lex_state = 915}, + [4099] = {.lex_state = 915}, + [4100] = {.lex_state = 891}, + [4101] = {.lex_state = 915}, + [4102] = {.lex_state = 915}, + [4103] = {.lex_state = 915}, + [4104] = {.lex_state = 924}, + [4105] = {.lex_state = 924}, + [4106] = {.lex_state = 915}, + [4107] = {.lex_state = 915}, + [4108] = {.lex_state = 915}, + [4109] = {.lex_state = 915}, + [4110] = {.lex_state = 80}, + [4111] = {.lex_state = 915}, + [4112] = {.lex_state = 915}, + [4113] = {.lex_state = 80}, + [4114] = {.lex_state = 178}, + [4115] = {.lex_state = 891}, + [4116] = {.lex_state = 915}, + [4117] = {.lex_state = 915}, + [4118] = {.lex_state = 73}, + [4119] = {.lex_state = 891}, + [4120] = {.lex_state = 918}, + [4121] = {.lex_state = 915}, + [4122] = {.lex_state = 915}, + [4123] = {.lex_state = 73}, + [4124] = {.lex_state = 915}, + [4125] = {.lex_state = 135}, + [4126] = {.lex_state = 891}, + [4127] = {.lex_state = 135}, + [4128] = {.lex_state = 73}, + [4129] = {.lex_state = 915}, + [4130] = {.lex_state = 915}, + [4131] = {.lex_state = 135}, + [4132] = {.lex_state = 73}, + [4133] = {.lex_state = 73}, [4134] = {.lex_state = 135}, - [4135] = {.lex_state = 73}, - [4136] = {.lex_state = 914}, - [4137] = {.lex_state = 73}, - [4138] = {.lex_state = 914}, - [4139] = {.lex_state = 914}, - [4140] = {.lex_state = 920}, - [4141] = {.lex_state = 920}, - [4142] = {.lex_state = 920}, - [4143] = {.lex_state = 920}, - [4144] = {.lex_state = 920}, - [4145] = {.lex_state = 135}, - [4146] = {.lex_state = 914}, - [4147] = {.lex_state = 914}, - [4148] = {.lex_state = 920}, - [4149] = {.lex_state = 914}, - [4150] = {.lex_state = 920}, - [4151] = {.lex_state = 920}, - [4152] = {.lex_state = 914}, - [4153] = {.lex_state = 914}, - [4154] = {.lex_state = 890}, - [4155] = {.lex_state = 914}, - [4156] = {.lex_state = 914}, - [4157] = {.lex_state = 914}, - [4158] = {.lex_state = 914}, - [4159] = {.lex_state = 931}, - [4160] = {.lex_state = 914}, - [4161] = {.lex_state = 914}, - [4162] = {.lex_state = 914}, - [4163] = {.lex_state = 914}, - [4164] = {.lex_state = 920}, - [4165] = {.lex_state = 469}, - [4166] = {.lex_state = 820}, - [4167] = {.lex_state = 920}, - [4168] = {.lex_state = 914}, - [4169] = {.lex_state = 914}, - [4170] = {.lex_state = 920}, - [4171] = {.lex_state = 920}, - [4172] = {.lex_state = 914}, - [4173] = {.lex_state = 914}, - [4174] = {.lex_state = 820}, - [4175] = {.lex_state = 914}, - [4176] = {.lex_state = 923}, - [4177] = {.lex_state = 923}, - [4178] = {.lex_state = 469}, - [4179] = {.lex_state = 914}, - [4180] = {.lex_state = 362}, - [4181] = {.lex_state = 914}, - [4182] = {.lex_state = 890}, - [4183] = {.lex_state = 914}, - [4184] = {.lex_state = 914}, - [4185] = {.lex_state = 914}, - [4186] = {.lex_state = 909}, - [4187] = {.lex_state = 914}, - [4188] = {.lex_state = 914}, - [4189] = {.lex_state = 820}, - [4190] = {.lex_state = 914}, - [4191] = {.lex_state = 890}, - [4192] = {.lex_state = 890}, - [4193] = {.lex_state = 890}, - [4194] = {.lex_state = 469}, - [4195] = {.lex_state = 914}, - [4196] = {.lex_state = 135}, - [4197] = {.lex_state = 914}, - [4198] = {.lex_state = 914}, - [4199] = {.lex_state = 914}, - [4200] = {.lex_state = 914}, - [4201] = {.lex_state = 914}, - [4202] = {.lex_state = 914}, - [4203] = {.lex_state = 820}, - [4204] = {.lex_state = 890}, - [4205] = {.lex_state = 890}, - [4206] = {.lex_state = 890}, - [4207] = {.lex_state = 890}, - [4208] = {.lex_state = 890}, - [4209] = {.lex_state = 890}, - [4210] = {.lex_state = 890}, - [4211] = {.lex_state = 914}, - [4212] = {.lex_state = 469}, - [4213] = {.lex_state = 914}, - [4214] = {.lex_state = 914}, - [4215] = {.lex_state = 914}, - [4216] = {.lex_state = 914}, - [4217] = {.lex_state = 73}, - [4218] = {.lex_state = 914}, - [4219] = {.lex_state = 914}, - [4220] = {.lex_state = 914}, - [4221] = {.lex_state = 914}, - [4222] = {.lex_state = 914}, - [4223] = {.lex_state = 76}, - [4224] = {.lex_state = 914}, - [4225] = {.lex_state = 914}, - [4226] = {.lex_state = 914}, - [4227] = {.lex_state = 914}, - [4228] = {.lex_state = 914}, - [4229] = {.lex_state = 3}, - [4230] = {.lex_state = 914}, - [4231] = {.lex_state = 914}, - [4232] = {.lex_state = 81}, - [4233] = {.lex_state = 914}, - [4234] = {.lex_state = 914}, - [4235] = {.lex_state = 798}, - [4236] = {.lex_state = 914}, - [4237] = {.lex_state = 914}, - [4238] = {.lex_state = 820}, - [4239] = {.lex_state = 914}, - [4240] = {.lex_state = 133}, - [4241] = {.lex_state = 914}, - [4242] = {.lex_state = 133}, - [4243] = {.lex_state = 820}, - [4244] = {.lex_state = 914}, - [4245] = {.lex_state = 3}, - [4246] = {.lex_state = 133}, - [4247] = {.lex_state = 133}, - [4248] = {.lex_state = 914}, - [4249] = {.lex_state = 914}, - [4250] = {.lex_state = 133}, - [4251] = {.lex_state = 914}, - [4252] = {.lex_state = 914}, - [4253] = {.lex_state = 914}, - [4254] = {.lex_state = 914}, - [4255] = {.lex_state = 914}, - [4256] = {.lex_state = 914}, - [4257] = {.lex_state = 914}, - [4258] = {.lex_state = 914}, - [4259] = {.lex_state = 3}, - [4260] = {.lex_state = 133}, - [4261] = {.lex_state = 914}, - [4262] = {.lex_state = 914}, - [4263] = {.lex_state = 354}, - [4264] = {.lex_state = 914}, - [4265] = {.lex_state = 914}, - [4266] = {.lex_state = 83}, - [4267] = {.lex_state = 914}, - [4268] = {.lex_state = 133}, - [4269] = {.lex_state = 914}, - [4270] = {.lex_state = 133}, - [4271] = {.lex_state = 180}, - [4272] = {.lex_state = 914}, - [4273] = {.lex_state = 914}, - [4274] = {.lex_state = 914}, - [4275] = {.lex_state = 820}, - [4276] = {.lex_state = 3}, + [4135] = {.lex_state = 891}, + [4136] = {.lex_state = 470}, + [4137] = {.lex_state = 135}, + [4138] = {.lex_state = 821}, + [4139] = {.lex_state = 821}, + [4140] = {.lex_state = 915}, + [4141] = {.lex_state = 377}, + [4142] = {.lex_state = 891}, + [4143] = {.lex_state = 915}, + [4144] = {.lex_state = 910}, + [4145] = {.lex_state = 915}, + [4146] = {.lex_state = 470}, + [4147] = {.lex_state = 891}, + [4148] = {.lex_state = 821}, + [4149] = {.lex_state = 821}, + [4150] = {.lex_state = 915}, + [4151] = {.lex_state = 932}, + [4152] = {.lex_state = 75}, + [4153] = {.lex_state = 891}, + [4154] = {.lex_state = 891}, + [4155] = {.lex_state = 75}, + [4156] = {.lex_state = 821}, + [4157] = {.lex_state = 915}, + [4158] = {.lex_state = 915}, + [4159] = {.lex_state = 915}, + [4160] = {.lex_state = 915}, + [4161] = {.lex_state = 915}, + [4162] = {.lex_state = 891}, + [4163] = {.lex_state = 915}, + [4164] = {.lex_state = 915}, + [4165] = {.lex_state = 915}, + [4166] = {.lex_state = 915}, + [4167] = {.lex_state = 915}, + [4168] = {.lex_state = 891}, + [4169] = {.lex_state = 821}, + [4170] = {.lex_state = 915}, + [4171] = {.lex_state = 915}, + [4172] = {.lex_state = 915}, + [4173] = {.lex_state = 891}, + [4174] = {.lex_state = 915}, + [4175] = {.lex_state = 915}, + [4176] = {.lex_state = 915}, + [4177] = {.lex_state = 915}, + [4178] = {.lex_state = 891}, + [4179] = {.lex_state = 891}, + [4180] = {.lex_state = 891}, + [4181] = {.lex_state = 891}, + [4182] = {.lex_state = 915}, + [4183] = {.lex_state = 915}, + [4184] = {.lex_state = 915}, + [4185] = {.lex_state = 915}, + [4186] = {.lex_state = 915}, + [4187] = {.lex_state = 915}, + [4188] = {.lex_state = 915}, + [4189] = {.lex_state = 915}, + [4190] = {.lex_state = 913}, + [4191] = {.lex_state = 915}, + [4192] = {.lex_state = 915}, + [4193] = {.lex_state = 915}, + [4194] = {.lex_state = 915}, + [4195] = {.lex_state = 915}, + [4196] = {.lex_state = 915}, + [4197] = {.lex_state = 915}, + [4198] = {.lex_state = 915}, + [4199] = {.lex_state = 915}, + [4200] = {.lex_state = 913}, + [4201] = {.lex_state = 915}, + [4202] = {.lex_state = 913}, + [4203] = {.lex_state = 915}, + [4204] = {.lex_state = 915}, + [4205] = {.lex_state = 821}, + [4206] = {.lex_state = 915}, + [4207] = {.lex_state = 921}, + [4208] = {.lex_state = 921}, + [4209] = {.lex_state = 921}, + [4210] = {.lex_state = 921}, + [4211] = {.lex_state = 921}, + [4212] = {.lex_state = 921}, + [4213] = {.lex_state = 921}, + [4214] = {.lex_state = 921}, + [4215] = {.lex_state = 921}, + [4216] = {.lex_state = 921}, + [4217] = {.lex_state = 921}, + [4218] = {.lex_state = 921}, + [4219] = {.lex_state = 915}, + [4220] = {.lex_state = 821}, + [4221] = {.lex_state = 891}, + [4222] = {.lex_state = 470}, + [4223] = {.lex_state = 915}, + [4224] = {.lex_state = 3}, + [4225] = {.lex_state = 134}, + [4226] = {.lex_state = 915}, + [4227] = {.lex_state = 74}, + [4228] = {.lex_state = 915}, + [4229] = {.lex_state = 74}, + [4230] = {.lex_state = 134}, + [4231] = {.lex_state = 74}, + [4232] = {.lex_state = 915}, + [4233] = {.lex_state = 3}, + [4234] = {.lex_state = 915}, + [4235] = {.lex_state = 134}, + [4236] = {.lex_state = 915}, + [4237] = {.lex_state = 915}, + [4238] = {.lex_state = 915}, + [4239] = {.lex_state = 915}, + [4240] = {.lex_state = 915}, + [4241] = {.lex_state = 915}, + [4242] = {.lex_state = 915}, + [4243] = {.lex_state = 915}, + [4244] = {.lex_state = 134}, + [4245] = {.lex_state = 915}, + [4246] = {.lex_state = 134}, + [4247] = {.lex_state = 915}, + [4248] = {.lex_state = 915}, + [4249] = {.lex_state = 915}, + [4250] = {.lex_state = 915}, + [4251] = {.lex_state = 134}, + [4252] = {.lex_state = 821}, + [4253] = {.lex_state = 821}, + [4254] = {.lex_state = 915}, + [4255] = {.lex_state = 915}, + [4256] = {.lex_state = 915}, + [4257] = {.lex_state = 915}, + [4258] = {.lex_state = 915}, + [4259] = {.lex_state = 915}, + [4260] = {.lex_state = 915}, + [4261] = {.lex_state = 915}, + [4262] = {.lex_state = 915}, + [4263] = {.lex_state = 915}, + [4264] = {.lex_state = 915}, + [4265] = {.lex_state = 915}, + [4266] = {.lex_state = 915}, + [4267] = {.lex_state = 915}, + [4268] = {.lex_state = 470}, + [4269] = {.lex_state = 915}, + [4270] = {.lex_state = 915}, + [4271] = {.lex_state = 915}, + [4272] = {.lex_state = 83}, + [4273] = {.lex_state = 83}, + [4274] = {.lex_state = 915}, + [4275] = {.lex_state = 915}, + [4276] = {.lex_state = 915}, [4277] = {.lex_state = 74}, - [4278] = {.lex_state = 133}, - [4279] = {.lex_state = 798}, - [4280] = {.lex_state = 3}, - [4281] = {.lex_state = 914}, - [4282] = {.lex_state = 914}, - [4283] = {.lex_state = 914}, - [4284] = {.lex_state = 914}, - [4285] = {.lex_state = 914}, - [4286] = {.lex_state = 914}, - [4287] = {.lex_state = 914}, - [4288] = {.lex_state = 914}, - [4289] = {.lex_state = 914}, - [4290] = {.lex_state = 914}, - [4291] = {.lex_state = 914}, - [4292] = {.lex_state = 914}, - [4293] = {.lex_state = 914}, - [4294] = {.lex_state = 914}, - [4295] = {.lex_state = 914}, - [4296] = {.lex_state = 76}, - [4297] = {.lex_state = 914}, - [4298] = {.lex_state = 76}, - [4299] = {.lex_state = 76}, - [4300] = {.lex_state = 914}, - [4301] = {.lex_state = 76}, - [4302] = {.lex_state = 820}, - [4303] = {.lex_state = 179}, - [4304] = {.lex_state = 914}, - [4305] = {.lex_state = 914}, - [4306] = {.lex_state = 914}, - [4307] = {.lex_state = 914}, - [4308] = {.lex_state = 914}, - [4309] = {.lex_state = 914}, - [4310] = {.lex_state = 914}, - [4311] = {.lex_state = 914}, - [4312] = {.lex_state = 83}, - [4313] = {.lex_state = 914}, - [4314] = {.lex_state = 133}, - [4315] = {.lex_state = 914}, - [4316] = {.lex_state = 914}, - [4317] = {.lex_state = 81}, - [4318] = {.lex_state = 914}, - [4319] = {.lex_state = 914}, - [4320] = {.lex_state = 914}, - [4321] = {.lex_state = 914}, - [4322] = {.lex_state = 914}, - [4323] = {.lex_state = 914}, - [4324] = {.lex_state = 81}, - [4325] = {.lex_state = 133}, - [4326] = {.lex_state = 914}, - [4327] = {.lex_state = 914}, - [4328] = {.lex_state = 914}, - [4329] = {.lex_state = 355}, - [4330] = {.lex_state = 133}, - [4331] = {.lex_state = 914}, - [4332] = {.lex_state = 914}, - [4333] = {.lex_state = 133}, - [4334] = {.lex_state = 133}, - [4335] = {.lex_state = 826}, - [4336] = {.lex_state = 914}, - [4337] = {.lex_state = 914}, - [4338] = {.lex_state = 914}, - [4339] = {.lex_state = 914}, - [4340] = {.lex_state = 914}, - [4341] = {.lex_state = 914}, - [4342] = {.lex_state = 914}, - [4343] = {.lex_state = 914}, - [4344] = {.lex_state = 914}, - [4345] = {.lex_state = 914}, - [4346] = {.lex_state = 914}, - [4347] = {.lex_state = 820}, - [4348] = {.lex_state = 914}, - [4349] = {.lex_state = 914}, - [4350] = {.lex_state = 820}, - [4351] = {.lex_state = 133}, - [4352] = {.lex_state = 3}, - [4353] = {.lex_state = 826}, - [4354] = {.lex_state = 133}, - [4355] = {.lex_state = 920}, - [4356] = {.lex_state = 920}, - [4357] = {.lex_state = 133}, - [4358] = {.lex_state = 81}, - [4359] = {.lex_state = 920}, - [4360] = {.lex_state = 920}, - [4361] = {.lex_state = 469}, - [4362] = {.lex_state = 133}, - [4363] = {.lex_state = 914}, - [4364] = {.lex_state = 914}, - [4365] = {.lex_state = 914}, - [4366] = {.lex_state = 914}, - [4367] = {.lex_state = 914}, - [4368] = {.lex_state = 914}, - [4369] = {.lex_state = 914}, - [4370] = {.lex_state = 914}, - [4371] = {.lex_state = 74}, - [4372] = {.lex_state = 74}, - [4373] = {.lex_state = 914}, - [4374] = {.lex_state = 914}, - [4375] = {.lex_state = 133}, - [4376] = {.lex_state = 914}, - [4377] = {.lex_state = 914}, - [4378] = {.lex_state = 74}, - [4379] = {.lex_state = 920}, - [4380] = {.lex_state = 920}, - [4381] = {.lex_state = 920}, - [4382] = {.lex_state = 920}, - [4383] = {.lex_state = 914}, - [4384] = {.lex_state = 920}, - [4385] = {.lex_state = 920}, - [4386] = {.lex_state = 81}, - [4387] = {.lex_state = 920}, - [4388] = {.lex_state = 920}, - [4389] = {.lex_state = 133}, - [4390] = {.lex_state = 74}, - [4391] = {.lex_state = 914}, - [4392] = {.lex_state = 84}, - [4393] = {.lex_state = 798}, - [4394] = {.lex_state = 875}, - [4395] = {.lex_state = 84}, - [4396] = {.lex_state = 84}, - [4397] = {.lex_state = 799}, - [4398] = {.lex_state = 3}, - [4399] = {.lex_state = 834}, - [4400] = {.lex_state = 84}, - [4401] = {.lex_state = 820}, - [4402] = {.lex_state = 14}, - [4403] = {.lex_state = 133}, - [4404] = {.lex_state = 133}, - [4405] = {.lex_state = 469}, - [4406] = {.lex_state = 133}, - [4407] = {.lex_state = 78}, - [4408] = {.lex_state = 802}, - [4409] = {.lex_state = 68}, - [4410] = {.lex_state = 820}, - [4411] = {.lex_state = 361}, - [4412] = {.lex_state = 3}, - [4413] = {.lex_state = 469}, - [4414] = {.lex_state = 77}, - [4415] = {.lex_state = 826}, - [4416] = {.lex_state = 875}, - [4417] = {.lex_state = 799}, + [4278] = {.lex_state = 821}, + [4279] = {.lex_state = 76}, + [4280] = {.lex_state = 915}, + [4281] = {.lex_state = 915}, + [4282] = {.lex_state = 915}, + [4283] = {.lex_state = 915}, + [4284] = {.lex_state = 915}, + [4285] = {.lex_state = 915}, + [4286] = {.lex_state = 3}, + [4287] = {.lex_state = 76}, + [4288] = {.lex_state = 915}, + [4289] = {.lex_state = 76}, + [4290] = {.lex_state = 76}, + [4291] = {.lex_state = 76}, + [4292] = {.lex_state = 915}, + [4293] = {.lex_state = 821}, + [4294] = {.lex_state = 3}, + [4295] = {.lex_state = 915}, + [4296] = {.lex_state = 915}, + [4297] = {.lex_state = 915}, + [4298] = {.lex_state = 827}, + [4299] = {.lex_state = 915}, + [4300] = {.lex_state = 915}, + [4301] = {.lex_state = 915}, + [4302] = {.lex_state = 915}, + [4303] = {.lex_state = 821}, + [4304] = {.lex_state = 915}, + [4305] = {.lex_state = 915}, + [4306] = {.lex_state = 799}, + [4307] = {.lex_state = 915}, + [4308] = {.lex_state = 134}, + [4309] = {.lex_state = 915}, + [4310] = {.lex_state = 915}, + [4311] = {.lex_state = 3}, + [4312] = {.lex_state = 821}, + [4313] = {.lex_state = 799}, + [4314] = {.lex_state = 915}, + [4315] = {.lex_state = 134}, + [4316] = {.lex_state = 921}, + [4317] = {.lex_state = 921}, + [4318] = {.lex_state = 921}, + [4319] = {.lex_state = 921}, + [4320] = {.lex_state = 134}, + [4321] = {.lex_state = 915}, + [4322] = {.lex_state = 134}, + [4323] = {.lex_state = 915}, + [4324] = {.lex_state = 915}, + [4325] = {.lex_state = 915}, + [4326] = {.lex_state = 915}, + [4327] = {.lex_state = 915}, + [4328] = {.lex_state = 81}, + [4329] = {.lex_state = 915}, + [4330] = {.lex_state = 921}, + [4331] = {.lex_state = 915}, + [4332] = {.lex_state = 915}, + [4333] = {.lex_state = 921}, + [4334] = {.lex_state = 355}, + [4335] = {.lex_state = 915}, + [4336] = {.lex_state = 356}, + [4337] = {.lex_state = 921}, + [4338] = {.lex_state = 915}, + [4339] = {.lex_state = 921}, + [4340] = {.lex_state = 915}, + [4341] = {.lex_state = 921}, + [4342] = {.lex_state = 921}, + [4343] = {.lex_state = 915}, + [4344] = {.lex_state = 921}, + [4345] = {.lex_state = 921}, + [4346] = {.lex_state = 915}, + [4347] = {.lex_state = 915}, + [4348] = {.lex_state = 915}, + [4349] = {.lex_state = 915}, + [4350] = {.lex_state = 134}, + [4351] = {.lex_state = 915}, + [4352] = {.lex_state = 134}, + [4353] = {.lex_state = 915}, + [4354] = {.lex_state = 915}, + [4355] = {.lex_state = 915}, + [4356] = {.lex_state = 915}, + [4357] = {.lex_state = 915}, + [4358] = {.lex_state = 134}, + [4359] = {.lex_state = 915}, + [4360] = {.lex_state = 81}, + [4361] = {.lex_state = 134}, + [4362] = {.lex_state = 915}, + [4363] = {.lex_state = 915}, + [4364] = {.lex_state = 180}, + [4365] = {.lex_state = 134}, + [4366] = {.lex_state = 915}, + [4367] = {.lex_state = 134}, + [4368] = {.lex_state = 915}, + [4369] = {.lex_state = 915}, + [4370] = {.lex_state = 915}, + [4371] = {.lex_state = 81}, + [4372] = {.lex_state = 134}, + [4373] = {.lex_state = 81}, + [4374] = {.lex_state = 915}, + [4375] = {.lex_state = 134}, + [4376] = {.lex_state = 81}, + [4377] = {.lex_state = 915}, + [4378] = {.lex_state = 915}, + [4379] = {.lex_state = 915}, + [4380] = {.lex_state = 179}, + [4381] = {.lex_state = 915}, + [4382] = {.lex_state = 915}, + [4383] = {.lex_state = 827}, + [4384] = {.lex_state = 915}, + [4385] = {.lex_state = 3}, + [4386] = {.lex_state = 74}, + [4387] = {.lex_state = 915}, + [4388] = {.lex_state = 134}, + [4389] = {.lex_state = 915}, + [4390] = {.lex_state = 134}, + [4391] = {.lex_state = 915}, + [4392] = {.lex_state = 800}, + [4393] = {.lex_state = 134}, + [4394] = {.lex_state = 827}, + [4395] = {.lex_state = 362}, + [4396] = {.lex_state = 800}, + [4397] = {.lex_state = 84}, + [4398] = {.lex_state = 84}, + [4399] = {.lex_state = 82}, + [4400] = {.lex_state = 799}, + [4401] = {.lex_state = 800}, + [4402] = {.lex_state = 84}, + [4403] = {.lex_state = 835}, + [4404] = {.lex_state = 77}, + [4405] = {.lex_state = 134}, + [4406] = {.lex_state = 827}, + [4407] = {.lex_state = 134}, + [4408] = {.lex_state = 800}, + [4409] = {.lex_state = 134}, + [4410] = {.lex_state = 77}, + [4411] = {.lex_state = 78}, + [4412] = {.lex_state = 823}, + [4413] = {.lex_state = 134}, + [4414] = {.lex_state = 803}, + [4415] = {.lex_state = 803}, + [4416] = {.lex_state = 181}, + [4417] = {.lex_state = 134}, [4418] = {.lex_state = 82}, - [4419] = {.lex_state = 68}, - [4420] = {.lex_state = 82}, + [4419] = {.lex_state = 77}, + [4420] = {.lex_state = 3}, [4421] = {.lex_state = 77}, - [4422] = {.lex_state = 822}, - [4423] = {.lex_state = 820}, - [4424] = {.lex_state = 181}, - [4425] = {.lex_state = 469}, - [4426] = {.lex_state = 133}, - [4427] = {.lex_state = 281}, - [4428] = {.lex_state = 82}, - [4429] = {.lex_state = 133}, - [4430] = {.lex_state = 77}, - [4431] = {.lex_state = 826}, + [4422] = {.lex_state = 282}, + [4423] = {.lex_state = 799}, + [4424] = {.lex_state = 470}, + [4425] = {.lex_state = 77}, + [4426] = {.lex_state = 14}, + [4427] = {.lex_state = 82}, + [4428] = {.lex_state = 362}, + [4429] = {.lex_state = 362}, + [4430] = {.lex_state = 362}, + [4431] = {.lex_state = 362}, [4432] = {.lex_state = 82}, - [4433] = {.lex_state = 820}, - [4434] = {.lex_state = 799}, - [4435] = {.lex_state = 361}, - [4436] = {.lex_state = 133}, - [4437] = {.lex_state = 798}, - [4438] = {.lex_state = 826}, - [4439] = {.lex_state = 361}, - [4440] = {.lex_state = 822}, - [4441] = {.lex_state = 802}, - [4442] = {.lex_state = 361}, - [4443] = {.lex_state = 77}, - [4444] = {.lex_state = 84}, - [4445] = {.lex_state = 820}, - [4446] = {.lex_state = 361}, - [4447] = {.lex_state = 799}, - [4448] = {.lex_state = 133}, - [4449] = {.lex_state = 82}, - [4450] = {.lex_state = 826}, - [4451] = {.lex_state = 361}, - [4452] = {.lex_state = 799}, - [4453] = {.lex_state = 826}, - [4454] = {.lex_state = 826}, - [4455] = {.lex_state = 77}, - [4456] = {.lex_state = 799}, - [4457] = {.lex_state = 132}, - [4458] = {.lex_state = 133}, - [4459] = {.lex_state = 799}, - [4460] = {.lex_state = 826}, - [4461] = {.lex_state = 69}, - [4462] = {.lex_state = 359}, - [4463] = {.lex_state = 826}, - [4464] = {.lex_state = 365}, - [4465] = {.lex_state = 132}, - [4466] = {.lex_state = 800}, - [4467] = {.lex_state = 85}, - [4468] = {.lex_state = 803}, - [4469] = {.lex_state = 365}, - [4470] = {.lex_state = 133}, - [4471] = {.lex_state = 875}, - [4472] = {.lex_state = 881}, - [4473] = {.lex_state = 261}, - [4474] = {.lex_state = 261}, - [4475] = {.lex_state = 359}, - [4476] = {.lex_state = 85}, - [4477] = {.lex_state = 803}, - [4478] = {.lex_state = 875}, - [4479] = {.lex_state = 822}, - [4480] = {.lex_state = 799}, - [4481] = {.lex_state = 826}, - [4482] = {.lex_state = 826}, - [4483] = {.lex_state = 132}, - [4484] = {.lex_state = 822}, - [4485] = {.lex_state = 85}, - [4486] = {.lex_state = 261}, - [4487] = {.lex_state = 359}, - [4488] = {.lex_state = 803}, - [4489] = {.lex_state = 469}, - [4490] = {.lex_state = 822}, - [4491] = {.lex_state = 359}, - [4492] = {.lex_state = 69}, - [4493] = {.lex_state = 353}, - [4494] = {.lex_state = 826}, - [4495] = {.lex_state = 353}, - [4496] = {.lex_state = 826}, - [4497] = {.lex_state = 353}, - [4498] = {.lex_state = 86}, - [4499] = {.lex_state = 132}, - [4500] = {.lex_state = 822}, - [4501] = {.lex_state = 132}, - [4502] = {.lex_state = 359}, - [4503] = {.lex_state = 826}, - [4504] = {.lex_state = 826}, - [4505] = {.lex_state = 835}, - [4506] = {.lex_state = 826}, - [4507] = {.lex_state = 469}, - [4508] = {.lex_state = 353}, + [4433] = {.lex_state = 470}, + [4434] = {.lex_state = 827}, + [4435] = {.lex_state = 68}, + [4436] = {.lex_state = 82}, + [4437] = {.lex_state = 470}, + [4438] = {.lex_state = 821}, + [4439] = {.lex_state = 362}, + [4440] = {.lex_state = 876}, + [4441] = {.lex_state = 821}, + [4442] = {.lex_state = 134}, + [4443] = {.lex_state = 876}, + [4444] = {.lex_state = 800}, + [4445] = {.lex_state = 827}, + [4446] = {.lex_state = 827}, + [4447] = {.lex_state = 823}, + [4448] = {.lex_state = 68}, + [4449] = {.lex_state = 84}, + [4450] = {.lex_state = 3}, + [4451] = {.lex_state = 821}, + [4452] = {.lex_state = 84}, + [4453] = {.lex_state = 821}, + [4454] = {.lex_state = 827}, + [4455] = {.lex_state = 821}, + [4456] = {.lex_state = 804}, + [4457] = {.lex_state = 823}, + [4458] = {.lex_state = 827}, + [4459] = {.lex_state = 882}, + [4460] = {.lex_state = 365}, + [4461] = {.lex_state = 801}, + [4462] = {.lex_state = 827}, + [4463] = {.lex_state = 800}, + [4464] = {.lex_state = 827}, + [4465] = {.lex_state = 86}, + [4466] = {.lex_state = 882}, + [4467] = {.lex_state = 827}, + [4468] = {.lex_state = 354}, + [4469] = {.lex_state = 133}, + [4470] = {.lex_state = 134}, + [4471] = {.lex_state = 133}, + [4472] = {.lex_state = 827}, + [4473] = {.lex_state = 134}, + [4474] = {.lex_state = 823}, + [4475] = {.lex_state = 804}, + [4476] = {.lex_state = 366}, + [4477] = {.lex_state = 366}, + [4478] = {.lex_state = 470}, + [4479] = {.lex_state = 882}, + [4480] = {.lex_state = 876}, + [4481] = {.lex_state = 365}, + [4482] = {.lex_state = 354}, + [4483] = {.lex_state = 882}, + [4484] = {.lex_state = 69}, + [4485] = {.lex_state = 804}, + [4486] = {.lex_state = 134}, + [4487] = {.lex_state = 261}, + [4488] = {.lex_state = 16}, + [4489] = {.lex_state = 835}, + [4490] = {.lex_state = 79}, + [4491] = {.lex_state = 836}, + [4492] = {.lex_state = 354}, + [4493] = {.lex_state = 804}, + [4494] = {.lex_state = 69}, + [4495] = {.lex_state = 133}, + [4496] = {.lex_state = 354}, + [4497] = {.lex_state = 823}, + [4498] = {.lex_state = 827}, + [4499] = {.lex_state = 470}, + [4500] = {.lex_state = 803}, + [4501] = {.lex_state = 360}, + [4502] = {.lex_state = 882}, + [4503] = {.lex_state = 354}, + [4504] = {.lex_state = 133}, + [4505] = {.lex_state = 801}, + [4506] = {.lex_state = 134}, + [4507] = {.lex_state = 133}, + [4508] = {.lex_state = 133}, [4509] = {.lex_state = 261}, - [4510] = {.lex_state = 469}, - [4511] = {.lex_state = 132}, - [4512] = {.lex_state = 261}, - [4513] = {.lex_state = 69}, - [4514] = {.lex_state = 469}, - [4515] = {.lex_state = 800}, - [4516] = {.lex_state = 132}, - [4517] = {.lex_state = 799}, - [4518] = {.lex_state = 132}, - [4519] = {.lex_state = 469}, - [4520] = {.lex_state = 133}, - [4521] = {.lex_state = 353}, - [4522] = {.lex_state = 15}, - [4523] = {.lex_state = 132}, - [4524] = {.lex_state = 800}, - [4525] = {.lex_state = 69}, - [4526] = {.lex_state = 881}, - [4527] = {.lex_state = 802}, - [4528] = {.lex_state = 85}, - [4529] = {.lex_state = 133}, - [4530] = {.lex_state = 822}, - [4531] = {.lex_state = 16}, - [4532] = {.lex_state = 881}, - [4533] = {.lex_state = 79}, - [4534] = {.lex_state = 85}, - [4535] = {.lex_state = 822}, - [4536] = {.lex_state = 826}, - [4537] = {.lex_state = 802}, - [4538] = {.lex_state = 132}, - [4539] = {.lex_state = 69}, - [4540] = {.lex_state = 133}, - [4541] = {.lex_state = 353}, - [4542] = {.lex_state = 803}, - [4543] = {.lex_state = 132}, - [4544] = {.lex_state = 469}, - [4545] = {.lex_state = 803}, - [4546] = {.lex_state = 799}, - [4547] = {.lex_state = 132}, - [4548] = {.lex_state = 881}, - [4549] = {.lex_state = 133}, - [4550] = {.lex_state = 800}, - [4551] = {.lex_state = 800}, - [4552] = {.lex_state = 800}, - [4553] = {.lex_state = 364}, - [4554] = {.lex_state = 359}, - [4555] = {.lex_state = 133}, - [4556] = {.lex_state = 132}, - [4557] = {.lex_state = 822}, - [4558] = {.lex_state = 177}, - [4559] = {.lex_state = 364}, - [4560] = {.lex_state = 881}, - [4561] = {.lex_state = 834}, - [4562] = {.lex_state = 280}, - [4563] = {.lex_state = 133}, - [4564] = {.lex_state = 133}, - [4565] = {.lex_state = 798}, - [4566] = {.lex_state = 133}, - [4567] = {.lex_state = 133}, - [4568] = {.lex_state = 133}, - [4569] = {.lex_state = 133}, - [4570] = {.lex_state = 798}, - [4571] = {.lex_state = 133}, - [4572] = {.lex_state = 822}, - [4573] = {.lex_state = 133}, - [4574] = {.lex_state = 363}, - [4575] = {.lex_state = 363}, - [4576] = {.lex_state = 363}, - [4577] = {.lex_state = 363}, - [4578] = {.lex_state = 133}, - [4579] = {.lex_state = 133}, - [4580] = {.lex_state = 133}, - [4581] = {.lex_state = 881}, - [4582] = {.lex_state = 881}, - [4583] = {.lex_state = 822}, - [4584] = {.lex_state = 804}, - [4585] = {.lex_state = 822}, - [4586] = {.lex_state = 133}, - [4587] = {.lex_state = 882}, - [4588] = {.lex_state = 798}, - [4589] = {.lex_state = 133}, - [4590] = {.lex_state = 133}, - [4591] = {.lex_state = 881}, - [4592] = {.lex_state = 822}, - [4593] = {.lex_state = 198}, - [4594] = {.lex_state = 133}, - [4595] = {.lex_state = 132}, - [4596] = {.lex_state = 133}, - [4597] = {.lex_state = 133}, - [4598] = {.lex_state = 133}, - [4599] = {.lex_state = 822}, - [4600] = {.lex_state = 826}, - [4601] = {.lex_state = 881}, - [4602] = {.lex_state = 801}, - [4603] = {.lex_state = 798}, - [4604] = {.lex_state = 87}, - [4605] = {.lex_state = 261}, - [4606] = {.lex_state = 88}, - [4607] = {.lex_state = 88}, - [4608] = {.lex_state = 70}, - [4609] = {.lex_state = 826}, - [4610] = {.lex_state = 804}, - [4611] = {.lex_state = 882}, - [4612] = {.lex_state = 822}, - [4613] = {.lex_state = 132}, - [4614] = {.lex_state = 881}, - [4615] = {.lex_state = 822}, - [4616] = {.lex_state = 822}, - [4617] = {.lex_state = 280}, - [4618] = {.lex_state = 882}, - [4619] = {.lex_state = 70}, - [4620] = {.lex_state = 363}, - [4621] = {.lex_state = 363}, - [4622] = {.lex_state = 133}, - [4623] = {.lex_state = 133}, - [4624] = {.lex_state = 363}, - [4625] = {.lex_state = 363}, - [4626] = {.lex_state = 70}, - [4627] = {.lex_state = 132}, - [4628] = {.lex_state = 363}, - [4629] = {.lex_state = 363}, - [4630] = {.lex_state = 280}, - [4631] = {.lex_state = 882}, - [4632] = {.lex_state = 363}, - [4633] = {.lex_state = 363}, - [4634] = {.lex_state = 280}, - [4635] = {.lex_state = 822}, - [4636] = {.lex_state = 800}, - [4637] = {.lex_state = 70}, - [4638] = {.lex_state = 132}, - [4639] = {.lex_state = 826}, - [4640] = {.lex_state = 133}, - [4641] = {.lex_state = 835}, - [4642] = {.lex_state = 798}, - [4643] = {.lex_state = 798}, - [4644] = {.lex_state = 469}, - [4645] = {.lex_state = 822}, - [4646] = {.lex_state = 17}, - [4647] = {.lex_state = 104}, - [4648] = {.lex_state = 133}, - [4649] = {.lex_state = 826}, - [4650] = {.lex_state = 133}, - [4651] = {.lex_state = 70}, - [4652] = {.lex_state = 800}, - [4653] = {.lex_state = 804}, - [4654] = {.lex_state = 104}, - [4655] = {.lex_state = 133}, - [4656] = {.lex_state = 798}, - [4657] = {.lex_state = 798}, - [4658] = {.lex_state = 798}, - [4659] = {.lex_state = 826}, - [4660] = {.lex_state = 132}, - [4661] = {.lex_state = 132}, - [4662] = {.lex_state = 212}, - [4663] = {.lex_state = 358}, - [4664] = {.lex_state = 70}, - [4665] = {.lex_state = 798}, - [4666] = {.lex_state = 358}, - [4667] = {.lex_state = 133}, - [4668] = {.lex_state = 798}, - [4669] = {.lex_state = 261}, - [4670] = {.lex_state = 800}, - [4671] = {.lex_state = 803}, - [4672] = {.lex_state = 800}, - [4673] = {.lex_state = 798}, - [4674] = {.lex_state = 803}, - [4675] = {.lex_state = 469}, - [4676] = {.lex_state = 469}, - [4677] = {.lex_state = 133}, - [4678] = {.lex_state = 798}, - [4679] = {.lex_state = 357}, - [4680] = {.lex_state = 803}, - [4681] = {.lex_state = 804}, - [4682] = {.lex_state = 133}, - [4683] = {.lex_state = 826}, - [4684] = {.lex_state = 803}, - [4685] = {.lex_state = 882}, - [4686] = {.lex_state = 798}, - [4687] = {.lex_state = 133}, - [4688] = {.lex_state = 800}, - [4689] = {.lex_state = 357}, - [4690] = {.lex_state = 798}, - [4691] = {.lex_state = 133}, - [4692] = {.lex_state = 804}, - [4693] = {.lex_state = 826}, - [4694] = {.lex_state = 132}, - [4695] = {.lex_state = 132}, - [4696] = {.lex_state = 826}, - [4697] = {.lex_state = 826}, - [4698] = {.lex_state = 280}, - [4699] = {.lex_state = 804}, - [4700] = {.lex_state = 800}, - [4701] = {.lex_state = 133}, - [4702] = {.lex_state = 133}, - [4703] = {.lex_state = 133}, - [4704] = {.lex_state = 280}, - [4705] = {.lex_state = 133}, - [4706] = {.lex_state = 133}, - [4707] = {.lex_state = 133}, - [4708] = {.lex_state = 133}, - [4709] = {.lex_state = 133}, - [4710] = {.lex_state = 133}, - [4711] = {.lex_state = 133}, - [4712] = {.lex_state = 133}, - [4713] = {.lex_state = 133}, - [4714] = {.lex_state = 133}, - [4715] = {.lex_state = 133}, - [4716] = {.lex_state = 826}, - [4717] = {.lex_state = 133}, - [4718] = {.lex_state = 803}, - [4719] = {.lex_state = 778}, - [4720] = {.lex_state = 133}, - [4721] = {.lex_state = 133}, - [4722] = {.lex_state = 822}, - [4723] = {.lex_state = 71}, - [4724] = {.lex_state = 906}, - [4725] = {.lex_state = 798}, - [4726] = {.lex_state = 128}, - [4727] = {.lex_state = 798}, - [4728] = {.lex_state = 804}, - [4729] = {.lex_state = 798}, - [4730] = {.lex_state = 877}, - [4731] = {.lex_state = 877}, - [4732] = {.lex_state = 128}, - [4733] = {.lex_state = 132}, - [4734] = {.lex_state = 186}, - [4735] = {.lex_state = 798}, - [4736] = {.lex_state = 798}, - [4737] = {.lex_state = 199}, - [4738] = {.lex_state = 871}, - [4739] = {.lex_state = 798}, - [4740] = {.lex_state = 826}, - [4741] = {.lex_state = 798}, - [4742] = {.lex_state = 826}, - [4743] = {.lex_state = 132}, - [4744] = {.lex_state = 128}, - [4745] = {.lex_state = 798}, - [4746] = {.lex_state = 826}, - [4747] = {.lex_state = 826}, - [4748] = {.lex_state = 132}, - [4749] = {.lex_state = 132}, - [4750] = {.lex_state = 826}, - [4751] = {.lex_state = 132}, - [4752] = {.lex_state = 132}, - [4753] = {.lex_state = 132}, - [4754] = {.lex_state = 779}, - [4755] = {.lex_state = 826}, - [4756] = {.lex_state = 128}, - [4757] = {.lex_state = 132}, - [4758] = {.lex_state = 778}, - [4759] = {.lex_state = 871}, - [4760] = {.lex_state = 798}, - [4761] = {.lex_state = 128}, - [4762] = {.lex_state = 826}, - [4763] = {.lex_state = 826}, - [4764] = {.lex_state = 826}, - [4765] = {.lex_state = 111}, - [4766] = {.lex_state = 360}, - [4767] = {.lex_state = 360}, - [4768] = {.lex_state = 128}, - [4769] = {.lex_state = 92}, - [4770] = {.lex_state = 128}, - [4771] = {.lex_state = 798}, - [4772] = {.lex_state = 360}, - [4773] = {.lex_state = 360}, - [4774] = {.lex_state = 798}, - [4775] = {.lex_state = 826}, - [4776] = {.lex_state = 282}, - [4777] = {.lex_state = 282}, - [4778] = {.lex_state = 111}, + [4510] = {.lex_state = 133}, + [4511] = {.lex_state = 876}, + [4512] = {.lex_state = 801}, + [4513] = {.lex_state = 803}, + [4514] = {.lex_state = 69}, + [4515] = {.lex_state = 133}, + [4516] = {.lex_state = 85}, + [4517] = {.lex_state = 827}, + [4518] = {.lex_state = 261}, + [4519] = {.lex_state = 134}, + [4520] = {.lex_state = 800}, + [4521] = {.lex_state = 801}, + [4522] = {.lex_state = 133}, + [4523] = {.lex_state = 133}, + [4524] = {.lex_state = 827}, + [4525] = {.lex_state = 823}, + [4526] = {.lex_state = 800}, + [4527] = {.lex_state = 800}, + [4528] = {.lex_state = 801}, + [4529] = {.lex_state = 15}, + [4530] = {.lex_state = 800}, + [4531] = {.lex_state = 133}, + [4532] = {.lex_state = 69}, + [4533] = {.lex_state = 801}, + [4534] = {.lex_state = 470}, + [4535] = {.lex_state = 85}, + [4536] = {.lex_state = 470}, + [4537] = {.lex_state = 804}, + [4538] = {.lex_state = 823}, + [4539] = {.lex_state = 360}, + [4540] = {.lex_state = 360}, + [4541] = {.lex_state = 360}, + [4542] = {.lex_state = 360}, + [4543] = {.lex_state = 354}, + [4544] = {.lex_state = 261}, + [4545] = {.lex_state = 69}, + [4546] = {.lex_state = 360}, + [4547] = {.lex_state = 134}, + [4548] = {.lex_state = 85}, + [4549] = {.lex_state = 823}, + [4550] = {.lex_state = 85}, + [4551] = {.lex_state = 827}, + [4552] = {.lex_state = 133}, + [4553] = {.lex_state = 470}, + [4554] = {.lex_state = 827}, + [4555] = {.lex_state = 134}, + [4556] = {.lex_state = 177}, + [4557] = {.lex_state = 470}, + [4558] = {.lex_state = 85}, + [4559] = {.lex_state = 261}, + [4560] = {.lex_state = 823}, + [4561] = {.lex_state = 133}, + [4562] = {.lex_state = 804}, + [4563] = {.lex_state = 212}, + [4564] = {.lex_state = 827}, + [4565] = {.lex_state = 470}, + [4566] = {.lex_state = 470}, + [4567] = {.lex_state = 70}, + [4568] = {.lex_state = 799}, + [4569] = {.lex_state = 827}, + [4570] = {.lex_state = 804}, + [4571] = {.lex_state = 799}, + [4572] = {.lex_state = 134}, + [4573] = {.lex_state = 88}, + [4574] = {.lex_state = 88}, + [4575] = {.lex_state = 133}, + [4576] = {.lex_state = 882}, + [4577] = {.lex_state = 134}, + [4578] = {.lex_state = 799}, + [4579] = {.lex_state = 882}, + [4580] = {.lex_state = 804}, + [4581] = {.lex_state = 882}, + [4582] = {.lex_state = 133}, + [4583] = {.lex_state = 882}, + [4584] = {.lex_state = 799}, + [4585] = {.lex_state = 882}, + [4586] = {.lex_state = 359}, + [4587] = {.lex_state = 359}, + [4588] = {.lex_state = 799}, + [4589] = {.lex_state = 883}, + [4590] = {.lex_state = 883}, + [4591] = {.lex_state = 17}, + [4592] = {.lex_state = 883}, + [4593] = {.lex_state = 883}, + [4594] = {.lex_state = 805}, + [4595] = {.lex_state = 801}, + [4596] = {.lex_state = 87}, + [4597] = {.lex_state = 804}, + [4598] = {.lex_state = 134}, + [4599] = {.lex_state = 134}, + [4600] = {.lex_state = 801}, + [4601] = {.lex_state = 779}, + [4602] = {.lex_state = 133}, + [4603] = {.lex_state = 804}, + [4604] = {.lex_state = 134}, + [4605] = {.lex_state = 133}, + [4606] = {.lex_state = 134}, + [4607] = {.lex_state = 134}, + [4608] = {.lex_state = 134}, + [4609] = {.lex_state = 134}, + [4610] = {.lex_state = 134}, + [4611] = {.lex_state = 134}, + [4612] = {.lex_state = 134}, + [4613] = {.lex_state = 134}, + [4614] = {.lex_state = 134}, + [4615] = {.lex_state = 134}, + [4616] = {.lex_state = 134}, + [4617] = {.lex_state = 134}, + [4618] = {.lex_state = 134}, + [4619] = {.lex_state = 134}, + [4620] = {.lex_state = 801}, + [4621] = {.lex_state = 281}, + [4622] = {.lex_state = 801}, + [4623] = {.lex_state = 827}, + [4624] = {.lex_state = 134}, + [4625] = {.lex_state = 827}, + [4626] = {.lex_state = 799}, + [4627] = {.lex_state = 198}, + [4628] = {.lex_state = 883}, + [4629] = {.lex_state = 799}, + [4630] = {.lex_state = 70}, + [4631] = {.lex_state = 134}, + [4632] = {.lex_state = 799}, + [4633] = {.lex_state = 134}, + [4634] = {.lex_state = 134}, + [4635] = {.lex_state = 827}, + [4636] = {.lex_state = 799}, + [4637] = {.lex_state = 836}, + [4638] = {.lex_state = 823}, + [4639] = {.lex_state = 827}, + [4640] = {.lex_state = 799}, + [4641] = {.lex_state = 827}, + [4642] = {.lex_state = 134}, + [4643] = {.lex_state = 134}, + [4644] = {.lex_state = 823}, + [4645] = {.lex_state = 281}, + [4646] = {.lex_state = 799}, + [4647] = {.lex_state = 281}, + [4648] = {.lex_state = 281}, + [4649] = {.lex_state = 281}, + [4650] = {.lex_state = 827}, + [4651] = {.lex_state = 134}, + [4652] = {.lex_state = 281}, + [4653] = {.lex_state = 134}, + [4654] = {.lex_state = 134}, + [4655] = {.lex_state = 134}, + [4656] = {.lex_state = 134}, + [4657] = {.lex_state = 134}, + [4658] = {.lex_state = 133}, + [4659] = {.lex_state = 70}, + [4660] = {.lex_state = 801}, + [4661] = {.lex_state = 827}, + [4662] = {.lex_state = 70}, + [4663] = {.lex_state = 823}, + [4664] = {.lex_state = 470}, + [4665] = {.lex_state = 70}, + [4666] = {.lex_state = 70}, + [4667] = {.lex_state = 364}, + [4668] = {.lex_state = 261}, + [4669] = {.lex_state = 364}, + [4670] = {.lex_state = 104}, + [4671] = {.lex_state = 364}, + [4672] = {.lex_state = 104}, + [4673] = {.lex_state = 364}, + [4674] = {.lex_state = 827}, + [4675] = {.lex_state = 133}, + [4676] = {.lex_state = 823}, + [4677] = {.lex_state = 805}, + [4678] = {.lex_state = 801}, + [4679] = {.lex_state = 364}, + [4680] = {.lex_state = 364}, + [4681] = {.lex_state = 364}, + [4682] = {.lex_state = 364}, + [4683] = {.lex_state = 364}, + [4684] = {.lex_state = 133}, + [4685] = {.lex_state = 133}, + [4686] = {.lex_state = 134}, + [4687] = {.lex_state = 364}, + [4688] = {.lex_state = 364}, + [4689] = {.lex_state = 364}, + [4690] = {.lex_state = 134}, + [4691] = {.lex_state = 799}, + [4692] = {.lex_state = 799}, + [4693] = {.lex_state = 823}, + [4694] = {.lex_state = 261}, + [4695] = {.lex_state = 799}, + [4696] = {.lex_state = 823}, + [4697] = {.lex_state = 134}, + [4698] = {.lex_state = 823}, + [4699] = {.lex_state = 805}, + [4700] = {.lex_state = 805}, + [4701] = {.lex_state = 805}, + [4702] = {.lex_state = 799}, + [4703] = {.lex_state = 823}, + [4704] = {.lex_state = 134}, + [4705] = {.lex_state = 805}, + [4706] = {.lex_state = 134}, + [4707] = {.lex_state = 358}, + [4708] = {.lex_state = 134}, + [4709] = {.lex_state = 134}, + [4710] = {.lex_state = 134}, + [4711] = {.lex_state = 358}, + [4712] = {.lex_state = 823}, + [4713] = {.lex_state = 134}, + [4714] = {.lex_state = 134}, + [4715] = {.lex_state = 823}, + [4716] = {.lex_state = 802}, + [4717] = {.lex_state = 134}, + [4718] = {.lex_state = 134}, + [4719] = {.lex_state = 134}, + [4720] = {.lex_state = 134}, + [4721] = {.lex_state = 134}, + [4722] = {.lex_state = 827}, + [4723] = {.lex_state = 827}, + [4724] = {.lex_state = 133}, + [4725] = {.lex_state = 133}, + [4726] = {.lex_state = 89}, + [4727] = {.lex_state = 182}, + [4728] = {.lex_state = 799}, + [4729] = {.lex_state = 799}, + [4730] = {.lex_state = 805}, + [4731] = {.lex_state = 133}, + [4732] = {.lex_state = 823}, + [4733] = {.lex_state = 879}, + [4734] = {.lex_state = 872}, + [4735] = {.lex_state = 799}, + [4736] = {.lex_state = 133}, + [4737] = {.lex_state = 89}, + [4738] = {.lex_state = 133}, + [4739] = {.lex_state = 128}, + [4740] = {.lex_state = 872}, + [4741] = {.lex_state = 823}, + [4742] = {.lex_state = 133}, + [4743] = {.lex_state = 470}, + [4744] = {.lex_state = 133}, + [4745] = {.lex_state = 883}, + [4746] = {.lex_state = 133}, + [4747] = {.lex_state = 108}, + [4748] = {.lex_state = 128}, + [4749] = {.lex_state = 827}, + [4750] = {.lex_state = 128}, + [4751] = {.lex_state = 806}, + [4752] = {.lex_state = 799}, + [4753] = {.lex_state = 827}, + [4754] = {.lex_state = 907}, + [4755] = {.lex_state = 805}, + [4756] = {.lex_state = 133}, + [4757] = {.lex_state = 470}, + [4758] = {.lex_state = 805}, + [4759] = {.lex_state = 827}, + [4760] = {.lex_state = 883}, + [4761] = {.lex_state = 133}, + [4762] = {.lex_state = 872}, + [4763] = {.lex_state = 827}, + [4764] = {.lex_state = 883}, + [4765] = {.lex_state = 827}, + [4766] = {.lex_state = 827}, + [4767] = {.lex_state = 823}, + [4768] = {.lex_state = 357}, + [4769] = {.lex_state = 827}, + [4770] = {.lex_state = 357}, + [4771] = {.lex_state = 779}, + [4772] = {.lex_state = 213}, + [4773] = {.lex_state = 823}, + [4774] = {.lex_state = 823}, + [4775] = {.lex_state = 799}, + [4776] = {.lex_state = 133}, + [4777] = {.lex_state = 283}, + [4778] = {.lex_state = 283}, [4779] = {.lex_state = 128}, - [4780] = {.lex_state = 128}, - [4781] = {.lex_state = 882}, - [4782] = {.lex_state = 804}, - [4783] = {.lex_state = 805}, - [4784] = {.lex_state = 822}, - [4785] = {.lex_state = 92}, - [4786] = {.lex_state = 882}, - [4787] = {.lex_state = 882}, - [4788] = {.lex_state = 798}, - [4789] = {.lex_state = 826}, - [4790] = {.lex_state = 878}, - [4791] = {.lex_state = 882}, - [4792] = {.lex_state = 128}, - [4793] = {.lex_state = 871}, - [4794] = {.lex_state = 13}, - [4795] = {.lex_state = 882}, - [4796] = {.lex_state = 133}, - [4797] = {.lex_state = 89}, - [4798] = {.lex_state = 871}, - [4799] = {.lex_state = 826}, - [4800] = {.lex_state = 89}, - [4801] = {.lex_state = 89}, - [4802] = {.lex_state = 89}, - [4803] = {.lex_state = 89}, - [4804] = {.lex_state = 132}, - [4805] = {.lex_state = 108}, - [4806] = {.lex_state = 108}, + [4780] = {.lex_state = 827}, + [4781] = {.lex_state = 827}, + [4782] = {.lex_state = 827}, + [4783] = {.lex_state = 799}, + [4784] = {.lex_state = 133}, + [4785] = {.lex_state = 827}, + [4786] = {.lex_state = 357}, + [4787] = {.lex_state = 883}, + [4788] = {.lex_state = 799}, + [4789] = {.lex_state = 872}, + [4790] = {.lex_state = 872}, + [4791] = {.lex_state = 827}, + [4792] = {.lex_state = 357}, + [4793] = {.lex_state = 823}, + [4794] = {.lex_state = 799}, + [4795] = {.lex_state = 827}, + [4796] = {.lex_state = 872}, + [4797] = {.lex_state = 105}, + [4798] = {.lex_state = 827}, + [4799] = {.lex_state = 133}, + [4800] = {.lex_state = 105}, + [4801] = {.lex_state = 128}, + [4802] = {.lex_state = 823}, + [4803] = {.lex_state = 133}, + [4804] = {.lex_state = 805}, + [4805] = {.lex_state = 89}, + [4806] = {.lex_state = 805}, [4807] = {.lex_state = 105}, [4808] = {.lex_state = 128}, - [4809] = {.lex_state = 822}, - [4810] = {.lex_state = 71}, - [4811] = {.lex_state = 133}, - [4812] = {.lex_state = 133}, - [4813] = {.lex_state = 133}, - [4814] = {.lex_state = 360}, - [4815] = {.lex_state = 360}, - [4816] = {.lex_state = 798}, - [4817] = {.lex_state = 133}, - [4818] = {.lex_state = 360}, - [4819] = {.lex_state = 360}, - [4820] = {.lex_state = 871}, + [4809] = {.lex_state = 105}, + [4810] = {.lex_state = 89}, + [4811] = {.lex_state = 105}, + [4812] = {.lex_state = 799}, + [4813] = {.lex_state = 108}, + [4814] = {.lex_state = 872}, + [4815] = {.lex_state = 470}, + [4816] = {.lex_state = 470}, + [4817] = {.lex_state = 470}, + [4818] = {.lex_state = 111}, + [4819] = {.lex_state = 128}, + [4820] = {.lex_state = 111}, [4821] = {.lex_state = 133}, - [4822] = {.lex_state = 360}, - [4823] = {.lex_state = 360}, - [4824] = {.lex_state = 133}, - [4825] = {.lex_state = 133}, - [4826] = {.lex_state = 360}, - [4827] = {.lex_state = 360}, - [4828] = {.lex_state = 133}, - [4829] = {.lex_state = 871}, - [4830] = {.lex_state = 133}, - [4831] = {.lex_state = 822}, + [4822] = {.lex_state = 470}, + [4823] = {.lex_state = 199}, + [4824] = {.lex_state = 357}, + [4825] = {.lex_state = 827}, + [4826] = {.lex_state = 827}, + [4827] = {.lex_state = 357}, + [4828] = {.lex_state = 878}, + [4829] = {.lex_state = 805}, + [4830] = {.lex_state = 872}, + [4831] = {.lex_state = 872}, [4832] = {.lex_state = 133}, - [4833] = {.lex_state = 132}, - [4834] = {.lex_state = 133}, - [4835] = {.lex_state = 132}, - [4836] = {.lex_state = 132}, - [4837] = {.lex_state = 871}, - [4838] = {.lex_state = 133}, + [4833] = {.lex_state = 827}, + [4834] = {.lex_state = 827}, + [4835] = {.lex_state = 128}, + [4836] = {.lex_state = 357}, + [4837] = {.lex_state = 799}, + [4838] = {.lex_state = 71}, [4839] = {.lex_state = 128}, - [4840] = {.lex_state = 132}, - [4841] = {.lex_state = 128}, - [4842] = {.lex_state = 132}, - [4843] = {.lex_state = 822}, - [4844] = {.lex_state = 132}, - [4845] = {.lex_state = 871}, - [4846] = {.lex_state = 105}, - [4847] = {.lex_state = 200}, - [4848] = {.lex_state = 132}, - [4849] = {.lex_state = 822}, - [4850] = {.lex_state = 826}, - [4851] = {.lex_state = 871}, - [4852] = {.lex_state = 100}, - [4853] = {.lex_state = 105}, + [4840] = {.lex_state = 827}, + [4841] = {.lex_state = 780}, + [4842] = {.lex_state = 357}, + [4843] = {.lex_state = 827}, + [4844] = {.lex_state = 878}, + [4845] = {.lex_state = 823}, + [4846] = {.lex_state = 357}, + [4847] = {.lex_state = 799}, + [4848] = {.lex_state = 186}, + [4849] = {.lex_state = 799}, + [4850] = {.lex_state = 357}, + [4851] = {.lex_state = 827}, + [4852] = {.lex_state = 799}, + [4853] = {.lex_state = 100}, [4854] = {.lex_state = 100}, - [4855] = {.lex_state = 128}, - [4856] = {.lex_state = 826}, - [4857] = {.lex_state = 822}, - [4858] = {.lex_state = 826}, - [4859] = {.lex_state = 798}, - [4860] = {.lex_state = 871}, - [4861] = {.lex_state = 871}, - [4862] = {.lex_state = 822}, - [4863] = {.lex_state = 105}, - [4864] = {.lex_state = 826}, - [4865] = {.lex_state = 804}, - [4866] = {.lex_state = 822}, - [4867] = {.lex_state = 801}, - [4868] = {.lex_state = 878}, - [4869] = {.lex_state = 105}, - [4870] = {.lex_state = 804}, - [4871] = {.lex_state = 871}, - [4872] = {.lex_state = 95}, - [4873] = {.lex_state = 95}, - [4874] = {.lex_state = 469}, - [4875] = {.lex_state = 871}, - [4876] = {.lex_state = 822}, - [4877] = {.lex_state = 805}, - [4878] = {.lex_state = 469}, - [4879] = {.lex_state = 804}, - [4880] = {.lex_state = 871}, - [4881] = {.lex_state = 356}, - [4882] = {.lex_state = 356}, - [4883] = {.lex_state = 356}, - [4884] = {.lex_state = 469}, - [4885] = {.lex_state = 356}, - [4886] = {.lex_state = 804}, - [4887] = {.lex_state = 182}, - [4888] = {.lex_state = 826}, - [4889] = {.lex_state = 826}, - [4890] = {.lex_state = 826}, - [4891] = {.lex_state = 822}, - [4892] = {.lex_state = 469}, - [4893] = {.lex_state = 826}, - [4894] = {.lex_state = 871}, - [4895] = {.lex_state = 356}, - [4896] = {.lex_state = 132}, - [4897] = {.lex_state = 356}, - [4898] = {.lex_state = 213}, - [4899] = {.lex_state = 132}, - [4900] = {.lex_state = 214}, - [4901] = {.lex_state = 356}, - [4902] = {.lex_state = 356}, - [4903] = {.lex_state = 356}, + [4855] = {.lex_state = 879}, + [4856] = {.lex_state = 823}, + [4857] = {.lex_state = 806}, + [4858] = {.lex_state = 134}, + [4859] = {.lex_state = 134}, + [4860] = {.lex_state = 134}, + [4861] = {.lex_state = 134}, + [4862] = {.lex_state = 134}, + [4863] = {.lex_state = 134}, + [4864] = {.lex_state = 134}, + [4865] = {.lex_state = 134}, + [4866] = {.lex_state = 134}, + [4867] = {.lex_state = 134}, + [4868] = {.lex_state = 134}, + [4869] = {.lex_state = 134}, + [4870] = {.lex_state = 134}, + [4871] = {.lex_state = 71}, + [4872] = {.lex_state = 361}, + [4873] = {.lex_state = 361}, + [4874] = {.lex_state = 799}, + [4875] = {.lex_state = 361}, + [4876] = {.lex_state = 361}, + [4877] = {.lex_state = 802}, + [4878] = {.lex_state = 361}, + [4879] = {.lex_state = 361}, + [4880] = {.lex_state = 361}, + [4881] = {.lex_state = 361}, + [4882] = {.lex_state = 361}, + [4883] = {.lex_state = 361}, + [4884] = {.lex_state = 361}, + [4885] = {.lex_state = 361}, + [4886] = {.lex_state = 827}, + [4887] = {.lex_state = 872}, + [4888] = {.lex_state = 357}, + [4889] = {.lex_state = 823}, + [4890] = {.lex_state = 133}, + [4891] = {.lex_state = 128}, + [4892] = {.lex_state = 357}, + [4893] = {.lex_state = 823}, + [4894] = {.lex_state = 95}, + [4895] = {.lex_state = 95}, + [4896] = {.lex_state = 872}, + [4897] = {.lex_state = 200}, + [4898] = {.lex_state = 872}, + [4899] = {.lex_state = 92}, + [4900] = {.lex_state = 133}, + [4901] = {.lex_state = 872}, + [4902] = {.lex_state = 823}, + [4903] = {.lex_state = 92}, [4904] = {.lex_state = 128}, - [4905] = {.lex_state = 356}, - [4906] = {.lex_state = 826}, - [4907] = {.lex_state = 356}, - [4908] = {.lex_state = 356}, - [4909] = {.lex_state = 822}, - [4910] = {.lex_state = 826}, - [4911] = {.lex_state = 826}, - [4912] = {.lex_state = 826}, - [4913] = {.lex_state = 798}, - [4914] = {.lex_state = 469}, - [4915] = {.lex_state = 469}, - [4916] = {.lex_state = 826}, - [4917] = {.lex_state = 826}, - [4918] = {.lex_state = 826}, - [4919] = {.lex_state = 826}, - [4920] = {.lex_state = 871}, - [4921] = {.lex_state = 871}, - [4922] = {.lex_state = 826}, - [4923] = {.lex_state = 215}, - [4924] = {.lex_state = 826}, - [4925] = {.lex_state = 871}, - [4926] = {.lex_state = 871}, - [4927] = {.lex_state = 826}, - [4928] = {.lex_state = 90}, - [4929] = {.lex_state = 805}, - [4930] = {.lex_state = 104}, - [4931] = {.lex_state = 871}, - [4932] = {.lex_state = 112}, - [4933] = {.lex_state = 128}, - [4934] = {.lex_state = 90}, - [4935] = {.lex_state = 826}, - [4936] = {.lex_state = 798}, - [4937] = {.lex_state = 112}, - [4938] = {.lex_state = 133}, - [4939] = {.lex_state = 133}, + [4905] = {.lex_state = 128}, + [4906] = {.lex_state = 827}, + [4907] = {.lex_state = 128}, + [4908] = {.lex_state = 799}, + [4909] = {.lex_state = 883}, + [4910] = {.lex_state = 13}, + [4911] = {.lex_state = 128}, + [4912] = {.lex_state = 872}, + [4913] = {.lex_state = 827}, + [4914] = {.lex_state = 89}, + [4915] = {.lex_state = 128}, + [4916] = {.lex_state = 872}, + [4917] = {.lex_state = 214}, + [4918] = {.lex_state = 96}, + [4919] = {.lex_state = 894}, + [4920] = {.lex_state = 93}, + [4921] = {.lex_state = 93}, + [4922] = {.lex_state = 93}, + [4923] = {.lex_state = 323}, + [4924] = {.lex_state = 872}, + [4925] = {.lex_state = 907}, + [4926] = {.lex_state = 872}, + [4927] = {.lex_state = 323}, + [4928] = {.lex_state = 827}, + [4929] = {.lex_state = 872}, + [4930] = {.lex_state = 281}, + [4931] = {.lex_state = 872}, + [4932] = {.lex_state = 872}, + [4933] = {.lex_state = 104}, + [4934] = {.lex_state = 827}, + [4935] = {.lex_state = 281}, + [4936] = {.lex_state = 133}, + [4937] = {.lex_state = 872}, + [4938] = {.lex_state = 109}, + [4939] = {.lex_state = 827}, [4940] = {.lex_state = 133}, - [4941] = {.lex_state = 104}, + [4941] = {.lex_state = 133}, [4942] = {.lex_state = 133}, - [4943] = {.lex_state = 133}, - [4944] = {.lex_state = 133}, - [4945] = {.lex_state = 798}, - [4946] = {.lex_state = 133}, - [4947] = {.lex_state = 133}, - [4948] = {.lex_state = 133}, - [4949] = {.lex_state = 871}, + [4943] = {.lex_state = 827}, + [4944] = {.lex_state = 872}, + [4945] = {.lex_state = 847}, + [4946] = {.lex_state = 806}, + [4947] = {.lex_state = 872}, + [4948] = {.lex_state = 827}, + [4949] = {.lex_state = 872}, [4950] = {.lex_state = 133}, - [4951] = {.lex_state = 871}, - [4952] = {.lex_state = 112}, - [4953] = {.lex_state = 133}, - [4954] = {.lex_state = 871}, - [4955] = {.lex_state = 133}, - [4956] = {.lex_state = 160}, + [4951] = {.lex_state = 823}, + [4952] = {.lex_state = 780}, + [4953] = {.lex_state = 827}, + [4954] = {.lex_state = 806}, + [4955] = {.lex_state = 104}, + [4956] = {.lex_state = 872}, [4957] = {.lex_state = 133}, - [4958] = {.lex_state = 798}, - [4959] = {.lex_state = 112}, - [4960] = {.lex_state = 321}, - [4961] = {.lex_state = 878}, - [4962] = {.lex_state = 321}, - [4963] = {.lex_state = 183}, - [4964] = {.lex_state = 871}, - [4965] = {.lex_state = 871}, - [4966] = {.lex_state = 160}, - [4967] = {.lex_state = 798}, - [4968] = {.lex_state = 128}, - [4969] = {.lex_state = 188}, - [4970] = {.lex_state = 133}, - [4971] = {.lex_state = 128}, - [4972] = {.lex_state = 846}, - [4973] = {.lex_state = 826}, - [4974] = {.lex_state = 840}, - [4975] = {.lex_state = 826}, - [4976] = {.lex_state = 133}, - [4977] = {.lex_state = 133}, - [4978] = {.lex_state = 133}, - [4979] = {.lex_state = 871}, - [4980] = {.lex_state = 871}, - [4981] = {.lex_state = 90}, - [4982] = {.lex_state = 871}, - [4983] = {.lex_state = 90}, - [4984] = {.lex_state = 90}, - [4985] = {.lex_state = 133}, - [4986] = {.lex_state = 133}, - [4987] = {.lex_state = 90}, - [4988] = {.lex_state = 109}, - [4989] = {.lex_state = 133}, - [4990] = {.lex_state = 109}, - [4991] = {.lex_state = 871}, - [4992] = {.lex_state = 133}, - [4993] = {.lex_state = 112}, - [4994] = {.lex_state = 133}, - [4995] = {.lex_state = 133}, - [4996] = {.lex_state = 133}, - [4997] = {.lex_state = 109}, - [4998] = {.lex_state = 877}, - [4999] = {.lex_state = 133}, - [5000] = {.lex_state = 133}, - [5001] = {.lex_state = 109}, - [5002] = {.lex_state = 871}, - [5003] = {.lex_state = 109}, - [5004] = {.lex_state = 877}, - [5005] = {.lex_state = 132}, - [5006] = {.lex_state = 104}, - [5007] = {.lex_state = 871}, - [5008] = {.lex_state = 826}, - [5009] = {.lex_state = 104}, - [5010] = {.lex_state = 96}, - [5011] = {.lex_state = 871}, - [5012] = {.lex_state = 106}, - [5013] = {.lex_state = 96}, - [5014] = {.lex_state = 822}, - [5015] = {.lex_state = 96}, - [5016] = {.lex_state = 822}, - [5017] = {.lex_state = 798}, - [5018] = {.lex_state = 96}, - [5019] = {.lex_state = 184}, - [5020] = {.lex_state = 469}, - [5021] = {.lex_state = 826}, - [5022] = {.lex_state = 96}, - [5023] = {.lex_state = 132}, - [5024] = {.lex_state = 798}, - [5025] = {.lex_state = 826}, - [5026] = {.lex_state = 185}, - [5027] = {.lex_state = 132}, - [5028] = {.lex_state = 826}, - [5029] = {.lex_state = 132}, - [5030] = {.lex_state = 132}, - [5031] = {.lex_state = 878}, - [5032] = {.lex_state = 826}, - [5033] = {.lex_state = 826}, - [5034] = {.lex_state = 904}, - [5035] = {.lex_state = 322}, - [5036] = {.lex_state = 871}, - [5037] = {.lex_state = 904}, - [5038] = {.lex_state = 871}, - [5039] = {.lex_state = 871}, - [5040] = {.lex_state = 826}, - [5041] = {.lex_state = 322}, - [5042] = {.lex_state = 93}, - [5043] = {.lex_state = 893}, - [5044] = {.lex_state = 93}, - [5045] = {.lex_state = 871}, - [5046] = {.lex_state = 116}, - [5047] = {.lex_state = 93}, - [5048] = {.lex_state = 116}, - [5049] = {.lex_state = 93}, - [5050] = {.lex_state = 826}, - [5051] = {.lex_state = 201}, - [5052] = {.lex_state = 826}, - [5053] = {.lex_state = 93}, - [5054] = {.lex_state = 893}, - [5055] = {.lex_state = 132}, - [5056] = {.lex_state = 893}, - [5057] = {.lex_state = 826}, - [5058] = {.lex_state = 893}, - [5059] = {.lex_state = 280}, - [5060] = {.lex_state = 826}, - [5061] = {.lex_state = 101}, - [5062] = {.lex_state = 280}, - [5063] = {.lex_state = 106}, - [5064] = {.lex_state = 106}, - [5065] = {.lex_state = 906}, - [5066] = {.lex_state = 101}, - [5067] = {.lex_state = 280}, - [5068] = {.lex_state = 280}, - [5069] = {.lex_state = 143}, - [5070] = {.lex_state = 128}, - [5071] = {.lex_state = 132}, - [5072] = {.lex_state = 132}, - [5073] = {.lex_state = 106}, - [5074] = {.lex_state = 826}, - [5075] = {.lex_state = 280}, - [5076] = {.lex_state = 132}, - [5077] = {.lex_state = 128}, - [5078] = {.lex_state = 106}, - [5079] = {.lex_state = 280}, - [5080] = {.lex_state = 805}, - [5081] = {.lex_state = 779}, - [5082] = {.lex_state = 132}, - [5083] = {.lex_state = 871}, - [5084] = {.lex_state = 871}, - [5085] = {.lex_state = 143}, - [5086] = {.lex_state = 280}, - [5087] = {.lex_state = 280}, - [5088] = {.lex_state = 132}, - [5089] = {.lex_state = 132}, - [5090] = {.lex_state = 871}, - [5091] = {.lex_state = 871}, - [5092] = {.lex_state = 132}, - [5093] = {.lex_state = 128}, - [5094] = {.lex_state = 101}, - [5095] = {.lex_state = 128}, - [5096] = {.lex_state = 101}, - [5097] = {.lex_state = 101}, - [5098] = {.lex_state = 871}, - [5099] = {.lex_state = 280}, - [5100] = {.lex_state = 280}, - [5101] = {.lex_state = 187}, - [5102] = {.lex_state = 280}, - [5103] = {.lex_state = 826}, - [5104] = {.lex_state = 132}, - [5105] = {.lex_state = 104}, - [5106] = {.lex_state = 132}, - [5107] = {.lex_state = 132}, - [5108] = {.lex_state = 280}, - [5109] = {.lex_state = 822}, - [5110] = {.lex_state = 822}, - [5111] = {.lex_state = 822}, - [5112] = {.lex_state = 822}, - [5113] = {.lex_state = 132}, - [5114] = {.lex_state = 871}, - [5115] = {.lex_state = 119}, - [5116] = {.lex_state = 826}, - [5117] = {.lex_state = 119}, - [5118] = {.lex_state = 826}, - [5119] = {.lex_state = 822}, - [5120] = {.lex_state = 826}, - [5121] = {.lex_state = 798}, - [5122] = {.lex_state = 798}, - [5123] = {.lex_state = 893}, - [5124] = {.lex_state = 826}, - [5125] = {.lex_state = 871}, - [5126] = {.lex_state = 904}, + [4958] = {.lex_state = 879}, + [4959] = {.lex_state = 799}, + [4960] = {.lex_state = 872}, + [4961] = {.lex_state = 215}, + [4962] = {.lex_state = 281}, + [4963] = {.lex_state = 827}, + [4964] = {.lex_state = 827}, + [4965] = {.lex_state = 133}, + [4966] = {.lex_state = 133}, + [4967] = {.lex_state = 872}, + [4968] = {.lex_state = 823}, + [4969] = {.lex_state = 827}, + [4970] = {.lex_state = 872}, + [4971] = {.lex_state = 799}, + [4972] = {.lex_state = 133}, + [4973] = {.lex_state = 872}, + [4974] = {.lex_state = 188}, + [4975] = {.lex_state = 109}, + [4976] = {.lex_state = 827}, + [4977] = {.lex_state = 872}, + [4978] = {.lex_state = 281}, + [4979] = {.lex_state = 872}, + [4980] = {.lex_state = 872}, + [4981] = {.lex_state = 827}, + [4982] = {.lex_state = 133}, + [4983] = {.lex_state = 134}, + [4984] = {.lex_state = 878}, + [4985] = {.lex_state = 281}, + [4986] = {.lex_state = 134}, + [4987] = {.lex_state = 322}, + [4988] = {.lex_state = 872}, + [4989] = {.lex_state = 109}, + [4990] = {.lex_state = 878}, + [4991] = {.lex_state = 134}, + [4992] = {.lex_state = 119}, + [4993] = {.lex_state = 799}, + [4994] = {.lex_state = 799}, + [4995] = {.lex_state = 128}, + [4996] = {.lex_state = 109}, + [4997] = {.lex_state = 187}, + [4998] = {.lex_state = 134}, + [4999] = {.lex_state = 134}, + [5000] = {.lex_state = 322}, + [5001] = {.lex_state = 470}, + [5002] = {.lex_state = 134}, + [5003] = {.lex_state = 827}, + [5004] = {.lex_state = 134}, + [5005] = {.lex_state = 201}, + [5006] = {.lex_state = 134}, + [5007] = {.lex_state = 872}, + [5008] = {.lex_state = 827}, + [5009] = {.lex_state = 823}, + [5010] = {.lex_state = 799}, + [5011] = {.lex_state = 799}, + [5012] = {.lex_state = 134}, + [5013] = {.lex_state = 827}, + [5014] = {.lex_state = 134}, + [5015] = {.lex_state = 872}, + [5016] = {.lex_state = 128}, + [5017] = {.lex_state = 827}, + [5018] = {.lex_state = 134}, + [5019] = {.lex_state = 106}, + [5020] = {.lex_state = 128}, + [5021] = {.lex_state = 119}, + [5022] = {.lex_state = 112}, + [5023] = {.lex_state = 133}, + [5024] = {.lex_state = 106}, + [5025] = {.lex_state = 128}, + [5026] = {.lex_state = 128}, + [5027] = {.lex_state = 112}, + [5028] = {.lex_state = 106}, + [5029] = {.lex_state = 134}, + [5030] = {.lex_state = 93}, + [5031] = {.lex_state = 112}, + [5032] = {.lex_state = 872}, + [5033] = {.lex_state = 112}, + [5034] = {.lex_state = 134}, + [5035] = {.lex_state = 872}, + [5036] = {.lex_state = 827}, + [5037] = {.lex_state = 827}, + [5038] = {.lex_state = 112}, + [5039] = {.lex_state = 823}, + [5040] = {.lex_state = 823}, + [5041] = {.lex_state = 133}, + [5042] = {.lex_state = 281}, + [5043] = {.lex_state = 128}, + [5044] = {.lex_state = 160}, + [5045] = {.lex_state = 827}, + [5046] = {.lex_state = 109}, + [5047] = {.lex_state = 894}, + [5048] = {.lex_state = 183}, + [5049] = {.lex_state = 872}, + [5050] = {.lex_state = 841}, + [5051] = {.lex_state = 90}, + [5052] = {.lex_state = 827}, + [5053] = {.lex_state = 160}, + [5054] = {.lex_state = 872}, + [5055] = {.lex_state = 106}, + [5056] = {.lex_state = 133}, + [5057] = {.lex_state = 827}, + [5058] = {.lex_state = 185}, + [5059] = {.lex_state = 133}, + [5060] = {.lex_state = 104}, + [5061] = {.lex_state = 827}, + [5062] = {.lex_state = 905}, + [5063] = {.lex_state = 872}, + [5064] = {.lex_state = 879}, + [5065] = {.lex_state = 905}, + [5066] = {.lex_state = 116}, + [5067] = {.lex_state = 281}, + [5068] = {.lex_state = 823}, + [5069] = {.lex_state = 823}, + [5070] = {.lex_state = 827}, + [5071] = {.lex_state = 116}, + [5072] = {.lex_state = 281}, + [5073] = {.lex_state = 101}, + [5074] = {.lex_state = 90}, + [5075] = {.lex_state = 101}, + [5076] = {.lex_state = 101}, + [5077] = {.lex_state = 101}, + [5078] = {.lex_state = 101}, + [5079] = {.lex_state = 827}, + [5080] = {.lex_state = 128}, + [5081] = {.lex_state = 90}, + [5082] = {.lex_state = 894}, + [5083] = {.lex_state = 90}, + [5084] = {.lex_state = 281}, + [5085] = {.lex_state = 134}, + [5086] = {.lex_state = 134}, + [5087] = {.lex_state = 134}, + [5088] = {.lex_state = 134}, + [5089] = {.lex_state = 134}, + [5090] = {.lex_state = 134}, + [5091] = {.lex_state = 134}, + [5092] = {.lex_state = 134}, + [5093] = {.lex_state = 134}, + [5094] = {.lex_state = 134}, + [5095] = {.lex_state = 134}, + [5096] = {.lex_state = 134}, + [5097] = {.lex_state = 134}, + [5098] = {.lex_state = 827}, + [5099] = {.lex_state = 90}, + [5100] = {.lex_state = 133}, + [5101] = {.lex_state = 104}, + [5102] = {.lex_state = 96}, + [5103] = {.lex_state = 133}, + [5104] = {.lex_state = 184}, + [5105] = {.lex_state = 281}, + [5106] = {.lex_state = 96}, + [5107] = {.lex_state = 133}, + [5108] = {.lex_state = 799}, + [5109] = {.lex_state = 104}, + [5110] = {.lex_state = 96}, + [5111] = {.lex_state = 96}, + [5112] = {.lex_state = 281}, + [5113] = {.lex_state = 872}, + [5114] = {.lex_state = 90}, + [5115] = {.lex_state = 872}, + [5116] = {.lex_state = 143}, + [5117] = {.lex_state = 93}, + [5118] = {.lex_state = 894}, + [5119] = {.lex_state = 281}, + [5120] = {.lex_state = 143}, + [5121] = {.lex_state = 106}, + [5122] = {.lex_state = 799}, + [5123] = {.lex_state = 104}, + [5124] = {.lex_state = 799}, + [5125] = {.lex_state = 872}, + [5126] = {.lex_state = 872}, [5127] = {.lex_state = 97}, - [5128] = {.lex_state = 189}, - [5129] = {.lex_state = 841}, - [5130] = {.lex_state = 120}, - [5131] = {.lex_state = 871}, - [5132] = {.lex_state = 120}, - [5133] = {.lex_state = 871}, - [5134] = {.lex_state = 120}, - [5135] = {.lex_state = 197}, - [5136] = {.lex_state = 826}, - [5137] = {.lex_state = 798}, - [5138] = {.lex_state = 295}, - [5139] = {.lex_state = 104}, - [5140] = {.lex_state = 88}, - [5141] = {.lex_state = 143}, - [5142] = {.lex_state = 798}, - [5143] = {.lex_state = 826}, - [5144] = {.lex_state = 295}, - [5145] = {.lex_state = 88}, - [5146] = {.lex_state = 904}, - [5147] = {.lex_state = 120}, - [5148] = {.lex_state = 88}, - [5149] = {.lex_state = 798}, - [5150] = {.lex_state = 128}, - [5151] = {.lex_state = 113}, - [5152] = {.lex_state = 871}, - [5153] = {.lex_state = 826}, - [5154] = {.lex_state = 893}, - [5155] = {.lex_state = 798}, - [5156] = {.lex_state = 798}, - [5157] = {.lex_state = 88}, - [5158] = {.lex_state = 798}, - [5159] = {.lex_state = 932}, - [5160] = {.lex_state = 104}, - [5161] = {.lex_state = 160}, - [5162] = {.lex_state = 893}, - [5163] = {.lex_state = 22}, - [5164] = {.lex_state = 128}, - [5165] = {.lex_state = 798}, - [5166] = {.lex_state = 798}, - [5167] = {.lex_state = 798}, - [5168] = {.lex_state = 798}, - [5169] = {.lex_state = 128}, - [5170] = {.lex_state = 160}, - [5171] = {.lex_state = 102}, - [5172] = {.lex_state = 798}, - [5173] = {.lex_state = 798}, - [5174] = {.lex_state = 798}, - [5175] = {.lex_state = 798}, - [5176] = {.lex_state = 798}, - [5177] = {.lex_state = 798}, - [5178] = {.lex_state = 798}, - [5179] = {.lex_state = 798}, - [5180] = {.lex_state = 798}, - [5181] = {.lex_state = 798}, - [5182] = {.lex_state = 798}, - [5183] = {.lex_state = 798}, - [5184] = {.lex_state = 798}, - [5185] = {.lex_state = 798}, - [5186] = {.lex_state = 798}, - [5187] = {.lex_state = 798}, - [5188] = {.lex_state = 798}, - [5189] = {.lex_state = 798}, - [5190] = {.lex_state = 798}, - [5191] = {.lex_state = 798}, - [5192] = {.lex_state = 798}, - [5193] = {.lex_state = 798}, - [5194] = {.lex_state = 798}, - [5195] = {.lex_state = 871}, - [5196] = {.lex_state = 871}, - [5197] = {.lex_state = 113}, - [5198] = {.lex_state = 160}, - [5199] = {.lex_state = 104}, - [5200] = {.lex_state = 102}, - [5201] = {.lex_state = 104}, - [5202] = {.lex_state = 160}, - [5203] = {.lex_state = 143}, - [5204] = {.lex_state = 798}, - [5205] = {.lex_state = 846}, - [5206] = {.lex_state = 798}, - [5207] = {.lex_state = 128}, - [5208] = {.lex_state = 102}, - [5209] = {.lex_state = 94}, - [5210] = {.lex_state = 871}, - [5211] = {.lex_state = 143}, - [5212] = {.lex_state = 102}, - [5213] = {.lex_state = 826}, - [5214] = {.lex_state = 902}, - [5215] = {.lex_state = 128}, - [5216] = {.lex_state = 117}, - [5217] = {.lex_state = 88}, - [5218] = {.lex_state = 117}, - [5219] = {.lex_state = 128}, - [5220] = {.lex_state = 847}, - [5221] = {.lex_state = 94}, - [5222] = {.lex_state = 871}, - [5223] = {.lex_state = 826}, - [5224] = {.lex_state = 826}, - [5225] = {.lex_state = 840}, - [5226] = {.lex_state = 798}, - [5227] = {.lex_state = 94}, - [5228] = {.lex_state = 94}, - [5229] = {.lex_state = 117}, + [5128] = {.lex_state = 841}, + [5129] = {.lex_state = 143}, + [5130] = {.lex_state = 872}, + [5131] = {.lex_state = 827}, + [5132] = {.lex_state = 799}, + [5133] = {.lex_state = 113}, + [5134] = {.lex_state = 88}, + [5135] = {.lex_state = 106}, + [5136] = {.lex_state = 799}, + [5137] = {.lex_state = 94}, + [5138] = {.lex_state = 113}, + [5139] = {.lex_state = 320}, + [5140] = {.lex_state = 113}, + [5141] = {.lex_state = 94}, + [5142] = {.lex_state = 128}, + [5143] = {.lex_state = 160}, + [5144] = {.lex_state = 799}, + [5145] = {.lex_state = 133}, + [5146] = {.lex_state = 113}, + [5147] = {.lex_state = 104}, + [5148] = {.lex_state = 799}, + [5149] = {.lex_state = 104}, + [5150] = {.lex_state = 113}, + [5151] = {.lex_state = 827}, + [5152] = {.lex_state = 320}, + [5153] = {.lex_state = 143}, + [5154] = {.lex_state = 88}, + [5155] = {.lex_state = 905}, + [5156] = {.lex_state = 120}, + [5157] = {.lex_state = 872}, + [5158] = {.lex_state = 872}, + [5159] = {.lex_state = 110}, + [5160] = {.lex_state = 872}, + [5161] = {.lex_state = 94}, + [5162] = {.lex_state = 197}, + [5163] = {.lex_state = 160}, + [5164] = {.lex_state = 905}, + [5165] = {.lex_state = 160}, + [5166] = {.lex_state = 799}, + [5167] = {.lex_state = 18}, + [5168] = {.lex_state = 827}, + [5169] = {.lex_state = 799}, + [5170] = {.lex_state = 799}, + [5171] = {.lex_state = 128}, + [5172] = {.lex_state = 102}, + [5173] = {.lex_state = 120}, + [5174] = {.lex_state = 872}, + [5175] = {.lex_state = 894}, + [5176] = {.lex_state = 872}, + [5177] = {.lex_state = 894}, + [5178] = {.lex_state = 894}, + [5179] = {.lex_state = 827}, + [5180] = {.lex_state = 110}, + [5181] = {.lex_state = 128}, + [5182] = {.lex_state = 799}, + [5183] = {.lex_state = 160}, + [5184] = {.lex_state = 160}, + [5185] = {.lex_state = 894}, + [5186] = {.lex_state = 104}, + [5187] = {.lex_state = 104}, + [5188] = {.lex_state = 799}, + [5189] = {.lex_state = 799}, + [5190] = {.lex_state = 799}, + [5191] = {.lex_state = 110}, + [5192] = {.lex_state = 872}, + [5193] = {.lex_state = 872}, + [5194] = {.lex_state = 827}, + [5195] = {.lex_state = 799}, + [5196] = {.lex_state = 872}, + [5197] = {.lex_state = 799}, + [5198] = {.lex_state = 799}, + [5199] = {.lex_state = 88}, + [5200] = {.lex_state = 872}, + [5201] = {.lex_state = 160}, + [5202] = {.lex_state = 88}, + [5203] = {.lex_state = 91}, + [5204] = {.lex_state = 799}, + [5205] = {.lex_state = 22}, + [5206] = {.lex_state = 799}, + [5207] = {.lex_state = 872}, + [5208] = {.lex_state = 104}, + [5209] = {.lex_state = 872}, + [5210] = {.lex_state = 799}, + [5211] = {.lex_state = 104}, + [5212] = {.lex_state = 88}, + [5213] = {.lex_state = 872}, + [5214] = {.lex_state = 799}, + [5215] = {.lex_state = 799}, + [5216] = {.lex_state = 799}, + [5217] = {.lex_state = 799}, + [5218] = {.lex_state = 297}, + [5219] = {.lex_state = 799}, + [5220] = {.lex_state = 297}, + [5221] = {.lex_state = 117}, + [5222] = {.lex_state = 128}, + [5223] = {.lex_state = 88}, + [5224] = {.lex_state = 97}, + [5225] = {.lex_state = 110}, + [5226] = {.lex_state = 872}, + [5227] = {.lex_state = 903}, + [5228] = {.lex_state = 799}, + [5229] = {.lex_state = 799}, [5230] = {.lex_state = 117}, - [5231] = {.lex_state = 94}, - [5232] = {.lex_state = 117}, - [5233] = {.lex_state = 104}, - [5234] = {.lex_state = 143}, - [5235] = {.lex_state = 326}, - [5236] = {.lex_state = 296}, - [5237] = {.lex_state = 296}, - [5238] = {.lex_state = 326}, - [5239] = {.lex_state = 91}, - [5240] = {.lex_state = 88}, - [5241] = {.lex_state = 871}, - [5242] = {.lex_state = 326}, - [5243] = {.lex_state = 104}, - [5244] = {.lex_state = 893}, - [5245] = {.lex_state = 120}, - [5246] = {.lex_state = 326}, - [5247] = {.lex_state = 826}, - [5248] = {.lex_state = 326}, - [5249] = {.lex_state = 893}, - [5250] = {.lex_state = 110}, - [5251] = {.lex_state = 871}, - [5252] = {.lex_state = 104}, - [5253] = {.lex_state = 893}, - [5254] = {.lex_state = 893}, - [5255] = {.lex_state = 826}, - [5256] = {.lex_state = 893}, - [5257] = {.lex_state = 871}, - [5258] = {.lex_state = 143}, - [5259] = {.lex_state = 104}, - [5260] = {.lex_state = 798}, - [5261] = {.lex_state = 798}, - [5262] = {.lex_state = 798}, - [5263] = {.lex_state = 97}, - [5264] = {.lex_state = 211}, - [5265] = {.lex_state = 798}, - [5266] = {.lex_state = 97}, - [5267] = {.lex_state = 798}, - [5268] = {.lex_state = 798}, - [5269] = {.lex_state = 798}, - [5270] = {.lex_state = 798}, - [5271] = {.lex_state = 798}, - [5272] = {.lex_state = 97}, - [5273] = {.lex_state = 97}, - [5274] = {.lex_state = 88}, - [5275] = {.lex_state = 88}, - [5276] = {.lex_state = 190}, - [5277] = {.lex_state = 798}, - [5278] = {.lex_state = 104}, - [5279] = {.lex_state = 798}, - [5280] = {.lex_state = 798}, - [5281] = {.lex_state = 871}, - [5282] = {.lex_state = 798}, - [5283] = {.lex_state = 871}, - [5284] = {.lex_state = 104}, - [5285] = {.lex_state = 132}, - [5286] = {.lex_state = 88}, - [5287] = {.lex_state = 110}, - [5288] = {.lex_state = 110}, - [5289] = {.lex_state = 88}, - [5290] = {.lex_state = 110}, - [5291] = {.lex_state = 871}, - [5292] = {.lex_state = 102}, - [5293] = {.lex_state = 110}, - [5294] = {.lex_state = 871}, - [5295] = {.lex_state = 106}, - [5296] = {.lex_state = 871}, - [5297] = {.lex_state = 871}, - [5298] = {.lex_state = 94}, - [5299] = {.lex_state = 871}, - [5300] = {.lex_state = 91}, - [5301] = {.lex_state = 133}, - [5302] = {.lex_state = 133}, - [5303] = {.lex_state = 133}, - [5304] = {.lex_state = 133}, - [5305] = {.lex_state = 798}, - [5306] = {.lex_state = 133}, - [5307] = {.lex_state = 871}, - [5308] = {.lex_state = 133}, - [5309] = {.lex_state = 88}, - [5310] = {.lex_state = 871}, - [5311] = {.lex_state = 160}, - [5312] = {.lex_state = 88}, - [5313] = {.lex_state = 18}, - [5314] = {.lex_state = 133}, - [5315] = {.lex_state = 133}, - [5316] = {.lex_state = 133}, - [5317] = {.lex_state = 133}, - [5318] = {.lex_state = 160}, - [5319] = {.lex_state = 128}, - [5320] = {.lex_state = 798}, - [5321] = {.lex_state = 133}, - [5322] = {.lex_state = 798}, - [5323] = {.lex_state = 798}, - [5324] = {.lex_state = 160}, - [5325] = {.lex_state = 88}, - [5326] = {.lex_state = 826}, - [5327] = {.lex_state = 798}, - [5328] = {.lex_state = 798}, - [5329] = {.lex_state = 826}, - [5330] = {.lex_state = 88}, - [5331] = {.lex_state = 798}, - [5332] = {.lex_state = 871}, - [5333] = {.lex_state = 871}, - [5334] = {.lex_state = 798}, - [5335] = {.lex_state = 798}, - [5336] = {.lex_state = 133}, - [5337] = {.lex_state = 160}, + [5231] = {.lex_state = 827}, + [5232] = {.lex_state = 799}, + [5233] = {.lex_state = 872}, + [5234] = {.lex_state = 117}, + [5235] = {.lex_state = 88}, + [5236] = {.lex_state = 117}, + [5237] = {.lex_state = 117}, + [5238] = {.lex_state = 872}, + [5239] = {.lex_state = 88}, + [5240] = {.lex_state = 872}, + [5241] = {.lex_state = 102}, + [5242] = {.lex_state = 320}, + [5243] = {.lex_state = 872}, + [5244] = {.lex_state = 102}, + [5245] = {.lex_state = 102}, + [5246] = {.lex_state = 88}, + [5247] = {.lex_state = 102}, + [5248] = {.lex_state = 94}, + [5249] = {.lex_state = 88}, + [5250] = {.lex_state = 799}, + [5251] = {.lex_state = 799}, + [5252] = {.lex_state = 128}, + [5253] = {.lex_state = 327}, + [5254] = {.lex_state = 799}, + [5255] = {.lex_state = 91}, + [5256] = {.lex_state = 799}, + [5257] = {.lex_state = 113}, + [5258] = {.lex_state = 799}, + [5259] = {.lex_state = 120}, + [5260] = {.lex_state = 799}, + [5261] = {.lex_state = 799}, + [5262] = {.lex_state = 799}, + [5263] = {.lex_state = 799}, + [5264] = {.lex_state = 872}, + [5265] = {.lex_state = 827}, + [5266] = {.lex_state = 799}, + [5267] = {.lex_state = 296}, + [5268] = {.lex_state = 799}, + [5269] = {.lex_state = 872}, + [5270] = {.lex_state = 799}, + [5271] = {.lex_state = 799}, + [5272] = {.lex_state = 160}, + [5273] = {.lex_state = 160}, + [5274] = {.lex_state = 107}, + [5275] = {.lex_state = 120}, + [5276] = {.lex_state = 134}, + [5277] = {.lex_state = 134}, + [5278] = {.lex_state = 134}, + [5279] = {.lex_state = 134}, + [5280] = {.lex_state = 134}, + [5281] = {.lex_state = 134}, + [5282] = {.lex_state = 134}, + [5283] = {.lex_state = 134}, + [5284] = {.lex_state = 134}, + [5285] = {.lex_state = 134}, + [5286] = {.lex_state = 134}, + [5287] = {.lex_state = 134}, + [5288] = {.lex_state = 134}, + [5289] = {.lex_state = 848}, + [5290] = {.lex_state = 799}, + [5291] = {.lex_state = 104}, + [5292] = {.lex_state = 827}, + [5293] = {.lex_state = 872}, + [5294] = {.lex_state = 827}, + [5295] = {.lex_state = 327}, + [5296] = {.lex_state = 94}, + [5297] = {.lex_state = 799}, + [5298] = {.lex_state = 933}, + [5299] = {.lex_state = 88}, + [5300] = {.lex_state = 799}, + [5301] = {.lex_state = 143}, + [5302] = {.lex_state = 320}, + [5303] = {.lex_state = 327}, + [5304] = {.lex_state = 799}, + [5305] = {.lex_state = 799}, + [5306] = {.lex_state = 799}, + [5307] = {.lex_state = 110}, + [5308] = {.lex_state = 88}, + [5309] = {.lex_state = 827}, + [5310] = {.lex_state = 799}, + [5311] = {.lex_state = 799}, + [5312] = {.lex_state = 799}, + [5313] = {.lex_state = 128}, + [5314] = {.lex_state = 842}, + [5315] = {.lex_state = 189}, + [5316] = {.lex_state = 872}, + [5317] = {.lex_state = 894}, + [5318] = {.lex_state = 97}, + [5319] = {.lex_state = 799}, + [5320] = {.lex_state = 211}, + [5321] = {.lex_state = 327}, + [5322] = {.lex_state = 327}, + [5323] = {.lex_state = 872}, + [5324] = {.lex_state = 799}, + [5325] = {.lex_state = 97}, + [5326] = {.lex_state = 872}, + [5327] = {.lex_state = 799}, + [5328] = {.lex_state = 894}, + [5329] = {.lex_state = 799}, + [5330] = {.lex_state = 104}, + [5331] = {.lex_state = 799}, + [5332] = {.lex_state = 872}, + [5333] = {.lex_state = 296}, + [5334] = {.lex_state = 799}, + [5335] = {.lex_state = 799}, + [5336] = {.lex_state = 827}, + [5337] = {.lex_state = 894}, [5338] = {.lex_state = 97}, - [5339] = {.lex_state = 133}, - [5340] = {.lex_state = 826}, - [5341] = {.lex_state = 319}, - [5342] = {.lex_state = 319}, - [5343] = {.lex_state = 319}, - [5344] = {.lex_state = 160}, - [5345] = {.lex_state = 113}, - [5346] = {.lex_state = 319}, - [5347] = {.lex_state = 113}, - [5348] = {.lex_state = 871}, - [5349] = {.lex_state = 319}, - [5350] = {.lex_state = 113}, - [5351] = {.lex_state = 798}, - [5352] = {.lex_state = 88}, - [5353] = {.lex_state = 107}, - [5354] = {.lex_state = 798}, - [5355] = {.lex_state = 871}, - [5356] = {.lex_state = 798}, - [5357] = {.lex_state = 871}, - [5358] = {.lex_state = 798}, - [5359] = {.lex_state = 113}, - [5360] = {.lex_state = 871}, - [5361] = {.lex_state = 871}, - [5362] = {.lex_state = 871}, - [5363] = {.lex_state = 826}, - [5364] = {.lex_state = 798}, - [5365] = {.lex_state = 798}, - [5366] = {.lex_state = 871}, - [5367] = {.lex_state = 871}, - [5368] = {.lex_state = 798}, - [5369] = {.lex_state = 915}, - [5370] = {.lex_state = 118}, - [5371] = {.lex_state = 128}, - [5372] = {.lex_state = 826}, - [5373] = {.lex_state = 826}, - [5374] = {.lex_state = 826}, - [5375] = {.lex_state = 826}, - [5376] = {.lex_state = 826}, - [5377] = {.lex_state = 826}, - [5378] = {.lex_state = 826}, - [5379] = {.lex_state = 826}, - [5380] = {.lex_state = 826}, - [5381] = {.lex_state = 128}, - [5382] = {.lex_state = 826}, - [5383] = {.lex_state = 826}, - [5384] = {.lex_state = 128}, - [5385] = {.lex_state = 915}, - [5386] = {.lex_state = 826}, - [5387] = {.lex_state = 826}, - [5388] = {.lex_state = 826}, - [5389] = {.lex_state = 826}, - [5390] = {.lex_state = 826}, - [5391] = {.lex_state = 826}, - [5392] = {.lex_state = 826}, - [5393] = {.lex_state = 826}, - [5394] = {.lex_state = 798}, - [5395] = {.lex_state = 826}, - [5396] = {.lex_state = 826}, - [5397] = {.lex_state = 826}, - [5398] = {.lex_state = 826}, - [5399] = {.lex_state = 826}, - [5400] = {.lex_state = 826}, - [5401] = {.lex_state = 826}, - [5402] = {.lex_state = 826}, - [5403] = {.lex_state = 915}, - [5404] = {.lex_state = 128}, - [5405] = {.lex_state = 915}, - [5406] = {.lex_state = 915}, - [5407] = {.lex_state = 915}, - [5408] = {.lex_state = 915}, - [5409] = {.lex_state = 798}, - [5410] = {.lex_state = 128}, - [5411] = {.lex_state = 251}, - [5412] = {.lex_state = 798}, - [5413] = {.lex_state = 327}, - [5414] = {.lex_state = 251}, - [5415] = {.lex_state = 160}, - [5416] = {.lex_state = 826}, - [5417] = {.lex_state = 152}, - [5418] = {.lex_state = 826}, - [5419] = {.lex_state = 826}, - [5420] = {.lex_state = 152}, - [5421] = {.lex_state = 160}, - [5422] = {.lex_state = 103}, - [5423] = {.lex_state = 798}, - [5424] = {.lex_state = 152}, - [5425] = {.lex_state = 915}, - [5426] = {.lex_state = 915}, - [5427] = {.lex_state = 871}, - [5428] = {.lex_state = 152}, - [5429] = {.lex_state = 98}, - [5430] = {.lex_state = 871}, - [5431] = {.lex_state = 128}, - [5432] = {.lex_state = 871}, - [5433] = {.lex_state = 826}, - [5434] = {.lex_state = 871}, - [5435] = {.lex_state = 932}, - [5436] = {.lex_state = 871}, - [5437] = {.lex_state = 826}, - [5438] = {.lex_state = 128}, + [5339] = {.lex_state = 872}, + [5340] = {.lex_state = 104}, + [5341] = {.lex_state = 799}, + [5342] = {.lex_state = 97}, + [5343] = {.lex_state = 894}, + [5344] = {.lex_state = 799}, + [5345] = {.lex_state = 120}, + [5346] = {.lex_state = 799}, + [5347] = {.lex_state = 799}, + [5348] = {.lex_state = 88}, + [5349] = {.lex_state = 190}, + [5350] = {.lex_state = 872}, + [5351] = {.lex_state = 799}, + [5352] = {.lex_state = 128}, + [5353] = {.lex_state = 799}, + [5354] = {.lex_state = 160}, + [5355] = {.lex_state = 872}, + [5356] = {.lex_state = 320}, + [5357] = {.lex_state = 143}, + [5358] = {.lex_state = 799}, + [5359] = {.lex_state = 827}, + [5360] = {.lex_state = 88}, + [5361] = {.lex_state = 88}, + [5362] = {.lex_state = 847}, + [5363] = {.lex_state = 799}, + [5364] = {.lex_state = 94}, + [5365] = {.lex_state = 827}, + [5366] = {.lex_state = 143}, + [5367] = {.lex_state = 799}, + [5368] = {.lex_state = 799}, + [5369] = {.lex_state = 133}, + [5370] = {.lex_state = 916}, + [5371] = {.lex_state = 827}, + [5372] = {.lex_state = 133}, + [5373] = {.lex_state = 294}, + [5374] = {.lex_state = 827}, + [5375] = {.lex_state = 827}, + [5376] = {.lex_state = 799}, + [5377] = {.lex_state = 152}, + [5378] = {.lex_state = 894}, + [5379] = {.lex_state = 827}, + [5380] = {.lex_state = 827}, + [5381] = {.lex_state = 133}, + [5382] = {.lex_state = 799}, + [5383] = {.lex_state = 799}, + [5384] = {.lex_state = 799}, + [5385] = {.lex_state = 152}, + [5386] = {.lex_state = 799}, + [5387] = {.lex_state = 916}, + [5388] = {.lex_state = 133}, + [5389] = {.lex_state = 916}, + [5390] = {.lex_state = 872}, + [5391] = {.lex_state = 827}, + [5392] = {.lex_state = 827}, + [5393] = {.lex_state = 872}, + [5394] = {.lex_state = 872}, + [5395] = {.lex_state = 152}, + [5396] = {.lex_state = 294}, + [5397] = {.lex_state = 98}, + [5398] = {.lex_state = 872}, + [5399] = {.lex_state = 872}, + [5400] = {.lex_state = 916}, + [5401] = {.lex_state = 916}, + [5402] = {.lex_state = 916}, + [5403] = {.lex_state = 799}, + [5404] = {.lex_state = 161}, + [5405] = {.lex_state = 321}, + [5406] = {.lex_state = 294}, + [5407] = {.lex_state = 133}, + [5408] = {.lex_state = 916}, + [5409] = {.lex_state = 872}, + [5410] = {.lex_state = 827}, + [5411] = {.lex_state = 321}, + [5412] = {.lex_state = 152}, + [5413] = {.lex_state = 152}, + [5414] = {.lex_state = 916}, + [5415] = {.lex_state = 916}, + [5416] = {.lex_state = 161}, + [5417] = {.lex_state = 133}, + [5418] = {.lex_state = 799}, + [5419] = {.lex_state = 321}, + [5420] = {.lex_state = 128}, + [5421] = {.lex_state = 161}, + [5422] = {.lex_state = 152}, + [5423] = {.lex_state = 827}, + [5424] = {.lex_state = 133}, + [5425] = {.lex_state = 161}, + [5426] = {.lex_state = 160}, + [5427] = {.lex_state = 827}, + [5428] = {.lex_state = 827}, + [5429] = {.lex_state = 321}, + [5430] = {.lex_state = 152}, + [5431] = {.lex_state = 799}, + [5432] = {.lex_state = 24}, + [5433] = {.lex_state = 799}, + [5434] = {.lex_state = 143}, + [5435] = {.lex_state = 916}, + [5436] = {.lex_state = 128}, + [5437] = {.lex_state = 121}, + [5438] = {.lex_state = 799}, [5439] = {.lex_state = 128}, - [5440] = {.lex_state = 915}, - [5441] = {.lex_state = 915}, - [5442] = {.lex_state = 798}, - [5443] = {.lex_state = 798}, - [5444] = {.lex_state = 871}, - [5445] = {.lex_state = 160}, - [5446] = {.lex_state = 19}, - [5447] = {.lex_state = 915}, - [5448] = {.lex_state = 327}, - [5449] = {.lex_state = 161}, - [5450] = {.lex_state = 915}, - [5451] = {.lex_state = 152}, + [5440] = {.lex_state = 872}, + [5441] = {.lex_state = 916}, + [5442] = {.lex_state = 160}, + [5443] = {.lex_state = 128}, + [5444] = {.lex_state = 872}, + [5445] = {.lex_state = 872}, + [5446] = {.lex_state = 152}, + [5447] = {.lex_state = 916}, + [5448] = {.lex_state = 799}, + [5449] = {.lex_state = 133}, + [5450] = {.lex_state = 827}, + [5451] = {.lex_state = 827}, [5452] = {.lex_state = 128}, - [5453] = {.lex_state = 128}, - [5454] = {.lex_state = 320}, - [5455] = {.lex_state = 160}, + [5453] = {.lex_state = 872}, + [5454] = {.lex_state = 133}, + [5455] = {.lex_state = 161}, [5456] = {.lex_state = 143}, - [5457] = {.lex_state = 128}, + [5457] = {.lex_state = 143}, [5458] = {.lex_state = 128}, - [5459] = {.lex_state = 871}, - [5460] = {.lex_state = 128}, - [5461] = {.lex_state = 915}, - [5462] = {.lex_state = 320}, - [5463] = {.lex_state = 128}, - [5464] = {.lex_state = 128}, - [5465] = {.lex_state = 893}, - [5466] = {.lex_state = 915}, - [5467] = {.lex_state = 320}, - [5468] = {.lex_state = 128}, - [5469] = {.lex_state = 798}, - [5470] = {.lex_state = 320}, + [5459] = {.lex_state = 903}, + [5460] = {.lex_state = 133}, + [5461] = {.lex_state = 133}, + [5462] = {.lex_state = 827}, + [5463] = {.lex_state = 827}, + [5464] = {.lex_state = 872}, + [5465] = {.lex_state = 916}, + [5466] = {.lex_state = 916}, + [5467] = {.lex_state = 916}, + [5468] = {.lex_state = 916}, + [5469] = {.lex_state = 827}, + [5470] = {.lex_state = 161}, [5471] = {.lex_state = 160}, - [5472] = {.lex_state = 128}, - [5473] = {.lex_state = 798}, - [5474] = {.lex_state = 128}, - [5475] = {.lex_state = 128}, - [5476] = {.lex_state = 128}, - [5477] = {.lex_state = 128}, - [5478] = {.lex_state = 327}, - [5479] = {.lex_state = 143}, - [5480] = {.lex_state = 128}, - [5481] = {.lex_state = 128}, - [5482] = {.lex_state = 128}, - [5483] = {.lex_state = 128}, + [5472] = {.lex_state = 827}, + [5473] = {.lex_state = 161}, + [5474] = {.lex_state = 872}, + [5475] = {.lex_state = 827}, + [5476] = {.lex_state = 872}, + [5477] = {.lex_state = 827}, + [5478] = {.lex_state = 799}, + [5479] = {.lex_state = 827}, + [5480] = {.lex_state = 916}, + [5481] = {.lex_state = 916}, + [5482] = {.lex_state = 872}, + [5483] = {.lex_state = 329}, [5484] = {.lex_state = 128}, - [5485] = {.lex_state = 128}, - [5486] = {.lex_state = 128}, - [5487] = {.lex_state = 128}, - [5488] = {.lex_state = 128}, - [5489] = {.lex_state = 128}, - [5490] = {.lex_state = 128}, - [5491] = {.lex_state = 128}, - [5492] = {.lex_state = 328}, - [5493] = {.lex_state = 128}, - [5494] = {.lex_state = 128}, - [5495] = {.lex_state = 128}, + [5485] = {.lex_state = 916}, + [5486] = {.lex_state = 23}, + [5487] = {.lex_state = 133}, + [5488] = {.lex_state = 799}, + [5489] = {.lex_state = 916}, + [5490] = {.lex_state = 916}, + [5491] = {.lex_state = 916}, + [5492] = {.lex_state = 916}, + [5493] = {.lex_state = 827}, + [5494] = {.lex_state = 916}, + [5495] = {.lex_state = 121}, [5496] = {.lex_state = 128}, - [5497] = {.lex_state = 128}, - [5498] = {.lex_state = 128}, - [5499] = {.lex_state = 128}, - [5500] = {.lex_state = 160}, - [5501] = {.lex_state = 893}, - [5502] = {.lex_state = 143}, - [5503] = {.lex_state = 798}, - [5504] = {.lex_state = 871}, - [5505] = {.lex_state = 915}, - [5506] = {.lex_state = 24}, - [5507] = {.lex_state = 871}, - [5508] = {.lex_state = 798}, - [5509] = {.lex_state = 798}, - [5510] = {.lex_state = 327}, - [5511] = {.lex_state = 798}, - [5512] = {.lex_state = 826}, - [5513] = {.lex_state = 915}, - [5514] = {.lex_state = 327}, - [5515] = {.lex_state = 915}, - [5516] = {.lex_state = 871}, - [5517] = {.lex_state = 128}, - [5518] = {.lex_state = 915}, - [5519] = {.lex_state = 847}, - [5520] = {.lex_state = 152}, - [5521] = {.lex_state = 161}, - [5522] = {.lex_state = 871}, - [5523] = {.lex_state = 160}, - [5524] = {.lex_state = 915}, - [5525] = {.lex_state = 798}, + [5497] = {.lex_state = 143}, + [5498] = {.lex_state = 133}, + [5499] = {.lex_state = 799}, + [5500] = {.lex_state = 916}, + [5501] = {.lex_state = 799}, + [5502] = {.lex_state = 916}, + [5503] = {.lex_state = 916}, + [5504] = {.lex_state = 916}, + [5505] = {.lex_state = 894}, + [5506] = {.lex_state = 916}, + [5507] = {.lex_state = 916}, + [5508] = {.lex_state = 161}, + [5509] = {.lex_state = 916}, + [5510] = {.lex_state = 799}, + [5511] = {.lex_state = 128}, + [5512] = {.lex_state = 152}, + [5513] = {.lex_state = 916}, + [5514] = {.lex_state = 916}, + [5515] = {.lex_state = 128}, + [5516] = {.lex_state = 916}, + [5517] = {.lex_state = 799}, + [5518] = {.lex_state = 799}, + [5519] = {.lex_state = 916}, + [5520] = {.lex_state = 128}, + [5521] = {.lex_state = 916}, + [5522] = {.lex_state = 916}, + [5523] = {.lex_state = 916}, + [5524] = {.lex_state = 916}, + [5525] = {.lex_state = 128}, [5526] = {.lex_state = 128}, - [5527] = {.lex_state = 128}, - [5528] = {.lex_state = 798}, - [5529] = {.lex_state = 798}, - [5530] = {.lex_state = 915}, - [5531] = {.lex_state = 798}, - [5532] = {.lex_state = 143}, - [5533] = {.lex_state = 871}, - [5534] = {.lex_state = 826}, - [5535] = {.lex_state = 143}, - [5536] = {.lex_state = 871}, - [5537] = {.lex_state = 826}, - [5538] = {.lex_state = 798}, - [5539] = {.lex_state = 128}, - [5540] = {.lex_state = 128}, - [5541] = {.lex_state = 915}, - [5542] = {.lex_state = 143}, - [5543] = {.lex_state = 115}, - [5544] = {.lex_state = 915}, - [5545] = {.lex_state = 902}, - [5546] = {.lex_state = 915}, - [5547] = {.lex_state = 915}, - [5548] = {.lex_state = 915}, - [5549] = {.lex_state = 152}, - [5550] = {.lex_state = 160}, - [5551] = {.lex_state = 99}, - [5552] = {.lex_state = 915}, - [5553] = {.lex_state = 152}, - [5554] = {.lex_state = 915}, - [5555] = {.lex_state = 915}, - [5556] = {.lex_state = 915}, - [5557] = {.lex_state = 915}, - [5558] = {.lex_state = 915}, - [5559] = {.lex_state = 798}, - [5560] = {.lex_state = 915}, - [5561] = {.lex_state = 915}, - [5562] = {.lex_state = 915}, - [5563] = {.lex_state = 143}, - [5564] = {.lex_state = 915}, - [5565] = {.lex_state = 915}, - [5566] = {.lex_state = 132}, - [5567] = {.lex_state = 132}, - [5568] = {.lex_state = 915}, - [5569] = {.lex_state = 915}, - [5570] = {.lex_state = 915}, - [5571] = {.lex_state = 915}, - [5572] = {.lex_state = 915}, - [5573] = {.lex_state = 915}, - [5574] = {.lex_state = 915}, - [5575] = {.lex_state = 915}, - [5576] = {.lex_state = 915}, - [5577] = {.lex_state = 915}, - [5578] = {.lex_state = 132}, - [5579] = {.lex_state = 293}, - [5580] = {.lex_state = 132}, - [5581] = {.lex_state = 798}, - [5582] = {.lex_state = 915}, - [5583] = {.lex_state = 915}, - [5584] = {.lex_state = 320}, - [5585] = {.lex_state = 915}, - [5586] = {.lex_state = 915}, - [5587] = {.lex_state = 132}, - [5588] = {.lex_state = 893}, - [5589] = {.lex_state = 798}, - [5590] = {.lex_state = 152}, - [5591] = {.lex_state = 871}, - [5592] = {.lex_state = 798}, - [5593] = {.lex_state = 915}, - [5594] = {.lex_state = 915}, - [5595] = {.lex_state = 132}, - [5596] = {.lex_state = 798}, - [5597] = {.lex_state = 293}, - [5598] = {.lex_state = 915}, - [5599] = {.lex_state = 132}, - [5600] = {.lex_state = 143}, - [5601] = {.lex_state = 915}, - [5602] = {.lex_state = 121}, - [5603] = {.lex_state = 132}, - [5604] = {.lex_state = 132}, - [5605] = {.lex_state = 798}, - [5606] = {.lex_state = 915}, - [5607] = {.lex_state = 915}, - [5608] = {.lex_state = 915}, - [5609] = {.lex_state = 132}, - [5610] = {.lex_state = 132}, - [5611] = {.lex_state = 132}, - [5612] = {.lex_state = 132}, - [5613] = {.lex_state = 798}, - [5614] = {.lex_state = 132}, - [5615] = {.lex_state = 915}, - [5616] = {.lex_state = 161}, - [5617] = {.lex_state = 293}, - [5618] = {.lex_state = 132}, - [5619] = {.lex_state = 132}, - [5620] = {.lex_state = 915}, - [5621] = {.lex_state = 132}, - [5622] = {.lex_state = 915}, - [5623] = {.lex_state = 20}, - [5624] = {.lex_state = 915}, - [5625] = {.lex_state = 915}, - [5626] = {.lex_state = 915}, - [5627] = {.lex_state = 132}, - [5628] = {.lex_state = 115}, - [5629] = {.lex_state = 132}, - [5630] = {.lex_state = 915}, - [5631] = {.lex_state = 99}, - [5632] = {.lex_state = 915}, - [5633] = {.lex_state = 915}, - [5634] = {.lex_state = 826}, - [5635] = {.lex_state = 915}, - [5636] = {.lex_state = 132}, - [5637] = {.lex_state = 915}, - [5638] = {.lex_state = 798}, - [5639] = {.lex_state = 826}, - [5640] = {.lex_state = 152}, - [5641] = {.lex_state = 152}, - [5642] = {.lex_state = 915}, - [5643] = {.lex_state = 915}, - [5644] = {.lex_state = 161}, - [5645] = {.lex_state = 798}, - [5646] = {.lex_state = 798}, - [5647] = {.lex_state = 915}, - [5648] = {.lex_state = 826}, - [5649] = {.lex_state = 161}, - [5650] = {.lex_state = 21}, - [5651] = {.lex_state = 114}, - [5652] = {.lex_state = 293}, - [5653] = {.lex_state = 826}, - [5654] = {.lex_state = 152}, - [5655] = {.lex_state = 128}, - [5656] = {.lex_state = 915}, - [5657] = {.lex_state = 915}, - [5658] = {.lex_state = 915}, - [5659] = {.lex_state = 915}, - [5660] = {.lex_state = 121}, - [5661] = {.lex_state = 826}, - [5662] = {.lex_state = 915}, - [5663] = {.lex_state = 915}, - [5664] = {.lex_state = 152}, - [5665] = {.lex_state = 161}, - [5666] = {.lex_state = 915}, - [5667] = {.lex_state = 915}, - [5668] = {.lex_state = 915}, - [5669] = {.lex_state = 826}, - [5670] = {.lex_state = 826}, - [5671] = {.lex_state = 826}, - [5672] = {.lex_state = 915}, - [5673] = {.lex_state = 915}, - [5674] = {.lex_state = 915}, - [5675] = {.lex_state = 826}, - [5676] = {.lex_state = 826}, - [5677] = {.lex_state = 826}, - [5678] = {.lex_state = 826}, - [5679] = {.lex_state = 161}, - [5680] = {.lex_state = 161}, - [5681] = {.lex_state = 300}, - [5682] = {.lex_state = 128}, - [5683] = {.lex_state = 915}, - [5684] = {.lex_state = 915}, - [5685] = {.lex_state = 915}, - [5686] = {.lex_state = 915}, - [5687] = {.lex_state = 293}, - [5688] = {.lex_state = 826}, - [5689] = {.lex_state = 121}, - [5690] = {.lex_state = 826}, - [5691] = {.lex_state = 161}, - [5692] = {.lex_state = 826}, - [5693] = {.lex_state = 300}, + [5527] = {.lex_state = 916}, + [5528] = {.lex_state = 916}, + [5529] = {.lex_state = 799}, + [5530] = {.lex_state = 799}, + [5531] = {.lex_state = 916}, + [5532] = {.lex_state = 916}, + [5533] = {.lex_state = 128}, + [5534] = {.lex_state = 128}, + [5535] = {.lex_state = 916}, + [5536] = {.lex_state = 916}, + [5537] = {.lex_state = 161}, + [5538] = {.lex_state = 301}, + [5539] = {.lex_state = 916}, + [5540] = {.lex_state = 799}, + [5541] = {.lex_state = 799}, + [5542] = {.lex_state = 301}, + [5543] = {.lex_state = 916}, + [5544] = {.lex_state = 916}, + [5545] = {.lex_state = 799}, + [5546] = {.lex_state = 799}, + [5547] = {.lex_state = 916}, + [5548] = {.lex_state = 301}, + [5549] = {.lex_state = 121}, + [5550] = {.lex_state = 301}, + [5551] = {.lex_state = 916}, + [5552] = {.lex_state = 301}, + [5553] = {.lex_state = 916}, + [5554] = {.lex_state = 118}, + [5555] = {.lex_state = 799}, + [5556] = {.lex_state = 799}, + [5557] = {.lex_state = 133}, + [5558] = {.lex_state = 128}, + [5559] = {.lex_state = 128}, + [5560] = {.lex_state = 916}, + [5561] = {.lex_state = 916}, + [5562] = {.lex_state = 916}, + [5563] = {.lex_state = 128}, + [5564] = {.lex_state = 827}, + [5565] = {.lex_state = 916}, + [5566] = {.lex_state = 799}, + [5567] = {.lex_state = 118}, + [5568] = {.lex_state = 799}, + [5569] = {.lex_state = 799}, + [5570] = {.lex_state = 916}, + [5571] = {.lex_state = 827}, + [5572] = {.lex_state = 161}, + [5573] = {.lex_state = 916}, + [5574] = {.lex_state = 118}, + [5575] = {.lex_state = 827}, + [5576] = {.lex_state = 827}, + [5577] = {.lex_state = 827}, + [5578] = {.lex_state = 827}, + [5579] = {.lex_state = 133}, + [5580] = {.lex_state = 827}, + [5581] = {.lex_state = 133}, + [5582] = {.lex_state = 916}, + [5583] = {.lex_state = 799}, + [5584] = {.lex_state = 799}, + [5585] = {.lex_state = 827}, + [5586] = {.lex_state = 827}, + [5587] = {.lex_state = 827}, + [5588] = {.lex_state = 827}, + [5589] = {.lex_state = 118}, + [5590] = {.lex_state = 827}, + [5591] = {.lex_state = 827}, + [5592] = {.lex_state = 916}, + [5593] = {.lex_state = 827}, + [5594] = {.lex_state = 827}, + [5595] = {.lex_state = 916}, + [5596] = {.lex_state = 827}, + [5597] = {.lex_state = 827}, + [5598] = {.lex_state = 152}, + [5599] = {.lex_state = 827}, + [5600] = {.lex_state = 103}, + [5601] = {.lex_state = 827}, + [5602] = {.lex_state = 827}, + [5603] = {.lex_state = 133}, + [5604] = {.lex_state = 827}, + [5605] = {.lex_state = 827}, + [5606] = {.lex_state = 916}, + [5607] = {.lex_state = 827}, + [5608] = {.lex_state = 827}, + [5609] = {.lex_state = 799}, + [5610] = {.lex_state = 916}, + [5611] = {.lex_state = 916}, + [5612] = {.lex_state = 827}, + [5613] = {.lex_state = 916}, + [5614] = {.lex_state = 872}, + [5615] = {.lex_state = 19}, + [5616] = {.lex_state = 827}, + [5617] = {.lex_state = 827}, + [5618] = {.lex_state = 916}, + [5619] = {.lex_state = 916}, + [5620] = {.lex_state = 894}, + [5621] = {.lex_state = 916}, + [5622] = {.lex_state = 872}, + [5623] = {.lex_state = 152}, + [5624] = {.lex_state = 916}, + [5625] = {.lex_state = 916}, + [5626] = {.lex_state = 827}, + [5627] = {.lex_state = 916}, + [5628] = {.lex_state = 916}, + [5629] = {.lex_state = 160}, + [5630] = {.lex_state = 143}, + [5631] = {.lex_state = 128}, + [5632] = {.lex_state = 128}, + [5633] = {.lex_state = 121}, + [5634] = {.lex_state = 143}, + [5635] = {.lex_state = 916}, + [5636] = {.lex_state = 160}, + [5637] = {.lex_state = 799}, + [5638] = {.lex_state = 916}, + [5639] = {.lex_state = 128}, + [5640] = {.lex_state = 128}, + [5641] = {.lex_state = 128}, + [5642] = {.lex_state = 143}, + [5643] = {.lex_state = 114}, + [5644] = {.lex_state = 799}, + [5645] = {.lex_state = 152}, + [5646] = {.lex_state = 143}, + [5647] = {.lex_state = 799}, + [5648] = {.lex_state = 21}, + [5649] = {.lex_state = 916}, + [5650] = {.lex_state = 827}, + [5651] = {.lex_state = 133}, + [5652] = {.lex_state = 160}, + [5653] = {.lex_state = 160}, + [5654] = {.lex_state = 128}, + [5655] = {.lex_state = 133}, + [5656] = {.lex_state = 916}, + [5657] = {.lex_state = 133}, + [5658] = {.lex_state = 916}, + [5659] = {.lex_state = 99}, + [5660] = {.lex_state = 252}, + [5661] = {.lex_state = 294}, + [5662] = {.lex_state = 799}, + [5663] = {.lex_state = 321}, + [5664] = {.lex_state = 799}, + [5665] = {.lex_state = 799}, + [5666] = {.lex_state = 161}, + [5667] = {.lex_state = 827}, + [5668] = {.lex_state = 128}, + [5669] = {.lex_state = 827}, + [5670] = {.lex_state = 916}, + [5671] = {.lex_state = 143}, + [5672] = {.lex_state = 128}, + [5673] = {.lex_state = 799}, + [5674] = {.lex_state = 128}, + [5675] = {.lex_state = 252}, + [5676] = {.lex_state = 133}, + [5677] = {.lex_state = 827}, + [5678] = {.lex_state = 152}, + [5679] = {.lex_state = 121}, + [5680] = {.lex_state = 799}, + [5681] = {.lex_state = 799}, + [5682] = {.lex_state = 799}, + [5683] = {.lex_state = 799}, + [5684] = {.lex_state = 161}, + [5685] = {.lex_state = 799}, + [5686] = {.lex_state = 294}, + [5687] = {.lex_state = 827}, + [5688] = {.lex_state = 799}, + [5689] = {.lex_state = 133}, + [5690] = {.lex_state = 799}, + [5691] = {.lex_state = 827}, + [5692] = {.lex_state = 152}, + [5693] = {.lex_state = 799}, [5694] = {.lex_state = 128}, - [5695] = {.lex_state = 826}, - [5696] = {.lex_state = 128}, - [5697] = {.lex_state = 128}, - [5698] = {.lex_state = 300}, - [5699] = {.lex_state = 826}, - [5700] = {.lex_state = 915}, - [5701] = {.lex_state = 143}, - [5702] = {.lex_state = 143}, - [5703] = {.lex_state = 121}, - [5704] = {.lex_state = 300}, - [5705] = {.lex_state = 826}, - [5706] = {.lex_state = 826}, - [5707] = {.lex_state = 121}, - [5708] = {.lex_state = 152}, - [5709] = {.lex_state = 300}, - [5710] = {.lex_state = 118}, - [5711] = {.lex_state = 826}, - [5712] = {.lex_state = 915}, - [5713] = {.lex_state = 871}, - [5714] = {.lex_state = 161}, - [5715] = {.lex_state = 915}, - [5716] = {.lex_state = 915}, - [5717] = {.lex_state = 118}, - [5718] = {.lex_state = 893}, - [5719] = {.lex_state = 826}, - [5720] = {.lex_state = 798}, - [5721] = {.lex_state = 121}, - [5722] = {.lex_state = 871}, - [5723] = {.lex_state = 118}, - [5724] = {.lex_state = 826}, - [5725] = {.lex_state = 128}, - [5726] = {.lex_state = 128}, - [5727] = {.lex_state = 915}, - [5728] = {.lex_state = 871}, - [5729] = {.lex_state = 826}, - [5730] = {.lex_state = 826}, - [5731] = {.lex_state = 826}, - [5732] = {.lex_state = 826}, - [5733] = {.lex_state = 915}, - [5734] = {.lex_state = 826}, - [5735] = {.lex_state = 826}, - [5736] = {.lex_state = 826}, - [5737] = {.lex_state = 826}, - [5738] = {.lex_state = 132}, - [5739] = {.lex_state = 826}, - [5740] = {.lex_state = 915}, - [5741] = {.lex_state = 161}, - [5742] = {.lex_state = 143}, - [5743] = {.lex_state = 915}, - [5744] = {.lex_state = 132}, - [5745] = {.lex_state = 798}, - [5746] = {.lex_state = 798}, - [5747] = {.lex_state = 798}, - [5748] = {.lex_state = 826}, - [5749] = {.lex_state = 826}, - [5750] = {.lex_state = 826}, + [5695] = {.lex_state = 933}, + [5696] = {.lex_state = 827}, + [5697] = {.lex_state = 799}, + [5698] = {.lex_state = 916}, + [5699] = {.lex_state = 328}, + [5700] = {.lex_state = 872}, + [5701] = {.lex_state = 916}, + [5702] = {.lex_state = 152}, + [5703] = {.lex_state = 160}, + [5704] = {.lex_state = 799}, + [5705] = {.lex_state = 827}, + [5706] = {.lex_state = 827}, + [5707] = {.lex_state = 133}, + [5708] = {.lex_state = 99}, + [5709] = {.lex_state = 827}, + [5710] = {.lex_state = 115}, + [5711] = {.lex_state = 827}, + [5712] = {.lex_state = 133}, + [5713] = {.lex_state = 827}, + [5714] = {.lex_state = 916}, + [5715] = {.lex_state = 161}, + [5716] = {.lex_state = 133}, + [5717] = {.lex_state = 328}, + [5718] = {.lex_state = 916}, + [5719] = {.lex_state = 916}, + [5720] = {.lex_state = 916}, + [5721] = {.lex_state = 328}, + [5722] = {.lex_state = 827}, + [5723] = {.lex_state = 104}, + [5724] = {.lex_state = 916}, + [5725] = {.lex_state = 328}, + [5726] = {.lex_state = 799}, + [5727] = {.lex_state = 328}, + [5728] = {.lex_state = 161}, + [5729] = {.lex_state = 799}, + [5730] = {.lex_state = 143}, + [5731] = {.lex_state = 799}, + [5732] = {.lex_state = 799}, + [5733] = {.lex_state = 128}, + [5734] = {.lex_state = 799}, + [5735] = {.lex_state = 842}, + [5736] = {.lex_state = 799}, + [5737] = {.lex_state = 128}, + [5738] = {.lex_state = 128}, + [5739] = {.lex_state = 128}, + [5740] = {.lex_state = 128}, + [5741] = {.lex_state = 128}, + [5742] = {.lex_state = 128}, + [5743] = {.lex_state = 128}, + [5744] = {.lex_state = 128}, + [5745] = {.lex_state = 128}, + [5746] = {.lex_state = 128}, + [5747] = {.lex_state = 128}, + [5748] = {.lex_state = 161}, + [5749] = {.lex_state = 128}, + [5750] = {.lex_state = 128}, [5751] = {.lex_state = 128}, - [5752] = {.lex_state = 132}, - [5753] = {.lex_state = 143}, - [5754] = {.lex_state = 798}, - [5755] = {.lex_state = 826}, - [5756] = {.lex_state = 826}, + [5752] = {.lex_state = 121}, + [5753] = {.lex_state = 128}, + [5754] = {.lex_state = 133}, + [5755] = {.lex_state = 128}, + [5756] = {.lex_state = 133}, [5757] = {.lex_state = 128}, - [5758] = {.lex_state = 132}, - [5759] = {.lex_state = 132}, - [5760] = {.lex_state = 128}, - [5761] = {.lex_state = 871}, - [5762] = {.lex_state = 915}, - [5763] = {.lex_state = 132}, - [5764] = {.lex_state = 826}, - [5765] = {.lex_state = 826}, + [5758] = {.lex_state = 115}, + [5759] = {.lex_state = 128}, + [5760] = {.lex_state = 20}, + [5761] = {.lex_state = 104}, + [5762] = {.lex_state = 128}, + [5763] = {.lex_state = 128}, + [5764] = {.lex_state = 128}, + [5765] = {.lex_state = 128}, [5766] = {.lex_state = 128}, - [5767] = {.lex_state = 798}, - [5768] = {.lex_state = 132}, - [5769] = {.lex_state = 915}, - [5770] = {.lex_state = 132}, - [5771] = {.lex_state = 132}, - [5772] = {.lex_state = 798}, - [5773] = {.lex_state = 798}, - [5774] = {.lex_state = 798}, - [5775] = {.lex_state = 798}, - [5776] = {.lex_state = 128}, - [5777] = {.lex_state = 798}, - [5778] = {.lex_state = 161}, - [5779] = {.lex_state = 798}, - [5780] = {.lex_state = 798}, - [5781] = {.lex_state = 798}, - [5782] = {.lex_state = 798}, - [5783] = {.lex_state = 161}, - [5784] = {.lex_state = 798}, - [5785] = {.lex_state = 798}, - [5786] = {.lex_state = 798}, - [5787] = {.lex_state = 798}, - [5788] = {.lex_state = 798}, - [5789] = {.lex_state = 161}, - [5790] = {.lex_state = 128}, - [5791] = {.lex_state = 23}, - [5792] = {.lex_state = 798}, - [5793] = {.lex_state = 798}, - [5794] = {.lex_state = 128}, - [5795] = {.lex_state = 798}, - [5796] = {.lex_state = 798}, - [5797] = {.lex_state = 798}, - [5798] = {.lex_state = 915}, - [5799] = {.lex_state = 798}, - [5800] = {.lex_state = 798}, - [5801] = {.lex_state = 798}, - [5802] = {.lex_state = 798}, - [5803] = {.lex_state = 798}, - [5804] = {.lex_state = 104}, - [5805] = {.lex_state = 161}, - [5806] = {.lex_state = 152}, - [5807] = {.lex_state = 798}, - [5808] = {.lex_state = 798}, - [5809] = {.lex_state = 118}, - [5810] = {.lex_state = 132}, - [5811] = {.lex_state = 132}, - [5812] = {.lex_state = 104}, - [5813] = {.lex_state = 841}, - [5814] = {.lex_state = 915}, - [5815] = {.lex_state = 915}, - [5816] = {.lex_state = 915}, - [5817] = {.lex_state = 88}, - [5818] = {.lex_state = 915}, - [5819] = {.lex_state = 915}, - [5820] = {.lex_state = 915}, - [5821] = {.lex_state = 826}, - [5822] = {.lex_state = 915}, - [5823] = {.lex_state = 25}, - [5824] = {.lex_state = 915}, - [5825] = {.lex_state = 915}, - [5826] = {.lex_state = 826}, - [5827] = {.lex_state = 152}, - [5828] = {.lex_state = 152}, - [5829] = {.lex_state = 915}, - [5830] = {.lex_state = 915}, - [5831] = {.lex_state = 152}, - [5832] = {.lex_state = 826}, - [5833] = {.lex_state = 915}, - [5834] = {.lex_state = 826}, - [5835] = {.lex_state = 826}, - [5836] = {.lex_state = 915}, - [5837] = {.lex_state = 915}, - [5838] = {.lex_state = 826}, - [5839] = {.lex_state = 826}, - [5840] = {.lex_state = 915}, - [5841] = {.lex_state = 294}, - [5842] = {.lex_state = 915}, - [5843] = {.lex_state = 826}, - [5844] = {.lex_state = 826}, - [5845] = {.lex_state = 915}, - [5846] = {.lex_state = 915}, - [5847] = {.lex_state = 915}, - [5848] = {.lex_state = 826}, - [5849] = {.lex_state = 915}, - [5850] = {.lex_state = 88}, - [5851] = {.lex_state = 915}, - [5852] = {.lex_state = 104}, - [5853] = {.lex_state = 915}, - [5854] = {.lex_state = 915}, - [5855] = {.lex_state = 915}, - [5856] = {.lex_state = 915}, - [5857] = {.lex_state = 915}, - [5858] = {.lex_state = 323}, - [5859] = {.lex_state = 26}, - [5860] = {.lex_state = 915}, - [5861] = {.lex_state = 328}, - [5862] = {.lex_state = 915}, - [5863] = {.lex_state = 826}, - [5864] = {.lex_state = 826}, - [5865] = {.lex_state = 826}, - [5866] = {.lex_state = 915}, - [5867] = {.lex_state = 915}, - [5868] = {.lex_state = 132}, - [5869] = {.lex_state = 88}, - [5870] = {.lex_state = 202}, - [5871] = {.lex_state = 301}, - [5872] = {.lex_state = 104}, - [5873] = {.lex_state = 104}, - [5874] = {.lex_state = 323}, - [5875] = {.lex_state = 123}, - [5876] = {.lex_state = 301}, - [5877] = {.lex_state = 328}, - [5878] = {.lex_state = 301}, - [5879] = {.lex_state = 328}, - [5880] = {.lex_state = 325}, - [5881] = {.lex_state = 219}, - [5882] = {.lex_state = 328}, - [5883] = {.lex_state = 915}, - [5884] = {.lex_state = 915}, - [5885] = {.lex_state = 915}, - [5886] = {.lex_state = 915}, - [5887] = {.lex_state = 328}, - [5888] = {.lex_state = 301}, - [5889] = {.lex_state = 104}, - [5890] = {.lex_state = 104}, - [5891] = {.lex_state = 915}, - [5892] = {.lex_state = 915}, - [5893] = {.lex_state = 826}, - [5894] = {.lex_state = 915}, - [5895] = {.lex_state = 915}, - [5896] = {.lex_state = 328}, - [5897] = {.lex_state = 328}, - [5898] = {.lex_state = 301}, - [5899] = {.lex_state = 915}, - [5900] = {.lex_state = 330}, - [5901] = {.lex_state = 915}, - [5902] = {.lex_state = 915}, - [5903] = {.lex_state = 152}, - [5904] = {.lex_state = 915}, - [5905] = {.lex_state = 915}, - [5906] = {.lex_state = 915}, - [5907] = {.lex_state = 325}, - [5908] = {.lex_state = 915}, - [5909] = {.lex_state = 915}, - [5910] = {.lex_state = 915}, - [5911] = {.lex_state = 915}, - [5912] = {.lex_state = 330}, - [5913] = {.lex_state = 152}, - [5914] = {.lex_state = 161}, - [5915] = {.lex_state = 161}, - [5916] = {.lex_state = 915}, - [5917] = {.lex_state = 294}, - [5918] = {.lex_state = 915}, - [5919] = {.lex_state = 915}, - [5920] = {.lex_state = 330}, - [5921] = {.lex_state = 826}, - [5922] = {.lex_state = 915}, - [5923] = {.lex_state = 88}, - [5924] = {.lex_state = 915}, - [5925] = {.lex_state = 915}, - [5926] = {.lex_state = 915}, - [5927] = {.lex_state = 104}, - [5928] = {.lex_state = 915}, - [5929] = {.lex_state = 915}, - [5930] = {.lex_state = 915}, - [5931] = {.lex_state = 294}, - [5932] = {.lex_state = 915}, - [5933] = {.lex_state = 915}, - [5934] = {.lex_state = 915}, - [5935] = {.lex_state = 915}, - [5936] = {.lex_state = 915}, - [5937] = {.lex_state = 915}, - [5938] = {.lex_state = 152}, - [5939] = {.lex_state = 328}, - [5940] = {.lex_state = 915}, - [5941] = {.lex_state = 152}, - [5942] = {.lex_state = 826}, - [5943] = {.lex_state = 915}, - [5944] = {.lex_state = 915}, - [5945] = {.lex_state = 161}, - [5946] = {.lex_state = 915}, - [5947] = {.lex_state = 915}, - [5948] = {.lex_state = 915}, - [5949] = {.lex_state = 826}, - [5950] = {.lex_state = 915}, - [5951] = {.lex_state = 915}, - [5952] = {.lex_state = 915}, - [5953] = {.lex_state = 915}, - [5954] = {.lex_state = 915}, - [5955] = {.lex_state = 915}, - [5956] = {.lex_state = 915}, - [5957] = {.lex_state = 915}, - [5958] = {.lex_state = 915}, - [5959] = {.lex_state = 915}, - [5960] = {.lex_state = 915}, - [5961] = {.lex_state = 915}, - [5962] = {.lex_state = 915}, - [5963] = {.lex_state = 915}, - [5964] = {.lex_state = 915}, - [5965] = {.lex_state = 915}, - [5966] = {.lex_state = 294}, - [5967] = {.lex_state = 826}, - [5968] = {.lex_state = 161}, - [5969] = {.lex_state = 915}, - [5970] = {.lex_state = 915}, - [5971] = {.lex_state = 915}, - [5972] = {.lex_state = 915}, - [5973] = {.lex_state = 328}, - [5974] = {.lex_state = 104}, - [5975] = {.lex_state = 328}, - [5976] = {.lex_state = 294}, - [5977] = {.lex_state = 915}, - [5978] = {.lex_state = 331}, - [5979] = {.lex_state = 328}, - [5980] = {.lex_state = 328}, - [5981] = {.lex_state = 826}, - [5982] = {.lex_state = 206}, - [5983] = {.lex_state = 328}, - [5984] = {.lex_state = 826}, - [5985] = {.lex_state = 826}, - [5986] = {.lex_state = 328}, - [5987] = {.lex_state = 826}, - [5988] = {.lex_state = 826}, - [5989] = {.lex_state = 826}, - [5990] = {.lex_state = 826}, - [5991] = {.lex_state = 826}, - [5992] = {.lex_state = 826}, - [5993] = {.lex_state = 826}, - [5994] = {.lex_state = 302}, - [5995] = {.lex_state = 826}, - [5996] = {.lex_state = 826}, - [5997] = {.lex_state = 88}, - [5998] = {.lex_state = 826}, - [5999] = {.lex_state = 826}, - [6000] = {.lex_state = 826}, - [6001] = {.lex_state = 915}, - [6002] = {.lex_state = 915}, - [6003] = {.lex_state = 826}, - [6004] = {.lex_state = 826}, - [6005] = {.lex_state = 826}, - [6006] = {.lex_state = 826}, - [6007] = {.lex_state = 826}, - [6008] = {.lex_state = 826}, - [6009] = {.lex_state = 88}, - [6010] = {.lex_state = 826}, - [6011] = {.lex_state = 826}, - [6012] = {.lex_state = 826}, - [6013] = {.lex_state = 826}, - [6014] = {.lex_state = 826}, - [6015] = {.lex_state = 826}, - [6016] = {.lex_state = 826}, - [6017] = {.lex_state = 826}, - [6018] = {.lex_state = 915}, - [6019] = {.lex_state = 216}, - [6020] = {.lex_state = 915}, - [6021] = {.lex_state = 826}, - [6022] = {.lex_state = 826}, - [6023] = {.lex_state = 826}, - [6024] = {.lex_state = 826}, - [6025] = {.lex_state = 88}, - [6026] = {.lex_state = 333}, - [6027] = {.lex_state = 324}, - [6028] = {.lex_state = 826}, - [6029] = {.lex_state = 826}, - [6030] = {.lex_state = 826}, - [6031] = {.lex_state = 122}, - [6032] = {.lex_state = 826}, - [6033] = {.lex_state = 826}, - [6034] = {.lex_state = 915}, - [6035] = {.lex_state = 826}, - [6036] = {.lex_state = 826}, - [6037] = {.lex_state = 826}, - [6038] = {.lex_state = 915}, - [6039] = {.lex_state = 826}, - [6040] = {.lex_state = 121}, - [6041] = {.lex_state = 254}, - [6042] = {.lex_state = 328}, - [6043] = {.lex_state = 254}, - [6044] = {.lex_state = 254}, - [6045] = {.lex_state = 328}, - [6046] = {.lex_state = 254}, - [6047] = {.lex_state = 254}, - [6048] = {.lex_state = 826}, - [6049] = {.lex_state = 826}, - [6050] = {.lex_state = 826}, - [6051] = {.lex_state = 915}, - [6052] = {.lex_state = 915}, - [6053] = {.lex_state = 826}, - [6054] = {.lex_state = 104}, + [5767] = {.lex_state = 128}, + [5768] = {.lex_state = 128}, + [5769] = {.lex_state = 128}, + [5770] = {.lex_state = 894}, + [5771] = {.lex_state = 872}, + [5772] = {.lex_state = 827}, + [5773] = {.lex_state = 848}, + [5774] = {.lex_state = 799}, + [5775] = {.lex_state = 916}, + [5776] = {.lex_state = 916}, + [5777] = {.lex_state = 799}, + [5778] = {.lex_state = 916}, + [5779] = {.lex_state = 118}, + [5780] = {.lex_state = 916}, + [5781] = {.lex_state = 799}, + [5782] = {.lex_state = 916}, + [5783] = {.lex_state = 827}, + [5784] = {.lex_state = 827}, + [5785] = {.lex_state = 916}, + [5786] = {.lex_state = 916}, + [5787] = {.lex_state = 916}, + [5788] = {.lex_state = 916}, + [5789] = {.lex_state = 916}, + [5790] = {.lex_state = 916}, + [5791] = {.lex_state = 916}, + [5792] = {.lex_state = 916}, + [5793] = {.lex_state = 827}, + [5794] = {.lex_state = 827}, + [5795] = {.lex_state = 799}, + [5796] = {.lex_state = 133}, + [5797] = {.lex_state = 827}, + [5798] = {.lex_state = 128}, + [5799] = {.lex_state = 916}, + [5800] = {.lex_state = 827}, + [5801] = {.lex_state = 133}, + [5802] = {.lex_state = 128}, + [5803] = {.lex_state = 916}, + [5804] = {.lex_state = 143}, + [5805] = {.lex_state = 827}, + [5806] = {.lex_state = 827}, + [5807] = {.lex_state = 133}, + [5808] = {.lex_state = 827}, + [5809] = {.lex_state = 128}, + [5810] = {.lex_state = 827}, + [5811] = {.lex_state = 143}, + [5812] = {.lex_state = 128}, + [5813] = {.lex_state = 133}, + [5814] = {.lex_state = 916}, + [5815] = {.lex_state = 916}, + [5816] = {.lex_state = 334}, + [5817] = {.lex_state = 916}, + [5818] = {.lex_state = 916}, + [5819] = {.lex_state = 324}, + [5820] = {.lex_state = 88}, + [5821] = {.lex_state = 916}, + [5822] = {.lex_state = 329}, + [5823] = {.lex_state = 329}, + [5824] = {.lex_state = 916}, + [5825] = {.lex_state = 916}, + [5826] = {.lex_state = 324}, + [5827] = {.lex_state = 26}, + [5828] = {.lex_state = 827}, + [5829] = {.lex_state = 329}, + [5830] = {.lex_state = 827}, + [5831] = {.lex_state = 916}, + [5832] = {.lex_state = 827}, + [5833] = {.lex_state = 326}, + [5834] = {.lex_state = 916}, + [5835] = {.lex_state = 827}, + [5836] = {.lex_state = 827}, + [5837] = {.lex_state = 916}, + [5838] = {.lex_state = 916}, + [5839] = {.lex_state = 916}, + [5840] = {.lex_state = 916}, + [5841] = {.lex_state = 88}, + [5842] = {.lex_state = 916}, + [5843] = {.lex_state = 916}, + [5844] = {.lex_state = 916}, + [5845] = {.lex_state = 916}, + [5846] = {.lex_state = 827}, + [5847] = {.lex_state = 916}, + [5848] = {.lex_state = 326}, + [5849] = {.lex_state = 827}, + [5850] = {.lex_state = 295}, + [5851] = {.lex_state = 123}, + [5852] = {.lex_state = 827}, + [5853] = {.lex_state = 827}, + [5854] = {.lex_state = 916}, + [5855] = {.lex_state = 827}, + [5856] = {.lex_state = 329}, + [5857] = {.lex_state = 254}, + [5858] = {.lex_state = 202}, + [5859] = {.lex_state = 916}, + [5860] = {.lex_state = 331}, + [5861] = {.lex_state = 916}, + [5862] = {.lex_state = 916}, + [5863] = {.lex_state = 88}, + [5864] = {.lex_state = 295}, + [5865] = {.lex_state = 827}, + [5866] = {.lex_state = 332}, + [5867] = {.lex_state = 916}, + [5868] = {.lex_state = 827}, + [5869] = {.lex_state = 916}, + [5870] = {.lex_state = 329}, + [5871] = {.lex_state = 88}, + [5872] = {.lex_state = 916}, + [5873] = {.lex_state = 152}, + [5874] = {.lex_state = 827}, + [5875] = {.lex_state = 827}, + [5876] = {.lex_state = 916}, + [5877] = {.lex_state = 827}, + [5878] = {.lex_state = 827}, + [5879] = {.lex_state = 916}, + [5880] = {.lex_state = 916}, + [5881] = {.lex_state = 254}, + [5882] = {.lex_state = 827}, + [5883] = {.lex_state = 916}, + [5884] = {.lex_state = 916}, + [5885] = {.lex_state = 827}, + [5886] = {.lex_state = 302}, + [5887] = {.lex_state = 916}, + [5888] = {.lex_state = 827}, + [5889] = {.lex_state = 916}, + [5890] = {.lex_state = 152}, + [5891] = {.lex_state = 827}, + [5892] = {.lex_state = 152}, + [5893] = {.lex_state = 827}, + [5894] = {.lex_state = 827}, + [5895] = {.lex_state = 254}, + [5896] = {.lex_state = 916}, + [5897] = {.lex_state = 152}, + [5898] = {.lex_state = 329}, + [5899] = {.lex_state = 916}, + [5900] = {.lex_state = 916}, + [5901] = {.lex_state = 916}, + [5902] = {.lex_state = 916}, + [5903] = {.lex_state = 916}, + [5904] = {.lex_state = 916}, + [5905] = {.lex_state = 916}, + [5906] = {.lex_state = 916}, + [5907] = {.lex_state = 254}, + [5908] = {.lex_state = 916}, + [5909] = {.lex_state = 916}, + [5910] = {.lex_state = 916}, + [5911] = {.lex_state = 152}, + [5912] = {.lex_state = 916}, + [5913] = {.lex_state = 295}, + [5914] = {.lex_state = 827}, + [5915] = {.lex_state = 916}, + [5916] = {.lex_state = 254}, + [5917] = {.lex_state = 916}, + [5918] = {.lex_state = 916}, + [5919] = {.lex_state = 916}, + [5920] = {.lex_state = 206}, + [5921] = {.lex_state = 916}, + [5922] = {.lex_state = 827}, + [5923] = {.lex_state = 161}, + [5924] = {.lex_state = 161}, + [5925] = {.lex_state = 25}, + [5926] = {.lex_state = 827}, + [5927] = {.lex_state = 331}, + [5928] = {.lex_state = 329}, + [5929] = {.lex_state = 329}, + [5930] = {.lex_state = 133}, + [5931] = {.lex_state = 916}, + [5932] = {.lex_state = 827}, + [5933] = {.lex_state = 916}, + [5934] = {.lex_state = 916}, + [5935] = {.lex_state = 827}, + [5936] = {.lex_state = 916}, + [5937] = {.lex_state = 916}, + [5938] = {.lex_state = 827}, + [5939] = {.lex_state = 916}, + [5940] = {.lex_state = 329}, + [5941] = {.lex_state = 827}, + [5942] = {.lex_state = 161}, + [5943] = {.lex_state = 329}, + [5944] = {.lex_state = 916}, + [5945] = {.lex_state = 916}, + [5946] = {.lex_state = 916}, + [5947] = {.lex_state = 916}, + [5948] = {.lex_state = 916}, + [5949] = {.lex_state = 916}, + [5950] = {.lex_state = 916}, + [5951] = {.lex_state = 331}, + [5952] = {.lex_state = 827}, + [5953] = {.lex_state = 916}, + [5954] = {.lex_state = 916}, + [5955] = {.lex_state = 916}, + [5956] = {.lex_state = 302}, + [5957] = {.lex_state = 916}, + [5958] = {.lex_state = 325}, + [5959] = {.lex_state = 916}, + [5960] = {.lex_state = 329}, + [5961] = {.lex_state = 827}, + [5962] = {.lex_state = 916}, + [5963] = {.lex_state = 916}, + [5964] = {.lex_state = 916}, + [5965] = {.lex_state = 916}, + [5966] = {.lex_state = 329}, + [5967] = {.lex_state = 88}, + [5968] = {.lex_state = 827}, + [5969] = {.lex_state = 827}, + [5970] = {.lex_state = 302}, + [5971] = {.lex_state = 104}, + [5972] = {.lex_state = 827}, + [5973] = {.lex_state = 827}, + [5974] = {.lex_state = 827}, + [5975] = {.lex_state = 302}, + [5976] = {.lex_state = 827}, + [5977] = {.lex_state = 302}, + [5978] = {.lex_state = 916}, + [5979] = {.lex_state = 916}, + [5980] = {.lex_state = 827}, + [5981] = {.lex_state = 827}, + [5982] = {.lex_state = 827}, + [5983] = {.lex_state = 122}, + [5984] = {.lex_state = 916}, + [5985] = {.lex_state = 827}, + [5986] = {.lex_state = 216}, + [5987] = {.lex_state = 827}, + [5988] = {.lex_state = 827}, + [5989] = {.lex_state = 916}, + [5990] = {.lex_state = 827}, + [5991] = {.lex_state = 827}, + [5992] = {.lex_state = 827}, + [5993] = {.lex_state = 827}, + [5994] = {.lex_state = 916}, + [5995] = {.lex_state = 827}, + [5996] = {.lex_state = 329}, + [5997] = {.lex_state = 827}, + [5998] = {.lex_state = 827}, + [5999] = {.lex_state = 827}, + [6000] = {.lex_state = 827}, + [6001] = {.lex_state = 88}, + [6002] = {.lex_state = 916}, + [6003] = {.lex_state = 916}, + [6004] = {.lex_state = 295}, + [6005] = {.lex_state = 916}, + [6006] = {.lex_state = 827}, + [6007] = {.lex_state = 104}, + [6008] = {.lex_state = 916}, + [6009] = {.lex_state = 916}, + [6010] = {.lex_state = 916}, + [6011] = {.lex_state = 827}, + [6012] = {.lex_state = 219}, + [6013] = {.lex_state = 827}, + [6014] = {.lex_state = 827}, + [6015] = {.lex_state = 827}, + [6016] = {.lex_state = 827}, + [6017] = {.lex_state = 329}, + [6018] = {.lex_state = 827}, + [6019] = {.lex_state = 104}, + [6020] = {.lex_state = 827}, + [6021] = {.lex_state = 916}, + [6022] = {.lex_state = 827}, + [6023] = {.lex_state = 916}, + [6024] = {.lex_state = 916}, + [6025] = {.lex_state = 104}, + [6026] = {.lex_state = 827}, + [6027] = {.lex_state = 104}, + [6028] = {.lex_state = 303}, + [6029] = {.lex_state = 916}, + [6030] = {.lex_state = 916}, + [6031] = {.lex_state = 916}, + [6032] = {.lex_state = 916}, + [6033] = {.lex_state = 152}, + [6034] = {.lex_state = 916}, + [6035] = {.lex_state = 152}, + [6036] = {.lex_state = 295}, + [6037] = {.lex_state = 104}, + [6038] = {.lex_state = 916}, + [6039] = {.lex_state = 161}, + [6040] = {.lex_state = 916}, + [6041] = {.lex_state = 88}, + [6042] = {.lex_state = 827}, + [6043] = {.lex_state = 329}, + [6044] = {.lex_state = 916}, + [6045] = {.lex_state = 916}, + [6046] = {.lex_state = 104}, + [6047] = {.lex_state = 916}, + [6048] = {.lex_state = 916}, + [6049] = {.lex_state = 329}, + [6050] = {.lex_state = 121}, + [6051] = {.lex_state = 916}, + [6052] = {.lex_state = 916}, + [6053] = {.lex_state = 827}, + [6054] = {.lex_state = 289}, [6055] = {.lex_state = 88}, - [6056] = {.lex_state = 288}, - [6057] = {.lex_state = 297}, - [6058] = {.lex_state = 288}, - [6059] = {.lex_state = 302}, - [6060] = {.lex_state = 221}, - [6061] = {.lex_state = 104}, - [6062] = {.lex_state = 152}, + [6056] = {.lex_state = 161}, + [6057] = {.lex_state = 104}, + [6058] = {.lex_state = 255}, + [6059] = {.lex_state = 88}, + [6060] = {.lex_state = 204}, + [6061] = {.lex_state = 289}, + [6062] = {.lex_state = 104}, [6063] = {.lex_state = 88}, - [6064] = {.lex_state = 104}, - [6065] = {.lex_state = 302}, - [6066] = {.lex_state = 104}, - [6067] = {.lex_state = 88}, - [6068] = {.lex_state = 104}, - [6069] = {.lex_state = 104}, - [6070] = {.lex_state = 302}, + [6064] = {.lex_state = 161}, + [6065] = {.lex_state = 298}, + [6066] = {.lex_state = 330}, + [6067] = {.lex_state = 104}, + [6068] = {.lex_state = 299}, + [6069] = {.lex_state = 88}, + [6070] = {.lex_state = 218}, [6071] = {.lex_state = 104}, - [6072] = {.lex_state = 104}, - [6073] = {.lex_state = 302}, - [6074] = {.lex_state = 302}, - [6075] = {.lex_state = 288}, + [6072] = {.lex_state = 300}, + [6073] = {.lex_state = 161}, + [6074] = {.lex_state = 330}, + [6075] = {.lex_state = 303}, [6076] = {.lex_state = 104}, - [6077] = {.lex_state = 217}, - [6078] = {.lex_state = 255}, - [6079] = {.lex_state = 299}, - [6080] = {.lex_state = 302}, - [6081] = {.lex_state = 255}, + [6077] = {.lex_state = 88}, + [6078] = {.lex_state = 303}, + [6079] = {.lex_state = 88}, + [6080] = {.lex_state = 104}, + [6081] = {.lex_state = 329}, [6082] = {.lex_state = 104}, [6083] = {.lex_state = 104}, - [6084] = {.lex_state = 329}, - [6085] = {.lex_state = 329}, - [6086] = {.lex_state = 104}, - [6087] = {.lex_state = 255}, - [6088] = {.lex_state = 88}, - [6089] = {.lex_state = 255}, - [6090] = {.lex_state = 302}, + [6084] = {.lex_state = 88}, + [6085] = {.lex_state = 88}, + [6086] = {.lex_state = 217}, + [6087] = {.lex_state = 104}, + [6088] = {.lex_state = 329}, + [6089] = {.lex_state = 104}, + [6090] = {.lex_state = 303}, [6091] = {.lex_state = 104}, - [6092] = {.lex_state = 255}, + [6092] = {.lex_state = 88}, [6093] = {.lex_state = 104}, - [6094] = {.lex_state = 88}, + [6094] = {.lex_state = 104}, [6095] = {.lex_state = 104}, - [6096] = {.lex_state = 302}, - [6097] = {.lex_state = 104}, - [6098] = {.lex_state = 330}, - [6099] = {.lex_state = 288}, + [6096] = {.lex_state = 303}, + [6097] = {.lex_state = 88}, + [6098] = {.lex_state = 255}, + [6099] = {.lex_state = 336}, [6100] = {.lex_state = 104}, [6101] = {.lex_state = 104}, - [6102] = {.lex_state = 220}, + [6102] = {.lex_state = 104}, [6103] = {.lex_state = 104}, - [6104] = {.lex_state = 328}, - [6105] = {.lex_state = 161}, - [6106] = {.lex_state = 161}, - [6107] = {.lex_state = 104}, - [6108] = {.lex_state = 104}, - [6109] = {.lex_state = 328}, + [6104] = {.lex_state = 152}, + [6105] = {.lex_state = 88}, + [6106] = {.lex_state = 298}, + [6107] = {.lex_state = 88}, + [6108] = {.lex_state = 255}, + [6109] = {.lex_state = 104}, [6110] = {.lex_state = 104}, - [6111] = {.lex_state = 285}, + [6111] = {.lex_state = 88}, [6112] = {.lex_state = 88}, - [6113] = {.lex_state = 335}, + [6113] = {.lex_state = 104}, [6114] = {.lex_state = 104}, - [6115] = {.lex_state = 88}, - [6116] = {.lex_state = 104}, - [6117] = {.lex_state = 299}, - [6118] = {.lex_state = 330}, - [6119] = {.lex_state = 104}, - [6120] = {.lex_state = 328}, - [6121] = {.lex_state = 104}, - [6122] = {.lex_state = 104}, - [6123] = {.lex_state = 285}, - [6124] = {.lex_state = 288}, - [6125] = {.lex_state = 161}, - [6126] = {.lex_state = 104}, + [6115] = {.lex_state = 308}, + [6116] = {.lex_state = 330}, + [6117] = {.lex_state = 329}, + [6118] = {.lex_state = 152}, + [6119] = {.lex_state = 88}, + [6120] = {.lex_state = 104}, + [6121] = {.lex_state = 330}, + [6122] = {.lex_state = 88}, + [6123] = {.lex_state = 104}, + [6124] = {.lex_state = 331}, + [6125] = {.lex_state = 88}, + [6126] = {.lex_state = 88}, [6127] = {.lex_state = 88}, - [6128] = {.lex_state = 302}, - [6129] = {.lex_state = 104}, - [6130] = {.lex_state = 104}, - [6131] = {.lex_state = 161}, - [6132] = {.lex_state = 104}, - [6133] = {.lex_state = 152}, - [6134] = {.lex_state = 302}, - [6135] = {.lex_state = 104}, - [6136] = {.lex_state = 104}, - [6137] = {.lex_state = 328}, - [6138] = {.lex_state = 104}, - [6139] = {.lex_state = 104}, - [6140] = {.lex_state = 222}, - [6141] = {.lex_state = 335}, - [6142] = {.lex_state = 307}, - [6143] = {.lex_state = 104}, - [6144] = {.lex_state = 161}, + [6128] = {.lex_state = 336}, + [6129] = {.lex_state = 88}, + [6130] = {.lex_state = 161}, + [6131] = {.lex_state = 88}, + [6132] = {.lex_state = 300}, + [6133] = {.lex_state = 88}, + [6134] = {.lex_state = 104}, + [6135] = {.lex_state = 303}, + [6136] = {.lex_state = 88}, + [6137] = {.lex_state = 104}, + [6138] = {.lex_state = 331}, + [6139] = {.lex_state = 88}, + [6140] = {.lex_state = 88}, + [6141] = {.lex_state = 88}, + [6142] = {.lex_state = 331}, + [6143] = {.lex_state = 88}, + [6144] = {.lex_state = 104}, [6145] = {.lex_state = 88}, - [6146] = {.lex_state = 332}, - [6147] = {.lex_state = 104}, - [6148] = {.lex_state = 330}, - [6149] = {.lex_state = 332}, - [6150] = {.lex_state = 152}, - [6151] = {.lex_state = 104}, - [6152] = {.lex_state = 161}, - [6153] = {.lex_state = 288}, - [6154] = {.lex_state = 207}, - [6155] = {.lex_state = 298}, - [6156] = {.lex_state = 104}, - [6157] = {.lex_state = 104}, - [6158] = {.lex_state = 104}, - [6159] = {.lex_state = 104}, - [6160] = {.lex_state = 330}, - [6161] = {.lex_state = 104}, - [6162] = {.lex_state = 88}, - [6163] = {.lex_state = 302}, - [6164] = {.lex_state = 104}, - [6165] = {.lex_state = 88}, - [6166] = {.lex_state = 104}, - [6167] = {.lex_state = 88}, - [6168] = {.lex_state = 104}, - [6169] = {.lex_state = 205}, - [6170] = {.lex_state = 88}, - [6171] = {.lex_state = 297}, + [6146] = {.lex_state = 222}, + [6147] = {.lex_state = 88}, + [6148] = {.lex_state = 88}, + [6149] = {.lex_state = 104}, + [6150] = {.lex_state = 104}, + [6151] = {.lex_state = 289}, + [6152] = {.lex_state = 289}, + [6153] = {.lex_state = 88}, + [6154] = {.lex_state = 104}, + [6155] = {.lex_state = 88}, + [6156] = {.lex_state = 152}, + [6157] = {.lex_state = 88}, + [6158] = {.lex_state = 255}, + [6159] = {.lex_state = 303}, + [6160] = {.lex_state = 104}, + [6161] = {.lex_state = 88}, + [6162] = {.lex_state = 152}, + [6163] = {.lex_state = 161}, + [6164] = {.lex_state = 161}, + [6165] = {.lex_state = 104}, + [6166] = {.lex_state = 152}, + [6167] = {.lex_state = 303}, + [6168] = {.lex_state = 303}, + [6169] = {.lex_state = 333}, + [6170] = {.lex_state = 255}, + [6171] = {.lex_state = 104}, [6172] = {.lex_state = 88}, - [6173] = {.lex_state = 88}, - [6174] = {.lex_state = 88}, + [6173] = {.lex_state = 161}, + [6174] = {.lex_state = 303}, [6175] = {.lex_state = 104}, [6176] = {.lex_state = 104}, - [6177] = {.lex_state = 88}, - [6178] = {.lex_state = 88}, - [6179] = {.lex_state = 88}, - [6180] = {.lex_state = 298}, - [6181] = {.lex_state = 305}, - [6182] = {.lex_state = 302}, - [6183] = {.lex_state = 330}, - [6184] = {.lex_state = 88}, - [6185] = {.lex_state = 88}, - [6186] = {.lex_state = 88}, - [6187] = {.lex_state = 88}, - [6188] = {.lex_state = 88}, - [6189] = {.lex_state = 88}, - [6190] = {.lex_state = 88}, - [6191] = {.lex_state = 104}, - [6192] = {.lex_state = 302}, + [6177] = {.lex_state = 303}, + [6178] = {.lex_state = 220}, + [6179] = {.lex_state = 286}, + [6180] = {.lex_state = 88}, + [6181] = {.lex_state = 303}, + [6182] = {.lex_state = 104}, + [6183] = {.lex_state = 289}, + [6184] = {.lex_state = 104}, + [6185] = {.lex_state = 303}, + [6186] = {.lex_state = 104}, + [6187] = {.lex_state = 104}, + [6188] = {.lex_state = 104}, + [6189] = {.lex_state = 331}, + [6190] = {.lex_state = 303}, + [6191] = {.lex_state = 88}, + [6192] = {.lex_state = 88}, [6193] = {.lex_state = 104}, - [6194] = {.lex_state = 104}, - [6195] = {.lex_state = 104}, + [6194] = {.lex_state = 289}, + [6195] = {.lex_state = 88}, [6196] = {.lex_state = 104}, [6197] = {.lex_state = 88}, - [6198] = {.lex_state = 104}, - [6199] = {.lex_state = 335}, + [6198] = {.lex_state = 88}, + [6199] = {.lex_state = 88}, [6200] = {.lex_state = 88}, - [6201] = {.lex_state = 104}, - [6202] = {.lex_state = 335}, - [6203] = {.lex_state = 104}, - [6204] = {.lex_state = 104}, - [6205] = {.lex_state = 302}, - [6206] = {.lex_state = 302}, - [6207] = {.lex_state = 161}, - [6208] = {.lex_state = 288}, - [6209] = {.lex_state = 218}, + [6201] = {.lex_state = 203}, + [6202] = {.lex_state = 88}, + [6203] = {.lex_state = 88}, + [6204] = {.lex_state = 336}, + [6205] = {.lex_state = 88}, + [6206] = {.lex_state = 88}, + [6207] = {.lex_state = 336}, + [6208] = {.lex_state = 88}, + [6209] = {.lex_state = 88}, [6210] = {.lex_state = 88}, [6211] = {.lex_state = 88}, - [6212] = {.lex_state = 88}, - [6213] = {.lex_state = 88}, - [6214] = {.lex_state = 88}, + [6212] = {.lex_state = 104}, + [6213] = {.lex_state = 104}, + [6214] = {.lex_state = 299}, [6215] = {.lex_state = 88}, - [6216] = {.lex_state = 152}, - [6217] = {.lex_state = 88}, + [6216] = {.lex_state = 306}, + [6217] = {.lex_state = 289}, [6218] = {.lex_state = 88}, - [6219] = {.lex_state = 88}, + [6219] = {.lex_state = 152}, [6220] = {.lex_state = 88}, - [6221] = {.lex_state = 88}, - [6222] = {.lex_state = 302}, - [6223] = {.lex_state = 88}, + [6221] = {.lex_state = 104}, + [6222] = {.lex_state = 104}, + [6223] = {.lex_state = 104}, [6224] = {.lex_state = 88}, - [6225] = {.lex_state = 288}, - [6226] = {.lex_state = 88}, - [6227] = {.lex_state = 152}, - [6228] = {.lex_state = 88}, - [6229] = {.lex_state = 204}, - [6230] = {.lex_state = 88}, - [6231] = {.lex_state = 203}, - [6232] = {.lex_state = 88}, - [6233] = {.lex_state = 88}, - [6234] = {.lex_state = 88}, - [6235] = {.lex_state = 88}, - [6236] = {.lex_state = 152}, - [6237] = {.lex_state = 329}, - [6238] = {.lex_state = 88}, - [6239] = {.lex_state = 288}, - [6240] = {.lex_state = 88}, - [6241] = {.lex_state = 88}, - [6242] = {.lex_state = 152}, + [6225] = {.lex_state = 207}, + [6226] = {.lex_state = 289}, + [6227] = {.lex_state = 104}, + [6228] = {.lex_state = 104}, + [6229] = {.lex_state = 303}, + [6230] = {.lex_state = 303}, + [6231] = {.lex_state = 88}, + [6232] = {.lex_state = 152}, + [6233] = {.lex_state = 104}, + [6234] = {.lex_state = 286}, + [6235] = {.lex_state = 221}, + [6236] = {.lex_state = 104}, + [6237] = {.lex_state = 104}, + [6238] = {.lex_state = 329}, + [6239] = {.lex_state = 104}, + [6240] = {.lex_state = 104}, + [6241] = {.lex_state = 104}, + [6242] = {.lex_state = 88}, [6243] = {.lex_state = 88}, - [6244] = {.lex_state = 88}, - [6245] = {.lex_state = 88}, - [6246] = {.lex_state = 302}, - [6247] = {.lex_state = 88}, - [6248] = {.lex_state = 88}, - [6249] = {.lex_state = 329}, + [6244] = {.lex_state = 205}, + [6245] = {.lex_state = 303}, + [6246] = {.lex_state = 333}, + [6247] = {.lex_state = 104}, + [6248] = {.lex_state = 331}, + [6249] = {.lex_state = 104}, [6250] = {.lex_state = 88}, - [6251] = {.lex_state = 88}, - [6252] = {.lex_state = 88}, - [6253] = {.lex_state = 336}, - [6254] = {.lex_state = 328}, - [6255] = {.lex_state = 152}, - [6256] = {.lex_state = 152}, + [6251] = {.lex_state = 303}, + [6252] = {.lex_state = 289}, + [6253] = {.lex_state = 133}, + [6254] = {.lex_state = 251}, + [6255] = {.lex_state = 251}, + [6256] = {.lex_state = 269}, [6257] = {.lex_state = 152}, - [6258] = {.lex_state = 152}, + [6258] = {.lex_state = 288}, [6259] = {.lex_state = 152}, - [6260] = {.lex_state = 304}, - [6261] = {.lex_state = 328}, - [6262] = {.lex_state = 253}, - [6263] = {.lex_state = 306}, + [6260] = {.lex_state = 290}, + [6261] = {.lex_state = 288}, + [6262] = {.lex_state = 152}, + [6263] = {.lex_state = 290}, [6264] = {.lex_state = 152}, - [6265] = {.lex_state = 253}, - [6266] = {.lex_state = 152}, - [6267] = {.lex_state = 287}, - [6268] = {.lex_state = 250}, + [6265] = {.lex_state = 152}, + [6266] = {.lex_state = 133}, + [6267] = {.lex_state = 152}, + [6268] = {.lex_state = 152}, [6269] = {.lex_state = 152}, - [6270] = {.lex_state = 289}, - [6271] = {.lex_state = 224}, - [6272] = {.lex_state = 306}, - [6273] = {.lex_state = 289}, - [6274] = {.lex_state = 287}, - [6275] = {.lex_state = 286}, - [6276] = {.lex_state = 286}, - [6277] = {.lex_state = 337}, + [6270] = {.lex_state = 305}, + [6271] = {.lex_state = 305}, + [6272] = {.lex_state = 305}, + [6273] = {.lex_state = 152}, + [6274] = {.lex_state = 152}, + [6275] = {.lex_state = 152}, + [6276] = {.lex_state = 152}, + [6277] = {.lex_state = 152}, [6278] = {.lex_state = 152}, [6279] = {.lex_state = 152}, - [6280] = {.lex_state = 132}, - [6281] = {.lex_state = 132}, - [6282] = {.lex_state = 132}, - [6283] = {.lex_state = 132}, - [6284] = {.lex_state = 132}, + [6280] = {.lex_state = 152}, + [6281] = {.lex_state = 152}, + [6282] = {.lex_state = 152}, + [6283] = {.lex_state = 152}, + [6284] = {.lex_state = 152}, [6285] = {.lex_state = 152}, - [6286] = {.lex_state = 132}, - [6287] = {.lex_state = 132}, + [6286] = {.lex_state = 152}, + [6287] = {.lex_state = 152}, [6288] = {.lex_state = 152}, - [6289] = {.lex_state = 132}, - [6290] = {.lex_state = 132}, - [6291] = {.lex_state = 311}, - [6292] = {.lex_state = 88}, - [6293] = {.lex_state = 336}, + [6289] = {.lex_state = 152}, + [6290] = {.lex_state = 152}, + [6291] = {.lex_state = 152}, + [6292] = {.lex_state = 152}, + [6293] = {.lex_state = 152}, [6294] = {.lex_state = 152}, - [6295] = {.lex_state = 88}, - [6296] = {.lex_state = 88}, + [6295] = {.lex_state = 152}, + [6296] = {.lex_state = 152}, [6297] = {.lex_state = 152}, - [6298] = {.lex_state = 88}, - [6299] = {.lex_state = 88}, - [6300] = {.lex_state = 88}, - [6301] = {.lex_state = 336}, - [6302] = {.lex_state = 88}, - [6303] = {.lex_state = 88}, - [6304] = {.lex_state = 88}, - [6305] = {.lex_state = 88}, - [6306] = {.lex_state = 88}, - [6307] = {.lex_state = 88}, - [6308] = {.lex_state = 152}, - [6309] = {.lex_state = 88}, - [6310] = {.lex_state = 152}, - [6311] = {.lex_state = 336}, - [6312] = {.lex_state = 336}, - [6313] = {.lex_state = 132}, - [6314] = {.lex_state = 328}, - [6315] = {.lex_state = 152}, - [6316] = {.lex_state = 336}, - [6317] = {.lex_state = 250}, - [6318] = {.lex_state = 336}, - [6319] = {.lex_state = 152}, - [6320] = {.lex_state = 336}, - [6321] = {.lex_state = 336}, - [6322] = {.lex_state = 336}, - [6323] = {.lex_state = 328}, - [6324] = {.lex_state = 252}, - [6325] = {.lex_state = 336}, - [6326] = {.lex_state = 152}, - [6327] = {.lex_state = 336}, - [6328] = {.lex_state = 328}, - [6329] = {.lex_state = 336}, - [6330] = {.lex_state = 303}, - [6331] = {.lex_state = 336}, - [6332] = {.lex_state = 328}, - [6333] = {.lex_state = 336}, - [6334] = {.lex_state = 336}, - [6335] = {.lex_state = 336}, - [6336] = {.lex_state = 252}, - [6337] = {.lex_state = 132}, + [6298] = {.lex_state = 152}, + [6299] = {.lex_state = 152}, + [6300] = {.lex_state = 288}, + [6301] = {.lex_state = 288}, + [6302] = {.lex_state = 288}, + [6303] = {.lex_state = 312}, + [6304] = {.lex_state = 329}, + [6305] = {.lex_state = 253}, + [6306] = {.lex_state = 287}, + [6307] = {.lex_state = 287}, + [6308] = {.lex_state = 304}, + [6309] = {.lex_state = 152}, + [6310] = {.lex_state = 304}, + [6311] = {.lex_state = 223}, + [6312] = {.lex_state = 305}, + [6313] = {.lex_state = 305}, + [6314] = {.lex_state = 339}, + [6315] = {.lex_state = 250}, + [6316] = {.lex_state = 288}, + [6317] = {.lex_state = 288}, + [6318] = {.lex_state = 250}, + [6319] = {.lex_state = 329}, + [6320] = {.lex_state = 250}, + [6321] = {.lex_state = 329}, + [6322] = {.lex_state = 329}, + [6323] = {.lex_state = 394}, + [6324] = {.lex_state = 250}, + [6325] = {.lex_state = 250}, + [6326] = {.lex_state = 312}, + [6327] = {.lex_state = 337}, + [6328] = {.lex_state = 337}, + [6329] = {.lex_state = 337}, + [6330] = {.lex_state = 337}, + [6331] = {.lex_state = 287}, + [6332] = {.lex_state = 305}, + [6333] = {.lex_state = 287}, + [6334] = {.lex_state = 312}, + [6335] = {.lex_state = 152}, + [6336] = {.lex_state = 312}, + [6337] = {.lex_state = 152}, [6338] = {.lex_state = 152}, - [6339] = {.lex_state = 250}, + [6339] = {.lex_state = 329}, [6340] = {.lex_state = 152}, - [6341] = {.lex_state = 132}, - [6342] = {.lex_state = 132}, - [6343] = {.lex_state = 152}, + [6341] = {.lex_state = 338}, + [6342] = {.lex_state = 329}, + [6343] = {.lex_state = 338}, [6344] = {.lex_state = 250}, - [6345] = {.lex_state = 336}, - [6346] = {.lex_state = 328}, - [6347] = {.lex_state = 336}, - [6348] = {.lex_state = 336}, - [6349] = {.lex_state = 132}, - [6350] = {.lex_state = 152}, - [6351] = {.lex_state = 304}, - [6352] = {.lex_state = 336}, - [6353] = {.lex_state = 336}, - [6354] = {.lex_state = 336}, - [6355] = {.lex_state = 336}, - [6356] = {.lex_state = 208}, + [6345] = {.lex_state = 338}, + [6346] = {.lex_state = 250}, + [6347] = {.lex_state = 250}, + [6348] = {.lex_state = 337}, + [6349] = {.lex_state = 337}, + [6350] = {.lex_state = 337}, + [6351] = {.lex_state = 337}, + [6352] = {.lex_state = 337}, + [6353] = {.lex_state = 337}, + [6354] = {.lex_state = 337}, + [6355] = {.lex_state = 337}, + [6356] = {.lex_state = 152}, [6357] = {.lex_state = 152}, - [6358] = {.lex_state = 336}, + [6358] = {.lex_state = 329}, [6359] = {.lex_state = 152}, - [6360] = {.lex_state = 152}, - [6361] = {.lex_state = 336}, - [6362] = {.lex_state = 336}, - [6363] = {.lex_state = 336}, - [6364] = {.lex_state = 336}, - [6365] = {.lex_state = 336}, - [6366] = {.lex_state = 336}, - [6367] = {.lex_state = 336}, - [6368] = {.lex_state = 336}, - [6369] = {.lex_state = 132}, - [6370] = {.lex_state = 132}, + [6360] = {.lex_state = 335}, + [6361] = {.lex_state = 152}, + [6362] = {.lex_state = 152}, + [6363] = {.lex_state = 337}, + [6364] = {.lex_state = 253}, + [6365] = {.lex_state = 337}, + [6366] = {.lex_state = 337}, + [6367] = {.lex_state = 152}, + [6368] = {.lex_state = 337}, + [6369] = {.lex_state = 250}, + [6370] = {.lex_state = 152}, [6371] = {.lex_state = 152}, [6372] = {.lex_state = 152}, [6373] = {.lex_state = 152}, - [6374] = {.lex_state = 132}, - [6375] = {.lex_state = 286}, - [6376] = {.lex_state = 132}, - [6377] = {.lex_state = 132}, - [6378] = {.lex_state = 311}, - [6379] = {.lex_state = 336}, - [6380] = {.lex_state = 132}, - [6381] = {.lex_state = 132}, - [6382] = {.lex_state = 132}, - [6383] = {.lex_state = 303}, - [6384] = {.lex_state = 336}, - [6385] = {.lex_state = 336}, - [6386] = {.lex_state = 132}, - [6387] = {.lex_state = 328}, - [6388] = {.lex_state = 132}, - [6389] = {.lex_state = 336}, - [6390] = {.lex_state = 336}, - [6391] = {.lex_state = 336}, - [6392] = {.lex_state = 336}, - [6393] = {.lex_state = 132}, - [6394] = {.lex_state = 250}, - [6395] = {.lex_state = 132}, - [6396] = {.lex_state = 132}, - [6397] = {.lex_state = 152}, - [6398] = {.lex_state = 286}, - [6399] = {.lex_state = 328}, - [6400] = {.lex_state = 328}, - [6401] = {.lex_state = 336}, - [6402] = {.lex_state = 152}, - [6403] = {.lex_state = 152}, - [6404] = {.lex_state = 338}, - [6405] = {.lex_state = 328}, - [6406] = {.lex_state = 152}, - [6407] = {.lex_state = 396}, - [6408] = {.lex_state = 152}, - [6409] = {.lex_state = 152}, - [6410] = {.lex_state = 328}, - [6411] = {.lex_state = 250}, - [6412] = {.lex_state = 250}, + [6374] = {.lex_state = 152}, + [6375] = {.lex_state = 152}, + [6376] = {.lex_state = 337}, + [6377] = {.lex_state = 337}, + [6378] = {.lex_state = 337}, + [6379] = {.lex_state = 152}, + [6380] = {.lex_state = 152}, + [6381] = {.lex_state = 329}, + [6382] = {.lex_state = 337}, + [6383] = {.lex_state = 337}, + [6384] = {.lex_state = 337}, + [6385] = {.lex_state = 337}, + [6386] = {.lex_state = 337}, + [6387] = {.lex_state = 337}, + [6388] = {.lex_state = 152}, + [6389] = {.lex_state = 337}, + [6390] = {.lex_state = 337}, + [6391] = {.lex_state = 152}, + [6392] = {.lex_state = 152}, + [6393] = {.lex_state = 337}, + [6394] = {.lex_state = 337}, + [6395] = {.lex_state = 337}, + [6396] = {.lex_state = 337}, + [6397] = {.lex_state = 337}, + [6398] = {.lex_state = 337}, + [6399] = {.lex_state = 337}, + [6400] = {.lex_state = 337}, + [6401] = {.lex_state = 337}, + [6402] = {.lex_state = 337}, + [6403] = {.lex_state = 337}, + [6404] = {.lex_state = 337}, + [6405] = {.lex_state = 337}, + [6406] = {.lex_state = 208}, + [6407] = {.lex_state = 337}, + [6408] = {.lex_state = 337}, + [6409] = {.lex_state = 337}, + [6410] = {.lex_state = 152}, + [6411] = {.lex_state = 152}, + [6412] = {.lex_state = 337}, [6413] = {.lex_state = 337}, - [6414] = {.lex_state = 336}, - [6415] = {.lex_state = 152}, - [6416] = {.lex_state = 336}, - [6417] = {.lex_state = 336}, - [6418] = {.lex_state = 328}, - [6419] = {.lex_state = 336}, - [6420] = {.lex_state = 152}, - [6421] = {.lex_state = 304}, - [6422] = {.lex_state = 250}, - [6423] = {.lex_state = 250}, - [6424] = {.lex_state = 328}, - [6425] = {.lex_state = 336}, - [6426] = {.lex_state = 152}, - [6427] = {.lex_state = 336}, - [6428] = {.lex_state = 336}, - [6429] = {.lex_state = 311}, - [6430] = {.lex_state = 152}, - [6431] = {.lex_state = 287}, - [6432] = {.lex_state = 152}, - [6433] = {.lex_state = 287}, - [6434] = {.lex_state = 132}, - [6435] = {.lex_state = 287}, - [6436] = {.lex_state = 250}, - [6437] = {.lex_state = 250}, - [6438] = {.lex_state = 152}, - [6439] = {.lex_state = 287}, - [6440] = {.lex_state = 328}, - [6441] = {.lex_state = 334}, - [6442] = {.lex_state = 393}, - [6443] = {.lex_state = 304}, - [6444] = {.lex_state = 304}, - [6445] = {.lex_state = 223}, - [6446] = {.lex_state = 303}, - [6447] = {.lex_state = 303}, - [6448] = {.lex_state = 152}, - [6449] = {.lex_state = 152}, - [6450] = {.lex_state = 287}, - [6451] = {.lex_state = 250}, - [6452] = {.lex_state = 152}, - [6453] = {.lex_state = 152}, - [6454] = {.lex_state = 152}, - [6455] = {.lex_state = 132}, - [6456] = {.lex_state = 152}, - [6457] = {.lex_state = 152}, - [6458] = {.lex_state = 152}, - [6459] = {.lex_state = 152}, - [6460] = {.lex_state = 152}, - [6461] = {.lex_state = 152}, - [6462] = {.lex_state = 152}, - [6463] = {.lex_state = 250}, - [6464] = {.lex_state = 311}, - [6465] = {.lex_state = 328}, - [6466] = {.lex_state = 152}, - [6467] = {.lex_state = 268}, - [6468] = {.lex_state = 304}, - [6469] = {.lex_state = 250}, - [6470] = {.lex_state = 133}, - [6471] = {.lex_state = 152}, - [6472] = {.lex_state = 133}, - [6473] = {.lex_state = 152}, - [6474] = {.lex_state = 133}, - [6475] = {.lex_state = 133}, - [6476] = {.lex_state = 133}, - [6477] = {.lex_state = 337}, - [6478] = {.lex_state = 133}, - [6479] = {.lex_state = 133}, - [6480] = {.lex_state = 133}, - [6481] = {.lex_state = 133}, - [6482] = {.lex_state = 152}, - [6483] = {.lex_state = 304}, - [6484] = {.lex_state = 304}, - [6485] = {.lex_state = 133}, - [6486] = {.lex_state = 133}, - [6487] = {.lex_state = 133}, - [6488] = {.lex_state = 152}, - [6489] = {.lex_state = 250}, - [6490] = {.lex_state = 152}, - [6491] = {.lex_state = 133}, - [6492] = {.lex_state = 336}, - [6493] = {.lex_state = 336}, - [6494] = {.lex_state = 132}, - [6495] = {.lex_state = 132}, - [6496] = {.lex_state = 288}, - [6497] = {.lex_state = 336}, - [6498] = {.lex_state = 336}, - [6499] = {.lex_state = 132}, - [6500] = {.lex_state = 336}, - [6501] = {.lex_state = 336}, - [6502] = {.lex_state = 336}, - [6503] = {.lex_state = 336}, - [6504] = {.lex_state = 288}, - [6505] = {.lex_state = 336}, - [6506] = {.lex_state = 336}, - [6507] = {.lex_state = 288}, - [6508] = {.lex_state = 250}, - [6509] = {.lex_state = 132}, - [6510] = {.lex_state = 336}, - [6511] = {.lex_state = 132}, - [6512] = {.lex_state = 246}, - [6513] = {.lex_state = 132}, - [6514] = {.lex_state = 336}, - [6515] = {.lex_state = 132}, - [6516] = {.lex_state = 288}, - [6517] = {.lex_state = 132}, - [6518] = {.lex_state = 336}, - [6519] = {.lex_state = 250}, - [6520] = {.lex_state = 336}, - [6521] = {.lex_state = 394}, - [6522] = {.lex_state = 312}, - [6523] = {.lex_state = 132}, - [6524] = {.lex_state = 132}, - [6525] = {.lex_state = 132}, - [6526] = {.lex_state = 132}, - [6527] = {.lex_state = 132}, - [6528] = {.lex_state = 336}, - [6529] = {.lex_state = 336}, + [6414] = {.lex_state = 337}, + [6415] = {.lex_state = 337}, + [6416] = {.lex_state = 304}, + [6417] = {.lex_state = 304}, + [6418] = {.lex_state = 224}, + [6419] = {.lex_state = 397}, + [6420] = {.lex_state = 88}, + [6421] = {.lex_state = 88}, + [6422] = {.lex_state = 88}, + [6423] = {.lex_state = 88}, + [6424] = {.lex_state = 88}, + [6425] = {.lex_state = 250}, + [6426] = {.lex_state = 88}, + [6427] = {.lex_state = 88}, + [6428] = {.lex_state = 88}, + [6429] = {.lex_state = 88}, + [6430] = {.lex_state = 88}, + [6431] = {.lex_state = 88}, + [6432] = {.lex_state = 250}, + [6433] = {.lex_state = 88}, + [6434] = {.lex_state = 88}, + [6435] = {.lex_state = 307}, + [6436] = {.lex_state = 307}, + [6437] = {.lex_state = 329}, + [6438] = {.lex_state = 329}, + [6439] = {.lex_state = 329}, + [6440] = {.lex_state = 329}, + [6441] = {.lex_state = 133}, + [6442] = {.lex_state = 133}, + [6443] = {.lex_state = 329}, + [6444] = {.lex_state = 250}, + [6445] = {.lex_state = 133}, + [6446] = {.lex_state = 133}, + [6447] = {.lex_state = 133}, + [6448] = {.lex_state = 133}, + [6449] = {.lex_state = 133}, + [6450] = {.lex_state = 133}, + [6451] = {.lex_state = 133}, + [6452] = {.lex_state = 133}, + [6453] = {.lex_state = 133}, + [6454] = {.lex_state = 133}, + [6455] = {.lex_state = 133}, + [6456] = {.lex_state = 133}, + [6457] = {.lex_state = 133}, + [6458] = {.lex_state = 133}, + [6459] = {.lex_state = 133}, + [6460] = {.lex_state = 133}, + [6461] = {.lex_state = 133}, + [6462] = {.lex_state = 133}, + [6463] = {.lex_state = 133}, + [6464] = {.lex_state = 133}, + [6465] = {.lex_state = 133}, + [6466] = {.lex_state = 133}, + [6467] = {.lex_state = 133}, + [6468] = {.lex_state = 133}, + [6469] = {.lex_state = 133}, + [6470] = {.lex_state = 250}, + [6471] = {.lex_state = 250}, + [6472] = {.lex_state = 134}, + [6473] = {.lex_state = 134}, + [6474] = {.lex_state = 134}, + [6475] = {.lex_state = 134}, + [6476] = {.lex_state = 134}, + [6477] = {.lex_state = 134}, + [6478] = {.lex_state = 134}, + [6479] = {.lex_state = 134}, + [6480] = {.lex_state = 134}, + [6481] = {.lex_state = 134}, + [6482] = {.lex_state = 134}, + [6483] = {.lex_state = 134}, + [6484] = {.lex_state = 134}, + [6485] = {.lex_state = 329}, + [6486] = {.lex_state = 329}, + [6487] = {.lex_state = 250}, + [6488] = {.lex_state = 305}, + [6489] = {.lex_state = 305}, + [6490] = {.lex_state = 329}, + [6491] = {.lex_state = 337}, + [6492] = {.lex_state = 303}, + [6493] = {.lex_state = 303}, + [6494] = {.lex_state = 303}, + [6495] = {.lex_state = 303}, + [6496] = {.lex_state = 303}, + [6497] = {.lex_state = 259}, + [6498] = {.lex_state = 259}, + [6499] = {.lex_state = 246}, + [6500] = {.lex_state = 395}, + [6501] = {.lex_state = 133}, + [6502] = {.lex_state = 303}, + [6503] = {.lex_state = 250}, + [6504] = {.lex_state = 250}, + [6505] = {.lex_state = 303}, + [6506] = {.lex_state = 303}, + [6507] = {.lex_state = 250}, + [6508] = {.lex_state = 289}, + [6509] = {.lex_state = 289}, + [6510] = {.lex_state = 250}, + [6511] = {.lex_state = 313}, + [6512] = {.lex_state = 289}, + [6513] = {.lex_state = 289}, + [6514] = {.lex_state = 289}, + [6515] = {.lex_state = 289}, + [6516] = {.lex_state = 289}, + [6517] = {.lex_state = 313}, + [6518] = {.lex_state = 313}, + [6519] = {.lex_state = 289}, + [6520] = {.lex_state = 337}, + [6521] = {.lex_state = 303}, + [6522] = {.lex_state = 289}, + [6523] = {.lex_state = 310}, + [6524] = {.lex_state = 337}, + [6525] = {.lex_state = 337}, + [6526] = {.lex_state = 289}, + [6527] = {.lex_state = 337}, + [6528] = {.lex_state = 289}, + [6529] = {.lex_state = 337}, [6530] = {.lex_state = 250}, - [6531] = {.lex_state = 336}, - [6532] = {.lex_state = 302}, - [6533] = {.lex_state = 132}, - [6534] = {.lex_state = 336}, - [6535] = {.lex_state = 336}, - [6536] = {.lex_state = 336}, - [6537] = {.lex_state = 267}, - [6538] = {.lex_state = 336}, - [6539] = {.lex_state = 250}, - [6540] = {.lex_state = 302}, - [6541] = {.lex_state = 336}, - [6542] = {.lex_state = 132}, - [6543] = {.lex_state = 132}, - [6544] = {.lex_state = 132}, - [6545] = {.lex_state = 288}, - [6546] = {.lex_state = 336}, - [6547] = {.lex_state = 132}, - [6548] = {.lex_state = 336}, - [6549] = {.lex_state = 267}, - [6550] = {.lex_state = 336}, - [6551] = {.lex_state = 132}, - [6552] = {.lex_state = 336}, - [6553] = {.lex_state = 132}, - [6554] = {.lex_state = 250}, - [6555] = {.lex_state = 250}, - [6556] = {.lex_state = 132}, - [6557] = {.lex_state = 132}, - [6558] = {.lex_state = 302}, - [6559] = {.lex_state = 302}, - [6560] = {.lex_state = 132}, - [6561] = {.lex_state = 288}, - [6562] = {.lex_state = 302}, - [6563] = {.lex_state = 132}, - [6564] = {.lex_state = 336}, - [6565] = {.lex_state = 132}, - [6566] = {.lex_state = 336}, - [6567] = {.lex_state = 336}, - [6568] = {.lex_state = 288}, - [6569] = {.lex_state = 132}, - [6570] = {.lex_state = 302}, - [6571] = {.lex_state = 336}, - [6572] = {.lex_state = 302}, - [6573] = {.lex_state = 132}, - [6574] = {.lex_state = 288}, - [6575] = {.lex_state = 302}, - [6576] = {.lex_state = 250}, - [6577] = {.lex_state = 288}, - [6578] = {.lex_state = 336}, - [6579] = {.lex_state = 132}, - [6580] = {.lex_state = 336}, - [6581] = {.lex_state = 259}, - [6582] = {.lex_state = 250}, - [6583] = {.lex_state = 259}, - [6584] = {.lex_state = 336}, - [6585] = {.lex_state = 336}, - [6586] = {.lex_state = 250}, - [6587] = {.lex_state = 250}, - [6588] = {.lex_state = 250}, - [6589] = {.lex_state = 336}, - [6590] = {.lex_state = 302}, - [6591] = {.lex_state = 336}, - [6592] = {.lex_state = 336}, - [6593] = {.lex_state = 336}, - [6594] = {.lex_state = 302}, - [6595] = {.lex_state = 336}, - [6596] = {.lex_state = 336}, - [6597] = {.lex_state = 336}, - [6598] = {.lex_state = 336}, - [6599] = {.lex_state = 314}, - [6600] = {.lex_state = 302}, - [6601] = {.lex_state = 302}, - [6602] = {.lex_state = 302}, - [6603] = {.lex_state = 336}, - [6604] = {.lex_state = 336}, - [6605] = {.lex_state = 302}, - [6606] = {.lex_state = 336}, - [6607] = {.lex_state = 336}, - [6608] = {.lex_state = 302}, - [6609] = {.lex_state = 336}, - [6610] = {.lex_state = 302}, - [6611] = {.lex_state = 336}, - [6612] = {.lex_state = 302}, - [6613] = {.lex_state = 288}, - [6614] = {.lex_state = 336}, - [6615] = {.lex_state = 250}, - [6616] = {.lex_state = 246}, - [6617] = {.lex_state = 395}, - [6618] = {.lex_state = 336}, - [6619] = {.lex_state = 336}, - [6620] = {.lex_state = 291}, - [6621] = {.lex_state = 336}, - [6622] = {.lex_state = 302}, - [6623] = {.lex_state = 302}, - [6624] = {.lex_state = 336}, - [6625] = {.lex_state = 336}, - [6626] = {.lex_state = 288}, - [6627] = {.lex_state = 312}, - [6628] = {.lex_state = 259}, - [6629] = {.lex_state = 336}, - [6630] = {.lex_state = 291}, - [6631] = {.lex_state = 288}, - [6632] = {.lex_state = 288}, - [6633] = {.lex_state = 309}, - [6634] = {.lex_state = 336}, - [6635] = {.lex_state = 288}, - [6636] = {.lex_state = 291}, - [6637] = {.lex_state = 336}, - [6638] = {.lex_state = 336}, - [6639] = {.lex_state = 288}, - [6640] = {.lex_state = 336}, - [6641] = {.lex_state = 312}, - [6642] = {.lex_state = 336}, - [6643] = {.lex_state = 302}, + [6531] = {.lex_state = 250}, + [6532] = {.lex_state = 337}, + [6533] = {.lex_state = 337}, + [6534] = {.lex_state = 337}, + [6535] = {.lex_state = 337}, + [6536] = {.lex_state = 337}, + [6537] = {.lex_state = 289}, + [6538] = {.lex_state = 337}, + [6539] = {.lex_state = 337}, + [6540] = {.lex_state = 337}, + [6541] = {.lex_state = 337}, + [6542] = {.lex_state = 337}, + [6543] = {.lex_state = 337}, + [6544] = {.lex_state = 337}, + [6545] = {.lex_state = 337}, + [6546] = {.lex_state = 337}, + [6547] = {.lex_state = 250}, + [6548] = {.lex_state = 337}, + [6549] = {.lex_state = 337}, + [6550] = {.lex_state = 337}, + [6551] = {.lex_state = 337}, + [6552] = {.lex_state = 303}, + [6553] = {.lex_state = 337}, + [6554] = {.lex_state = 259}, + [6555] = {.lex_state = 303}, + [6556] = {.lex_state = 303}, + [6557] = {.lex_state = 337}, + [6558] = {.lex_state = 268}, + [6559] = {.lex_state = 250}, + [6560] = {.lex_state = 337}, + [6561] = {.lex_state = 337}, + [6562] = {.lex_state = 303}, + [6563] = {.lex_state = 268}, + [6564] = {.lex_state = 337}, + [6565] = {.lex_state = 337}, + [6566] = {.lex_state = 303}, + [6567] = {.lex_state = 246}, + [6568] = {.lex_state = 337}, + [6569] = {.lex_state = 337}, + [6570] = {.lex_state = 337}, + [6571] = {.lex_state = 250}, + [6572] = {.lex_state = 133}, + [6573] = {.lex_state = 250}, + [6574] = {.lex_state = 250}, + [6575] = {.lex_state = 292}, + [6576] = {.lex_state = 337}, + [6577] = {.lex_state = 292}, + [6578] = {.lex_state = 292}, + [6579] = {.lex_state = 303}, + [6580] = {.lex_state = 337}, + [6581] = {.lex_state = 337}, + [6582] = {.lex_state = 303}, + [6583] = {.lex_state = 303}, + [6584] = {.lex_state = 337}, + [6585] = {.lex_state = 337}, + [6586] = {.lex_state = 337}, + [6587] = {.lex_state = 337}, + [6588] = {.lex_state = 133}, + [6589] = {.lex_state = 337}, + [6590] = {.lex_state = 133}, + [6591] = {.lex_state = 133}, + [6592] = {.lex_state = 133}, + [6593] = {.lex_state = 133}, + [6594] = {.lex_state = 133}, + [6595] = {.lex_state = 133}, + [6596] = {.lex_state = 133}, + [6597] = {.lex_state = 133}, + [6598] = {.lex_state = 133}, + [6599] = {.lex_state = 133}, + [6600] = {.lex_state = 133}, + [6601] = {.lex_state = 133}, + [6602] = {.lex_state = 337}, + [6603] = {.lex_state = 250}, + [6604] = {.lex_state = 337}, + [6605] = {.lex_state = 337}, + [6606] = {.lex_state = 337}, + [6607] = {.lex_state = 337}, + [6608] = {.lex_state = 337}, + [6609] = {.lex_state = 337}, + [6610] = {.lex_state = 315}, + [6611] = {.lex_state = 337}, + [6612] = {.lex_state = 337}, + [6613] = {.lex_state = 337}, + [6614] = {.lex_state = 289}, + [6615] = {.lex_state = 303}, + [6616] = {.lex_state = 303}, + [6617] = {.lex_state = 289}, + [6618] = {.lex_state = 133}, + [6619] = {.lex_state = 337}, + [6620] = {.lex_state = 337}, + [6621] = {.lex_state = 133}, + [6622] = {.lex_state = 396}, + [6623] = {.lex_state = 133}, + [6624] = {.lex_state = 289}, + [6625] = {.lex_state = 133}, + [6626] = {.lex_state = 133}, + [6627] = {.lex_state = 133}, + [6628] = {.lex_state = 133}, + [6629] = {.lex_state = 133}, + [6630] = {.lex_state = 133}, + [6631] = {.lex_state = 133}, + [6632] = {.lex_state = 133}, + [6633] = {.lex_state = 133}, + [6634] = {.lex_state = 337}, + [6635] = {.lex_state = 337}, + [6636] = {.lex_state = 337}, + [6637] = {.lex_state = 337}, + [6638] = {.lex_state = 133}, + [6639] = {.lex_state = 337}, + [6640] = {.lex_state = 337}, + [6641] = {.lex_state = 303}, + [6642] = {.lex_state = 337}, + [6643] = {.lex_state = 337}, [6644] = {.lex_state = 246}, - [6645] = {.lex_state = 292}, - [6646] = {.lex_state = 292}, - [6647] = {.lex_state = 292}, - [6648] = {.lex_state = 132}, - [6649] = {.lex_state = 132}, - [6650] = {.lex_state = 132}, - [6651] = {.lex_state = 132}, - [6652] = {.lex_state = 246}, - [6653] = {.lex_state = 246}, - [6654] = {.lex_state = 292}, + [6645] = {.lex_state = 246}, + [6646] = {.lex_state = 246}, + [6647] = {.lex_state = 293}, + [6648] = {.lex_state = 293}, + [6649] = {.lex_state = 250}, + [6650] = {.lex_state = 250}, + [6651] = {.lex_state = 293}, + [6652] = {.lex_state = 250}, + [6653] = {.lex_state = 250}, + [6654] = {.lex_state = 293}, [6655] = {.lex_state = 246}, - [6656] = {.lex_state = 246}, - [6657] = {.lex_state = 292}, - [6658] = {.lex_state = 246}, - [6659] = {.lex_state = 292}, - [6660] = {.lex_state = 246}, - [6661] = {.lex_state = 246}, - [6662] = {.lex_state = 250}, - [6663] = {.lex_state = 246}, - [6664] = {.lex_state = 246}, - [6665] = {.lex_state = 246}, + [6656] = {.lex_state = 293}, + [6657] = {.lex_state = 133}, + [6658] = {.lex_state = 293}, + [6659] = {.lex_state = 293}, + [6660] = {.lex_state = 293}, + [6661] = {.lex_state = 293}, + [6662] = {.lex_state = 246}, + [6663] = {.lex_state = 293}, + [6664] = {.lex_state = 293}, + [6665] = {.lex_state = 392}, [6666] = {.lex_state = 246}, [6667] = {.lex_state = 246}, - [6668] = {.lex_state = 132}, - [6669] = {.lex_state = 292}, + [6668] = {.lex_state = 246}, + [6669] = {.lex_state = 246}, [6670] = {.lex_state = 246}, [6671] = {.lex_state = 246}, [6672] = {.lex_state = 246}, [6673] = {.lex_state = 246}, - [6674] = {.lex_state = 250}, - [6675] = {.lex_state = 250}, + [6674] = {.lex_state = 246}, + [6675] = {.lex_state = 133}, [6676] = {.lex_state = 246}, - [6677] = {.lex_state = 292}, + [6677] = {.lex_state = 133}, [6678] = {.lex_state = 250}, - [6679] = {.lex_state = 292}, - [6680] = {.lex_state = 132}, + [6679] = {.lex_state = 133}, + [6680] = {.lex_state = 293}, [6681] = {.lex_state = 246}, - [6682] = {.lex_state = 246}, - [6683] = {.lex_state = 292}, - [6684] = {.lex_state = 292}, - [6685] = {.lex_state = 246}, + [6682] = {.lex_state = 133}, + [6683] = {.lex_state = 250}, + [6684] = {.lex_state = 133}, + [6685] = {.lex_state = 133}, [6686] = {.lex_state = 259}, - [6687] = {.lex_state = 246}, - [6688] = {.lex_state = 132}, - [6689] = {.lex_state = 292}, - [6690] = {.lex_state = 132}, + [6687] = {.lex_state = 133}, + [6688] = {.lex_state = 246}, + [6689] = {.lex_state = 133}, + [6690] = {.lex_state = 246}, [6691] = {.lex_state = 246}, - [6692] = {.lex_state = 246}, - [6693] = {.lex_state = 246}, + [6692] = {.lex_state = 293}, + [6693] = {.lex_state = 133}, [6694] = {.lex_state = 246}, - [6695] = {.lex_state = 292}, + [6695] = {.lex_state = 246}, [6696] = {.lex_state = 246}, - [6697] = {.lex_state = 250}, + [6697] = {.lex_state = 246}, [6698] = {.lex_state = 246}, - [6699] = {.lex_state = 132}, - [6700] = {.lex_state = 246}, + [6699] = {.lex_state = 250}, + [6700] = {.lex_state = 133}, [6701] = {.lex_state = 246}, [6702] = {.lex_state = 246}, [6703] = {.lex_state = 246}, - [6704] = {.lex_state = 246}, - [6705] = {.lex_state = 292}, - [6706] = {.lex_state = 246}, - [6707] = {.lex_state = 292}, - [6708] = {.lex_state = 246}, - [6709] = {.lex_state = 292}, + [6704] = {.lex_state = 293}, + [6705] = {.lex_state = 293}, + [6706] = {.lex_state = 250}, + [6707] = {.lex_state = 246}, + [6708] = {.lex_state = 250}, + [6709] = {.lex_state = 293}, [6710] = {.lex_state = 246}, - [6711] = {.lex_state = 246}, + [6711] = {.lex_state = 133}, [6712] = {.lex_state = 246}, - [6713] = {.lex_state = 132}, + [6713] = {.lex_state = 246}, [6714] = {.lex_state = 246}, [6715] = {.lex_state = 246}, [6716] = {.lex_state = 246}, [6717] = {.lex_state = 246}, - [6718] = {.lex_state = 292}, - [6719] = {.lex_state = 292}, - [6720] = {.lex_state = 292}, - [6721] = {.lex_state = 391}, - [6722] = {.lex_state = 246}, - [6723] = {.lex_state = 292}, - [6724] = {.lex_state = 132}, + [6718] = {.lex_state = 246}, + [6719] = {.lex_state = 133}, + [6720] = {.lex_state = 246}, + [6721] = {.lex_state = 246}, + [6722] = {.lex_state = 133}, + [6723] = {.lex_state = 246}, + [6724] = {.lex_state = 246}, [6725] = {.lex_state = 246}, [6726] = {.lex_state = 246}, - [6727] = {.lex_state = 292}, - [6728] = {.lex_state = 132}, - [6729] = {.lex_state = 132}, - [6730] = {.lex_state = 292}, - [6731] = {.lex_state = 292}, - [6732] = {.lex_state = 292}, - [6733] = {.lex_state = 292}, + [6727] = {.lex_state = 246}, + [6728] = {.lex_state = 293}, + [6729] = {.lex_state = 246}, + [6730] = {.lex_state = 250}, + [6731] = {.lex_state = 293}, + [6732] = {.lex_state = 133}, + [6733] = {.lex_state = 246}, [6734] = {.lex_state = 246}, [6735] = {.lex_state = 246}, - [6736] = {.lex_state = 292}, + [6736] = {.lex_state = 246}, [6737] = {.lex_state = 246}, - [6738] = {.lex_state = 246}, - [6739] = {.lex_state = 292}, + [6738] = {.lex_state = 293}, + [6739] = {.lex_state = 293}, [6740] = {.lex_state = 246}, [6741] = {.lex_state = 246}, [6742] = {.lex_state = 246}, - [6743] = {.lex_state = 246}, + [6743] = {.lex_state = 133}, [6744] = {.lex_state = 246}, - [6745] = {.lex_state = 246}, - [6746] = {.lex_state = 246}, - [6747] = {.lex_state = 292}, - [6748] = {.lex_state = 292}, - [6749] = {.lex_state = 246}, + [6745] = {.lex_state = 293}, + [6746] = {.lex_state = 133}, + [6747] = {.lex_state = 246}, + [6748] = {.lex_state = 133}, + [6749] = {.lex_state = 133}, [6750] = {.lex_state = 246}, - [6751] = {.lex_state = 246}, - [6752] = {.lex_state = 246}, - [6753] = {.lex_state = 246}, - [6754] = {.lex_state = 246}, - [6755] = {.lex_state = 292}, - [6756] = {.lex_state = 246}, + [6751] = {.lex_state = 133}, + [6752] = {.lex_state = 133}, + [6753] = {.lex_state = 133}, + [6754] = {.lex_state = 293}, + [6755] = {.lex_state = 267}, + [6756] = {.lex_state = 133}, [6757] = {.lex_state = 246}, [6758] = {.lex_state = 246}, - [6759] = {.lex_state = 250}, - [6760] = {.lex_state = 246}, - [6761] = {.lex_state = 246}, - [6762] = {.lex_state = 246}, + [6759] = {.lex_state = 293}, + [6760] = {.lex_state = 133}, + [6761] = {.lex_state = 293}, + [6762] = {.lex_state = 133}, [6763] = {.lex_state = 246}, - [6764] = {.lex_state = 250}, + [6764] = {.lex_state = 133}, [6765] = {.lex_state = 246}, - [6766] = {.lex_state = 246}, + [6766] = {.lex_state = 133}, [6767] = {.lex_state = 246}, - [6768] = {.lex_state = 246}, - [6769] = {.lex_state = 246}, + [6768] = {.lex_state = 293}, + [6769] = {.lex_state = 293}, [6770] = {.lex_state = 246}, - [6771] = {.lex_state = 246}, - [6772] = {.lex_state = 292}, + [6771] = {.lex_state = 250}, + [6772] = {.lex_state = 293}, [6773] = {.lex_state = 246}, [6774] = {.lex_state = 246}, - [6775] = {.lex_state = 292}, + [6775] = {.lex_state = 133}, [6776] = {.lex_state = 246}, [6777] = {.lex_state = 246}, [6778] = {.lex_state = 246}, - [6779] = {.lex_state = 292}, - [6780] = {.lex_state = 250}, - [6781] = {.lex_state = 250}, - [6782] = {.lex_state = 246}, - [6783] = {.lex_state = 132}, + [6779] = {.lex_state = 246}, + [6780] = {.lex_state = 293}, + [6781] = {.lex_state = 246}, + [6782] = {.lex_state = 133}, + [6783] = {.lex_state = 246}, [6784] = {.lex_state = 246}, - [6785] = {.lex_state = 250}, - [6786] = {.lex_state = 292}, - [6787] = {.lex_state = 292}, - [6788] = {.lex_state = 246}, + [6785] = {.lex_state = 246}, + [6786] = {.lex_state = 246}, + [6787] = {.lex_state = 246}, + [6788] = {.lex_state = 293}, [6789] = {.lex_state = 246}, - [6790] = {.lex_state = 246}, - [6791] = {.lex_state = 292}, - [6792] = {.lex_state = 266}, - [6793] = {.lex_state = 292}, - [6794] = {.lex_state = 250}, - [6795] = {.lex_state = 292}, + [6790] = {.lex_state = 133}, + [6791] = {.lex_state = 246}, + [6792] = {.lex_state = 293}, + [6793] = {.lex_state = 246}, + [6794] = {.lex_state = 246}, + [6795] = {.lex_state = 246}, [6796] = {.lex_state = 246}, [6797] = {.lex_state = 246}, - [6798] = {.lex_state = 292}, - [6799] = {.lex_state = 246}, - [6800] = {.lex_state = 292}, - [6801] = {.lex_state = 132}, - [6802] = {.lex_state = 259}, + [6798] = {.lex_state = 133}, + [6799] = {.lex_state = 133}, + [6800] = {.lex_state = 246}, + [6801] = {.lex_state = 246}, + [6802] = {.lex_state = 293}, [6803] = {.lex_state = 246}, - [6804] = {.lex_state = 292}, + [6804] = {.lex_state = 246}, [6805] = {.lex_state = 246}, - [6806] = {.lex_state = 292}, + [6806] = {.lex_state = 246}, [6807] = {.lex_state = 246}, - [6808] = {.lex_state = 132}, - [6809] = {.lex_state = 250}, - [6810] = {.lex_state = 132}, + [6808] = {.lex_state = 246}, + [6809] = {.lex_state = 293}, + [6810] = {.lex_state = 246}, [6811] = {.lex_state = 246}, - [6812] = {.lex_state = 292}, - [6813] = {.lex_state = 259}, + [6812] = {.lex_state = 246}, + [6813] = {.lex_state = 246}, [6814] = {.lex_state = 246}, - [6815] = {.lex_state = 250}, - [6816] = {.lex_state = 259}, - [6817] = {.lex_state = 292}, - [6818] = {.lex_state = 250}, + [6815] = {.lex_state = 246}, + [6816] = {.lex_state = 246}, + [6817] = {.lex_state = 246}, + [6818] = {.lex_state = 246}, [6819] = {.lex_state = 246}, - [6820] = {.lex_state = 132}, - [6821] = {.lex_state = 132}, + [6820] = {.lex_state = 246}, + [6821] = {.lex_state = 293}, [6822] = {.lex_state = 246}, - [6823] = {.lex_state = 250}, - [6824] = {.lex_state = 246}, + [6823] = {.lex_state = 293}, + [6824] = {.lex_state = 293}, [6825] = {.lex_state = 246}, - [6826] = {.lex_state = 246}, + [6826] = {.lex_state = 250}, [6827] = {.lex_state = 246}, - [6828] = {.lex_state = 246}, - [6829] = {.lex_state = 246}, - [6830] = {.lex_state = 292}, - [6831] = {.lex_state = 246}, - [6832] = {.lex_state = 292}, + [6828] = {.lex_state = 250}, + [6829] = {.lex_state = 293}, + [6830] = {.lex_state = 293}, + [6831] = {.lex_state = 133}, + [6832] = {.lex_state = 293}, [6833] = {.lex_state = 246}, - [6834] = {.lex_state = 132}, - [6835] = {.lex_state = 292}, - [6836] = {.lex_state = 250}, - [6837] = {.lex_state = 132}, - [6838] = {.lex_state = 250}, - [6839] = {.lex_state = 246}, - [6840] = {.lex_state = 132}, - [6841] = {.lex_state = 246}, - [6842] = {.lex_state = 292}, - [6843] = {.lex_state = 246}, + [6834] = {.lex_state = 246}, + [6835] = {.lex_state = 246}, + [6836] = {.lex_state = 246}, + [6837] = {.lex_state = 293}, + [6838] = {.lex_state = 246}, + [6839] = {.lex_state = 250}, + [6840] = {.lex_state = 250}, + [6841] = {.lex_state = 250}, + [6842] = {.lex_state = 250}, + [6843] = {.lex_state = 293}, [6844] = {.lex_state = 246}, [6845] = {.lex_state = 246}, - [6846] = {.lex_state = 132}, - [6847] = {.lex_state = 246}, - [6848] = {.lex_state = 292}, - [6849] = {.lex_state = 246}, - [6850] = {.lex_state = 292}, - [6851] = {.lex_state = 246}, + [6846] = {.lex_state = 293}, + [6847] = {.lex_state = 293}, + [6848] = {.lex_state = 293}, + [6849] = {.lex_state = 293}, + [6850] = {.lex_state = 293}, + [6851] = {.lex_state = 293}, [6852] = {.lex_state = 246}, - [6853] = {.lex_state = 292}, - [6854] = {.lex_state = 292}, - [6855] = {.lex_state = 292}, - [6856] = {.lex_state = 132}, - [6857] = {.lex_state = 292}, - [6858] = {.lex_state = 132}, - [6859] = {.lex_state = 132}, - [6860] = {.lex_state = 132}, - [6861] = {.lex_state = 292}, - [6862] = {.lex_state = 250}, - [6863] = {.lex_state = 132}, - [6864] = {.lex_state = 132}, - [6865] = {.lex_state = 246}, - [6866] = {.lex_state = 292}, - [6867] = {.lex_state = 292}, - [6868] = {.lex_state = 132}, - [6869] = {.lex_state = 132}, - [6870] = {.lex_state = 292}, - [6871] = {.lex_state = 246}, - [6872] = {.lex_state = 132}, - [6873] = {.lex_state = 132}, - [6874] = {.lex_state = 246}, + [6853] = {.lex_state = 293}, + [6854] = {.lex_state = 293}, + [6855] = {.lex_state = 246}, + [6856] = {.lex_state = 293}, + [6857] = {.lex_state = 250}, + [6858] = {.lex_state = 293}, + [6859] = {.lex_state = 246}, + [6860] = {.lex_state = 246}, + [6861] = {.lex_state = 246}, + [6862] = {.lex_state = 246}, + [6863] = {.lex_state = 293}, + [6864] = {.lex_state = 293}, + [6865] = {.lex_state = 293}, + [6866] = {.lex_state = 293}, + [6867] = {.lex_state = 293}, + [6868] = {.lex_state = 246}, + [6869] = {.lex_state = 259}, + [6870] = {.lex_state = 293}, + [6871] = {.lex_state = 259}, + [6872] = {.lex_state = 259}, + [6873] = {.lex_state = 246}, + [6874] = {.lex_state = 293}, [6875] = {.lex_state = 246}, - [6876] = {.lex_state = 246}, - [6877] = {.lex_state = 269}, - [6878] = {.lex_state = 269}, - [6879] = {.lex_state = 269}, - [6880] = {.lex_state = 269}, - [6881] = {.lex_state = 269}, - [6882] = {.lex_state = 269}, - [6883] = {.lex_state = 269}, - [6884] = {.lex_state = 269}, - [6885] = {.lex_state = 269}, - [6886] = {.lex_state = 269}, - [6887] = {.lex_state = 269}, - [6888] = {.lex_state = 269}, - [6889] = {.lex_state = 269}, - [6890] = {.lex_state = 269}, - [6891] = {.lex_state = 269}, - [6892] = {.lex_state = 269}, - [6893] = {.lex_state = 269}, - [6894] = {.lex_state = 269}, - [6895] = {.lex_state = 269}, - [6896] = {.lex_state = 269}, - [6897] = {.lex_state = 269}, - [6898] = {.lex_state = 269}, - [6899] = {.lex_state = 269}, - [6900] = {.lex_state = 269}, - [6901] = {.lex_state = 269}, - [6902] = {.lex_state = 269}, - [6903] = {.lex_state = 269}, - [6904] = {.lex_state = 269}, - [6905] = {.lex_state = 269}, - [6906] = {.lex_state = 269}, - [6907] = {.lex_state = 269}, - [6908] = {.lex_state = 269}, - [6909] = {.lex_state = 269}, - [6910] = {.lex_state = 269}, - [6911] = {.lex_state = 269}, - [6912] = {.lex_state = 269}, - [6913] = {.lex_state = 269}, - [6914] = {.lex_state = 269}, - [6915] = {.lex_state = 269}, - [6916] = {.lex_state = 269}, - [6917] = {.lex_state = 269}, - [6918] = {.lex_state = 269}, - [6919] = {.lex_state = 269}, - [6920] = {.lex_state = 269}, - [6921] = {.lex_state = 269}, - [6922] = {.lex_state = 269}, - [6923] = {.lex_state = 269}, - [6924] = {.lex_state = 269}, - [6925] = {.lex_state = 269}, - [6926] = {.lex_state = 269}, - [6927] = {.lex_state = 269}, - [6928] = {.lex_state = 269}, - [6929] = {.lex_state = 269}, - [6930] = {.lex_state = 269}, - [6931] = {.lex_state = 269}, - [6932] = {.lex_state = 269}, - [6933] = {.lex_state = 269}, - [6934] = {.lex_state = 269}, - [6935] = {.lex_state = 269}, - [6936] = {.lex_state = 269}, - [6937] = {.lex_state = 269}, - [6938] = {.lex_state = 246}, - [6939] = {.lex_state = 246}, - [6940] = {.lex_state = 269}, - [6941] = {.lex_state = 269}, - [6942] = {.lex_state = 269}, - [6943] = {.lex_state = 269}, - [6944] = {.lex_state = 269}, - [6945] = {.lex_state = 269}, - [6946] = {.lex_state = 269}, - [6947] = {.lex_state = 269}, - [6948] = {.lex_state = 269}, - [6949] = {.lex_state = 346}, - [6950] = {.lex_state = 269}, - [6951] = {.lex_state = 269}, - [6952] = {.lex_state = 269}, - [6953] = {.lex_state = 269}, - [6954] = {.lex_state = 269}, - [6955] = {.lex_state = 269}, - [6956] = {.lex_state = 269}, - [6957] = {.lex_state = 269}, - [6958] = {.lex_state = 269}, - [6959] = {.lex_state = 269}, - [6960] = {.lex_state = 269}, - [6961] = {.lex_state = 269}, - [6962] = {.lex_state = 269}, - [6963] = {.lex_state = 269}, - [6964] = {.lex_state = 269}, - [6965] = {.lex_state = 269}, - [6966] = {.lex_state = 269}, - [6967] = {.lex_state = 269}, - [6968] = {.lex_state = 269}, - [6969] = {.lex_state = 269}, - [6970] = {.lex_state = 269}, - [6971] = {.lex_state = 269}, - [6972] = {.lex_state = 269}, - [6973] = {.lex_state = 269}, - [6974] = {.lex_state = 346}, - [6975] = {.lex_state = 269}, - [6976] = {.lex_state = 269}, - [6977] = {.lex_state = 273}, - [6978] = {.lex_state = 273}, - [6979] = {.lex_state = 274}, - [6980] = {.lex_state = 274}, - [6981] = {.lex_state = 273}, - [6982] = {.lex_state = 273}, - [6983] = {.lex_state = 274}, - [6984] = {.lex_state = 274}, - [6985] = {.lex_state = 274}, - [6986] = {.lex_state = 274}, - [6987] = {.lex_state = 399}, - [6988] = {.lex_state = 399}, - [6989] = {.lex_state = 399}, - [6990] = {.lex_state = 934}, - [6991] = {.lex_state = 399}, - [6992] = {.lex_state = 399}, - [6993] = {.lex_state = 399}, - [6994] = {.lex_state = 934}, - [6995] = {.lex_state = 399}, - [6996] = {.lex_state = 934}, - [6997] = {.lex_state = 399}, - [6998] = {.lex_state = 399}, - [6999] = {.lex_state = 399}, - [7000] = {.lex_state = 934}, - [7001] = {.lex_state = 934}, - [7002] = {.lex_state = 399}, - [7003] = {.lex_state = 936}, - [7004] = {.lex_state = 399}, - [7005] = {.lex_state = 399}, - [7006] = {.lex_state = 368}, - [7007] = {.lex_state = 934}, - [7008] = {.lex_state = 934}, - [7009] = {.lex_state = 399}, - [7010] = {.lex_state = 934}, - [7011] = {.lex_state = 934}, - [7012] = {.lex_state = 399}, - [7013] = {.lex_state = 399}, - [7014] = {.lex_state = 399}, - [7015] = {.lex_state = 399}, + [6876] = {.lex_state = 293}, + [6877] = {.lex_state = 270}, + [6878] = {.lex_state = 270}, + [6879] = {.lex_state = 270}, + [6880] = {.lex_state = 270}, + [6881] = {.lex_state = 270}, + [6882] = {.lex_state = 270}, + [6883] = {.lex_state = 270}, + [6884] = {.lex_state = 270}, + [6885] = {.lex_state = 270}, + [6886] = {.lex_state = 270}, + [6887] = {.lex_state = 270}, + [6888] = {.lex_state = 270}, + [6889] = {.lex_state = 270}, + [6890] = {.lex_state = 270}, + [6891] = {.lex_state = 270}, + [6892] = {.lex_state = 270}, + [6893] = {.lex_state = 270}, + [6894] = {.lex_state = 270}, + [6895] = {.lex_state = 270}, + [6896] = {.lex_state = 270}, + [6897] = {.lex_state = 270}, + [6898] = {.lex_state = 270}, + [6899] = {.lex_state = 270}, + [6900] = {.lex_state = 270}, + [6901] = {.lex_state = 270}, + [6902] = {.lex_state = 270}, + [6903] = {.lex_state = 270}, + [6904] = {.lex_state = 270}, + [6905] = {.lex_state = 270}, + [6906] = {.lex_state = 270}, + [6907] = {.lex_state = 270}, + [6908] = {.lex_state = 270}, + [6909] = {.lex_state = 270}, + [6910] = {.lex_state = 270}, + [6911] = {.lex_state = 270}, + [6912] = {.lex_state = 270}, + [6913] = {.lex_state = 270}, + [6914] = {.lex_state = 270}, + [6915] = {.lex_state = 270}, + [6916] = {.lex_state = 270}, + [6917] = {.lex_state = 270}, + [6918] = {.lex_state = 270}, + [6919] = {.lex_state = 270}, + [6920] = {.lex_state = 270}, + [6921] = {.lex_state = 270}, + [6922] = {.lex_state = 270}, + [6923] = {.lex_state = 270}, + [6924] = {.lex_state = 270}, + [6925] = {.lex_state = 270}, + [6926] = {.lex_state = 270}, + [6927] = {.lex_state = 270}, + [6928] = {.lex_state = 270}, + [6929] = {.lex_state = 270}, + [6930] = {.lex_state = 270}, + [6931] = {.lex_state = 270}, + [6932] = {.lex_state = 270}, + [6933] = {.lex_state = 270}, + [6934] = {.lex_state = 270}, + [6935] = {.lex_state = 270}, + [6936] = {.lex_state = 270}, + [6937] = {.lex_state = 270}, + [6938] = {.lex_state = 270}, + [6939] = {.lex_state = 270}, + [6940] = {.lex_state = 347}, + [6941] = {.lex_state = 270}, + [6942] = {.lex_state = 270}, + [6943] = {.lex_state = 270}, + [6944] = {.lex_state = 270}, + [6945] = {.lex_state = 270}, + [6946] = {.lex_state = 270}, + [6947] = {.lex_state = 270}, + [6948] = {.lex_state = 270}, + [6949] = {.lex_state = 270}, + [6950] = {.lex_state = 270}, + [6951] = {.lex_state = 270}, + [6952] = {.lex_state = 270}, + [6953] = {.lex_state = 270}, + [6954] = {.lex_state = 270}, + [6955] = {.lex_state = 270}, + [6956] = {.lex_state = 270}, + [6957] = {.lex_state = 270}, + [6958] = {.lex_state = 270}, + [6959] = {.lex_state = 270}, + [6960] = {.lex_state = 270}, + [6961] = {.lex_state = 270}, + [6962] = {.lex_state = 347}, + [6963] = {.lex_state = 270}, + [6964] = {.lex_state = 270}, + [6965] = {.lex_state = 270}, + [6966] = {.lex_state = 270}, + [6967] = {.lex_state = 270}, + [6968] = {.lex_state = 270}, + [6969] = {.lex_state = 270}, + [6970] = {.lex_state = 270}, + [6971] = {.lex_state = 246}, + [6972] = {.lex_state = 270}, + [6973] = {.lex_state = 246}, + [6974] = {.lex_state = 270}, + [6975] = {.lex_state = 270}, + [6976] = {.lex_state = 270}, + [6977] = {.lex_state = 274}, + [6978] = {.lex_state = 274}, + [6979] = {.lex_state = 275}, + [6980] = {.lex_state = 275}, + [6981] = {.lex_state = 274}, + [6982] = {.lex_state = 274}, + [6983] = {.lex_state = 275}, + [6984] = {.lex_state = 275}, + [6985] = {.lex_state = 275}, + [6986] = {.lex_state = 275}, + [6987] = {.lex_state = 400}, + [6988] = {.lex_state = 935}, + [6989] = {.lex_state = 400}, + [6990] = {.lex_state = 400}, + [6991] = {.lex_state = 400}, + [6992] = {.lex_state = 400}, + [6993] = {.lex_state = 400}, + [6994] = {.lex_state = 935}, + [6995] = {.lex_state = 935}, + [6996] = {.lex_state = 400}, + [6997] = {.lex_state = 400}, + [6998] = {.lex_state = 400}, + [6999] = {.lex_state = 400}, + [7000] = {.lex_state = 400}, + [7001] = {.lex_state = 400}, + [7002] = {.lex_state = 369}, + [7003] = {.lex_state = 400}, + [7004] = {.lex_state = 400}, + [7005] = {.lex_state = 400}, + [7006] = {.lex_state = 937}, + [7007] = {.lex_state = 935}, + [7008] = {.lex_state = 400}, + [7009] = {.lex_state = 935}, + [7010] = {.lex_state = 935}, + [7011] = {.lex_state = 400}, + [7012] = {.lex_state = 400}, + [7013] = {.lex_state = 935}, + [7014] = {.lex_state = 935}, + [7015] = {.lex_state = 935}, [7016] = {.lex_state = 936}, - [7017] = {.lex_state = 935}, - [7018] = {.lex_state = 934}, - [7019] = {.lex_state = 373}, - [7020] = {.lex_state = 934}, - [7021] = {.lex_state = 373}, - [7022] = {.lex_state = 934}, - [7023] = {.lex_state = 934}, - [7024] = {.lex_state = 934}, - [7025] = {.lex_state = 934}, - [7026] = {.lex_state = 934}, + [7017] = {.lex_state = 936}, + [7018] = {.lex_state = 935}, + [7019] = {.lex_state = 374}, + [7020] = {.lex_state = 937}, + [7021] = {.lex_state = 935}, + [7022] = {.lex_state = 935}, + [7023] = {.lex_state = 935}, + [7024] = {.lex_state = 935}, + [7025] = {.lex_state = 374}, + [7026] = {.lex_state = 935}, [7027] = {.lex_state = 935}, [7028] = {.lex_state = 935}, - [7029] = {.lex_state = 369}, - [7030] = {.lex_state = 934}, - [7031] = {.lex_state = 369}, - [7032] = {.lex_state = 369}, - [7033] = {.lex_state = 283}, - [7034] = {.lex_state = 934}, - [7035] = {.lex_state = 369}, - [7036] = {.lex_state = 935}, - [7037] = {.lex_state = 934}, - [7038] = {.lex_state = 369}, - [7039] = {.lex_state = 934}, - [7040] = {.lex_state = 934}, - [7041] = {.lex_state = 934}, - [7042] = {.lex_state = 369}, - [7043] = {.lex_state = 934}, - [7044] = {.lex_state = 934}, - [7045] = {.lex_state = 934}, - [7046] = {.lex_state = 283}, - [7047] = {.lex_state = 934}, - [7048] = {.lex_state = 414}, - [7049] = {.lex_state = 934}, - [7050] = {.lex_state = 934}, - [7051] = {.lex_state = 934}, - [7052] = {.lex_state = 408}, - [7053] = {.lex_state = 406}, - [7054] = {.lex_state = 934}, - [7055] = {.lex_state = 934}, - [7056] = {.lex_state = 934}, - [7057] = {.lex_state = 934}, - [7058] = {.lex_state = 934}, - [7059] = {.lex_state = 934}, - [7060] = {.lex_state = 934}, - [7061] = {.lex_state = 934}, - [7062] = {.lex_state = 402}, - [7063] = {.lex_state = 934}, - [7064] = {.lex_state = 937}, - [7065] = {.lex_state = 937}, - [7066] = {.lex_state = 934}, - [7067] = {.lex_state = 370}, - [7068] = {.lex_state = 934}, - [7069] = {.lex_state = 934}, - [7070] = {.lex_state = 934}, - [7071] = {.lex_state = 934}, - [7072] = {.lex_state = 934}, - [7073] = {.lex_state = 934}, - [7074] = {.lex_state = 934}, - [7075] = {.lex_state = 934}, - [7076] = {.lex_state = 934}, - [7077] = {.lex_state = 415}, - [7078] = {.lex_state = 934}, - [7079] = {.lex_state = 934}, - [7080] = {.lex_state = 934}, - [7081] = {.lex_state = 934}, - [7082] = {.lex_state = 934}, - [7083] = {.lex_state = 403}, - [7084] = {.lex_state = 934}, - [7085] = {.lex_state = 370}, - [7086] = {.lex_state = 402}, - [7087] = {.lex_state = 369}, - [7088] = {.lex_state = 407}, - [7089] = {.lex_state = 369}, - [7090] = {.lex_state = 408}, - [7091] = {.lex_state = 408}, - [7092] = {.lex_state = 401}, - [7093] = {.lex_state = 937}, - [7094] = {.lex_state = 937}, - [7095] = {.lex_state = 408}, - [7096] = {.lex_state = 411}, - [7097] = {.lex_state = 934}, - [7098] = {.lex_state = 402}, - [7099] = {.lex_state = 402}, - [7100] = {.lex_state = 369}, - [7101] = {.lex_state = 408}, - [7102] = {.lex_state = 408}, - [7103] = {.lex_state = 408}, - [7104] = {.lex_state = 402}, - [7105] = {.lex_state = 414}, - [7106] = {.lex_state = 369}, - [7107] = {.lex_state = 412}, - [7108] = {.lex_state = 934}, - [7109] = {.lex_state = 934}, - [7110] = {.lex_state = 934}, - [7111] = {.lex_state = 934}, - [7112] = {.lex_state = 934}, - [7113] = {.lex_state = 407}, - [7114] = {.lex_state = 934}, - [7115] = {.lex_state = 401}, - [7116] = {.lex_state = 934}, - [7117] = {.lex_state = 934}, - [7118] = {.lex_state = 934}, - [7119] = {.lex_state = 934}, + [7029] = {.lex_state = 935}, + [7030] = {.lex_state = 936}, + [7031] = {.lex_state = 936}, + [7032] = {.lex_state = 284}, + [7033] = {.lex_state = 284}, + [7034] = {.lex_state = 935}, + [7035] = {.lex_state = 415}, + [7036] = {.lex_state = 409}, + [7037] = {.lex_state = 935}, + [7038] = {.lex_state = 370}, + [7039] = {.lex_state = 370}, + [7040] = {.lex_state = 370}, + [7041] = {.lex_state = 370}, + [7042] = {.lex_state = 370}, + [7043] = {.lex_state = 935}, + [7044] = {.lex_state = 370}, + [7045] = {.lex_state = 935}, + [7046] = {.lex_state = 935}, + [7047] = {.lex_state = 407}, + [7048] = {.lex_state = 935}, + [7049] = {.lex_state = 935}, + [7050] = {.lex_state = 935}, + [7051] = {.lex_state = 935}, + [7052] = {.lex_state = 935}, + [7053] = {.lex_state = 935}, + [7054] = {.lex_state = 935}, + [7055] = {.lex_state = 935}, + [7056] = {.lex_state = 935}, + [7057] = {.lex_state = 935}, + [7058] = {.lex_state = 935}, + [7059] = {.lex_state = 935}, + [7060] = {.lex_state = 935}, + [7061] = {.lex_state = 935}, + [7062] = {.lex_state = 935}, + [7063] = {.lex_state = 935}, + [7064] = {.lex_state = 935}, + [7065] = {.lex_state = 935}, + [7066] = {.lex_state = 404}, + [7067] = {.lex_state = 416}, + [7068] = {.lex_state = 935}, + [7069] = {.lex_state = 935}, + [7070] = {.lex_state = 935}, + [7071] = {.lex_state = 403}, + [7072] = {.lex_state = 935}, + [7073] = {.lex_state = 938}, + [7074] = {.lex_state = 935}, + [7075] = {.lex_state = 938}, + [7076] = {.lex_state = 371}, + [7077] = {.lex_state = 935}, + [7078] = {.lex_state = 371}, + [7079] = {.lex_state = 935}, + [7080] = {.lex_state = 935}, + [7081] = {.lex_state = 935}, + [7082] = {.lex_state = 935}, + [7083] = {.lex_state = 935}, + [7084] = {.lex_state = 935}, + [7085] = {.lex_state = 935}, + [7086] = {.lex_state = 408}, + [7087] = {.lex_state = 370}, + [7088] = {.lex_state = 370}, + [7089] = {.lex_state = 370}, + [7090] = {.lex_state = 402}, + [7091] = {.lex_state = 409}, + [7092] = {.lex_state = 414}, + [7093] = {.lex_state = 402}, + [7094] = {.lex_state = 402}, + [7095] = {.lex_state = 935}, + [7096] = {.lex_state = 402}, + [7097] = {.lex_state = 935}, + [7098] = {.lex_state = 938}, + [7099] = {.lex_state = 938}, + [7100] = {.lex_state = 935}, + [7101] = {.lex_state = 370}, + [7102] = {.lex_state = 415}, + [7103] = {.lex_state = 370}, + [7104] = {.lex_state = 415}, + [7105] = {.lex_state = 415}, + [7106] = {.lex_state = 935}, + [7107] = {.lex_state = 935}, + [7108] = {.lex_state = 935}, + [7109] = {.lex_state = 370}, + [7110] = {.lex_state = 415}, + [7111] = {.lex_state = 404}, + [7112] = {.lex_state = 935}, + [7113] = {.lex_state = 409}, + [7114] = {.lex_state = 402}, + [7115] = {.lex_state = 370}, + [7116] = {.lex_state = 408}, + [7117] = {.lex_state = 415}, + [7118] = {.lex_state = 935}, + [7119] = {.lex_state = 370}, [7120] = {.lex_state = 408}, - [7121] = {.lex_state = 407}, - [7122] = {.lex_state = 934}, - [7123] = {.lex_state = 407}, - [7124] = {.lex_state = 414}, - [7125] = {.lex_state = 414}, - [7126] = {.lex_state = 369}, - [7127] = {.lex_state = 369}, - [7128] = {.lex_state = 369}, - [7129] = {.lex_state = 369}, - [7130] = {.lex_state = 413}, - [7131] = {.lex_state = 283}, - [7132] = {.lex_state = 401}, - [7133] = {.lex_state = 414}, - [7134] = {.lex_state = 407}, - [7135] = {.lex_state = 407}, - [7136] = {.lex_state = 401}, - [7137] = {.lex_state = 401}, - [7138] = {.lex_state = 369}, - [7139] = {.lex_state = 402}, - [7140] = {.lex_state = 401}, - [7141] = {.lex_state = 369}, - [7142] = {.lex_state = 414}, - [7143] = {.lex_state = 369}, - [7144] = {.lex_state = 414}, - [7145] = {.lex_state = 369}, - [7146] = {.lex_state = 373}, - [7147] = {.lex_state = 410}, - [7148] = {.lex_state = 410}, - [7149] = {.lex_state = 934}, - [7150] = {.lex_state = 373}, - [7151] = {.lex_state = 416}, - [7152] = {.lex_state = 416}, - [7153] = {.lex_state = 934}, - [7154] = {.lex_state = 934}, - [7155] = {.lex_state = 72}, - [7156] = {.lex_state = 934}, - [7157] = {.lex_state = 373}, - [7158] = {.lex_state = 934}, - [7159] = {.lex_state = 934}, - [7160] = {.lex_state = 409}, - [7161] = {.lex_state = 409}, - [7162] = {.lex_state = 436}, - [7163] = {.lex_state = 934}, - [7164] = {.lex_state = 283}, - [7165] = {.lex_state = 72}, - [7166] = {.lex_state = 283}, - [7167] = {.lex_state = 402}, - [7168] = {.lex_state = 934}, - [7169] = {.lex_state = 934}, - [7170] = {.lex_state = 273}, - [7171] = {.lex_state = 934}, - [7172] = {.lex_state = 934}, - [7173] = {.lex_state = 934}, - [7174] = {.lex_state = 273}, - [7175] = {.lex_state = 436}, - [7176] = {.lex_state = 402}, - [7177] = {.lex_state = 373}, - [7178] = {.lex_state = 402}, - [7179] = {.lex_state = 405}, - [7180] = {.lex_state = 408}, - [7181] = {.lex_state = 283}, - [7182] = {.lex_state = 430}, - [7183] = {.lex_state = 417}, - [7184] = {.lex_state = 283}, - [7185] = {.lex_state = 401}, - [7186] = {.lex_state = 401}, - [7187] = {.lex_state = 402}, - [7188] = {.lex_state = 72}, - [7189] = {.lex_state = 283}, - [7190] = {.lex_state = 414}, - [7191] = {.lex_state = 414}, - [7192] = {.lex_state = 407}, - [7193] = {.lex_state = 283}, - [7194] = {.lex_state = 401}, - [7195] = {.lex_state = 401}, - [7196] = {.lex_state = 414}, - [7197] = {.lex_state = 414}, - [7198] = {.lex_state = 414}, - [7199] = {.lex_state = 408}, - [7200] = {.lex_state = 414}, - [7201] = {.lex_state = 402}, - [7202] = {.lex_state = 408}, - [7203] = {.lex_state = 430}, - [7204] = {.lex_state = 401}, - [7205] = {.lex_state = 408}, - [7206] = {.lex_state = 408}, - [7207] = {.lex_state = 404}, - [7208] = {.lex_state = 283}, - [7209] = {.lex_state = 407}, - [7210] = {.lex_state = 940}, - [7211] = {.lex_state = 401}, - [7212] = {.lex_state = 283}, - [7213] = {.lex_state = 407}, - [7214] = {.lex_state = 407}, - [7215] = {.lex_state = 143}, - [7216] = {.lex_state = 401}, - [7217] = {.lex_state = 72}, - [7218] = {.lex_state = 283}, - [7219] = {.lex_state = 283}, - [7220] = {.lex_state = 402}, - [7221] = {.lex_state = 283}, - [7222] = {.lex_state = 283}, - [7223] = {.lex_state = 407}, - [7224] = {.lex_state = 408}, - [7225] = {.lex_state = 407}, - [7226] = {.lex_state = 401}, - [7227] = {.lex_state = 408}, - [7228] = {.lex_state = 283}, - [7229] = {.lex_state = 401}, - [7230] = {.lex_state = 408}, - [7231] = {.lex_state = 283}, - [7232] = {.lex_state = 72}, - [7233] = {.lex_state = 940}, - [7234] = {.lex_state = 283}, - [7235] = {.lex_state = 402}, - [7236] = {.lex_state = 434}, - [7237] = {.lex_state = 72}, - [7238] = {.lex_state = 283}, - [7239] = {.lex_state = 274}, - [7240] = {.lex_state = 401}, - [7241] = {.lex_state = 436}, - [7242] = {.lex_state = 401}, - [7243] = {.lex_state = 401}, - [7244] = {.lex_state = 72}, - [7245] = {.lex_state = 407}, - [7246] = {.lex_state = 404}, - [7247] = {.lex_state = 436}, - [7248] = {.lex_state = 402}, - [7249] = {.lex_state = 407}, - [7250] = {.lex_state = 72}, - [7251] = {.lex_state = 401}, - [7252] = {.lex_state = 283}, - [7253] = {.lex_state = 407}, - [7254] = {.lex_state = 283}, - [7255] = {.lex_state = 408}, - [7256] = {.lex_state = 143}, - [7257] = {.lex_state = 401}, - [7258] = {.lex_state = 72}, - [7259] = {.lex_state = 401}, - [7260] = {.lex_state = 414}, - [7261] = {.lex_state = 417}, - [7262] = {.lex_state = 402}, - [7263] = {.lex_state = 283}, - [7264] = {.lex_state = 401}, - [7265] = {.lex_state = 402}, - [7266] = {.lex_state = 414}, - [7267] = {.lex_state = 283}, - [7268] = {.lex_state = 401}, - [7269] = {.lex_state = 414}, - [7270] = {.lex_state = 402}, - [7271] = {.lex_state = 414}, - [7272] = {.lex_state = 408}, - [7273] = {.lex_state = 408}, - [7274] = {.lex_state = 283}, - [7275] = {.lex_state = 414}, - [7276] = {.lex_state = 408}, - [7277] = {.lex_state = 402}, - [7278] = {.lex_state = 408}, - [7279] = {.lex_state = 283}, - [7280] = {.lex_state = 283}, - [7281] = {.lex_state = 402}, - [7282] = {.lex_state = 401}, - [7283] = {.lex_state = 414}, - [7284] = {.lex_state = 283}, - [7285] = {.lex_state = 407}, - [7286] = {.lex_state = 72}, - [7287] = {.lex_state = 283}, - [7288] = {.lex_state = 407}, - [7289] = {.lex_state = 274}, - [7290] = {.lex_state = 402}, - [7291] = {.lex_state = 405}, - [7292] = {.lex_state = 407}, - [7293] = {.lex_state = 283}, - [7294] = {.lex_state = 283}, - [7295] = {.lex_state = 414}, - [7296] = {.lex_state = 408}, - [7297] = {.lex_state = 143}, - [7298] = {.lex_state = 408}, - [7299] = {.lex_state = 408}, - [7300] = {.lex_state = 373}, - [7301] = {.lex_state = 408}, + [7121] = {.lex_state = 408}, + [7122] = {.lex_state = 370}, + [7123] = {.lex_state = 284}, + [7124] = {.lex_state = 935}, + [7125] = {.lex_state = 409}, + [7126] = {.lex_state = 409}, + [7127] = {.lex_state = 404}, + [7128] = {.lex_state = 404}, + [7129] = {.lex_state = 404}, + [7130] = {.lex_state = 404}, + [7131] = {.lex_state = 412}, + [7132] = {.lex_state = 413}, + [7133] = {.lex_state = 415}, + [7134] = {.lex_state = 370}, + [7135] = {.lex_state = 935}, + [7136] = {.lex_state = 935}, + [7137] = {.lex_state = 408}, + [7138] = {.lex_state = 370}, + [7139] = {.lex_state = 408}, + [7140] = {.lex_state = 370}, + [7141] = {.lex_state = 935}, + [7142] = {.lex_state = 409}, + [7143] = {.lex_state = 409}, + [7144] = {.lex_state = 409}, + [7145] = {.lex_state = 402}, + [7146] = {.lex_state = 410}, + [7147] = {.lex_state = 411}, + [7148] = {.lex_state = 374}, + [7149] = {.lex_state = 935}, + [7150] = {.lex_state = 935}, + [7151] = {.lex_state = 411}, + [7152] = {.lex_state = 437}, + [7153] = {.lex_state = 374}, + [7154] = {.lex_state = 404}, + [7155] = {.lex_state = 410}, + [7156] = {.lex_state = 417}, + [7157] = {.lex_state = 404}, + [7158] = {.lex_state = 935}, + [7159] = {.lex_state = 935}, + [7160] = {.lex_state = 935}, + [7161] = {.lex_state = 935}, + [7162] = {.lex_state = 935}, + [7163] = {.lex_state = 374}, + [7164] = {.lex_state = 417}, + [7165] = {.lex_state = 935}, + [7166] = {.lex_state = 437}, + [7167] = {.lex_state = 935}, + [7168] = {.lex_state = 132}, + [7169] = {.lex_state = 374}, + [7170] = {.lex_state = 284}, + [7171] = {.lex_state = 284}, + [7172] = {.lex_state = 935}, + [7173] = {.lex_state = 935}, + [7174] = {.lex_state = 274}, + [7175] = {.lex_state = 274}, + [7176] = {.lex_state = 132}, + [7177] = {.lex_state = 935}, + [7178] = {.lex_state = 415}, + [7179] = {.lex_state = 284}, + [7180] = {.lex_state = 284}, + [7181] = {.lex_state = 941}, + [7182] = {.lex_state = 941}, + [7183] = {.lex_state = 132}, + [7184] = {.lex_state = 284}, + [7185] = {.lex_state = 284}, + [7186] = {.lex_state = 132}, + [7187] = {.lex_state = 284}, + [7188] = {.lex_state = 132}, + [7189] = {.lex_state = 132}, + [7190] = {.lex_state = 437}, + [7191] = {.lex_state = 284}, + [7192] = {.lex_state = 284}, + [7193] = {.lex_state = 284}, + [7194] = {.lex_state = 284}, + [7195] = {.lex_state = 284}, + [7196] = {.lex_state = 284}, + [7197] = {.lex_state = 405}, + [7198] = {.lex_state = 132}, + [7199] = {.lex_state = 275}, + [7200] = {.lex_state = 132}, + [7201] = {.lex_state = 284}, + [7202] = {.lex_state = 284}, + [7203] = {.lex_state = 132}, + [7204] = {.lex_state = 284}, + [7205] = {.lex_state = 284}, + [7206] = {.lex_state = 132}, + [7207] = {.lex_state = 405}, + [7208] = {.lex_state = 284}, + [7209] = {.lex_state = 406}, + [7210] = {.lex_state = 406}, + [7211] = {.lex_state = 415}, + [7212] = {.lex_state = 415}, + [7213] = {.lex_state = 415}, + [7214] = {.lex_state = 415}, + [7215] = {.lex_state = 415}, + [7216] = {.lex_state = 415}, + [7217] = {.lex_state = 415}, + [7218] = {.lex_state = 415}, + [7219] = {.lex_state = 415}, + [7220] = {.lex_state = 415}, + [7221] = {.lex_state = 415}, + [7222] = {.lex_state = 284}, + [7223] = {.lex_state = 284}, + [7224] = {.lex_state = 284}, + [7225] = {.lex_state = 284}, + [7226] = {.lex_state = 284}, + [7227] = {.lex_state = 284}, + [7228] = {.lex_state = 431}, + [7229] = {.lex_state = 431}, + [7230] = {.lex_state = 402}, + [7231] = {.lex_state = 402}, + [7232] = {.lex_state = 402}, + [7233] = {.lex_state = 402}, + [7234] = {.lex_state = 284}, + [7235] = {.lex_state = 415}, + [7236] = {.lex_state = 284}, + [7237] = {.lex_state = 435}, + [7238] = {.lex_state = 409}, + [7239] = {.lex_state = 402}, + [7240] = {.lex_state = 402}, + [7241] = {.lex_state = 402}, + [7242] = {.lex_state = 402}, + [7243] = {.lex_state = 402}, + [7244] = {.lex_state = 402}, + [7245] = {.lex_state = 402}, + [7246] = {.lex_state = 275}, + [7247] = {.lex_state = 408}, + [7248] = {.lex_state = 408}, + [7249] = {.lex_state = 408}, + [7250] = {.lex_state = 408}, + [7251] = {.lex_state = 409}, + [7252] = {.lex_state = 402}, + [7253] = {.lex_state = 402}, + [7254] = {.lex_state = 402}, + [7255] = {.lex_state = 402}, + [7256] = {.lex_state = 402}, + [7257] = {.lex_state = 402}, + [7258] = {.lex_state = 408}, + [7259] = {.lex_state = 437}, + [7260] = {.lex_state = 408}, + [7261] = {.lex_state = 408}, + [7262] = {.lex_state = 408}, + [7263] = {.lex_state = 408}, + [7264] = {.lex_state = 408}, + [7265] = {.lex_state = 408}, + [7266] = {.lex_state = 408}, + [7267] = {.lex_state = 143}, + [7268] = {.lex_state = 404}, + [7269] = {.lex_state = 404}, + [7270] = {.lex_state = 404}, + [7271] = {.lex_state = 404}, + [7272] = {.lex_state = 143}, + [7273] = {.lex_state = 284}, + [7274] = {.lex_state = 404}, + [7275] = {.lex_state = 404}, + [7276] = {.lex_state = 404}, + [7277] = {.lex_state = 404}, + [7278] = {.lex_state = 404}, + [7279] = {.lex_state = 404}, + [7280] = {.lex_state = 404}, + [7281] = {.lex_state = 404}, + [7282] = {.lex_state = 418}, + [7283] = {.lex_state = 418}, + [7284] = {.lex_state = 409}, + [7285] = {.lex_state = 409}, + [7286] = {.lex_state = 409}, + [7287] = {.lex_state = 409}, + [7288] = {.lex_state = 409}, + [7289] = {.lex_state = 409}, + [7290] = {.lex_state = 409}, + [7291] = {.lex_state = 409}, + [7292] = {.lex_state = 409}, + [7293] = {.lex_state = 409}, + [7294] = {.lex_state = 409}, + [7295] = {.lex_state = 402}, + [7296] = {.lex_state = 409}, + [7297] = {.lex_state = 425}, + [7298] = {.lex_state = 425}, + [7299] = {.lex_state = 409}, + [7300] = {.lex_state = 409}, + [7301] = {.lex_state = 409}, [7302] = {.lex_state = 143}, - [7303] = {.lex_state = 424}, - [7304] = {.lex_state = 424}, - [7305] = {.lex_state = 432}, - [7306] = {.lex_state = 424}, - [7307] = {.lex_state = 408}, - [7308] = {.lex_state = 424}, - [7309] = {.lex_state = 408}, - [7310] = {.lex_state = 424}, - [7311] = {.lex_state = 408}, - [7312] = {.lex_state = 143}, - [7313] = {.lex_state = 424}, - [7314] = {.lex_state = 283}, - [7315] = {.lex_state = 283}, - [7316] = {.lex_state = 408}, - [7317] = {.lex_state = 408}, - [7318] = {.lex_state = 424}, - [7319] = {.lex_state = 424}, - [7320] = {.lex_state = 143}, - [7321] = {.lex_state = 408}, - [7322] = {.lex_state = 431}, - [7323] = {.lex_state = 373}, - [7324] = {.lex_state = 408}, - [7325] = {.lex_state = 283}, - [7326] = {.lex_state = 408}, - [7327] = {.lex_state = 283}, - [7328] = {.lex_state = 424}, - [7329] = {.lex_state = 408}, - [7330] = {.lex_state = 431}, - [7331] = {.lex_state = 419}, - [7332] = {.lex_state = 419}, - [7333] = {.lex_state = 424}, - [7334] = {.lex_state = 408}, - [7335] = {.lex_state = 408}, - [7336] = {.lex_state = 431}, - [7337] = {.lex_state = 408}, - [7338] = {.lex_state = 408}, - [7339] = {.lex_state = 418}, - [7340] = {.lex_state = 408}, - [7341] = {.lex_state = 408}, - [7342] = {.lex_state = 408}, - [7343] = {.lex_state = 424}, - [7344] = {.lex_state = 424}, - [7345] = {.lex_state = 143}, - [7346] = {.lex_state = 408}, - [7347] = {.lex_state = 424}, - [7348] = {.lex_state = 408}, - [7349] = {.lex_state = 408}, - [7350] = {.lex_state = 408}, - [7351] = {.lex_state = 408}, - [7352] = {.lex_state = 408}, - [7353] = {.lex_state = 408}, - [7354] = {.lex_state = 408}, - [7355] = {.lex_state = 408}, - [7356] = {.lex_state = 408}, - [7357] = {.lex_state = 408}, - [7358] = {.lex_state = 424}, - [7359] = {.lex_state = 424}, - [7360] = {.lex_state = 283}, - [7361] = {.lex_state = 143}, - [7362] = {.lex_state = 283}, - [7363] = {.lex_state = 424}, - [7364] = {.lex_state = 143}, - [7365] = {.lex_state = 408}, - [7366] = {.lex_state = 424}, - [7367] = {.lex_state = 418}, - [7368] = {.lex_state = 408}, - [7369] = {.lex_state = 408}, - [7370] = {.lex_state = 940}, - [7371] = {.lex_state = 408}, - [7372] = {.lex_state = 408}, - [7373] = {.lex_state = 941}, - [7374] = {.lex_state = 408}, - [7375] = {.lex_state = 408}, - [7376] = {.lex_state = 408}, - [7377] = {.lex_state = 424}, - [7378] = {.lex_state = 424}, - [7379] = {.lex_state = 424}, - [7380] = {.lex_state = 408}, - [7381] = {.lex_state = 408}, - [7382] = {.lex_state = 941}, - [7383] = {.lex_state = 408}, - [7384] = {.lex_state = 408}, - [7385] = {.lex_state = 424}, - [7386] = {.lex_state = 408}, - [7387] = {.lex_state = 408}, - [7388] = {.lex_state = 431}, - [7389] = {.lex_state = 408}, - [7390] = {.lex_state = 408}, - [7391] = {.lex_state = 408}, - [7392] = {.lex_state = 283}, - [7393] = {.lex_state = 424}, - [7394] = {.lex_state = 408}, - [7395] = {.lex_state = 941}, - [7396] = {.lex_state = 424}, - [7397] = {.lex_state = 420}, - [7398] = {.lex_state = 420}, - [7399] = {.lex_state = 408}, - [7400] = {.lex_state = 408}, - [7401] = {.lex_state = 283}, - [7402] = {.lex_state = 408}, - [7403] = {.lex_state = 408}, - [7404] = {.lex_state = 431}, - [7405] = {.lex_state = 408}, - [7406] = {.lex_state = 941}, - [7407] = {.lex_state = 424}, - [7408] = {.lex_state = 941}, - [7409] = {.lex_state = 424}, - [7410] = {.lex_state = 408}, - [7411] = {.lex_state = 283}, - [7412] = {.lex_state = 431}, - [7413] = {.lex_state = 940}, - [7414] = {.lex_state = 283}, - [7415] = {.lex_state = 408}, - [7416] = {.lex_state = 408}, - [7417] = {.lex_state = 408}, - [7418] = {.lex_state = 408}, - [7419] = {.lex_state = 408}, - [7420] = {.lex_state = 408}, - [7421] = {.lex_state = 408}, - [7422] = {.lex_state = 408}, - [7423] = {.lex_state = 408}, - [7424] = {.lex_state = 431}, - [7425] = {.lex_state = 408}, - [7426] = {.lex_state = 408}, - [7427] = {.lex_state = 401}, - [7428] = {.lex_state = 401}, - [7429] = {.lex_state = 143}, - [7430] = {.lex_state = 373}, - [7431] = {.lex_state = 373}, - [7432] = {.lex_state = 373}, - [7433] = {.lex_state = 373}, - [7434] = {.lex_state = 373}, - [7435] = {.lex_state = 283}, - [7436] = {.lex_state = 942}, - [7437] = {.lex_state = 283}, - [7438] = {.lex_state = 143}, - [7439] = {.lex_state = 942}, - [7440] = {.lex_state = 798}, - [7441] = {.lex_state = 798}, - [7442] = {.lex_state = 798}, - [7443] = {.lex_state = 942}, - [7444] = {.lex_state = 373}, - [7445] = {.lex_state = 401}, - [7446] = {.lex_state = 401}, - [7447] = {.lex_state = 283}, - [7448] = {.lex_state = 283}, - [7449] = {.lex_state = 283}, - [7450] = {.lex_state = 401}, - [7451] = {.lex_state = 283}, - [7452] = {.lex_state = 283}, - [7453] = {.lex_state = 798}, - [7454] = {.lex_state = 283}, - [7455] = {.lex_state = 283}, - [7456] = {.lex_state = 401}, - [7457] = {.lex_state = 373}, - [7458] = {.lex_state = 283}, - [7459] = {.lex_state = 283}, - [7460] = {.lex_state = 283}, - [7461] = {.lex_state = 283}, - [7462] = {.lex_state = 283}, - [7463] = {.lex_state = 373}, - [7464] = {.lex_state = 283}, - [7465] = {.lex_state = 380}, - [7466] = {.lex_state = 798}, - [7467] = {.lex_state = 798}, - [7468] = {.lex_state = 283}, - [7469] = {.lex_state = 798}, - [7470] = {.lex_state = 798}, - [7471] = {.lex_state = 283}, - [7472] = {.lex_state = 143}, - [7473] = {.lex_state = 949}, - [7474] = {.lex_state = 283}, - [7475] = {.lex_state = 798}, - [7476] = {.lex_state = 283}, - [7477] = {.lex_state = 798}, - [7478] = {.lex_state = 283}, - [7479] = {.lex_state = 283}, - [7480] = {.lex_state = 283}, - [7481] = {.lex_state = 942}, - [7482] = {.lex_state = 949}, - [7483] = {.lex_state = 942}, - [7484] = {.lex_state = 283}, - [7485] = {.lex_state = 401}, - [7486] = {.lex_state = 798}, - [7487] = {.lex_state = 283}, - [7488] = {.lex_state = 283}, - [7489] = {.lex_state = 401}, - [7490] = {.lex_state = 283}, - [7491] = {.lex_state = 283}, - [7492] = {.lex_state = 941}, - [7493] = {.lex_state = 283}, - [7494] = {.lex_state = 401}, - [7495] = {.lex_state = 798}, - [7496] = {.lex_state = 401}, - [7497] = {.lex_state = 380}, - [7498] = {.lex_state = 378}, - [7499] = {.lex_state = 401}, - [7500] = {.lex_state = 941}, - [7501] = {.lex_state = 378}, - [7502] = {.lex_state = 283}, - [7503] = {.lex_state = 283}, - [7504] = {.lex_state = 798}, - [7505] = {.lex_state = 283}, - [7506] = {.lex_state = 283}, - [7507] = {.lex_state = 798}, - [7508] = {.lex_state = 401}, - [7509] = {.lex_state = 941}, - [7510] = {.lex_state = 798}, - [7511] = {.lex_state = 283}, - [7512] = {.lex_state = 798}, - [7513] = {.lex_state = 941}, - [7514] = {.lex_state = 798}, - [7515] = {.lex_state = 798}, - [7516] = {.lex_state = 798}, - [7517] = {.lex_state = 941}, - [7518] = {.lex_state = 798}, - [7519] = {.lex_state = 143}, - [7520] = {.lex_state = 798}, - [7521] = {.lex_state = 798}, - [7522] = {.lex_state = 798}, - [7523] = {.lex_state = 798}, - [7524] = {.lex_state = 798}, - [7525] = {.lex_state = 798}, - [7526] = {.lex_state = 798}, - [7527] = {.lex_state = 798}, - [7528] = {.lex_state = 798}, - [7529] = {.lex_state = 373}, - [7530] = {.lex_state = 798}, - [7531] = {.lex_state = 798}, - [7532] = {.lex_state = 798}, - [7533] = {.lex_state = 798}, - [7534] = {.lex_state = 283}, - [7535] = {.lex_state = 283}, - [7536] = {.lex_state = 798}, - [7537] = {.lex_state = 798}, - [7538] = {.lex_state = 283}, - [7539] = {.lex_state = 798}, - [7540] = {.lex_state = 414}, - [7541] = {.lex_state = 414}, - [7542] = {.lex_state = 942}, - [7543] = {.lex_state = 942}, - [7544] = {.lex_state = 414}, - [7545] = {.lex_state = 942}, - [7546] = {.lex_state = 414}, - [7547] = {.lex_state = 414}, + [7303] = {.lex_state = 425}, + [7304] = {.lex_state = 409}, + [7305] = {.lex_state = 409}, + [7306] = {.lex_state = 409}, + [7307] = {.lex_state = 432}, + [7308] = {.lex_state = 409}, + [7309] = {.lex_state = 420}, + [7310] = {.lex_state = 420}, + [7311] = {.lex_state = 425}, + [7312] = {.lex_state = 409}, + [7313] = {.lex_state = 409}, + [7314] = {.lex_state = 409}, + [7315] = {.lex_state = 143}, + [7316] = {.lex_state = 425}, + [7317] = {.lex_state = 409}, + [7318] = {.lex_state = 409}, + [7319] = {.lex_state = 432}, + [7320] = {.lex_state = 425}, + [7321] = {.lex_state = 432}, + [7322] = {.lex_state = 409}, + [7323] = {.lex_state = 409}, + [7324] = {.lex_state = 425}, + [7325] = {.lex_state = 409}, + [7326] = {.lex_state = 409}, + [7327] = {.lex_state = 425}, + [7328] = {.lex_state = 409}, + [7329] = {.lex_state = 409}, + [7330] = {.lex_state = 425}, + [7331] = {.lex_state = 409}, + [7332] = {.lex_state = 409}, + [7333] = {.lex_state = 942}, + [7334] = {.lex_state = 425}, + [7335] = {.lex_state = 409}, + [7336] = {.lex_state = 409}, + [7337] = {.lex_state = 433}, + [7338] = {.lex_state = 425}, + [7339] = {.lex_state = 409}, + [7340] = {.lex_state = 409}, + [7341] = {.lex_state = 432}, + [7342] = {.lex_state = 425}, + [7343] = {.lex_state = 143}, + [7344] = {.lex_state = 409}, + [7345] = {.lex_state = 409}, + [7346] = {.lex_state = 284}, + [7347] = {.lex_state = 425}, + [7348] = {.lex_state = 409}, + [7349] = {.lex_state = 409}, + [7350] = {.lex_state = 419}, + [7351] = {.lex_state = 419}, + [7352] = {.lex_state = 425}, + [7353] = {.lex_state = 143}, + [7354] = {.lex_state = 409}, + [7355] = {.lex_state = 409}, + [7356] = {.lex_state = 284}, + [7357] = {.lex_state = 432}, + [7358] = {.lex_state = 432}, + [7359] = {.lex_state = 425}, + [7360] = {.lex_state = 425}, + [7361] = {.lex_state = 409}, + [7362] = {.lex_state = 374}, + [7363] = {.lex_state = 409}, + [7364] = {.lex_state = 409}, + [7365] = {.lex_state = 409}, + [7366] = {.lex_state = 143}, + [7367] = {.lex_state = 409}, + [7368] = {.lex_state = 432}, + [7369] = {.lex_state = 284}, + [7370] = {.lex_state = 284}, + [7371] = {.lex_state = 409}, + [7372] = {.lex_state = 284}, + [7373] = {.lex_state = 425}, + [7374] = {.lex_state = 409}, + [7375] = {.lex_state = 409}, + [7376] = {.lex_state = 409}, + [7377] = {.lex_state = 942}, + [7378] = {.lex_state = 425}, + [7379] = {.lex_state = 284}, + [7380] = {.lex_state = 409}, + [7381] = {.lex_state = 409}, + [7382] = {.lex_state = 409}, + [7383] = {.lex_state = 942}, + [7384] = {.lex_state = 409}, + [7385] = {.lex_state = 409}, + [7386] = {.lex_state = 284}, + [7387] = {.lex_state = 425}, + [7388] = {.lex_state = 409}, + [7389] = {.lex_state = 941}, + [7390] = {.lex_state = 941}, + [7391] = {.lex_state = 284}, + [7392] = {.lex_state = 409}, + [7393] = {.lex_state = 284}, + [7394] = {.lex_state = 409}, + [7395] = {.lex_state = 409}, + [7396] = {.lex_state = 421}, + [7397] = {.lex_state = 421}, + [7398] = {.lex_state = 409}, + [7399] = {.lex_state = 425}, + [7400] = {.lex_state = 409}, + [7401] = {.lex_state = 409}, + [7402] = {.lex_state = 409}, + [7403] = {.lex_state = 143}, + [7404] = {.lex_state = 425}, + [7405] = {.lex_state = 942}, + [7406] = {.lex_state = 409}, + [7407] = {.lex_state = 409}, + [7408] = {.lex_state = 409}, + [7409] = {.lex_state = 425}, + [7410] = {.lex_state = 409}, + [7411] = {.lex_state = 409}, + [7412] = {.lex_state = 284}, + [7413] = {.lex_state = 409}, + [7414] = {.lex_state = 942}, + [7415] = {.lex_state = 143}, + [7416] = {.lex_state = 425}, + [7417] = {.lex_state = 409}, + [7418] = {.lex_state = 409}, + [7419] = {.lex_state = 409}, + [7420] = {.lex_state = 425}, + [7421] = {.lex_state = 425}, + [7422] = {.lex_state = 409}, + [7423] = {.lex_state = 409}, + [7424] = {.lex_state = 409}, + [7425] = {.lex_state = 409}, + [7426] = {.lex_state = 374}, + [7427] = {.lex_state = 143}, + [7428] = {.lex_state = 374}, + [7429] = {.lex_state = 284}, + [7430] = {.lex_state = 284}, + [7431] = {.lex_state = 284}, + [7432] = {.lex_state = 374}, + [7433] = {.lex_state = 284}, + [7434] = {.lex_state = 284}, + [7435] = {.lex_state = 284}, + [7436] = {.lex_state = 284}, + [7437] = {.lex_state = 943}, + [7438] = {.lex_state = 799}, + [7439] = {.lex_state = 799}, + [7440] = {.lex_state = 799}, + [7441] = {.lex_state = 799}, + [7442] = {.lex_state = 284}, + [7443] = {.lex_state = 284}, + [7444] = {.lex_state = 284}, + [7445] = {.lex_state = 381}, + [7446] = {.lex_state = 284}, + [7447] = {.lex_state = 799}, + [7448] = {.lex_state = 381}, + [7449] = {.lex_state = 284}, + [7450] = {.lex_state = 943}, + [7451] = {.lex_state = 374}, + [7452] = {.lex_state = 799}, + [7453] = {.lex_state = 799}, + [7454] = {.lex_state = 799}, + [7455] = {.lex_state = 799}, + [7456] = {.lex_state = 284}, + [7457] = {.lex_state = 284}, + [7458] = {.lex_state = 799}, + [7459] = {.lex_state = 799}, + [7460] = {.lex_state = 799}, + [7461] = {.lex_state = 799}, + [7462] = {.lex_state = 799}, + [7463] = {.lex_state = 799}, + [7464] = {.lex_state = 799}, + [7465] = {.lex_state = 799}, + [7466] = {.lex_state = 284}, + [7467] = {.lex_state = 284}, + [7468] = {.lex_state = 374}, + [7469] = {.lex_state = 799}, + [7470] = {.lex_state = 799}, + [7471] = {.lex_state = 799}, + [7472] = {.lex_state = 799}, + [7473] = {.lex_state = 799}, + [7474] = {.lex_state = 799}, + [7475] = {.lex_state = 799}, + [7476] = {.lex_state = 799}, + [7477] = {.lex_state = 943}, + [7478] = {.lex_state = 799}, + [7479] = {.lex_state = 799}, + [7480] = {.lex_state = 799}, + [7481] = {.lex_state = 799}, + [7482] = {.lex_state = 799}, + [7483] = {.lex_state = 799}, + [7484] = {.lex_state = 284}, + [7485] = {.lex_state = 284}, + [7486] = {.lex_state = 284}, + [7487] = {.lex_state = 284}, + [7488] = {.lex_state = 799}, + [7489] = {.lex_state = 799}, + [7490] = {.lex_state = 799}, + [7491] = {.lex_state = 374}, + [7492] = {.lex_state = 143}, + [7493] = {.lex_state = 379}, + [7494] = {.lex_state = 143}, + [7495] = {.lex_state = 284}, + [7496] = {.lex_state = 284}, + [7497] = {.lex_state = 284}, + [7498] = {.lex_state = 284}, + [7499] = {.lex_state = 374}, + [7500] = {.lex_state = 284}, + [7501] = {.lex_state = 143}, + [7502] = {.lex_state = 284}, + [7503] = {.lex_state = 379}, + [7504] = {.lex_state = 284}, + [7505] = {.lex_state = 284}, + [7506] = {.lex_state = 402}, + [7507] = {.lex_state = 402}, + [7508] = {.lex_state = 402}, + [7509] = {.lex_state = 402}, + [7510] = {.lex_state = 284}, + [7511] = {.lex_state = 402}, + [7512] = {.lex_state = 402}, + [7513] = {.lex_state = 402}, + [7514] = {.lex_state = 402}, + [7515] = {.lex_state = 402}, + [7516] = {.lex_state = 402}, + [7517] = {.lex_state = 402}, + [7518] = {.lex_state = 402}, + [7519] = {.lex_state = 943}, + [7520] = {.lex_state = 942}, + [7521] = {.lex_state = 284}, + [7522] = {.lex_state = 950}, + [7523] = {.lex_state = 942}, + [7524] = {.lex_state = 284}, + [7525] = {.lex_state = 942}, + [7526] = {.lex_state = 284}, + [7527] = {.lex_state = 950}, + [7528] = {.lex_state = 942}, + [7529] = {.lex_state = 942}, + [7530] = {.lex_state = 374}, + [7531] = {.lex_state = 284}, + [7532] = {.lex_state = 374}, + [7533] = {.lex_state = 284}, + [7534] = {.lex_state = 374}, + [7535] = {.lex_state = 374}, + [7536] = {.lex_state = 374}, + [7537] = {.lex_state = 374}, + [7538] = {.lex_state = 284}, + [7539] = {.lex_state = 284}, + [7540] = {.lex_state = 799}, + [7541] = {.lex_state = 799}, + [7542] = {.lex_state = 943}, + [7543] = {.lex_state = 415}, + [7544] = {.lex_state = 415}, + [7545] = {.lex_state = 143}, + [7546] = {.lex_state = 143}, + [7547] = {.lex_state = 415}, [7548] = {.lex_state = 143}, - [7549] = {.lex_state = 414}, - [7550] = {.lex_state = 414}, - [7551] = {.lex_state = 414}, - [7552] = {.lex_state = 414}, - [7553] = {.lex_state = 414}, - [7554] = {.lex_state = 283}, - [7555] = {.lex_state = 283}, - [7556] = {.lex_state = 414}, - [7557] = {.lex_state = 414}, - [7558] = {.lex_state = 143}, - [7559] = {.lex_state = 143}, - [7560] = {.lex_state = 283}, - [7561] = {.lex_state = 283}, - [7562] = {.lex_state = 283}, - [7563] = {.lex_state = 283}, - [7564] = {.lex_state = 283}, - [7565] = {.lex_state = 283}, - [7566] = {.lex_state = 283}, - [7567] = {.lex_state = 283}, - [7568] = {.lex_state = 414}, - [7569] = {.lex_state = 143}, - [7570] = {.lex_state = 283}, - [7571] = {.lex_state = 414}, - [7572] = {.lex_state = 283}, - [7573] = {.lex_state = 143}, - [7574] = {.lex_state = 283}, - [7575] = {.lex_state = 283}, - [7576] = {.lex_state = 414}, - [7577] = {.lex_state = 283}, - [7578] = {.lex_state = 414}, + [7549] = {.lex_state = 415}, + [7550] = {.lex_state = 415}, + [7551] = {.lex_state = 415}, + [7552] = {.lex_state = 415}, + [7553] = {.lex_state = 415}, + [7554] = {.lex_state = 415}, + [7555] = {.lex_state = 415}, + [7556] = {.lex_state = 415}, + [7557] = {.lex_state = 415}, + [7558] = {.lex_state = 799}, + [7559] = {.lex_state = 799}, + [7560] = {.lex_state = 799}, + [7561] = {.lex_state = 799}, + [7562] = {.lex_state = 284}, + [7563] = {.lex_state = 284}, + [7564] = {.lex_state = 799}, + [7565] = {.lex_state = 143}, + [7566] = {.lex_state = 799}, + [7567] = {.lex_state = 143}, + [7568] = {.lex_state = 143}, + [7569] = {.lex_state = 799}, + [7570] = {.lex_state = 415}, + [7571] = {.lex_state = 415}, + [7572] = {.lex_state = 415}, + [7573] = {.lex_state = 415}, + [7574] = {.lex_state = 143}, + [7575] = {.lex_state = 143}, + [7576] = {.lex_state = 284}, + [7577] = {.lex_state = 415}, + [7578] = {.lex_state = 143}, [7579] = {.lex_state = 143}, - [7580] = {.lex_state = 378}, - [7581] = {.lex_state = 414}, - [7582] = {.lex_state = 414}, - [7583] = {.lex_state = 283}, - [7584] = {.lex_state = 283}, - [7585] = {.lex_state = 283}, - [7586] = {.lex_state = 283}, - [7587] = {.lex_state = 143}, - [7588] = {.lex_state = 283}, - [7589] = {.lex_state = 283}, - [7590] = {.lex_state = 283}, - [7591] = {.lex_state = 378}, - [7592] = {.lex_state = 283}, - [7593] = {.lex_state = 283}, - [7594] = {.lex_state = 414}, - [7595] = {.lex_state = 283}, - [7596] = {.lex_state = 283}, - [7597] = {.lex_state = 436}, - [7598] = {.lex_state = 414}, - [7599] = {.lex_state = 414}, - [7600] = {.lex_state = 283}, - [7601] = {.lex_state = 283}, - [7602] = {.lex_state = 414}, + [7580] = {.lex_state = 415}, + [7581] = {.lex_state = 415}, + [7582] = {.lex_state = 415}, + [7583] = {.lex_state = 415}, + [7584] = {.lex_state = 415}, + [7585] = {.lex_state = 382}, + [7586] = {.lex_state = 379}, + [7587] = {.lex_state = 284}, + [7588] = {.lex_state = 415}, + [7589] = {.lex_state = 415}, + [7590] = {.lex_state = 799}, + [7591] = {.lex_state = 415}, + [7592] = {.lex_state = 415}, + [7593] = {.lex_state = 415}, + [7594] = {.lex_state = 415}, + [7595] = {.lex_state = 799}, + [7596] = {.lex_state = 415}, + [7597] = {.lex_state = 415}, + [7598] = {.lex_state = 415}, + [7599] = {.lex_state = 284}, + [7600] = {.lex_state = 415}, + [7601] = {.lex_state = 284}, + [7602] = {.lex_state = 284}, [7603] = {.lex_state = 143}, - [7604] = {.lex_state = 414}, - [7605] = {.lex_state = 946}, - [7606] = {.lex_state = 414}, - [7607] = {.lex_state = 283}, - [7608] = {.lex_state = 283}, - [7609] = {.lex_state = 414}, - [7610] = {.lex_state = 414}, - [7611] = {.lex_state = 414}, - [7612] = {.lex_state = 414}, - [7613] = {.lex_state = 414}, - [7614] = {.lex_state = 414}, - [7615] = {.lex_state = 414}, - [7616] = {.lex_state = 414}, - [7617] = {.lex_state = 414}, - [7618] = {.lex_state = 143}, + [7604] = {.lex_state = 284}, + [7605] = {.lex_state = 415}, + [7606] = {.lex_state = 415}, + [7607] = {.lex_state = 415}, + [7608] = {.lex_state = 415}, + [7609] = {.lex_state = 284}, + [7610] = {.lex_state = 284}, + [7611] = {.lex_state = 284}, + [7612] = {.lex_state = 284}, + [7613] = {.lex_state = 284}, + [7614] = {.lex_state = 284}, + [7615] = {.lex_state = 284}, + [7616] = {.lex_state = 284}, + [7617] = {.lex_state = 284}, + [7618] = {.lex_state = 437}, [7619] = {.lex_state = 143}, - [7620] = {.lex_state = 414}, - [7621] = {.lex_state = 414}, - [7622] = {.lex_state = 143}, - [7623] = {.lex_state = 283}, - [7624] = {.lex_state = 414}, - [7625] = {.lex_state = 414}, - [7626] = {.lex_state = 283}, - [7627] = {.lex_state = 414}, - [7628] = {.lex_state = 414}, - [7629] = {.lex_state = 283}, - [7630] = {.lex_state = 414}, - [7631] = {.lex_state = 414}, - [7632] = {.lex_state = 414}, - [7633] = {.lex_state = 378}, - [7634] = {.lex_state = 143}, - [7635] = {.lex_state = 414}, - [7636] = {.lex_state = 414}, - [7637] = {.lex_state = 414}, - [7638] = {.lex_state = 414}, - [7639] = {.lex_state = 414}, - [7640] = {.lex_state = 283}, - [7641] = {.lex_state = 414}, - [7642] = {.lex_state = 414}, - [7643] = {.lex_state = 414}, - [7644] = {.lex_state = 943}, - [7645] = {.lex_state = 283}, - [7646] = {.lex_state = 283}, - [7647] = {.lex_state = 283}, - [7648] = {.lex_state = 143}, - [7649] = {.lex_state = 283}, - [7650] = {.lex_state = 414}, - [7651] = {.lex_state = 414}, - [7652] = {.lex_state = 798}, - [7653] = {.lex_state = 283}, - [7654] = {.lex_state = 143}, - [7655] = {.lex_state = 283}, - [7656] = {.lex_state = 414}, - [7657] = {.lex_state = 798}, - [7658] = {.lex_state = 283}, + [7620] = {.lex_state = 284}, + [7621] = {.lex_state = 415}, + [7622] = {.lex_state = 415}, + [7623] = {.lex_state = 415}, + [7624] = {.lex_state = 415}, + [7625] = {.lex_state = 284}, + [7626] = {.lex_state = 284}, + [7627] = {.lex_state = 382}, + [7628] = {.lex_state = 284}, + [7629] = {.lex_state = 799}, + [7630] = {.lex_state = 143}, + [7631] = {.lex_state = 799}, + [7632] = {.lex_state = 143}, + [7633] = {.lex_state = 143}, + [7634] = {.lex_state = 799}, + [7635] = {.lex_state = 415}, + [7636] = {.lex_state = 415}, + [7637] = {.lex_state = 415}, + [7638] = {.lex_state = 415}, + [7639] = {.lex_state = 143}, + [7640] = {.lex_state = 143}, + [7641] = {.lex_state = 382}, + [7642] = {.lex_state = 415}, + [7643] = {.lex_state = 143}, + [7644] = {.lex_state = 143}, + [7645] = {.lex_state = 415}, + [7646] = {.lex_state = 415}, + [7647] = {.lex_state = 415}, + [7648] = {.lex_state = 415}, + [7649] = {.lex_state = 415}, + [7650] = {.lex_state = 415}, + [7651] = {.lex_state = 143}, + [7652] = {.lex_state = 799}, + [7653] = {.lex_state = 284}, + [7654] = {.lex_state = 415}, + [7655] = {.lex_state = 415}, + [7656] = {.lex_state = 415}, + [7657] = {.lex_state = 415}, + [7658] = {.lex_state = 415}, [7659] = {.lex_state = 143}, - [7660] = {.lex_state = 143}, - [7661] = {.lex_state = 283}, - [7662] = {.lex_state = 798}, - [7663] = {.lex_state = 436}, - [7664] = {.lex_state = 414}, - [7665] = {.lex_state = 798}, - [7666] = {.lex_state = 143}, - [7667] = {.lex_state = 414}, - [7668] = {.lex_state = 143}, - [7669] = {.lex_state = 414}, - [7670] = {.lex_state = 143}, - [7671] = {.lex_state = 414}, - [7672] = {.lex_state = 414}, - [7673] = {.lex_state = 143}, - [7674] = {.lex_state = 414}, - [7675] = {.lex_state = 143}, - [7676] = {.lex_state = 414}, - [7677] = {.lex_state = 414}, - [7678] = {.lex_state = 143}, - [7679] = {.lex_state = 283}, - [7680] = {.lex_state = 143}, - [7681] = {.lex_state = 283}, - [7682] = {.lex_state = 414}, - [7683] = {.lex_state = 414}, - [7684] = {.lex_state = 414}, - [7685] = {.lex_state = 283}, - [7686] = {.lex_state = 414}, - [7687] = {.lex_state = 143}, - [7688] = {.lex_state = 414}, - [7689] = {.lex_state = 283}, - [7690] = {.lex_state = 143}, - [7691] = {.lex_state = 143}, - [7692] = {.lex_state = 143}, - [7693] = {.lex_state = 414}, - [7694] = {.lex_state = 414}, - [7695] = {.lex_state = 942}, - [7696] = {.lex_state = 283}, - [7697] = {.lex_state = 414}, - [7698] = {.lex_state = 283}, - [7699] = {.lex_state = 414}, - [7700] = {.lex_state = 143}, - [7701] = {.lex_state = 414}, - [7702] = {.lex_state = 143}, - [7703] = {.lex_state = 283}, - [7704] = {.lex_state = 283}, - [7705] = {.lex_state = 414}, - [7706] = {.lex_state = 143}, - [7707] = {.lex_state = 414}, - [7708] = {.lex_state = 798}, - [7709] = {.lex_state = 143}, - [7710] = {.lex_state = 798}, - [7711] = {.lex_state = 143}, - [7712] = {.lex_state = 798}, - [7713] = {.lex_state = 381}, - [7714] = {.lex_state = 414}, - [7715] = {.lex_state = 283}, - [7716] = {.lex_state = 381}, - [7717] = {.lex_state = 414}, - [7718] = {.lex_state = 414}, - [7719] = {.lex_state = 798}, + [7660] = {.lex_state = 415}, + [7661] = {.lex_state = 415}, + [7662] = {.lex_state = 944}, + [7663] = {.lex_state = 379}, + [7664] = {.lex_state = 415}, + [7665] = {.lex_state = 415}, + [7666] = {.lex_state = 415}, + [7667] = {.lex_state = 415}, + [7668] = {.lex_state = 415}, + [7669] = {.lex_state = 799}, + [7670] = {.lex_state = 284}, + [7671] = {.lex_state = 284}, + [7672] = {.lex_state = 415}, + [7673] = {.lex_state = 415}, + [7674] = {.lex_state = 415}, + [7675] = {.lex_state = 415}, + [7676] = {.lex_state = 415}, + [7677] = {.lex_state = 284}, + [7678] = {.lex_state = 799}, + [7679] = {.lex_state = 947}, + [7680] = {.lex_state = 944}, + [7681] = {.lex_state = 415}, + [7682] = {.lex_state = 143}, + [7683] = {.lex_state = 415}, + [7684] = {.lex_state = 415}, + [7685] = {.lex_state = 415}, + [7686] = {.lex_state = 415}, + [7687] = {.lex_state = 799}, + [7688] = {.lex_state = 415}, + [7689] = {.lex_state = 415}, + [7690] = {.lex_state = 799}, + [7691] = {.lex_state = 799}, + [7692] = {.lex_state = 415}, + [7693] = {.lex_state = 415}, + [7694] = {.lex_state = 415}, + [7695] = {.lex_state = 415}, + [7696] = {.lex_state = 379}, + [7697] = {.lex_state = 379}, + [7698] = {.lex_state = 284}, + [7699] = {.lex_state = 415}, + [7700] = {.lex_state = 799}, + [7701] = {.lex_state = 799}, + [7702] = {.lex_state = 415}, + [7703] = {.lex_state = 415}, + [7704] = {.lex_state = 415}, + [7705] = {.lex_state = 415}, + [7706] = {.lex_state = 415}, + [7707] = {.lex_state = 446}, + [7708] = {.lex_state = 284}, + [7709] = {.lex_state = 284}, + [7710] = {.lex_state = 415}, + [7711] = {.lex_state = 284}, + [7712] = {.lex_state = 415}, + [7713] = {.lex_state = 415}, + [7714] = {.lex_state = 950}, + [7715] = {.lex_state = 284}, + [7716] = {.lex_state = 284}, + [7717] = {.lex_state = 284}, + [7718] = {.lex_state = 799}, + [7719] = {.lex_state = 284}, [7720] = {.lex_state = 143}, - [7721] = {.lex_state = 414}, - [7722] = {.lex_state = 798}, - [7723] = {.lex_state = 798}, - [7724] = {.lex_state = 798}, - [7725] = {.lex_state = 445}, - [7726] = {.lex_state = 445}, - [7727] = {.lex_state = 798}, - [7728] = {.lex_state = 414}, - [7729] = {.lex_state = 381}, - [7730] = {.lex_state = 798}, - [7731] = {.lex_state = 798}, - [7732] = {.lex_state = 798}, - [7733] = {.lex_state = 414}, - [7734] = {.lex_state = 414}, - [7735] = {.lex_state = 414}, - [7736] = {.lex_state = 414}, - [7737] = {.lex_state = 283}, - [7738] = {.lex_state = 414}, - [7739] = {.lex_state = 798}, - [7740] = {.lex_state = 283}, - [7741] = {.lex_state = 798}, - [7742] = {.lex_state = 283}, - [7743] = {.lex_state = 283}, - [7744] = {.lex_state = 414}, - [7745] = {.lex_state = 414}, - [7746] = {.lex_state = 798}, - [7747] = {.lex_state = 414}, - [7748] = {.lex_state = 381}, - [7749] = {.lex_state = 414}, - [7750] = {.lex_state = 798}, - [7751] = {.lex_state = 414}, - [7752] = {.lex_state = 414}, - [7753] = {.lex_state = 798}, - [7754] = {.lex_state = 414}, - [7755] = {.lex_state = 414}, - [7756] = {.lex_state = 798}, - [7757] = {.lex_state = 950}, - [7758] = {.lex_state = 798}, - [7759] = {.lex_state = 414}, - [7760] = {.lex_state = 950}, - [7761] = {.lex_state = 950}, - [7762] = {.lex_state = 798}, - [7763] = {.lex_state = 414}, - [7764] = {.lex_state = 950}, - [7765] = {.lex_state = 798}, - [7766] = {.lex_state = 414}, - [7767] = {.lex_state = 950}, - [7768] = {.lex_state = 414}, - [7769] = {.lex_state = 143}, - [7770] = {.lex_state = 143}, - [7771] = {.lex_state = 414}, - [7772] = {.lex_state = 414}, - [7773] = {.lex_state = 798}, - [7774] = {.lex_state = 414}, - [7775] = {.lex_state = 414}, - [7776] = {.lex_state = 414}, - [7777] = {.lex_state = 414}, - [7778] = {.lex_state = 798}, - [7779] = {.lex_state = 798}, - [7780] = {.lex_state = 798}, + [7721] = {.lex_state = 284}, + [7722] = {.lex_state = 382}, + [7723] = {.lex_state = 284}, + [7724] = {.lex_state = 284}, + [7725] = {.lex_state = 799}, + [7726] = {.lex_state = 143}, + [7727] = {.lex_state = 446}, + [7728] = {.lex_state = 943}, + [7729] = {.lex_state = 440}, + [7730] = {.lex_state = 415}, + [7731] = {.lex_state = 143}, + [7732] = {.lex_state = 415}, + [7733] = {.lex_state = 143}, + [7734] = {.lex_state = 950}, + [7735] = {.lex_state = 284}, + [7736] = {.lex_state = 415}, + [7737] = {.lex_state = 440}, + [7738] = {.lex_state = 415}, + [7739] = {.lex_state = 415}, + [7740] = {.lex_state = 415}, + [7741] = {.lex_state = 415}, + [7742] = {.lex_state = 415}, + [7743] = {.lex_state = 415}, + [7744] = {.lex_state = 415}, + [7745] = {.lex_state = 415}, + [7746] = {.lex_state = 799}, + [7747] = {.lex_state = 415}, + [7748] = {.lex_state = 951}, + [7749] = {.lex_state = 799}, + [7750] = {.lex_state = 943}, + [7751] = {.lex_state = 143}, + [7752] = {.lex_state = 799}, + [7753] = {.lex_state = 799}, + [7754] = {.lex_state = 943}, + [7755] = {.lex_state = 415}, + [7756] = {.lex_state = 415}, + [7757] = {.lex_state = 943}, + [7758] = {.lex_state = 415}, + [7759] = {.lex_state = 415}, + [7760] = {.lex_state = 951}, + [7761] = {.lex_state = 415}, + [7762] = {.lex_state = 943}, + [7763] = {.lex_state = 415}, + [7764] = {.lex_state = 415}, + [7765] = {.lex_state = 799}, + [7766] = {.lex_state = 143}, + [7767] = {.lex_state = 284}, + [7768] = {.lex_state = 415}, + [7769] = {.lex_state = 415}, + [7770] = {.lex_state = 379}, + [7771] = {.lex_state = 143}, + [7772] = {.lex_state = 799}, + [7773] = {.lex_state = 799}, + [7774] = {.lex_state = 415}, + [7775] = {.lex_state = 951}, + [7776] = {.lex_state = 799}, + [7777] = {.lex_state = 143}, + [7778] = {.lex_state = 799}, + [7779] = {.lex_state = 799}, + [7780] = {.lex_state = 284}, [7781] = {.lex_state = 143}, - [7782] = {.lex_state = 949}, - [7783] = {.lex_state = 943}, + [7782] = {.lex_state = 382}, + [7783] = {.lex_state = 143}, [7784] = {.lex_state = 143}, - [7785] = {.lex_state = 949}, - [7786] = {.lex_state = 143}, + [7785] = {.lex_state = 284}, + [7786] = {.lex_state = 437}, [7787] = {.lex_state = 143}, - [7788] = {.lex_state = 414}, - [7789] = {.lex_state = 143}, - [7790] = {.lex_state = 414}, - [7791] = {.lex_state = 414}, - [7792] = {.lex_state = 414}, - [7793] = {.lex_state = 143}, - [7794] = {.lex_state = 143}, - [7795] = {.lex_state = 798}, - [7796] = {.lex_state = 381}, - [7797] = {.lex_state = 414}, - [7798] = {.lex_state = 798}, - [7799] = {.lex_state = 414}, - [7800] = {.lex_state = 798}, - [7801] = {.lex_state = 143}, - [7802] = {.lex_state = 378}, - [7803] = {.lex_state = 798}, - [7804] = {.lex_state = 143}, - [7805] = {.lex_state = 414}, - [7806] = {.lex_state = 414}, - [7807] = {.lex_state = 414}, - [7808] = {.lex_state = 414}, - [7809] = {.lex_state = 414}, - [7810] = {.lex_state = 414}, - [7811] = {.lex_state = 414}, - [7812] = {.lex_state = 414}, - [7813] = {.lex_state = 378}, - [7814] = {.lex_state = 414}, - [7815] = {.lex_state = 283}, - [7816] = {.lex_state = 942}, - [7817] = {.lex_state = 439}, + [7788] = {.lex_state = 143}, + [7789] = {.lex_state = 284}, + [7790] = {.lex_state = 284}, + [7791] = {.lex_state = 284}, + [7792] = {.lex_state = 284}, + [7793] = {.lex_state = 284}, + [7794] = {.lex_state = 284}, + [7795] = {.lex_state = 284}, + [7796] = {.lex_state = 143}, + [7797] = {.lex_state = 951}, + [7798] = {.lex_state = 951}, + [7799] = {.lex_state = 143}, + [7800] = {.lex_state = 143}, + [7801] = {.lex_state = 799}, + [7802] = {.lex_state = 143}, + [7803] = {.lex_state = 143}, + [7804] = {.lex_state = 415}, + [7805] = {.lex_state = 143}, + [7806] = {.lex_state = 415}, + [7807] = {.lex_state = 415}, + [7808] = {.lex_state = 415}, + [7809] = {.lex_state = 415}, + [7810] = {.lex_state = 143}, + [7811] = {.lex_state = 143}, + [7812] = {.lex_state = 284}, + [7813] = {.lex_state = 799}, + [7814] = {.lex_state = 415}, + [7815] = {.lex_state = 415}, + [7816] = {.lex_state = 415}, + [7817] = {.lex_state = 799}, [7818] = {.lex_state = 143}, - [7819] = {.lex_state = 439}, - [7820] = {.lex_state = 143}, - [7821] = {.lex_state = 414}, - [7822] = {.lex_state = 414}, - [7823] = {.lex_state = 414}, - [7824] = {.lex_state = 414}, - [7825] = {.lex_state = 143}, - [7826] = {.lex_state = 143}, - [7827] = {.lex_state = 798}, - [7828] = {.lex_state = 798}, - [7829] = {.lex_state = 798}, - [7830] = {.lex_state = 414}, - [7831] = {.lex_state = 798}, - [7832] = {.lex_state = 414}, - [7833] = {.lex_state = 798}, - [7834] = {.lex_state = 414}, - [7835] = {.lex_state = 414}, - [7836] = {.lex_state = 414}, - [7837] = {.lex_state = 414}, - [7838] = {.lex_state = 414}, - [7839] = {.lex_state = 798}, - [7840] = {.lex_state = 414}, - [7841] = {.lex_state = 143}, - [7842] = {.lex_state = 414}, - [7843] = {.lex_state = 414}, - [7844] = {.lex_state = 414}, - [7845] = {.lex_state = 414}, - [7846] = {.lex_state = 283}, - [7847] = {.lex_state = 798}, - [7848] = {.lex_state = 382}, - [7849] = {.lex_state = 798}, - [7850] = {.lex_state = 490}, - [7851] = {.lex_state = 373}, - [7852] = {.lex_state = 382}, - [7853] = {.lex_state = 943}, - [7854] = {.lex_state = 373}, - [7855] = {.lex_state = 440}, - [7856] = {.lex_state = 382}, - [7857] = {.lex_state = 798}, - [7858] = {.lex_state = 798}, - [7859] = {.lex_state = 283}, - [7860] = {.lex_state = 283}, - [7861] = {.lex_state = 283}, - [7862] = {.lex_state = 382}, - [7863] = {.lex_state = 490}, - [7864] = {.lex_state = 283}, - [7865] = {.lex_state = 440}, - [7866] = {.lex_state = 944}, - [7867] = {.lex_state = 283}, - [7868] = {.lex_state = 283}, + [7819] = {.lex_state = 284}, + [7820] = {.lex_state = 284}, + [7821] = {.lex_state = 284}, + [7822] = {.lex_state = 143}, + [7823] = {.lex_state = 143}, + [7824] = {.lex_state = 799}, + [7825] = {.lex_state = 415}, + [7826] = {.lex_state = 415}, + [7827] = {.lex_state = 415}, + [7828] = {.lex_state = 143}, + [7829] = {.lex_state = 143}, + [7830] = {.lex_state = 143}, + [7831] = {.lex_state = 415}, + [7832] = {.lex_state = 415}, + [7833] = {.lex_state = 415}, + [7834] = {.lex_state = 799}, + [7835] = {.lex_state = 284}, + [7836] = {.lex_state = 284}, + [7837] = {.lex_state = 284}, + [7838] = {.lex_state = 284}, + [7839] = {.lex_state = 799}, + [7840] = {.lex_state = 415}, + [7841] = {.lex_state = 415}, + [7842] = {.lex_state = 415}, + [7843] = {.lex_state = 284}, + [7844] = {.lex_state = 415}, + [7845] = {.lex_state = 415}, + [7846] = {.lex_state = 415}, + [7847] = {.lex_state = 415}, + [7848] = {.lex_state = 415}, + [7849] = {.lex_state = 143}, + [7850] = {.lex_state = 284}, + [7851] = {.lex_state = 284}, + [7852] = {.lex_state = 383}, + [7853] = {.lex_state = 799}, + [7854] = {.lex_state = 284}, + [7855] = {.lex_state = 799}, + [7856] = {.lex_state = 799}, + [7857] = {.lex_state = 945}, + [7858] = {.lex_state = 491}, + [7859] = {.lex_state = 383}, + [7860] = {.lex_state = 799}, + [7861] = {.lex_state = 491}, + [7862] = {.lex_state = 383}, + [7863] = {.lex_state = 799}, + [7864] = {.lex_state = 944}, + [7865] = {.lex_state = 284}, + [7866] = {.lex_state = 951}, + [7867] = {.lex_state = 374}, + [7868] = {.lex_state = 951}, [7869] = {.lex_state = 951}, [7870] = {.lex_state = 951}, - [7871] = {.lex_state = 946}, - [7872] = {.lex_state = 951}, - [7873] = {.lex_state = 944}, - [7874] = {.lex_state = 798}, - [7875] = {.lex_state = 944}, - [7876] = {.lex_state = 440}, - [7877] = {.lex_state = 943}, - [7878] = {.lex_state = 951}, - [7879] = {.lex_state = 798}, - [7880] = {.lex_state = 798}, - [7881] = {.lex_state = 373}, - [7882] = {.lex_state = 950}, - [7883] = {.lex_state = 950}, - [7884] = {.lex_state = 483}, - [7885] = {.lex_state = 950}, - [7886] = {.lex_state = 950}, - [7887] = {.lex_state = 373}, - [7888] = {.lex_state = 373}, - [7889] = {.lex_state = 483}, - [7890] = {.lex_state = 798}, - [7891] = {.lex_state = 950}, - [7892] = {.lex_state = 440}, - [7893] = {.lex_state = 798}, - [7894] = {.lex_state = 373}, - [7895] = {.lex_state = 143}, - [7896] = {.lex_state = 440}, - [7897] = {.lex_state = 798}, - [7898] = {.lex_state = 951}, - [7899] = {.lex_state = 373}, - [7900] = {.lex_state = 382}, - [7901] = {.lex_state = 373}, - [7902] = {.lex_state = 798}, - [7903] = {.lex_state = 441}, - [7904] = {.lex_state = 441}, - [7905] = {.lex_state = 373}, - [7906] = {.lex_state = 283}, - [7907] = {.lex_state = 373}, - [7908] = {.lex_state = 373}, - [7909] = {.lex_state = 373}, - [7910] = {.lex_state = 283}, - [7911] = {.lex_state = 373}, - [7912] = {.lex_state = 373}, - [7913] = {.lex_state = 798}, - [7914] = {.lex_state = 798}, - [7915] = {.lex_state = 283}, - [7916] = {.lex_state = 72}, - [7917] = {.lex_state = 72}, - [7918] = {.lex_state = 283}, - [7919] = {.lex_state = 798}, - [7920] = {.lex_state = 283}, - [7921] = {.lex_state = 72}, - [7922] = {.lex_state = 812}, - [7923] = {.lex_state = 72}, - [7924] = {.lex_state = 812}, - [7925] = {.lex_state = 283}, - [7926] = {.lex_state = 283}, - [7927] = {.lex_state = 283}, - [7928] = {.lex_state = 820}, - [7929] = {.lex_state = 373}, - [7930] = {.lex_state = 283}, - [7931] = {.lex_state = 812}, - [7932] = {.lex_state = 283}, - [7933] = {.lex_state = 385}, - [7934] = {.lex_state = 944}, - [7935] = {.lex_state = 283}, - [7936] = {.lex_state = 798}, - [7937] = {.lex_state = 283}, - [7938] = {.lex_state = 283}, - [7939] = {.lex_state = 373}, - [7940] = {.lex_state = 373}, - [7941] = {.lex_state = 373}, - [7942] = {.lex_state = 453}, - [7943] = {.lex_state = 373}, - [7944] = {.lex_state = 820}, - [7945] = {.lex_state = 283}, - [7946] = {.lex_state = 453}, - [7947] = {.lex_state = 373}, - [7948] = {.lex_state = 373}, - [7949] = {.lex_state = 798}, - [7950] = {.lex_state = 373}, - [7951] = {.lex_state = 491}, - [7952] = {.lex_state = 385}, - [7953] = {.lex_state = 373}, - [7954] = {.lex_state = 72}, - [7955] = {.lex_state = 72}, - [7956] = {.lex_state = 72}, - [7957] = {.lex_state = 373}, - [7958] = {.lex_state = 812}, - [7959] = {.lex_state = 283}, - [7960] = {.lex_state = 373}, - [7961] = {.lex_state = 491}, - [7962] = {.lex_state = 798}, - [7963] = {.lex_state = 373}, - [7964] = {.lex_state = 812}, - [7965] = {.lex_state = 798}, - [7966] = {.lex_state = 951}, - [7967] = {.lex_state = 484}, - [7968] = {.lex_state = 798}, - [7969] = {.lex_state = 383}, - [7970] = {.lex_state = 441}, - [7971] = {.lex_state = 951}, - [7972] = {.lex_state = 951}, - [7973] = {.lex_state = 492}, - [7974] = {.lex_state = 72}, - [7975] = {.lex_state = 798}, - [7976] = {.lex_state = 951}, - [7977] = {.lex_state = 484}, - [7978] = {.lex_state = 951}, - [7979] = {.lex_state = 812}, - [7980] = {.lex_state = 72}, - [7981] = {.lex_state = 373}, - [7982] = {.lex_state = 948}, - [7983] = {.lex_state = 72}, - [7984] = {.lex_state = 27}, - [7985] = {.lex_state = 812}, - [7986] = {.lex_state = 72}, - [7987] = {.lex_state = 283}, - [7988] = {.lex_state = 283}, - [7989] = {.lex_state = 72}, - [7990] = {.lex_state = 484}, - [7991] = {.lex_state = 283}, - [7992] = {.lex_state = 373}, - [7993] = {.lex_state = 64}, - [7994] = {.lex_state = 798}, - [7995] = {.lex_state = 283}, - [7996] = {.lex_state = 472}, - [7997] = {.lex_state = 373}, - [7998] = {.lex_state = 283}, - [7999] = {.lex_state = 472}, - [8000] = {.lex_state = 373}, - [8001] = {.lex_state = 812}, - [8002] = {.lex_state = 373}, - [8003] = {.lex_state = 384}, - [8004] = {.lex_state = 441}, - [8005] = {.lex_state = 952}, - [8006] = {.lex_state = 373}, - [8007] = {.lex_state = 812}, - [8008] = {.lex_state = 441}, - [8009] = {.lex_state = 944}, - [8010] = {.lex_state = 956}, - [8011] = {.lex_state = 492}, - [8012] = {.lex_state = 475}, - [8013] = {.lex_state = 373}, - [8014] = {.lex_state = 283}, - [8015] = {.lex_state = 475}, - [8016] = {.lex_state = 283}, - [8017] = {.lex_state = 798}, - [8018] = {.lex_state = 798}, - [8019] = {.lex_state = 373}, - [8020] = {.lex_state = 283}, - [8021] = {.lex_state = 384}, - [8022] = {.lex_state = 798}, - [8023] = {.lex_state = 373}, - [8024] = {.lex_state = 283}, - [8025] = {.lex_state = 492}, - [8026] = {.lex_state = 944}, - [8027] = {.lex_state = 492}, - [8028] = {.lex_state = 373}, - [8029] = {.lex_state = 798}, - [8030] = {.lex_state = 373}, - [8031] = {.lex_state = 283}, - [8032] = {.lex_state = 952}, - [8033] = {.lex_state = 283}, - [8034] = {.lex_state = 484}, - [8035] = {.lex_state = 484}, - [8036] = {.lex_state = 812}, - [8037] = {.lex_state = 373}, - [8038] = {.lex_state = 72}, - [8039] = {.lex_state = 373}, - [8040] = {.lex_state = 812}, - [8041] = {.lex_state = 944}, - [8042] = {.lex_state = 72}, - [8043] = {.lex_state = 283}, - [8044] = {.lex_state = 283}, - [8045] = {.lex_state = 373}, - [8046] = {.lex_state = 373}, - [8047] = {.lex_state = 798}, - [8048] = {.lex_state = 373}, - [8049] = {.lex_state = 798}, - [8050] = {.lex_state = 812}, - [8051] = {.lex_state = 798}, - [8052] = {.lex_state = 798}, - [8053] = {.lex_state = 373}, - [8054] = {.lex_state = 72}, - [8055] = {.lex_state = 283}, - [8056] = {.lex_state = 72}, - [8057] = {.lex_state = 373}, - [8058] = {.lex_state = 812}, - [8059] = {.lex_state = 798}, - [8060] = {.lex_state = 954}, - [8061] = {.lex_state = 812}, - [8062] = {.lex_state = 373}, - [8063] = {.lex_state = 72}, - [8064] = {.lex_state = 373}, - [8065] = {.lex_state = 72}, - [8066] = {.lex_state = 373}, - [8067] = {.lex_state = 456}, - [8068] = {.lex_state = 492}, - [8069] = {.lex_state = 373}, - [8070] = {.lex_state = 283}, - [8071] = {.lex_state = 456}, - [8072] = {.lex_state = 812}, - [8073] = {.lex_state = 798}, - [8074] = {.lex_state = 494}, - [8075] = {.lex_state = 438}, - [8076] = {.lex_state = 457}, - [8077] = {.lex_state = 798}, - [8078] = {.lex_state = 798}, - [8079] = {.lex_state = 457}, - [8080] = {.lex_state = 283}, - [8081] = {.lex_state = 283}, - [8082] = {.lex_state = 283}, - [8083] = {.lex_state = 792}, - [8084] = {.lex_state = 373}, - [8085] = {.lex_state = 798}, - [8086] = {.lex_state = 457}, - [8087] = {.lex_state = 494}, - [8088] = {.lex_state = 798}, - [8089] = {.lex_state = 88}, - [8090] = {.lex_state = 798}, - [8091] = {.lex_state = 438}, - [8092] = {.lex_state = 88}, - [8093] = {.lex_state = 373}, - [8094] = {.lex_state = 373}, - [8095] = {.lex_state = 798}, - [8096] = {.lex_state = 798}, - [8097] = {.lex_state = 798}, - [8098] = {.lex_state = 798}, - [8099] = {.lex_state = 499}, - [8100] = {.lex_state = 798}, - [8101] = {.lex_state = 798}, - [8102] = {.lex_state = 499}, - [8103] = {.lex_state = 283}, - [8104] = {.lex_state = 373}, - [8105] = {.lex_state = 438}, - [8106] = {.lex_state = 442}, - [8107] = {.lex_state = 798}, - [8108] = {.lex_state = 88}, - [8109] = {.lex_state = 798}, - [8110] = {.lex_state = 457}, - [8111] = {.lex_state = 457}, - [8112] = {.lex_state = 812}, - [8113] = {.lex_state = 798}, - [8114] = {.lex_state = 438}, - [8115] = {.lex_state = 798}, - [8116] = {.lex_state = 438}, - [8117] = {.lex_state = 798}, - [8118] = {.lex_state = 476}, - [8119] = {.lex_state = 88}, - [8120] = {.lex_state = 798}, - [8121] = {.lex_state = 373}, - [8122] = {.lex_state = 373}, - [8123] = {.lex_state = 476}, - [8124] = {.lex_state = 812}, - [8125] = {.lex_state = 798}, - [8126] = {.lex_state = 88}, - [8127] = {.lex_state = 438}, - [8128] = {.lex_state = 438}, - [8129] = {.lex_state = 798}, - [8130] = {.lex_state = 373}, - [8131] = {.lex_state = 373}, - [8132] = {.lex_state = 798}, - [8133] = {.lex_state = 798}, - [8134] = {.lex_state = 798}, - [8135] = {.lex_state = 798}, - [8136] = {.lex_state = 476}, - [8137] = {.lex_state = 386}, - [8138] = {.lex_state = 798}, - [8139] = {.lex_state = 283}, - [8140] = {.lex_state = 812}, - [8141] = {.lex_state = 798}, - [8142] = {.lex_state = 88}, - [8143] = {.lex_state = 373}, - [8144] = {.lex_state = 498}, - [8145] = {.lex_state = 283}, - [8146] = {.lex_state = 438}, - [8147] = {.lex_state = 283}, - [8148] = {.lex_state = 798}, - [8149] = {.lex_state = 948}, - [8150] = {.lex_state = 954}, - [8151] = {.lex_state = 283}, - [8152] = {.lex_state = 820}, - [8153] = {.lex_state = 798}, - [8154] = {.lex_state = 798}, - [8155] = {.lex_state = 798}, - [8156] = {.lex_state = 792}, - [8157] = {.lex_state = 373}, - [8158] = {.lex_state = 812}, - [8159] = {.lex_state = 812}, - [8160] = {.lex_state = 498}, - [8161] = {.lex_state = 798}, - [8162] = {.lex_state = 792}, - [8163] = {.lex_state = 438}, - [8164] = {.lex_state = 798}, - [8165] = {.lex_state = 798}, - [8166] = {.lex_state = 798}, - [8167] = {.lex_state = 798}, - [8168] = {.lex_state = 280}, - [8169] = {.lex_state = 798}, - [8170] = {.lex_state = 798}, - [8171] = {.lex_state = 494}, - [8172] = {.lex_state = 812}, - [8173] = {.lex_state = 798}, - [8174] = {.lex_state = 373}, - [8175] = {.lex_state = 956}, - [8176] = {.lex_state = 283}, - [8177] = {.lex_state = 88}, - [8178] = {.lex_state = 473}, - [8179] = {.lex_state = 820}, + [7871] = {.lex_state = 951}, + [7872] = {.lex_state = 799}, + [7873] = {.lex_state = 383}, + [7874] = {.lex_state = 374}, + [7875] = {.lex_state = 952}, + [7876] = {.lex_state = 952}, + [7877] = {.lex_state = 374}, + [7878] = {.lex_state = 952}, + [7879] = {.lex_state = 952}, + [7880] = {.lex_state = 484}, + [7881] = {.lex_state = 484}, + [7882] = {.lex_state = 944}, + [7883] = {.lex_state = 374}, + [7884] = {.lex_state = 441}, + [7885] = {.lex_state = 799}, + [7886] = {.lex_state = 799}, + [7887] = {.lex_state = 383}, + [7888] = {.lex_state = 441}, + [7889] = {.lex_state = 441}, + [7890] = {.lex_state = 374}, + [7891] = {.lex_state = 441}, + [7892] = {.lex_state = 374}, + [7893] = {.lex_state = 441}, + [7894] = {.lex_state = 374}, + [7895] = {.lex_state = 799}, + [7896] = {.lex_state = 284}, + [7897] = {.lex_state = 284}, + [7898] = {.lex_state = 799}, + [7899] = {.lex_state = 945}, + [7900] = {.lex_state = 945}, + [7901] = {.lex_state = 947}, + [7902] = {.lex_state = 284}, + [7903] = {.lex_state = 952}, + [7904] = {.lex_state = 132}, + [7905] = {.lex_state = 132}, + [7906] = {.lex_state = 374}, + [7907] = {.lex_state = 799}, + [7908] = {.lex_state = 374}, + [7909] = {.lex_state = 955}, + [7910] = {.lex_state = 284}, + [7911] = {.lex_state = 952}, + [7912] = {.lex_state = 374}, + [7913] = {.lex_state = 374}, + [7914] = {.lex_state = 284}, + [7915] = {.lex_state = 473}, + [7916] = {.lex_state = 284}, + [7917] = {.lex_state = 799}, + [7918] = {.lex_state = 384}, + [7919] = {.lex_state = 493}, + [7920] = {.lex_state = 473}, + [7921] = {.lex_state = 952}, + [7922] = {.lex_state = 493}, + [7923] = {.lex_state = 284}, + [7924] = {.lex_state = 799}, + [7925] = {.lex_state = 374}, + [7926] = {.lex_state = 374}, + [7927] = {.lex_state = 457}, + [7928] = {.lex_state = 813}, + [7929] = {.lex_state = 952}, + [7930] = {.lex_state = 952}, + [7931] = {.lex_state = 821}, + [7932] = {.lex_state = 952}, + [7933] = {.lex_state = 374}, + [7934] = {.lex_state = 813}, + [7935] = {.lex_state = 374}, + [7936] = {.lex_state = 813}, + [7937] = {.lex_state = 945}, + [7938] = {.lex_state = 799}, + [7939] = {.lex_state = 821}, + [7940] = {.lex_state = 799}, + [7941] = {.lex_state = 442}, + [7942] = {.lex_state = 457}, + [7943] = {.lex_state = 132}, + [7944] = {.lex_state = 132}, + [7945] = {.lex_state = 284}, + [7946] = {.lex_state = 284}, + [7947] = {.lex_state = 385}, + [7948] = {.lex_state = 374}, + [7949] = {.lex_state = 374}, + [7950] = {.lex_state = 374}, + [7951] = {.lex_state = 799}, + [7952] = {.lex_state = 492}, + [7953] = {.lex_state = 374}, + [7954] = {.lex_state = 492}, + [7955] = {.lex_state = 454}, + [7956] = {.lex_state = 374}, + [7957] = {.lex_state = 454}, + [7958] = {.lex_state = 64}, + [7959] = {.lex_state = 813}, + [7960] = {.lex_state = 485}, + [7961] = {.lex_state = 284}, + [7962] = {.lex_state = 386}, + [7963] = {.lex_state = 485}, + [7964] = {.lex_state = 813}, + [7965] = {.lex_state = 799}, + [7966] = {.lex_state = 485}, + [7967] = {.lex_state = 485}, + [7968] = {.lex_state = 374}, + [7969] = {.lex_state = 284}, + [7970] = {.lex_state = 284}, + [7971] = {.lex_state = 284}, + [7972] = {.lex_state = 284}, + [7973] = {.lex_state = 374}, + [7974] = {.lex_state = 374}, + [7975] = {.lex_state = 799}, + [7976] = {.lex_state = 485}, + [7977] = {.lex_state = 374}, + [7978] = {.lex_state = 493}, + [7979] = {.lex_state = 284}, + [7980] = {.lex_state = 374}, + [7981] = {.lex_state = 284}, + [7982] = {.lex_state = 813}, + [7983] = {.lex_state = 374}, + [7984] = {.lex_state = 374}, + [7985] = {.lex_state = 799}, + [7986] = {.lex_state = 945}, + [7987] = {.lex_state = 813}, + [7988] = {.lex_state = 813}, + [7989] = {.lex_state = 374}, + [7990] = {.lex_state = 374}, + [7991] = {.lex_state = 284}, + [7992] = {.lex_state = 442}, + [7993] = {.lex_state = 813}, + [7994] = {.lex_state = 132}, + [7995] = {.lex_state = 284}, + [7996] = {.lex_state = 799}, + [7997] = {.lex_state = 386}, + [7998] = {.lex_state = 442}, + [7999] = {.lex_state = 284}, + [8000] = {.lex_state = 132}, + [8001] = {.lex_state = 374}, + [8002] = {.lex_state = 132}, + [8003] = {.lex_state = 132}, + [8004] = {.lex_state = 374}, + [8005] = {.lex_state = 284}, + [8006] = {.lex_state = 442}, + [8007] = {.lex_state = 284}, + [8008] = {.lex_state = 132}, + [8009] = {.lex_state = 132}, + [8010] = {.lex_state = 374}, + [8011] = {.lex_state = 799}, + [8012] = {.lex_state = 374}, + [8013] = {.lex_state = 442}, + [8014] = {.lex_state = 493}, + [8015] = {.lex_state = 374}, + [8016] = {.lex_state = 374}, + [8017] = {.lex_state = 374}, + [8018] = {.lex_state = 374}, + [8019] = {.lex_state = 953}, + [8020] = {.lex_state = 957}, + [8021] = {.lex_state = 493}, + [8022] = {.lex_state = 374}, + [8023] = {.lex_state = 385}, + [8024] = {.lex_state = 284}, + [8025] = {.lex_state = 374}, + [8026] = {.lex_state = 799}, + [8027] = {.lex_state = 953}, + [8028] = {.lex_state = 813}, + [8029] = {.lex_state = 132}, + [8030] = {.lex_state = 284}, + [8031] = {.lex_state = 476}, + [8032] = {.lex_state = 813}, + [8033] = {.lex_state = 374}, + [8034] = {.lex_state = 799}, + [8035] = {.lex_state = 374}, + [8036] = {.lex_state = 799}, + [8037] = {.lex_state = 799}, + [8038] = {.lex_state = 132}, + [8039] = {.lex_state = 799}, + [8040] = {.lex_state = 799}, + [8041] = {.lex_state = 284}, + [8042] = {.lex_state = 945}, + [8043] = {.lex_state = 476}, + [8044] = {.lex_state = 284}, + [8045] = {.lex_state = 284}, + [8046] = {.lex_state = 284}, + [8047] = {.lex_state = 284}, + [8048] = {.lex_state = 284}, + [8049] = {.lex_state = 132}, + [8050] = {.lex_state = 284}, + [8051] = {.lex_state = 132}, + [8052] = {.lex_state = 813}, + [8053] = {.lex_state = 949}, + [8054] = {.lex_state = 813}, + [8055] = {.lex_state = 284}, + [8056] = {.lex_state = 132}, + [8057] = {.lex_state = 132}, + [8058] = {.lex_state = 132}, + [8059] = {.lex_state = 799}, + [8060] = {.lex_state = 374}, + [8061] = {.lex_state = 374}, + [8062] = {.lex_state = 27}, + [8063] = {.lex_state = 132}, + [8064] = {.lex_state = 813}, + [8065] = {.lex_state = 799}, + [8066] = {.lex_state = 799}, + [8067] = {.lex_state = 813}, + [8068] = {.lex_state = 284}, + [8069] = {.lex_state = 374}, + [8070] = {.lex_state = 284}, + [8071] = {.lex_state = 374}, + [8072] = {.lex_state = 945}, + [8073] = {.lex_state = 284}, + [8074] = {.lex_state = 439}, + [8075] = {.lex_state = 439}, + [8076] = {.lex_state = 495}, + [8077] = {.lex_state = 458}, + [8078] = {.lex_state = 439}, + [8079] = {.lex_state = 439}, + [8080] = {.lex_state = 799}, + [8081] = {.lex_state = 953}, + [8082] = {.lex_state = 374}, + [8083] = {.lex_state = 474}, + [8084] = {.lex_state = 477}, + [8085] = {.lex_state = 374}, + [8086] = {.lex_state = 799}, + [8087] = {.lex_state = 374}, + [8088] = {.lex_state = 374}, + [8089] = {.lex_state = 458}, + [8090] = {.lex_state = 945}, + [8091] = {.lex_state = 494}, + [8092] = {.lex_state = 474}, + [8093] = {.lex_state = 374}, + [8094] = {.lex_state = 494}, + [8095] = {.lex_state = 474}, + [8096] = {.lex_state = 455}, + [8097] = {.lex_state = 374}, + [8098] = {.lex_state = 374}, + [8099] = {.lex_state = 374}, + [8100] = {.lex_state = 494}, + [8101] = {.lex_state = 494}, + [8102] = {.lex_state = 455}, + [8103] = {.lex_state = 27}, + [8104] = {.lex_state = 865}, + [8105] = {.lex_state = 387}, + [8106] = {.lex_state = 284}, + [8107] = {.lex_state = 458}, + [8108] = {.lex_state = 494}, + [8109] = {.lex_state = 284}, + [8110] = {.lex_state = 793}, + [8111] = {.lex_state = 27}, + [8112] = {.lex_state = 486}, + [8113] = {.lex_state = 495}, + [8114] = {.lex_state = 439}, + [8115] = {.lex_state = 88}, + [8116] = {.lex_state = 813}, + [8117] = {.lex_state = 27}, + [8118] = {.lex_state = 799}, + [8119] = {.lex_state = 799}, + [8120] = {.lex_state = 486}, + [8121] = {.lex_state = 799}, + [8122] = {.lex_state = 799}, + [8123] = {.lex_state = 793}, + [8124] = {.lex_state = 458}, + [8125] = {.lex_state = 443}, + [8126] = {.lex_state = 374}, + [8127] = {.lex_state = 486}, + [8128] = {.lex_state = 374}, + [8129] = {.lex_state = 374}, + [8130] = {.lex_state = 455}, + [8131] = {.lex_state = 439}, + [8132] = {.lex_state = 486}, + [8133] = {.lex_state = 813}, + [8134] = {.lex_state = 374}, + [8135] = {.lex_state = 374}, + [8136] = {.lex_state = 439}, + [8137] = {.lex_state = 799}, + [8138] = {.lex_state = 281}, + [8139] = {.lex_state = 387}, + [8140] = {.lex_state = 449}, + [8141] = {.lex_state = 495}, + [8142] = {.lex_state = 387}, + [8143] = {.lex_state = 88}, + [8144] = {.lex_state = 374}, + [8145] = {.lex_state = 799}, + [8146] = {.lex_state = 799}, + [8147] = {.lex_state = 799}, + [8148] = {.lex_state = 813}, + [8149] = {.lex_state = 799}, + [8150] = {.lex_state = 799}, + [8151] = {.lex_state = 799}, + [8152] = {.lex_state = 799}, + [8153] = {.lex_state = 799}, + [8154] = {.lex_state = 799}, + [8155] = {.lex_state = 799}, + [8156] = {.lex_state = 88}, + [8157] = {.lex_state = 799}, + [8158] = {.lex_state = 88}, + [8159] = {.lex_state = 374}, + [8160] = {.lex_state = 455}, + [8161] = {.lex_state = 799}, + [8162] = {.lex_state = 500}, + [8163] = {.lex_state = 88}, + [8164] = {.lex_state = 799}, + [8165] = {.lex_state = 284}, + [8166] = {.lex_state = 793}, + [8167] = {.lex_state = 439}, + [8168] = {.lex_state = 439}, + [8169] = {.lex_state = 793}, + [8170] = {.lex_state = 799}, + [8171] = {.lex_state = 499}, + [8172] = {.lex_state = 799}, + [8173] = {.lex_state = 88}, + [8174] = {.lex_state = 799}, + [8175] = {.lex_state = 799}, + [8176] = {.lex_state = 799}, + [8177] = {.lex_state = 284}, + [8178] = {.lex_state = 374}, + [8179] = {.lex_state = 953}, [8180] = {.lex_state = 88}, - [8181] = {.lex_state = 88}, - [8182] = {.lex_state = 88}, - [8183] = {.lex_state = 812}, - [8184] = {.lex_state = 448}, - [8185] = {.lex_state = 473}, - [8186] = {.lex_state = 88}, - [8187] = {.lex_state = 798}, - [8188] = {.lex_state = 798}, - [8189] = {.lex_state = 798}, - [8190] = {.lex_state = 283}, - [8191] = {.lex_state = 798}, - [8192] = {.lex_state = 798}, - [8193] = {.lex_state = 798}, - [8194] = {.lex_state = 279}, - [8195] = {.lex_state = 798}, - [8196] = {.lex_state = 792}, - [8197] = {.lex_state = 812}, - [8198] = {.lex_state = 373}, - [8199] = {.lex_state = 283}, - [8200] = {.lex_state = 798}, - [8201] = {.lex_state = 798}, - [8202] = {.lex_state = 283}, - [8203] = {.lex_state = 812}, - [8204] = {.lex_state = 473}, - [8205] = {.lex_state = 88}, - [8206] = {.lex_state = 798}, - [8207] = {.lex_state = 373}, - [8208] = {.lex_state = 88}, - [8209] = {.lex_state = 373}, - [8210] = {.lex_state = 373}, - [8211] = {.lex_state = 798}, - [8212] = {.lex_state = 493}, - [8213] = {.lex_state = 812}, - [8214] = {.lex_state = 798}, - [8215] = {.lex_state = 798}, - [8216] = {.lex_state = 88}, - [8217] = {.lex_state = 373}, - [8218] = {.lex_state = 494}, - [8219] = {.lex_state = 373}, - [8220] = {.lex_state = 798}, - [8221] = {.lex_state = 493}, - [8222] = {.lex_state = 798}, - [8223] = {.lex_state = 373}, - [8224] = {.lex_state = 88}, - [8225] = {.lex_state = 373}, - [8226] = {.lex_state = 373}, - [8227] = {.lex_state = 812}, - [8228] = {.lex_state = 373}, - [8229] = {.lex_state = 473}, - [8230] = {.lex_state = 798}, - [8231] = {.lex_state = 798}, - [8232] = {.lex_state = 279}, - [8233] = {.lex_state = 798}, - [8234] = {.lex_state = 798}, - [8235] = {.lex_state = 373}, - [8236] = {.lex_state = 373}, - [8237] = {.lex_state = 798}, - [8238] = {.lex_state = 473}, - [8239] = {.lex_state = 454}, - [8240] = {.lex_state = 438}, - [8241] = {.lex_state = 373}, - [8242] = {.lex_state = 864}, - [8243] = {.lex_state = 373}, - [8244] = {.lex_state = 373}, - [8245] = {.lex_state = 798}, - [8246] = {.lex_state = 454}, - [8247] = {.lex_state = 386}, - [8248] = {.lex_state = 798}, - [8249] = {.lex_state = 438}, - [8250] = {.lex_state = 798}, - [8251] = {.lex_state = 386}, - [8252] = {.lex_state = 373}, - [8253] = {.lex_state = 812}, - [8254] = {.lex_state = 494}, - [8255] = {.lex_state = 442}, - [8256] = {.lex_state = 27}, - [8257] = {.lex_state = 454}, - [8258] = {.lex_state = 798}, - [8259] = {.lex_state = 386}, - [8260] = {.lex_state = 798}, - [8261] = {.lex_state = 812}, - [8262] = {.lex_state = 27}, - [8263] = {.lex_state = 386}, - [8264] = {.lex_state = 798}, - [8265] = {.lex_state = 493}, - [8266] = {.lex_state = 798}, - [8267] = {.lex_state = 373}, - [8268] = {.lex_state = 798}, - [8269] = {.lex_state = 454}, - [8270] = {.lex_state = 493}, - [8271] = {.lex_state = 864}, - [8272] = {.lex_state = 952}, - [8273] = {.lex_state = 373}, - [8274] = {.lex_state = 493}, - [8275] = {.lex_state = 373}, - [8276] = {.lex_state = 280}, - [8277] = {.lex_state = 798}, - [8278] = {.lex_state = 485}, - [8279] = {.lex_state = 438}, - [8280] = {.lex_state = 798}, - [8281] = {.lex_state = 798}, - [8282] = {.lex_state = 27}, - [8283] = {.lex_state = 798}, - [8284] = {.lex_state = 438}, - [8285] = {.lex_state = 476}, - [8286] = {.lex_state = 476}, - [8287] = {.lex_state = 373}, - [8288] = {.lex_state = 443}, - [8289] = {.lex_state = 485}, - [8290] = {.lex_state = 485}, - [8291] = {.lex_state = 454}, - [8292] = {.lex_state = 373}, - [8293] = {.lex_state = 64}, - [8294] = {.lex_state = 443}, - [8295] = {.lex_state = 386}, - [8296] = {.lex_state = 373}, - [8297] = {.lex_state = 485}, - [8298] = {.lex_state = 373}, - [8299] = {.lex_state = 27}, - [8300] = {.lex_state = 438}, - [8301] = {.lex_state = 283}, - [8302] = {.lex_state = 373}, - [8303] = {.lex_state = 438}, - [8304] = {.lex_state = 283}, - [8305] = {.lex_state = 485}, - [8306] = {.lex_state = 373}, - [8307] = {.lex_state = 944}, - [8308] = {.lex_state = 812}, - [8309] = {.lex_state = 373}, - [8310] = {.lex_state = 386}, - [8311] = {.lex_state = 798}, - [8312] = {.lex_state = 792}, - [8313] = {.lex_state = 798}, - [8314] = {.lex_state = 373}, - [8315] = {.lex_state = 386}, - [8316] = {.lex_state = 373}, - [8317] = {.lex_state = 952}, - [8318] = {.lex_state = 812}, - [8319] = {.lex_state = 398}, - [8320] = {.lex_state = 798}, - [8321] = {.lex_state = 798}, - [8322] = {.lex_state = 798}, - [8323] = {.lex_state = 798}, - [8324] = {.lex_state = 798}, - [8325] = {.lex_state = 798}, - [8326] = {.lex_state = 798}, - [8327] = {.lex_state = 798}, - [8328] = {.lex_state = 798}, - [8329] = {.lex_state = 798}, - [8330] = {.lex_state = 798}, - [8331] = {.lex_state = 798}, - [8332] = {.lex_state = 398}, - [8333] = {.lex_state = 798}, - [8334] = {.lex_state = 780}, - [8335] = {.lex_state = 398}, - [8336] = {.lex_state = 398}, - [8337] = {.lex_state = 798}, - [8338] = {.lex_state = 798}, - [8339] = {.lex_state = 798}, - [8340] = {.lex_state = 798}, - [8341] = {.lex_state = 477}, - [8342] = {.lex_state = 798}, - [8343] = {.lex_state = 373}, - [8344] = {.lex_state = 798}, - [8345] = {.lex_state = 798}, - [8346] = {.lex_state = 856}, - [8347] = {.lex_state = 373}, - [8348] = {.lex_state = 798}, - [8349] = {.lex_state = 398}, - [8350] = {.lex_state = 798}, - [8351] = {.lex_state = 798}, - [8352] = {.lex_state = 798}, - [8353] = {.lex_state = 798}, - [8354] = {.lex_state = 798}, - [8355] = {.lex_state = 798}, - [8356] = {.lex_state = 798}, - [8357] = {.lex_state = 798}, - [8358] = {.lex_state = 798}, - [8359] = {.lex_state = 373}, - [8360] = {.lex_state = 373}, - [8361] = {.lex_state = 398}, - [8362] = {.lex_state = 398}, - [8363] = {.lex_state = 798}, - [8364] = {.lex_state = 398}, - [8365] = {.lex_state = 496}, - [8366] = {.lex_state = 798}, - [8367] = {.lex_state = 373}, - [8368] = {.lex_state = 373}, - [8369] = {.lex_state = 812}, - [8370] = {.lex_state = 812}, - [8371] = {.lex_state = 798}, - [8372] = {.lex_state = 812}, - [8373] = {.lex_state = 812}, - [8374] = {.lex_state = 792}, - [8375] = {.lex_state = 798}, - [8376] = {.lex_state = 812}, - [8377] = {.lex_state = 798}, - [8378] = {.lex_state = 398}, - [8379] = {.lex_state = 812}, - [8380] = {.lex_state = 486}, - [8381] = {.lex_state = 812}, - [8382] = {.lex_state = 373}, - [8383] = {.lex_state = 798}, - [8384] = {.lex_state = 373}, - [8385] = {.lex_state = 398}, - [8386] = {.lex_state = 798}, - [8387] = {.lex_state = 786}, - [8388] = {.lex_state = 398}, - [8389] = {.lex_state = 398}, - [8390] = {.lex_state = 398}, - [8391] = {.lex_state = 398}, - [8392] = {.lex_state = 373}, - [8393] = {.lex_state = 477}, - [8394] = {.lex_state = 444}, - [8395] = {.lex_state = 398}, - [8396] = {.lex_state = 398}, - [8397] = {.lex_state = 786}, - [8398] = {.lex_state = 283}, - [8399] = {.lex_state = 444}, - [8400] = {.lex_state = 444}, - [8401] = {.lex_state = 444}, - [8402] = {.lex_state = 88}, - [8403] = {.lex_state = 864}, - [8404] = {.lex_state = 280}, - [8405] = {.lex_state = 389}, - [8406] = {.lex_state = 88}, - [8407] = {.lex_state = 88}, - [8408] = {.lex_state = 398}, - [8409] = {.lex_state = 812}, - [8410] = {.lex_state = 88}, - [8411] = {.lex_state = 477}, - [8412] = {.lex_state = 398}, - [8413] = {.lex_state = 398}, - [8414] = {.lex_state = 398}, - [8415] = {.lex_state = 398}, - [8416] = {.lex_state = 2022}, - [8417] = {.lex_state = 812}, - [8418] = {.lex_state = 812}, - [8419] = {.lex_state = 786}, - [8420] = {.lex_state = 398}, - [8421] = {.lex_state = 513}, - [8422] = {.lex_state = 474}, - [8423] = {.lex_state = 398}, - [8424] = {.lex_state = 798}, - [8425] = {.lex_state = 398}, - [8426] = {.lex_state = 477}, - [8427] = {.lex_state = 104}, - [8428] = {.lex_state = 444}, - [8429] = {.lex_state = 798}, - [8430] = {.lex_state = 373}, - [8431] = {.lex_state = 444}, - [8432] = {.lex_state = 398}, - [8433] = {.lex_state = 798}, - [8434] = {.lex_state = 798}, - [8435] = {.lex_state = 398}, - [8436] = {.lex_state = 2022}, - [8437] = {.lex_state = 398}, - [8438] = {.lex_state = 398}, - [8439] = {.lex_state = 477}, - [8440] = {.lex_state = 104}, - [8441] = {.lex_state = 474}, - [8442] = {.lex_state = 798}, - [8443] = {.lex_state = 798}, - [8444] = {.lex_state = 495}, - [8445] = {.lex_state = 283}, - [8446] = {.lex_state = 798}, - [8447] = {.lex_state = 398}, - [8448] = {.lex_state = 474}, - [8449] = {.lex_state = 124}, - [8450] = {.lex_state = 474}, - [8451] = {.lex_state = 2022}, - [8452] = {.lex_state = 474}, - [8453] = {.lex_state = 455}, - [8454] = {.lex_state = 398}, - [8455] = {.lex_state = 398}, - [8456] = {.lex_state = 283}, - [8457] = {.lex_state = 124}, - [8458] = {.lex_state = 798}, - [8459] = {.lex_state = 283}, - [8460] = {.lex_state = 948}, - [8461] = {.lex_state = 392}, - [8462] = {.lex_state = 455}, - [8463] = {.lex_state = 455}, - [8464] = {.lex_state = 798}, - [8465] = {.lex_state = 398}, - [8466] = {.lex_state = 398}, - [8467] = {.lex_state = 283}, - [8468] = {.lex_state = 398}, - [8469] = {.lex_state = 398}, - [8470] = {.lex_state = 455}, - [8471] = {.lex_state = 373}, - [8472] = {.lex_state = 398}, - [8473] = {.lex_state = 455}, - [8474] = {.lex_state = 398}, - [8475] = {.lex_state = 798}, - [8476] = {.lex_state = 283}, - [8477] = {.lex_state = 798}, - [8478] = {.lex_state = 398}, - [8479] = {.lex_state = 792}, - [8480] = {.lex_state = 444}, - [8481] = {.lex_state = 798}, - [8482] = {.lex_state = 283}, - [8483] = {.lex_state = 798}, - [8484] = {.lex_state = 798}, - [8485] = {.lex_state = 444}, - [8486] = {.lex_state = 798}, - [8487] = {.lex_state = 798}, - [8488] = {.lex_state = 438}, - [8489] = {.lex_state = 438}, - [8490] = {.lex_state = 398}, - [8491] = {.lex_state = 398}, - [8492] = {.lex_state = 487}, - [8493] = {.lex_state = 798}, - [8494] = {.lex_state = 398}, - [8495] = {.lex_state = 798}, - [8496] = {.lex_state = 280}, - [8497] = {.lex_state = 398}, - [8498] = {.lex_state = 398}, - [8499] = {.lex_state = 864}, - [8500] = {.lex_state = 798}, - [8501] = {.lex_state = 798}, - [8502] = {.lex_state = 798}, - [8503] = {.lex_state = 798}, - [8504] = {.lex_state = 792}, - [8505] = {.lex_state = 398}, - [8506] = {.lex_state = 280}, - [8507] = {.lex_state = 398}, - [8508] = {.lex_state = 792}, - [8509] = {.lex_state = 373}, - [8510] = {.lex_state = 373}, - [8511] = {.lex_state = 373}, - [8512] = {.lex_state = 373}, - [8513] = {.lex_state = 458}, - [8514] = {.lex_state = 398}, - [8515] = {.lex_state = 398}, - [8516] = {.lex_state = 458}, - [8517] = {.lex_state = 458}, - [8518] = {.lex_state = 398}, - [8519] = {.lex_state = 458}, - [8520] = {.lex_state = 398}, - [8521] = {.lex_state = 398}, - [8522] = {.lex_state = 283}, - [8523] = {.lex_state = 458}, - [8524] = {.lex_state = 398}, - [8525] = {.lex_state = 283}, - [8526] = {.lex_state = 283}, - [8527] = {.lex_state = 798}, - [8528] = {.lex_state = 398}, - [8529] = {.lex_state = 283}, - [8530] = {.lex_state = 280}, - [8531] = {.lex_state = 398}, - [8532] = {.lex_state = 501}, - [8533] = {.lex_state = 957}, - [8534] = {.lex_state = 501}, - [8535] = {.lex_state = 398}, - [8536] = {.lex_state = 398}, - [8537] = {.lex_state = 398}, - [8538] = {.lex_state = 398}, - [8539] = {.lex_state = 501}, - [8540] = {.lex_state = 398}, - [8541] = {.lex_state = 283}, - [8542] = {.lex_state = 398}, - [8543] = {.lex_state = 398}, - [8544] = {.lex_state = 436}, - [8545] = {.lex_state = 398}, - [8546] = {.lex_state = 501}, - [8547] = {.lex_state = 786}, - [8548] = {.lex_state = 398}, - [8549] = {.lex_state = 398}, - [8550] = {.lex_state = 373}, - [8551] = {.lex_state = 398}, - [8552] = {.lex_state = 398}, - [8553] = {.lex_state = 398}, - [8554] = {.lex_state = 398}, - [8555] = {.lex_state = 283}, - [8556] = {.lex_state = 398}, - [8557] = {.lex_state = 500}, - [8558] = {.lex_state = 500}, - [8559] = {.lex_state = 500}, - [8560] = {.lex_state = 398}, - [8561] = {.lex_state = 501}, - [8562] = {.lex_state = 500}, - [8563] = {.lex_state = 500}, - [8564] = {.lex_state = 398}, - [8565] = {.lex_state = 283}, - [8566] = {.lex_state = 283}, - [8567] = {.lex_state = 398}, - [8568] = {.lex_state = 280}, - [8569] = {.lex_state = 486}, - [8570] = {.lex_state = 398}, - [8571] = {.lex_state = 398}, - [8572] = {.lex_state = 864}, - [8573] = {.lex_state = 792}, - [8574] = {.lex_state = 398}, - [8575] = {.lex_state = 373}, - [8576] = {.lex_state = 495}, - [8577] = {.lex_state = 495}, - [8578] = {.lex_state = 398}, - [8579] = {.lex_state = 373}, - [8580] = {.lex_state = 283}, - [8581] = {.lex_state = 495}, - [8582] = {.lex_state = 373}, - [8583] = {.lex_state = 373}, - [8584] = {.lex_state = 495}, - [8585] = {.lex_state = 438}, - [8586] = {.lex_state = 438}, - [8587] = {.lex_state = 812}, - [8588] = {.lex_state = 414}, - [8589] = {.lex_state = 543}, - [8590] = {.lex_state = 373}, - [8591] = {.lex_state = 543}, - [8592] = {.lex_state = 543}, - [8593] = {.lex_state = 390}, - [8594] = {.lex_state = 543}, - [8595] = {.lex_state = 468}, - [8596] = {.lex_state = 543}, - [8597] = {.lex_state = 373}, - [8598] = {.lex_state = 373}, - [8599] = {.lex_state = 543}, - [8600] = {.lex_state = 527}, - [8601] = {.lex_state = 390}, - [8602] = {.lex_state = 543}, - [8603] = {.lex_state = 543}, - [8604] = {.lex_state = 543}, - [8605] = {.lex_state = 390}, - [8606] = {.lex_state = 373}, - [8607] = {.lex_state = 373}, - [8608] = {.lex_state = 390}, - [8609] = {.lex_state = 373}, - [8610] = {.lex_state = 390}, - [8611] = {.lex_state = 390}, - [8612] = {.lex_state = 543}, - [8613] = {.lex_state = 543}, - [8614] = {.lex_state = 543}, - [8615] = {.lex_state = 812}, - [8616] = {.lex_state = 543}, - [8617] = {.lex_state = 543}, - [8618] = {.lex_state = 390}, - [8619] = {.lex_state = 543}, - [8620] = {.lex_state = 543}, - [8621] = {.lex_state = 543}, - [8622] = {.lex_state = 390}, - [8623] = {.lex_state = 373}, - [8624] = {.lex_state = 390}, - [8625] = {.lex_state = 948}, - [8626] = {.lex_state = 543}, - [8627] = {.lex_state = 451}, - [8628] = {.lex_state = 390}, - [8629] = {.lex_state = 543}, - [8630] = {.lex_state = 283}, - [8631] = {.lex_state = 373}, - [8632] = {.lex_state = 390}, - [8633] = {.lex_state = 438}, - [8634] = {.lex_state = 543}, - [8635] = {.lex_state = 390}, - [8636] = {.lex_state = 390}, - [8637] = {.lex_state = 390}, - [8638] = {.lex_state = 390}, - [8639] = {.lex_state = 390}, - [8640] = {.lex_state = 414}, - [8641] = {.lex_state = 390}, - [8642] = {.lex_state = 390}, - [8643] = {.lex_state = 390}, - [8644] = {.lex_state = 390}, - [8645] = {.lex_state = 468}, - [8646] = {.lex_state = 390}, - [8647] = {.lex_state = 390}, - [8648] = {.lex_state = 390}, - [8649] = {.lex_state = 390}, - [8650] = {.lex_state = 543}, - [8651] = {.lex_state = 468}, - [8652] = {.lex_state = 812}, - [8653] = {.lex_state = 543}, - [8654] = {.lex_state = 812}, - [8655] = {.lex_state = 414}, - [8656] = {.lex_state = 414}, - [8657] = {.lex_state = 390}, - [8658] = {.lex_state = 543}, - [8659] = {.lex_state = 812}, - [8660] = {.lex_state = 812}, - [8661] = {.lex_state = 543}, - [8662] = {.lex_state = 124}, - [8663] = {.lex_state = 27}, - [8664] = {.lex_state = 27}, - [8665] = {.lex_state = 27}, - [8666] = {.lex_state = 27}, - [8667] = {.lex_state = 373}, - [8668] = {.lex_state = 543}, - [8669] = {.lex_state = 414}, - [8670] = {.lex_state = 414}, - [8671] = {.lex_state = 460}, - [8672] = {.lex_state = 373}, - [8673] = {.lex_state = 373}, - [8674] = {.lex_state = 27}, - [8675] = {.lex_state = 27}, - [8676] = {.lex_state = 88}, - [8677] = {.lex_state = 373}, - [8678] = {.lex_state = 373}, - [8679] = {.lex_state = 373}, - [8680] = {.lex_state = 373}, - [8681] = {.lex_state = 786}, - [8682] = {.lex_state = 373}, - [8683] = {.lex_state = 373}, - [8684] = {.lex_state = 459}, - [8685] = {.lex_state = 390}, - [8686] = {.lex_state = 478}, - [8687] = {.lex_state = 543}, - [8688] = {.lex_state = 373}, - [8689] = {.lex_state = 373}, - [8690] = {.lex_state = 543}, - [8691] = {.lex_state = 543}, - [8692] = {.lex_state = 373}, - [8693] = {.lex_state = 373}, - [8694] = {.lex_state = 373}, - [8695] = {.lex_state = 373}, - [8696] = {.lex_state = 373}, - [8697] = {.lex_state = 373}, - [8698] = {.lex_state = 64}, - [8699] = {.lex_state = 373}, - [8700] = {.lex_state = 373}, - [8701] = {.lex_state = 373}, - [8702] = {.lex_state = 373}, - [8703] = {.lex_state = 64}, - [8704] = {.lex_state = 543}, - [8705] = {.lex_state = 373}, - [8706] = {.lex_state = 64}, - [8707] = {.lex_state = 390}, - [8708] = {.lex_state = 373}, - [8709] = {.lex_state = 64}, - [8710] = {.lex_state = 414}, - [8711] = {.lex_state = 373}, - [8712] = {.lex_state = 373}, - [8713] = {.lex_state = 373}, - [8714] = {.lex_state = 390}, - [8715] = {.lex_state = 373}, - [8716] = {.lex_state = 373}, - [8717] = {.lex_state = 543}, - [8718] = {.lex_state = 373}, - [8719] = {.lex_state = 373}, - [8720] = {.lex_state = 373}, - [8721] = {.lex_state = 543}, - [8722] = {.lex_state = 373}, - [8723] = {.lex_state = 373}, - [8724] = {.lex_state = 373}, - [8725] = {.lex_state = 373}, - [8726] = {.lex_state = 373}, - [8727] = {.lex_state = 373}, - [8728] = {.lex_state = 373}, - [8729] = {.lex_state = 373}, - [8730] = {.lex_state = 373}, - [8731] = {.lex_state = 373}, - [8732] = {.lex_state = 373}, - [8733] = {.lex_state = 812}, - [8734] = {.lex_state = 373}, - [8735] = {.lex_state = 373}, - [8736] = {.lex_state = 373}, - [8737] = {.lex_state = 373}, - [8738] = {.lex_state = 373}, - [8739] = {.lex_state = 373}, - [8740] = {.lex_state = 373}, - [8741] = {.lex_state = 373}, - [8742] = {.lex_state = 373}, - [8743] = {.lex_state = 390}, - [8744] = {.lex_state = 812}, - [8745] = {.lex_state = 543}, - [8746] = {.lex_state = 56}, - [8747] = {.lex_state = 56}, - [8748] = {.lex_state = 502}, - [8749] = {.lex_state = 438}, - [8750] = {.lex_state = 283}, - [8751] = {.lex_state = 812}, - [8752] = {.lex_state = 812}, - [8753] = {.lex_state = 543}, - [8754] = {.lex_state = 812}, - [8755] = {.lex_state = 812}, - [8756] = {.lex_state = 478}, - [8757] = {.lex_state = 812}, - [8758] = {.lex_state = 812}, - [8759] = {.lex_state = 812}, - [8760] = {.lex_state = 543}, - [8761] = {.lex_state = 812}, - [8762] = {.lex_state = 786}, - [8763] = {.lex_state = 812}, - [8764] = {.lex_state = 390}, - [8765] = {.lex_state = 812}, - [8766] = {.lex_state = 543}, - [8767] = {.lex_state = 812}, - [8768] = {.lex_state = 543}, - [8769] = {.lex_state = 812}, - [8770] = {.lex_state = 812}, - [8771] = {.lex_state = 812}, - [8772] = {.lex_state = 812}, - [8773] = {.lex_state = 543}, - [8774] = {.lex_state = 812}, - [8775] = {.lex_state = 812}, - [8776] = {.lex_state = 390}, - [8777] = {.lex_state = 812}, - [8778] = {.lex_state = 812}, - [8779] = {.lex_state = 414}, - [8780] = {.lex_state = 812}, - [8781] = {.lex_state = 812}, - [8782] = {.lex_state = 812}, - [8783] = {.lex_state = 812}, - [8784] = {.lex_state = 812}, - [8785] = {.lex_state = 812}, - [8786] = {.lex_state = 812}, - [8787] = {.lex_state = 812}, - [8788] = {.lex_state = 812}, - [8789] = {.lex_state = 812}, - [8790] = {.lex_state = 812}, - [8791] = {.lex_state = 812}, - [8792] = {.lex_state = 812}, - [8793] = {.lex_state = 390}, - [8794] = {.lex_state = 414}, - [8795] = {.lex_state = 812}, - [8796] = {.lex_state = 543}, - [8797] = {.lex_state = 812}, - [8798] = {.lex_state = 543}, - [8799] = {.lex_state = 2031}, - [8800] = {.lex_state = 812}, - [8801] = {.lex_state = 459}, - [8802] = {.lex_state = 812}, - [8803] = {.lex_state = 812}, - [8804] = {.lex_state = 468}, - [8805] = {.lex_state = 786}, - [8806] = {.lex_state = 812}, - [8807] = {.lex_state = 373}, - [8808] = {.lex_state = 812}, - [8809] = {.lex_state = 812}, - [8810] = {.lex_state = 812}, - [8811] = {.lex_state = 373}, - [8812] = {.lex_state = 56}, - [8813] = {.lex_state = 812}, - [8814] = {.lex_state = 373}, - [8815] = {.lex_state = 414}, - [8816] = {.lex_state = 812}, - [8817] = {.lex_state = 812}, - [8818] = {.lex_state = 373}, - [8819] = {.lex_state = 414}, - [8820] = {.lex_state = 856}, - [8821] = {.lex_state = 283}, - [8822] = {.lex_state = 812}, - [8823] = {.lex_state = 390}, - [8824] = {.lex_state = 812}, - [8825] = {.lex_state = 543}, - [8826] = {.lex_state = 414}, - [8827] = {.lex_state = 812}, - [8828] = {.lex_state = 543}, - [8829] = {.lex_state = 812}, - [8830] = {.lex_state = 812}, - [8831] = {.lex_state = 812}, - [8832] = {.lex_state = 812}, - [8833] = {.lex_state = 390}, - [8834] = {.lex_state = 812}, - [8835] = {.lex_state = 543}, - [8836] = {.lex_state = 812}, - [8837] = {.lex_state = 543}, - [8838] = {.lex_state = 812}, - [8839] = {.lex_state = 56}, - [8840] = {.lex_state = 812}, - [8841] = {.lex_state = 543}, - [8842] = {.lex_state = 812}, - [8843] = {.lex_state = 812}, - [8844] = {.lex_state = 390}, - [8845] = {.lex_state = 786}, - [8846] = {.lex_state = 812}, - [8847] = {.lex_state = 414}, - [8848] = {.lex_state = 812}, - [8849] = {.lex_state = 812}, - [8850] = {.lex_state = 812}, - [8851] = {.lex_state = 543}, - [8852] = {.lex_state = 812}, - [8853] = {.lex_state = 812}, - [8854] = {.lex_state = 812}, - [8855] = {.lex_state = 283}, - [8856] = {.lex_state = 812}, - [8857] = {.lex_state = 812}, - [8858] = {.lex_state = 390}, - [8859] = {.lex_state = 812}, - [8860] = {.lex_state = 543}, - [8861] = {.lex_state = 812}, - [8862] = {.lex_state = 812}, - [8863] = {.lex_state = 812}, - [8864] = {.lex_state = 373}, - [8865] = {.lex_state = 543}, - [8866] = {.lex_state = 812}, - [8867] = {.lex_state = 812}, - [8868] = {.lex_state = 401}, - [8869] = {.lex_state = 460}, - [8870] = {.lex_state = 812}, - [8871] = {.lex_state = 812}, - [8872] = {.lex_state = 438}, - [8873] = {.lex_state = 438}, - [8874] = {.lex_state = 373}, - [8875] = {.lex_state = 414}, - [8876] = {.lex_state = 373}, - [8877] = {.lex_state = 812}, - [8878] = {.lex_state = 373}, - [8879] = {.lex_state = 373}, - [8880] = {.lex_state = 373}, - [8881] = {.lex_state = 812}, - [8882] = {.lex_state = 812}, - [8883] = {.lex_state = 812}, - [8884] = {.lex_state = 812}, - [8885] = {.lex_state = 812}, - [8886] = {.lex_state = 373}, - [8887] = {.lex_state = 812}, - [8888] = {.lex_state = 812}, - [8889] = {.lex_state = 812}, - [8890] = {.lex_state = 812}, - [8891] = {.lex_state = 373}, - [8892] = {.lex_state = 812}, - [8893] = {.lex_state = 812}, - [8894] = {.lex_state = 373}, - [8895] = {.lex_state = 812}, - [8896] = {.lex_state = 543}, - [8897] = {.lex_state = 438}, - [8898] = {.lex_state = 390}, - [8899] = {.lex_state = 438}, - [8900] = {.lex_state = 438}, - [8901] = {.lex_state = 438}, - [8902] = {.lex_state = 812}, - [8903] = {.lex_state = 390}, - [8904] = {.lex_state = 481}, - [8905] = {.lex_state = 543}, - [8906] = {.lex_state = 479}, - [8907] = {.lex_state = 543}, - [8908] = {.lex_state = 543}, - [8909] = {.lex_state = 786}, - [8910] = {.lex_state = 414}, - [8911] = {.lex_state = 390}, - [8912] = {.lex_state = 812}, - [8913] = {.lex_state = 812}, - [8914] = {.lex_state = 414}, - [8915] = {.lex_state = 812}, - [8916] = {.lex_state = 812}, - [8917] = {.lex_state = 812}, - [8918] = {.lex_state = 812}, - [8919] = {.lex_state = 812}, - [8920] = {.lex_state = 812}, - [8921] = {.lex_state = 812}, - [8922] = {.lex_state = 812}, - [8923] = {.lex_state = 283}, - [8924] = {.lex_state = 283}, - [8925] = {.lex_state = 812}, - [8926] = {.lex_state = 812}, - [8927] = {.lex_state = 812}, - [8928] = {.lex_state = 812}, - [8929] = {.lex_state = 414}, - [8930] = {.lex_state = 812}, - [8931] = {.lex_state = 414}, - [8932] = {.lex_state = 812}, - [8933] = {.lex_state = 390}, - [8934] = {.lex_state = 414}, - [8935] = {.lex_state = 543}, - [8936] = {.lex_state = 812}, - [8937] = {.lex_state = 373}, - [8938] = {.lex_state = 414}, - [8939] = {.lex_state = 414}, - [8940] = {.lex_state = 812}, - [8941] = {.lex_state = 543}, - [8942] = {.lex_state = 812}, - [8943] = {.lex_state = 812}, - [8944] = {.lex_state = 414}, - [8945] = {.lex_state = 812}, - [8946] = {.lex_state = 390}, - [8947] = {.lex_state = 812}, - [8948] = {.lex_state = 414}, - [8949] = {.lex_state = 812}, - [8950] = {.lex_state = 812}, - [8951] = {.lex_state = 503}, - [8952] = {.lex_state = 414}, - [8953] = {.lex_state = 812}, - [8954] = {.lex_state = 373}, - [8955] = {.lex_state = 780}, - [8956] = {.lex_state = 438}, - [8957] = {.lex_state = 414}, - [8958] = {.lex_state = 812}, - [8959] = {.lex_state = 812}, - [8960] = {.lex_state = 812}, - [8961] = {.lex_state = 414}, - [8962] = {.lex_state = 812}, - [8963] = {.lex_state = 543}, - [8964] = {.lex_state = 812}, - [8965] = {.lex_state = 812}, - [8966] = {.lex_state = 414}, - [8967] = {.lex_state = 414}, - [8968] = {.lex_state = 390}, - [8969] = {.lex_state = 812}, - [8970] = {.lex_state = 543}, - [8971] = {.lex_state = 414}, - [8972] = {.lex_state = 438}, - [8973] = {.lex_state = 414}, - [8974] = {.lex_state = 543}, - [8975] = {.lex_state = 543}, - [8976] = {.lex_state = 812}, - [8977] = {.lex_state = 436}, - [8978] = {.lex_state = 390}, - [8979] = {.lex_state = 414}, - [8980] = {.lex_state = 414}, - [8981] = {.lex_state = 414}, - [8982] = {.lex_state = 812}, - [8983] = {.lex_state = 436}, - [8984] = {.lex_state = 414}, - [8985] = {.lex_state = 373}, - [8986] = {.lex_state = 414}, - [8987] = {.lex_state = 812}, - [8988] = {.lex_state = 812}, - [8989] = {.lex_state = 812}, - [8990] = {.lex_state = 438}, - [8991] = {.lex_state = 812}, - [8992] = {.lex_state = 414}, - [8993] = {.lex_state = 812}, - [8994] = {.lex_state = 414}, - [8995] = {.lex_state = 812}, - [8996] = {.lex_state = 812}, - [8997] = {.lex_state = 414}, - [8998] = {.lex_state = 812}, - [8999] = {.lex_state = 812}, - [9000] = {.lex_state = 812}, - [9001] = {.lex_state = 414}, - [9002] = {.lex_state = 812}, - [9003] = {.lex_state = 414}, - [9004] = {.lex_state = 514}, - [9005] = {.lex_state = 414}, - [9006] = {.lex_state = 414}, - [9007] = {.lex_state = 812}, - [9008] = {.lex_state = 414}, - [9009] = {.lex_state = 414}, - [9010] = {.lex_state = 780}, - [9011] = {.lex_state = 414}, - [9012] = {.lex_state = 786}, - [9013] = {.lex_state = 812}, - [9014] = {.lex_state = 390}, - [9015] = {.lex_state = 812}, - [9016] = {.lex_state = 414}, - [9017] = {.lex_state = 812}, - [9018] = {.lex_state = 414}, - [9019] = {.lex_state = 543}, - [9020] = {.lex_state = 283}, - [9021] = {.lex_state = 414}, - [9022] = {.lex_state = 543}, - [9023] = {.lex_state = 124}, - [9024] = {.lex_state = 786}, - [9025] = {.lex_state = 414}, - [9026] = {.lex_state = 786}, - [9027] = {.lex_state = 812}, - [9028] = {.lex_state = 480}, - [9029] = {.lex_state = 812}, - [9030] = {.lex_state = 543}, - [9031] = {.lex_state = 414}, - [9032] = {.lex_state = 812}, - [9033] = {.lex_state = 812}, - [9034] = {.lex_state = 414}, - [9035] = {.lex_state = 414}, - [9036] = {.lex_state = 543}, - [9037] = {.lex_state = 414}, - [9038] = {.lex_state = 812}, - [9039] = {.lex_state = 414}, - [9040] = {.lex_state = 812}, - [9041] = {.lex_state = 414}, - [9042] = {.lex_state = 543}, - [9043] = {.lex_state = 414}, - [9044] = {.lex_state = 390}, - [9045] = {.lex_state = 390}, - [9046] = {.lex_state = 414}, - [9047] = {.lex_state = 543}, - [9048] = {.lex_state = 414}, - [9049] = {.lex_state = 812}, - [9050] = {.lex_state = 812}, - [9051] = {.lex_state = 543}, - [9052] = {.lex_state = 812}, - [9053] = {.lex_state = 503}, - [9054] = {.lex_state = 812}, - [9055] = {.lex_state = 812}, - [9056] = {.lex_state = 283}, - [9057] = {.lex_state = 812}, - [9058] = {.lex_state = 812}, - [9059] = {.lex_state = 283}, - [9060] = {.lex_state = 812}, - [9061] = {.lex_state = 812}, - [9062] = {.lex_state = 812}, - [9063] = {.lex_state = 812}, - [9064] = {.lex_state = 812}, - [9065] = {.lex_state = 812}, - [9066] = {.lex_state = 812}, - [9067] = {.lex_state = 812}, - [9068] = {.lex_state = 812}, - [9069] = {.lex_state = 812}, - [9070] = {.lex_state = 812}, - [9071] = {.lex_state = 812}, - [9072] = {.lex_state = 812}, - [9073] = {.lex_state = 812}, - [9074] = {.lex_state = 812}, - [9075] = {.lex_state = 812}, - [9076] = {.lex_state = 468}, - [9077] = {.lex_state = 812}, - [9078] = {.lex_state = 250}, - [9079] = {.lex_state = 812}, - [9080] = {.lex_state = 812}, - [9081] = {.lex_state = 414}, - [9082] = {.lex_state = 812}, - [9083] = {.lex_state = 812}, - [9084] = {.lex_state = 390}, - [9085] = {.lex_state = 812}, - [9086] = {.lex_state = 543}, - [9087] = {.lex_state = 812}, - [9088] = {.lex_state = 124}, - [9089] = {.lex_state = 543}, - [9090] = {.lex_state = 812}, - [9091] = {.lex_state = 812}, - [9092] = {.lex_state = 812}, - [9093] = {.lex_state = 812}, - [9094] = {.lex_state = 786}, - [9095] = {.lex_state = 812}, - [9096] = {.lex_state = 438}, - [9097] = {.lex_state = 543}, - [9098] = {.lex_state = 864}, - [9099] = {.lex_state = 438}, - [9100] = {.lex_state = 438}, - [9101] = {.lex_state = 438}, - [9102] = {.lex_state = 812}, - [9103] = {.lex_state = 786}, - [9104] = {.lex_state = 812}, - [9105] = {.lex_state = 812}, - [9106] = {.lex_state = 812}, - [9107] = {.lex_state = 503}, - [9108] = {.lex_state = 812}, - [9109] = {.lex_state = 543}, - [9110] = {.lex_state = 503}, - [9111] = {.lex_state = 812}, - [9112] = {.lex_state = 390}, - [9113] = {.lex_state = 812}, - [9114] = {.lex_state = 864}, - [9115] = {.lex_state = 414}, - [9116] = {.lex_state = 812}, - [9117] = {.lex_state = 812}, - [9118] = {.lex_state = 414}, - [9119] = {.lex_state = 390}, - [9120] = {.lex_state = 812}, - [9121] = {.lex_state = 414}, - [9122] = {.lex_state = 503}, - [9123] = {.lex_state = 543}, - [9124] = {.lex_state = 283}, - [9125] = {.lex_state = 414}, - [9126] = {.lex_state = 543}, - [9127] = {.lex_state = 88}, - [9128] = {.lex_state = 88}, - [9129] = {.lex_state = 957}, - [9130] = {.lex_state = 88}, - [9131] = {.lex_state = 88}, - [9132] = {.lex_state = 88}, - [9133] = {.lex_state = 497}, - [9134] = {.lex_state = 462}, - [9135] = {.lex_state = 502}, - [9136] = {.lex_state = 88}, - [9137] = {.lex_state = 414}, - [9138] = {.lex_state = 414}, - [9139] = {.lex_state = 502}, - [9140] = {.lex_state = 414}, - [9141] = {.lex_state = 414}, - [9142] = {.lex_state = 502}, - [9143] = {.lex_state = 414}, - [9144] = {.lex_state = 414}, - [9145] = {.lex_state = 502}, - [9146] = {.lex_state = 414}, - [9147] = {.lex_state = 414}, - [9148] = {.lex_state = 414}, - [9149] = {.lex_state = 414}, - [9150] = {.lex_state = 414}, - [9151] = {.lex_state = 414}, - [9152] = {.lex_state = 786}, - [9153] = {.lex_state = 414}, - [9154] = {.lex_state = 414}, - [9155] = {.lex_state = 390}, - [9156] = {.lex_state = 414}, - [9157] = {.lex_state = 543}, - [9158] = {.lex_state = 414}, - [9159] = {.lex_state = 414}, - [9160] = {.lex_state = 543}, - [9161] = {.lex_state = 543}, - [9162] = {.lex_state = 464}, - [9163] = {.lex_state = 414}, - [9164] = {.lex_state = 543}, - [9165] = {.lex_state = 414}, - [9166] = {.lex_state = 812}, - [9167] = {.lex_state = 812}, - [9168] = {.lex_state = 414}, - [9169] = {.lex_state = 414}, - [9170] = {.lex_state = 414}, - [9171] = {.lex_state = 438}, - [9172] = {.lex_state = 414}, - [9173] = {.lex_state = 438}, - [9174] = {.lex_state = 414}, - [9175] = {.lex_state = 373}, - [9176] = {.lex_state = 543}, - [9177] = {.lex_state = 438}, - [9178] = {.lex_state = 414}, - [9179] = {.lex_state = 132}, - [9180] = {.lex_state = 812}, - [9181] = {.lex_state = 132}, - [9182] = {.lex_state = 397}, - [9183] = {.lex_state = 812}, - [9184] = {.lex_state = 0}, - [9185] = {.lex_state = 397}, - [9186] = {.lex_state = 520}, - [9187] = {.lex_state = 0}, - [9188] = {.lex_state = 468}, + [8181] = {.lex_state = 374}, + [8182] = {.lex_state = 799}, + [8183] = {.lex_state = 799}, + [8184] = {.lex_state = 799}, + [8185] = {.lex_state = 455}, + [8186] = {.lex_state = 799}, + [8187] = {.lex_state = 284}, + [8188] = {.lex_state = 799}, + [8189] = {.lex_state = 799}, + [8190] = {.lex_state = 799}, + [8191] = {.lex_state = 799}, + [8192] = {.lex_state = 284}, + [8193] = {.lex_state = 374}, + [8194] = {.lex_state = 500}, + [8195] = {.lex_state = 284}, + [8196] = {.lex_state = 799}, + [8197] = {.lex_state = 799}, + [8198] = {.lex_state = 799}, + [8199] = {.lex_state = 374}, + [8200] = {.lex_state = 799}, + [8201] = {.lex_state = 444}, + [8202] = {.lex_state = 799}, + [8203] = {.lex_state = 799}, + [8204] = {.lex_state = 799}, + [8205] = {.lex_state = 439}, + [8206] = {.lex_state = 799}, + [8207] = {.lex_state = 799}, + [8208] = {.lex_state = 387}, + [8209] = {.lex_state = 374}, + [8210] = {.lex_state = 27}, + [8211] = {.lex_state = 499}, + [8212] = {.lex_state = 284}, + [8213] = {.lex_state = 374}, + [8214] = {.lex_state = 799}, + [8215] = {.lex_state = 799}, + [8216] = {.lex_state = 799}, + [8217] = {.lex_state = 813}, + [8218] = {.lex_state = 799}, + [8219] = {.lex_state = 799}, + [8220] = {.lex_state = 799}, + [8221] = {.lex_state = 799}, + [8222] = {.lex_state = 799}, + [8223] = {.lex_state = 799}, + [8224] = {.lex_state = 799}, + [8225] = {.lex_state = 799}, + [8226] = {.lex_state = 799}, + [8227] = {.lex_state = 799}, + [8228] = {.lex_state = 799}, + [8229] = {.lex_state = 799}, + [8230] = {.lex_state = 799}, + [8231] = {.lex_state = 799}, + [8232] = {.lex_state = 799}, + [8233] = {.lex_state = 799}, + [8234] = {.lex_state = 799}, + [8235] = {.lex_state = 799}, + [8236] = {.lex_state = 439}, + [8237] = {.lex_state = 374}, + [8238] = {.lex_state = 813}, + [8239] = {.lex_state = 374}, + [8240] = {.lex_state = 444}, + [8241] = {.lex_state = 821}, + [8242] = {.lex_state = 88}, + [8243] = {.lex_state = 88}, + [8244] = {.lex_state = 374}, + [8245] = {.lex_state = 374}, + [8246] = {.lex_state = 88}, + [8247] = {.lex_state = 387}, + [8248] = {.lex_state = 949}, + [8249] = {.lex_state = 88}, + [8250] = {.lex_state = 813}, + [8251] = {.lex_state = 374}, + [8252] = {.lex_state = 439}, + [8253] = {.lex_state = 374}, + [8254] = {.lex_state = 813}, + [8255] = {.lex_state = 799}, + [8256] = {.lex_state = 813}, + [8257] = {.lex_state = 88}, + [8258] = {.lex_state = 495}, + [8259] = {.lex_state = 439}, + [8260] = {.lex_state = 374}, + [8261] = {.lex_state = 477}, + [8262] = {.lex_state = 284}, + [8263] = {.lex_state = 813}, + [8264] = {.lex_state = 374}, + [8265] = {.lex_state = 477}, + [8266] = {.lex_state = 387}, + [8267] = {.lex_state = 439}, + [8268] = {.lex_state = 387}, + [8269] = {.lex_state = 374}, + [8270] = {.lex_state = 284}, + [8271] = {.lex_state = 813}, + [8272] = {.lex_state = 813}, + [8273] = {.lex_state = 799}, + [8274] = {.lex_state = 280}, + [8275] = {.lex_state = 799}, + [8276] = {.lex_state = 284}, + [8277] = {.lex_state = 374}, + [8278] = {.lex_state = 474}, + [8279] = {.lex_state = 284}, + [8280] = {.lex_state = 64}, + [8281] = {.lex_state = 813}, + [8282] = {.lex_state = 799}, + [8283] = {.lex_state = 799}, + [8284] = {.lex_state = 387}, + [8285] = {.lex_state = 477}, + [8286] = {.lex_state = 374}, + [8287] = {.lex_state = 821}, + [8288] = {.lex_state = 813}, + [8289] = {.lex_state = 955}, + [8290] = {.lex_state = 495}, + [8291] = {.lex_state = 280}, + [8292] = {.lex_state = 284}, + [8293] = {.lex_state = 799}, + [8294] = {.lex_state = 374}, + [8295] = {.lex_state = 374}, + [8296] = {.lex_state = 799}, + [8297] = {.lex_state = 793}, + [8298] = {.lex_state = 374}, + [8299] = {.lex_state = 474}, + [8300] = {.lex_state = 799}, + [8301] = {.lex_state = 374}, + [8302] = {.lex_state = 88}, + [8303] = {.lex_state = 88}, + [8304] = {.lex_state = 439}, + [8305] = {.lex_state = 865}, + [8306] = {.lex_state = 374}, + [8307] = {.lex_state = 374}, + [8308] = {.lex_state = 281}, + [8309] = {.lex_state = 477}, + [8310] = {.lex_state = 443}, + [8311] = {.lex_state = 799}, + [8312] = {.lex_state = 88}, + [8313] = {.lex_state = 374}, + [8314] = {.lex_state = 458}, + [8315] = {.lex_state = 813}, + [8316] = {.lex_state = 813}, + [8317] = {.lex_state = 486}, + [8318] = {.lex_state = 957}, + [8319] = {.lex_state = 399}, + [8320] = {.lex_state = 496}, + [8321] = {.lex_state = 787}, + [8322] = {.lex_state = 284}, + [8323] = {.lex_state = 478}, + [8324] = {.lex_state = 501}, + [8325] = {.lex_state = 399}, + [8326] = {.lex_state = 399}, + [8327] = {.lex_state = 501}, + [8328] = {.lex_state = 799}, + [8329] = {.lex_state = 374}, + [8330] = {.lex_state = 284}, + [8331] = {.lex_state = 399}, + [8332] = {.lex_state = 813}, + [8333] = {.lex_state = 459}, + [8334] = {.lex_state = 799}, + [8335] = {.lex_state = 399}, + [8336] = {.lex_state = 487}, + [8337] = {.lex_state = 456}, + [8338] = {.lex_state = 793}, + [8339] = {.lex_state = 399}, + [8340] = {.lex_state = 437}, + [8341] = {.lex_state = 374}, + [8342] = {.lex_state = 399}, + [8343] = {.lex_state = 496}, + [8344] = {.lex_state = 459}, + [8345] = {.lex_state = 374}, + [8346] = {.lex_state = 281}, + [8347] = {.lex_state = 399}, + [8348] = {.lex_state = 799}, + [8349] = {.lex_state = 799}, + [8350] = {.lex_state = 813}, + [8351] = {.lex_state = 399}, + [8352] = {.lex_state = 496}, + [8353] = {.lex_state = 374}, + [8354] = {.lex_state = 799}, + [8355] = {.lex_state = 399}, + [8356] = {.lex_state = 799}, + [8357] = {.lex_state = 456}, + [8358] = {.lex_state = 374}, + [8359] = {.lex_state = 799}, + [8360] = {.lex_state = 502}, + [8361] = {.lex_state = 799}, + [8362] = {.lex_state = 284}, + [8363] = {.lex_state = 284}, + [8364] = {.lex_state = 399}, + [8365] = {.lex_state = 787}, + [8366] = {.lex_state = 799}, + [8367] = {.lex_state = 813}, + [8368] = {.lex_state = 374}, + [8369] = {.lex_state = 374}, + [8370] = {.lex_state = 399}, + [8371] = {.lex_state = 793}, + [8372] = {.lex_state = 799}, + [8373] = {.lex_state = 799}, + [8374] = {.lex_state = 799}, + [8375] = {.lex_state = 399}, + [8376] = {.lex_state = 399}, + [8377] = {.lex_state = 374}, + [8378] = {.lex_state = 399}, + [8379] = {.lex_state = 374}, + [8380] = {.lex_state = 475}, + [8381] = {.lex_state = 399}, + [8382] = {.lex_state = 374}, + [8383] = {.lex_state = 399}, + [8384] = {.lex_state = 799}, + [8385] = {.lex_state = 445}, + [8386] = {.lex_state = 399}, + [8387] = {.lex_state = 799}, + [8388] = {.lex_state = 501}, + [8389] = {.lex_state = 284}, + [8390] = {.lex_state = 459}, + [8391] = {.lex_state = 2023}, + [8392] = {.lex_state = 399}, + [8393] = {.lex_state = 799}, + [8394] = {.lex_state = 374}, + [8395] = {.lex_state = 374}, + [8396] = {.lex_state = 793}, + [8397] = {.lex_state = 459}, + [8398] = {.lex_state = 399}, + [8399] = {.lex_state = 399}, + [8400] = {.lex_state = 399}, + [8401] = {.lex_state = 478}, + [8402] = {.lex_state = 799}, + [8403] = {.lex_state = 399}, + [8404] = {.lex_state = 799}, + [8405] = {.lex_state = 399}, + [8406] = {.lex_state = 284}, + [8407] = {.lex_state = 439}, + [8408] = {.lex_state = 399}, + [8409] = {.lex_state = 399}, + [8410] = {.lex_state = 799}, + [8411] = {.lex_state = 374}, + [8412] = {.lex_state = 399}, + [8413] = {.lex_state = 399}, + [8414] = {.lex_state = 399}, + [8415] = {.lex_state = 399}, + [8416] = {.lex_state = 399}, + [8417] = {.lex_state = 799}, + [8418] = {.lex_state = 399}, + [8419] = {.lex_state = 2023}, + [8420] = {.lex_state = 399}, + [8421] = {.lex_state = 284}, + [8422] = {.lex_state = 787}, + [8423] = {.lex_state = 445}, + [8424] = {.lex_state = 799}, + [8425] = {.lex_state = 399}, + [8426] = {.lex_state = 399}, + [8427] = {.lex_state = 439}, + [8428] = {.lex_state = 799}, + [8429] = {.lex_state = 399}, + [8430] = {.lex_state = 399}, + [8431] = {.lex_state = 399}, + [8432] = {.lex_state = 799}, + [8433] = {.lex_state = 799}, + [8434] = {.lex_state = 399}, + [8435] = {.lex_state = 799}, + [8436] = {.lex_state = 456}, + [8437] = {.lex_state = 281}, + [8438] = {.lex_state = 445}, + [8439] = {.lex_state = 799}, + [8440] = {.lex_state = 799}, + [8441] = {.lex_state = 459}, + [8442] = {.lex_state = 799}, + [8443] = {.lex_state = 799}, + [8444] = {.lex_state = 799}, + [8445] = {.lex_state = 399}, + [8446] = {.lex_state = 799}, + [8447] = {.lex_state = 399}, + [8448] = {.lex_state = 813}, + [8449] = {.lex_state = 799}, + [8450] = {.lex_state = 799}, + [8451] = {.lex_state = 813}, + [8452] = {.lex_state = 374}, + [8453] = {.lex_state = 799}, + [8454] = {.lex_state = 399}, + [8455] = {.lex_state = 399}, + [8456] = {.lex_state = 799}, + [8457] = {.lex_state = 502}, + [8458] = {.lex_state = 399}, + [8459] = {.lex_state = 399}, + [8460] = {.lex_state = 399}, + [8461] = {.lex_state = 799}, + [8462] = {.lex_state = 799}, + [8463] = {.lex_state = 284}, + [8464] = {.lex_state = 475}, + [8465] = {.lex_state = 2023}, + [8466] = {.lex_state = 399}, + [8467] = {.lex_state = 374}, + [8468] = {.lex_state = 949}, + [8469] = {.lex_state = 445}, + [8470] = {.lex_state = 799}, + [8471] = {.lex_state = 399}, + [8472] = {.lex_state = 813}, + [8473] = {.lex_state = 813}, + [8474] = {.lex_state = 284}, + [8475] = {.lex_state = 374}, + [8476] = {.lex_state = 496}, + [8477] = {.lex_state = 445}, + [8478] = {.lex_state = 487}, + [8479] = {.lex_state = 799}, + [8480] = {.lex_state = 399}, + [8481] = {.lex_state = 124}, + [8482] = {.lex_state = 281}, + [8483] = {.lex_state = 787}, + [8484] = {.lex_state = 799}, + [8485] = {.lex_state = 399}, + [8486] = {.lex_state = 478}, + [8487] = {.lex_state = 374}, + [8488] = {.lex_state = 865}, + [8489] = {.lex_state = 799}, + [8490] = {.lex_state = 799}, + [8491] = {.lex_state = 478}, + [8492] = {.lex_state = 793}, + [8493] = {.lex_state = 502}, + [8494] = {.lex_state = 399}, + [8495] = {.lex_state = 865}, + [8496] = {.lex_state = 281}, + [8497] = {.lex_state = 799}, + [8498] = {.lex_state = 104}, + [8499] = {.lex_state = 284}, + [8500] = {.lex_state = 399}, + [8501] = {.lex_state = 284}, + [8502] = {.lex_state = 497}, + [8503] = {.lex_state = 799}, + [8504] = {.lex_state = 456}, + [8505] = {.lex_state = 399}, + [8506] = {.lex_state = 475}, + [8507] = {.lex_state = 502}, + [8508] = {.lex_state = 781}, + [8509] = {.lex_state = 799}, + [8510] = {.lex_state = 799}, + [8511] = {.lex_state = 124}, + [8512] = {.lex_state = 399}, + [8513] = {.lex_state = 284}, + [8514] = {.lex_state = 374}, + [8515] = {.lex_state = 799}, + [8516] = {.lex_state = 958}, + [8517] = {.lex_state = 399}, + [8518] = {.lex_state = 399}, + [8519] = {.lex_state = 104}, + [8520] = {.lex_state = 399}, + [8521] = {.lex_state = 399}, + [8522] = {.lex_state = 799}, + [8523] = {.lex_state = 399}, + [8524] = {.lex_state = 399}, + [8525] = {.lex_state = 799}, + [8526] = {.lex_state = 374}, + [8527] = {.lex_state = 393}, + [8528] = {.lex_state = 501}, + [8529] = {.lex_state = 799}, + [8530] = {.lex_state = 857}, + [8531] = {.lex_state = 399}, + [8532] = {.lex_state = 284}, + [8533] = {.lex_state = 799}, + [8534] = {.lex_state = 496}, + [8535] = {.lex_state = 445}, + [8536] = {.lex_state = 399}, + [8537] = {.lex_state = 501}, + [8538] = {.lex_state = 799}, + [8539] = {.lex_state = 399}, + [8540] = {.lex_state = 88}, + [8541] = {.lex_state = 813}, + [8542] = {.lex_state = 799}, + [8543] = {.lex_state = 88}, + [8544] = {.lex_state = 88}, + [8545] = {.lex_state = 799}, + [8546] = {.lex_state = 281}, + [8547] = {.lex_state = 88}, + [8548] = {.lex_state = 399}, + [8549] = {.lex_state = 390}, + [8550] = {.lex_state = 799}, + [8551] = {.lex_state = 475}, + [8552] = {.lex_state = 399}, + [8553] = {.lex_state = 799}, + [8554] = {.lex_state = 813}, + [8555] = {.lex_state = 799}, + [8556] = {.lex_state = 502}, + [8557] = {.lex_state = 284}, + [8558] = {.lex_state = 439}, + [8559] = {.lex_state = 399}, + [8560] = {.lex_state = 399}, + [8561] = {.lex_state = 399}, + [8562] = {.lex_state = 813}, + [8563] = {.lex_state = 799}, + [8564] = {.lex_state = 399}, + [8565] = {.lex_state = 514}, + [8566] = {.lex_state = 399}, + [8567] = {.lex_state = 439}, + [8568] = {.lex_state = 374}, + [8569] = {.lex_state = 399}, + [8570] = {.lex_state = 799}, + [8571] = {.lex_state = 284}, + [8572] = {.lex_state = 489}, + [8573] = {.lex_state = 475}, + [8574] = {.lex_state = 799}, + [8575] = {.lex_state = 478}, + [8576] = {.lex_state = 399}, + [8577] = {.lex_state = 399}, + [8578] = {.lex_state = 445}, + [8579] = {.lex_state = 793}, + [8580] = {.lex_state = 399}, + [8581] = {.lex_state = 399}, + [8582] = {.lex_state = 284}, + [8583] = {.lex_state = 445}, + [8584] = {.lex_state = 799}, + [8585] = {.lex_state = 456}, + [8586] = {.lex_state = 865}, + [8587] = {.lex_state = 415}, + [8588] = {.lex_state = 415}, + [8589] = {.lex_state = 813}, + [8590] = {.lex_state = 813}, + [8591] = {.lex_state = 813}, + [8592] = {.lex_state = 813}, + [8593] = {.lex_state = 787}, + [8594] = {.lex_state = 813}, + [8595] = {.lex_state = 813}, + [8596] = {.lex_state = 813}, + [8597] = {.lex_state = 813}, + [8598] = {.lex_state = 813}, + [8599] = {.lex_state = 544}, + [8600] = {.lex_state = 813}, + [8601] = {.lex_state = 544}, + [8602] = {.lex_state = 391}, + [8603] = {.lex_state = 415}, + [8604] = {.lex_state = 469}, + [8605] = {.lex_state = 813}, + [8606] = {.lex_state = 813}, + [8607] = {.lex_state = 813}, + [8608] = {.lex_state = 813}, + [8609] = {.lex_state = 813}, + [8610] = {.lex_state = 813}, + [8611] = {.lex_state = 813}, + [8612] = {.lex_state = 813}, + [8613] = {.lex_state = 813}, + [8614] = {.lex_state = 56}, + [8615] = {.lex_state = 813}, + [8616] = {.lex_state = 813}, + [8617] = {.lex_state = 544}, + [8618] = {.lex_state = 415}, + [8619] = {.lex_state = 544}, + [8620] = {.lex_state = 391}, + [8621] = {.lex_state = 415}, + [8622] = {.lex_state = 452}, + [8623] = {.lex_state = 813}, + [8624] = {.lex_state = 813}, + [8625] = {.lex_state = 813}, + [8626] = {.lex_state = 787}, + [8627] = {.lex_state = 813}, + [8628] = {.lex_state = 813}, + [8629] = {.lex_state = 813}, + [8630] = {.lex_state = 544}, + [8631] = {.lex_state = 813}, + [8632] = {.lex_state = 415}, + [8633] = {.lex_state = 813}, + [8634] = {.lex_state = 544}, + [8635] = {.lex_state = 439}, + [8636] = {.lex_state = 391}, + [8637] = {.lex_state = 415}, + [8638] = {.lex_state = 813}, + [8639] = {.lex_state = 813}, + [8640] = {.lex_state = 813}, + [8641] = {.lex_state = 813}, + [8642] = {.lex_state = 813}, + [8643] = {.lex_state = 813}, + [8644] = {.lex_state = 813}, + [8645] = {.lex_state = 813}, + [8646] = {.lex_state = 813}, + [8647] = {.lex_state = 813}, + [8648] = {.lex_state = 813}, + [8649] = {.lex_state = 813}, + [8650] = {.lex_state = 813}, + [8651] = {.lex_state = 544}, + [8652] = {.lex_state = 813}, + [8653] = {.lex_state = 544}, + [8654] = {.lex_state = 813}, + [8655] = {.lex_state = 391}, + [8656] = {.lex_state = 415}, + [8657] = {.lex_state = 813}, + [8658] = {.lex_state = 813}, + [8659] = {.lex_state = 813}, + [8660] = {.lex_state = 813}, + [8661] = {.lex_state = 813}, + [8662] = {.lex_state = 813}, + [8663] = {.lex_state = 813}, + [8664] = {.lex_state = 813}, + [8665] = {.lex_state = 813}, + [8666] = {.lex_state = 813}, + [8667] = {.lex_state = 813}, + [8668] = {.lex_state = 813}, + [8669] = {.lex_state = 813}, + [8670] = {.lex_state = 813}, + [8671] = {.lex_state = 813}, + [8672] = {.lex_state = 813}, + [8673] = {.lex_state = 813}, + [8674] = {.lex_state = 544}, + [8675] = {.lex_state = 813}, + [8676] = {.lex_state = 813}, + [8677] = {.lex_state = 813}, + [8678] = {.lex_state = 544}, + [8679] = {.lex_state = 391}, + [8680] = {.lex_state = 415}, + [8681] = {.lex_state = 469}, + [8682] = {.lex_state = 374}, + [8683] = {.lex_state = 813}, + [8684] = {.lex_state = 415}, + [8685] = {.lex_state = 402}, + [8686] = {.lex_state = 787}, + [8687] = {.lex_state = 544}, + [8688] = {.lex_state = 480}, + [8689] = {.lex_state = 544}, + [8690] = {.lex_state = 391}, + [8691] = {.lex_state = 415}, + [8692] = {.lex_state = 865}, + [8693] = {.lex_state = 461}, + [8694] = {.lex_state = 465}, + [8695] = {.lex_state = 813}, + [8696] = {.lex_state = 813}, + [8697] = {.lex_state = 544}, + [8698] = {.lex_state = 374}, + [8699] = {.lex_state = 544}, + [8700] = {.lex_state = 374}, + [8701] = {.lex_state = 391}, + [8702] = {.lex_state = 415}, + [8703] = {.lex_state = 865}, + [8704] = {.lex_state = 544}, + [8705] = {.lex_state = 544}, + [8706] = {.lex_state = 391}, + [8707] = {.lex_state = 415}, + [8708] = {.lex_state = 813}, + [8709] = {.lex_state = 482}, + [8710] = {.lex_state = 813}, + [8711] = {.lex_state = 813}, + [8712] = {.lex_state = 439}, + [8713] = {.lex_state = 439}, + [8714] = {.lex_state = 503}, + [8715] = {.lex_state = 504}, + [8716] = {.lex_state = 813}, + [8717] = {.lex_state = 374}, + [8718] = {.lex_state = 813}, + [8719] = {.lex_state = 544}, + [8720] = {.lex_state = 813}, + [8721] = {.lex_state = 813}, + [8722] = {.lex_state = 544}, + [8723] = {.lex_state = 391}, + [8724] = {.lex_state = 415}, + [8725] = {.lex_state = 124}, + [8726] = {.lex_state = 813}, + [8727] = {.lex_state = 813}, + [8728] = {.lex_state = 813}, + [8729] = {.lex_state = 813}, + [8730] = {.lex_state = 813}, + [8731] = {.lex_state = 813}, + [8732] = {.lex_state = 813}, + [8733] = {.lex_state = 503}, + [8734] = {.lex_state = 813}, + [8735] = {.lex_state = 813}, + [8736] = {.lex_state = 813}, + [8737] = {.lex_state = 813}, + [8738] = {.lex_state = 813}, + [8739] = {.lex_state = 813}, + [8740] = {.lex_state = 544}, + [8741] = {.lex_state = 813}, + [8742] = {.lex_state = 544}, + [8743] = {.lex_state = 813}, + [8744] = {.lex_state = 391}, + [8745] = {.lex_state = 415}, + [8746] = {.lex_state = 813}, + [8747] = {.lex_state = 813}, + [8748] = {.lex_state = 813}, + [8749] = {.lex_state = 813}, + [8750] = {.lex_state = 813}, + [8751] = {.lex_state = 813}, + [8752] = {.lex_state = 813}, + [8753] = {.lex_state = 813}, + [8754] = {.lex_state = 813}, + [8755] = {.lex_state = 813}, + [8756] = {.lex_state = 813}, + [8757] = {.lex_state = 813}, + [8758] = {.lex_state = 813}, + [8759] = {.lex_state = 813}, + [8760] = {.lex_state = 374}, + [8761] = {.lex_state = 439}, + [8762] = {.lex_state = 544}, + [8763] = {.lex_state = 787}, + [8764] = {.lex_state = 544}, + [8765] = {.lex_state = 391}, + [8766] = {.lex_state = 415}, + [8767] = {.lex_state = 813}, + [8768] = {.lex_state = 813}, + [8769] = {.lex_state = 813}, + [8770] = {.lex_state = 813}, + [8771] = {.lex_state = 813}, + [8772] = {.lex_state = 813}, + [8773] = {.lex_state = 813}, + [8774] = {.lex_state = 813}, + [8775] = {.lex_state = 813}, + [8776] = {.lex_state = 813}, + [8777] = {.lex_state = 813}, + [8778] = {.lex_state = 813}, + [8779] = {.lex_state = 439}, + [8780] = {.lex_state = 544}, + [8781] = {.lex_state = 544}, + [8782] = {.lex_state = 503}, + [8783] = {.lex_state = 391}, + [8784] = {.lex_state = 415}, + [8785] = {.lex_state = 813}, + [8786] = {.lex_state = 391}, + [8787] = {.lex_state = 439}, + [8788] = {.lex_state = 439}, + [8789] = {.lex_state = 813}, + [8790] = {.lex_state = 813}, + [8791] = {.lex_state = 439}, + [8792] = {.lex_state = 439}, + [8793] = {.lex_state = 813}, + [8794] = {.lex_state = 374}, + [8795] = {.lex_state = 374}, + [8796] = {.lex_state = 374}, + [8797] = {.lex_state = 544}, + [8798] = {.lex_state = 374}, + [8799] = {.lex_state = 544}, + [8800] = {.lex_state = 374}, + [8801] = {.lex_state = 391}, + [8802] = {.lex_state = 415}, + [8803] = {.lex_state = 813}, + [8804] = {.lex_state = 813}, + [8805] = {.lex_state = 439}, + [8806] = {.lex_state = 813}, + [8807] = {.lex_state = 813}, + [8808] = {.lex_state = 813}, + [8809] = {.lex_state = 813}, + [8810] = {.lex_state = 813}, + [8811] = {.lex_state = 813}, + [8812] = {.lex_state = 813}, + [8813] = {.lex_state = 813}, + [8814] = {.lex_state = 813}, + [8815] = {.lex_state = 813}, + [8816] = {.lex_state = 813}, + [8817] = {.lex_state = 813}, + [8818] = {.lex_state = 374}, + [8819] = {.lex_state = 503}, + [8820] = {.lex_state = 813}, + [8821] = {.lex_state = 544}, + [8822] = {.lex_state = 439}, + [8823] = {.lex_state = 544}, + [8824] = {.lex_state = 391}, + [8825] = {.lex_state = 415}, + [8826] = {.lex_state = 284}, + [8827] = {.lex_state = 251}, + [8828] = {.lex_state = 374}, + [8829] = {.lex_state = 284}, + [8830] = {.lex_state = 439}, + [8831] = {.lex_state = 374}, + [8832] = {.lex_state = 813}, + [8833] = {.lex_state = 374}, + [8834] = {.lex_state = 813}, + [8835] = {.lex_state = 374}, + [8836] = {.lex_state = 813}, + [8837] = {.lex_state = 374}, + [8838] = {.lex_state = 374}, + [8839] = {.lex_state = 374}, + [8840] = {.lex_state = 544}, + [8841] = {.lex_state = 374}, + [8842] = {.lex_state = 374}, + [8843] = {.lex_state = 544}, + [8844] = {.lex_state = 391}, + [8845] = {.lex_state = 415}, + [8846] = {.lex_state = 374}, + [8847] = {.lex_state = 374}, + [8848] = {.lex_state = 374}, + [8849] = {.lex_state = 374}, + [8850] = {.lex_state = 374}, + [8851] = {.lex_state = 374}, + [8852] = {.lex_state = 374}, + [8853] = {.lex_state = 374}, + [8854] = {.lex_state = 374}, + [8855] = {.lex_state = 544}, + [8856] = {.lex_state = 374}, + [8857] = {.lex_state = 544}, + [8858] = {.lex_state = 391}, + [8859] = {.lex_state = 374}, + [8860] = {.lex_state = 374}, + [8861] = {.lex_state = 2032}, + [8862] = {.lex_state = 374}, + [8863] = {.lex_state = 374}, + [8864] = {.lex_state = 439}, + [8865] = {.lex_state = 374}, + [8866] = {.lex_state = 374}, + [8867] = {.lex_state = 544}, + [8868] = {.lex_state = 374}, + [8869] = {.lex_state = 374}, + [8870] = {.lex_state = 544}, + [8871] = {.lex_state = 391}, + [8872] = {.lex_state = 374}, + [8873] = {.lex_state = 374}, + [8874] = {.lex_state = 374}, + [8875] = {.lex_state = 374}, + [8876] = {.lex_state = 374}, + [8877] = {.lex_state = 374}, + [8878] = {.lex_state = 374}, + [8879] = {.lex_state = 374}, + [8880] = {.lex_state = 544}, + [8881] = {.lex_state = 439}, + [8882] = {.lex_state = 374}, + [8883] = {.lex_state = 544}, + [8884] = {.lex_state = 374}, + [8885] = {.lex_state = 391}, + [8886] = {.lex_state = 374}, + [8887] = {.lex_state = 528}, + [8888] = {.lex_state = 481}, + [8889] = {.lex_state = 284}, + [8890] = {.lex_state = 544}, + [8891] = {.lex_state = 374}, + [8892] = {.lex_state = 544}, + [8893] = {.lex_state = 391}, + [8894] = {.lex_state = 787}, + [8895] = {.lex_state = 544}, + [8896] = {.lex_state = 374}, + [8897] = {.lex_state = 374}, + [8898] = {.lex_state = 374}, + [8899] = {.lex_state = 374}, + [8900] = {.lex_state = 544}, + [8901] = {.lex_state = 544}, + [8902] = {.lex_state = 391}, + [8903] = {.lex_state = 374}, + [8904] = {.lex_state = 813}, + [8905] = {.lex_state = 813}, + [8906] = {.lex_state = 813}, + [8907] = {.lex_state = 439}, + [8908] = {.lex_state = 374}, + [8909] = {.lex_state = 544}, + [8910] = {.lex_state = 544}, + [8911] = {.lex_state = 374}, + [8912] = {.lex_state = 544}, + [8913] = {.lex_state = 391}, + [8914] = {.lex_state = 391}, + [8915] = {.lex_state = 27}, + [8916] = {.lex_state = 374}, + [8917] = {.lex_state = 124}, + [8918] = {.lex_state = 857}, + [8919] = {.lex_state = 415}, + [8920] = {.lex_state = 284}, + [8921] = {.lex_state = 544}, + [8922] = {.lex_state = 374}, + [8923] = {.lex_state = 544}, + [8924] = {.lex_state = 391}, + [8925] = {.lex_state = 374}, + [8926] = {.lex_state = 415}, + [8927] = {.lex_state = 437}, + [8928] = {.lex_state = 544}, + [8929] = {.lex_state = 544}, + [8930] = {.lex_state = 374}, + [8931] = {.lex_state = 391}, + [8932] = {.lex_state = 56}, + [8933] = {.lex_state = 469}, + [8934] = {.lex_state = 374}, + [8935] = {.lex_state = 544}, + [8936] = {.lex_state = 544}, + [8937] = {.lex_state = 391}, + [8938] = {.lex_state = 544}, + [8939] = {.lex_state = 544}, + [8940] = {.lex_state = 391}, + [8941] = {.lex_state = 544}, + [8942] = {.lex_state = 460}, + [8943] = {.lex_state = 544}, + [8944] = {.lex_state = 391}, + [8945] = {.lex_state = 27}, + [8946] = {.lex_state = 813}, + [8947] = {.lex_state = 437}, + [8948] = {.lex_state = 781}, + [8949] = {.lex_state = 813}, + [8950] = {.lex_state = 544}, + [8951] = {.lex_state = 544}, + [8952] = {.lex_state = 391}, + [8953] = {.lex_state = 544}, + [8954] = {.lex_state = 544}, + [8955] = {.lex_state = 391}, + [8956] = {.lex_state = 544}, + [8957] = {.lex_state = 544}, + [8958] = {.lex_state = 391}, + [8959] = {.lex_state = 544}, + [8960] = {.lex_state = 544}, + [8961] = {.lex_state = 391}, + [8962] = {.lex_state = 544}, + [8963] = {.lex_state = 544}, + [8964] = {.lex_state = 391}, + [8965] = {.lex_state = 544}, + [8966] = {.lex_state = 374}, + [8967] = {.lex_state = 544}, + [8968] = {.lex_state = 781}, + [8969] = {.lex_state = 391}, + [8970] = {.lex_state = 374}, + [8971] = {.lex_state = 544}, + [8972] = {.lex_state = 544}, + [8973] = {.lex_state = 391}, + [8974] = {.lex_state = 391}, + [8975] = {.lex_state = 391}, + [8976] = {.lex_state = 284}, + [8977] = {.lex_state = 391}, + [8978] = {.lex_state = 391}, + [8979] = {.lex_state = 391}, + [8980] = {.lex_state = 391}, + [8981] = {.lex_state = 391}, + [8982] = {.lex_state = 391}, + [8983] = {.lex_state = 391}, + [8984] = {.lex_state = 391}, + [8985] = {.lex_state = 391}, + [8986] = {.lex_state = 391}, + [8987] = {.lex_state = 391}, + [8988] = {.lex_state = 374}, + [8989] = {.lex_state = 813}, + [8990] = {.lex_state = 813}, + [8991] = {.lex_state = 787}, + [8992] = {.lex_state = 504}, + [8993] = {.lex_state = 439}, + [8994] = {.lex_state = 813}, + [8995] = {.lex_state = 813}, + [8996] = {.lex_state = 544}, + [8997] = {.lex_state = 374}, + [8998] = {.lex_state = 124}, + [8999] = {.lex_state = 374}, + [9000] = {.lex_state = 787}, + [9001] = {.lex_state = 415}, + [9002] = {.lex_state = 415}, + [9003] = {.lex_state = 479}, + [9004] = {.lex_state = 374}, + [9005] = {.lex_state = 504}, + [9006] = {.lex_state = 787}, + [9007] = {.lex_state = 787}, + [9008] = {.lex_state = 88}, + [9009] = {.lex_state = 284}, + [9010] = {.lex_state = 813}, + [9011] = {.lex_state = 813}, + [9012] = {.lex_state = 515}, + [9013] = {.lex_state = 27}, + [9014] = {.lex_state = 374}, + [9015] = {.lex_state = 813}, + [9016] = {.lex_state = 439}, + [9017] = {.lex_state = 503}, + [9018] = {.lex_state = 813}, + [9019] = {.lex_state = 504}, + [9020] = {.lex_state = 27}, + [9021] = {.lex_state = 56}, + [9022] = {.lex_state = 813}, + [9023] = {.lex_state = 813}, + [9024] = {.lex_state = 64}, + [9025] = {.lex_state = 64}, + [9026] = {.lex_state = 64}, + [9027] = {.lex_state = 374}, + [9028] = {.lex_state = 374}, + [9029] = {.lex_state = 64}, + [9030] = {.lex_state = 787}, + [9031] = {.lex_state = 787}, + [9032] = {.lex_state = 479}, + [9033] = {.lex_state = 460}, + [9034] = {.lex_state = 504}, + [9035] = {.lex_state = 284}, + [9036] = {.lex_state = 813}, + [9037] = {.lex_state = 813}, + [9038] = {.lex_state = 415}, + [9039] = {.lex_state = 415}, + [9040] = {.lex_state = 27}, + [9041] = {.lex_state = 27}, + [9042] = {.lex_state = 374}, + [9043] = {.lex_state = 813}, + [9044] = {.lex_state = 461}, + [9045] = {.lex_state = 813}, + [9046] = {.lex_state = 813}, + [9047] = {.lex_state = 813}, + [9048] = {.lex_state = 813}, + [9049] = {.lex_state = 813}, + [9050] = {.lex_state = 813}, + [9051] = {.lex_state = 813}, + [9052] = {.lex_state = 374}, + [9053] = {.lex_state = 813}, + [9054] = {.lex_state = 813}, + [9055] = {.lex_state = 415}, + [9056] = {.lex_state = 813}, + [9057] = {.lex_state = 374}, + [9058] = {.lex_state = 813}, + [9059] = {.lex_state = 813}, + [9060] = {.lex_state = 813}, + [9061] = {.lex_state = 813}, + [9062] = {.lex_state = 813}, + [9063] = {.lex_state = 813}, + [9064] = {.lex_state = 813}, + [9065] = {.lex_state = 813}, + [9066] = {.lex_state = 813}, + [9067] = {.lex_state = 949}, + [9068] = {.lex_state = 813}, + [9069] = {.lex_state = 813}, + [9070] = {.lex_state = 439}, + [9071] = {.lex_state = 813}, + [9072] = {.lex_state = 813}, + [9073] = {.lex_state = 813}, + [9074] = {.lex_state = 813}, + [9075] = {.lex_state = 498}, + [9076] = {.lex_state = 415}, + [9077] = {.lex_state = 464}, + [9078] = {.lex_state = 56}, + [9079] = {.lex_state = 813}, + [9080] = {.lex_state = 544}, + [9081] = {.lex_state = 813}, + [9082] = {.lex_state = 415}, + [9083] = {.lex_state = 813}, + [9084] = {.lex_state = 813}, + [9085] = {.lex_state = 813}, + [9086] = {.lex_state = 544}, + [9087] = {.lex_state = 374}, + [9088] = {.lex_state = 391}, + [9089] = {.lex_state = 415}, + [9090] = {.lex_state = 415}, + [9091] = {.lex_state = 284}, + [9092] = {.lex_state = 415}, + [9093] = {.lex_state = 415}, + [9094] = {.lex_state = 415}, + [9095] = {.lex_state = 415}, + [9096] = {.lex_state = 469}, + [9097] = {.lex_state = 813}, + [9098] = {.lex_state = 415}, + [9099] = {.lex_state = 813}, + [9100] = {.lex_state = 415}, + [9101] = {.lex_state = 544}, + [9102] = {.lex_state = 415}, + [9103] = {.lex_state = 415}, + [9104] = {.lex_state = 415}, + [9105] = {.lex_state = 374}, + [9106] = {.lex_state = 415}, + [9107] = {.lex_state = 415}, + [9108] = {.lex_state = 415}, + [9109] = {.lex_state = 284}, + [9110] = {.lex_state = 415}, + [9111] = {.lex_state = 415}, + [9112] = {.lex_state = 415}, + [9113] = {.lex_state = 415}, + [9114] = {.lex_state = 415}, + [9115] = {.lex_state = 415}, + [9116] = {.lex_state = 415}, + [9117] = {.lex_state = 415}, + [9118] = {.lex_state = 415}, + [9119] = {.lex_state = 958}, + [9120] = {.lex_state = 813}, + [9121] = {.lex_state = 415}, + [9122] = {.lex_state = 813}, + [9123] = {.lex_state = 415}, + [9124] = {.lex_state = 415}, + [9125] = {.lex_state = 813}, + [9126] = {.lex_state = 415}, + [9127] = {.lex_state = 813}, + [9128] = {.lex_state = 813}, + [9129] = {.lex_state = 415}, + [9130] = {.lex_state = 415}, + [9131] = {.lex_state = 415}, + [9132] = {.lex_state = 813}, + [9133] = {.lex_state = 813}, + [9134] = {.lex_state = 415}, + [9135] = {.lex_state = 415}, + [9136] = {.lex_state = 813}, + [9137] = {.lex_state = 415}, + [9138] = {.lex_state = 813}, + [9139] = {.lex_state = 415}, + [9140] = {.lex_state = 415}, + [9141] = {.lex_state = 813}, + [9142] = {.lex_state = 544}, + [9143] = {.lex_state = 544}, + [9144] = {.lex_state = 544}, + [9145] = {.lex_state = 391}, + [9146] = {.lex_state = 415}, + [9147] = {.lex_state = 469}, + [9148] = {.lex_state = 284}, + [9149] = {.lex_state = 415}, + [9150] = {.lex_state = 88}, + [9151] = {.lex_state = 88}, + [9152] = {.lex_state = 88}, + [9153] = {.lex_state = 88}, + [9154] = {.lex_state = 88}, + [9155] = {.lex_state = 88}, + [9156] = {.lex_state = 415}, + [9157] = {.lex_state = 415}, + [9158] = {.lex_state = 415}, + [9159] = {.lex_state = 415}, + [9160] = {.lex_state = 415}, + [9161] = {.lex_state = 415}, + [9162] = {.lex_state = 415}, + [9163] = {.lex_state = 415}, + [9164] = {.lex_state = 415}, + [9165] = {.lex_state = 415}, + [9166] = {.lex_state = 415}, + [9167] = {.lex_state = 415}, + [9168] = {.lex_state = 415}, + [9169] = {.lex_state = 415}, + [9170] = {.lex_state = 415}, + [9171] = {.lex_state = 415}, + [9172] = {.lex_state = 415}, + [9173] = {.lex_state = 415}, + [9174] = {.lex_state = 415}, + [9175] = {.lex_state = 415}, + [9176] = {.lex_state = 415}, + [9177] = {.lex_state = 415}, + [9178] = {.lex_state = 813}, + [9179] = {.lex_state = 519}, + [9180] = {.lex_state = 133}, + [9181] = {.lex_state = 398}, + [9182] = {.lex_state = 813}, + [9183] = {.lex_state = 124}, + [9184] = {.lex_state = 398}, + [9185] = {.lex_state = 398}, + [9186] = {.lex_state = 398}, + [9187] = {.lex_state = 469}, + [9188] = {.lex_state = 0}, [9189] = {.lex_state = 0}, - [9190] = {.lex_state = 283}, - [9191] = {.lex_state = 0}, - [9192] = {.lex_state = 397}, - [9193] = {.lex_state = 397}, - [9194] = {.lex_state = 0}, - [9195] = {.lex_state = 132}, - [9196] = {.lex_state = 520}, - [9197] = {.lex_state = 0}, - [9198] = {.lex_state = 0}, - [9199] = {.lex_state = 0}, - [9200] = {.lex_state = 0}, - [9201] = {.lex_state = 397}, - [9202] = {.lex_state = 812}, - [9203] = {.lex_state = 397}, - [9204] = {.lex_state = 132}, - [9205] = {.lex_state = 520}, - [9206] = {.lex_state = 397}, - [9207] = {.lex_state = 397}, - [9208] = {.lex_state = 0}, - [9209] = {.lex_state = 812}, - [9210] = {.lex_state = 0}, - [9211] = {.lex_state = 812}, - [9212] = {.lex_state = 397}, - [9213] = {.lex_state = 812}, - [9214] = {.lex_state = 468}, - [9215] = {.lex_state = 812}, - [9216] = {.lex_state = 397}, - [9217] = {.lex_state = 812}, - [9218] = {.lex_state = 132}, - [9219] = {.lex_state = 812}, - [9220] = {.lex_state = 812}, - [9221] = {.lex_state = 812}, - [9222] = {.lex_state = 812}, - [9223] = {.lex_state = 812}, - [9224] = {.lex_state = 520}, - [9225] = {.lex_state = 132}, - [9226] = {.lex_state = 0}, - [9227] = {.lex_state = 520}, - [9228] = {.lex_state = 812}, - [9229] = {.lex_state = 397}, - [9230] = {.lex_state = 0}, - [9231] = {.lex_state = 397}, - [9232] = {.lex_state = 812}, - [9233] = {.lex_state = 468}, - [9234] = {.lex_state = 812}, - [9235] = {.lex_state = 283}, - [9236] = {.lex_state = 132}, - [9237] = {.lex_state = 397}, + [9190] = {.lex_state = 398}, + [9191] = {.lex_state = 398}, + [9192] = {.lex_state = 398}, + [9193] = {.lex_state = 813}, + [9194] = {.lex_state = 813}, + [9195] = {.lex_state = 507}, + [9196] = {.lex_state = 813}, + [9197] = {.lex_state = 813}, + [9198] = {.lex_state = 813}, + [9199] = {.lex_state = 813}, + [9200] = {.lex_state = 469}, + [9201] = {.lex_state = 813}, + [9202] = {.lex_state = 521}, + [9203] = {.lex_state = 0}, + [9204] = {.lex_state = 813}, + [9205] = {.lex_state = 469}, + [9206] = {.lex_state = 133}, + [9207] = {.lex_state = 521}, + [9208] = {.lex_state = 133}, + [9209] = {.lex_state = 2024}, + [9210] = {.lex_state = 398}, + [9211] = {.lex_state = 0}, + [9212] = {.lex_state = 813}, + [9213] = {.lex_state = 398}, + [9214] = {.lex_state = 0}, + [9215] = {.lex_state = 398}, + [9216] = {.lex_state = 0}, + [9217] = {.lex_state = 0}, + [9218] = {.lex_state = 284}, + [9219] = {.lex_state = 813}, + [9220] = {.lex_state = 0}, + [9221] = {.lex_state = 2032}, + [9222] = {.lex_state = 813}, + [9223] = {.lex_state = 0}, + [9224] = {.lex_state = 0}, + [9225] = {.lex_state = 813}, + [9226] = {.lex_state = 813}, + [9227] = {.lex_state = 813}, + [9228] = {.lex_state = 813}, + [9229] = {.lex_state = 398}, + [9230] = {.lex_state = 521}, + [9231] = {.lex_state = 133}, + [9232] = {.lex_state = 813}, + [9233] = {.lex_state = 813}, + [9234] = {.lex_state = 398}, + [9235] = {.lex_state = 0}, + [9236] = {.lex_state = 398}, + [9237] = {.lex_state = 398}, [9238] = {.lex_state = 0}, - [9239] = {.lex_state = 812}, - [9240] = {.lex_state = 132}, - [9241] = {.lex_state = 397}, - [9242] = {.lex_state = 132}, - [9243] = {.lex_state = 520}, + [9239] = {.lex_state = 813}, + [9240] = {.lex_state = 0}, + [9241] = {.lex_state = 0}, + [9242] = {.lex_state = 0}, + [9243] = {.lex_state = 284}, [9244] = {.lex_state = 0}, - [9245] = {.lex_state = 812}, - [9246] = {.lex_state = 786}, - [9247] = {.lex_state = 786}, - [9248] = {.lex_state = 812}, - [9249] = {.lex_state = 0}, - [9250] = {.lex_state = 0}, - [9251] = {.lex_state = 0}, - [9252] = {.lex_state = 0}, - [9253] = {.lex_state = 520}, - [9254] = {.lex_state = 0}, - [9255] = {.lex_state = 132}, - [9256] = {.lex_state = 397}, - [9257] = {.lex_state = 132}, - [9258] = {.lex_state = 0}, - [9259] = {.lex_state = 520}, - [9260] = {.lex_state = 812}, - [9261] = {.lex_state = 397}, - [9262] = {.lex_state = 812}, - [9263] = {.lex_state = 132}, - [9264] = {.lex_state = 132}, - [9265] = {.lex_state = 397}, - [9266] = {.lex_state = 132}, + [9245] = {.lex_state = 813}, + [9246] = {.lex_state = 813}, + [9247] = {.lex_state = 2032}, + [9248] = {.lex_state = 813}, + [9249] = {.lex_state = 813}, + [9250] = {.lex_state = 521}, + [9251] = {.lex_state = 521}, + [9252] = {.lex_state = 133}, + [9253] = {.lex_state = 398}, + [9254] = {.lex_state = 133}, + [9255] = {.lex_state = 813}, + [9256] = {.lex_state = 398}, + [9257] = {.lex_state = 398}, + [9258] = {.lex_state = 813}, + [9259] = {.lex_state = 0}, + [9260] = {.lex_state = 813}, + [9261] = {.lex_state = 0}, + [9262] = {.lex_state = 0}, + [9263] = {.lex_state = 0}, + [9264] = {.lex_state = 813}, + [9265] = {.lex_state = 507}, + [9266] = {.lex_state = 469}, [9267] = {.lex_state = 0}, - [9268] = {.lex_state = 132}, - [9269] = {.lex_state = 812}, - [9270] = {.lex_state = 812}, - [9271] = {.lex_state = 812}, - [9272] = {.lex_state = 124}, - [9273] = {.lex_state = 812}, - [9274] = {.lex_state = 812}, - [9275] = {.lex_state = 812}, - [9276] = {.lex_state = 812}, - [9277] = {.lex_state = 532}, - [9278] = {.lex_state = 124}, - [9279] = {.lex_state = 132}, - [9280] = {.lex_state = 451}, + [9268] = {.lex_state = 521}, + [9269] = {.lex_state = 133}, + [9270] = {.lex_state = 398}, + [9271] = {.lex_state = 398}, + [9272] = {.lex_state = 284}, + [9273] = {.lex_state = 813}, + [9274] = {.lex_state = 813}, + [9275] = {.lex_state = 398}, + [9276] = {.lex_state = 284}, + [9277] = {.lex_state = 521}, + [9278] = {.lex_state = 0}, + [9279] = {.lex_state = 0}, + [9280] = {.lex_state = 0}, [9281] = {.lex_state = 0}, [9282] = {.lex_state = 0}, - [9283] = {.lex_state = 812}, - [9284] = {.lex_state = 0}, - [9285] = {.lex_state = 812}, - [9286] = {.lex_state = 812}, - [9287] = {.lex_state = 132}, - [9288] = {.lex_state = 520}, - [9289] = {.lex_state = 132}, - [9290] = {.lex_state = 520}, - [9291] = {.lex_state = 132}, - [9292] = {.lex_state = 397}, - [9293] = {.lex_state = 397}, - [9294] = {.lex_state = 0}, - [9295] = {.lex_state = 124}, - [9296] = {.lex_state = 397}, - [9297] = {.lex_state = 468}, - [9298] = {.lex_state = 124}, - [9299] = {.lex_state = 397}, - [9300] = {.lex_state = 812}, - [9301] = {.lex_state = 0}, - [9302] = {.lex_state = 812}, - [9303] = {.lex_state = 397}, - [9304] = {.lex_state = 397}, - [9305] = {.lex_state = 132}, - [9306] = {.lex_state = 520}, - [9307] = {.lex_state = 0}, - [9308] = {.lex_state = 812}, - [9309] = {.lex_state = 812}, - [9310] = {.lex_state = 812}, - [9311] = {.lex_state = 0}, - [9312] = {.lex_state = 812}, - [9313] = {.lex_state = 812}, - [9314] = {.lex_state = 812}, - [9315] = {.lex_state = 812}, + [9283] = {.lex_state = 813}, + [9284] = {.lex_state = 124}, + [9285] = {.lex_state = 813}, + [9286] = {.lex_state = 813}, + [9287] = {.lex_state = 813}, + [9288] = {.lex_state = 521}, + [9289] = {.lex_state = 133}, + [9290] = {.lex_state = 813}, + [9291] = {.lex_state = 398}, + [9292] = {.lex_state = 813}, + [9293] = {.lex_state = 813}, + [9294] = {.lex_state = 398}, + [9295] = {.lex_state = 813}, + [9296] = {.lex_state = 284}, + [9297] = {.lex_state = 0}, + [9298] = {.lex_state = 0}, + [9299] = {.lex_state = 813}, + [9300] = {.lex_state = 0}, + [9301] = {.lex_state = 813}, + [9302] = {.lex_state = 0}, + [9303] = {.lex_state = 0}, + [9304] = {.lex_state = 813}, + [9305] = {.lex_state = 521}, + [9306] = {.lex_state = 133}, + [9307] = {.lex_state = 398}, + [9308] = {.lex_state = 813}, + [9309] = {.lex_state = 813}, + [9310] = {.lex_state = 398}, + [9311] = {.lex_state = 521}, + [9312] = {.lex_state = 813}, + [9313] = {.lex_state = 133}, + [9314] = {.lex_state = 0}, + [9315] = {.lex_state = 0}, [9316] = {.lex_state = 0}, - [9317] = {.lex_state = 283}, - [9318] = {.lex_state = 520}, - [9319] = {.lex_state = 132}, + [9317] = {.lex_state = 0}, + [9318] = {.lex_state = 813}, + [9319] = {.lex_state = 813}, [9320] = {.lex_state = 0}, - [9321] = {.lex_state = 812}, - [9322] = {.lex_state = 812}, - [9323] = {.lex_state = 812}, - [9324] = {.lex_state = 812}, - [9325] = {.lex_state = 812}, - [9326] = {.lex_state = 520}, - [9327] = {.lex_state = 132}, - [9328] = {.lex_state = 812}, - [9329] = {.lex_state = 812}, - [9330] = {.lex_state = 812}, - [9331] = {.lex_state = 0}, - [9332] = {.lex_state = 283}, - [9333] = {.lex_state = 812}, - [9334] = {.lex_state = 812}, - [9335] = {.lex_state = 397}, - [9336] = {.lex_state = 0}, - [9337] = {.lex_state = 812}, - [9338] = {.lex_state = 812}, - [9339] = {.lex_state = 812}, - [9340] = {.lex_state = 397}, - [9341] = {.lex_state = 397}, - [9342] = {.lex_state = 812}, - [9343] = {.lex_state = 468}, - [9344] = {.lex_state = 812}, - [9345] = {.lex_state = 397}, - [9346] = {.lex_state = 812}, + [9321] = {.lex_state = 521}, + [9322] = {.lex_state = 133}, + [9323] = {.lex_state = 398}, + [9324] = {.lex_state = 469}, + [9325] = {.lex_state = 399}, + [9326] = {.lex_state = 398}, + [9327] = {.lex_state = 398}, + [9328] = {.lex_state = 398}, + [9329] = {.lex_state = 0}, + [9330] = {.lex_state = 0}, + [9331] = {.lex_state = 813}, + [9332] = {.lex_state = 0}, + [9333] = {.lex_state = 133}, + [9334] = {.lex_state = 813}, + [9335] = {.lex_state = 469}, + [9336] = {.lex_state = 60}, + [9337] = {.lex_state = 0}, + [9338] = {.lex_state = 0}, + [9339] = {.lex_state = 813}, + [9340] = {.lex_state = 521}, + [9341] = {.lex_state = 133}, + [9342] = {.lex_state = 398}, + [9343] = {.lex_state = 398}, + [9344] = {.lex_state = 398}, + [9345] = {.lex_state = 521}, + [9346] = {.lex_state = 133}, [9347] = {.lex_state = 0}, [9348] = {.lex_state = 0}, - [9349] = {.lex_state = 2031}, - [9350] = {.lex_state = 520}, - [9351] = {.lex_state = 132}, - [9352] = {.lex_state = 812}, - [9353] = {.lex_state = 0}, - [9354] = {.lex_state = 132}, - [9355] = {.lex_state = 397}, - [9356] = {.lex_state = 520}, - [9357] = {.lex_state = 520}, - [9358] = {.lex_state = 812}, - [9359] = {.lex_state = 468}, - [9360] = {.lex_state = 812}, - [9361] = {.lex_state = 812}, - [9362] = {.lex_state = 530}, - [9363] = {.lex_state = 124}, - [9364] = {.lex_state = 812}, - [9365] = {.lex_state = 397}, - [9366] = {.lex_state = 397}, - [9367] = {.lex_state = 812}, - [9368] = {.lex_state = 812}, - [9369] = {.lex_state = 132}, - [9370] = {.lex_state = 812}, - [9371] = {.lex_state = 812}, - [9372] = {.lex_state = 812}, - [9373] = {.lex_state = 0}, - [9374] = {.lex_state = 283}, - [9375] = {.lex_state = 812}, - [9376] = {.lex_state = 397}, - [9377] = {.lex_state = 812}, - [9378] = {.lex_state = 397}, - [9379] = {.lex_state = 283}, + [9349] = {.lex_state = 521}, + [9350] = {.lex_state = 133}, + [9351] = {.lex_state = 398}, + [9352] = {.lex_state = 813}, + [9353] = {.lex_state = 398}, + [9354] = {.lex_state = 813}, + [9355] = {.lex_state = 398}, + [9356] = {.lex_state = 0}, + [9357] = {.lex_state = 0}, + [9358] = {.lex_state = 0}, + [9359] = {.lex_state = 521}, + [9360] = {.lex_state = 133}, + [9361] = {.lex_state = 398}, + [9362] = {.lex_state = 60}, + [9363] = {.lex_state = 787}, + [9364] = {.lex_state = 398}, + [9365] = {.lex_state = 813}, + [9366] = {.lex_state = 787}, + [9367] = {.lex_state = 469}, + [9368] = {.lex_state = 0}, + [9369] = {.lex_state = 0}, + [9370] = {.lex_state = 813}, + [9371] = {.lex_state = 521}, + [9372] = {.lex_state = 133}, + [9373] = {.lex_state = 398}, + [9374] = {.lex_state = 398}, + [9375] = {.lex_state = 787}, + [9376] = {.lex_state = 398}, + [9377] = {.lex_state = 813}, + [9378] = {.lex_state = 787}, + [9379] = {.lex_state = 284}, [9380] = {.lex_state = 0}, - [9381] = {.lex_state = 397}, - [9382] = {.lex_state = 0}, - [9383] = {.lex_state = 812}, - [9384] = {.lex_state = 0}, - [9385] = {.lex_state = 812}, - [9386] = {.lex_state = 812}, - [9387] = {.lex_state = 812}, - [9388] = {.lex_state = 132}, - [9389] = {.lex_state = 812}, - [9390] = {.lex_state = 812}, - [9391] = {.lex_state = 397}, - [9392] = {.lex_state = 520}, - [9393] = {.lex_state = 812}, - [9394] = {.lex_state = 812}, - [9395] = {.lex_state = 812}, - [9396] = {.lex_state = 812}, - [9397] = {.lex_state = 812}, - [9398] = {.lex_state = 812}, - [9399] = {.lex_state = 520}, - [9400] = {.lex_state = 132}, - [9401] = {.lex_state = 812}, - [9402] = {.lex_state = 812}, - [9403] = {.lex_state = 812}, - [9404] = {.lex_state = 812}, - [9405] = {.lex_state = 132}, - [9406] = {.lex_state = 0}, - [9407] = {.lex_state = 812}, - [9408] = {.lex_state = 397}, - [9409] = {.lex_state = 812}, - [9410] = {.lex_state = 520}, - [9411] = {.lex_state = 812}, - [9412] = {.lex_state = 520}, - [9413] = {.lex_state = 132}, - [9414] = {.lex_state = 132}, - [9415] = {.lex_state = 812}, - [9416] = {.lex_state = 812}, - [9417] = {.lex_state = 397}, - [9418] = {.lex_state = 812}, - [9419] = {.lex_state = 812}, - [9420] = {.lex_state = 397}, - [9421] = {.lex_state = 468}, - [9422] = {.lex_state = 397}, - [9423] = {.lex_state = 812}, - [9424] = {.lex_state = 812}, - [9425] = {.lex_state = 468}, - [9426] = {.lex_state = 812}, - [9427] = {.lex_state = 283}, - [9428] = {.lex_state = 397}, + [9381] = {.lex_state = 0}, + [9382] = {.lex_state = 813}, + [9383] = {.lex_state = 521}, + [9384] = {.lex_state = 133}, + [9385] = {.lex_state = 398}, + [9386] = {.lex_state = 398}, + [9387] = {.lex_state = 0}, + [9388] = {.lex_state = 398}, + [9389] = {.lex_state = 0}, + [9390] = {.lex_state = 0}, + [9391] = {.lex_state = 0}, + [9392] = {.lex_state = 0}, + [9393] = {.lex_state = 813}, + [9394] = {.lex_state = 521}, + [9395] = {.lex_state = 133}, + [9396] = {.lex_state = 398}, + [9397] = {.lex_state = 0}, + [9398] = {.lex_state = 0}, + [9399] = {.lex_state = 398}, + [9400] = {.lex_state = 0}, + [9401] = {.lex_state = 284}, + [9402] = {.lex_state = 60}, + [9403] = {.lex_state = 0}, + [9404] = {.lex_state = 0}, + [9405] = {.lex_state = 60}, + [9406] = {.lex_state = 521}, + [9407] = {.lex_state = 133}, + [9408] = {.lex_state = 506}, + [9409] = {.lex_state = 398}, + [9410] = {.lex_state = 787}, + [9411] = {.lex_state = 398}, + [9412] = {.lex_state = 813}, + [9413] = {.lex_state = 813}, + [9414] = {.lex_state = 0}, + [9415] = {.lex_state = 0}, + [9416] = {.lex_state = 521}, + [9417] = {.lex_state = 133}, + [9418] = {.lex_state = 398}, + [9419] = {.lex_state = 398}, + [9420] = {.lex_state = 813}, + [9421] = {.lex_state = 0}, + [9422] = {.lex_state = 0}, + [9423] = {.lex_state = 521}, + [9424] = {.lex_state = 133}, + [9425] = {.lex_state = 398}, + [9426] = {.lex_state = 398}, + [9427] = {.lex_state = 813}, + [9428] = {.lex_state = 0}, [9429] = {.lex_state = 0}, - [9430] = {.lex_state = 520}, - [9431] = {.lex_state = 132}, - [9432] = {.lex_state = 0}, - [9433] = {.lex_state = 812}, - [9434] = {.lex_state = 397}, - [9435] = {.lex_state = 0}, - [9436] = {.lex_state = 812}, - [9437] = {.lex_state = 812}, - [9438] = {.lex_state = 812}, - [9439] = {.lex_state = 397}, - [9440] = {.lex_state = 0}, - [9441] = {.lex_state = 520}, - [9442] = {.lex_state = 812}, - [9443] = {.lex_state = 0}, - [9444] = {.lex_state = 132}, + [9430] = {.lex_state = 521}, + [9431] = {.lex_state = 133}, + [9432] = {.lex_state = 813}, + [9433] = {.lex_state = 398}, + [9434] = {.lex_state = 398}, + [9435] = {.lex_state = 813}, + [9436] = {.lex_state = 0}, + [9437] = {.lex_state = 0}, + [9438] = {.lex_state = 521}, + [9439] = {.lex_state = 133}, + [9440] = {.lex_state = 398}, + [9441] = {.lex_state = 398}, + [9442] = {.lex_state = 813}, + [9443] = {.lex_state = 521}, + [9444] = {.lex_state = 133}, [9445] = {.lex_state = 398}, - [9446] = {.lex_state = 812}, - [9447] = {.lex_state = 397}, - [9448] = {.lex_state = 397}, - [9449] = {.lex_state = 397}, - [9450] = {.lex_state = 60}, - [9451] = {.lex_state = 812}, - [9452] = {.lex_state = 786}, - [9453] = {.lex_state = 60}, - [9454] = {.lex_state = 397}, - [9455] = {.lex_state = 520}, - [9456] = {.lex_state = 60}, - [9457] = {.lex_state = 812}, - [9458] = {.lex_state = 132}, - [9459] = {.lex_state = 812}, - [9460] = {.lex_state = 60}, - [9461] = {.lex_state = 468}, - [9462] = {.lex_state = 812}, - [9463] = {.lex_state = 397}, - [9464] = {.lex_state = 397}, - [9465] = {.lex_state = 812}, - [9466] = {.lex_state = 397}, - [9467] = {.lex_state = 397}, - [9468] = {.lex_state = 812}, - [9469] = {.lex_state = 132}, - [9470] = {.lex_state = 812}, - [9471] = {.lex_state = 812}, - [9472] = {.lex_state = 520}, - [9473] = {.lex_state = 520}, - [9474] = {.lex_state = 132}, - [9475] = {.lex_state = 132}, - [9476] = {.lex_state = 397}, - [9477] = {.lex_state = 520}, - [9478] = {.lex_state = 397}, - [9479] = {.lex_state = 520}, - [9480] = {.lex_state = 812}, - [9481] = {.lex_state = 812}, - [9482] = {.lex_state = 468}, - [9483] = {.lex_state = 786}, - [9484] = {.lex_state = 283}, - [9485] = {.lex_state = 812}, - [9486] = {.lex_state = 786}, - [9487] = {.lex_state = 132}, - [9488] = {.lex_state = 283}, - [9489] = {.lex_state = 397}, - [9490] = {.lex_state = 283}, - [9491] = {.lex_state = 812}, - [9492] = {.lex_state = 812}, - [9493] = {.lex_state = 812}, - [9494] = {.lex_state = 812}, - [9495] = {.lex_state = 283}, - [9496] = {.lex_state = 0}, - [9497] = {.lex_state = 283}, - [9498] = {.lex_state = 56}, - [9499] = {.lex_state = 283}, - [9500] = {.lex_state = 283}, - [9501] = {.lex_state = 397}, - [9502] = {.lex_state = 0}, - [9503] = {.lex_state = 283}, - [9504] = {.lex_state = 0}, - [9505] = {.lex_state = 283}, - [9506] = {.lex_state = 397}, - [9507] = {.lex_state = 520}, - [9508] = {.lex_state = 397}, - [9509] = {.lex_state = 812}, - [9510] = {.lex_state = 397}, - [9511] = {.lex_state = 0}, - [9512] = {.lex_state = 397}, - [9513] = {.lex_state = 283}, - [9514] = {.lex_state = 397}, - [9515] = {.lex_state = 0}, - [9516] = {.lex_state = 397}, - [9517] = {.lex_state = 397}, - [9518] = {.lex_state = 812}, - [9519] = {.lex_state = 812}, - [9520] = {.lex_state = 397}, - [9521] = {.lex_state = 397}, - [9522] = {.lex_state = 397}, - [9523] = {.lex_state = 0}, - [9524] = {.lex_state = 397}, - [9525] = {.lex_state = 397}, - [9526] = {.lex_state = 0}, - [9527] = {.lex_state = 397}, - [9528] = {.lex_state = 132}, - [9529] = {.lex_state = 520}, - [9530] = {.lex_state = 397}, - [9531] = {.lex_state = 0}, + [9446] = {.lex_state = 398}, + [9447] = {.lex_state = 787}, + [9448] = {.lex_state = 521}, + [9449] = {.lex_state = 133}, + [9450] = {.lex_state = 398}, + [9451] = {.lex_state = 398}, + [9452] = {.lex_state = 284}, + [9453] = {.lex_state = 521}, + [9454] = {.lex_state = 133}, + [9455] = {.lex_state = 398}, + [9456] = {.lex_state = 398}, + [9457] = {.lex_state = 813}, + [9458] = {.lex_state = 521}, + [9459] = {.lex_state = 133}, + [9460] = {.lex_state = 398}, + [9461] = {.lex_state = 398}, + [9462] = {.lex_state = 521}, + [9463] = {.lex_state = 521}, + [9464] = {.lex_state = 398}, + [9465] = {.lex_state = 398}, + [9466] = {.lex_state = 133}, + [9467] = {.lex_state = 398}, + [9468] = {.lex_state = 398}, + [9469] = {.lex_state = 398}, + [9470] = {.lex_state = 398}, + [9471] = {.lex_state = 398}, + [9472] = {.lex_state = 813}, + [9473] = {.lex_state = 398}, + [9474] = {.lex_state = 398}, + [9475] = {.lex_state = 813}, + [9476] = {.lex_state = 398}, + [9477] = {.lex_state = 398}, + [9478] = {.lex_state = 0}, + [9479] = {.lex_state = 398}, + [9480] = {.lex_state = 398}, + [9481] = {.lex_state = 398}, + [9482] = {.lex_state = 398}, + [9483] = {.lex_state = 398}, + [9484] = {.lex_state = 398}, + [9485] = {.lex_state = 398}, + [9486] = {.lex_state = 398}, + [9487] = {.lex_state = 398}, + [9488] = {.lex_state = 398}, + [9489] = {.lex_state = 398}, + [9490] = {.lex_state = 398}, + [9491] = {.lex_state = 398}, + [9492] = {.lex_state = 398}, + [9493] = {.lex_state = 398}, + [9494] = {.lex_state = 398}, + [9495] = {.lex_state = 398}, + [9496] = {.lex_state = 398}, + [9497] = {.lex_state = 398}, + [9498] = {.lex_state = 398}, + [9499] = {.lex_state = 398}, + [9500] = {.lex_state = 398}, + [9501] = {.lex_state = 398}, + [9502] = {.lex_state = 398}, + [9503] = {.lex_state = 398}, + [9504] = {.lex_state = 398}, + [9505] = {.lex_state = 398}, + [9506] = {.lex_state = 398}, + [9507] = {.lex_state = 398}, + [9508] = {.lex_state = 398}, + [9509] = {.lex_state = 398}, + [9510] = {.lex_state = 398}, + [9511] = {.lex_state = 398}, + [9512] = {.lex_state = 398}, + [9513] = {.lex_state = 398}, + [9514] = {.lex_state = 398}, + [9515] = {.lex_state = 398}, + [9516] = {.lex_state = 398}, + [9517] = {.lex_state = 398}, + [9518] = {.lex_state = 398}, + [9519] = {.lex_state = 813}, + [9520] = {.lex_state = 469}, + [9521] = {.lex_state = 813}, + [9522] = {.lex_state = 398}, + [9523] = {.lex_state = 521}, + [9524] = {.lex_state = 0}, + [9525] = {.lex_state = 133}, + [9526] = {.lex_state = 124}, + [9527] = {.lex_state = 813}, + [9528] = {.lex_state = 787}, + [9529] = {.lex_state = 787}, + [9530] = {.lex_state = 813}, + [9531] = {.lex_state = 56}, [9532] = {.lex_state = 0}, [9533] = {.lex_state = 0}, - [9534] = {.lex_state = 520}, - [9535] = {.lex_state = 132}, - [9536] = {.lex_state = 397}, - [9537] = {.lex_state = 397}, - [9538] = {.lex_state = 397}, - [9539] = {.lex_state = 397}, - [9540] = {.lex_state = 0}, - [9541] = {.lex_state = 397}, - [9542] = {.lex_state = 397}, - [9543] = {.lex_state = 468}, - [9544] = {.lex_state = 283}, - [9545] = {.lex_state = 397}, - [9546] = {.lex_state = 283}, - [9547] = {.lex_state = 283}, - [9548] = {.lex_state = 283}, - [9549] = {.lex_state = 520}, - [9550] = {.lex_state = 397}, - [9551] = {.lex_state = 132}, - [9552] = {.lex_state = 397}, - [9553] = {.lex_state = 397}, - [9554] = {.lex_state = 0}, - [9555] = {.lex_state = 468}, - [9556] = {.lex_state = 397}, + [9534] = {.lex_state = 0}, + [9535] = {.lex_state = 813}, + [9536] = {.lex_state = 398}, + [9537] = {.lex_state = 284}, + [9538] = {.lex_state = 813}, + [9539] = {.lex_state = 813}, + [9540] = {.lex_state = 284}, + [9541] = {.lex_state = 469}, + [9542] = {.lex_state = 0}, + [9543] = {.lex_state = 0}, + [9544] = {.lex_state = 0}, + [9545] = {.lex_state = 506}, + [9546] = {.lex_state = 813}, + [9547] = {.lex_state = 0}, + [9548] = {.lex_state = 0}, + [9549] = {.lex_state = 813}, + [9550] = {.lex_state = 60}, + [9551] = {.lex_state = 133}, + [9552] = {.lex_state = 284}, + [9553] = {.lex_state = 813}, + [9554] = {.lex_state = 505}, + [9555] = {.lex_state = 284}, + [9556] = {.lex_state = 398}, [9557] = {.lex_state = 0}, - [9558] = {.lex_state = 397}, - [9559] = {.lex_state = 397}, - [9560] = {.lex_state = 0}, - [9561] = {.lex_state = 397}, - [9562] = {.lex_state = 283}, - [9563] = {.lex_state = 397}, - [9564] = {.lex_state = 0}, - [9565] = {.lex_state = 0}, - [9566] = {.lex_state = 397}, - [9567] = {.lex_state = 397}, - [9568] = {.lex_state = 397}, + [9558] = {.lex_state = 813}, + [9559] = {.lex_state = 399}, + [9560] = {.lex_state = 813}, + [9561] = {.lex_state = 813}, + [9562] = {.lex_state = 521}, + [9563] = {.lex_state = 813}, + [9564] = {.lex_state = 133}, + [9565] = {.lex_state = 813}, + [9566] = {.lex_state = 0}, + [9567] = {.lex_state = 0}, + [9568] = {.lex_state = 399}, [9569] = {.lex_state = 0}, - [9570] = {.lex_state = 283}, - [9571] = {.lex_state = 397}, - [9572] = {.lex_state = 0}, - [9573] = {.lex_state = 0}, - [9574] = {.lex_state = 0}, - [9575] = {.lex_state = 812}, - [9576] = {.lex_state = 468}, - [9577] = {.lex_state = 397}, - [9578] = {.lex_state = 812}, - [9579] = {.lex_state = 468}, - [9580] = {.lex_state = 397}, - [9581] = {.lex_state = 397}, - [9582] = {.lex_state = 132}, - [9583] = {.lex_state = 132}, - [9584] = {.lex_state = 520}, - [9585] = {.lex_state = 520}, - [9586] = {.lex_state = 397}, - [9587] = {.lex_state = 397}, - [9588] = {.lex_state = 812}, - [9589] = {.lex_state = 520}, - [9590] = {.lex_state = 397}, - [9591] = {.lex_state = 812}, - [9592] = {.lex_state = 812}, - [9593] = {.lex_state = 397}, - [9594] = {.lex_state = 812}, - [9595] = {.lex_state = 520}, - [9596] = {.lex_state = 132}, - [9597] = {.lex_state = 397}, - [9598] = {.lex_state = 0}, - [9599] = {.lex_state = 397}, - [9600] = {.lex_state = 397}, - [9601] = {.lex_state = 397}, - [9602] = {.lex_state = 397}, - [9603] = {.lex_state = 397}, - [9604] = {.lex_state = 468}, - [9605] = {.lex_state = 0}, - [9606] = {.lex_state = 397}, - [9607] = {.lex_state = 0}, - [9608] = {.lex_state = 812}, - [9609] = {.lex_state = 0}, - [9610] = {.lex_state = 397}, - [9611] = {.lex_state = 397}, - [9612] = {.lex_state = 397}, - [9613] = {.lex_state = 812}, - [9614] = {.lex_state = 397}, - [9615] = {.lex_state = 0}, - [9616] = {.lex_state = 397}, - [9617] = {.lex_state = 0}, - [9618] = {.lex_state = 397}, - [9619] = {.lex_state = 812}, - [9620] = {.lex_state = 517}, - [9621] = {.lex_state = 812}, - [9622] = {.lex_state = 397}, - [9623] = {.lex_state = 397}, - [9624] = {.lex_state = 0}, - [9625] = {.lex_state = 0}, - [9626] = {.lex_state = 0}, - [9627] = {.lex_state = 397}, - [9628] = {.lex_state = 786}, - [9629] = {.lex_state = 397}, - [9630] = {.lex_state = 2023}, - [9631] = {.lex_state = 397}, - [9632] = {.lex_state = 812}, - [9633] = {.lex_state = 812}, - [9634] = {.lex_state = 812}, - [9635] = {.lex_state = 812}, - [9636] = {.lex_state = 812}, - [9637] = {.lex_state = 812}, - [9638] = {.lex_state = 812}, - [9639] = {.lex_state = 812}, - [9640] = {.lex_state = 504}, - [9641] = {.lex_state = 0}, - [9642] = {.lex_state = 812}, - [9643] = {.lex_state = 397}, - [9644] = {.lex_state = 812}, - [9645] = {.lex_state = 0}, - [9646] = {.lex_state = 132}, - [9647] = {.lex_state = 812}, - [9648] = {.lex_state = 812}, - [9649] = {.lex_state = 812}, - [9650] = {.lex_state = 520}, - [9651] = {.lex_state = 812}, - [9652] = {.lex_state = 397}, - [9653] = {.lex_state = 0}, - [9654] = {.lex_state = 397}, - [9655] = {.lex_state = 520}, - [9656] = {.lex_state = 132}, - [9657] = {.lex_state = 283}, - [9658] = {.lex_state = 397}, - [9659] = {.lex_state = 397}, - [9660] = {.lex_state = 397}, - [9661] = {.lex_state = 397}, - [9662] = {.lex_state = 397}, - [9663] = {.lex_state = 812}, - [9664] = {.lex_state = 468}, - [9665] = {.lex_state = 397}, - [9666] = {.lex_state = 283}, - [9667] = {.lex_state = 283}, - [9668] = {.lex_state = 132}, - [9669] = {.lex_state = 520}, - [9670] = {.lex_state = 0}, - [9671] = {.lex_state = 397}, - [9672] = {.lex_state = 283}, - [9673] = {.lex_state = 132}, - [9674] = {.lex_state = 0}, - [9675] = {.lex_state = 812}, - [9676] = {.lex_state = 812}, - [9677] = {.lex_state = 0}, - [9678] = {.lex_state = 0}, - [9679] = {.lex_state = 0}, - [9680] = {.lex_state = 124}, - [9681] = {.lex_state = 0}, - [9682] = {.lex_state = 812}, - [9683] = {.lex_state = 283}, - [9684] = {.lex_state = 397}, - [9685] = {.lex_state = 0}, - [9686] = {.lex_state = 812}, - [9687] = {.lex_state = 468}, - [9688] = {.lex_state = 0}, - [9689] = {.lex_state = 2023}, - [9690] = {.lex_state = 283}, - [9691] = {.lex_state = 397}, - [9692] = {.lex_state = 2031}, - [9693] = {.lex_state = 812}, - [9694] = {.lex_state = 397}, - [9695] = {.lex_state = 397}, - [9696] = {.lex_state = 812}, - [9697] = {.lex_state = 132}, - [9698] = {.lex_state = 468}, - [9699] = {.lex_state = 520}, - [9700] = {.lex_state = 132}, - [9701] = {.lex_state = 397}, - [9702] = {.lex_state = 397}, - [9703] = {.lex_state = 132}, - [9704] = {.lex_state = 812}, - [9705] = {.lex_state = 132}, - [9706] = {.lex_state = 520}, - [9707] = {.lex_state = 786}, - [9708] = {.lex_state = 504}, - [9709] = {.lex_state = 812}, - [9710] = {.lex_state = 132}, - [9711] = {.lex_state = 812}, - [9712] = {.lex_state = 132}, - [9713] = {.lex_state = 812}, - [9714] = {.lex_state = 397}, - [9715] = {.lex_state = 520}, - [9716] = {.lex_state = 132}, - [9717] = {.lex_state = 132}, - [9718] = {.lex_state = 2023}, - [9719] = {.lex_state = 283}, - [9720] = {.lex_state = 397}, - [9721] = {.lex_state = 468}, - [9722] = {.lex_state = 468}, - [9723] = {.lex_state = 812}, - [9724] = {.lex_state = 0}, - [9725] = {.lex_state = 0}, - [9726] = {.lex_state = 0}, - [9727] = {.lex_state = 812}, - [9728] = {.lex_state = 812}, - [9729] = {.lex_state = 397}, - [9730] = {.lex_state = 397}, - [9731] = {.lex_state = 0}, - [9732] = {.lex_state = 0}, - [9733] = {.lex_state = 397}, + [9570] = {.lex_state = 813}, + [9571] = {.lex_state = 813}, + [9572] = {.lex_state = 787}, + [9573] = {.lex_state = 813}, + [9574] = {.lex_state = 284}, + [9575] = {.lex_state = 124}, + [9576] = {.lex_state = 124}, + [9577] = {.lex_state = 124}, + [9578] = {.lex_state = 124}, + [9579] = {.lex_state = 813}, + [9580] = {.lex_state = 813}, + [9581] = {.lex_state = 0}, + [9582] = {.lex_state = 813}, + [9583] = {.lex_state = 813}, + [9584] = {.lex_state = 813}, + [9585] = {.lex_state = 813}, + [9586] = {.lex_state = 0}, + [9587] = {.lex_state = 521}, + [9588] = {.lex_state = 133}, + [9589] = {.lex_state = 0}, + [9590] = {.lex_state = 813}, + [9591] = {.lex_state = 284}, + [9592] = {.lex_state = 398}, + [9593] = {.lex_state = 813}, + [9594] = {.lex_state = 813}, + [9595] = {.lex_state = 469}, + [9596] = {.lex_state = 398}, + [9597] = {.lex_state = 813}, + [9598] = {.lex_state = 813}, + [9599] = {.lex_state = 0}, + [9600] = {.lex_state = 813}, + [9601] = {.lex_state = 0}, + [9602] = {.lex_state = 284}, + [9603] = {.lex_state = 284}, + [9604] = {.lex_state = 0}, + [9605] = {.lex_state = 521}, + [9606] = {.lex_state = 284}, + [9607] = {.lex_state = 124}, + [9608] = {.lex_state = 133}, + [9609] = {.lex_state = 398}, + [9610] = {.lex_state = 0}, + [9611] = {.lex_state = 284}, + [9612] = {.lex_state = 469}, + [9613] = {.lex_state = 813}, + [9614] = {.lex_state = 813}, + [9615] = {.lex_state = 284}, + [9616] = {.lex_state = 787}, + [9617] = {.lex_state = 813}, + [9618] = {.lex_state = 813}, + [9619] = {.lex_state = 813}, + [9620] = {.lex_state = 133}, + [9621] = {.lex_state = 398}, + [9622] = {.lex_state = 398}, + [9623] = {.lex_state = 813}, + [9624] = {.lex_state = 284}, + [9625] = {.lex_state = 787}, + [9626] = {.lex_state = 787}, + [9627] = {.lex_state = 787}, + [9628] = {.lex_state = 284}, + [9629] = {.lex_state = 813}, + [9630] = {.lex_state = 813}, + [9631] = {.lex_state = 0}, + [9632] = {.lex_state = 813}, + [9633] = {.lex_state = 0}, + [9634] = {.lex_state = 0}, + [9635] = {.lex_state = 813}, + [9636] = {.lex_state = 813}, + [9637] = {.lex_state = 521}, + [9638] = {.lex_state = 133}, + [9639] = {.lex_state = 469}, + [9640] = {.lex_state = 2024}, + [9641] = {.lex_state = 398}, + [9642] = {.lex_state = 0}, + [9643] = {.lex_state = 398}, + [9644] = {.lex_state = 813}, + [9645] = {.lex_state = 133}, + [9646] = {.lex_state = 133}, + [9647] = {.lex_state = 133}, + [9648] = {.lex_state = 133}, + [9649] = {.lex_state = 469}, + [9650] = {.lex_state = 469}, + [9651] = {.lex_state = 398}, + [9652] = {.lex_state = 398}, + [9653] = {.lex_state = 813}, + [9654] = {.lex_state = 813}, + [9655] = {.lex_state = 813}, + [9656] = {.lex_state = 813}, + [9657] = {.lex_state = 0}, + [9658] = {.lex_state = 0}, + [9659] = {.lex_state = 813}, + [9660] = {.lex_state = 813}, + [9661] = {.lex_state = 284}, + [9662] = {.lex_state = 284}, + [9663] = {.lex_state = 284}, + [9664] = {.lex_state = 0}, + [9665] = {.lex_state = 0}, + [9666] = {.lex_state = 518}, + [9667] = {.lex_state = 813}, + [9668] = {.lex_state = 813}, + [9669] = {.lex_state = 813}, + [9670] = {.lex_state = 813}, + [9671] = {.lex_state = 813}, + [9672] = {.lex_state = 813}, + [9673] = {.lex_state = 813}, + [9674] = {.lex_state = 813}, + [9675] = {.lex_state = 521}, + [9676] = {.lex_state = 0}, + [9677] = {.lex_state = 133}, + [9678] = {.lex_state = 521}, + [9679] = {.lex_state = 398}, + [9680] = {.lex_state = 133}, + [9681] = {.lex_state = 813}, + [9682] = {.lex_state = 813}, + [9683] = {.lex_state = 469}, + [9684] = {.lex_state = 521}, + [9685] = {.lex_state = 813}, + [9686] = {.lex_state = 2024}, + [9687] = {.lex_state = 813}, + [9688] = {.lex_state = 398}, + [9689] = {.lex_state = 133}, + [9690] = {.lex_state = 813}, + [9691] = {.lex_state = 398}, + [9692] = {.lex_state = 469}, + [9693] = {.lex_state = 398}, + [9694] = {.lex_state = 0}, + [9695] = {.lex_state = 813}, + [9696] = {.lex_state = 398}, + [9697] = {.lex_state = 0}, + [9698] = {.lex_state = 0}, + [9699] = {.lex_state = 0}, + [9700] = {.lex_state = 284}, + [9701] = {.lex_state = 813}, + [9702] = {.lex_state = 0}, + [9703] = {.lex_state = 813}, + [9704] = {.lex_state = 0}, + [9705] = {.lex_state = 813}, + [9706] = {.lex_state = 813}, + [9707] = {.lex_state = 813}, + [9708] = {.lex_state = 0}, + [9709] = {.lex_state = 398}, + [9710] = {.lex_state = 284}, + [9711] = {.lex_state = 469}, + [9712] = {.lex_state = 813}, + [9713] = {.lex_state = 398}, + [9714] = {.lex_state = 813}, + [9715] = {.lex_state = 813}, + [9716] = {.lex_state = 813}, + [9717] = {.lex_state = 813}, + [9718] = {.lex_state = 813}, + [9719] = {.lex_state = 533}, + [9720] = {.lex_state = 336}, + [9721] = {.lex_state = 813}, + [9722] = {.lex_state = 0}, + [9723] = {.lex_state = 813}, + [9724] = {.lex_state = 813}, + [9725] = {.lex_state = 813}, + [9726] = {.lex_state = 284}, + [9727] = {.lex_state = 813}, + [9728] = {.lex_state = 521}, + [9729] = {.lex_state = 133}, + [9730] = {.lex_state = 813}, + [9731] = {.lex_state = 813}, + [9732] = {.lex_state = 398}, + [9733] = {.lex_state = 521}, [9734] = {.lex_state = 0}, - [9735] = {.lex_state = 0}, + [9735] = {.lex_state = 284}, [9736] = {.lex_state = 0}, - [9737] = {.lex_state = 0}, - [9738] = {.lex_state = 0}, - [9739] = {.lex_state = 283}, - [9740] = {.lex_state = 812}, - [9741] = {.lex_state = 0}, - [9742] = {.lex_state = 520}, - [9743] = {.lex_state = 812}, - [9744] = {.lex_state = 0}, - [9745] = {.lex_state = 0}, - [9746] = {.lex_state = 0}, - [9747] = {.lex_state = 812}, - [9748] = {.lex_state = 0}, - [9749] = {.lex_state = 283}, - [9750] = {.lex_state = 812}, - [9751] = {.lex_state = 132}, - [9752] = {.lex_state = 0}, - [9753] = {.lex_state = 397}, - [9754] = {.lex_state = 812}, - [9755] = {.lex_state = 283}, - [9756] = {.lex_state = 812}, - [9757] = {.lex_state = 812}, - [9758] = {.lex_state = 812}, - [9759] = {.lex_state = 398}, - [9760] = {.lex_state = 0}, - [9761] = {.lex_state = 786}, - [9762] = {.lex_state = 786}, - [9763] = {.lex_state = 786}, - [9764] = {.lex_state = 0}, - [9765] = {.lex_state = 812}, - [9766] = {.lex_state = 0}, - [9767] = {.lex_state = 812}, - [9768] = {.lex_state = 0}, - [9769] = {.lex_state = 397}, - [9770] = {.lex_state = 812}, - [9771] = {.lex_state = 812}, - [9772] = {.lex_state = 283}, - [9773] = {.lex_state = 812}, - [9774] = {.lex_state = 520}, - [9775] = {.lex_state = 132}, - [9776] = {.lex_state = 397}, - [9777] = {.lex_state = 132}, - [9778] = {.lex_state = 520}, - [9779] = {.lex_state = 397}, - [9780] = {.lex_state = 397}, - [9781] = {.lex_state = 812}, - [9782] = {.lex_state = 786}, - [9783] = {.lex_state = 0}, - [9784] = {.lex_state = 0}, - [9785] = {.lex_state = 812}, - [9786] = {.lex_state = 812}, - [9787] = {.lex_state = 812}, - [9788] = {.lex_state = 0}, - [9789] = {.lex_state = 397}, - [9790] = {.lex_state = 812}, - [9791] = {.lex_state = 812}, - [9792] = {.lex_state = 812}, - [9793] = {.lex_state = 812}, - [9794] = {.lex_state = 506}, - [9795] = {.lex_state = 0}, - [9796] = {.lex_state = 812}, - [9797] = {.lex_state = 812}, - [9798] = {.lex_state = 812}, - [9799] = {.lex_state = 0}, - [9800] = {.lex_state = 398}, - [9801] = {.lex_state = 60}, - [9802] = {.lex_state = 506}, - [9803] = {.lex_state = 0}, - [9804] = {.lex_state = 60}, - [9805] = {.lex_state = 812}, - [9806] = {.lex_state = 812}, - [9807] = {.lex_state = 335}, - [9808] = {.lex_state = 786}, - [9809] = {.lex_state = 812}, - [9810] = {.lex_state = 812}, - [9811] = {.lex_state = 0}, - [9812] = {.lex_state = 812}, - [9813] = {.lex_state = 812}, - [9814] = {.lex_state = 0}, - [9815] = {.lex_state = 468}, - [9816] = {.lex_state = 397}, - [9817] = {.lex_state = 812}, - [9818] = {.lex_state = 786}, - [9819] = {.lex_state = 0}, - [9820] = {.lex_state = 505}, - [9821] = {.lex_state = 132}, - [9822] = {.lex_state = 520}, - [9823] = {.lex_state = 283}, - [9824] = {.lex_state = 124}, - [9825] = {.lex_state = 124}, - [9826] = {.lex_state = 124}, - [9827] = {.lex_state = 124}, - [9828] = {.lex_state = 812}, - [9829] = {.lex_state = 812}, - [9830] = {.lex_state = 812}, - [9831] = {.lex_state = 397}, - [9832] = {.lex_state = 812}, - [9833] = {.lex_state = 520}, - [9834] = {.lex_state = 132}, - [9835] = {.lex_state = 518}, - [9836] = {.lex_state = 812}, - [9837] = {.lex_state = 812}, - [9838] = {.lex_state = 397}, - [9839] = {.lex_state = 283}, - [9840] = {.lex_state = 505}, - [9841] = {.lex_state = 283}, - [9842] = {.lex_state = 60}, - [9843] = {.lex_state = 0}, - [9844] = {.lex_state = 132}, - [9845] = {.lex_state = 471}, - [9846] = {.lex_state = 132}, - [9847] = {.lex_state = 283}, - [9848] = {.lex_state = 132}, - [9849] = {.lex_state = 471}, - [9850] = {.lex_state = 471}, - [9851] = {.lex_state = 132}, - [9852] = {.lex_state = 471}, - [9853] = {.lex_state = 132}, - [9854] = {.lex_state = 471}, - [9855] = {.lex_state = 471}, - [9856] = {.lex_state = 283}, - [9857] = {.lex_state = 132}, - [9858] = {.lex_state = 528}, - [9859] = {.lex_state = 812}, - [9860] = {.lex_state = 812}, - [9861] = {.lex_state = 471}, - [9862] = {.lex_state = 132}, - [9863] = {.lex_state = 132}, - [9864] = {.lex_state = 507}, - [9865] = {.lex_state = 471}, - [9866] = {.lex_state = 786}, - [9867] = {.lex_state = 471}, - [9868] = {.lex_state = 471}, - [9869] = {.lex_state = 132}, - [9870] = {.lex_state = 507}, - [9871] = {.lex_state = 132}, - [9872] = {.lex_state = 786}, - [9873] = {.lex_state = 334}, - [9874] = {.lex_state = 471}, - [9875] = {.lex_state = 132}, - [9876] = {.lex_state = 786}, - [9877] = {.lex_state = 507}, - [9878] = {.lex_state = 507}, - [9879] = {.lex_state = 959}, - [9880] = {.lex_state = 482}, - [9881] = {.lex_state = 471}, - [9882] = {.lex_state = 507}, - [9883] = {.lex_state = 132}, - [9884] = {.lex_state = 786}, - [9885] = {.lex_state = 471}, - [9886] = {.lex_state = 471}, - [9887] = {.lex_state = 471}, - [9888] = {.lex_state = 132}, - [9889] = {.lex_state = 132}, - [9890] = {.lex_state = 471}, - [9891] = {.lex_state = 132}, - [9892] = {.lex_state = 531}, - [9893] = {.lex_state = 132}, - [9894] = {.lex_state = 132}, - [9895] = {.lex_state = 471}, - [9896] = {.lex_state = 543}, - [9897] = {.lex_state = 471}, - [9898] = {.lex_state = 471}, - [9899] = {.lex_state = 132}, - [9900] = {.lex_state = 471}, - [9901] = {.lex_state = 543}, - [9902] = {.lex_state = 471}, - [9903] = {.lex_state = 471}, - [9904] = {.lex_state = 132}, - [9905] = {.lex_state = 786}, - [9906] = {.lex_state = 132}, - [9907] = {.lex_state = 471}, - [9908] = {.lex_state = 132}, - [9909] = {.lex_state = 132}, - [9910] = {.lex_state = 786}, - [9911] = {.lex_state = 786}, - [9912] = {.lex_state = 786}, - [9913] = {.lex_state = 132}, - [9914] = {.lex_state = 132}, - [9915] = {.lex_state = 471}, - [9916] = {.lex_state = 812}, - [9917] = {.lex_state = 132}, - [9918] = {.lex_state = 397}, - [9919] = {.lex_state = 471}, - [9920] = {.lex_state = 132}, - [9921] = {.lex_state = 471}, - [9922] = {.lex_state = 60}, - [9923] = {.lex_state = 132}, - [9924] = {.lex_state = 812}, - [9925] = {.lex_state = 812}, - [9926] = {.lex_state = 132}, - [9927] = {.lex_state = 132}, - [9928] = {.lex_state = 786}, - [9929] = {.lex_state = 0}, - [9930] = {.lex_state = 0}, - [9931] = {.lex_state = 529}, - [9932] = {.lex_state = 471}, - [9933] = {.lex_state = 124}, - [9934] = {.lex_state = 124}, - [9935] = {.lex_state = 132}, - [9936] = {.lex_state = 531}, - [9937] = {.lex_state = 124}, - [9938] = {.lex_state = 471}, - [9939] = {.lex_state = 538}, - [9940] = {.lex_state = 132}, - [9941] = {.lex_state = 132}, - [9942] = {.lex_state = 132}, - [9943] = {.lex_state = 124}, - [9944] = {.lex_state = 64}, - [9945] = {.lex_state = 124}, - [9946] = {.lex_state = 471}, - [9947] = {.lex_state = 451}, - [9948] = {.lex_state = 0}, - [9949] = {.lex_state = 471}, - [9950] = {.lex_state = 471}, - [9951] = {.lex_state = 124}, - [9952] = {.lex_state = 132}, - [9953] = {.lex_state = 959}, - [9954] = {.lex_state = 471}, - [9955] = {.lex_state = 132}, - [9956] = {.lex_state = 132}, - [9957] = {.lex_state = 124}, - [9958] = {.lex_state = 60}, - [9959] = {.lex_state = 124}, - [9960] = {.lex_state = 124}, - [9961] = {.lex_state = 132}, - [9962] = {.lex_state = 471}, - [9963] = {.lex_state = 132}, - [9964] = {.lex_state = 124}, - [9965] = {.lex_state = 471}, - [9966] = {.lex_state = 132}, - [9967] = {.lex_state = 60}, - [9968] = {.lex_state = 471}, - [9969] = {.lex_state = 124}, - [9970] = {.lex_state = 528}, - [9971] = {.lex_state = 60}, - [9972] = {.lex_state = 471}, - [9973] = {.lex_state = 132}, - [9974] = {.lex_state = 60}, - [9975] = {.lex_state = 60}, - [9976] = {.lex_state = 132}, - [9977] = {.lex_state = 132}, - [9978] = {.lex_state = 124}, - [9979] = {.lex_state = 786}, - [9980] = {.lex_state = 0}, - [9981] = {.lex_state = 132}, - [9982] = {.lex_state = 132}, - [9983] = {.lex_state = 471}, - [9984] = {.lex_state = 471}, - [9985] = {.lex_state = 132}, - [9986] = {.lex_state = 471}, - [9987] = {.lex_state = 132}, - [9988] = {.lex_state = 132}, - [9989] = {.lex_state = 124}, - [9990] = {.lex_state = 132}, - [9991] = {.lex_state = 471}, - [9992] = {.lex_state = 60}, - [9993] = {.lex_state = 132}, - [9994] = {.lex_state = 786}, - [9995] = {.lex_state = 471}, - [9996] = {.lex_state = 132}, - [9997] = {.lex_state = 471}, - [9998] = {.lex_state = 132}, - [9999] = {.lex_state = 132}, - [10000] = {.lex_state = 261}, - [10001] = {.lex_state = 60}, - [10002] = {.lex_state = 132}, - [10003] = {.lex_state = 471}, - [10004] = {.lex_state = 786}, - [10005] = {.lex_state = 60}, - [10006] = {.lex_state = 132}, - [10007] = {.lex_state = 132}, - [10008] = {.lex_state = 471}, - [10009] = {.lex_state = 471}, - [10010] = {.lex_state = 132}, - [10011] = {.lex_state = 60}, - [10012] = {.lex_state = 132}, - [10013] = {.lex_state = 959}, - [10014] = {.lex_state = 124}, - [10015] = {.lex_state = 132}, - [10016] = {.lex_state = 60}, - [10017] = {.lex_state = 132}, - [10018] = {.lex_state = 132}, - [10019] = {.lex_state = 132}, - [10020] = {.lex_state = 261}, - [10021] = {.lex_state = 471}, - [10022] = {.lex_state = 471}, - [10023] = {.lex_state = 471}, - [10024] = {.lex_state = 786}, - [10025] = {.lex_state = 132}, - [10026] = {.lex_state = 534}, - [10027] = {.lex_state = 132}, - [10028] = {.lex_state = 132}, - [10029] = {.lex_state = 471}, - [10030] = {.lex_state = 534}, - [10031] = {.lex_state = 60}, - [10032] = {.lex_state = 124}, - [10033] = {.lex_state = 132}, - [10034] = {.lex_state = 124}, - [10035] = {.lex_state = 471}, - [10036] = {.lex_state = 60}, - [10037] = {.lex_state = 124}, - [10038] = {.lex_state = 786}, - [10039] = {.lex_state = 132}, - [10040] = {.lex_state = 60}, - [10041] = {.lex_state = 132}, - [10042] = {.lex_state = 132}, - [10043] = {.lex_state = 471}, - [10044] = {.lex_state = 471}, - [10045] = {.lex_state = 132}, - [10046] = {.lex_state = 132}, - [10047] = {.lex_state = 132}, - [10048] = {.lex_state = 132}, - [10049] = {.lex_state = 60}, - [10050] = {.lex_state = 132}, - [10051] = {.lex_state = 132}, - [10052] = {.lex_state = 471}, - [10053] = {.lex_state = 132}, - [10054] = {.lex_state = 471}, - [10055] = {.lex_state = 60}, - [10056] = {.lex_state = 471}, - [10057] = {.lex_state = 132}, - [10058] = {.lex_state = 132}, - [10059] = {.lex_state = 786}, - [10060] = {.lex_state = 132}, - [10061] = {.lex_state = 60}, - [10062] = {.lex_state = 471}, - [10063] = {.lex_state = 786}, - [10064] = {.lex_state = 471}, - [10065] = {.lex_state = 451}, - [10066] = {.lex_state = 786}, - [10067] = {.lex_state = 959}, - [10068] = {.lex_state = 471}, - [10069] = {.lex_state = 132}, - [10070] = {.lex_state = 786}, - [10071] = {.lex_state = 132}, - [10072] = {.lex_state = 132}, - [10073] = {.lex_state = 60}, - [10074] = {.lex_state = 786}, - [10075] = {.lex_state = 132}, - [10076] = {.lex_state = 60}, + [9737] = {.lex_state = 469}, + [9738] = {.lex_state = 398}, + [9739] = {.lex_state = 469}, + [9740] = {.lex_state = 813}, + [9741] = {.lex_state = 284}, + [9742] = {.lex_state = 0}, + [9743] = {.lex_state = 0}, + [9744] = {.lex_state = 521}, + [9745] = {.lex_state = 133}, + [9746] = {.lex_state = 398}, + [9747] = {.lex_state = 813}, + [9748] = {.lex_state = 813}, + [9749] = {.lex_state = 398}, + [9750] = {.lex_state = 0}, + [9751] = {.lex_state = 813}, + [9752] = {.lex_state = 813}, + [9753] = {.lex_state = 505}, + [9754] = {.lex_state = 813}, + [9755] = {.lex_state = 813}, + [9756] = {.lex_state = 813}, + [9757] = {.lex_state = 813}, + [9758] = {.lex_state = 813}, + [9759] = {.lex_state = 813}, + [9760] = {.lex_state = 813}, + [9761] = {.lex_state = 813}, + [9762] = {.lex_state = 284}, + [9763] = {.lex_state = 133}, + [9764] = {.lex_state = 284}, + [9765] = {.lex_state = 133}, + [9766] = {.lex_state = 133}, + [9767] = {.lex_state = 133}, + [9768] = {.lex_state = 133}, + [9769] = {.lex_state = 133}, + [9770] = {.lex_state = 133}, + [9771] = {.lex_state = 133}, + [9772] = {.lex_state = 133}, + [9773] = {.lex_state = 133}, + [9774] = {.lex_state = 813}, + [9775] = {.lex_state = 284}, + [9776] = {.lex_state = 521}, + [9777] = {.lex_state = 133}, + [9778] = {.lex_state = 398}, + [9779] = {.lex_state = 284}, + [9780] = {.lex_state = 813}, + [9781] = {.lex_state = 813}, + [9782] = {.lex_state = 813}, + [9783] = {.lex_state = 284}, + [9784] = {.lex_state = 813}, + [9785] = {.lex_state = 398}, + [9786] = {.lex_state = 284}, + [9787] = {.lex_state = 813}, + [9788] = {.lex_state = 813}, + [9789] = {.lex_state = 813}, + [9790] = {.lex_state = 813}, + [9791] = {.lex_state = 813}, + [9792] = {.lex_state = 813}, + [9793] = {.lex_state = 469}, + [9794] = {.lex_state = 813}, + [9795] = {.lex_state = 531}, + [9796] = {.lex_state = 284}, + [9797] = {.lex_state = 398}, + [9798] = {.lex_state = 813}, + [9799] = {.lex_state = 813}, + [9800] = {.lex_state = 452}, + [9801] = {.lex_state = 124}, + [9802] = {.lex_state = 124}, + [9803] = {.lex_state = 813}, + [9804] = {.lex_state = 813}, + [9805] = {.lex_state = 0}, + [9806] = {.lex_state = 813}, + [9807] = {.lex_state = 813}, + [9808] = {.lex_state = 0}, + [9809] = {.lex_state = 60}, + [9810] = {.lex_state = 521}, + [9811] = {.lex_state = 133}, + [9812] = {.lex_state = 813}, + [9813] = {.lex_state = 398}, + [9814] = {.lex_state = 133}, + [9815] = {.lex_state = 813}, + [9816] = {.lex_state = 813}, + [9817] = {.lex_state = 398}, + [9818] = {.lex_state = 813}, + [9819] = {.lex_state = 469}, + [9820] = {.lex_state = 813}, + [9821] = {.lex_state = 0}, + [9822] = {.lex_state = 0}, + [9823] = {.lex_state = 521}, + [9824] = {.lex_state = 133}, + [9825] = {.lex_state = 813}, + [9826] = {.lex_state = 521}, + [9827] = {.lex_state = 813}, + [9828] = {.lex_state = 813}, + [9829] = {.lex_state = 521}, + [9830] = {.lex_state = 813}, + [9831] = {.lex_state = 813}, + [9832] = {.lex_state = 813}, + [9833] = {.lex_state = 813}, + [9834] = {.lex_state = 813}, + [9835] = {.lex_state = 813}, + [9836] = {.lex_state = 813}, + [9837] = {.lex_state = 813}, + [9838] = {.lex_state = 813}, + [9839] = {.lex_state = 521}, + [9840] = {.lex_state = 133}, + [9841] = {.lex_state = 284}, + [9842] = {.lex_state = 472}, + [9843] = {.lex_state = 472}, + [9844] = {.lex_state = 133}, + [9845] = {.lex_state = 472}, + [9846] = {.lex_state = 0}, + [9847] = {.lex_state = 133}, + [9848] = {.lex_state = 133}, + [9849] = {.lex_state = 472}, + [9850] = {.lex_state = 0}, + [9851] = {.lex_state = 124}, + [9852] = {.lex_state = 133}, + [9853] = {.lex_state = 472}, + [9854] = {.lex_state = 472}, + [9855] = {.lex_state = 133}, + [9856] = {.lex_state = 472}, + [9857] = {.lex_state = 335}, + [9858] = {.lex_state = 133}, + [9859] = {.lex_state = 133}, + [9860] = {.lex_state = 472}, + [9861] = {.lex_state = 472}, + [9862] = {.lex_state = 133}, + [9863] = {.lex_state = 133}, + [9864] = {.lex_state = 472}, + [9865] = {.lex_state = 508}, + [9866] = {.lex_state = 472}, + [9867] = {.lex_state = 133}, + [9868] = {.lex_state = 472}, + [9869] = {.lex_state = 133}, + [9870] = {.lex_state = 472}, + [9871] = {.lex_state = 535}, + [9872] = {.lex_state = 124}, + [9873] = {.lex_state = 787}, + [9874] = {.lex_state = 133}, + [9875] = {.lex_state = 787}, + [9876] = {.lex_state = 813}, + [9877] = {.lex_state = 133}, + [9878] = {.lex_state = 124}, + [9879] = {.lex_state = 133}, + [9880] = {.lex_state = 472}, + [9881] = {.lex_state = 133}, + [9882] = {.lex_state = 472}, + [9883] = {.lex_state = 133}, + [9884] = {.lex_state = 472}, + [9885] = {.lex_state = 472}, + [9886] = {.lex_state = 960}, + [9887] = {.lex_state = 133}, + [9888] = {.lex_state = 472}, + [9889] = {.lex_state = 133}, + [9890] = {.lex_state = 133}, + [9891] = {.lex_state = 472}, + [9892] = {.lex_state = 472}, + [9893] = {.lex_state = 540}, + [9894] = {.lex_state = 261}, + [9895] = {.lex_state = 133}, + [9896] = {.lex_state = 472}, + [9897] = {.lex_state = 133}, + [9898] = {.lex_state = 133}, + [9899] = {.lex_state = 472}, + [9900] = {.lex_state = 124}, + [9901] = {.lex_state = 787}, + [9902] = {.lex_state = 787}, + [9903] = {.lex_state = 472}, + [9904] = {.lex_state = 787}, + [9905] = {.lex_state = 133}, + [9906] = {.lex_state = 472}, + [9907] = {.lex_state = 133}, + [9908] = {.lex_state = 472}, + [9909] = {.lex_state = 541}, + [9910] = {.lex_state = 133}, + [9911] = {.lex_state = 133}, + [9912] = {.lex_state = 472}, + [9913] = {.lex_state = 472}, + [9914] = {.lex_state = 133}, + [9915] = {.lex_state = 472}, + [9916] = {.lex_state = 133}, + [9917] = {.lex_state = 133}, + [9918] = {.lex_state = 472}, + [9919] = {.lex_state = 472}, + [9920] = {.lex_state = 133}, + [9921] = {.lex_state = 472}, + [9922] = {.lex_state = 472}, + [9923] = {.lex_state = 133}, + [9924] = {.lex_state = 472}, + [9925] = {.lex_state = 133}, + [9926] = {.lex_state = 472}, + [9927] = {.lex_state = 133}, + [9928] = {.lex_state = 472}, + [9929] = {.lex_state = 472}, + [9930] = {.lex_state = 133}, + [9931] = {.lex_state = 472}, + [9932] = {.lex_state = 133}, + [9933] = {.lex_state = 472}, + [9934] = {.lex_state = 133}, + [9935] = {.lex_state = 472}, + [9936] = {.lex_state = 960}, + [9937] = {.lex_state = 787}, + [9938] = {.lex_state = 133}, + [9939] = {.lex_state = 60}, + [9940] = {.lex_state = 133}, + [9941] = {.lex_state = 535}, + [9942] = {.lex_state = 133}, + [9943] = {.lex_state = 60}, + [9944] = {.lex_state = 133}, + [9945] = {.lex_state = 133}, + [9946] = {.lex_state = 133}, + [9947] = {.lex_state = 472}, + [9948] = {.lex_state = 133}, + [9949] = {.lex_state = 133}, + [9950] = {.lex_state = 472}, + [9951] = {.lex_state = 133}, + [9952] = {.lex_state = 133}, + [9953] = {.lex_state = 133}, + [9954] = {.lex_state = 133}, + [9955] = {.lex_state = 472}, + [9956] = {.lex_state = 133}, + [9957] = {.lex_state = 133}, + [9958] = {.lex_state = 133}, + [9959] = {.lex_state = 133}, + [9960] = {.lex_state = 133}, + [9961] = {.lex_state = 133}, + [9962] = {.lex_state = 133}, + [9963] = {.lex_state = 133}, + [9964] = {.lex_state = 0}, + [9965] = {.lex_state = 133}, + [9966] = {.lex_state = 472}, + [9967] = {.lex_state = 133}, + [9968] = {.lex_state = 133}, + [9969] = {.lex_state = 133}, + [9970] = {.lex_state = 787}, + [9971] = {.lex_state = 133}, + [9972] = {.lex_state = 133}, + [9973] = {.lex_state = 133}, + [9974] = {.lex_state = 133}, + [9975] = {.lex_state = 133}, + [9976] = {.lex_state = 787}, + [9977] = {.lex_state = 133}, + [9978] = {.lex_state = 133}, + [9979] = {.lex_state = 133}, + [9980] = {.lex_state = 60}, + [9981] = {.lex_state = 133}, + [9982] = {.lex_state = 133}, + [9983] = {.lex_state = 133}, + [9984] = {.lex_state = 133}, + [9985] = {.lex_state = 472}, + [9986] = {.lex_state = 133}, + [9987] = {.lex_state = 133}, + [9988] = {.lex_state = 133}, + [9989] = {.lex_state = 133}, + [9990] = {.lex_state = 133}, + [9991] = {.lex_state = 133}, + [9992] = {.lex_state = 787}, + [9993] = {.lex_state = 133}, + [9994] = {.lex_state = 133}, + [9995] = {.lex_state = 133}, + [9996] = {.lex_state = 133}, + [9997] = {.lex_state = 472}, + [9998] = {.lex_state = 133}, + [9999] = {.lex_state = 787}, + [10000] = {.lex_state = 133}, + [10001] = {.lex_state = 133}, + [10002] = {.lex_state = 133}, + [10003] = {.lex_state = 133}, + [10004] = {.lex_state = 133}, + [10005] = {.lex_state = 133}, + [10006] = {.lex_state = 133}, + [10007] = {.lex_state = 124}, + [10008] = {.lex_state = 472}, + [10009] = {.lex_state = 60}, + [10010] = {.lex_state = 0}, + [10011] = {.lex_state = 0}, + [10012] = {.lex_state = 133}, + [10013] = {.lex_state = 813}, + [10014] = {.lex_state = 787}, + [10015] = {.lex_state = 0}, + [10016] = {.lex_state = 787}, + [10017] = {.lex_state = 813}, + [10018] = {.lex_state = 133}, + [10019] = {.lex_state = 787}, + [10020] = {.lex_state = 541}, + [10021] = {.lex_state = 133}, + [10022] = {.lex_state = 472}, + [10023] = {.lex_state = 133}, + [10024] = {.lex_state = 472}, + [10025] = {.lex_state = 787}, + [10026] = {.lex_state = 133}, + [10027] = {.lex_state = 472}, + [10028] = {.lex_state = 133}, + [10029] = {.lex_state = 472}, + [10030] = {.lex_state = 544}, + [10031] = {.lex_state = 787}, + [10032] = {.lex_state = 508}, + [10033] = {.lex_state = 529}, + [10034] = {.lex_state = 284}, + [10035] = {.lex_state = 472}, + [10036] = {.lex_state = 787}, + [10037] = {.lex_state = 787}, + [10038] = {.lex_state = 960}, + [10039] = {.lex_state = 133}, + [10040] = {.lex_state = 133}, + [10041] = {.lex_state = 787}, + [10042] = {.lex_state = 960}, + [10043] = {.lex_state = 529}, + [10044] = {.lex_state = 960}, + [10045] = {.lex_state = 472}, + [10046] = {.lex_state = 787}, + [10047] = {.lex_state = 960}, + [10048] = {.lex_state = 787}, + [10049] = {.lex_state = 787}, + [10050] = {.lex_state = 787}, + [10051] = {.lex_state = 124}, + [10052] = {.lex_state = 530}, + [10053] = {.lex_state = 133}, + [10054] = {.lex_state = 472}, + [10055] = {.lex_state = 133}, + [10056] = {.lex_state = 787}, + [10057] = {.lex_state = 124}, + [10058] = {.lex_state = 813}, + [10059] = {.lex_state = 60}, + [10060] = {.lex_state = 472}, + [10061] = {.lex_state = 64}, + [10062] = {.lex_state = 452}, + [10063] = {.lex_state = 787}, + [10064] = {.lex_state = 124}, + [10065] = {.lex_state = 508}, + [10066] = {.lex_state = 133}, + [10067] = {.lex_state = 284}, + [10068] = {.lex_state = 133}, + [10069] = {.lex_state = 472}, + [10070] = {.lex_state = 472}, + [10071] = {.lex_state = 60}, + [10072] = {.lex_state = 787}, + [10073] = {.lex_state = 133}, + [10074] = {.lex_state = 124}, + [10075] = {.lex_state = 133}, + [10076] = {.lex_state = 472}, [10077] = {.lex_state = 60}, - [10078] = {.lex_state = 0}, - [10079] = {.lex_state = 132}, - [10080] = {.lex_state = 132}, - [10081] = {.lex_state = 471}, - [10082] = {.lex_state = 132}, - [10083] = {.lex_state = 60}, - [10084] = {.lex_state = 132}, - [10085] = {.lex_state = 132}, - [10086] = {.lex_state = 786}, - [10087] = {.lex_state = 786}, - [10088] = {.lex_state = 132}, - [10089] = {.lex_state = 471}, + [10078] = {.lex_state = 472}, + [10079] = {.lex_state = 472}, + [10080] = {.lex_state = 60}, + [10081] = {.lex_state = 60}, + [10082] = {.lex_state = 60}, + [10083] = {.lex_state = 124}, + [10084] = {.lex_state = 60}, + [10085] = {.lex_state = 60}, + [10086] = {.lex_state = 483}, + [10087] = {.lex_state = 540}, + [10088] = {.lex_state = 60}, + [10089] = {.lex_state = 133}, [10090] = {.lex_state = 60}, - [10091] = {.lex_state = 959}, - [10092] = {.lex_state = 132}, + [10091] = {.lex_state = 60}, + [10092] = {.lex_state = 133}, [10093] = {.lex_state = 60}, - [10094] = {.lex_state = 543}, - [10095] = {.lex_state = 786}, - [10096] = {.lex_state = 132}, - [10097] = {.lex_state = 132}, - [10098] = {.lex_state = 959}, - [10099] = {.lex_state = 132}, - [10100] = {.lex_state = 471}, - [10101] = {.lex_state = 60}, - [10102] = {.lex_state = 471}, - [10103] = {.lex_state = 132}, - [10104] = {.lex_state = 132}, - [10105] = {.lex_state = 786}, - [10106] = {.lex_state = 471}, - [10107] = {.lex_state = 132}, - [10108] = {.lex_state = 60}, - [10109] = {.lex_state = 132}, - [10110] = {.lex_state = 786}, - [10111] = {.lex_state = 471}, - [10112] = {.lex_state = 132}, + [10094] = {.lex_state = 133}, + [10095] = {.lex_state = 124}, + [10096] = {.lex_state = 472}, + [10097] = {.lex_state = 60}, + [10098] = {.lex_state = 472}, + [10099] = {.lex_state = 133}, + [10100] = {.lex_state = 60}, + [10101] = {.lex_state = 133}, + [10102] = {.lex_state = 124}, + [10103] = {.lex_state = 60}, + [10104] = {.lex_state = 60}, + [10105] = {.lex_state = 60}, + [10106] = {.lex_state = 60}, + [10107] = {.lex_state = 124}, + [10108] = {.lex_state = 472}, + [10109] = {.lex_state = 532}, + [10110] = {.lex_state = 60}, + [10111] = {.lex_state = 472}, + [10112] = {.lex_state = 60}, [10113] = {.lex_state = 60}, - [10114] = {.lex_state = 539}, - [10115] = {.lex_state = 132}, - [10116] = {.lex_state = 539}, - [10117] = {.lex_state = 471}, - [10118] = {.lex_state = 60}, - [10119] = {.lex_state = 533}, - [10120] = {.lex_state = 132}, - [10121] = {.lex_state = 132}, - [10122] = {.lex_state = 60}, + [10114] = {.lex_state = 124}, + [10115] = {.lex_state = 60}, + [10116] = {.lex_state = 60}, + [10117] = {.lex_state = 124}, + [10118] = {.lex_state = 133}, + [10119] = {.lex_state = 60}, + [10120] = {.lex_state = 60}, + [10121] = {.lex_state = 133}, + [10122] = {.lex_state = 472}, [10123] = {.lex_state = 60}, - [10124] = {.lex_state = 471}, - [10125] = {.lex_state = 132}, - [10126] = {.lex_state = 132}, - [10127] = {.lex_state = 132}, - [10128] = {.lex_state = 132}, - [10129] = {.lex_state = 540}, - [10130] = {.lex_state = 132}, - [10131] = {.lex_state = 540}, + [10124] = {.lex_state = 472}, + [10125] = {.lex_state = 60}, + [10126] = {.lex_state = 472}, + [10127] = {.lex_state = 60}, + [10128] = {.lex_state = 60}, + [10129] = {.lex_state = 261}, + [10130] = {.lex_state = 60}, + [10131] = {.lex_state = 60}, [10132] = {.lex_state = 60}, - [10133] = {.lex_state = 132}, - [10134] = {.lex_state = 132}, - [10135] = {.lex_state = 471}, + [10133] = {.lex_state = 787}, + [10134] = {.lex_state = 60}, + [10135] = {.lex_state = 60}, [10136] = {.lex_state = 60}, - [10137] = {.lex_state = 471}, - [10138] = {.lex_state = 132}, + [10137] = {.lex_state = 60}, + [10138] = {.lex_state = 60}, [10139] = {.lex_state = 60}, - [10140] = {.lex_state = 471}, - [10141] = {.lex_state = 132}, - [10142] = {.lex_state = 132}, - [10143] = {.lex_state = 60}, - [10144] = {.lex_state = 60}, - [10145] = {.lex_state = 132}, - [10146] = {.lex_state = 471}, - [10147] = {.lex_state = 132}, - [10148] = {.lex_state = 786}, - [10149] = {.lex_state = 60}, - [10150] = {.lex_state = 786}, - [10151] = {.lex_state = 132}, - [10152] = {.lex_state = 471}, - [10153] = {.lex_state = 60}, - [10154] = {.lex_state = 786}, - [10155] = {.lex_state = 60}, - [10156] = {.lex_state = 132}, - [10157] = {.lex_state = 60}, - [10158] = {.lex_state = 132}, - [10159] = {.lex_state = 60}, - [10160] = {.lex_state = 132}, - [10161] = {.lex_state = 471}, - [10162] = {.lex_state = 60}, - [10163] = {.lex_state = 959}, - [10164] = {.lex_state = 60}, - [10165] = {.lex_state = 132}, - [10166] = {.lex_state = 60}, - [10167] = {.lex_state = 0}, - [10168] = {.lex_state = 132}, - [10169] = {.lex_state = 132}, - [10170] = {.lex_state = 132}, - [10171] = {.lex_state = 132}, + [10140] = {.lex_state = 472}, + [10141] = {.lex_state = 508}, + [10142] = {.lex_state = 508}, + [10143] = {.lex_state = 133}, + [10144] = {.lex_state = 398}, + [10145] = {.lex_state = 133}, + [10146] = {.lex_state = 544}, + [10147] = {.lex_state = 544}, + [10148] = {.lex_state = 472}, + [10149] = {.lex_state = 133}, + [10150] = {.lex_state = 124}, + [10151] = {.lex_state = 133}, + [10152] = {.lex_state = 60}, + [10153] = {.lex_state = 452}, + [10154] = {.lex_state = 539}, + [10155] = {.lex_state = 532}, + [10156] = {.lex_state = 472}, + [10157] = {.lex_state = 133}, + [10158] = {.lex_state = 472}, + [10159] = {.lex_state = 472}, + [10160] = {.lex_state = 787}, + [10161] = {.lex_state = 133}, + [10162] = {.lex_state = 472}, + [10163] = {.lex_state = 534}, + [10164] = {.lex_state = 960}, + [10165] = {.lex_state = 124}, + [10166] = {.lex_state = 813}, + [10167] = {.lex_state = 261}, + [10168] = {.lex_state = 60}, + [10169] = {.lex_state = 0}, + [10170] = {.lex_state = 0}, + [10171] = {.lex_state = 124}, [10172] = {.lex_state = 0}, - [10173] = {.lex_state = 132}, - [10174] = {.lex_state = 2024}, - [10175] = {.lex_state = 471}, - [10176] = {.lex_state = 0}, - [10177] = {.lex_state = 2024}, - [10178] = {.lex_state = 2024}, + [10173] = {.lex_state = 520}, + [10174] = {.lex_state = 0}, + [10175] = {.lex_state = 542}, + [10176] = {.lex_state = 60}, + [10177] = {.lex_state = 0}, + [10178] = {.lex_state = 0}, [10179] = {.lex_state = 0}, - [10180] = {.lex_state = 0}, - [10181] = {.lex_state = 0}, + [10180] = {.lex_state = 537}, + [10181] = {.lex_state = 133}, [10182] = {.lex_state = 60}, - [10183] = {.lex_state = 0}, - [10184] = {.lex_state = 60}, - [10185] = {.lex_state = 0}, - [10186] = {.lex_state = 0}, - [10187] = {.lex_state = 132}, - [10188] = {.lex_state = 132}, + [10183] = {.lex_state = 2025}, + [10184] = {.lex_state = 0}, + [10185] = {.lex_state = 60}, + [10186] = {.lex_state = 509}, + [10187] = {.lex_state = 2025}, + [10188] = {.lex_state = 0}, [10189] = {.lex_state = 0}, - [10190] = {.lex_state = 132}, - [10191] = {.lex_state = 535}, - [10192] = {.lex_state = 132}, - [10193] = {.lex_state = 0}, - [10194] = {.lex_state = 0}, - [10195] = {.lex_state = 0}, - [10196] = {.lex_state = 0}, - [10197] = {.lex_state = 2024}, - [10198] = {.lex_state = 124}, - [10199] = {.lex_state = 261}, - [10200] = {.lex_state = 0}, + [10190] = {.lex_state = 0}, + [10191] = {.lex_state = 0}, + [10192] = {.lex_state = 0}, + [10193] = {.lex_state = 542}, + [10194] = {.lex_state = 2025}, + [10195] = {.lex_state = 509}, + [10196] = {.lex_state = 472}, + [10197] = {.lex_state = 0}, + [10198] = {.lex_state = 2025}, + [10199] = {.lex_state = 0}, + [10200] = {.lex_state = 542}, [10201] = {.lex_state = 0}, - [10202] = {.lex_state = 508}, - [10203] = {.lex_state = 2024}, - [10204] = {.lex_state = 2024}, - [10205] = {.lex_state = 541}, - [10206] = {.lex_state = 2024}, - [10207] = {.lex_state = 124}, - [10208] = {.lex_state = 541}, - [10209] = {.lex_state = 132}, - [10210] = {.lex_state = 132}, - [10211] = {.lex_state = 2024}, - [10212] = {.lex_state = 60}, - [10213] = {.lex_state = 959}, - [10214] = {.lex_state = 0}, - [10215] = {.lex_state = 60}, - [10216] = {.lex_state = 2024}, + [10202] = {.lex_state = 60}, + [10203] = {.lex_state = 538}, + [10204] = {.lex_state = 452}, + [10205] = {.lex_state = 0}, + [10206] = {.lex_state = 0}, + [10207] = {.lex_state = 0}, + [10208] = {.lex_state = 133}, + [10209] = {.lex_state = 0}, + [10210] = {.lex_state = 0}, + [10211] = {.lex_state = 124}, + [10212] = {.lex_state = 2025}, + [10213] = {.lex_state = 536}, + [10214] = {.lex_state = 133}, + [10215] = {.lex_state = 133}, + [10216] = {.lex_state = 133}, [10217] = {.lex_state = 0}, - [10218] = {.lex_state = 132}, - [10219] = {.lex_state = 508}, + [10218] = {.lex_state = 133}, + [10219] = {.lex_state = 133}, [10220] = {.lex_state = 0}, - [10221] = {.lex_state = 0}, - [10222] = {.lex_state = 0}, - [10223] = {.lex_state = 124}, - [10224] = {.lex_state = 541}, - [10225] = {.lex_state = 132}, - [10226] = {.lex_state = 132}, - [10227] = {.lex_state = 2024}, - [10228] = {.lex_state = 0}, + [10221] = {.lex_state = 2025}, + [10222] = {.lex_state = 133}, + [10223] = {.lex_state = 0}, + [10224] = {.lex_state = 3545}, + [10225] = {.lex_state = 0}, + [10226] = {.lex_state = 0}, + [10227] = {.lex_state = 2025}, + [10228] = {.lex_state = 133}, [10229] = {.lex_state = 60}, - [10230] = {.lex_state = 132}, - [10231] = {.lex_state = 132}, - [10232] = {.lex_state = 132}, - [10233] = {.lex_state = 537}, - [10234] = {.lex_state = 60}, - [10235] = {.lex_state = 60}, - [10236] = {.lex_state = 0}, - [10237] = {.lex_state = 436}, - [10238] = {.lex_state = 2024}, - [10239] = {.lex_state = 0}, - [10240] = {.lex_state = 0}, - [10241] = {.lex_state = 0}, - [10242] = {.lex_state = 132}, - [10243] = {.lex_state = 2024}, - [10244] = {.lex_state = 2024}, - [10245] = {.lex_state = 0}, - [10246] = {.lex_state = 0}, - [10247] = {.lex_state = 0}, - [10248] = {.lex_state = 132}, - [10249] = {.lex_state = 132}, - [10250] = {.lex_state = 3544}, - [10251] = {.lex_state = 132}, - [10252] = {.lex_state = 3544}, - [10253] = {.lex_state = 537}, - [10254] = {.lex_state = 537}, - [10255] = {.lex_state = 0}, + [10230] = {.lex_state = 133}, + [10231] = {.lex_state = 538}, + [10232] = {.lex_state = 2025}, + [10233] = {.lex_state = 60}, + [10234] = {.lex_state = 124}, + [10235] = {.lex_state = 0}, + [10236] = {.lex_state = 538}, + [10237] = {.lex_state = 0}, + [10238] = {.lex_state = 0}, + [10239] = {.lex_state = 133}, + [10240] = {.lex_state = 2025}, + [10241] = {.lex_state = 133}, + [10242] = {.lex_state = 0}, + [10243] = {.lex_state = 0}, + [10244] = {.lex_state = 0}, + [10245] = {.lex_state = 509}, + [10246] = {.lex_state = 133}, + [10247] = {.lex_state = 960}, + [10248] = {.lex_state = 133}, + [10249] = {.lex_state = 0}, + [10250] = {.lex_state = 2025}, + [10251] = {.lex_state = 0}, + [10252] = {.lex_state = 0}, + [10253] = {.lex_state = 2025}, + [10254] = {.lex_state = 437}, + [10255] = {.lex_state = 133}, [10256] = {.lex_state = 0}, [10257] = {.lex_state = 0}, [10258] = {.lex_state = 0}, [10259] = {.lex_state = 0}, [10260] = {.lex_state = 0}, - [10261] = {.lex_state = 0}, - [10262] = {.lex_state = 2024}, - [10263] = {.lex_state = 0}, - [10264] = {.lex_state = 132}, + [10261] = {.lex_state = 133}, + [10262] = {.lex_state = 2025}, + [10263] = {.lex_state = 509}, + [10264] = {.lex_state = 3545}, [10265] = {.lex_state = 0}, [10266] = {.lex_state = 0}, - [10267] = {.lex_state = 508}, - [10268] = {.lex_state = 2024}, - [10269] = {.lex_state = 536}, - [10270] = {.lex_state = 60}, - [10271] = {.lex_state = 508}, - [10272] = {.lex_state = 0}, - [10273] = {.lex_state = 0}, - [10274] = {.lex_state = 2024}, - [10275] = {.lex_state = 0}, + [10267] = {.lex_state = 0}, + [10268] = {.lex_state = 0}, + [10269] = {.lex_state = 0}, + [10270] = {.lex_state = 0}, + [10271] = {.lex_state = 133}, + [10272] = {.lex_state = 133}, + [10273] = {.lex_state = 133}, + [10274] = {.lex_state = 133}, + [10275] = {.lex_state = 2025}, [10276] = {.lex_state = 0}, - [10277] = {.lex_state = 0}, + [10277] = {.lex_state = 60}, [10278] = {.lex_state = 0}, - [10279] = {.lex_state = 0}, - [10280] = {.lex_state = 0}, - [10281] = {.lex_state = 508}, - [10282] = {.lex_state = 0}, - [10283] = {.lex_state = 0}, - [10284] = {.lex_state = 0}, - [10285] = {.lex_state = 0}, - [10286] = {.lex_state = 519}, - [10287] = {.lex_state = 508}, + [10279] = {.lex_state = 2025}, + [10280] = {.lex_state = 509}, + [10281] = {.lex_state = 133}, + [10282] = {.lex_state = 133}, + [10283] = {.lex_state = 509}, + [10284] = {.lex_state = 2025}, + [10285] = {.lex_state = 2025}, + [10286] = {.lex_state = 0}, + [10287] = {.lex_state = 0}, [10288] = {.lex_state = 0}, - [10289] = {.lex_state = 451}, - [10290] = {.lex_state = 132}, - [10291] = {.lex_state = 132}, - [10292] = {.lex_state = 132}, - [10293] = {.lex_state = 2025}, - [10294] = {.lex_state = 132}, - [10295] = {.lex_state = 536}, - [10296] = {.lex_state = 0}, - [10297] = {.lex_state = 0}, + [10289] = {.lex_state = 0}, + [10290] = {.lex_state = 0}, + [10291] = {.lex_state = 133}, + [10292] = {.lex_state = 2026}, + [10293] = {.lex_state = 133}, + [10294] = {.lex_state = 537}, + [10295] = {.lex_state = 3546}, + [10296] = {.lex_state = 2026}, + [10297] = {.lex_state = 133}, [10298] = {.lex_state = 0}, - [10299] = {.lex_state = 132}, + [10299] = {.lex_state = 0}, [10300] = {.lex_state = 0}, [10301] = {.lex_state = 0}, [10302] = {.lex_state = 0}, [10303] = {.lex_state = 0}, - [10304] = {.lex_state = 525}, - [10305] = {.lex_state = 2025}, - [10306] = {.lex_state = 132}, + [10304] = {.lex_state = 0}, + [10305] = {.lex_state = 0}, + [10306] = {.lex_state = 133}, [10307] = {.lex_state = 0}, - [10308] = {.lex_state = 132}, - [10309] = {.lex_state = 2025}, - [10310] = {.lex_state = 132}, - [10311] = {.lex_state = 2025}, - [10312] = {.lex_state = 132}, - [10313] = {.lex_state = 536}, - [10314] = {.lex_state = 132}, + [10308] = {.lex_state = 0}, + [10309] = {.lex_state = 537}, + [10310] = {.lex_state = 0}, + [10311] = {.lex_state = 0}, + [10312] = {.lex_state = 0}, + [10313] = {.lex_state = 537}, + [10314] = {.lex_state = 2026}, [10315] = {.lex_state = 0}, - [10316] = {.lex_state = 0}, - [10317] = {.lex_state = 72}, - [10318] = {.lex_state = 0}, - [10319] = {.lex_state = 0}, - [10320] = {.lex_state = 132}, - [10321] = {.lex_state = 0}, - [10322] = {.lex_state = 0}, - [10323] = {.lex_state = 2025}, - [10324] = {.lex_state = 132}, - [10325] = {.lex_state = 0}, - [10326] = {.lex_state = 132}, - [10327] = {.lex_state = 2025}, - [10328] = {.lex_state = 132}, - [10329] = {.lex_state = 2025}, - [10330] = {.lex_state = 132}, - [10331] = {.lex_state = 536}, - [10332] = {.lex_state = 525}, - [10333] = {.lex_state = 0}, - [10334] = {.lex_state = 132}, + [10316] = {.lex_state = 133}, + [10317] = {.lex_state = 0}, + [10318] = {.lex_state = 133}, + [10319] = {.lex_state = 960}, + [10320] = {.lex_state = 0}, + [10321] = {.lex_state = 2026}, + [10322] = {.lex_state = 133}, + [10323] = {.lex_state = 133}, + [10324] = {.lex_state = 2026}, + [10325] = {.lex_state = 133}, + [10326] = {.lex_state = 537}, + [10327] = {.lex_state = 0}, + [10328] = {.lex_state = 0}, + [10329] = {.lex_state = 0}, + [10330] = {.lex_state = 133}, + [10331] = {.lex_state = 0}, + [10332] = {.lex_state = 960}, + [10333] = {.lex_state = 537}, + [10334] = {.lex_state = 133}, [10335] = {.lex_state = 0}, [10336] = {.lex_state = 0}, - [10337] = {.lex_state = 0}, - [10338] = {.lex_state = 132}, + [10337] = {.lex_state = 133}, + [10338] = {.lex_state = 0}, [10339] = {.lex_state = 0}, - [10340] = {.lex_state = 132}, - [10341] = {.lex_state = 2025}, + [10340] = {.lex_state = 133}, + [10341] = {.lex_state = 0}, [10342] = {.lex_state = 0}, - [10343] = {.lex_state = 2025}, - [10344] = {.lex_state = 2025}, - [10345] = {.lex_state = 0}, - [10346] = {.lex_state = 132}, - [10347] = {.lex_state = 132}, - [10348] = {.lex_state = 0}, - [10349] = {.lex_state = 2025}, - [10350] = {.lex_state = 132}, - [10351] = {.lex_state = 132}, - [10352] = {.lex_state = 2025}, - [10353] = {.lex_state = 132}, - [10354] = {.lex_state = 536}, + [10343] = {.lex_state = 2026}, + [10344] = {.lex_state = 0}, + [10345] = {.lex_state = 133}, + [10346] = {.lex_state = 133}, + [10347] = {.lex_state = 470}, + [10348] = {.lex_state = 2026}, + [10349] = {.lex_state = 2026}, + [10350] = {.lex_state = 133}, + [10351] = {.lex_state = 2026}, + [10352] = {.lex_state = 133}, + [10353] = {.lex_state = 537}, + [10354] = {.lex_state = 0}, [10355] = {.lex_state = 0}, - [10356] = {.lex_state = 0}, + [10356] = {.lex_state = 133}, [10357] = {.lex_state = 0}, - [10358] = {.lex_state = 0}, + [10358] = {.lex_state = 526}, [10359] = {.lex_state = 0}, - [10360] = {.lex_state = 0}, - [10361] = {.lex_state = 132}, - [10362] = {.lex_state = 536}, + [10360] = {.lex_state = 133}, + [10361] = {.lex_state = 0}, + [10362] = {.lex_state = 0}, [10363] = {.lex_state = 0}, - [10364] = {.lex_state = 0}, - [10365] = {.lex_state = 132}, + [10364] = {.lex_state = 133}, + [10365] = {.lex_state = 0}, [10366] = {.lex_state = 0}, - [10367] = {.lex_state = 132}, - [10368] = {.lex_state = 2025}, - [10369] = {.lex_state = 132}, - [10370] = {.lex_state = 2025}, - [10371] = {.lex_state = 2025}, - [10372] = {.lex_state = 132}, - [10373] = {.lex_state = 132}, - [10374] = {.lex_state = 0}, - [10375] = {.lex_state = 2025}, - [10376] = {.lex_state = 132}, - [10377] = {.lex_state = 2025}, - [10378] = {.lex_state = 536}, - [10379] = {.lex_state = 2025}, - [10380] = {.lex_state = 0}, + [10367] = {.lex_state = 2026}, + [10368] = {.lex_state = 0}, + [10369] = {.lex_state = 0}, + [10370] = {.lex_state = 2026}, + [10371] = {.lex_state = 0}, + [10372] = {.lex_state = 133}, + [10373] = {.lex_state = 133}, + [10374] = {.lex_state = 2026}, + [10375] = {.lex_state = 0}, + [10376] = {.lex_state = 2026}, + [10377] = {.lex_state = 537}, + [10378] = {.lex_state = 0}, + [10379] = {.lex_state = 133}, + [10380] = {.lex_state = 2026}, [10381] = {.lex_state = 0}, - [10382] = {.lex_state = 132}, + [10382] = {.lex_state = 0}, [10383] = {.lex_state = 0}, [10384] = {.lex_state = 0}, [10385] = {.lex_state = 0}, - [10386] = {.lex_state = 0}, - [10387] = {.lex_state = 132}, + [10386] = {.lex_state = 133}, + [10387] = {.lex_state = 0}, [10388] = {.lex_state = 0}, - [10389] = {.lex_state = 132}, - [10390] = {.lex_state = 959}, - [10391] = {.lex_state = 0}, - [10392] = {.lex_state = 132}, - [10393] = {.lex_state = 2025}, - [10394] = {.lex_state = 2025}, - [10395] = {.lex_state = 132}, - [10396] = {.lex_state = 536}, - [10397] = {.lex_state = 132}, - [10398] = {.lex_state = 2025}, - [10399] = {.lex_state = 132}, - [10400] = {.lex_state = 2025}, + [10389] = {.lex_state = 0}, + [10390] = {.lex_state = 0}, + [10391] = {.lex_state = 133}, + [10392] = {.lex_state = 0}, + [10393] = {.lex_state = 133}, + [10394] = {.lex_state = 0}, + [10395] = {.lex_state = 0}, + [10396] = {.lex_state = 0}, + [10397] = {.lex_state = 2026}, + [10398] = {.lex_state = 0}, + [10399] = {.lex_state = 133}, + [10400] = {.lex_state = 0}, [10401] = {.lex_state = 0}, - [10402] = {.lex_state = 0}, - [10403] = {.lex_state = 132}, - [10404] = {.lex_state = 0}, - [10405] = {.lex_state = 132}, + [10402] = {.lex_state = 133}, + [10403] = {.lex_state = 0}, + [10404] = {.lex_state = 2026}, + [10405] = {.lex_state = 2026}, [10406] = {.lex_state = 0}, - [10407] = {.lex_state = 0}, - [10408] = {.lex_state = 132}, - [10409] = {.lex_state = 132}, - [10410] = {.lex_state = 2025}, - [10411] = {.lex_state = 0}, - [10412] = {.lex_state = 2025}, - [10413] = {.lex_state = 132}, + [10407] = {.lex_state = 133}, + [10408] = {.lex_state = 0}, + [10409] = {.lex_state = 0}, + [10410] = {.lex_state = 133}, + [10411] = {.lex_state = 133}, + [10412] = {.lex_state = 2026}, + [10413] = {.lex_state = 2026}, [10414] = {.lex_state = 0}, - [10415] = {.lex_state = 0}, - [10416] = {.lex_state = 132}, + [10415] = {.lex_state = 133}, + [10416] = {.lex_state = 0}, [10417] = {.lex_state = 0}, - [10418] = {.lex_state = 0}, - [10419] = {.lex_state = 132}, + [10418] = {.lex_state = 133}, + [10419] = {.lex_state = 0}, [10420] = {.lex_state = 0}, - [10421] = {.lex_state = 0}, + [10421] = {.lex_state = 133}, [10422] = {.lex_state = 0}, - [10423] = {.lex_state = 0}, - [10424] = {.lex_state = 132}, - [10425] = {.lex_state = 0}, + [10423] = {.lex_state = 133}, + [10424] = {.lex_state = 133}, + [10425] = {.lex_state = 133}, [10426] = {.lex_state = 0}, [10427] = {.lex_state = 0}, - [10428] = {.lex_state = 536}, - [10429] = {.lex_state = 0}, - [10430] = {.lex_state = 959}, - [10431] = {.lex_state = 0}, - [10432] = {.lex_state = 132}, + [10428] = {.lex_state = 2026}, + [10429] = {.lex_state = 2026}, + [10430] = {.lex_state = 0}, + [10431] = {.lex_state = 133}, + [10432] = {.lex_state = 0}, [10433] = {.lex_state = 0}, - [10434] = {.lex_state = 536}, - [10435] = {.lex_state = 0}, - [10436] = {.lex_state = 132}, - [10437] = {.lex_state = 536}, - [10438] = {.lex_state = 132}, - [10439] = {.lex_state = 2025}, - [10440] = {.lex_state = 132}, - [10441] = {.lex_state = 2025}, - [10442] = {.lex_state = 0}, - [10443] = {.lex_state = 132}, + [10434] = {.lex_state = 133}, + [10435] = {.lex_state = 133}, + [10436] = {.lex_state = 133}, + [10437] = {.lex_state = 2026}, + [10438] = {.lex_state = 133}, + [10439] = {.lex_state = 2026}, + [10440] = {.lex_state = 133}, + [10441] = {.lex_state = 0}, + [10442] = {.lex_state = 133}, + [10443] = {.lex_state = 0}, [10444] = {.lex_state = 0}, - [10445] = {.lex_state = 132}, - [10446] = {.lex_state = 536}, - [10447] = {.lex_state = 132}, + [10445] = {.lex_state = 0}, + [10446] = {.lex_state = 133}, + [10447] = {.lex_state = 537}, [10448] = {.lex_state = 0}, - [10449] = {.lex_state = 132}, - [10450] = {.lex_state = 2025}, + [10449] = {.lex_state = 0}, + [10450] = {.lex_state = 0}, [10451] = {.lex_state = 0}, [10452] = {.lex_state = 0}, - [10453] = {.lex_state = 0}, - [10454] = {.lex_state = 132}, - [10455] = {.lex_state = 132}, - [10456] = {.lex_state = 959}, - [10457] = {.lex_state = 132}, + [10453] = {.lex_state = 133}, + [10454] = {.lex_state = 537}, + [10455] = {.lex_state = 0}, + [10456] = {.lex_state = 133}, + [10457] = {.lex_state = 133}, [10458] = {.lex_state = 0}, [10459] = {.lex_state = 0}, - [10460] = {.lex_state = 132}, - [10461] = {.lex_state = 0}, + [10460] = {.lex_state = 0}, + [10461] = {.lex_state = 537}, [10462] = {.lex_state = 0}, - [10463] = {.lex_state = 0}, - [10464] = {.lex_state = 132}, - [10465] = {.lex_state = 525}, - [10466] = {.lex_state = 0}, - [10467] = {.lex_state = 132}, - [10468] = {.lex_state = 0}, - [10469] = {.lex_state = 0}, - [10470] = {.lex_state = 0}, + [10463] = {.lex_state = 133}, + [10464] = {.lex_state = 133}, + [10465] = {.lex_state = 0}, + [10466] = {.lex_state = 133}, + [10467] = {.lex_state = 133}, + [10468] = {.lex_state = 133}, + [10469] = {.lex_state = 133}, + [10470] = {.lex_state = 960}, [10471] = {.lex_state = 0}, - [10472] = {.lex_state = 132}, - [10473] = {.lex_state = 0}, - [10474] = {.lex_state = 132}, - [10475] = {.lex_state = 2025}, - [10476] = {.lex_state = 2025}, - [10477] = {.lex_state = 132}, + [10472] = {.lex_state = 0}, + [10473] = {.lex_state = 133}, + [10474] = {.lex_state = 2026}, + [10475] = {.lex_state = 133}, + [10476] = {.lex_state = 133}, + [10477] = {.lex_state = 0}, [10478] = {.lex_state = 0}, - [10479] = {.lex_state = 132}, + [10479] = {.lex_state = 537}, [10480] = {.lex_state = 0}, [10481] = {.lex_state = 0}, - [10482] = {.lex_state = 0}, - [10483] = {.lex_state = 132}, - [10484] = {.lex_state = 536}, - [10485] = {.lex_state = 0}, - [10486] = {.lex_state = 132}, - [10487] = {.lex_state = 132}, - [10488] = {.lex_state = 2025}, - [10489] = {.lex_state = 132}, - [10490] = {.lex_state = 0}, - [10491] = {.lex_state = 132}, - [10492] = {.lex_state = 2025}, - [10493] = {.lex_state = 0}, - [10494] = {.lex_state = 132}, - [10495] = {.lex_state = 132}, + [10482] = {.lex_state = 133}, + [10483] = {.lex_state = 133}, + [10484] = {.lex_state = 2026}, + [10485] = {.lex_state = 133}, + [10486] = {.lex_state = 0}, + [10487] = {.lex_state = 0}, + [10488] = {.lex_state = 0}, + [10489] = {.lex_state = 0}, + [10490] = {.lex_state = 133}, + [10491] = {.lex_state = 133}, + [10492] = {.lex_state = 0}, + [10493] = {.lex_state = 133}, + [10494] = {.lex_state = 0}, + [10495] = {.lex_state = 133}, [10496] = {.lex_state = 0}, - [10497] = {.lex_state = 132}, - [10498] = {.lex_state = 0}, - [10499] = {.lex_state = 132}, - [10500] = {.lex_state = 2025}, - [10501] = {.lex_state = 132}, - [10502] = {.lex_state = 132}, + [10497] = {.lex_state = 0}, + [10498] = {.lex_state = 133}, + [10499] = {.lex_state = 0}, + [10500] = {.lex_state = 2026}, + [10501] = {.lex_state = 133}, + [10502] = {.lex_state = 2026}, [10503] = {.lex_state = 0}, [10504] = {.lex_state = 0}, - [10505] = {.lex_state = 0}, - [10506] = {.lex_state = 132}, + [10505] = {.lex_state = 133}, + [10506] = {.lex_state = 0}, [10507] = {.lex_state = 0}, - [10508] = {.lex_state = 0}, - [10509] = {.lex_state = 132}, - [10510] = {.lex_state = 132}, + [10508] = {.lex_state = 133}, + [10509] = {.lex_state = 0}, + [10510] = {.lex_state = 0}, [10511] = {.lex_state = 0}, - [10512] = {.lex_state = 0}, - [10513] = {.lex_state = 132}, + [10512] = {.lex_state = 133}, + [10513] = {.lex_state = 0}, [10514] = {.lex_state = 0}, - [10515] = {.lex_state = 132}, - [10516] = {.lex_state = 132}, - [10517] = {.lex_state = 132}, - [10518] = {.lex_state = 132}, - [10519] = {.lex_state = 0}, - [10520] = {.lex_state = 132}, - [10521] = {.lex_state = 2025}, - [10522] = {.lex_state = 132}, - [10523] = {.lex_state = 132}, - [10524] = {.lex_state = 542}, - [10525] = {.lex_state = 0}, - [10526] = {.lex_state = 132}, - [10527] = {.lex_state = 0}, - [10528] = {.lex_state = 132}, - [10529] = {.lex_state = 0}, + [10515] = {.lex_state = 133}, + [10516] = {.lex_state = 0}, + [10517] = {.lex_state = 537}, + [10518] = {.lex_state = 0}, + [10519] = {.lex_state = 133}, + [10520] = {.lex_state = 133}, + [10521] = {.lex_state = 133}, + [10522] = {.lex_state = 0}, + [10523] = {.lex_state = 0}, + [10524] = {.lex_state = 0}, + [10525] = {.lex_state = 133}, + [10526] = {.lex_state = 0}, + [10527] = {.lex_state = 133}, + [10528] = {.lex_state = 0}, + [10529] = {.lex_state = 133}, [10530] = {.lex_state = 0}, - [10531] = {.lex_state = 0}, - [10532] = {.lex_state = 132}, - [10533] = {.lex_state = 0}, - [10534] = {.lex_state = 132}, - [10535] = {.lex_state = 536}, - [10536] = {.lex_state = 536}, - [10537] = {.lex_state = 0}, - [10538] = {.lex_state = 132}, - [10539] = {.lex_state = 132}, - [10540] = {.lex_state = 132}, - [10541] = {.lex_state = 2025}, - [10542] = {.lex_state = 132}, - [10543] = {.lex_state = 0}, - [10544] = {.lex_state = 132}, - [10545] = {.lex_state = 2025}, - [10546] = {.lex_state = 132}, - [10547] = {.lex_state = 132}, + [10531] = {.lex_state = 133}, + [10532] = {.lex_state = 0}, + [10533] = {.lex_state = 133}, + [10534] = {.lex_state = 0}, + [10535] = {.lex_state = 0}, + [10536] = {.lex_state = 0}, + [10537] = {.lex_state = 133}, + [10538] = {.lex_state = 133}, + [10539] = {.lex_state = 133}, + [10540] = {.lex_state = 2026}, + [10541] = {.lex_state = 133}, + [10542] = {.lex_state = 0}, + [10543] = {.lex_state = 133}, + [10544] = {.lex_state = 0}, + [10545] = {.lex_state = 133}, + [10546] = {.lex_state = 2026}, + [10547] = {.lex_state = 0}, [10548] = {.lex_state = 0}, - [10549] = {.lex_state = 0}, - [10550] = {.lex_state = 132}, - [10551] = {.lex_state = 132}, - [10552] = {.lex_state = 132}, - [10553] = {.lex_state = 2025}, + [10549] = {.lex_state = 133}, + [10550] = {.lex_state = 0}, + [10551] = {.lex_state = 133}, + [10552] = {.lex_state = 0}, + [10553] = {.lex_state = 133}, [10554] = {.lex_state = 0}, - [10555] = {.lex_state = 0}, - [10556] = {.lex_state = 132}, - [10557] = {.lex_state = 0}, - [10558] = {.lex_state = 132}, - [10559] = {.lex_state = 132}, + [10555] = {.lex_state = 133}, + [10556] = {.lex_state = 2026}, + [10557] = {.lex_state = 133}, + [10558] = {.lex_state = 0}, + [10559] = {.lex_state = 133}, [10560] = {.lex_state = 0}, - [10561] = {.lex_state = 0}, - [10562] = {.lex_state = 132}, + [10561] = {.lex_state = 133}, + [10562] = {.lex_state = 133}, [10563] = {.lex_state = 0}, - [10564] = {.lex_state = 132}, + [10564] = {.lex_state = 0}, [10565] = {.lex_state = 0}, - [10566] = {.lex_state = 132}, - [10567] = {.lex_state = 0}, - [10568] = {.lex_state = 132}, - [10569] = {.lex_state = 525}, - [10570] = {.lex_state = 132}, + [10566] = {.lex_state = 133}, + [10567] = {.lex_state = 133}, + [10568] = {.lex_state = 133}, + [10569] = {.lex_state = 0}, + [10570] = {.lex_state = 0}, [10571] = {.lex_state = 0}, - [10572] = {.lex_state = 0}, - [10573] = {.lex_state = 0}, - [10574] = {.lex_state = 132}, - [10575] = {.lex_state = 0}, - [10576] = {.lex_state = 132}, + [10572] = {.lex_state = 133}, + [10573] = {.lex_state = 133}, + [10574] = {.lex_state = 133}, + [10575] = {.lex_state = 2026}, + [10576] = {.lex_state = 133}, [10577] = {.lex_state = 0}, - [10578] = {.lex_state = 2025}, - [10579] = {.lex_state = 0}, - [10580] = {.lex_state = 132}, - [10581] = {.lex_state = 0}, - [10582] = {.lex_state = 132}, - [10583] = {.lex_state = 132}, - [10584] = {.lex_state = 0}, - [10585] = {.lex_state = 0}, - [10586] = {.lex_state = 132}, - [10587] = {.lex_state = 536}, - [10588] = {.lex_state = 132}, - [10589] = {.lex_state = 132}, - [10590] = {.lex_state = 2025}, - [10591] = {.lex_state = 0}, - [10592] = {.lex_state = 132}, - [10593] = {.lex_state = 132}, - [10594] = {.lex_state = 132}, - [10595] = {.lex_state = 2025}, - [10596] = {.lex_state = 132}, - [10597] = {.lex_state = 0}, - [10598] = {.lex_state = 132}, + [10578] = {.lex_state = 133}, + [10579] = {.lex_state = 133}, + [10580] = {.lex_state = 133}, + [10581] = {.lex_state = 2026}, + [10582] = {.lex_state = 2026}, + [10583] = {.lex_state = 0}, + [10584] = {.lex_state = 133}, + [10585] = {.lex_state = 133}, + [10586] = {.lex_state = 133}, + [10587] = {.lex_state = 537}, + [10588] = {.lex_state = 133}, + [10589] = {.lex_state = 0}, + [10590] = {.lex_state = 133}, + [10591] = {.lex_state = 2026}, + [10592] = {.lex_state = 133}, + [10593] = {.lex_state = 0}, + [10594] = {.lex_state = 133}, + [10595] = {.lex_state = 0}, + [10596] = {.lex_state = 133}, + [10597] = {.lex_state = 124}, + [10598] = {.lex_state = 133}, [10599] = {.lex_state = 0}, - [10600] = {.lex_state = 132}, + [10600] = {.lex_state = 0}, [10601] = {.lex_state = 0}, - [10602] = {.lex_state = 2025}, + [10602] = {.lex_state = 133}, [10603] = {.lex_state = 0}, - [10604] = {.lex_state = 132}, + [10604] = {.lex_state = 133}, [10605] = {.lex_state = 0}, - [10606] = {.lex_state = 132}, - [10607] = {.lex_state = 132}, - [10608] = {.lex_state = 0}, + [10606] = {.lex_state = 0}, + [10607] = {.lex_state = 0}, + [10608] = {.lex_state = 133}, [10609] = {.lex_state = 0}, - [10610] = {.lex_state = 132}, - [10611] = {.lex_state = 0}, - [10612] = {.lex_state = 132}, - [10613] = {.lex_state = 132}, - [10614] = {.lex_state = 0}, - [10615] = {.lex_state = 0}, - [10616] = {.lex_state = 132}, + [10610] = {.lex_state = 133}, + [10611] = {.lex_state = 133}, + [10612] = {.lex_state = 0}, + [10613] = {.lex_state = 0}, + [10614] = {.lex_state = 133}, + [10615] = {.lex_state = 537}, + [10616] = {.lex_state = 133}, [10617] = {.lex_state = 0}, - [10618] = {.lex_state = 132}, - [10619] = {.lex_state = 2025}, - [10620] = {.lex_state = 132}, + [10618] = {.lex_state = 133}, + [10619] = {.lex_state = 0}, + [10620] = {.lex_state = 133}, [10621] = {.lex_state = 0}, - [10622] = {.lex_state = 132}, - [10623] = {.lex_state = 2025}, - [10624] = {.lex_state = 132}, - [10625] = {.lex_state = 132}, - [10626] = {.lex_state = 0}, + [10622] = {.lex_state = 133}, + [10623] = {.lex_state = 0}, + [10624] = {.lex_state = 0}, + [10625] = {.lex_state = 0}, + [10626] = {.lex_state = 133}, [10627] = {.lex_state = 0}, - [10628] = {.lex_state = 132}, + [10628] = {.lex_state = 133}, [10629] = {.lex_state = 0}, - [10630] = {.lex_state = 132}, - [10631] = {.lex_state = 0}, - [10632] = {.lex_state = 0}, - [10633] = {.lex_state = 132}, + [10630] = {.lex_state = 0}, + [10631] = {.lex_state = 133}, + [10632] = {.lex_state = 133}, + [10633] = {.lex_state = 133}, [10634] = {.lex_state = 0}, - [10635] = {.lex_state = 132}, - [10636] = {.lex_state = 0}, - [10637] = {.lex_state = 132}, - [10638] = {.lex_state = 132}, - [10639] = {.lex_state = 0}, - [10640] = {.lex_state = 132}, - [10641] = {.lex_state = 132}, + [10635] = {.lex_state = 133}, + [10636] = {.lex_state = 133}, + [10637] = {.lex_state = 0}, + [10638] = {.lex_state = 133}, + [10639] = {.lex_state = 133}, + [10640] = {.lex_state = 0}, + [10641] = {.lex_state = 0}, [10642] = {.lex_state = 0}, [10643] = {.lex_state = 0}, [10644] = {.lex_state = 0}, @@ -71979,514 +72006,514 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10658] = {.lex_state = 0}, [10659] = {.lex_state = 0}, [10660] = {.lex_state = 0}, - [10661] = {.lex_state = 0}, - [10662] = {.lex_state = 0}, - [10663] = {.lex_state = 536}, - [10664] = {.lex_state = 959}, - [10665] = {.lex_state = 132}, - [10666] = {.lex_state = 0}, - [10667] = {.lex_state = 536}, - [10668] = {.lex_state = 124}, - [10669] = {.lex_state = 2025}, - [10670] = {.lex_state = 132}, + [10661] = {.lex_state = 960}, + [10662] = {.lex_state = 537}, + [10663] = {.lex_state = 543}, + [10664] = {.lex_state = 0}, + [10665] = {.lex_state = 0}, + [10666] = {.lex_state = 124}, + [10667] = {.lex_state = 0}, + [10668] = {.lex_state = 0}, + [10669] = {.lex_state = 543}, + [10670] = {.lex_state = 66}, [10671] = {.lex_state = 0}, - [10672] = {.lex_state = 27}, - [10673] = {.lex_state = 2025}, - [10674] = {.lex_state = 132}, - [10675] = {.lex_state = 132}, - [10676] = {.lex_state = 0}, + [10672] = {.lex_state = 133}, + [10673] = {.lex_state = 0}, + [10674] = {.lex_state = 543}, + [10675] = {.lex_state = 0}, + [10676] = {.lex_state = 133}, [10677] = {.lex_state = 0}, - [10678] = {.lex_state = 2025}, - [10679] = {.lex_state = 132}, - [10680] = {.lex_state = 526}, - [10681] = {.lex_state = 132}, + [10678] = {.lex_state = 527}, + [10679] = {.lex_state = 2026}, + [10680] = {.lex_state = 0}, + [10681] = {.lex_state = 0}, [10682] = {.lex_state = 0}, [10683] = {.lex_state = 0}, [10684] = {.lex_state = 0}, - [10685] = {.lex_state = 132}, + [10685] = {.lex_state = 0}, [10686] = {.lex_state = 0}, [10687] = {.lex_state = 0}, - [10688] = {.lex_state = 0}, + [10688] = {.lex_state = 543}, [10689] = {.lex_state = 0}, - [10690] = {.lex_state = 132}, + [10690] = {.lex_state = 2026}, [10691] = {.lex_state = 0}, [10692] = {.lex_state = 0}, - [10693] = {.lex_state = 2025}, - [10694] = {.lex_state = 2025}, - [10695] = {.lex_state = 0}, - [10696] = {.lex_state = 2025}, + [10693] = {.lex_state = 0}, + [10694] = {.lex_state = 0}, + [10695] = {.lex_state = 133}, + [10696] = {.lex_state = 0}, [10697] = {.lex_state = 0}, - [10698] = {.lex_state = 0}, - [10699] = {.lex_state = 132}, - [10700] = {.lex_state = 0}, + [10698] = {.lex_state = 2026}, + [10699] = {.lex_state = 0}, + [10700] = {.lex_state = 133}, [10701] = {.lex_state = 0}, - [10702] = {.lex_state = 132}, + [10702] = {.lex_state = 2026}, [10703] = {.lex_state = 0}, - [10704] = {.lex_state = 0}, + [10704] = {.lex_state = 2026}, [10705] = {.lex_state = 0}, - [10706] = {.lex_state = 0}, - [10707] = {.lex_state = 525}, - [10708] = {.lex_state = 132}, - [10709] = {.lex_state = 0}, - [10710] = {.lex_state = 132}, - [10711] = {.lex_state = 132}, + [10706] = {.lex_state = 133}, + [10707] = {.lex_state = 0}, + [10708] = {.lex_state = 0}, + [10709] = {.lex_state = 133}, + [10710] = {.lex_state = 133}, + [10711] = {.lex_state = 0}, [10712] = {.lex_state = 0}, - [10713] = {.lex_state = 132}, - [10714] = {.lex_state = 132}, + [10713] = {.lex_state = 133}, + [10714] = {.lex_state = 0}, [10715] = {.lex_state = 0}, - [10716] = {.lex_state = 132}, - [10717] = {.lex_state = 536}, - [10718] = {.lex_state = 132}, - [10719] = {.lex_state = 2025}, + [10716] = {.lex_state = 133}, + [10717] = {.lex_state = 0}, + [10718] = {.lex_state = 133}, + [10719] = {.lex_state = 0}, [10720] = {.lex_state = 132}, - [10721] = {.lex_state = 0}, - [10722] = {.lex_state = 72}, + [10721] = {.lex_state = 2026}, + [10722] = {.lex_state = 0}, [10723] = {.lex_state = 0}, - [10724] = {.lex_state = 2025}, - [10725] = {.lex_state = 132}, + [10724] = {.lex_state = 133}, + [10725] = {.lex_state = 0}, [10726] = {.lex_state = 0}, - [10727] = {.lex_state = 132}, - [10728] = {.lex_state = 0}, - [10729] = {.lex_state = 959}, + [10727] = {.lex_state = 0}, + [10728] = {.lex_state = 133}, + [10729] = {.lex_state = 2026}, [10730] = {.lex_state = 0}, - [10731] = {.lex_state = 0}, - [10732] = {.lex_state = 132}, + [10731] = {.lex_state = 526}, + [10732] = {.lex_state = 133}, [10733] = {.lex_state = 0}, - [10734] = {.lex_state = 525}, + [10734] = {.lex_state = 2026}, [10735] = {.lex_state = 0}, [10736] = {.lex_state = 0}, [10737] = {.lex_state = 0}, - [10738] = {.lex_state = 0}, - [10739] = {.lex_state = 0}, - [10740] = {.lex_state = 132}, + [10738] = {.lex_state = 2026}, + [10739] = {.lex_state = 133}, + [10740] = {.lex_state = 0}, [10741] = {.lex_state = 0}, [10742] = {.lex_state = 0}, - [10743] = {.lex_state = 132}, - [10744] = {.lex_state = 0}, + [10743] = {.lex_state = 133}, + [10744] = {.lex_state = 133}, [10745] = {.lex_state = 0}, - [10746] = {.lex_state = 0}, - [10747] = {.lex_state = 132}, + [10746] = {.lex_state = 133}, + [10747] = {.lex_state = 0}, [10748] = {.lex_state = 0}, [10749] = {.lex_state = 0}, [10750] = {.lex_state = 0}, [10751] = {.lex_state = 0}, - [10752] = {.lex_state = 0}, + [10752] = {.lex_state = 133}, [10753] = {.lex_state = 0}, - [10754] = {.lex_state = 2025}, - [10755] = {.lex_state = 0}, - [10756] = {.lex_state = 132}, - [10757] = {.lex_state = 536}, - [10758] = {.lex_state = 0}, - [10759] = {.lex_state = 132}, - [10760] = {.lex_state = 132}, - [10761] = {.lex_state = 2025}, - [10762] = {.lex_state = 132}, - [10763] = {.lex_state = 536}, - [10764] = {.lex_state = 132}, - [10765] = {.lex_state = 2025}, + [10754] = {.lex_state = 2026}, + [10755] = {.lex_state = 2026}, + [10756] = {.lex_state = 0}, + [10757] = {.lex_state = 284}, + [10758] = {.lex_state = 133}, + [10759] = {.lex_state = 133}, + [10760] = {.lex_state = 133}, + [10761] = {.lex_state = 2026}, + [10762] = {.lex_state = 2026}, + [10763] = {.lex_state = 133}, + [10764] = {.lex_state = 0}, + [10765] = {.lex_state = 133}, [10766] = {.lex_state = 0}, - [10767] = {.lex_state = 132}, - [10768] = {.lex_state = 2025}, - [10769] = {.lex_state = 132}, - [10770] = {.lex_state = 2025}, - [10771] = {.lex_state = 132}, + [10767] = {.lex_state = 0}, + [10768] = {.lex_state = 0}, + [10769] = {.lex_state = 0}, + [10770] = {.lex_state = 0}, + [10771] = {.lex_state = 537}, [10772] = {.lex_state = 0}, - [10773] = {.lex_state = 132}, + [10773] = {.lex_state = 0}, [10774] = {.lex_state = 0}, - [10775] = {.lex_state = 2025}, - [10776] = {.lex_state = 132}, - [10777] = {.lex_state = 0}, - [10778] = {.lex_state = 959}, - [10779] = {.lex_state = 0}, - [10780] = {.lex_state = 0}, - [10781] = {.lex_state = 0}, - [10782] = {.lex_state = 132}, - [10783] = {.lex_state = 0}, - [10784] = {.lex_state = 132}, - [10785] = {.lex_state = 0}, - [10786] = {.lex_state = 536}, - [10787] = {.lex_state = 0}, - [10788] = {.lex_state = 536}, - [10789] = {.lex_state = 536}, - [10790] = {.lex_state = 0}, - [10791] = {.lex_state = 536}, - [10792] = {.lex_state = 2025}, - [10793] = {.lex_state = 0}, + [10775] = {.lex_state = 537}, + [10776] = {.lex_state = 0}, + [10777] = {.lex_state = 537}, + [10778] = {.lex_state = 133}, + [10779] = {.lex_state = 960}, + [10780] = {.lex_state = 133}, + [10781] = {.lex_state = 2026}, + [10782] = {.lex_state = 2026}, + [10783] = {.lex_state = 960}, + [10784] = {.lex_state = 0}, + [10785] = {.lex_state = 133}, + [10786] = {.lex_state = 261}, + [10787] = {.lex_state = 133}, + [10788] = {.lex_state = 0}, + [10789] = {.lex_state = 0}, + [10790] = {.lex_state = 3546}, + [10791] = {.lex_state = 133}, + [10792] = {.lex_state = 2026}, + [10793] = {.lex_state = 133}, [10794] = {.lex_state = 0}, - [10795] = {.lex_state = 0}, + [10795] = {.lex_state = 133}, [10796] = {.lex_state = 0}, - [10797] = {.lex_state = 536}, - [10798] = {.lex_state = 0}, - [10799] = {.lex_state = 0}, - [10800] = {.lex_state = 542}, - [10801] = {.lex_state = 536}, - [10802] = {.lex_state = 959}, + [10797] = {.lex_state = 2026}, + [10798] = {.lex_state = 284}, + [10799] = {.lex_state = 3546}, + [10800] = {.lex_state = 133}, + [10801] = {.lex_state = 0}, + [10802] = {.lex_state = 0}, [10803] = {.lex_state = 0}, - [10804] = {.lex_state = 0}, - [10805] = {.lex_state = 0}, - [10806] = {.lex_state = 132}, + [10804] = {.lex_state = 133}, + [10805] = {.lex_state = 133}, + [10806] = {.lex_state = 133}, [10807] = {.lex_state = 0}, - [10808] = {.lex_state = 2025}, - [10809] = {.lex_state = 132}, - [10810] = {.lex_state = 2025}, + [10808] = {.lex_state = 537}, + [10809] = {.lex_state = 960}, + [10810] = {.lex_state = 133}, [10811] = {.lex_state = 0}, [10812] = {.lex_state = 0}, - [10813] = {.lex_state = 132}, + [10813] = {.lex_state = 960}, [10814] = {.lex_state = 0}, - [10815] = {.lex_state = 0}, - [10816] = {.lex_state = 132}, + [10815] = {.lex_state = 133}, + [10816] = {.lex_state = 537}, [10817] = {.lex_state = 0}, - [10818] = {.lex_state = 2025}, - [10819] = {.lex_state = 132}, - [10820] = {.lex_state = 132}, - [10821] = {.lex_state = 0}, + [10818] = {.lex_state = 0}, + [10819] = {.lex_state = 0}, + [10820] = {.lex_state = 0}, + [10821] = {.lex_state = 133}, [10822] = {.lex_state = 0}, - [10823] = {.lex_state = 0}, + [10823] = {.lex_state = 960}, [10824] = {.lex_state = 0}, - [10825] = {.lex_state = 525}, - [10826] = {.lex_state = 3545}, - [10827] = {.lex_state = 0}, + [10825] = {.lex_state = 960}, + [10826] = {.lex_state = 0}, + [10827] = {.lex_state = 284}, [10828] = {.lex_state = 0}, [10829] = {.lex_state = 0}, - [10830] = {.lex_state = 469}, - [10831] = {.lex_state = 2025}, - [10832] = {.lex_state = 132}, - [10833] = {.lex_state = 0}, + [10830] = {.lex_state = 0}, + [10831] = {.lex_state = 0}, + [10832] = {.lex_state = 60}, + [10833] = {.lex_state = 537}, [10834] = {.lex_state = 0}, [10835] = {.lex_state = 0}, - [10836] = {.lex_state = 132}, - [10837] = {.lex_state = 542}, + [10836] = {.lex_state = 133}, + [10837] = {.lex_state = 133}, [10838] = {.lex_state = 0}, [10839] = {.lex_state = 0}, - [10840] = {.lex_state = 542}, + [10840] = {.lex_state = 0}, [10841] = {.lex_state = 0}, - [10842] = {.lex_state = 542}, - [10843] = {.lex_state = 3545}, + [10842] = {.lex_state = 0}, + [10843] = {.lex_state = 2026}, [10844] = {.lex_state = 0}, - [10845] = {.lex_state = 2025}, - [10846] = {.lex_state = 542}, + [10845] = {.lex_state = 0}, + [10846] = {.lex_state = 133}, [10847] = {.lex_state = 0}, - [10848] = {.lex_state = 132}, - [10849] = {.lex_state = 2025}, - [10850] = {.lex_state = 0}, - [10851] = {.lex_state = 132}, - [10852] = {.lex_state = 536}, + [10848] = {.lex_state = 133}, + [10849] = {.lex_state = 0}, + [10850] = {.lex_state = 3596}, + [10851] = {.lex_state = 133}, + [10852] = {.lex_state = 537}, [10853] = {.lex_state = 0}, - [10854] = {.lex_state = 0}, - [10855] = {.lex_state = 0}, - [10856] = {.lex_state = 0}, + [10854] = {.lex_state = 2026}, + [10855] = {.lex_state = 2026}, + [10856] = {.lex_state = 2026}, [10857] = {.lex_state = 0}, - [10858] = {.lex_state = 0}, - [10859] = {.lex_state = 0}, - [10860] = {.lex_state = 132}, - [10861] = {.lex_state = 2025}, + [10858] = {.lex_state = 133}, + [10859] = {.lex_state = 133}, + [10860] = {.lex_state = 0}, + [10861] = {.lex_state = 0}, [10862] = {.lex_state = 0}, [10863] = {.lex_state = 0}, - [10864] = {.lex_state = 0}, - [10865] = {.lex_state = 0}, - [10866] = {.lex_state = 132}, - [10867] = {.lex_state = 132}, - [10868] = {.lex_state = 0}, + [10864] = {.lex_state = 2026}, + [10865] = {.lex_state = 133}, + [10866] = {.lex_state = 280}, + [10867] = {.lex_state = 2026}, + [10868] = {.lex_state = 526}, [10869] = {.lex_state = 0}, - [10870] = {.lex_state = 2025}, - [10871] = {.lex_state = 132}, + [10870] = {.lex_state = 133}, + [10871] = {.lex_state = 0}, [10872] = {.lex_state = 0}, - [10873] = {.lex_state = 132}, + [10873] = {.lex_state = 0}, [10874] = {.lex_state = 0}, - [10875] = {.lex_state = 0}, - [10876] = {.lex_state = 132}, + [10875] = {.lex_state = 2026}, + [10876] = {.lex_state = 0}, [10877] = {.lex_state = 0}, - [10878] = {.lex_state = 2025}, - [10879] = {.lex_state = 0}, - [10880] = {.lex_state = 3545}, - [10881] = {.lex_state = 132}, - [10882] = {.lex_state = 0}, - [10883] = {.lex_state = 2025}, + [10878] = {.lex_state = 133}, + [10879] = {.lex_state = 537}, + [10880] = {.lex_state = 133}, + [10881] = {.lex_state = 452}, + [10882] = {.lex_state = 960}, + [10883] = {.lex_state = 0}, [10884] = {.lex_state = 0}, [10885] = {.lex_state = 0}, - [10886] = {.lex_state = 132}, - [10887] = {.lex_state = 2025}, - [10888] = {.lex_state = 959}, + [10886] = {.lex_state = 0}, + [10887] = {.lex_state = 133}, + [10888] = {.lex_state = 66}, [10889] = {.lex_state = 0}, - [10890] = {.lex_state = 27}, - [10891] = {.lex_state = 959}, + [10890] = {.lex_state = 2026}, + [10891] = {.lex_state = 0}, [10892] = {.lex_state = 0}, - [10893] = {.lex_state = 2025}, - [10894] = {.lex_state = 0}, - [10895] = {.lex_state = 0}, - [10896] = {.lex_state = 0}, - [10897] = {.lex_state = 72}, + [10893] = {.lex_state = 0}, + [10894] = {.lex_state = 133}, + [10895] = {.lex_state = 132}, + [10896] = {.lex_state = 66}, + [10897] = {.lex_state = 0}, [10898] = {.lex_state = 0}, [10899] = {.lex_state = 0}, [10900] = {.lex_state = 0}, - [10901] = {.lex_state = 0}, + [10901] = {.lex_state = 133}, [10902] = {.lex_state = 0}, - [10903] = {.lex_state = 0}, - [10904] = {.lex_state = 0}, - [10905] = {.lex_state = 0}, - [10906] = {.lex_state = 536}, - [10907] = {.lex_state = 0}, - [10908] = {.lex_state = 0}, - [10909] = {.lex_state = 536}, + [10903] = {.lex_state = 133}, + [10904] = {.lex_state = 525}, + [10905] = {.lex_state = 2026}, + [10906] = {.lex_state = 133}, + [10907] = {.lex_state = 537}, + [10908] = {.lex_state = 133}, + [10909] = {.lex_state = 960}, [10910] = {.lex_state = 0}, - [10911] = {.lex_state = 0}, + [10911] = {.lex_state = 5}, [10912] = {.lex_state = 0}, - [10913] = {.lex_state = 132}, - [10914] = {.lex_state = 0}, - [10915] = {.lex_state = 0}, - [10916] = {.lex_state = 525}, - [10917] = {.lex_state = 132}, - [10918] = {.lex_state = 0}, - [10919] = {.lex_state = 0}, - [10920] = {.lex_state = 132}, + [10913] = {.lex_state = 0}, + [10914] = {.lex_state = 526}, + [10915] = {.lex_state = 960}, + [10916] = {.lex_state = 0}, + [10917] = {.lex_state = 537}, + [10918] = {.lex_state = 2026}, + [10919] = {.lex_state = 133}, + [10920] = {.lex_state = 0}, [10921] = {.lex_state = 0}, - [10922] = {.lex_state = 132}, - [10923] = {.lex_state = 2025}, - [10924] = {.lex_state = 959}, - [10925] = {.lex_state = 132}, - [10926] = {.lex_state = 2025}, - [10927] = {.lex_state = 132}, - [10928] = {.lex_state = 0}, - [10929] = {.lex_state = 132}, + [10922] = {.lex_state = 0}, + [10923] = {.lex_state = 2026}, + [10924] = {.lex_state = 133}, + [10925] = {.lex_state = 0}, + [10926] = {.lex_state = 0}, + [10927] = {.lex_state = 133}, + [10928] = {.lex_state = 133}, + [10929] = {.lex_state = 133}, [10930] = {.lex_state = 0}, - [10931] = {.lex_state = 2025}, - [10932] = {.lex_state = 0}, + [10931] = {.lex_state = 0}, + [10932] = {.lex_state = 133}, [10933] = {.lex_state = 0}, - [10934] = {.lex_state = 0}, + [10934] = {.lex_state = 2026}, [10935] = {.lex_state = 0}, [10936] = {.lex_state = 0}, - [10937] = {.lex_state = 0}, - [10938] = {.lex_state = 132}, - [10939] = {.lex_state = 27}, + [10937] = {.lex_state = 66}, + [10938] = {.lex_state = 0}, + [10939] = {.lex_state = 60}, [10940] = {.lex_state = 0}, [10941] = {.lex_state = 0}, - [10942] = {.lex_state = 0}, + [10942] = {.lex_state = 2026}, [10943] = {.lex_state = 0}, [10944] = {.lex_state = 0}, - [10945] = {.lex_state = 2025}, + [10945] = {.lex_state = 0}, [10946] = {.lex_state = 0}, - [10947] = {.lex_state = 0}, - [10948] = {.lex_state = 0}, - [10949] = {.lex_state = 0}, - [10950] = {.lex_state = 132}, - [10951] = {.lex_state = 0}, - [10952] = {.lex_state = 132}, - [10953] = {.lex_state = 2025}, - [10954] = {.lex_state = 132}, - [10955] = {.lex_state = 2025}, - [10956] = {.lex_state = 132}, - [10957] = {.lex_state = 0}, - [10958] = {.lex_state = 536}, - [10959] = {.lex_state = 0}, - [10960] = {.lex_state = 0}, - [10961] = {.lex_state = 0}, - [10962] = {.lex_state = 132}, - [10963] = {.lex_state = 526}, - [10964] = {.lex_state = 0}, - [10965] = {.lex_state = 27}, + [10947] = {.lex_state = 133}, + [10948] = {.lex_state = 2026}, + [10949] = {.lex_state = 133}, + [10950] = {.lex_state = 0}, + [10951] = {.lex_state = 133}, + [10952] = {.lex_state = 0}, + [10953] = {.lex_state = 133}, + [10954] = {.lex_state = 526}, + [10955] = {.lex_state = 537}, + [10956] = {.lex_state = 133}, + [10957] = {.lex_state = 537}, + [10958] = {.lex_state = 0}, + [10959] = {.lex_state = 2026}, + [10960] = {.lex_state = 2026}, + [10961] = {.lex_state = 133}, + [10962] = {.lex_state = 2026}, + [10963] = {.lex_state = 66}, + [10964] = {.lex_state = 133}, + [10965] = {.lex_state = 3546}, [10966] = {.lex_state = 0}, [10967] = {.lex_state = 0}, [10968] = {.lex_state = 0}, - [10969] = {.lex_state = 0}, + [10969] = {.lex_state = 133}, [10970] = {.lex_state = 0}, [10971] = {.lex_state = 0}, - [10972] = {.lex_state = 0}, - [10973] = {.lex_state = 0}, - [10974] = {.lex_state = 0}, - [10975] = {.lex_state = 959}, - [10976] = {.lex_state = 132}, - [10977] = {.lex_state = 2025}, - [10978] = {.lex_state = 132}, + [10972] = {.lex_state = 133}, + [10973] = {.lex_state = 133}, + [10974] = {.lex_state = 526}, + [10975] = {.lex_state = 537}, + [10976] = {.lex_state = 0}, + [10977] = {.lex_state = 0}, + [10978] = {.lex_state = 0}, [10979] = {.lex_state = 0}, - [10980] = {.lex_state = 959}, - [10981] = {.lex_state = 2025}, - [10982] = {.lex_state = 132}, - [10983] = {.lex_state = 0}, + [10980] = {.lex_state = 2026}, + [10981] = {.lex_state = 0}, + [10982] = {.lex_state = 0}, + [10983] = {.lex_state = 537}, [10984] = {.lex_state = 0}, - [10985] = {.lex_state = 132}, - [10986] = {.lex_state = 0}, - [10987] = {.lex_state = 261}, - [10988] = {.lex_state = 27}, + [10985] = {.lex_state = 0}, + [10986] = {.lex_state = 66}, + [10987] = {.lex_state = 0}, + [10988] = {.lex_state = 0}, [10989] = {.lex_state = 0}, [10990] = {.lex_state = 0}, - [10991] = {.lex_state = 2025}, + [10991] = {.lex_state = 2026}, [10992] = {.lex_state = 0}, [10993] = {.lex_state = 0}, [10994] = {.lex_state = 0}, [10995] = {.lex_state = 0}, - [10996] = {.lex_state = 0}, + [10996] = {.lex_state = 66}, [10997] = {.lex_state = 0}, - [10998] = {.lex_state = 27}, + [10998] = {.lex_state = 133}, [10999] = {.lex_state = 0}, [11000] = {.lex_state = 0}, - [11001] = {.lex_state = 536}, + [11001] = {.lex_state = 0}, [11002] = {.lex_state = 0}, [11003] = {.lex_state = 0}, [11004] = {.lex_state = 0}, - [11005] = {.lex_state = 0}, - [11006] = {.lex_state = 0}, + [11005] = {.lex_state = 537}, + [11006] = {.lex_state = 66}, [11007] = {.lex_state = 0}, - [11008] = {.lex_state = 27}, - [11009] = {.lex_state = 0}, - [11010] = {.lex_state = 132}, - [11011] = {.lex_state = 2025}, + [11008] = {.lex_state = 0}, + [11009] = {.lex_state = 133}, + [11010] = {.lex_state = 0}, + [11011] = {.lex_state = 0}, [11012] = {.lex_state = 0}, [11013] = {.lex_state = 0}, [11014] = {.lex_state = 0}, [11015] = {.lex_state = 0}, - [11016] = {.lex_state = 0}, + [11016] = {.lex_state = 66}, [11017] = {.lex_state = 0}, - [11018] = {.lex_state = 27}, - [11019] = {.lex_state = 959}, + [11018] = {.lex_state = 2026}, + [11019] = {.lex_state = 0}, [11020] = {.lex_state = 0}, - [11021] = {.lex_state = 0}, + [11021] = {.lex_state = 133}, [11022] = {.lex_state = 0}, - [11023] = {.lex_state = 536}, + [11023] = {.lex_state = 0}, [11024] = {.lex_state = 0}, [11025] = {.lex_state = 0}, - [11026] = {.lex_state = 0}, + [11026] = {.lex_state = 66}, [11027] = {.lex_state = 0}, - [11028] = {.lex_state = 27}, - [11029] = {.lex_state = 0}, + [11028] = {.lex_state = 0}, + [11029] = {.lex_state = 2026}, [11030] = {.lex_state = 0}, - [11031] = {.lex_state = 0}, + [11031] = {.lex_state = 470}, [11032] = {.lex_state = 0}, - [11033] = {.lex_state = 124}, + [11033] = {.lex_state = 0}, [11034] = {.lex_state = 0}, [11035] = {.lex_state = 0}, - [11036] = {.lex_state = 0}, + [11036] = {.lex_state = 66}, [11037] = {.lex_state = 0}, - [11038] = {.lex_state = 27}, + [11038] = {.lex_state = 133}, [11039] = {.lex_state = 0}, - [11040] = {.lex_state = 132}, - [11041] = {.lex_state = 2025}, + [11040] = {.lex_state = 0}, + [11041] = {.lex_state = 0}, [11042] = {.lex_state = 0}, - [11043] = {.lex_state = 261}, + [11043] = {.lex_state = 0}, [11044] = {.lex_state = 0}, - [11045] = {.lex_state = 0}, - [11046] = {.lex_state = 0}, - [11047] = {.lex_state = 3545}, - [11048] = {.lex_state = 27}, - [11049] = {.lex_state = 2025}, - [11050] = {.lex_state = 132}, + [11045] = {.lex_state = 2026}, + [11046] = {.lex_state = 66}, + [11047] = {.lex_state = 2026}, + [11048] = {.lex_state = 0}, + [11049] = {.lex_state = 133}, + [11050] = {.lex_state = 0}, [11051] = {.lex_state = 0}, [11052] = {.lex_state = 0}, - [11053] = {.lex_state = 469}, + [11053] = {.lex_state = 0}, [11054] = {.lex_state = 0}, - [11055] = {.lex_state = 0}, - [11056] = {.lex_state = 0}, - [11057] = {.lex_state = 132}, - [11058] = {.lex_state = 27}, + [11055] = {.lex_state = 133}, + [11056] = {.lex_state = 66}, + [11057] = {.lex_state = 133}, + [11058] = {.lex_state = 0}, [11059] = {.lex_state = 0}, [11060] = {.lex_state = 0}, - [11061] = {.lex_state = 0}, + [11061] = {.lex_state = 133}, [11062] = {.lex_state = 0}, - [11063] = {.lex_state = 2025}, + [11063] = {.lex_state = 0}, [11064] = {.lex_state = 0}, [11065] = {.lex_state = 0}, - [11066] = {.lex_state = 0}, - [11067] = {.lex_state = 132}, - [11068] = {.lex_state = 27}, - [11069] = {.lex_state = 0}, + [11066] = {.lex_state = 66}, + [11067] = {.lex_state = 133}, + [11068] = {.lex_state = 0}, + [11069] = {.lex_state = 2026}, [11070] = {.lex_state = 0}, - [11071] = {.lex_state = 2025}, + [11071] = {.lex_state = 526}, [11072] = {.lex_state = 0}, [11073] = {.lex_state = 0}, [11074] = {.lex_state = 0}, - [11075] = {.lex_state = 0}, - [11076] = {.lex_state = 0}, - [11077] = {.lex_state = 0}, - [11078] = {.lex_state = 27}, - [11079] = {.lex_state = 0}, - [11080] = {.lex_state = 132}, - [11081] = {.lex_state = 3545}, + [11075] = {.lex_state = 133}, + [11076] = {.lex_state = 66}, + [11077] = {.lex_state = 2026}, + [11078] = {.lex_state = 133}, + [11079] = {.lex_state = 537}, + [11080] = {.lex_state = 0}, + [11081] = {.lex_state = 133}, [11082] = {.lex_state = 0}, [11083] = {.lex_state = 0}, [11084] = {.lex_state = 0}, - [11085] = {.lex_state = 0}, - [11086] = {.lex_state = 0}, + [11085] = {.lex_state = 133}, + [11086] = {.lex_state = 66}, [11087] = {.lex_state = 0}, - [11088] = {.lex_state = 27}, - [11089] = {.lex_state = 0}, + [11088] = {.lex_state = 0}, + [11089] = {.lex_state = 2026}, [11090] = {.lex_state = 0}, - [11091] = {.lex_state = 2025}, + [11091] = {.lex_state = 133}, [11092] = {.lex_state = 0}, - [11093] = {.lex_state = 283}, + [11093] = {.lex_state = 0}, [11094] = {.lex_state = 0}, [11095] = {.lex_state = 0}, - [11096] = {.lex_state = 0}, + [11096] = {.lex_state = 66}, [11097] = {.lex_state = 0}, - [11098] = {.lex_state = 27}, - [11099] = {.lex_state = 132}, + [11098] = {.lex_state = 133}, + [11099] = {.lex_state = 0}, [11100] = {.lex_state = 0}, - [11101] = {.lex_state = 959}, + [11101] = {.lex_state = 133}, [11102] = {.lex_state = 0}, - [11103] = {.lex_state = 132}, + [11103] = {.lex_state = 0}, [11104] = {.lex_state = 0}, [11105] = {.lex_state = 0}, - [11106] = {.lex_state = 0}, - [11107] = {.lex_state = 2025}, - [11108] = {.lex_state = 27}, - [11109] = {.lex_state = 132}, - [11110] = {.lex_state = 2025}, + [11106] = {.lex_state = 66}, + [11107] = {.lex_state = 0}, + [11108] = {.lex_state = 133}, + [11109] = {.lex_state = 133}, + [11110] = {.lex_state = 0}, [11111] = {.lex_state = 132}, [11112] = {.lex_state = 0}, - [11113] = {.lex_state = 959}, + [11113] = {.lex_state = 0}, [11114] = {.lex_state = 0}, [11115] = {.lex_state = 0}, - [11116] = {.lex_state = 0}, - [11117] = {.lex_state = 132}, - [11118] = {.lex_state = 27}, - [11119] = {.lex_state = 959}, + [11116] = {.lex_state = 66}, + [11117] = {.lex_state = 2026}, + [11118] = {.lex_state = 543}, + [11119] = {.lex_state = 0}, [11120] = {.lex_state = 0}, - [11121] = {.lex_state = 0}, + [11121] = {.lex_state = 133}, [11122] = {.lex_state = 0}, [11123] = {.lex_state = 0}, [11124] = {.lex_state = 0}, [11125] = {.lex_state = 0}, - [11126] = {.lex_state = 0}, + [11126] = {.lex_state = 66}, [11127] = {.lex_state = 0}, - [11128] = {.lex_state = 27}, - [11129] = {.lex_state = 536}, + [11128] = {.lex_state = 3546}, + [11129] = {.lex_state = 133}, [11130] = {.lex_state = 0}, - [11131] = {.lex_state = 0}, + [11131] = {.lex_state = 2026}, [11132] = {.lex_state = 0}, [11133] = {.lex_state = 0}, [11134] = {.lex_state = 0}, [11135] = {.lex_state = 0}, - [11136] = {.lex_state = 0}, + [11136] = {.lex_state = 66}, [11137] = {.lex_state = 0}, - [11138] = {.lex_state = 27}, + [11138] = {.lex_state = 133}, [11139] = {.lex_state = 0}, - [11140] = {.lex_state = 536}, - [11141] = {.lex_state = 132}, + [11140] = {.lex_state = 0}, + [11141] = {.lex_state = 0}, [11142] = {.lex_state = 0}, - [11143] = {.lex_state = 2025}, + [11143] = {.lex_state = 0}, [11144] = {.lex_state = 0}, [11145] = {.lex_state = 0}, - [11146] = {.lex_state = 0}, - [11147] = {.lex_state = 132}, - [11148] = {.lex_state = 27}, - [11149] = {.lex_state = 2025}, - [11150] = {.lex_state = 132}, - [11151] = {.lex_state = 0}, + [11146] = {.lex_state = 66}, + [11147] = {.lex_state = 0}, + [11148] = {.lex_state = 0}, + [11149] = {.lex_state = 0}, + [11150] = {.lex_state = 0}, + [11151] = {.lex_state = 537}, [11152] = {.lex_state = 0}, - [11153] = {.lex_state = 132}, + [11153] = {.lex_state = 0}, [11154] = {.lex_state = 0}, - [11155] = {.lex_state = 0}, - [11156] = {.lex_state = 0}, - [11157] = {.lex_state = 0}, - [11158] = {.lex_state = 27}, - [11159] = {.lex_state = 2025}, + [11155] = {.lex_state = 133}, + [11156] = {.lex_state = 66}, + [11157] = {.lex_state = 960}, + [11158] = {.lex_state = 0}, + [11159] = {.lex_state = 537}, [11160] = {.lex_state = 0}, - [11161] = {.lex_state = 0}, + [11161] = {.lex_state = 2026}, [11162] = {.lex_state = 0}, [11163] = {.lex_state = 0}, [11164] = {.lex_state = 0}, [11165] = {.lex_state = 0}, - [11166] = {.lex_state = 0}, - [11167] = {.lex_state = 132}, - [11168] = {.lex_state = 27}, + [11166] = {.lex_state = 66}, + [11167] = {.lex_state = 537}, + [11168] = {.lex_state = 2026}, [11169] = {.lex_state = 0}, [11170] = {.lex_state = 0}, [11171] = {.lex_state = 0}, @@ -72494,120 +72521,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11173] = {.lex_state = 0}, [11174] = {.lex_state = 0}, [11175] = {.lex_state = 0}, - [11176] = {.lex_state = 0}, - [11177] = {.lex_state = 0}, - [11178] = {.lex_state = 27}, - [11179] = {.lex_state = 132}, + [11176] = {.lex_state = 66}, + [11177] = {.lex_state = 2026}, + [11178] = {.lex_state = 2026}, + [11179] = {.lex_state = 133}, [11180] = {.lex_state = 0}, [11181] = {.lex_state = 0}, [11182] = {.lex_state = 0}, - [11183] = {.lex_state = 536}, + [11183] = {.lex_state = 0}, [11184] = {.lex_state = 0}, - [11185] = {.lex_state = 0}, - [11186] = {.lex_state = 0}, + [11185] = {.lex_state = 133}, + [11186] = {.lex_state = 66}, [11187] = {.lex_state = 0}, - [11188] = {.lex_state = 27}, + [11188] = {.lex_state = 0}, [11189] = {.lex_state = 0}, [11190] = {.lex_state = 0}, - [11191] = {.lex_state = 0}, + [11191] = {.lex_state = 133}, [11192] = {.lex_state = 0}, - [11193] = {.lex_state = 132}, - [11194] = {.lex_state = 0}, - [11195] = {.lex_state = 2025}, - [11196] = {.lex_state = 27}, - [11197] = {.lex_state = 132}, - [11198] = {.lex_state = 2025}, + [11193] = {.lex_state = 0}, + [11194] = {.lex_state = 66}, + [11195] = {.lex_state = 124}, + [11196] = {.lex_state = 133}, + [11197] = {.lex_state = 0}, + [11198] = {.lex_state = 133}, [11199] = {.lex_state = 0}, - [11200] = {.lex_state = 132}, - [11201] = {.lex_state = 0}, - [11202] = {.lex_state = 0}, - [11203] = {.lex_state = 27}, - [11204] = {.lex_state = 132}, - [11205] = {.lex_state = 0}, + [11200] = {.lex_state = 0}, + [11201] = {.lex_state = 66}, + [11202] = {.lex_state = 133}, + [11203] = {.lex_state = 2026}, + [11204] = {.lex_state = 0}, + [11205] = {.lex_state = 261}, [11206] = {.lex_state = 0}, [11207] = {.lex_state = 0}, - [11208] = {.lex_state = 0}, - [11209] = {.lex_state = 0}, - [11210] = {.lex_state = 27}, - [11211] = {.lex_state = 2025}, - [11212] = {.lex_state = 0}, + [11208] = {.lex_state = 66}, + [11209] = {.lex_state = 133}, + [11210] = {.lex_state = 2026}, + [11211] = {.lex_state = 0}, + [11212] = {.lex_state = 2026}, [11213] = {.lex_state = 0}, - [11214] = {.lex_state = 0}, - [11215] = {.lex_state = 0}, - [11216] = {.lex_state = 2025}, - [11217] = {.lex_state = 27}, - [11218] = {.lex_state = 3595}, - [11219] = {.lex_state = 0}, + [11214] = {.lex_state = 133}, + [11215] = {.lex_state = 66}, + [11216] = {.lex_state = 133}, + [11217] = {.lex_state = 537}, + [11218] = {.lex_state = 0}, + [11219] = {.lex_state = 2026}, [11220] = {.lex_state = 0}, - [11221] = {.lex_state = 0}, - [11222] = {.lex_state = 0}, - [11223] = {.lex_state = 132}, - [11224] = {.lex_state = 27}, + [11221] = {.lex_state = 133}, + [11222] = {.lex_state = 66}, + [11223] = {.lex_state = 0}, + [11224] = {.lex_state = 0}, [11225] = {.lex_state = 0}, [11226] = {.lex_state = 0}, [11227] = {.lex_state = 0}, - [11228] = {.lex_state = 0}, - [11229] = {.lex_state = 0}, - [11230] = {.lex_state = 132}, - [11231] = {.lex_state = 27}, + [11228] = {.lex_state = 133}, + [11229] = {.lex_state = 66}, + [11230] = {.lex_state = 2026}, + [11231] = {.lex_state = 133}, [11232] = {.lex_state = 0}, - [11233] = {.lex_state = 132}, + [11233] = {.lex_state = 133}, [11234] = {.lex_state = 0}, [11235] = {.lex_state = 0}, - [11236] = {.lex_state = 0}, + [11236] = {.lex_state = 66}, [11237] = {.lex_state = 0}, - [11238] = {.lex_state = 27}, + [11238] = {.lex_state = 0}, [11239] = {.lex_state = 0}, - [11240] = {.lex_state = 2025}, + [11240] = {.lex_state = 0}, [11241] = {.lex_state = 0}, - [11242] = {.lex_state = 2025}, - [11243] = {.lex_state = 0}, - [11244] = {.lex_state = 2025}, - [11245] = {.lex_state = 27}, - [11246] = {.lex_state = 132}, + [11242] = {.lex_state = 0}, + [11243] = {.lex_state = 66}, + [11244] = {.lex_state = 537}, + [11245] = {.lex_state = 0}, + [11246] = {.lex_state = 0}, [11247] = {.lex_state = 0}, [11248] = {.lex_state = 0}, - [11249] = {.lex_state = 0}, - [11250] = {.lex_state = 0}, + [11249] = {.lex_state = 133}, + [11250] = {.lex_state = 66}, [11251] = {.lex_state = 0}, - [11252] = {.lex_state = 27}, + [11252] = {.lex_state = 0}, [11253] = {.lex_state = 0}, - [11254] = {.lex_state = 536}, + [11254] = {.lex_state = 0}, [11255] = {.lex_state = 0}, - [11256] = {.lex_state = 536}, + [11256] = {.lex_state = 133}, [11257] = {.lex_state = 0}, [11258] = {.lex_state = 0}, [11259] = {.lex_state = 0}, [11260] = {.lex_state = 0}, - [11261] = {.lex_state = 0}, + [11261] = {.lex_state = 960}, [11262] = {.lex_state = 0}, - [11263] = {.lex_state = 0}, - [11264] = {.lex_state = 27}, - [11265] = {.lex_state = 132}, - [11266] = {.lex_state = 0}, + [11263] = {.lex_state = 2026}, + [11264] = {.lex_state = 0}, + [11265] = {.lex_state = 0}, + [11266] = {.lex_state = 133}, [11267] = {.lex_state = 0}, - [11268] = {.lex_state = 2025}, - [11269] = {.lex_state = 132}, - [11270] = {.lex_state = 0}, - [11271] = {.lex_state = 2025}, - [11272] = {.lex_state = 132}, + [11268] = {.lex_state = 0}, + [11269] = {.lex_state = 0}, + [11270] = {.lex_state = 133}, + [11271] = {.lex_state = 0}, + [11272] = {.lex_state = 0}, [11273] = {.lex_state = 0}, [11274] = {.lex_state = 0}, - [11275] = {.lex_state = 132}, + [11275] = {.lex_state = 0}, [11276] = {.lex_state = 0}, [11277] = {.lex_state = 0}, [11278] = {.lex_state = 0}, - [11279] = {.lex_state = 261}, + [11279] = {.lex_state = 2026}, [11280] = {.lex_state = 0}, - [11281] = {.lex_state = 2025}, + [11281] = {.lex_state = 0}, [11282] = {.lex_state = 0}, - [11283] = {.lex_state = 0}, + [11283] = {.lex_state = 2026}, [11284] = {.lex_state = 0}, [11285] = {.lex_state = 0}, [11286] = {.lex_state = 0}, - [11287] = {.lex_state = 0}, + [11287] = {.lex_state = 133}, [11288] = {.lex_state = 0}, - [11289] = {.lex_state = 132}, + [11289] = {.lex_state = 261}, [11290] = {.lex_state = 0}, [11291] = {.lex_state = 0}, [11292] = {.lex_state = 0}, @@ -72615,159 +72642,159 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11294] = {.lex_state = 0}, [11295] = {.lex_state = 0}, [11296] = {.lex_state = 0}, - [11297] = {.lex_state = 0}, + [11297] = {.lex_state = 2026}, [11298] = {.lex_state = 0}, - [11299] = {.lex_state = 132}, + [11299] = {.lex_state = 0}, [11300] = {.lex_state = 0}, - [11301] = {.lex_state = 0}, + [11301] = {.lex_state = 133}, [11302] = {.lex_state = 0}, [11303] = {.lex_state = 0}, [11304] = {.lex_state = 0}, - [11305] = {.lex_state = 0}, + [11305] = {.lex_state = 537}, [11306] = {.lex_state = 0}, - [11307] = {.lex_state = 0}, + [11307] = {.lex_state = 133}, [11308] = {.lex_state = 0}, - [11309] = {.lex_state = 2025}, + [11309] = {.lex_state = 0}, [11310] = {.lex_state = 0}, - [11311] = {.lex_state = 536}, + [11311] = {.lex_state = 133}, [11312] = {.lex_state = 0}, [11313] = {.lex_state = 0}, [11314] = {.lex_state = 0}, - [11315] = {.lex_state = 0}, + [11315] = {.lex_state = 2026}, [11316] = {.lex_state = 0}, - [11317] = {.lex_state = 124}, + [11317] = {.lex_state = 2026}, [11318] = {.lex_state = 0}, - [11319] = {.lex_state = 0}, + [11319] = {.lex_state = 2026}, [11320] = {.lex_state = 0}, [11321] = {.lex_state = 0}, [11322] = {.lex_state = 0}, [11323] = {.lex_state = 0}, [11324] = {.lex_state = 0}, - [11325] = {.lex_state = 132}, + [11325] = {.lex_state = 133}, [11326] = {.lex_state = 0}, - [11327] = {.lex_state = 2025}, + [11327] = {.lex_state = 133}, [11328] = {.lex_state = 0}, - [11329] = {.lex_state = 132}, + [11329] = {.lex_state = 0}, [11330] = {.lex_state = 0}, - [11331] = {.lex_state = 2025}, + [11331] = {.lex_state = 0}, [11332] = {.lex_state = 0}, - [11333] = {.lex_state = 132}, + [11333] = {.lex_state = 2026}, [11334] = {.lex_state = 0}, - [11335] = {.lex_state = 0}, + [11335] = {.lex_state = 543}, [11336] = {.lex_state = 0}, - [11337] = {.lex_state = 132}, + [11337] = {.lex_state = 133}, [11338] = {.lex_state = 0}, - [11339] = {.lex_state = 0}, - [11340] = {.lex_state = 0}, + [11339] = {.lex_state = 133}, + [11340] = {.lex_state = 527}, [11341] = {.lex_state = 0}, - [11342] = {.lex_state = 132}, - [11343] = {.lex_state = 5}, + [11342] = {.lex_state = 537}, + [11343] = {.lex_state = 2026}, [11344] = {.lex_state = 0}, [11345] = {.lex_state = 0}, - [11346] = {.lex_state = 0}, - [11347] = {.lex_state = 132}, - [11348] = {.lex_state = 0}, - [11349] = {.lex_state = 132}, - [11350] = {.lex_state = 132}, - [11351] = {.lex_state = 132}, + [11346] = {.lex_state = 2026}, + [11347] = {.lex_state = 0}, + [11348] = {.lex_state = 133}, + [11349] = {.lex_state = 0}, + [11350] = {.lex_state = 133}, + [11351] = {.lex_state = 526}, [11352] = {.lex_state = 0}, [11353] = {.lex_state = 0}, [11354] = {.lex_state = 0}, - [11355] = {.lex_state = 60}, - [11356] = {.lex_state = 0}, + [11355] = {.lex_state = 0}, + [11356] = {.lex_state = 133}, [11357] = {.lex_state = 0}, - [11358] = {.lex_state = 132}, - [11359] = {.lex_state = 0}, + [11358] = {.lex_state = 0}, + [11359] = {.lex_state = 133}, [11360] = {.lex_state = 0}, - [11361] = {.lex_state = 132}, - [11362] = {.lex_state = 0}, - [11363] = {.lex_state = 0}, - [11364] = {.lex_state = 2025}, - [11365] = {.lex_state = 132}, - [11366] = {.lex_state = 2025}, - [11367] = {.lex_state = 132}, - [11368] = {.lex_state = 0}, - [11369] = {.lex_state = 0}, + [11361] = {.lex_state = 133}, + [11362] = {.lex_state = 537}, + [11363] = {.lex_state = 133}, + [11364] = {.lex_state = 133}, + [11365] = {.lex_state = 0}, + [11366] = {.lex_state = 3546}, + [11367] = {.lex_state = 2026}, + [11368] = {.lex_state = 133}, + [11369] = {.lex_state = 133}, [11370] = {.lex_state = 0}, [11371] = {.lex_state = 0}, - [11372] = {.lex_state = 536}, - [11373] = {.lex_state = 536}, + [11372] = {.lex_state = 133}, + [11373] = {.lex_state = 0}, [11374] = {.lex_state = 0}, - [11375] = {.lex_state = 0}, - [11376] = {.lex_state = 60}, - [11377] = {.lex_state = 0}, - [11378] = {.lex_state = 0}, + [11375] = {.lex_state = 2026}, + [11376] = {.lex_state = 0}, + [11377] = {.lex_state = 2026}, + [11378] = {.lex_state = 133}, [11379] = {.lex_state = 0}, - [11380] = {.lex_state = 132}, - [11381] = {.lex_state = 132}, - [11382] = {.lex_state = 0}, - [11383] = {.lex_state = 2025}, - [11384] = {.lex_state = 132}, - [11385] = {.lex_state = 2025}, - [11386] = {.lex_state = 132}, - [11387] = {.lex_state = 0}, - [11388] = {.lex_state = 279}, - [11389] = {.lex_state = 283}, - [11390] = {.lex_state = 283}, - [11391] = {.lex_state = 451}, - [11392] = {.lex_state = 524}, - [11393] = {.lex_state = 959}, - [11394] = {.lex_state = 132}, + [11380] = {.lex_state = 0}, + [11381] = {.lex_state = 0}, + [11382] = {.lex_state = 133}, + [11383] = {.lex_state = 0}, + [11384] = {.lex_state = 2026}, + [11385] = {.lex_state = 0}, + [11386] = {.lex_state = 0}, + [11387] = {.lex_state = 133}, + [11388] = {.lex_state = 0}, + [11389] = {.lex_state = 0}, + [11390] = {.lex_state = 0}, + [11391] = {.lex_state = 0}, + [11392] = {.lex_state = 2026}, + [11393] = {.lex_state = 0}, + [11394] = {.lex_state = 133}, [11395] = {.lex_state = 0}, - [11396] = {.lex_state = 2025}, + [11396] = {.lex_state = 0}, [11397] = {.lex_state = 0}, [11398] = {.lex_state = 0}, - [11399] = {.lex_state = 0}, - [11400] = {.lex_state = 0}, - [11401] = {.lex_state = 959}, + [11399] = {.lex_state = 2026}, + [11400] = {.lex_state = 133}, + [11401] = {.lex_state = 2026}, [11402] = {.lex_state = 0}, - [11403] = {.lex_state = 0}, + [11403] = {.lex_state = 132}, [11404] = {.lex_state = 0}, - [11405] = {.lex_state = 72}, + [11405] = {.lex_state = 0}, [11406] = {.lex_state = 0}, - [11407] = {.lex_state = 0}, + [11407] = {.lex_state = 2026}, [11408] = {.lex_state = 0}, - [11409] = {.lex_state = 0}, - [11410] = {.lex_state = 132}, - [11411] = {.lex_state = 72}, + [11409] = {.lex_state = 132}, + [11410] = {.lex_state = 0}, + [11411] = {.lex_state = 132}, [11412] = {.lex_state = 0}, - [11413] = {.lex_state = 72}, + [11413] = {.lex_state = 132}, [11414] = {.lex_state = 0}, - [11415] = {.lex_state = 72}, + [11415] = {.lex_state = 132}, [11416] = {.lex_state = 0}, - [11417] = {.lex_state = 72}, + [11417] = {.lex_state = 132}, [11418] = {.lex_state = 0}, - [11419] = {.lex_state = 72}, + [11419] = {.lex_state = 132}, [11420] = {.lex_state = 0}, - [11421] = {.lex_state = 72}, + [11421] = {.lex_state = 132}, [11422] = {.lex_state = 0}, - [11423] = {.lex_state = 72}, + [11423] = {.lex_state = 132}, [11424] = {.lex_state = 0}, - [11425] = {.lex_state = 72}, + [11425] = {.lex_state = 132}, [11426] = {.lex_state = 0}, - [11427] = {.lex_state = 72}, + [11427] = {.lex_state = 132}, [11428] = {.lex_state = 0}, - [11429] = {.lex_state = 72}, + [11429] = {.lex_state = 132}, [11430] = {.lex_state = 0}, - [11431] = {.lex_state = 72}, + [11431] = {.lex_state = 132}, [11432] = {.lex_state = 0}, - [11433] = {.lex_state = 72}, + [11433] = {.lex_state = 132}, [11434] = {.lex_state = 0}, - [11435] = {.lex_state = 72}, + [11435] = {.lex_state = 132}, [11436] = {.lex_state = 0}, - [11437] = {.lex_state = 72}, + [11437] = {.lex_state = 132}, [11438] = {.lex_state = 0}, - [11439] = {.lex_state = 72}, + [11439] = {.lex_state = 132}, [11440] = {.lex_state = 0}, - [11441] = {.lex_state = 72}, + [11441] = {.lex_state = 132}, [11442] = {.lex_state = 0}, - [11443] = {.lex_state = 72}, + [11443] = {.lex_state = 132}, [11444] = {.lex_state = 0}, - [11445] = {.lex_state = 72}, + [11445] = {.lex_state = 132}, [11446] = {.lex_state = 0}, - [11447] = {.lex_state = 72}, + [11447] = {.lex_state = 132}, [11448] = {.lex_state = 0}, - [11449] = {.lex_state = 72}, + [11449] = {.lex_state = 0}, [11450] = {.lex_state = 0}, [11451] = {.lex_state = 0}, [11452] = {.lex_state = 0}, @@ -72783,35 +72810,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11462] = {.lex_state = 0}, [11463] = {.lex_state = 0}, [11464] = {.lex_state = 0}, - [11465] = {.lex_state = 0}, - [11466] = {.lex_state = 0}, - [11467] = {.lex_state = 3545}, - [11468] = {.lex_state = 0}, + [11465] = {.lex_state = 537}, + [11466] = {.lex_state = 2026}, + [11467] = {.lex_state = 133}, + [11468] = {.lex_state = 2026}, [11469] = {.lex_state = 0}, - [11470] = {.lex_state = 0}, - [11471] = {.lex_state = 0}, + [11470] = {.lex_state = 133}, + [11471] = {.lex_state = 133}, [11472] = {.lex_state = 0}, - [11473] = {.lex_state = 0}, - [11474] = {.lex_state = 132}, - [11475] = {.lex_state = 0}, - [11476] = {.lex_state = 2025}, - [11477] = {.lex_state = 536}, + [11473] = {.lex_state = 133}, + [11474] = {.lex_state = 0}, + [11475] = {.lex_state = 960}, + [11476] = {.lex_state = 133}, + [11477] = {.lex_state = 0}, [11478] = {.lex_state = 0}, [11479] = {.lex_state = 0}, - [11480] = {.lex_state = 132}, - [11481] = {.lex_state = 0}, - [11482] = {.lex_state = 0}, - [11483] = {.lex_state = 0}, - [11484] = {.lex_state = 132}, - [11485] = {.lex_state = 2025}, - [11486] = {.lex_state = 132}, - [11487] = {.lex_state = 132}, - [11488] = {.lex_state = 2025}, - [11489] = {.lex_state = 132}, + [11480] = {.lex_state = 537}, + [11481] = {.lex_state = 960}, + [11482] = {.lex_state = 2026}, + [11483] = {.lex_state = 960}, + [11484] = {.lex_state = 133}, + [11485] = {.lex_state = 0}, + [11486] = {.lex_state = 2026}, + [11487] = {.lex_state = 2026}, + [11488] = {.lex_state = 133}, + [11489] = {.lex_state = 0}, [11490] = {.lex_state = 0}, - [11491] = {.lex_state = 132}, + [11491] = {.lex_state = 0}, [11492] = {.lex_state = 0}, - [11493] = {.lex_state = 2025}, + [11493] = {.lex_state = 0}, [11494] = {.lex_state = 0}, [11495] = {.lex_state = 0}, [11496] = {.lex_state = 0}, @@ -72915,86 +72942,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(11239), - [sym_shebang] = STATE(56), - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(9024), - [sym__declaration_last] = STATE(10070), - [sym_decl_alias_last] = STATE(10150), - [sym_stmt_let_last] = STATE(10148), - [sym_stmt_mut_last] = STATE(10148), - [sym_stmt_const_last] = STATE(10148), - [sym__statement_last] = STATE(10070), - [sym_pipeline_last] = STATE(10148), - [sym__block_body] = STATE(11207), - [sym_decl_def] = STATE(2321), - [sym_decl_export] = STATE(2321), - [sym_decl_extern] = STATE(2321), - [sym_decl_module] = STATE(2321), - [sym_decl_use] = STATE(2321), - [sym__ctrl_statement] = STATE(2322), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_for] = STATE(2323), - [sym_ctrl_loop] = STATE(2323), - [sym_ctrl_error] = STATE(2323), - [sym_ctrl_while] = STATE(2323), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_stmt_source] = STATE(2322), - [sym_stmt_register] = STATE(2322), - [sym__stmt_hide] = STATE(2322), - [sym_hide_mod] = STATE(2333), - [sym_hide_env] = STATE(2333), - [sym__stmt_overlay] = STATE(2322), - [sym_overlay_list] = STATE(2335), - [sym_overlay_hide] = STATE(2335), - [sym_overlay_new] = STATE(2335), - [sym_overlay_use] = STATE(2335), - [sym_assignment] = STATE(2322), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(4445), - [sym__var] = STATE(4100), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [sym_nu_script] = STATE(11119), + [sym_shebang] = STATE(63), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(9006), + [sym__declaration_last] = STATE(10041), + [sym_decl_alias_last] = STATE(9999), + [sym_stmt_let_last] = STATE(10072), + [sym_stmt_mut_last] = STATE(10072), + [sym_stmt_const_last] = STATE(10072), + [sym__statement_last] = STATE(10041), + [sym_pipeline_last] = STATE(10072), + [sym__block_body] = STATE(10802), + [sym_decl_def] = STATE(2338), + [sym_decl_export] = STATE(2338), + [sym_decl_extern] = STATE(2338), + [sym_decl_module] = STATE(2338), + [sym_decl_use] = STATE(2338), + [sym__ctrl_statement] = STATE(2299), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_for] = STATE(2334), + [sym_ctrl_loop] = STATE(2334), + [sym_ctrl_error] = STATE(2334), + [sym_ctrl_while] = STATE(2334), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_stmt_source] = STATE(2299), + [sym_stmt_register] = STATE(2299), + [sym__stmt_hide] = STATE(2299), + [sym_hide_mod] = STATE(2349), + [sym_hide_env] = STATE(2349), + [sym__stmt_overlay] = STATE(2299), + [sym_overlay_list] = STATE(2360), + [sym_overlay_hide] = STATE(2360), + [sym_overlay_new] = STATE(2360), + [sym_overlay_use] = STATE(2360), + [sym_assignment] = STATE(2299), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4438), + [sym__var] = STATE(4148), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(1008), - [aux_sym__block_body_repeat2] = STATE(261), + [aux_sym_pipeline_repeat1] = STATE(1007), + [aux_sym__block_body_repeat2] = STATE(260), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -73058,91 +73085,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), }, [2] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10704), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(147), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym__match_pattern_record_variable] = STATE(3848), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5213), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(475), - [sym__var] = STATE(349), - [sym_val_number] = STATE(5060), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5736), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10703), - [sym_record_entry] = STATE(3635), - [sym__record_key] = STATE(10895), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10976), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym__match_pattern_record_variable] = STATE(3805), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5231), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(434), + [sym__var] = STATE(335), + [sym_val_number] = STATE(5070), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5691), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10977), + [sym_record_entry] = STATE(3189), + [sym__record_key] = STATE(10893), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym__match_pattern_record_repeat1] = STATE(1535), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym__match_pattern_record_repeat1] = STATE(1531), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -73214,89 +73241,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [3] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10321), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(237), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10433), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11269), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(170), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10535), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -73368,89 +73395,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [4] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11237), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(235), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11470), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10299), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10388), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -73522,89 +73549,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [5] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10937), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(204), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10608), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11383), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11358), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -73676,89 +73703,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [6] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10912), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(178), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10911), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10976), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10977), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -73830,89 +73857,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [7] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11237), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(235), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10721), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10789), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10938), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -73984,89 +74011,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [8] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11163), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(198), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10884), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11357), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11358), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74138,89 +74165,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [9] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10503), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10302), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11015), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(188), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10627), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74292,89 +74319,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [10] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10303), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10444), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10509), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10938), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74446,89 +74473,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [11] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10704), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(147), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10703), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10741), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(146), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10776), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74600,89 +74627,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [12] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10300), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(234), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10420), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11088), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(149), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11095), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74754,89 +74781,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [13] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11221), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(193), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11003), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10920), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(155), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11158), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -74908,89 +74935,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [14] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10480), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10469), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11048), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(158), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10328), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75062,89 +75089,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [15] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10348), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(232), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10404), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10327), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(161), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10671), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75216,89 +75243,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [16] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10384), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(230), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10388), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10667), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(164), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11275), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75370,89 +75397,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [17] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10303), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10302), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10889), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(167), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10563), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75524,89 +75551,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [18] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10468), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10828), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11269), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(170), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10617), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75678,89 +75705,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [19] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11287), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(190), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11077), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10496), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(173), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11247), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75832,89 +75859,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [20] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10584), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(201), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10735), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10593), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(176), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10396), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -75986,89 +76013,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [21] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10415), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(228), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10366), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11391), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10486), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76140,89 +76167,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [22] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10468), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10469), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11245), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(179), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10727), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76294,89 +76321,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [23] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10875), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(235), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11470), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10395), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(182), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10828), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76448,89 +76475,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [24] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10459), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(225), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10339), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10509), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10935), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76602,89 +76629,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [25] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10571), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10572), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10509), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11331), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76756,89 +76783,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [26] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10507), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(201), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10735), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10725), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(144), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10427), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -76910,89 +76937,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [27] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10744), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10745), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10824), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(152), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11097), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77064,89 +77091,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [28] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11007), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(146), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10601), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10933), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(191), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10383), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77218,89 +77245,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [29] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10557), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(223), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10322), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11115), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(194), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10528), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77372,89 +77399,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [30] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10827), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(152), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10932), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11329), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(197), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10712), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77526,89 +77553,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [31] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10611), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(221), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10301), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10488), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(200), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10839), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77680,89 +77707,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [32] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10921), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(155), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11073), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10465), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10486), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77834,89 +77861,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [33] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10698), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(219), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10333), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11245), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(179), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11011), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -77988,89 +78015,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [34] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11070), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(160), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11181), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10623), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(203), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11148), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78142,89 +78169,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [35] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10736), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(217), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10383), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11087), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(205), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11258), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78296,89 +78323,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [36] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11180), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11496), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10382), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(207), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11380), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78450,89 +78477,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [37] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11287), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(190), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10414), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10522), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(209), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10308), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78604,89 +78631,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [38] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11301), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(166), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11404), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10711), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(188), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10627), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78758,89 +78785,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [39] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10781), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(214), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10458), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10838), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(211), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10338), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -78912,89 +78939,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [40] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11369), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(169), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11353), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11008), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(213), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10365), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79066,89 +79093,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [41] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10829), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(211), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10504), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11145), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(215), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10387), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79220,89 +79247,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [42] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11409), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(172), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11285), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11257), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(217), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10403), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79374,89 +79401,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [43] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10885), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(208), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10554), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11373), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(219), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10419), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79528,89 +79555,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [44] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11360), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(187), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11219), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10307), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(221), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10432), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79682,89 +79709,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [45] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11079), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10780), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11357), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10443), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79836,89 +79863,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [46] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11369), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(169), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(11161), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11391), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(10719), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -79990,89 +80017,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [47] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10468), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5255), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4238), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5021), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5690), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_record_body] = STATE(10935), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10532), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(185), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5179), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4312), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4964), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5428), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_record_body] = STATE(11125), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [aux_sym_record_body_repeat1] = STATE(1868), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(211), [anon_sym_alias] = ACTIONS(213), [anon_sym_let] = ACTIONS(215), @@ -80144,85 +80171,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [48] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10677), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11027), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(152), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -80286,85 +80313,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [49] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11354), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10433), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(144), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -80428,85 +80455,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [50] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11354), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(235), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10433), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -80570,85 +80597,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [51] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10677), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym_parameter_pipes] = STATE(146), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11027), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(51), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -80712,84 +80739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10723), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10536), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -80852,91 +80879,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [53] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10380), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10472), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -80947,18 +80974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -80970,6 +80996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), + [anon_sym_RPAREN2] = ACTIONS(449), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -80988,88 +81015,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10418), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10390), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81109,7 +81136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(449), + [anon_sym_RPAREN2] = ACTIONS(451), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -81132,84 +81159,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10442), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10481), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81249,7 +81276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(451), + [anon_sym_RPAREN2] = ACTIONS(453), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -81272,224 +81299,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [56] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(9024), - [sym__declaration_last] = STATE(10070), - [sym_decl_alias_last] = STATE(10150), - [sym_stmt_let_last] = STATE(10148), - [sym_stmt_mut_last] = STATE(10148), - [sym_stmt_const_last] = STATE(10148), - [sym__statement_last] = STATE(10070), - [sym_pipeline_last] = STATE(10148), - [sym__block_body] = STATE(10766), - [sym_decl_def] = STATE(2321), - [sym_decl_export] = STATE(2321), - [sym_decl_extern] = STATE(2321), - [sym_decl_module] = STATE(2321), - [sym_decl_use] = STATE(2321), - [sym__ctrl_statement] = STATE(2322), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_for] = STATE(2323), - [sym_ctrl_loop] = STATE(2323), - [sym_ctrl_error] = STATE(2323), - [sym_ctrl_while] = STATE(2323), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_stmt_source] = STATE(2322), - [sym_stmt_register] = STATE(2322), - [sym__stmt_hide] = STATE(2322), - [sym_hide_mod] = STATE(2333), - [sym_hide_env] = STATE(2333), - [sym__stmt_overlay] = STATE(2322), - [sym_overlay_list] = STATE(2335), - [sym_overlay_hide] = STATE(2335), - [sym_overlay_new] = STATE(2335), - [sym_overlay_use] = STATE(2335), - [sym_assignment] = STATE(2322), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(4445), - [sym__var] = STATE(4100), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), - [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11492), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(1008), - [aux_sym__block_body_repeat2] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(453), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_export_DASHenv] = ACTIONS(23), - [anon_sym_extern] = ACTIONS(25), - [anon_sym_module] = ACTIONS(27), - [anon_sym_use] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_error] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_try] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_source] = ACTIONS(65), - [anon_sym_source_DASHenv] = ACTIONS(65), - [anon_sym_register] = ACTIONS(67), - [anon_sym_hide] = ACTIONS(69), - [anon_sym_hide_DASHenv] = ACTIONS(71), - [anon_sym_overlay] = ACTIONS(73), - [anon_sym_where] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_not] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_token1] = ACTIONS(87), - [aux_sym__val_number_token2] = ACTIONS(87), - [aux_sym__val_number_token3] = ACTIONS(87), - [aux_sym__val_number_token4] = ACTIONS(89), - [aux_sym__val_number_token5] = ACTIONS(87), - [aux_sym__val_number_token6] = ACTIONS(89), - [anon_sym_0b] = ACTIONS(91), - [anon_sym_0o] = ACTIONS(91), - [anon_sym_0x] = ACTIONS(91), - [sym_val_date] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym__str_single_quotes] = ACTIONS(97), - [sym__str_back_ticks] = ACTIONS(97), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [57] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10463), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81551,85 +81438,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [58] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10473), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [57] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10504), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81691,85 +81578,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [59] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10482), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [58] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10723), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(58), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81831,85 +81718,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [60] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10505), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [59] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10518), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -81971,92 +81858,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [61] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10918), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [60] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11379), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -82067,17 +81954,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -82089,7 +81977,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(463), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82108,88 +81995,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [62] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10684), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [61] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10530), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82229,7 +82116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(445), + [anon_sym_RPAREN2] = ACTIONS(463), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82251,85 +82138,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [63] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10656), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [62] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10820), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82391,85 +82278,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, + [63] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(9006), + [sym__declaration_last] = STATE(10041), + [sym_decl_alias_last] = STATE(9999), + [sym_stmt_let_last] = STATE(10072), + [sym_stmt_mut_last] = STATE(10072), + [sym_stmt_const_last] = STATE(10072), + [sym__statement_last] = STATE(10041), + [sym_pipeline_last] = STATE(10072), + [sym__block_body] = STATE(10853), + [sym_decl_def] = STATE(2338), + [sym_decl_export] = STATE(2338), + [sym_decl_extern] = STATE(2338), + [sym_decl_module] = STATE(2338), + [sym_decl_use] = STATE(2338), + [sym__ctrl_statement] = STATE(2299), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_for] = STATE(2334), + [sym_ctrl_loop] = STATE(2334), + [sym_ctrl_error] = STATE(2334), + [sym_ctrl_while] = STATE(2334), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_stmt_source] = STATE(2299), + [sym_stmt_register] = STATE(2299), + [sym__stmt_hide] = STATE(2299), + [sym_hide_mod] = STATE(2349), + [sym_hide_env] = STATE(2349), + [sym__stmt_overlay] = STATE(2299), + [sym_overlay_list] = STATE(2360), + [sym_overlay_hide] = STATE(2360), + [sym_overlay_new] = STATE(2360), + [sym_overlay_use] = STATE(2360), + [sym_assignment] = STATE(2299), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4438), + [sym__var] = STATE(4148), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), + [sym__val_number] = STATE(4763), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(1007), + [aux_sym__block_body_repeat2] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(467), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_export_DASHenv] = ACTIONS(23), + [anon_sym_extern] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_use] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_error] = ACTIONS(37), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_DOT] = ACTIONS(59), + [anon_sym_try] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_source] = ACTIONS(65), + [anon_sym_source_DASHenv] = ACTIONS(65), + [anon_sym_register] = ACTIONS(67), + [anon_sym_hide] = ACTIONS(69), + [anon_sym_hide_DASHenv] = ACTIONS(71), + [anon_sym_overlay] = ACTIONS(73), + [anon_sym_where] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_not] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_token1] = ACTIONS(87), + [aux_sym__val_number_token2] = ACTIONS(87), + [aux_sym__val_number_token3] = ACTIONS(87), + [aux_sym__val_number_token4] = ACTIONS(89), + [aux_sym__val_number_token5] = ACTIONS(87), + [aux_sym__val_number_token6] = ACTIONS(89), + [anon_sym_0b] = ACTIONS(91), + [anon_sym_0o] = ACTIONS(91), + [anon_sym_0x] = ACTIONS(91), + [sym_val_date] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym__str_single_quotes] = ACTIONS(97), + [sym__str_back_ticks] = ACTIONS(97), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10531), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11349), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82509,7 +82536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(467), + [anon_sym_RPAREN2] = ACTIONS(469), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82532,84 +82559,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10364), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10554), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82649,7 +82676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_RPAREN2] = ACTIONS(471), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82672,84 +82699,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10537), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11105), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82789,7 +82816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(471), + [anon_sym_RPAREN2] = ACTIONS(473), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82812,84 +82839,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10298), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10682), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -82929,7 +82956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_RPAREN2] = ACTIONS(475), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -82952,84 +82979,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10555), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10571), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83069,7 +83096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(475), + [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83092,84 +83119,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10560), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11323), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83209,7 +83236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(477), + [anon_sym_RPAREN2] = ACTIONS(479), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83232,84 +83259,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10573), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10577), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83349,7 +83376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(479), + [anon_sym_RPAREN2] = ACTIONS(481), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83372,84 +83399,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10833), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10692), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83489,7 +83516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(481), + [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83512,84 +83539,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10579), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10589), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83629,7 +83656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(483), + [anon_sym_RPAREN2] = ACTIONS(485), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83652,84 +83679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10889), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10516), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83769,7 +83796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(485), + [anon_sym_RPAREN2] = ACTIONS(487), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83792,84 +83819,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10591), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10625), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -83909,7 +83936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -83932,91 +83959,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11013), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11007), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -84027,17 +84054,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -84049,7 +84077,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -84068,88 +84095,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10627), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10637), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84212,84 +84239,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11083), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11371), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84352,84 +84379,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10639), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10643), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84492,84 +84519,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11225), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10871), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84632,84 +84659,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), [sym__parenthesized_body] = STATE(10645), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84772,84 +84799,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11362), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10363), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -84912,84 +84939,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10647), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10652), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85029,7 +85056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(465), + [anon_sym_RPAREN2] = ACTIONS(503), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -85052,91 +85079,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11061), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11389), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -85147,17 +85174,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -85169,7 +85197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(503), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -85188,88 +85215,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10654), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10385), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85332,84 +85359,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10908), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10315), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85472,84 +85499,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10666), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10417), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85612,84 +85639,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10386), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10926), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85729,7 +85756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(511), + [anon_sym_RPAREN2] = ACTIONS(475), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -85752,84 +85779,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [88] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10519), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10426), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(403), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + }, + [89] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11028), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -85869,7 +86036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(475), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -85891,85 +86058,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10452), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [90] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10552), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86009,7 +86176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(515), + [anon_sym_RPAREN2] = ACTIONS(511), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86031,232 +86198,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [90] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11037), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, [91] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10691), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10708), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -86267,18 +86294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -86290,6 +86316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), + [anon_sym_RPAREN2] = ACTIONS(469), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86308,88 +86335,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10730), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10886), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86429,7 +86456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(445), + [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86452,84 +86479,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10315), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10494), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86569,7 +86596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86592,84 +86619,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10511), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10526), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86709,7 +86736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86732,84 +86759,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11297), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10605), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86849,7 +86876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(515), + [anon_sym_RPAREN2] = ACTIONS(511), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -86872,84 +86899,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [96] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11468), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10371), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -86989,7 +87016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(451), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87012,84 +87039,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [97] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11169), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10834), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87129,7 +87156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(507), + [anon_sym_RPAREN2] = ACTIONS(459), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87152,84 +87179,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [98] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10741), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10988), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87269,7 +87296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(501), + [anon_sym_RPAREN2] = ACTIONS(465), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87292,84 +87319,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [99] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10614), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11254), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87409,7 +87436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_RPAREN2] = ACTIONS(473), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87432,84 +87459,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [100] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10461), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10336), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87549,7 +87576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(479), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87572,84 +87599,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [101] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10421), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10489), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87689,7 +87716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(489), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87712,84 +87739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [102] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10356), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10497), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87829,7 +87856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(485), + [anon_sym_RPAREN2] = ACTIONS(509), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87852,84 +87879,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [103] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10337), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10511), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -87969,7 +87996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(481), + [anon_sym_RPAREN2] = ACTIONS(515), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -87992,84 +88019,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [104] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10490), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10542), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88109,7 +88136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(511), + [anon_sym_RPAREN2] = ACTIONS(453), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88132,84 +88159,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [105] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10498), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10595), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(105), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88249,7 +88276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(449), + [anon_sym_RPAREN2] = ACTIONS(463), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88272,84 +88299,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [106] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10512), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10607), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88389,7 +88416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(451), + [anon_sym_RPAREN2] = ACTIONS(445), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88412,84 +88439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [107] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10543), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10634), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88529,7 +88556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(459), + [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88552,84 +88579,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [108] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10597), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10641), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(108), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88669,7 +88696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(467), + [anon_sym_RPAREN2] = ACTIONS(485), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88692,84 +88719,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [109] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10609), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10648), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(109), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88809,7 +88836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(471), + [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88832,84 +88859,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [110] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10636), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10650), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -88949,7 +88976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(479), + [anon_sym_RPAREN2] = ACTIONS(491), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -88972,84 +88999,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [111] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10643), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10653), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(111), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89089,7 +89116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(495), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89112,84 +89139,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [112] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10650), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10654), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(112), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89229,7 +89256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(491), + [anon_sym_RPAREN2] = ACTIONS(499), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89252,84 +89279,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [113] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10652), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10658), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(113), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89369,7 +89396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_RPAREN2] = ACTIONS(503), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89392,84 +89419,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [114] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10655), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10462), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(114), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89509,7 +89536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(499), + [anon_sym_RPAREN2] = ACTIONS(517), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89532,91 +89559,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [115] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10882), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10931), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -89627,18 +89654,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -89650,6 +89676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), + [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89668,88 +89695,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, [116] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10660), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11495), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(116), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89789,7 +89816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(505), + [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89812,84 +89839,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [117] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10940), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10305), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(117), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -89929,7 +89956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(515), + [anon_sym_RPAREN2] = ACTIONS(479), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -89952,84 +89979,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [118] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10783), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10560), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(118), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90069,7 +90096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -90092,84 +90119,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [119] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10319), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10452), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(119), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90209,7 +90236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(481), + [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -90232,84 +90259,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [120] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10561), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10630), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(120), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90349,7 +90376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(511), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -90372,84 +90399,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [121] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10453), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10320), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(121), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90489,7 +90516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -90512,84 +90539,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [122] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10632), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10441), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90629,7 +90656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), - [anon_sym_RPAREN2] = ACTIONS(511), + [anon_sym_RPAREN2] = ACTIONS(515), [anon_sym_true] = ACTIONS(187), [anon_sym_false] = ACTIONS(187), [aux_sym__val_number_decimal_token1] = ACTIONS(189), @@ -90652,223 +90679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [123] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11490), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10472), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, - [124] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10660), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(124), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -90929,85 +90817,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [125] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11291), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(125), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [124] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10660), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(124), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -91068,85 +90956,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [126] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10758), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [125] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10796), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -91207,85 +91095,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, + [126] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11028), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(126), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, [127] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10755), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10460), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -91347,91 +91374,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [128] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11468), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10478), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(128), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -91442,17 +91469,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -91482,88 +91509,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [129] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10605), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10668), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -91625,84 +91652,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [130] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10709), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10902), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(130), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -91764,91 +91791,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [131] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10661), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11019), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(131), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -91859,17 +91886,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -91899,88 +91926,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [132] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10581), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11037), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -92042,91 +92069,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [133] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10659), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10766), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(133), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -92137,17 +92164,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -92177,88 +92204,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [134] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11473), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10629), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(134), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -92320,84 +92347,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [135] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10481), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11381), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -92459,84 +92486,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [136] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10478), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11385), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -92598,84 +92625,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [137] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11297), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10968), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(137), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -92737,84 +92764,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [138] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10850), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10381), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -92876,84 +92903,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [139] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10658), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10886), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(139), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -93015,84 +93042,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [140] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10381), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10675), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -93154,84 +93181,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [141] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10358), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10807), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -93293,84 +93320,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [142] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11177), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11265), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(142), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -93432,91 +93459,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [143] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10653), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10985), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(143), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -93527,17 +93554,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -93567,88 +93594,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, [144] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10684), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11039), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(403), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + }, + [145] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10494), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(145), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -93709,85 +93875,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [145] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10949), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [146] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10342), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -93848,92 +94014,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [146] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10951), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [147] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11226), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(147), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -93944,17 +94110,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -93984,88 +94150,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [147] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10676), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [148] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11051), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -94126,85 +94292,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [148] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10689), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [149] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11059), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -94265,224 +94431,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [149] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10805), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(149), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(3), - }, [150] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10918), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10682), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -94544,84 +94571,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [151] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11097), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10398), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -94683,84 +94710,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [152] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11100), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10408), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -94822,84 +94849,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [153] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11169), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11492), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(153), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -94961,84 +94988,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [154] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11228), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10357), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -95100,84 +95127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [155] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11232), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10366), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -95239,84 +95266,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [156] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10657), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10526), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -95378,362 +95405,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [157] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10315), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10693), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(3), - }, - [158] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10656), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(3), - }, - [159] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11323), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -95794,85 +95543,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [160] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11341), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [158] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10701), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -95933,85 +95682,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [161] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10940), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [159] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11349), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(159), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -96072,85 +95821,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [162] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11492), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [160] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10922), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -96211,85 +95960,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [163] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10847), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [161] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10925), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -96350,85 +96099,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [164] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10783), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [162] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10931), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(162), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -96489,85 +96238,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [165] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11395), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [163] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11309), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -96628,85 +96377,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [166] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11387), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [164] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11313), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -96767,85 +96516,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [167] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10741), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(167), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [165] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11495), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(165), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -96906,85 +96655,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [168] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11339), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [166] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10912), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -97045,85 +96794,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [169] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11335), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [167] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10936), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -97184,85 +96933,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [170] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10700), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [168] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10605), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -97323,85 +97072,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [171] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11277), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [169] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10715), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -97462,85 +97211,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [172] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11274), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [170] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10717), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -97601,85 +97350,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [173] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10614), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [171] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11068), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(171), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -97740,85 +97489,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [174] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11131), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [172] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11353), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -97879,92 +97628,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [175] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10655), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [173] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11365), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -97975,17 +97724,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -98015,88 +97764,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [176] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10662), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [174] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10371), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -98157,85 +97906,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [177] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10857), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [175] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10420), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -98296,85 +98045,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [178] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10869), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [176] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10422), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -98435,85 +98184,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [179] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10652), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [177] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10708), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -98574,92 +98323,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [180] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10579), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [178] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10564), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -98670,17 +98419,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -98710,95 +98459,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [181] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10651), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [179] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10570), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -98809,17 +98558,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -98849,88 +98598,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [182] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10650), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [180] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10315), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -98991,85 +98740,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [183] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10877), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [181] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10742), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -99130,92 +98879,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [184] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10730), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [182] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10745), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -99226,17 +98975,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -99266,95 +99015,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [185] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11267), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [183] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10834), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -99365,17 +99114,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -99405,88 +99154,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [186] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11205), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [184] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10845), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -99547,85 +99296,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [187] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11202), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [185] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10849), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -99686,85 +99435,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [188] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10511), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [186] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10988), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -99825,85 +99574,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [189] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11157), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [187] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10950), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -99964,85 +99713,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [190] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11151), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [188] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10952), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -100103,85 +99852,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [191] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11061), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(191), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [189] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11137), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -100242,85 +99991,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [192] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11060), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [190] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11187), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -100381,85 +100130,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [193] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11051), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [191] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11193), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -100520,85 +100269,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [194] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10461), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(194), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [192] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11254), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(192), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -100659,92 +100408,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [195] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10555), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(195), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [193] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11352), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -100755,17 +100504,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -100795,88 +100544,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [196] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10649), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(196), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [194] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11360), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(194), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(403), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + }, + [195] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10305), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(195), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -100937,85 +100825,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [197] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10990), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(197), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [196] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10450), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(196), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -101076,85 +100964,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [198] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10984), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [197] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10471), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(197), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -101215,85 +101103,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [199] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10421), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(199), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [198] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10552), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(198), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -101354,85 +101242,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [200] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10930), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(200), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [199] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10726), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -101493,85 +101381,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [201] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10928), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(201), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [200] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10753), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(200), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -101632,85 +101520,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [202] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10391), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(202), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [201] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10401), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(201), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -101771,85 +101659,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [203] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10874), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [202] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11200), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(202), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -101910,85 +101798,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [204] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10872), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(204), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [203] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11207), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -102049,85 +101937,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [205] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10356), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(205), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [204] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10820), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(204), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -102188,92 +102076,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [206] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10648), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(206), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), - [anon_sym_export] = ACTIONS(425), - [anon_sym_alias] = ACTIONS(427), - [anon_sym_let] = ACTIONS(429), - [anon_sym_let_DASHenv] = ACTIONS(429), - [anon_sym_mut] = ACTIONS(431), - [anon_sym_const] = ACTIONS(433), - [sym_cmd_identifier] = ACTIONS(435), + [205] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10414), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -102284,17 +102172,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -102324,95 +102212,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [207] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10817), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(207), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [206] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10430), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(206), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -102423,17 +102311,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -102463,88 +102351,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [208] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10815), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(208), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [207] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10558), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -102605,85 +102493,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [209] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10319), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(209), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [208] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10336), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(208), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -102744,224 +102632,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [210] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10774), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(210), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, - [211] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10772), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(211), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [209] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10740), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -103022,85 +102771,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [212] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11362), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(212), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [210] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10692), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(210), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -103161,224 +102910,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [213] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10728), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(213), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, - [214] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10726), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(214), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [211] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10869), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(211), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -103439,85 +103049,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [215] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10402), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(215), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [212] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10489), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(212), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -103578,224 +103188,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [216] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10692), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(216), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, - [217] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10682), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(217), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [213] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11058), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(213), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -103856,85 +103327,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [218] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(11013), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(218), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [214] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10516), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(214), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -103995,85 +103466,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [219] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10599), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(219), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [215] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11188), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(215), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -104134,85 +103605,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [220] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10431), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(220), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [216] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10497), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(216), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -104273,85 +103744,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [221] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10548), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(221), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [217] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11299), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(217), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -104412,85 +103883,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [222] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10337), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(222), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [218] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(11371), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(218), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -104551,85 +104022,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [223] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10496), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(223), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [219] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(11472), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(219), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -104690,85 +104161,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [224] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10666), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(224), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [220] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10511), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(220), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -104829,85 +104300,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [225] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10448), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), + [221] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10317), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(221), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -104968,85 +104439,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [226] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10646), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(226), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [222] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10524), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(222), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -105107,85 +104578,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [227] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10490), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(227), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [223] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10363), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(223), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -105246,224 +104717,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [228] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10407), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(228), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, - [229] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10560), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(229), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [224] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10542), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(224), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -105524,92 +104856,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [230] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10374), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(230), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [225] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10548), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(225), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -105620,17 +104952,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -105660,88 +104992,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [231] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10498), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(231), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [226] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10565), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(226), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -105802,92 +105134,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [232] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10335), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(232), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [227] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10583), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(227), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -105898,17 +105230,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -105938,88 +105270,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [233] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10298), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(233), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [228] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10452), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(228), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -106080,92 +105412,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [234] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10307), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(234), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [229] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10462), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(229), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -106176,17 +105508,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -106216,95 +105548,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [235] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(11471), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(235), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [230] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10595), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(230), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -106315,17 +105647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -106355,88 +105687,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [236] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10512), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(236), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [231] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10601), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(231), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -106497,92 +105829,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [237] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8419), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym__block_body] = STATE(10325), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(237), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(260), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [sym_cmd_identifier] = ACTIONS(369), + [232] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10607), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(232), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_def] = ACTIONS(371), [anon_sym_export_DASHenv] = ACTIONS(373), [anon_sym_extern] = ACTIONS(375), @@ -106593,17 +105925,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(233), [anon_sym_error] = ACTIONS(381), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_for] = ACTIONS(389), [anon_sym_loop] = ACTIONS(391), [anon_sym_while] = ACTIONS(393), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_source] = ACTIONS(407), [anon_sym_source_DASHenv] = ACTIONS(407), @@ -106633,88 +105965,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [238] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10525), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(238), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [233] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10613), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(233), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -106775,85 +106107,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [239] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10364), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(239), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [234] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10619), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(234), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -106914,85 +106246,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [240] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10543), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(240), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [235] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10630), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(235), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107053,85 +106385,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [241] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10549), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(241), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [236] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10504), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(236), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107192,85 +106524,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [242] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10567), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(242), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [237] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10634), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(237), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107331,85 +106663,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [243] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10585), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(243), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [238] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10640), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(238), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107470,85 +106802,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [244] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10453), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(244), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [239] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10518), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(239), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107609,85 +106941,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [245] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10463), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(245), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [240] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10641), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(240), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107748,85 +107080,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10597), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(246), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [241] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10642), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -107887,85 +107219,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [247] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10473), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(247), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [242] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10644), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(242), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108026,85 +107358,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [248] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10603), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(248), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [243] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10646), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(243), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108165,85 +107497,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [249] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10609), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(249), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [244] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10647), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(244), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108304,85 +107636,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [250] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10615), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(250), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [245] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10554), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(245), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108443,85 +107775,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [251] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10644), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(251), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [246] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10648), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(246), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108582,85 +107914,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [252] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10643), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(252), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [247] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10649), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(247), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108721,85 +108053,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [253] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10621), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(253), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [248] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10577), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(248), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108860,85 +108192,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [254] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10632), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(254), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [249] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10650), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -108999,85 +108331,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [255] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10505), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(255), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [250] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10651), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(250), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -109138,85 +108470,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [256] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10636), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(256), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [251] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10653), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(251), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -109277,85 +108609,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [257] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10642), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(257), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [252] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10654), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(252), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -109416,85 +108748,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [258] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(8805), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym__parenthesized_body] = STATE(10519), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(258), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(259), + [253] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10655), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -109555,84 +108887,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [259] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym__block_body_statement_parenthesized_last] = STATE(9026), - [sym__declaration_parenthesized_last] = STATE(9912), - [sym_decl_alias_parenthesized_last] = STATE(9911), - [sym_stmt_let_parenthesized_last] = STATE(9910), - [sym_stmt_mut_parenthesized_last] = STATE(9910), - [sym_stmt_const_parenthesized_last] = STATE(9910), - [sym__statement_parenthesized_last] = STATE(9912), - [sym_pipeline_parenthesized_last] = STATE(9910), - [sym_decl_def] = STATE(2249), - [sym_decl_export] = STATE(2249), - [sym_decl_extern] = STATE(2249), - [sym_decl_module] = STATE(2249), - [sym_decl_use] = STATE(2249), - [sym__ctrl_statement] = STATE(2259), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_stmt_source] = STATE(2259), - [sym_stmt_register] = STATE(2259), - [sym__stmt_hide] = STATE(2259), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2259), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2259), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(259), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [aux_sym__parenthesized_body_repeat1] = STATE(263), + [254] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10656), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(254), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), [anon_sym_export] = ACTIONS(425), [anon_sym_alias] = ACTIONS(427), [anon_sym_let] = ACTIONS(429), @@ -109693,84 +109026,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [260] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8387), - [sym__declaration_last] = STATE(9761), - [sym_decl_alias_last] = STATE(9762), - [sym_stmt_let_last] = STATE(9763), - [sym_stmt_mut_last] = STATE(9763), - [sym_stmt_const_last] = STATE(9763), - [sym__statement_last] = STATE(9761), - [sym_pipeline_last] = STATE(9763), - [sym_decl_def] = STATE(2025), - [sym_decl_export] = STATE(2025), - [sym_decl_extern] = STATE(2025), - [sym_decl_module] = STATE(2025), - [sym_decl_use] = STATE(2025), - [sym__ctrl_statement] = STATE(2024), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_stmt_source] = STATE(2024), - [sym_stmt_register] = STATE(2024), - [sym__stmt_hide] = STATE(2024), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2024), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2024), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(260), - [aux_sym_pipeline_repeat1] = STATE(1011), - [aux_sym__block_body_repeat2] = STATE(262), + [255] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10657), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(255), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, + [256] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10658), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(256), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, + [257] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9030), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym__parenthesized_body] = STATE(10659), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(257), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(261), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, + [258] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8365), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym__block_body] = STATE(10339), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(258), + [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym__block_body_repeat2] = STATE(259), [anon_sym_export] = ACTIONS(359), [anon_sym_alias] = ACTIONS(361), [anon_sym_let] = ACTIONS(363), @@ -109831,84 +109582,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [261] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym__block_body_statement_last] = STATE(8909), - [sym__declaration_last] = STATE(10070), - [sym_decl_alias_last] = STATE(10150), - [sym_stmt_let_last] = STATE(10148), - [sym_stmt_mut_last] = STATE(10148), - [sym_stmt_const_last] = STATE(10148), - [sym__statement_last] = STATE(10070), - [sym_pipeline_last] = STATE(10148), - [sym_decl_def] = STATE(2321), - [sym_decl_export] = STATE(2321), - [sym_decl_extern] = STATE(2321), - [sym_decl_module] = STATE(2321), - [sym_decl_use] = STATE(2321), - [sym__ctrl_statement] = STATE(2322), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_for] = STATE(2323), - [sym_ctrl_loop] = STATE(2323), - [sym_ctrl_error] = STATE(2323), - [sym_ctrl_while] = STATE(2323), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_stmt_source] = STATE(2322), - [sym_stmt_register] = STATE(2322), - [sym__stmt_hide] = STATE(2322), - [sym_hide_mod] = STATE(2333), - [sym_hide_env] = STATE(2333), - [sym__stmt_overlay] = STATE(2322), - [sym_overlay_list] = STATE(2335), - [sym_overlay_hide] = STATE(2335), - [sym_overlay_new] = STATE(2335), - [sym_overlay_use] = STATE(2335), - [sym_assignment] = STATE(2322), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(4445), - [sym__var] = STATE(4100), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), - [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), - [sym_comment] = STATE(261), + [259] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8321), + [sym__declaration_last] = STATE(9625), + [sym_decl_alias_last] = STATE(9626), + [sym_stmt_let_last] = STATE(9627), + [sym_stmt_mut_last] = STATE(9627), + [sym_stmt_const_last] = STATE(9627), + [sym__statement_last] = STATE(9625), + [sym_pipeline_last] = STATE(9627), + [sym_decl_def] = STATE(2116), + [sym_decl_export] = STATE(2116), + [sym_decl_extern] = STATE(2116), + [sym_decl_module] = STATE(2116), + [sym_decl_use] = STATE(2116), + [sym__ctrl_statement] = STATE(2117), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_stmt_source] = STATE(2117), + [sym_stmt_register] = STATE(2117), + [sym__stmt_hide] = STATE(2117), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2117), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2117), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(259), [aux_sym_pipeline_repeat1] = STATE(1008), [aux_sym__block_body_repeat2] = STATE(262), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [sym_cmd_identifier] = ACTIONS(369), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(403), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + }, + [260] = { + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym__block_body_statement_last] = STATE(8626), + [sym__declaration_last] = STATE(10041), + [sym_decl_alias_last] = STATE(9999), + [sym_stmt_let_last] = STATE(10072), + [sym_stmt_mut_last] = STATE(10072), + [sym_stmt_const_last] = STATE(10072), + [sym__statement_last] = STATE(10041), + [sym_pipeline_last] = STATE(10072), + [sym_decl_def] = STATE(2338), + [sym_decl_export] = STATE(2338), + [sym_decl_extern] = STATE(2338), + [sym_decl_module] = STATE(2338), + [sym_decl_use] = STATE(2338), + [sym__ctrl_statement] = STATE(2299), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_for] = STATE(2334), + [sym_ctrl_loop] = STATE(2334), + [sym_ctrl_error] = STATE(2334), + [sym_ctrl_while] = STATE(2334), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_stmt_source] = STATE(2299), + [sym_stmt_register] = STATE(2299), + [sym__stmt_hide] = STATE(2299), + [sym_hide_mod] = STATE(2349), + [sym_hide_env] = STATE(2349), + [sym__stmt_overlay] = STATE(2299), + [sym_overlay_list] = STATE(2360), + [sym_overlay_hide] = STATE(2360), + [sym_overlay_new] = STATE(2360), + [sym_overlay_use] = STATE(2360), + [sym_assignment] = STATE(2299), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4438), + [sym__var] = STATE(4148), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), + [sym__val_number] = STATE(4763), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), + [sym_comment] = STATE(260), + [aux_sym_pipeline_repeat1] = STATE(1007), + [aux_sym__block_body_repeat2] = STATE(262), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -109969,75 +109858,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, + [261] = { + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym__block_body_statement_parenthesized_last] = STATE(9031), + [sym__declaration_parenthesized_last] = STATE(10046), + [sym_decl_alias_parenthesized_last] = STATE(10048), + [sym_stmt_let_parenthesized_last] = STATE(10050), + [sym_stmt_mut_parenthesized_last] = STATE(10050), + [sym_stmt_const_parenthesized_last] = STATE(10050), + [sym__statement_parenthesized_last] = STATE(10046), + [sym_pipeline_parenthesized_last] = STATE(10050), + [sym_decl_def] = STATE(2232), + [sym_decl_export] = STATE(2232), + [sym_decl_extern] = STATE(2232), + [sym_decl_module] = STATE(2232), + [sym_decl_use] = STATE(2232), + [sym__ctrl_statement] = STATE(2332), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_stmt_source] = STATE(2332), + [sym_stmt_register] = STATE(2332), + [sym__stmt_hide] = STATE(2332), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2332), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2332), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(261), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [aux_sym__parenthesized_body_repeat1] = STATE(263), + [anon_sym_export] = ACTIONS(425), + [anon_sym_alias] = ACTIONS(427), + [anon_sym_let] = ACTIONS(429), + [anon_sym_let_DASHenv] = ACTIONS(429), + [anon_sym_mut] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_def] = ACTIONS(371), + [anon_sym_export_DASHenv] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_module] = ACTIONS(377), + [anon_sym_use] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_error] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_for] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(391), + [anon_sym_while] = ACTIONS(393), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_source] = ACTIONS(407), + [anon_sym_source_DASHenv] = ACTIONS(407), + [anon_sym_register] = ACTIONS(409), + [anon_sym_hide] = ACTIONS(411), + [anon_sym_hide_DASHenv] = ACTIONS(413), + [anon_sym_overlay] = ACTIONS(415), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, [262] = { - [sym__block_body_statement] = STATE(2089), - [sym__declaration] = STATE(2392), - [sym_decl_alias] = STATE(2403), - [sym_stmt_let] = STATE(2390), - [sym_stmt_mut] = STATE(2390), - [sym_stmt_const] = STATE(2390), - [sym__statement] = STATE(2392), - [sym_pipeline] = STATE(2390), - [sym_decl_def] = STATE(2403), - [sym_decl_export] = STATE(2403), - [sym_decl_extern] = STATE(2403), - [sym_decl_module] = STATE(2403), - [sym_decl_use] = STATE(2403), - [sym__ctrl_statement] = STATE(2390), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9866), - [sym_stmt_source] = STATE(2390), - [sym_stmt_register] = STATE(2390), - [sym__stmt_hide] = STATE(2390), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2390), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2390), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__block_body_statement] = STATE(2065), + [sym__declaration] = STATE(2425), + [sym_decl_alias] = STATE(2429), + [sym_stmt_let] = STATE(2401), + [sym_stmt_mut] = STATE(2401), + [sym_stmt_const] = STATE(2401), + [sym__statement] = STATE(2425), + [sym_pipeline] = STATE(2401), + [sym_decl_def] = STATE(2429), + [sym_decl_export] = STATE(2429), + [sym_decl_extern] = STATE(2429), + [sym_decl_module] = STATE(2429), + [sym_decl_use] = STATE(2429), + [sym__ctrl_statement] = STATE(2401), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10031), + [sym_stmt_source] = STATE(2401), + [sym_stmt_register] = STATE(2401), + [sym__stmt_hide] = STATE(2401), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2401), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2401), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(262), - [aux_sym_pipeline_repeat1] = STATE(1010), + [aux_sym_pipeline_repeat1] = STATE(1009), [aux_sym__block_body_repeat2] = STATE(262), [anon_sym_export] = ACTIONS(519), [anon_sym_alias] = ACTIONS(522), @@ -110100,74 +110127,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [263] = { - [sym__block_body_statement_parenthesized] = STATE(1952), - [sym__declaration_parenthesized] = STATE(2374), - [sym_decl_alias_parenthesized] = STATE(2409), - [sym_stmt_let_parenthesized] = STATE(2408), - [sym_stmt_mut_parenthesized] = STATE(2408), - [sym_stmt_const_parenthesized] = STATE(2408), - [sym__statement_parenthesized] = STATE(2374), - [sym_pipeline_parenthesized] = STATE(2408), - [sym_decl_def] = STATE(2409), - [sym_decl_export] = STATE(2409), - [sym_decl_extern] = STATE(2409), - [sym_decl_module] = STATE(2409), - [sym_decl_use] = STATE(2409), - [sym__ctrl_statement] = STATE(2408), - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_for] = STATE(2022), - [sym_ctrl_loop] = STATE(2022), - [sym_ctrl_error] = STATE(2022), - [sym_ctrl_while] = STATE(2022), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11382), - [sym_stmt_source] = STATE(2408), - [sym_stmt_register] = STATE(2408), - [sym__stmt_hide] = STATE(2408), - [sym_hide_mod] = STATE(2009), - [sym_hide_env] = STATE(2009), - [sym__stmt_overlay] = STATE(2408), - [sym_overlay_list] = STATE(2008), - [sym_overlay_hide] = STATE(2008), - [sym_overlay_new] = STATE(2008), - [sym_overlay_use] = STATE(2008), - [sym_assignment] = STATE(2408), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(4243), - [sym__var] = STATE(3976), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), + [sym__block_body_statement_parenthesized] = STATE(2092), + [sym__declaration_parenthesized] = STATE(2413), + [sym_decl_alias_parenthesized] = STATE(2414), + [sym_stmt_let_parenthesized] = STATE(2423), + [sym_stmt_mut_parenthesized] = STATE(2423), + [sym_stmt_const_parenthesized] = STATE(2423), + [sym__statement_parenthesized] = STATE(2413), + [sym_pipeline_parenthesized] = STATE(2423), + [sym_decl_def] = STATE(2414), + [sym_decl_export] = STATE(2414), + [sym_decl_extern] = STATE(2414), + [sym_decl_module] = STATE(2414), + [sym_decl_use] = STATE(2414), + [sym__ctrl_statement] = STATE(2423), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_for] = STATE(2118), + [sym_ctrl_loop] = STATE(2118), + [sym_ctrl_error] = STATE(2118), + [sym_ctrl_while] = STATE(2118), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10811), + [sym_stmt_source] = STATE(2423), + [sym_stmt_register] = STATE(2423), + [sym__stmt_hide] = STATE(2423), + [sym_hide_mod] = STATE(2127), + [sym_hide_env] = STATE(2127), + [sym__stmt_overlay] = STATE(2423), + [sym_overlay_list] = STATE(2128), + [sym_overlay_hide] = STATE(2128), + [sym_overlay_new] = STATE(2128), + [sym_overlay_use] = STATE(2128), + [sym_assignment] = STATE(2423), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(4278), + [sym__var] = STATE(3978), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), [sym_comment] = STATE(263), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1006), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1011), [aux_sym__parenthesized_body_repeat1] = STATE(263), [anon_sym_export] = ACTIONS(663), [anon_sym_alias] = ACTIONS(666), @@ -110431,204 +110458,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [266] = { [sym_comment] = STATE(266), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(829), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(827), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(831), - [aux_sym_unquoted_token6] = ACTIONS(833), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(823), + [aux_sym__immediate_decimal_token2] = ACTIONS(825), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, [267] = { [sym_comment] = STATE(267), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(839), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(842), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(833), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(831), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(835), + [aux_sym_unquoted_token6] = ACTIONS(837), [anon_sym_POUND] = ACTIONS(105), }, [268] = { [sym_comment] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -110645,7 +110673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(815), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -110661,7 +110688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_try] = ACTIONS(815), @@ -110700,7 +110726,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(821), + [aux_sym__immediate_decimal_token1] = ACTIONS(839), + [aux_sym__immediate_decimal_token2] = ACTIONS(841), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -110728,106 +110755,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [269] = { [sym_comment] = STATE(269), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(848), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(843), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(821), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [270] = { [sym_comment] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -110844,6 +110870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(815), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -110859,6 +110886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_try] = ACTIONS(815), @@ -110897,8 +110925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(850), - [aux_sym__immediate_decimal_token2] = ACTIONS(852), + [aux_sym__immediate_decimal_token2] = ACTIONS(821), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -110926,6 +110953,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [271] = { [sym_comment] = STATE(271), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(850), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(853), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [272] = { + [sym_comment] = STATE(272), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -110960,7 +111086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(854), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), [anon_sym_source] = ACTIONS(807), @@ -111023,9 +111149,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [272] = { - [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(809), + [273] = { + [sym_comment] = STATE(273), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(859), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [274] = { + [sym_comment] = STATE(274), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -111042,10 +111266,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), [anon_sym_break] = ACTIONS(807), [anon_sym_continue] = ACTIONS(807), @@ -111057,6 +111281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -111067,7 +111292,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(807), [anon_sym_hide_DASHenv] = ACTIONS(807), [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(807), [anon_sym_where] = ACTIONS(807), [anon_sym_STAR_STAR] = ACTIONS(807), @@ -111095,107 +111319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(857), - [aux_sym__immediate_decimal_token2] = ACTIONS(859), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [273] = { - [sym_comment] = STATE(273), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(813), + [aux_sym__immediate_decimal_token1] = ACTIONS(861), + [aux_sym__immediate_decimal_token2] = ACTIONS(863), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -111221,204 +111346,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [274] = { - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(865), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(867), - [anon_sym_POUND] = ACTIONS(105), - }, [275] = { [sym_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(859), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(867), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(865), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(869), + [aux_sym_unquoted_token6] = ACTIONS(871), [anon_sym_POUND] = ACTIONS(105), }, [276] = { [sym_comment] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(841), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [277] = { + [sym_comment] = STATE(277), + [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -111435,7 +111561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -111451,7 +111576,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -111490,6 +111614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token2] = ACTIONS(825), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -111515,8 +111640,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [277] = { - [sym_comment] = STATE(277), + [278] = { + [sym_comment] = STATE(278), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -111586,8 +111711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(869), - [aux_sym__immediate_decimal_token2] = ACTIONS(871), + [aux_sym__immediate_decimal_token1] = ACTIONS(873), + [aux_sym__immediate_decimal_token2] = ACTIONS(875), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -111613,302 +111738,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [278] = { - [sym_comment] = STATE(278), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(873), - [aux_sym__immediate_decimal_token2] = ACTIONS(875), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, [279] = { [sym_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(877), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(859), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(881), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(883), [anon_sym_POUND] = ACTIONS(105), }, [280] = { [sym_comment] = STATE(280), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(880), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(882), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(885), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(887), [anon_sym_POUND] = ACTIONS(105), }, [281] = { [sym_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(889), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [282] = { + [sym_comment] = STATE(282), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -111942,7 +112067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(891), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -111979,7 +112104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(852), + [aux_sym__immediate_decimal_token2] = ACTIONS(841), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -112005,396 +112130,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [282] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(884), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(887), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), - }, [283] = { [sym_comment] = STATE(283), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [284] = { [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(895), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(893), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(897), - [aux_sym_unquoted_token6] = ACTIONS(899), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, [285] = { [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(105), }, [286] = { @@ -112497,106 +112524,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [287] = { [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(898), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), [aux_sym__immediate_decimal_token2] = ACTIONS(901), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, [288] = { - [sym_path] = STATE(385), + [sym_path] = STATE(383), [sym_comment] = STATE(288), - [aux_sym_cell_path_repeat1] = STATE(304), + [aux_sym_cell_path_repeat1] = STATE(314), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -112691,7 +112718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), }, [289] = { - [sym_cell_path] = STATE(467), + [sym_cell_path] = STATE(476), [sym_path] = STATE(288), [sym_comment] = STATE(289), [anon_sym_export] = ACTIONS(909), @@ -112789,6 +112816,782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [290] = { [sym_comment] = STATE(290), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(105), + }, + [291] = { + [sym_comment] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [292] = { + [sym_cell_path] = STATE(481), + [sym_path] = STATE(288), + [sym_comment] = STATE(292), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(105), + }, + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [294] = { + [sym_cell_path] = STATE(483), + [sym_path] = STATE(288), + [sym_comment] = STATE(294), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(105), + }, + [295] = { + [sym_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(921), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(105), + }, + [296] = { + [sym_cell_path] = STATE(429), + [sym_path] = STATE(288), + [sym_comment] = STATE(296), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [297] = { + [sym_cell_path] = STATE(432), + [sym_path] = STATE(288), + [sym_comment] = STATE(297), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [298] = { + [sym_comment] = STATE(298), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -112858,8 +113661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(913), - [aux_sym__immediate_decimal_token2] = ACTIONS(915), + [aux_sym__immediate_decimal_token2] = ACTIONS(875), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -112882,399 +113684,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [291] = { - [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(917), - [aux_sym__immediate_decimal_token2] = ACTIONS(919), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), + [299] = { + [sym_cell_path] = STATE(387), + [sym_path] = STATE(301), + [sym_comment] = STATE(299), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(937), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, - [292] = { - [sym_comment] = STATE(292), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(921), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [300] = { + [sym_comment] = STATE(300), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(940), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [293] = { - [sym__expression] = STATE(1677), - [sym_expr_unary] = STATE(522), - [sym__expr_unary_minus] = STATE(488), - [sym_expr_binary] = STATE(522), - [sym__expr_binary_expression] = STATE(6810), - [sym_expr_parenthesized] = STATE(407), - [sym_val_range] = STATE(1595), - [sym__value] = STATE(522), - [sym_val_nothing] = STATE(431), - [sym_val_bool] = STATE(431), - [sym_val_variable] = STATE(395), - [sym__var] = STATE(314), - [sym_val_number] = STATE(342), - [sym__val_number_decimal] = STATE(280), - [sym__val_number] = STATE(328), - [sym_val_duration] = STATE(431), - [sym_val_filesize] = STATE(431), - [sym_val_binary] = STATE(431), - [sym_val_string] = STATE(431), - [sym__str_double_quotes] = STATE(432), - [sym_val_interpolated] = STATE(431), - [sym__inter_single_quotes] = STATE(463), - [sym__inter_double_quotes] = STATE(464), - [sym_val_list] = STATE(431), - [sym_val_record] = STATE(431), - [sym_val_table] = STATE(431), - [sym_val_closure] = STATE(431), - [sym_unquoted] = STATE(1678), - [sym_comment] = STATE(293), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_not] = ACTIONS(941), - [anon_sym_null] = ACTIONS(943), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(949), - [aux_sym__val_number_token2] = ACTIONS(949), - [aux_sym__val_number_token3] = ACTIONS(949), - [aux_sym__val_number_token4] = ACTIONS(951), - [aux_sym__val_number_token5] = ACTIONS(951), - [aux_sym__val_number_token6] = ACTIONS(951), - [anon_sym_0b] = ACTIONS(953), - [anon_sym_0o] = ACTIONS(953), - [anon_sym_0x] = ACTIONS(953), - [sym_val_date] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(959), - [sym__str_back_ticks] = ACTIONS(959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token1] = ACTIONS(965), + [301] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(301), + [aux_sym_cell_path_repeat1] = STATE(310), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(867), + [302] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(302), + [aux_sym_cell_path_repeat1] = STATE(302), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, - [295] = { - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(809), + [303] = { + [sym_comment] = STATE(303), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + }, + [304] = { + [sym_comment] = STATE(304), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -113291,10 +114190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), [anon_sym_break] = ACTIONS(807), [anon_sym_continue] = ACTIONS(807), @@ -113306,6 +114205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -113316,7 +114216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(807), [anon_sym_hide_DASHenv] = ACTIONS(807), [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(807), [anon_sym_where] = ACTIONS(807), [anon_sym_STAR_STAR] = ACTIONS(807), @@ -113344,6 +114243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token2] = ACTIONS(863), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -113369,8 +114269,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [296] = { - [sym_comment] = STATE(296), + [305] = { + [sym_comment] = STATE(305), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(953), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(955), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(105), + }, + [306] = { + [sym_comment] = STATE(306), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -113466,202 +114463,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [297] = { - [sym_cell_path] = STATE(451), + [307] = { + [sym_cell_path] = STATE(469), [sym_path] = STATE(288), - [sym_comment] = STATE(297), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), + [sym_comment] = STATE(307), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(105), - }, - [298] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, - [299] = { - [sym_comment] = STATE(299), + [308] = { + [sym_comment] = STATE(308), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -113695,7 +114595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(963), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -113731,7 +114631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(871), + [aux_sym__immediate_decimal_token2] = ACTIONS(875), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -113757,369 +114657,855 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [300] = { - [sym_cell_path] = STATE(453), + [309] = { + [sym_cell_path] = STATE(388), + [sym_path] = STATE(301), + [sym_comment] = STATE(309), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(970), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [310] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(310), + [aux_sym_cell_path_repeat1] = STATE(302), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [311] = { + [sym_cell_path] = STATE(448), [sym_path] = STATE(288), - [sym_comment] = STATE(300), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), + [sym_comment] = STATE(311), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, - [301] = { - [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [312] = { + [sym_comment] = STATE(312), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(979), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(977), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(981), + [aux_sym_unquoted_token6] = ACTIONS(983), [anon_sym_POUND] = ACTIONS(105), }, - [302] = { - [sym_comment] = STATE(302), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(882), + [313] = { + [sym_cell_path] = STATE(449), + [sym_path] = STATE(288), + [sym_comment] = STATE(313), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, - [303] = { - [sym_comment] = STATE(303), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(875), + [314] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(314), + [aux_sym_cell_path_repeat1] = STATE(302), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(907), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [315] = { + [sym__expression] = STATE(1725), + [sym_expr_unary] = STATE(503), + [sym__expr_unary_minus] = STATE(486), + [sym_expr_binary] = STATE(503), + [sym__expr_binary_expression] = STATE(6775), + [sym_expr_parenthesized] = STATE(414), + [sym_val_range] = STATE(1642), + [sym__value] = STATE(503), + [sym_val_nothing] = STATE(447), + [sym_val_bool] = STATE(447), + [sym_val_variable] = STATE(375), + [sym__var] = STATE(309), + [sym_val_number] = STATE(325), + [sym__val_number_decimal] = STATE(279), + [sym__val_number] = STATE(366), + [sym_val_duration] = STATE(447), + [sym_val_filesize] = STATE(447), + [sym_val_binary] = STATE(447), + [sym_val_string] = STATE(447), + [sym__str_double_quotes] = STATE(457), + [sym_val_interpolated] = STATE(447), + [sym__inter_single_quotes] = STATE(425), + [sym__inter_double_quotes] = STATE(426), + [sym_val_list] = STATE(447), + [sym_val_record] = STATE(447), + [sym_val_table] = STATE(447), + [sym_val_closure] = STATE(447), + [sym_unquoted] = STATE(1640), + [sym_comment] = STATE(315), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_not] = ACTIONS(1003), + [anon_sym_null] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1009), + [aux_sym__val_number_token1] = ACTIONS(1011), + [aux_sym__val_number_token2] = ACTIONS(1011), + [aux_sym__val_number_token3] = ACTIONS(1011), + [aux_sym__val_number_token4] = ACTIONS(1013), + [aux_sym__val_number_token5] = ACTIONS(1013), + [aux_sym__val_number_token6] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1015), + [anon_sym_0o] = ACTIONS(1015), + [anon_sym_0x] = ACTIONS(1015), + [sym_val_date] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(985), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(105), + }, + [316] = { + [sym_comment] = STATE(316), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(1029), + [aux_sym__immediate_decimal_token2] = ACTIONS(1031), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [317] = { + [sym_comment] = STATE(317), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(1033), + [aux_sym__immediate_decimal_token2] = ACTIONS(1035), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -114142,399 +115528,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [304] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(304), - [aux_sym_cell_path_repeat1] = STATE(312), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [305] = { - [sym_cell_path] = STATE(408), - [sym_path] = STATE(321), - [sym_comment] = STATE(305), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(983), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), [anon_sym_POUND] = ACTIONS(105), }, - [306] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(986), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(988), + [318] = { + [sym_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1039), [anon_sym_POUND] = ACTIONS(105), }, - [307] = { - [sym_cell_path] = STATE(447), - [sym_path] = STATE(288), - [sym_comment] = STATE(307), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [319] = { + [sym_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(1041), + [aux_sym__immediate_decimal_token2] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [308] = { - [sym_comment] = STATE(308), + [320] = { + [sym_comment] = STATE(320), + [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -114551,10 +115743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), [anon_sym_break] = ACTIONS(807), [anon_sym_continue] = ACTIONS(807), @@ -114566,9 +115758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(994), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), [anon_sym_source] = ACTIONS(807), @@ -114577,6 +115768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(807), [anon_sym_hide_DASHenv] = ACTIONS(807), [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(807), [anon_sym_where] = ACTIONS(807), [anon_sym_STAR_STAR] = ACTIONS(807), @@ -114604,7 +115796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(875), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -114630,687 +115821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [309] = { - [sym_cell_path] = STATE(454), - [sym_path] = STATE(288), - [sym_comment] = STATE(309), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [310] = { - [sym_cell_path] = STATE(439), - [sym_path] = STATE(288), - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(105), - }, - [311] = { - [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(105), - }, - [312] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(312), - [aux_sym_cell_path_repeat1] = STATE(312), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(105), - }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(1022), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(1026), - [aux_sym_unquoted_token6] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(105), - }, - [314] = { - [sym_cell_path] = STATE(420), - [sym_path] = STATE(321), - [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [315] = { - [sym_cell_path] = STATE(473), - [sym_path] = STATE(288), - [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [316] = { - [sym_comment] = STATE(316), + [321] = { + [sym_comment] = STATE(321), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), @@ -115379,8 +115891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1037), - [aux_sym__immediate_decimal_token2] = ACTIONS(1039), + [aux_sym__immediate_decimal_token1] = ACTIONS(1045), + [aux_sym__immediate_decimal_token2] = ACTIONS(1047), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -115406,493 +115918,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [317] = { - [sym_comment] = STATE(317), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), - }, - [318] = { - [sym_cell_path] = STATE(450), - [sym_path] = STATE(288), - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [319] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(319), - [aux_sym_cell_path_repeat1] = STATE(312), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [320] = { - [sym_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(105), - }, - [321] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(321), - [aux_sym_cell_path_repeat1] = STATE(319), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(907), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(105), - }, [322] = { [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [323] = { + [sym_comment] = STATE(323), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -115961,8 +116085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1050), - [aux_sym__immediate_decimal_token2] = ACTIONS(1052), + [aux_sym__immediate_decimal_token2] = ACTIONS(1043), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -115988,8 +116111,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [323] = { - [sym_comment] = STATE(323), + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [325] = { + [sym_comment] = STATE(325), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -116024,7 +116243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1054), [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -116036,7 +116254,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1058), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -116072,6 +116289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1054), [aux_sym__val_number_token5] = ACTIONS(1054), [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1058), + [sym_duration_unit] = ACTIONS(1060), [anon_sym_0b] = ACTIONS(1054), [anon_sym_0o] = ACTIONS(1054), [anon_sym_0x] = ACTIONS(1054), @@ -116084,680 +116303,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [324] = { - [sym_cell_path] = STATE(461), - [sym_path] = STATE(346), - [sym_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [325] = { - [sym_comment] = STATE(325), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, [326] = { + [sym_path] = STATE(436), [sym_comment] = STATE(326), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [aux_sym_cell_path_repeat1] = STATE(340), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, [327] = { + [sym_path] = STATE(436), [sym_comment] = STATE(327), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1063), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), + [aux_sym_cell_path_repeat1] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, [328] = { [sym_comment] = STATE(328), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), - }, - [329] = { - [sym_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(1071), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(1069), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(1073), - [aux_sym_unquoted_token6] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(105), - }, - [330] = { - [sym_path] = STATE(460), - [sym_comment] = STATE(330), - [aux_sym_cell_path_repeat1] = STATE(366), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_list] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [aux_sym__record_key_token2] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [331] = { - [sym_comment] = STATE(331), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -116790,7 +116529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(1067), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -116826,7 +116565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1052), + [aux_sym__immediate_decimal_token2] = ACTIONS(1043), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -116852,200 +116591,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [332] = { - [sym_path] = STATE(506), - [sym_comment] = STATE(332), - [aux_sym_cell_path_repeat1] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(105), - }, - [333] = { - [sym_comment] = STATE(333), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1039), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [334] = { - [sym_comment] = STATE(334), + [329] = { + [sym_comment] = STATE(329), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -117115,7 +116662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(915), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -117138,220 +116684,1469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1074), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [331] = { + [sym_comment] = STATE(331), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1074), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [332] = { + [sym_path] = STATE(479), + [sym_comment] = STATE(332), + [aux_sym_cell_path_repeat1] = STATE(332), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_list] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_new] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(942), + [anon_sym_DASH_EQ] = ACTIONS(942), + [anon_sym_STAR_EQ] = ACTIONS(942), + [anon_sym_SLASH_EQ] = ACTIONS(942), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [aux_sym__record_key_token2] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(105), + }, + [333] = { + [sym_comment] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(105), + }, + [334] = { + [sym_cell_path] = STATE(558), + [sym_path] = STATE(363), + [sym_comment] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [335] = { - [sym_cell_path] = STATE(565), - [sym_path] = STATE(332), + [sym_cell_path] = STATE(438), + [sym_path] = STATE(367), [sym_comment] = STATE(335), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1079), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [aux_sym__record_key_token2] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [336] = { + [sym_path] = STATE(479), [sym_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1081), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1083), + [aux_sym_cell_path_repeat1] = STATE(332), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_list] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_make] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [aux_sym__record_key_token2] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [337] = { [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [338] = { + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [339] = { + [sym_cell_path] = STATE(443), + [sym_path] = STATE(326), + [sym_comment] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [340] = { + [sym_path] = STATE(436), + [sym_comment] = STATE(340), + [aux_sym_cell_path_repeat1] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [341] = { + [sym_cell_path] = STATE(442), + [sym_path] = STATE(326), + [sym_comment] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [342] = { + [sym_comment] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(105), + }, + [343] = { + [sym_comment] = STATE(343), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1105), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [344] = { + [sym_cell_path] = STATE(546), + [sym_path] = STATE(363), + [sym_comment] = STATE(344), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(105), + }, + [345] = { + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -117403,7 +118198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(919), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -117426,106 +118220,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [338] = { - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1087), + [346] = { + [sym_comment] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(1107), + [aux_sym__immediate_decimal_token2] = ACTIONS(1109), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [339] = { - [sym_comment] = STATE(339), + [347] = { + [sym_comment] = STATE(347), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), @@ -117594,8 +118389,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1089), - [aux_sym__immediate_decimal_token2] = ACTIONS(1091), + [aux_sym__immediate_decimal_token1] = ACTIONS(1111), + [aux_sym__immediate_decimal_token2] = ACTIONS(1113), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -117620,296 +118415,872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1096), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), + [348] = { + [sym_cell_path] = STATE(536), + [sym_path] = STATE(363), + [sym_comment] = STATE(348), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(105), }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [349] = { + [sym_cell_path] = STATE(560), + [sym_path] = STATE(363), + [sym_comment] = STATE(349), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1106), - [sym_duration_unit] = ACTIONS(1108), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [350] = { + [sym_comment] = STATE(350), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [343] = { - [sym_comment] = STATE(343), + [351] = { + [sym_path] = STATE(436), + [sym_comment] = STATE(351), + [aux_sym_cell_path_repeat1] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [352] = { + [sym_cell_path] = STATE(600), + [sym_path] = STATE(363), + [sym_comment] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [353] = { + [sym__expression] = STATE(1796), + [sym_expr_unary] = STATE(532), + [sym__expr_unary_minus] = STATE(583), + [sym_expr_binary] = STATE(532), + [sym__expr_binary_expression] = STATE(6766), + [sym_expr_parenthesized] = STATE(504), + [sym_val_range] = STATE(1874), + [sym__value] = STATE(532), + [sym_val_nothing] = STATE(585), + [sym_val_bool] = STATE(585), + [sym_val_variable] = STATE(461), + [sym__var] = STATE(339), + [sym_val_number] = STATE(380), + [sym__val_number_decimal] = STATE(295), + [sym__val_number] = STATE(378), + [sym_val_duration] = STATE(585), + [sym_val_filesize] = STATE(585), + [sym_val_binary] = STATE(585), + [sym_val_string] = STATE(585), + [sym__str_double_quotes] = STATE(556), + [sym_val_interpolated] = STATE(585), + [sym__inter_single_quotes] = STATE(577), + [sym__inter_double_quotes] = STATE(582), + [sym_val_list] = STATE(585), + [sym_val_record] = STATE(585), + [sym_val_table] = STATE(585), + [sym_val_closure] = STATE(585), + [sym_unquoted] = STATE(1797), + [sym_comment] = STATE(353), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_export] = ACTIONS(985), + [anon_sym_alias] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_let_DASHenv] = ACTIONS(985), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(985), + [sym_cmd_identifier] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_def] = ACTIONS(985), + [anon_sym_export_DASHenv] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_error] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(1125), + [anon_sym_try] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_source] = ACTIONS(985), + [anon_sym_source_DASHenv] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_hide_DASHenv] = ACTIONS(985), + [anon_sym_overlay] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_null] = ACTIONS(1131), + [anon_sym_true] = ACTIONS(1133), + [anon_sym_false] = ACTIONS(1133), + [aux_sym__val_number_decimal_token1] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1137), + [aux_sym__val_number_token2] = ACTIONS(1137), + [aux_sym__val_number_token3] = ACTIONS(1137), + [aux_sym__val_number_token4] = ACTIONS(1139), + [aux_sym__val_number_token5] = ACTIONS(1139), + [aux_sym__val_number_token6] = ACTIONS(1139), + [anon_sym_0b] = ACTIONS(1141), + [anon_sym_0o] = ACTIONS(1141), + [anon_sym_0x] = ACTIONS(1141), + [sym_val_date] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1147), + [sym__str_back_ticks] = ACTIONS(1147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(985), + [aux_sym_unquoted_token1] = ACTIONS(1153), + [anon_sym_POUND] = ACTIONS(105), + }, + [354] = { + [sym_cell_path] = STATE(568), + [sym_path] = STATE(363), + [sym_comment] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1031), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(105), + }, + [357] = { + [sym_comment] = STATE(357), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -117943,7 +119314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1110), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), [anon_sym_source] = ACTIONS(807), @@ -117979,7 +119350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(919), + [aux_sym__immediate_decimal_token2] = ACTIONS(1035), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -118004,105 +119375,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [358] = { + [sym_comment] = STATE(358), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1157), [anon_sym_POUND] = ACTIONS(105), }, - [345] = { - [sym_comment] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(817), + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1159), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [361] = { + [sym_comment] = STATE(361), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -118119,6 +119681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(815), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -118133,8 +119696,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(1166), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -118170,8 +119734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1117), - [aux_sym__immediate_decimal_token2] = ACTIONS(1119), + [aux_sym__immediate_decimal_token2] = ACTIONS(1031), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -118196,10 +119759,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [346] = { - [sym_path] = STATE(506), - [sym_comment] = STATE(346), - [aux_sym_cell_path_repeat1] = STATE(354), + [362] = { + [sym_comment] = STATE(362), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(1169), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(1171), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(1169), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(1173), + [aux_sym_unquoted_token6] = ACTIONS(1175), + [anon_sym_POUND] = ACTIONS(105), + }, + [363] = { + [sym_path] = STATE(436), + [sym_comment] = STATE(363), + [aux_sym_cell_path_repeat1] = STATE(351), [ts_builtin_sym_end] = ACTIONS(905), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), @@ -118233,7 +119892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1077), + [anon_sym_DOT2] = ACTIONS(1062), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -118292,104 +119951,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [347] = { - [sym_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1039), [anon_sym_POUND] = ACTIONS(105), }, - [348] = { - [sym_comment] = STATE(348), + [365] = { + [sym_comment] = STATE(365), + [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -118406,7 +120066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -118421,7 +120080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -118459,6 +120117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token2] = ACTIONS(1047), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -118484,392 +120143,868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [349] = { - [sym_cell_path] = STATE(501), - [sym_path] = STATE(356), - [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_list] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_make] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1123), - [anon_sym_try] = ACTIONS(997), - [anon_sym_catch] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [aux_sym__record_key_token2] = ACTIONS(997), + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, - [350] = { - [sym_path] = STATE(506), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1126), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), + [367] = { + [sym_path] = STATE(479), + [sym_comment] = STATE(367), + [aux_sym_cell_path_repeat1] = STATE(336), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_list] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_make] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_else] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(903), + [anon_sym_catch] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_new] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [aux_sym__record_key_token2] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [351] = { - [sym_cell_path] = STATE(554), - [sym_path] = STATE(332), - [sym_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), + [368] = { + [sym_cell_path] = STATE(540), + [sym_path] = STATE(363), + [sym_comment] = STATE(368), + [ts_builtin_sym_end] = ACTIONS(919), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(105), }, - [352] = { - [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1048), + [369] = { + [sym_comment] = STATE(369), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1183), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [353] = { - [sym_comment] = STATE(353), + [370] = { + [sym_cell_path] = STATE(550), + [sym_path] = STATE(363), + [sym_comment] = STATE(370), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1189), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(105), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(105), + }, + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_COLON] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1070), + [anon_sym_DASH_EQ] = ACTIONS(1070), + [anon_sym_STAR_EQ] = ACTIONS(1070), + [anon_sym_SLASH_EQ] = ACTIONS(1070), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1197), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [375] = { + [sym_comment] = STATE(375), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -118904,7 +121039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1054), [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(1199), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -118916,7 +121051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1058), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -118964,205 +121098,1532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [354] = { - [sym_path] = STATE(506), - [sym_comment] = STATE(354), - [aux_sym_cell_path_repeat1] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [376] = { + [sym_comment] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, - [355] = { - [sym_cell_path] = STATE(533), - [sym_path] = STATE(332), - [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [377] = { + [sym_cell_path] = STATE(677), + [sym_path] = STATE(392), + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, - [356] = { - [sym_path] = STATE(460), - [sym_comment] = STATE(356), - [aux_sym_cell_path_repeat1] = STATE(330), + [378] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_POUND] = ACTIONS(105), + }, + [379] = { + [sym_path] = STATE(580), + [sym_comment] = STATE(379), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [380] = { + [sym_comment] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1203), + [sym_duration_unit] = ACTIONS(1205), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), + }, + [381] = { + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1207), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [382] = { + [sym_comment] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1207), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(105), + }, + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(105), + }, + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_COLON] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_PLUS_EQ] = ACTIONS(1082), + [anon_sym_DASH_EQ] = ACTIONS(1082), + [anon_sym_STAR_EQ] = ACTIONS(1082), + [anon_sym_SLASH_EQ] = ACTIONS(1082), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [aux_sym__record_key_token2] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_make] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [aux_sym__record_key_token2] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), + }, + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(105), + }, + [390] = { + [sym_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [391] = { + [sym_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [392] = { + [sym_path] = STATE(580), + [sym_comment] = STATE(392), + [aux_sym_cell_path_repeat1] = STATE(379), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), [anon_sym_let_DASHenv] = ACTIONS(903), [anon_sym_mut] = ACTIONS(903), @@ -119175,13 +122636,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(903), [anon_sym_module] = ACTIONS(903), [anon_sym_use] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), [anon_sym_DOLLAR] = ACTIONS(903), [anon_sym_error] = ACTIONS(903), - [anon_sym_list] = ACTIONS(903), [anon_sym_GT] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_break] = ACTIONS(903), @@ -119189,17 +122648,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(903), [anon_sym_in] = ACTIONS(903), [anon_sym_loop] = ACTIONS(903), - [anon_sym_make] = ACTIONS(903), [anon_sym_while] = ACTIONS(903), [anon_sym_do] = ACTIONS(903), [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1129), + [anon_sym_DOT2] = ACTIONS(1201), [anon_sym_try] = ACTIONS(903), - [anon_sym_catch] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), [anon_sym_source_DASHenv] = ACTIONS(903), @@ -119207,14 +122664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(903), [anon_sym_hide_DASHenv] = ACTIONS(903), [anon_sym_overlay] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), [anon_sym_STAR_STAR] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(903), [anon_sym_SLASH] = ACTIONS(903), @@ -119239,6 +122690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(903), [anon_sym_xor] = ACTIONS(903), [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), [aux_sym__val_number_decimal_token1] = ACTIONS(903), [aux_sym__val_number_token1] = ACTIONS(903), [aux_sym__val_number_token2] = ACTIONS(903), @@ -119246,14 +122701,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(903), [aux_sym__val_number_token5] = ACTIONS(903), [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(903), [sym__str_single_quotes] = ACTIONS(903), [sym__str_back_ticks] = ACTIONS(903), - [aux_sym__record_key_token2] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [357] = { - [sym_comment] = STATE(357), + [393] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(392), + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(105), + }, + [394] = { + [sym_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1109), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_COLON] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1070), + [anon_sym_DASH_EQ] = ACTIONS(1070), + [anon_sym_STAR_EQ] = ACTIONS(1070), + [anon_sym_SLASH_EQ] = ACTIONS(1070), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1197), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [aux_sym__record_key_token2] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [396] = { + [sym_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), @@ -119286,7 +123032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1131), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), [anon_sym_source] = ACTIONS(807), @@ -119322,7 +123068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1039), + [aux_sym__immediate_decimal_token2] = ACTIONS(1113), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -119345,203 +123091,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [358] = { - [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1137), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [397] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(392), + [sym_comment] = STATE(397), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(105), }, - [359] = { - [sym__expression] = STATE(1876), - [sym_expr_unary] = STATE(529), - [sym__expr_unary_minus] = STATE(604), - [sym_expr_binary] = STATE(529), - [sym__expr_binary_expression] = STATE(6873), - [sym_expr_parenthesized] = STATE(524), - [sym_val_range] = STATE(1808), - [sym__value] = STATE(529), - [sym_val_nothing] = STATE(593), - [sym_val_bool] = STATE(593), - [sym_val_variable] = STATE(433), - [sym__var] = STATE(364), - [sym_val_number] = STATE(404), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(374), - [sym_val_duration] = STATE(593), - [sym_val_filesize] = STATE(593), - [sym_val_binary] = STATE(593), - [sym_val_string] = STATE(593), - [sym__str_double_quotes] = STATE(579), - [sym_val_interpolated] = STATE(593), - [sym__inter_single_quotes] = STATE(589), - [sym__inter_double_quotes] = STATE(592), - [sym_val_list] = STATE(593), - [sym_val_record] = STATE(593), - [sym_val_table] = STATE(593), - [sym_val_closure] = STATE(593), - [sym_unquoted] = STATE(1878), - [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1143), - [anon_sym_error] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_DOT] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_not] = ACTIONS(1153), - [anon_sym_null] = ACTIONS(1155), - [anon_sym_true] = ACTIONS(1157), - [anon_sym_false] = ACTIONS(1157), - [aux_sym__val_number_decimal_token1] = ACTIONS(1159), - [aux_sym__val_number_token1] = ACTIONS(1161), - [aux_sym__val_number_token2] = ACTIONS(1161), - [aux_sym__val_number_token3] = ACTIONS(1161), - [aux_sym__val_number_token4] = ACTIONS(1163), - [aux_sym__val_number_token5] = ACTIONS(1163), - [aux_sym__val_number_token6] = ACTIONS(1163), - [anon_sym_0b] = ACTIONS(1165), - [anon_sym_0o] = ACTIONS(1165), - [anon_sym_0x] = ACTIONS(1165), - [sym_val_date] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym__str_single_quotes] = ACTIONS(1171), - [sym__str_back_ticks] = ACTIONS(1171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(923), - [aux_sym_unquoted_token1] = ACTIONS(1177), + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [360] = { - [sym_comment] = STATE(360), + [399] = { + [sym_cell_path] = STATE(623), + [sym_path] = STATE(392), + [sym_comment] = STATE(399), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(105), + }, + [400] = { + [sym_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1227), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1230), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [401] = { + [sym_comment] = STATE(401), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(1232), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1234), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(105), + }, + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -119558,7 +123587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(815), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -119573,9 +123601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(1238), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -119611,6 +123638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1109), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -119633,1732 +123661,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), [anon_sym_CARET] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [361] = { - [sym_comment] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(105), - }, - [362] = { - [sym_cell_path] = STATE(553), - [sym_path] = STATE(332), - [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(105), - }, - [363] = { - [sym_cell_path] = STATE(534), - [sym_path] = STATE(332), - [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(1003), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), [anon_sym_POUND] = ACTIONS(105), }, - [364] = { - [sym_cell_path] = STATE(441), - [sym_path] = STATE(346), - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1179), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [403] = { + [sym_cell_path] = STATE(632), + [sym_path] = STATE(392), + [sym_comment] = STATE(403), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(105), }, - [365] = { - [sym_path] = STATE(506), - [sym_comment] = STATE(365), - [aux_sym_cell_path_repeat1] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [404] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(392), + [sym_comment] = STATE(404), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, - [366] = { - [sym_path] = STATE(460), - [sym_comment] = STATE(366), - [aux_sym_cell_path_repeat1] = STATE(366), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1182), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [aux_sym__record_key_token2] = ACTIONS(1015), + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1243), [anon_sym_POUND] = ACTIONS(105), }, - [367] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(332), - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(105), - }, - [368] = { - [sym_cell_path] = STATE(574), - [sym_path] = STATE(332), - [sym_comment] = STATE(368), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [369] = { - [sym_cell_path] = STATE(605), - [sym_path] = STATE(332), - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), - }, - [371] = { - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(105), - }, - [372] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(390), - [sym_comment] = STATE(372), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(105), - }, - [373] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(390), - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [374] = { - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), - }, - [375] = { - [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), - }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, - [377] = { - [sym_comment] = STATE(377), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1197), - [anon_sym_POUND] = ACTIONS(105), - }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1199), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [aux_sym__record_key_token2] = ACTIONS(1054), + [406] = { + [sym_comment] = STATE(406), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [379] = { - [sym_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(809), + [407] = { + [sym_comment] = STATE(407), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -121375,6 +124061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -121389,8 +124076,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), [anon_sym_source] = ACTIONS(807), @@ -121426,7 +124114,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1091), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -121451,960 +124138,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [380] = { - [sym_cell_path] = STATE(569), - [sym_path] = STATE(399), - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1207), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1209), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1211), - [anon_sym_POUND] = ACTIONS(105), - }, - [382] = { - [sym_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1213), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(105), - }, - [383] = { - [sym_path] = STATE(597), - [sym_comment] = STATE(383), - [aux_sym_cell_path_repeat1] = STATE(396), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [384] = { - [sym_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), - }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), - }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1199), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [aux_sym__record_key_token2] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(105), - }, - [387] = { - [sym_cell_path] = STATE(665), - [sym_path] = STATE(390), - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [388] = { - [sym_cell_path] = STATE(668), - [sym_path] = STATE(390), - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), + [409] = { + [sym_comment] = STATE(409), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(105), }, - [389] = { - [sym_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), + [410] = { + [sym_comment] = STATE(410), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1157), [anon_sym_POUND] = ACTIONS(105), }, - [390] = { - [sym_path] = STATE(597), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(383), + [411] = { + [sym_path] = STATE(580), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(416), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -122438,7 +124460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_DOT2] = ACTIONS(1201), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -122496,1053 +124518,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(105), - }, - [392] = { - [sym_cell_path] = STATE(635), - [sym_path] = STATE(390), - [sym_comment] = STATE(392), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(105), - }, - [393] = { - [sym_cell_path] = STATE(672), - [sym_path] = STATE(390), - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(105), - }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1232), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [396] = { - [sym_path] = STATE(597), - [sym_comment] = STATE(396), - [aux_sym_cell_path_repeat1] = STATE(396), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1236), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(105), - }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), + [412] = { + [sym_path] = STATE(580), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_list] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_make] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_else] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_catch] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_new] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [aux_sym__record_key_token2] = ACTIONS(1098), + [413] = { + [sym_cell_path] = STATE(574), + [sym_path] = STATE(411), + [sym_comment] = STATE(413), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1248), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, - [399] = { - [sym_path] = STATE(597), - [sym_comment] = STATE(399), - [aux_sym_cell_path_repeat1] = STATE(416), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1199), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1087), + [415] = { + [sym_cell_path] = STATE(573), + [sym_path] = STATE(411), + [sym_comment] = STATE(415), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1260), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_PLUS_EQ] = ACTIONS(1113), - [anon_sym_DASH_EQ] = ACTIONS(1113), - [anon_sym_STAR_EQ] = ACTIONS(1113), - [anon_sym_SLASH_EQ] = ACTIONS(1113), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [aux_sym__record_key_token2] = ACTIONS(1113), + [416] = { + [sym_path] = STATE(580), + [sym_comment] = STATE(416), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, - [402] = { - [sym_comment] = STATE(402), + [417] = { + [sym_comment] = STATE(417), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -123611,7 +125063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1119), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -123634,865 +125085,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [403] = { - [sym_cell_path] = STATE(679), - [sym_path] = STATE(390), - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(105), - }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1239), - [sym_duration_unit] = ACTIONS(1241), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [405] = { - [sym_cell_path] = STATE(660), - [sym_path] = STATE(390), - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(1187), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, - [407] = { - [sym_comment] = STATE(407), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(105), - }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [410] = { - [sym_comment] = STATE(410), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), - }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(833), - [anon_sym_POUND] = ACTIONS(105), - }, - [412] = { - [sym_comment] = STATE(412), + [418] = { + [sym_comment] = STATE(418), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), @@ -124561,7 +125158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1091), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -124584,1524 +125180,1049 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [413] = { - [sym_cell_path] = STATE(595), - [sym_path] = STATE(399), - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1256), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [419] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [414] = { - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1185), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(105), - }, - [415] = { - [sym_comment] = STATE(415), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [416] = { - [sym_path] = STATE(597), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(396), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [417] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [418] = { - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_where] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [419] = { - [sym_comment] = STATE(419), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_where] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [420] = { - [sym_comment] = STATE(420), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [420] = { + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(105), }, [421] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(392), [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [422] = { + [sym_cell_path] = STATE(620), + [sym_path] = STATE(392), [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [423] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(478), [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [424] = { [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_list] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_make] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_catch] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS_EQ] = ACTIONS(1185), + [anon_sym_DASH_EQ] = ACTIONS(1185), + [anon_sym_STAR_EQ] = ACTIONS(1185), + [anon_sym_SLASH_EQ] = ACTIONS(1185), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [aux_sym__record_key_token2] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, [425] = { - [sym_path] = STATE(664), [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [426] = { [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(899), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [427] = { - [sym_cell_path] = STATE(667), - [sym_path] = STATE(425), [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1269), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [428] = { [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_list] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_make] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_catch] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_new] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_PLUS_EQ] = ACTIONS(1213), + [anon_sym_DASH_EQ] = ACTIONS(1213), + [anon_sym_STAR_EQ] = ACTIONS(1213), + [anon_sym_SLASH_EQ] = ACTIONS(1213), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [aux_sym__record_key_token2] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, [429] = { [sym_comment] = STATE(429), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [430] = { + [sym_comment] = STATE(430), [anon_sym_export] = ACTIONS(1274), [anon_sym_alias] = ACTIONS(1274), [anon_sym_let] = ACTIONS(1274), @@ -126194,8 +126315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [430] = { - [sym_comment] = STATE(430), + [431] = { + [sym_comment] = STATE(431), [anon_sym_export] = ACTIONS(1278), [anon_sym_alias] = ACTIONS(1278), [anon_sym_let] = ACTIONS(1278), @@ -126288,100 +126409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, [432] = { [sym_comment] = STATE(432), [anon_sym_export] = ACTIONS(1282), @@ -126477,136 +126504,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), }, [433] = { + [sym_cell_path] = STATE(732), + [sym_path] = STATE(456), [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), [anon_sym_DOT2] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [434] = { [sym_comment] = STATE(434), [anon_sym_export] = ACTIONS(1288), [anon_sym_alias] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1290), [anon_sym_let] = ACTIONS(1288), [anon_sym_let_DASHenv] = ACTIONS(1288), [anon_sym_mut] = ACTIONS(1288), [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1054), [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), + [anon_sym_LF] = ACTIONS(1056), [anon_sym_def] = ACTIONS(1288), [anon_sym_export_DASHenv] = ACTIONS(1288), [anon_sym_extern] = ACTIONS(1288), [anon_sym_module] = ACTIONS(1288), [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_COMMA] = ACTIONS(1294), [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(1288), [anon_sym_error] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_list] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1296), [anon_sym_break] = ACTIONS(1288), [anon_sym_continue] = ACTIONS(1288), [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1296), [anon_sym_loop] = ACTIONS(1288), + [anon_sym_make] = ACTIONS(1288), [anon_sym_while] = ACTIONS(1288), [anon_sym_do] = ACTIONS(1288), [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1296), [anon_sym_DOT] = ACTIONS(1288), + [anon_sym_DOT2] = ACTIONS(1299), [anon_sym_try] = ACTIONS(1288), + [anon_sym_catch] = ACTIONS(1288), [anon_sym_return] = ACTIONS(1288), [anon_sym_source] = ACTIONS(1288), [anon_sym_source_DASHenv] = ACTIONS(1288), @@ -126614,37 +126646,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1288), [anon_sym_hide_DASHenv] = ACTIONS(1288), [anon_sym_overlay] = ACTIONS(1288), + [anon_sym_new] = ACTIONS(1288), [anon_sym_as] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1290), + [anon_sym_DASH_EQ] = ACTIONS(1290), + [anon_sym_STAR_EQ] = ACTIONS(1290), + [anon_sym_SLASH_EQ] = ACTIONS(1290), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1290), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), [aux_sym__val_number_decimal_token1] = ACTIONS(1288), [aux_sym__val_number_token1] = ACTIONS(1288), [aux_sym__val_number_token2] = ACTIONS(1288), @@ -126652,1900 +126685,2270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1288), [aux_sym__val_number_token5] = ACTIONS(1288), [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), [anon_sym_DQUOTE] = ACTIONS(1288), [sym__str_single_quotes] = ACTIONS(1288), [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), + [aux_sym__record_key_token2] = ACTIONS(1288), [anon_sym_POUND] = ACTIONS(105), }, [435] = { [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1292), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), + [ts_builtin_sym_end] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, [436] = { [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [437] = { [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, [438] = { [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_COLON] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [aux_sym__record_key_token2] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [439] = { [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1301), [anon_sym_POUND] = ACTIONS(105), }, [440] = { - [sym_path] = STATE(664), [sym_comment] = STATE(440), - [aux_sym_cell_path_repeat1] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [441] = { [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [442] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(457), [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1003), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [443] = { [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [444] = { [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(871), [anon_sym_POUND] = ACTIONS(105), }, [445] = { [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, [446] = { - [sym_cell_path] = STATE(706), - [sym_path] = STATE(457), [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(105), }, [447] = { [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [448] = { [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [449] = { [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [450] = { + [sym_cell_path] = STATE(680), + [sym_path] = STATE(456), [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(105), }, [451] = { + [sym_cell_path] = STATE(738), + [sym_path] = STATE(456), [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(919), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(105), }, [452] = { - [sym_cell_path] = STATE(657), - [sym_path] = STATE(425), [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(105), }, [453] = { + [sym_cell_path] = STATE(721), + [sym_path] = STATE(456), [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(105), }, [454] = { [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, [455] = { + [sym_cell_path] = STATE(719), + [sym_path] = STATE(456), [sym_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [456] = { + [sym_path] = STATE(643), + [sym_comment] = STATE(456), + [aux_sym_cell_path_repeat1] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(105), + }, + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(105), + }, + [458] = { + [sym_comment] = STATE(458), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(105), + }, + [459] = { + [sym_comment] = STATE(459), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -128579,7 +128982,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1054), [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -128590,7 +128992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1336), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -128626,6 +129027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1054), [aux_sym__val_number_token5] = ACTIONS(1054), [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1323), + [sym_duration_unit] = ACTIONS(1325), [anon_sym_0b] = ACTIONS(1054), [anon_sym_0o] = ACTIONS(1054), [anon_sym_0x] = ACTIONS(1054), @@ -128638,8 +129041,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [456] = { - [sym_comment] = STATE(456), + [460] = { + [sym_comment] = STATE(460), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_POUND] = ACTIONS(105), + }, + [461] = { + [sym_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -128656,10 +129154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1054), [anon_sym_LBRACK] = ACTIONS(1054), [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_error] = ACTIONS(1054), [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), [anon_sym_DASH] = ACTIONS(1054), [anon_sym_break] = ACTIONS(1054), [anon_sym_continue] = ACTIONS(1054), @@ -128671,9 +129169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(1327), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -128682,9 +129179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1054), [anon_sym_hide_DASHenv] = ACTIONS(1054), [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1336), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -128732,1891 +129229,666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [457] = { - [sym_path] = STATE(664), - [sym_comment] = STATE(457), - [aux_sym_cell_path_repeat1] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(105), - }, - [458] = { - [sym_path] = STATE(664), - [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_list] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_make] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_catch] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_new] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_PLUS_EQ] = ACTIONS(1189), - [anon_sym_DASH_EQ] = ACTIONS(1189), - [anon_sym_STAR_EQ] = ACTIONS(1189), - [anon_sym_SLASH_EQ] = ACTIONS(1189), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [aux_sym__record_key_token2] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, - [460] = { - [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_list] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_make] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1222), - [anon_sym_DASH_EQ] = ACTIONS(1222), - [anon_sym_STAR_EQ] = ACTIONS(1222), - [anon_sym_SLASH_EQ] = ACTIONS(1222), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [aux_sym__record_key_token2] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), - }, - [461] = { - [sym_comment] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, [462] = { [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_list] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_make] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [aux_sym__record_key_token2] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [463] = { [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [464] = { [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [465] = { [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, [466] = { [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, [467] = { [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), [anon_sym_POUND] = ACTIONS(105), }, [468] = { [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [469] = { [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(105), - }, - [470] = { - [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(105), - }, - [471] = { - [sym_cell_path] = STATE(693), - [sym_path] = STATE(457), - [sym_comment] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(105), - }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(105), - }, - [474] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(457), - [sym_comment] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(105), - }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_alias] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_let_DASHenv] = ACTIONS(1362), - [anon_sym_mut] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1362), - [anon_sym_export_DASHenv] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_COLON] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1362), - [anon_sym_list] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_make] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1373), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_catch] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_source] = ACTIONS(1362), - [anon_sym_source_DASHenv] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_hide_DASHenv] = ACTIONS(1362), - [anon_sym_overlay] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_PLUS_EQ] = ACTIONS(1364), - [anon_sym_DASH_EQ] = ACTIONS(1364), - [anon_sym_STAR_EQ] = ACTIONS(1364), - [anon_sym_SLASH_EQ] = ACTIONS(1364), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1364), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [aux_sym__val_number_token4] = ACTIONS(1362), - [aux_sym__val_number_token5] = ACTIONS(1362), - [aux_sym__val_number_token6] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [aux_sym__record_key_token2] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(105), - }, - [476] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(105), - }, - [477] = { - [sym_cell_path] = STATE(688), - [sym_path] = STATE(457), - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(911), [anon_sym_export] = ACTIONS(909), [anon_sym_alias] = ACTIONS(909), [anon_sym_let] = ACTIONS(909), @@ -130633,9 +129905,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(909), [anon_sym_LBRACK] = ACTIONS(909), [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), [anon_sym_DOLLAR] = ACTIONS(909), [anon_sym_error] = ACTIONS(909), [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_DASH] = ACTIONS(909), [anon_sym_break] = ACTIONS(909), [anon_sym_continue] = ACTIONS(909), @@ -130647,8 +129921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(909), [anon_sym_match] = ACTIONS(909), [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(1267), [anon_sym_try] = ACTIONS(909), [anon_sym_return] = ACTIONS(909), [anon_sym_source] = ACTIONS(909), @@ -130657,6 +129931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(909), [anon_sym_hide_DASHenv] = ACTIONS(909), [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), [anon_sym_STAR] = ACTIONS(909), [anon_sym_where] = ACTIONS(909), [anon_sym_STAR_STAR] = ACTIONS(909), @@ -130706,7221 +129981,7879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, + [470] = { + [sym_path] = STATE(643), + [sym_comment] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [471] = { + [sym_comment] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [472] = { + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(105), + }, + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(105), + }, + [474] = { + [sym_comment] = STATE(474), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [475] = { + [sym_comment] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(105), + }, + [476] = { + [sym_comment] = STATE(476), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(105), + }, + [477] = { + [sym_comment] = STATE(477), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(105), + }, [478] = { - [sym_cell_path] = STATE(692), - [sym_path] = STATE(457), + [sym_path] = STATE(643), [sym_comment] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), + [aux_sym_cell_path_repeat1] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, [479] = { [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_COLON] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_list] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_make] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_catch] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_new] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [aux_sym__record_key_token2] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [480] = { [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [481] = { [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1381), - [sym_duration_unit] = ACTIONS(1383), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [482] = { + [sym_path] = STATE(643), [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), + [aux_sym_cell_path_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1365), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, [483] = { - [sym_cell_path] = STATE(721), - [sym_path] = STATE(457), [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [484] = { - [sym_cell_path] = STATE(681), - [sym_path] = STATE(457), [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1372), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [485] = { [sym_comment] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1372), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [486] = { [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(105), }, [487] = { + [sym_cell_path] = STATE(647), + [sym_path] = STATE(478), [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1378), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [488] = { [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(105), }, [489] = { [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(105), }, [490] = { [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_not] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [491] = { [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_not] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [492] = { [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [493] = { [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [494] = { [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1431), - [anon_sym_bit_DASHor] = ACTIONS(1433), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_xor] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1439), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [495] = { [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1431), - [anon_sym_bit_DASHor] = ACTIONS(1433), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_xor] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [496] = { [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1431), - [anon_sym_bit_DASHor] = ACTIONS(1433), - [anon_sym_and] = ACTIONS(1435), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [497] = { [sym_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [498] = { [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1431), - [anon_sym_bit_DASHor] = ACTIONS(1433), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [499] = { [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [500] = { [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1431), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [501] = { [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_COLON] = ACTIONS(1259), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1259), - [anon_sym_DASH_EQ] = ACTIONS(1259), - [anon_sym_STAR_EQ] = ACTIONS(1259), - [anon_sym_SLASH_EQ] = ACTIONS(1259), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [aux_sym__record_key_token2] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [502] = { [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [503] = { [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [504] = { [sym_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [505] = { [sym_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1191), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [506] = { [sym_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1224), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [507] = { [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [508] = { - [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [509] = { - [sym_path] = STATE(664), - [sym_comment] = STATE(509), - [aux_sym_cell_path_repeat1] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [508] = { + [sym_comment] = STATE(508), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [509] = { + [sym_comment] = STATE(509), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [510] = { [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [511] = { [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [512] = { [sym_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1230), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [514] = { [sym_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_where] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), + [anon_sym_bit_DASHxor] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [515] = { [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), + [anon_sym_bit_DASHxor] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1413), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [516] = { [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1413), + [anon_sym_and] = ACTIONS(1415), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [517] = { [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), + [anon_sym_bit_DASHxor] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1413), + [anon_sym_and] = ACTIONS(1415), + [anon_sym_xor] = ACTIONS(1417), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [518] = { [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_SLASH_SLASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_bit_DASHshl] = ACTIONS(1403), + [anon_sym_bit_DASHshr] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT2] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_not_DASHin] = ACTIONS(1405), + [anon_sym_starts_DASHwith] = ACTIONS(1405), + [anon_sym_ends_DASHwith] = ACTIONS(1405), + [anon_sym_EQ_TILDE] = ACTIONS(1407), + [anon_sym_BANG_TILDE] = ACTIONS(1407), + [anon_sym_bit_DASHand] = ACTIONS(1409), [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1413), + [anon_sym_and] = ACTIONS(1415), + [anon_sym_xor] = ACTIONS(1417), + [anon_sym_or] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [519] = { + [sym_path] = STATE(643), [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [aux_sym_cell_path_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [520] = { [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1419), - [anon_sym_starts_DASHwith] = ACTIONS(1419), - [anon_sym_ends_DASHwith] = ACTIONS(1419), - [anon_sym_EQ_TILDE] = ACTIONS(1427), - [anon_sym_BANG_TILDE] = ACTIONS(1427), - [anon_sym_bit_DASHand] = ACTIONS(1429), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(105), }, [521] = { [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, [522] = { [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(105), }, [523] = { [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [524] = { [sym_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [525] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(456), [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [526] = { + [sym_cell_path] = STATE(710), + [sym_path] = STATE(456), [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, [527] = { + [sym_cell_path] = STATE(723), + [sym_path] = STATE(456), [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [528] = { [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_bit_DASHshl] = ACTIONS(1425), - [anon_sym_bit_DASHshr] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_LT2] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [529] = { [sym_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [530] = { [sym_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [531] = { [sym_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [532] = { [sym_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1311), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [533] = { [sym_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(105), }, [534] = { [sym_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(1359), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [535] = { [sym_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [536] = { [sym_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1363), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [537] = { [sym_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(983), [anon_sym_POUND] = ACTIONS(105), }, [538] = { [sym_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1331), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [539] = { [sym_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [540] = { - [sym_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), [anon_sym_EQ_EQ] = ACTIONS(1441), [anon_sym_BANG_EQ] = ACTIONS(1441), [anon_sym_LT2] = ACTIONS(1441), [anon_sym_LT_EQ] = ACTIONS(1441), [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [540] = { + [sym_comment] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [541] = { [sym_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [542] = { [sym_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1457), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1335), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, [543] = { [sym_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), [anon_sym_EQ_EQ] = ACTIONS(1441), [anon_sym_BANG_EQ] = ACTIONS(1441), [anon_sym_LT2] = ACTIONS(1441), [anon_sym_LT_EQ] = ACTIONS(1441), [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1457), - [anon_sym_bit_DASHor] = ACTIONS(1459), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [544] = { [sym_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1457), - [anon_sym_bit_DASHor] = ACTIONS(1459), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1453), [anon_sym_POUND] = ACTIONS(105), }, [545] = { [sym_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1457), - [anon_sym_bit_DASHor] = ACTIONS(1459), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_xor] = ACTIONS(1463), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [546] = { [sym_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1445), - [anon_sym_starts_DASHwith] = ACTIONS(1445), - [anon_sym_ends_DASHwith] = ACTIONS(1445), - [anon_sym_EQ_TILDE] = ACTIONS(1453), - [anon_sym_BANG_TILDE] = ACTIONS(1453), - [anon_sym_bit_DASHand] = ACTIONS(1455), - [anon_sym_bit_DASHxor] = ACTIONS(1457), - [anon_sym_bit_DASHor] = ACTIONS(1459), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_xor] = ACTIONS(1463), - [anon_sym_or] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [547] = { [sym_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [548] = { [sym_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1407), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_not] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1305), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, [549] = { [sym_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [550] = { [sym_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [551] = { [sym_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1387), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [552] = { [sym_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, [553] = { [sym_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1327), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [554] = { [sym_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(105), - }, - [555] = { - [sym_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -137937,6 +137870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1054), [anon_sym_LBRACK] = ACTIONS(1054), [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_error] = ACTIONS(1054), [anon_sym_GT] = ACTIONS(1054), @@ -137951,8 +137885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(1459), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -137963,7 +137898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1467), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -138011,2147 +137945,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [556] = { - [sym_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), + [555] = { + [sym_comment] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1451), - [anon_sym_bit_DASHshr] = ACTIONS(1451), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), [anon_sym_EQ_EQ] = ACTIONS(1441), [anon_sym_BANG_EQ] = ACTIONS(1441), [anon_sym_LT2] = ACTIONS(1441), [anon_sym_LT_EQ] = ACTIONS(1441), [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1461), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [556] = { + [sym_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [557] = { [sym_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1461), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [558] = { [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, [559] = { [sym_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1461), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1465), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [560] = { [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [561] = { [sym_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1461), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1465), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [562] = { [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [563] = { [sym_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_bit_DASHshl] = ACTIONS(1449), + [anon_sym_bit_DASHshr] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_not_DASHin] = ACTIONS(1451), + [anon_sym_starts_DASHwith] = ACTIONS(1451), + [anon_sym_ends_DASHwith] = ACTIONS(1451), + [anon_sym_EQ_TILDE] = ACTIONS(1455), + [anon_sym_BANG_TILDE] = ACTIONS(1455), + [anon_sym_bit_DASHand] = ACTIONS(1457), + [anon_sym_bit_DASHxor] = ACTIONS(1461), + [anon_sym_bit_DASHor] = ACTIONS(1463), + [anon_sym_and] = ACTIONS(1465), + [anon_sym_xor] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [564] = { [sym_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [565] = { [sym_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(105), }, [566] = { [sym_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, [567] = { [sym_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(105), }, [568] = { [sym_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(105), - }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [570] = { - [sym_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [572] = { - [sym_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [573] = { - [sym_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [574] = { - [sym_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [575] = { - [sym_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [576] = { - [sym_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(105), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(105), - }, - [578] = { - [sym_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_as] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(105), - }, - [579] = { - [sym_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(1284), [anon_sym_export] = ACTIONS(1282), [anon_sym_alias] = ACTIONS(1282), @@ -140243,1868 +139247,3263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, + [569] = { + [sym_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [570] = { + [sym_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [571] = { + [sym_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [572] = { + [sym_comment] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(1339), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(105), + }, + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), + }, + [575] = { + [sym_comment] = STATE(575), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(105), + }, + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [577] = { + [sym_comment] = STATE(577), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [578] = { + [sym_comment] = STATE(578), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(105), + }, + [579] = { + [sym_comment] = STATE(579), + [ts_builtin_sym_end] = ACTIONS(1347), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(105), + }, [580] = { [sym_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [581] = { [sym_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, [582] = { [sym_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [583] = { [sym_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(105), }, [584] = { [sym_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1383), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(105), }, [585] = { [sym_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [586] = { [sym_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(105), }, [587] = { [sym_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [588] = { [sym_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [589] = { [sym_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [590] = { [sym_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [591] = { [sym_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(1409), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [592] = { [sym_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [593] = { [sym_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [594] = { [sym_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(1280), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [sym_cmd_identifier] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1278), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_where] = ACTIONS(1278), - [anon_sym_STAR_STAR] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1278), - [anon_sym_mod] = ACTIONS(1278), - [anon_sym_SLASH_SLASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_bit_DASHshl] = ACTIONS(1278), - [anon_sym_bit_DASHshr] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT2] = ACTIONS(1278), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_not_DASHin] = ACTIONS(1278), - [anon_sym_starts_DASHwith] = ACTIONS(1278), - [anon_sym_ends_DASHwith] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1278), - [anon_sym_BANG_TILDE] = ACTIONS(1278), - [anon_sym_bit_DASHand] = ACTIONS(1278), - [anon_sym_bit_DASHxor] = ACTIONS(1278), - [anon_sym_bit_DASHor] = ACTIONS(1278), - [anon_sym_and] = ACTIONS(1278), - [anon_sym_xor] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(1278), - [anon_sym_not] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1278), - [aux_sym__val_number_token5] = ACTIONS(1278), - [aux_sym__val_number_token6] = ACTIONS(1278), - [anon_sym_0b] = ACTIONS(1278), - [anon_sym_0o] = ACTIONS(1278), - [anon_sym_0x] = ACTIONS(1278), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [595] = { [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [596] = { [sym_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(1403), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_not] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [598] = { [sym_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [599] = { [sym_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [600] = { [sym_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [601] = { + [sym_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [602] = { + [sym_comment] = STATE(602), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [603] = { + [sym_comment] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [604] = { + [sym_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(1276), [anon_sym_export] = ACTIONS(1274), [anon_sym_alias] = ACTIONS(1274), @@ -142196,3603 +142595,2587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, - [602] = { - [sym_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [603] = { - [sym_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [604] = { - [sym_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(1395), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(105), - }, [605] = { [sym_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [606] = { [sym_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1280), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_alias] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_let_DASHenv] = ACTIONS(1278), + [anon_sym_mut] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [sym_cmd_identifier] = ACTIONS(1278), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_def] = ACTIONS(1278), + [anon_sym_export_DASHenv] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1278), + [anon_sym_error] = ACTIONS(1278), + [anon_sym_GT] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_in] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_source] = ACTIONS(1278), + [anon_sym_source_DASHenv] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_hide] = ACTIONS(1278), + [anon_sym_hide_DASHenv] = ACTIONS(1278), + [anon_sym_overlay] = ACTIONS(1278), + [anon_sym_as] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_where] = ACTIONS(1278), + [anon_sym_STAR_STAR] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_SLASH] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_bit_DASHshl] = ACTIONS(1278), + [anon_sym_bit_DASHshr] = ACTIONS(1278), + [anon_sym_EQ_EQ] = ACTIONS(1278), + [anon_sym_BANG_EQ] = ACTIONS(1278), + [anon_sym_LT2] = ACTIONS(1278), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_not_DASHin] = ACTIONS(1278), + [anon_sym_starts_DASHwith] = ACTIONS(1278), + [anon_sym_ends_DASHwith] = ACTIONS(1278), + [anon_sym_EQ_TILDE] = ACTIONS(1278), + [anon_sym_BANG_TILDE] = ACTIONS(1278), + [anon_sym_bit_DASHand] = ACTIONS(1278), + [anon_sym_bit_DASHxor] = ACTIONS(1278), + [anon_sym_bit_DASHor] = ACTIONS(1278), + [anon_sym_and] = ACTIONS(1278), + [anon_sym_xor] = ACTIONS(1278), + [anon_sym_or] = ACTIONS(1278), + [anon_sym_not] = ACTIONS(1278), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1278), + [aux_sym__val_number_token2] = ACTIONS(1278), + [aux_sym__val_number_token3] = ACTIONS(1278), + [aux_sym__val_number_token4] = ACTIONS(1278), + [aux_sym__val_number_token5] = ACTIONS(1278), + [aux_sym__val_number_token6] = ACTIONS(1278), + [anon_sym_0b] = ACTIONS(1278), + [anon_sym_0o] = ACTIONS(1278), + [anon_sym_0x] = ACTIONS(1278), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym__str_single_quotes] = ACTIONS(1278), + [sym__str_back_ticks] = ACTIONS(1278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, [607] = { [sym_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [608] = { [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(105), }, [609] = { [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, [610] = { [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, [611] = { [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(105), }, [612] = { [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1493), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(105), + }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(105), }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), [anon_sym_POUND] = ACTIONS(105), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1493), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [620] = { [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [623] = { [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(105), + }, + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1477), [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), [anon_sym_EQ_EQ] = ACTIONS(1477), [anon_sym_BANG_EQ] = ACTIONS(1477), [anon_sym_LT2] = ACTIONS(1477), [anon_sym_LT_EQ] = ACTIONS(1477), [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1493), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1497), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [625] = { [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [626] = { [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [627] = { [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [628] = { [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1493), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1497), - [anon_sym_xor] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [629] = { [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [630] = { [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1489), - [anon_sym_BANG_TILDE] = ACTIONS(1489), - [anon_sym_bit_DASHand] = ACTIONS(1491), - [anon_sym_bit_DASHxor] = ACTIONS(1493), - [anon_sym_bit_DASHor] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1497), - [anon_sym_xor] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [631] = { [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [632] = { [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, [633] = { [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1481), - [anon_sym_starts_DASHwith] = ACTIONS(1481), - [anon_sym_ends_DASHwith] = ACTIONS(1481), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [636] = { - [sym_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(105), - }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_not] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(105), - }, - [640] = { - [sym_comment] = STATE(640), [anon_sym_export] = ACTIONS(1274), [anon_sym_alias] = ACTIONS(1274), [anon_sym_let] = ACTIONS(1274), @@ -145883,100 +145266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [641] = { - [sym_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(105), - }, - [642] = { - [sym_comment] = STATE(642), + [634] = { + [sym_comment] = STATE(634), [anon_sym_export] = ACTIONS(1278), [anon_sym_alias] = ACTIONS(1278), [anon_sym_let] = ACTIONS(1278), @@ -146067,2584 +145358,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_bit_DASHshl] = ACTIONS(1487), - [anon_sym_bit_DASHshr] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT2] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(105), - }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(105), - }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(105), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(105), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_not] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(105), - }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [654] = { - [sym_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(105), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(105), - }, - [657] = { - [sym_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(105), - }, - [659] = { - [sym_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(1191), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(105), - }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(105), - }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(105), - }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(105), - }, - [664] = { - [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1224), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), - }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [666] = { - [sym_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(105), - }, - [667] = { - [sym_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(105), - }, - [669] = { - [sym_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1230), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(105), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(105), }, - [671] = { - [sym_comment] = STATE(671), + [637] = { + [sym_comment] = STATE(637), [anon_sym_export] = ACTIONS(1282), [anon_sym_alias] = ACTIONS(1282), [anon_sym_let] = ACTIONS(1282), @@ -148735,5294 +145634,6238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(105), - }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(105), }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [642] = { + [sym_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), + [643] = { + [sym_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [644] = { + [sym_comment] = STATE(644), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1489), [anon_sym_POUND] = ACTIONS(105), }, - [680] = { - [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, - [681] = { - [sym_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, - [682] = { - [sym_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [647] = { + [sym_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, - [683] = { - [sym_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1523), - [anon_sym_bit_DASHor] = ACTIONS(1525), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_xor] = ACTIONS(1529), - [anon_sym_or] = ACTIONS(1531), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [648] = { + [sym_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(1175), [anon_sym_POUND] = ACTIONS(105), }, - [684] = { - [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1523), - [anon_sym_bit_DASHor] = ACTIONS(1525), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_xor] = ACTIONS(1529), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [685] = { - [sym_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [650] = { + [sym_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT2] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [686] = { - [sym_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1523), - [anon_sym_bit_DASHor] = ACTIONS(1525), - [anon_sym_and] = ACTIONS(1527), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [687] = { - [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [688] = { - [sym_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [689] = { - [sym_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1523), - [anon_sym_bit_DASHor] = ACTIONS(1525), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [690] = { - [sym_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [691] = { - [sym_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1523), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [692] = { - [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [693] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1327), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(105), }, - [694] = { - [sym_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [695] = { - [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [696] = { - [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [697] = { - [sym_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, - [698] = { - [sym_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [699] = { - [sym_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [700] = { - [sym_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [701] = { - [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [702] = { - [sym_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1497), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [703] = { - [sym_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [704] = { - [sym_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1497), + [anon_sym_bit_DASHor] = ACTIONS(1499), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [705] = { - [sym_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1521), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, - [706] = { - [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [707] = { - [sym_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1497), + [anon_sym_bit_DASHor] = ACTIONS(1499), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [708] = { - [sym_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [709] = { - [sym_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1519), - [anon_sym_BANG_TILDE] = ACTIONS(1519), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1497), + [anon_sym_bit_DASHor] = ACTIONS(1499), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1503), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [710] = { - [sym_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [711] = { - [sym_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1517), - [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_bit_DASHshl] = ACTIONS(1485), + [anon_sym_bit_DASHshr] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT2] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_not_DASHin] = ACTIONS(1491), + [anon_sym_starts_DASHwith] = ACTIONS(1491), + [anon_sym_ends_DASHwith] = ACTIONS(1491), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1495), + [anon_sym_bit_DASHxor] = ACTIONS(1497), + [anon_sym_bit_DASHor] = ACTIONS(1499), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1503), + [anon_sym_or] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [712] = { - [sym_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, - [713] = { - [sym_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [714] = { - [sym_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(1387), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [679] = { + [sym_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, - [715] = { - [sym_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [680] = { + [sym_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(1363), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, - [716] = { - [sym_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [sym_cmd_identifier] = ACTIONS(1282), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_where] = ACTIONS(1282), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1282), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_not] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), + [681] = { + [sym_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [717] = { - [sym_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [682] = { + [sym_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, - [718] = { - [sym_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [683] = { + [sym_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [719] = { - [sym_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [684] = { + [sym_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, - [720] = { - [sym_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [685] = { + [sym_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [721] = { - [sym_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [686] = { + [sym_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [722] = { - [sym_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [687] = { + [sym_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, - [723] = { - [sym_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), + [688] = { + [sym_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_where] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(105), + }, + [689] = { + [sym_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(105), + }, + [690] = { + [sym_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), + }, + [691] = { + [sym_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(105), + }, + [692] = { + [sym_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(105), + }, + [693] = { + [sym_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [694] = { + [sym_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), [anon_sym_bit_DASHshl] = ACTIONS(1517), [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1511), - [anon_sym_starts_DASHwith] = ACTIONS(1511), - [anon_sym_ends_DASHwith] = ACTIONS(1511), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1523), + [anon_sym_bit_DASHor] = ACTIONS(1525), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [724] = { - [sym_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [695] = { + [sym_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [725] = { - [sym_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [696] = { + [sym_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(1305), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, - [726] = { - [sym_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), + [697] = { + [sym_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(1331), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, - [727] = { - [sym_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [698] = { + [sym_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [728] = { - [sym_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_where] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1509), + [699] = { + [sym_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(105), + }, + [700] = { + [sym_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [701] = { + [sym_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), [anon_sym_bit_DASHshl] = ACTIONS(1517), [anon_sym_bit_DASHshr] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_not] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1523), + [anon_sym_bit_DASHor] = ACTIONS(1525), + [anon_sym_and] = ACTIONS(1527), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [729] = { - [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1409), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), + [702] = { + [sym_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, - [730] = { - [sym_comment] = STATE(730), + [703] = { + [sym_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1523), + [anon_sym_bit_DASHor] = ACTIONS(1525), + [anon_sym_and] = ACTIONS(1527), + [anon_sym_xor] = ACTIONS(1529), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [704] = { + [sym_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(1335), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(105), + }, + [705] = { + [sym_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(1339), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(105), + }, + [706] = { + [sym_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(1276), [anon_sym_export] = ACTIONS(1274), [anon_sym_alias] = ACTIONS(1274), @@ -154112,1189 +151955,3284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [731] = { - [sym_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1280), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [sym_cmd_identifier] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1278), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_where] = ACTIONS(1278), - [anon_sym_STAR_STAR] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1278), - [anon_sym_mod] = ACTIONS(1278), - [anon_sym_SLASH_SLASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_bit_DASHshl] = ACTIONS(1278), - [anon_sym_bit_DASHshr] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT2] = ACTIONS(1278), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_not_DASHin] = ACTIONS(1278), - [anon_sym_starts_DASHwith] = ACTIONS(1278), - [anon_sym_ends_DASHwith] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1278), - [anon_sym_BANG_TILDE] = ACTIONS(1278), - [anon_sym_bit_DASHand] = ACTIONS(1278), - [anon_sym_bit_DASHxor] = ACTIONS(1278), - [anon_sym_bit_DASHor] = ACTIONS(1278), - [anon_sym_and] = ACTIONS(1278), - [anon_sym_xor] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(1278), - [anon_sym_not] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1278), - [aux_sym__val_number_token5] = ACTIONS(1278), - [aux_sym__val_number_token6] = ACTIONS(1278), - [anon_sym_0b] = ACTIONS(1278), - [anon_sym_0o] = ACTIONS(1278), - [anon_sym_0x] = ACTIONS(1278), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), + [707] = { + [sym_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), + }, + [708] = { + [sym_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(1383), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(105), + }, + [709] = { + [sym_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [710] = { + [sym_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), + }, + [711] = { + [sym_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [712] = { + [sym_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(105), + }, + [713] = { + [sym_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [714] = { + [sym_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(105), + }, + [715] = { + [sym_comment] = STATE(715), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(105), + }, + [716] = { + [sym_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(105), + }, + [717] = { + [sym_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(105), + }, + [718] = { + [sym_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1347), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(105), + }, + [719] = { + [sym_comment] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [sym_cmd_identifier] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1284), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_where] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_bit_DASHshl] = ACTIONS(1282), + [anon_sym_bit_DASHshr] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT2] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_not_DASHin] = ACTIONS(1282), + [anon_sym_starts_DASHwith] = ACTIONS(1282), + [anon_sym_ends_DASHwith] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_BANG_TILDE] = ACTIONS(1282), + [anon_sym_bit_DASHand] = ACTIONS(1282), + [anon_sym_bit_DASHxor] = ACTIONS(1282), + [anon_sym_bit_DASHor] = ACTIONS(1282), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_xor] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1282), + [anon_sym_not] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(105), + }, + [720] = { + [sym_comment] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(105), + }, + [721] = { + [sym_comment] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [722] = { + [sym_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_where] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_not] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(105), + }, + [723] = { + [sym_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [724] = { + [sym_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [725] = { + [sym_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [726] = { + [sym_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [727] = { + [sym_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [728] = { + [sym_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [729] = { + [sym_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [730] = { + [sym_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [731] = { + [sym_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [732] = { [sym_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(1403), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_not] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, [733] = { [sym_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [734] = { [sym_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1359), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [735] = { [sym_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [736] = { [sym_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [737] = { [sym_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [738] = { [sym_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [739] = { [sym_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(1407), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_where] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_not] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [740] = { [sym_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(1395), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_where] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1523), + [anon_sym_bit_DASHor] = ACTIONS(1525), + [anon_sym_and] = ACTIONS(1527), + [anon_sym_xor] = ACTIONS(1529), + [anon_sym_or] = ACTIONS(1531), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [741] = { [sym_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_where] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_bit_DASHshl] = ACTIONS(1517), + [anon_sym_bit_DASHshr] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_not_DASHin] = ACTIONS(1515), + [anon_sym_starts_DASHwith] = ACTIONS(1515), + [anon_sym_ends_DASHwith] = ACTIONS(1515), + [anon_sym_EQ_TILDE] = ACTIONS(1519), + [anon_sym_BANG_TILDE] = ACTIONS(1519), + [anon_sym_bit_DASHand] = ACTIONS(1521), + [anon_sym_bit_DASHxor] = ACTIONS(1523), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [742] = { [sym_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(1311), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1280), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_alias] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_let_DASHenv] = ACTIONS(1278), + [anon_sym_mut] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [sym_cmd_identifier] = ACTIONS(1278), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_def] = ACTIONS(1278), + [anon_sym_export_DASHenv] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1278), + [anon_sym_error] = ACTIONS(1278), + [anon_sym_GT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_in] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_source] = ACTIONS(1278), + [anon_sym_source_DASHenv] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_hide] = ACTIONS(1278), + [anon_sym_hide_DASHenv] = ACTIONS(1278), + [anon_sym_overlay] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_where] = ACTIONS(1278), + [anon_sym_STAR_STAR] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_SLASH] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_bit_DASHshl] = ACTIONS(1278), + [anon_sym_bit_DASHshr] = ACTIONS(1278), + [anon_sym_EQ_EQ] = ACTIONS(1278), + [anon_sym_BANG_EQ] = ACTIONS(1278), + [anon_sym_LT2] = ACTIONS(1278), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_not_DASHin] = ACTIONS(1278), + [anon_sym_starts_DASHwith] = ACTIONS(1278), + [anon_sym_ends_DASHwith] = ACTIONS(1278), + [anon_sym_EQ_TILDE] = ACTIONS(1278), + [anon_sym_BANG_TILDE] = ACTIONS(1278), + [anon_sym_bit_DASHand] = ACTIONS(1278), + [anon_sym_bit_DASHxor] = ACTIONS(1278), + [anon_sym_bit_DASHor] = ACTIONS(1278), + [anon_sym_and] = ACTIONS(1278), + [anon_sym_xor] = ACTIONS(1278), + [anon_sym_or] = ACTIONS(1278), + [anon_sym_not] = ACTIONS(1278), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1278), + [aux_sym__val_number_token2] = ACTIONS(1278), + [aux_sym__val_number_token3] = ACTIONS(1278), + [aux_sym__val_number_token4] = ACTIONS(1278), + [aux_sym__val_number_token5] = ACTIONS(1278), + [aux_sym__val_number_token6] = ACTIONS(1278), + [anon_sym_0b] = ACTIONS(1278), + [anon_sym_0o] = ACTIONS(1278), + [anon_sym_0x] = ACTIONS(1278), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym__str_single_quotes] = ACTIONS(1278), + [sym__str_back_ticks] = ACTIONS(1278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, [743] = { [sym_comment] = STATE(743), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_list] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_make] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_else] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_catch] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_new] = ACTIONS(815), - [anon_sym_as] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1533), - [aux_sym__immediate_decimal_token2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [sym__entry_separator] = ACTIONS(817), - [aux_sym__record_key_token2] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [744] = { - [sym_comment] = STATE(744), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -155363,8 +155301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(1539), + [aux_sym__immediate_decimal_token1] = ACTIONS(1533), + [aux_sym__immediate_decimal_token2] = ACTIONS(1535), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(807), [aux_sym__val_number_token2] = ACTIONS(807), @@ -155382,8 +155320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [745] = { - [sym_comment] = STATE(745), + [744] = { + [sym_comment] = STATE(744), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -155396,8 +155334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(815), [anon_sym_module] = ACTIONS(815), [anon_sym_use] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_list] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -155413,7 +155351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_else] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_try] = ACTIONS(815), @@ -155428,47 +155366,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(815), [anon_sym_as] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), [anon_sym_SLASH] = ACTIONS(815), [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_SLASH_SLASH] = ACTIONS(815), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_bit_DASHshl] = ACTIONS(815), [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), [anon_sym_not_DASHin] = ACTIONS(815), [anon_sym_starts_DASHwith] = ACTIONS(815), [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(817), - [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), [anon_sym_bit_DASHand] = ACTIONS(815), [anon_sym_bit_DASHxor] = ACTIONS(815), [anon_sym_bit_DASHor] = ACTIONS(815), [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1541), - [aux_sym__immediate_decimal_token2] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(1537), + [aux_sym__immediate_decimal_token2] = ACTIONS(1539), [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(817), - [aux_sym__val_number_token2] = ACTIONS(817), - [aux_sym__val_number_token3] = ACTIONS(817), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(817), + [aux_sym__val_number_token5] = ACTIONS(815), [aux_sym__val_number_token6] = ACTIONS(815), [sym_filesize_unit] = ACTIONS(815), [sym_duration_unit] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym__str_single_quotes] = ACTIONS(817), - [sym__str_back_ticks] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [sym__entry_separator] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(105), + }, + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1541), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [sym__entry_separator] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), }, [746] = { [sym_comment] = STATE(746), @@ -155540,8 +155567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1545), - [aux_sym__immediate_decimal_token2] = ACTIONS(1547), + [aux_sym__immediate_decimal_token1] = ACTIONS(1543), + [aux_sym__immediate_decimal_token2] = ACTIONS(1545), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(809), [aux_sym__val_number_token2] = ACTIONS(809), @@ -155560,11 +155587,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [747] = { [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1539), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [sym__entry_separator] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [748] = { + [sym_comment] = STATE(748), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_list] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_make] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_else] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_try] = ACTIONS(827), + [anon_sym_catch] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_new] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(1550), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [sym__entry_separator] = ACTIONS(829), + [aux_sym__record_key_token2] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(1554), + [aux_sym_unquoted_token6] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(105), + }, + [749] = { + [sym_comment] = STATE(749), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_list] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_make] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_new] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1561), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [sym__entry_separator] = ACTIONS(848), + [aux_sym__record_key_token2] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [750] = { + [sym_comment] = STATE(750), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), [anon_sym_const] = ACTIONS(807), [sym_cmd_identifier] = ACTIONS(807), [anon_sym_def] = ACTIONS(807), @@ -155628,8 +155919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1549), - [aux_sym__immediate_decimal_token2] = ACTIONS(1551), + [aux_sym__immediate_decimal_token2] = ACTIONS(1535), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(807), [aux_sym__val_number_token2] = ACTIONS(807), @@ -155644,10 +155934,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(807), [sym__entry_separator] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [748] = { - [sym_comment] = STATE(748), + [751] = { + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(1563), + [aux_sym__immediate_decimal_token2] = ACTIONS(1565), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(817), + [aux_sym__val_number_token2] = ACTIONS(817), + [aux_sym__val_number_token3] = ACTIONS(817), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(817), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym__str_single_quotes] = ACTIONS(817), + [sym__str_back_ticks] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(3), + }, + [752] = { + [sym_comment] = STATE(752), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -155716,8 +156095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1553), - [aux_sym__immediate_decimal_token2] = ACTIONS(1555), + [aux_sym__immediate_decimal_token1] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(1569), [aux_sym__val_number_decimal_token1] = ACTIONS(815), [aux_sym__val_number_token1] = ACTIONS(815), [aux_sym__val_number_token2] = ACTIONS(815), @@ -155734,96 +156113,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [749] = { - [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_list] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_make] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_else] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [sym__entry_separator] = ACTIONS(825), - [aux_sym__record_key_token2] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(1561), - [aux_sym_unquoted_token6] = ACTIONS(1563), + [753] = { + [sym_comment] = STATE(753), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1539), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [sym__entry_separator] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [750] = { - [sym_comment] = STATE(750), + [754] = { + [sym_comment] = STATE(754), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -155855,7 +156234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1565), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_catch] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), @@ -155892,7 +156271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1539), + [aux_sym__immediate_decimal_token1] = ACTIONS(1571), + [aux_sym__immediate_decimal_token2] = ACTIONS(1573), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(807), [aux_sym__val_number_token2] = ACTIONS(807), @@ -155907,11 +156287,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(807), [sym__entry_separator] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [751] = { - [sym_comment] = STATE(751), + [755] = { + [sym_comment] = STATE(755), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_list] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_make] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_new] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1578), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [sym__entry_separator] = ACTIONS(848), + [aux_sym__record_key_token2] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [756] = { + [sym_comment] = STATE(756), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -155943,7 +156409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(815), [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(1580), [anon_sym_try] = ACTIONS(815), [anon_sym_catch] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), @@ -155980,7 +156446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1535), + [aux_sym__immediate_decimal_token2] = ACTIONS(1569), [aux_sym__val_number_decimal_token1] = ACTIONS(815), [aux_sym__val_number_token1] = ACTIONS(815), [aux_sym__val_number_token2] = ACTIONS(815), @@ -155995,187 +156461,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(815), [sym__entry_separator] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [752] = { - [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1568), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [sym__entry_separator] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [757] = { + [sym_comment] = STATE(757), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_list] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_make] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_else] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_catch] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_new] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [sym__entry_separator] = ACTIONS(809), + [aux_sym__record_key_token2] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [753] = { - [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_list] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_make] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1570), - [anon_sym_try] = ACTIONS(835), - [anon_sym_catch] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1573), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [sym__entry_separator] = ACTIONS(837), - [aux_sym__record_key_token2] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [758] = { + [sym_comment] = STATE(758), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [sym__entry_separator] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(105), }, - [754] = { - [sym_comment] = STATE(754), + [759] = { + [sym_comment] = STATE(759), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [sym__entry_separator] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [760] = { + [sym_comment] = STATE(760), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_list] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_make] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_catch] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_new] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [sym__entry_separator] = ACTIONS(896), + [aux_sym__record_key_token2] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [761] = { + [sym_comment] = STATE(761), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1565), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(817), + [aux_sym__val_number_token2] = ACTIONS(817), + [aux_sym__val_number_token3] = ACTIONS(817), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(817), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym__str_single_quotes] = ACTIONS(817), + [sym__str_back_ticks] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(3), + }, + [762] = { + [sym_comment] = STATE(762), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -156244,7 +156968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1539), + [aux_sym__immediate_decimal_token2] = ACTIONS(1573), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(807), [aux_sym__val_number_token2] = ACTIONS(807), @@ -156259,11 +156983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(807), [sym__entry_separator] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [755] = { - [sym_comment] = STATE(755), + [763] = { + [sym_comment] = STATE(763), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -156332,8 +157055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(1577), + [aux_sym__immediate_decimal_token1] = ACTIONS(1587), + [aux_sym__immediate_decimal_token2] = ACTIONS(1589), [aux_sym__val_number_decimal_token1] = ACTIONS(815), [aux_sym__val_number_token1] = ACTIONS(817), [aux_sym__val_number_token2] = ACTIONS(817), @@ -156349,8 +157072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(3), }, - [756] = { - [sym_comment] = STATE(756), + [764] = { + [sym_comment] = STATE(764), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -156382,7 +157105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1579), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_catch] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), @@ -156419,7 +157142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1547), + [aux_sym__immediate_decimal_token2] = ACTIONS(1545), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(809), [aux_sym__val_number_token2] = ACTIONS(809), @@ -156436,95 +157159,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(3), }, - [757] = { - [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [sym__entry_separator] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), + [765] = { + [sym_comment] = STATE(765), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_error] = ACTIONS(807), + [anon_sym_list] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_make] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_else] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_catch] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_new] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(809), + [anon_sym_BANG_TILDE] = ACTIONS(809), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(809), + [aux_sym__val_number_token2] = ACTIONS(809), + [aux_sym__val_number_token3] = ACTIONS(809), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(809), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym__str_single_quotes] = ACTIONS(809), + [sym__str_back_ticks] = ACTIONS(809), + [aux_sym__record_key_token2] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(3), }, - [758] = { - [sym_comment] = STATE(758), + [766] = { + [sym_comment] = STATE(766), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -156593,7 +157316,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1555), [aux_sym__val_number_decimal_token1] = ACTIONS(815), [aux_sym__val_number_token1] = ACTIONS(815), [aux_sym__val_number_token2] = ACTIONS(815), @@ -156608,184 +157330,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(815), [sym__entry_separator] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [759] = { - [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [sym__entry_separator] = ACTIONS(891), - [aux_sym__record_key_token2] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), + [767] = { + [sym_comment] = STATE(767), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(857), + [aux_sym__val_number_token2] = ACTIONS(857), + [aux_sym__val_number_token3] = ACTIONS(857), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(857), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(3), }, - [760] = { - [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_list] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_make] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1582), - [anon_sym_try] = ACTIONS(835), - [anon_sym_catch] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1585), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [sym__entry_separator] = ACTIONS(837), - [aux_sym__record_key_token2] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), + [768] = { + [sym_comment] = STATE(768), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_error] = ACTIONS(846), + [anon_sym_list] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_make] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_new] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(848), + [anon_sym_BANG_TILDE] = ACTIONS(848), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1600), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(848), + [aux_sym__val_number_token2] = ACTIONS(848), + [aux_sym__val_number_token3] = ACTIONS(848), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(848), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym__str_single_quotes] = ACTIONS(848), + [sym__str_back_ticks] = ACTIONS(848), + [aux_sym__record_key_token2] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(3), }, - [761] = { - [sym_comment] = STATE(761), + [769] = { + [sym_comment] = STATE(769), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -156817,7 +157540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(815), [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(1602), [anon_sym_try] = ACTIONS(815), [anon_sym_catch] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), @@ -156854,7 +157577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1543), + [aux_sym__immediate_decimal_token2] = ACTIONS(1565), [aux_sym__val_number_decimal_token1] = ACTIONS(815), [aux_sym__val_number_token1] = ACTIONS(817), [aux_sym__val_number_token2] = ACTIONS(817), @@ -156871,182 +157594,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(3), }, - [762] = { - [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(1587), - [aux_sym__immediate_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(809), - [aux_sym__val_number_token2] = ACTIONS(809), - [aux_sym__val_number_token3] = ACTIONS(809), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(809), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym__str_single_quotes] = ACTIONS(809), - [sym__str_back_ticks] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), + [770] = { + [sym_comment] = STATE(770), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [sym__entry_separator] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [771] = { + [sym_comment] = STATE(771), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(827), + [anon_sym_list] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_make] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_else] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(827), + [anon_sym_catch] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_new] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(1605), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(829), + [aux_sym__val_number_token2] = ACTIONS(829), + [aux_sym__val_number_token3] = ACTIONS(829), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(829), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [aux_sym__record_key_token2] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(1609), + [aux_sym_unquoted_token6] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(3), }, - [763] = { - [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [sym__entry_separator] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), + [772] = { + [sym_comment] = STATE(772), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1613), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [sym__entry_separator] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [764] = { - [sym_comment] = STATE(764), + [773] = { + [sym_cell_path] = STATE(883), + [sym_path] = STATE(799), + [sym_comment] = STATE(773), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_list] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_make] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_else] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(909), + [anon_sym_catch] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_new] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [sym__entry_separator] = ACTIONS(911), + [aux_sym__record_key_token2] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), + }, + [774] = { + [sym_comment] = STATE(774), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_list] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_make] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_catch] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_new] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [sym__entry_separator] = ACTIONS(896), + [aux_sym__record_key_token2] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [775] = { + [sym_comment] = STATE(775), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(817), + [aux_sym__val_number_token2] = ACTIONS(817), + [aux_sym__val_number_token3] = ACTIONS(817), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(817), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym__str_single_quotes] = ACTIONS(817), + [sym__str_back_ticks] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(3), + }, + [776] = { + [sym_comment] = STATE(776), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -157129,11 +158197,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(815), [sym__entry_separator] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [765] = { - [sym_comment] = STATE(765), + [777] = { + [sym_cell_path] = STATE(868), + [sym_path] = STATE(799), + [sym_comment] = STATE(777), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_list] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [sym__entry_separator] = ACTIONS(931), + [aux_sym__record_key_token2] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [778] = { + [sym_comment] = STATE(778), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -157202,7 +158355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1547), + [aux_sym__immediate_decimal_token2] = ACTIONS(1593), [aux_sym__val_number_decimal_token1] = ACTIONS(807), [aux_sym__val_number_token1] = ACTIONS(809), [aux_sym__val_number_token2] = ACTIONS(809), @@ -157216,706 +158369,1214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(809), [sym__str_back_ticks] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(3), }, - [766] = { - [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(846), - [aux_sym__val_number_token2] = ACTIONS(846), - [aux_sym__val_number_token3] = ACTIONS(846), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(846), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [779] = { + [sym_cell_path] = STATE(909), + [sym_path] = STATE(799), + [sym_comment] = STATE(779), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_list] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_make] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [sym__entry_separator] = ACTIONS(927), + [aux_sym__record_key_token2] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [780] = { + [sym_comment] = STATE(780), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(857), + [aux_sym__val_number_token2] = ACTIONS(857), + [aux_sym__val_number_token3] = ACTIONS(857), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(857), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(3), }, - [767] = { - [sym_comment] = STATE(767), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_error] = ACTIONS(823), - [anon_sym_list] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_make] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_else] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(825), - [anon_sym_BANG_TILDE] = ACTIONS(825), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(825), - [aux_sym__val_number_token2] = ACTIONS(825), - [aux_sym__val_number_token3] = ACTIONS(825), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(825), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [aux_sym__record_key_token2] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(1599), - [aux_sym_unquoted_token6] = ACTIONS(1601), + [781] = { + [sym_comment] = STATE(781), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_error] = ACTIONS(846), + [anon_sym_list] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_make] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_new] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(848), + [anon_sym_BANG_TILDE] = ACTIONS(848), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(1622), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(848), + [aux_sym__val_number_token2] = ACTIONS(848), + [aux_sym__val_number_token3] = ACTIONS(848), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(848), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym__str_single_quotes] = ACTIONS(848), + [sym__str_back_ticks] = ACTIONS(848), + [aux_sym__record_key_token2] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(3), }, - [768] = { - [sym_comment] = STATE(768), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [sym__entry_separator] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), + [782] = { + [sym_comment] = STATE(782), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [sym__entry_separator] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, - [769] = { - [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [sym__entry_separator] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [783] = { + [sym_comment] = STATE(783), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_error] = ACTIONS(815), + [anon_sym_list] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_make] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(1626), + [anon_sym_try] = ACTIONS(815), + [anon_sym_catch] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_new] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(817), + [aux_sym__val_number_token2] = ACTIONS(817), + [aux_sym__val_number_token3] = ACTIONS(817), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(817), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym__str_single_quotes] = ACTIONS(817), + [sym__str_back_ticks] = ACTIONS(817), + [aux_sym__record_key_token2] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(3), + }, + [784] = { + [sym_cell_path] = STATE(903), + [sym_path] = STATE(799), + [sym_comment] = STATE(784), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_list] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_make] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(959), + [anon_sym_catch] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_new] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [sym__entry_separator] = ACTIONS(961), + [aux_sym__record_key_token2] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, - [770] = { - [sym_comment] = STATE(770), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [sym__entry_separator] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), + [785] = { + [sym_cell_path] = STATE(834), + [sym_path] = STATE(798), + [sym_comment] = STATE(785), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_list] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_make] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(933), + [anon_sym_catch] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_new] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [sym__entry_separator] = ACTIONS(935), + [aux_sym__record_key_token2] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, - [771] = { - [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_error] = ACTIONS(835), - [anon_sym_list] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_make] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1606), - [anon_sym_try] = ACTIONS(835), - [anon_sym_catch] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(837), - [anon_sym_BANG_TILDE] = ACTIONS(837), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(837), - [aux_sym__val_number_token2] = ACTIONS(837), - [aux_sym__val_number_token3] = ACTIONS(837), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(837), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [sym__str_single_quotes] = ACTIONS(837), - [sym__str_back_ticks] = ACTIONS(837), - [aux_sym__record_key_token2] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(3), + [786] = { + [sym_cell_path] = STATE(835), + [sym_path] = STATE(798), + [sym_comment] = STATE(786), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1632), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [aux_sym__record_key_token2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), }, - [772] = { - [sym_comment] = STATE(772), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1611), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [sym__entry_separator] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1613), + [787] = { + [sym_cell_path] = STATE(851), + [sym_path] = STATE(799), + [sym_comment] = STATE(787), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_list] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_make] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(933), + [anon_sym_catch] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_new] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [sym__entry_separator] = ACTIONS(935), + [aux_sym__record_key_token2] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, - [773] = { - [sym_comment] = STATE(773), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [sym__entry_separator] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), + [788] = { + [sym_path] = STATE(836), + [sym_comment] = STATE(788), + [aux_sym_cell_path_repeat1] = STATE(802), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_list] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_make] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [sym__entry_separator] = ACTIONS(975), + [aux_sym__record_key_token2] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, - [774] = { - [sym_comment] = STATE(774), + [789] = { + [sym_cell_path] = STATE(884), + [sym_path] = STATE(799), + [sym_comment] = STATE(789), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_list] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_make] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_else] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(913), + [anon_sym_catch] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_new] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [sym__entry_separator] = ACTIONS(915), + [aux_sym__record_key_token2] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(105), + }, + [790] = { + [sym_comment] = STATE(790), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [sym__entry_separator] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(105), + }, + [791] = { + [sym_cell_path] = STATE(910), + [sym_path] = STATE(799), + [sym_comment] = STATE(791), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [aux_sym__record_key_token2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [792] = { + [sym_path] = STATE(836), + [sym_comment] = STATE(792), + [aux_sym_cell_path_repeat1] = STATE(802), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_list] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_make] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [sym__entry_separator] = ACTIONS(975), + [aux_sym__record_key_token2] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [793] = { + [sym_comment] = STATE(793), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -157928,8 +159589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(807), [anon_sym_module] = ACTIONS(807), [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), [anon_sym_error] = ACTIONS(807), [anon_sym_list] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -157945,7 +159606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_else] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -157960,24 +159621,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(807), [anon_sym_as] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), [anon_sym_SLASH] = ACTIONS(807), [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(809), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_bit_DASHshl] = ACTIONS(807), [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), [anon_sym_not_DASHin] = ACTIONS(807), [anon_sym_starts_DASHwith] = ACTIONS(807), [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(809), + [anon_sym_BANG_TILDE] = ACTIONS(809), [anon_sym_bit_DASHand] = ACTIONS(807), [anon_sym_bit_DASHxor] = ACTIONS(807), [anon_sym_bit_DASHor] = ACTIONS(807), @@ -157985,369 +159646,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(809), + [aux_sym__val_number_token2] = ACTIONS(809), + [aux_sym__val_number_token3] = ACTIONS(809), [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(809), [aux_sym__val_number_token6] = ACTIONS(807), [sym_filesize_unit] = ACTIONS(807), [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [sym__entry_separator] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym__str_single_quotes] = ACTIONS(809), + [sym__str_back_ticks] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [775] = { - [sym_comment] = STATE(775), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(846), - [aux_sym__val_number_token2] = ACTIONS(846), - [aux_sym__val_number_token3] = ACTIONS(846), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(846), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(3), }, - [776] = { - [sym_comment] = STATE(776), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [sym__entry_separator] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), + [794] = { + [sym_comment] = STATE(794), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_list] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_make] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(1635), + [anon_sym_try] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_new] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [sym__entry_separator] = ACTIONS(951), + [aux_sym__record_key_token2] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(105), }, - [777] = { - [sym_cell_path] = STATE(894), - [sym_path] = STATE(779), - [sym_comment] = STATE(777), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_list] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_make] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [sym__entry_separator] = ACTIONS(1035), - [aux_sym__record_key_token2] = ACTIONS(1033), + [795] = { + [sym_cell_path] = STATE(921), + [sym_path] = STATE(799), + [sym_comment] = STATE(795), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_list] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_make] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_else] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(917), + [anon_sym_catch] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_new] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [sym__entry_separator] = ACTIONS(919), + [aux_sym__record_key_token2] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(105), }, - [778] = { - [sym_cell_path] = STATE(915), - [sym_path] = STATE(779), - [sym_comment] = STATE(778), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_list] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_make] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_catch] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [sym__entry_separator] = ACTIONS(1003), - [aux_sym__record_key_token2] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(105), + [796] = { + [sym_comment] = STATE(796), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(857), + [aux_sym__val_number_token2] = ACTIONS(857), + [aux_sym__val_number_token3] = ACTIONS(857), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(857), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(3), }, - [779] = { - [sym_path] = STATE(839), - [sym_comment] = STATE(779), - [aux_sym_cell_path_repeat1] = STATE(797), + [797] = { + [sym_comment] = STATE(797), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_error] = ACTIONS(894), + [anon_sym_list] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_make] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_catch] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_new] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(896), + [aux_sym__val_number_token2] = ACTIONS(896), + [aux_sym__val_number_token3] = ACTIONS(896), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(896), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym__str_single_quotes] = ACTIONS(896), + [sym__str_back_ticks] = ACTIONS(896), + [aux_sym__record_key_token2] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(3), + }, + [798] = { + [sym_path] = STATE(836), + [sym_comment] = STATE(798), + [aux_sym_cell_path_repeat1] = STATE(788), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -158379,7 +160040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1617), + [anon_sym_DOT2] = ACTIONS(1615), [anon_sym_try] = ACTIONS(903), [anon_sym_catch] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), @@ -158430,440 +160091,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [780] = { - [sym_cell_path] = STATE(889), - [sym_path] = STATE(779), - [sym_comment] = STATE(780), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [sym__entry_separator] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(105), - }, - [781] = { - [sym_cell_path] = STATE(861), - [sym_path] = STATE(779), - [sym_comment] = STATE(781), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [aux_sym__record_key_token2] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(105), - }, - [782] = { - [sym_cell_path] = STATE(847), - [sym_path] = STATE(785), - [sym_comment] = STATE(782), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_list] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_new] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [sym__entry_separator] = ACTIONS(981), - [aux_sym__record_key_token2] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [783] = { - [sym_comment] = STATE(783), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(891), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [aux_sym__record_key_token2] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), - }, - [784] = { - [sym_cell_path] = STATE(841), - [sym_path] = STATE(785), - [sym_comment] = STATE(784), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_list] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_make] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(997), - [anon_sym_catch] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [sym__entry_separator] = ACTIONS(999), - [aux_sym__record_key_token2] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [785] = { - [sym_path] = STATE(839), - [sym_comment] = STATE(785), - [aux_sym_cell_path_repeat1] = STATE(799), + [799] = { + [sym_path] = STATE(836), + [sym_comment] = STATE(799), + [aux_sym_cell_path_repeat1] = STATE(792), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -158895,7 +160126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(1617), + [anon_sym_DOT2] = ACTIONS(1615), [anon_sym_try] = ACTIONS(903), [anon_sym_catch] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), @@ -158946,8 +160177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [786] = { - [sym_comment] = STATE(786), + [800] = { + [sym_comment] = STATE(800), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -158960,8 +160191,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(807), [anon_sym_module] = ACTIONS(807), [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_list] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -158977,9 +160208,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_else] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(1625), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), [anon_sym_catch] = ACTIONS(807), [anon_sym_return] = ACTIONS(807), @@ -158992,392 +160223,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(807), [anon_sym_as] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), [anon_sym_SLASH] = ACTIONS(807), [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(809), + [anon_sym_SLASH_SLASH] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_bit_DASHshl] = ACTIONS(807), [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), [anon_sym_not_DASHin] = ACTIONS(807), [anon_sym_starts_DASHwith] = ACTIONS(807), [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), [anon_sym_bit_DASHand] = ACTIONS(807), [anon_sym_bit_DASHxor] = ACTIONS(807), [anon_sym_bit_DASHor] = ACTIONS(807), [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1589), [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(809), - [aux_sym__val_number_token2] = ACTIONS(809), - [aux_sym__val_number_token3] = ACTIONS(809), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(809), + [aux_sym__val_number_token5] = ACTIONS(807), [aux_sym__val_number_token6] = ACTIONS(807), [sym_filesize_unit] = ACTIONS(807), [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym__str_single_quotes] = ACTIONS(809), - [sym__str_back_ticks] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [sym__entry_separator] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(3), - }, - [787] = { - [sym_comment] = STATE(787), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1630), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [sym__entry_separator] = ACTIONS(1007), - [aux_sym__record_key_token2] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1632), [anon_sym_POUND] = ACTIONS(105), }, - [788] = { - [sym_cell_path] = STATE(906), - [sym_path] = STATE(779), - [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_list] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_make] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(997), - [anon_sym_catch] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [sym__entry_separator] = ACTIONS(999), - [aux_sym__record_key_token2] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), + [801] = { + [sym_comment] = STATE(801), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(879), + [aux_sym__val_number_token2] = ACTIONS(879), + [aux_sym__val_number_token3] = ACTIONS(879), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(879), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [sym__str_single_quotes] = ACTIONS(879), + [sym__str_back_ticks] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), }, - [789] = { - [sym_cell_path] = STATE(918), - [sym_path] = STATE(779), - [sym_comment] = STATE(789), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_list] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_new] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [sym__entry_separator] = ACTIONS(969), - [aux_sym__record_key_token2] = ACTIONS(967), + [802] = { + [sym_path] = STATE(836), + [sym_comment] = STATE(802), + [aux_sym_cell_path_repeat1] = STATE(802), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_list] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_new] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [sym__entry_separator] = ACTIONS(944), + [aux_sym__record_key_token2] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, - [790] = { - [sym_comment] = STATE(790), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(809), - [aux_sym__val_number_token2] = ACTIONS(809), - [aux_sym__val_number_token3] = ACTIONS(809), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(809), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym__str_single_quotes] = ACTIONS(809), - [sym__str_back_ticks] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(3), + [803] = { + [sym_comment] = STATE(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [sym__entry_separator] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), }, - [791] = { - [sym_comment] = STATE(791), + [804] = { + [sym_comment] = STATE(804), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -159390,8 +160535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(815), [anon_sym_module] = ACTIONS(815), [anon_sym_use] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), [anon_sym_error] = ACTIONS(815), [anon_sym_list] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -159407,7 +160552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_else] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_try] = ACTIONS(815), @@ -159422,24 +160567,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(815), [anon_sym_as] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_SLASH] = ACTIONS(815), [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_bit_DASHshl] = ACTIONS(815), [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), [anon_sym_not_DASHin] = ACTIONS(815), [anon_sym_starts_DASHwith] = ACTIONS(815), [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), [anon_sym_bit_DASHand] = ACTIONS(815), [anon_sym_bit_DASHxor] = ACTIONS(815), [anon_sym_bit_DASHor] = ACTIONS(815), @@ -159447,195 +160592,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(817), + [aux_sym__val_number_token2] = ACTIONS(817), + [aux_sym__val_number_token3] = ACTIONS(817), [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(817), [aux_sym__val_number_token6] = ACTIONS(815), [sym_filesize_unit] = ACTIONS(815), [sym_duration_unit] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [sym__entry_separator] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym__str_single_quotes] = ACTIONS(817), + [sym__str_back_ticks] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(3), }, - [792] = { - [sym_comment] = STATE(792), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_error] = ACTIONS(835), - [anon_sym_list] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_make] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(835), - [anon_sym_catch] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(837), - [anon_sym_BANG_TILDE] = ACTIONS(837), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1637), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(837), - [aux_sym__val_number_token2] = ACTIONS(837), - [aux_sym__val_number_token3] = ACTIONS(837), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(837), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [sym__str_single_quotes] = ACTIONS(837), - [sym__str_back_ticks] = ACTIONS(837), - [aux_sym__record_key_token2] = ACTIONS(835), + [805] = { + [sym_cell_path] = STATE(933), + [sym_path] = STATE(812), + [sym_comment] = STATE(805), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_error] = ACTIONS(913), + [anon_sym_list] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_make] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_else] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(913), + [anon_sym_catch] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_new] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(915), + [aux_sym__val_number_token2] = ACTIONS(915), + [aux_sym__val_number_token3] = ACTIONS(915), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(915), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [sym__str_single_quotes] = ACTIONS(915), + [sym__str_back_ticks] = ACTIONS(915), + [aux_sym__record_key_token2] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(3), }, - [793] = { - [sym_comment] = STATE(793), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(863), - [anon_sym_BANG_EQ] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(863), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(863), - [anon_sym_BANG_TILDE] = ACTIONS(863), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(863), - [aux_sym__val_number_token2] = ACTIONS(863), - [aux_sym__val_number_token3] = ACTIONS(863), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(863), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym__str_single_quotes] = ACTIONS(863), - [sym__str_back_ticks] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1641), + [806] = { + [sym_cell_path] = STATE(901), + [sym_path] = STATE(826), + [sym_comment] = STATE(806), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(933), + [anon_sym_list] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_make] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(933), + [anon_sym_catch] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_new] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [aux_sym__record_key_token2] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(3), }, - [794] = { - [sym_comment] = STATE(794), + [807] = { + [sym_cell_path] = STATE(893), + [sym_path] = STATE(826), + [sym_comment] = STATE(807), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [aux_sym__record_key_token2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(3), + }, + [808] = { + [sym_comment] = STATE(808), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -159717,699 +160945,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(809), [sym__str_back_ticks] = ACTIONS(809), [aux_sym__record_key_token2] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(3), }, - [795] = { - [sym_comment] = STATE(795), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [sym__entry_separator] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1613), - [anon_sym_POUND] = ACTIONS(105), - }, - [796] = { - [sym_cell_path] = STATE(907), - [sym_path] = STATE(779), - [sym_comment] = STATE(796), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_list] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_new] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [sym__entry_separator] = ACTIONS(981), - [aux_sym__record_key_token2] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), + [809] = { + [sym_comment] = STATE(809), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_error] = ACTIONS(855), + [anon_sym_list] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_make] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_new] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(857), + [aux_sym__val_number_token2] = ACTIONS(857), + [aux_sym__val_number_token3] = ACTIONS(857), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(857), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [aux_sym__record_key_token2] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(3), }, - [797] = { - [sym_path] = STATE(839), - [sym_comment] = STATE(797), - [aux_sym_cell_path_repeat1] = STATE(804), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_list] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [sym__entry_separator] = ACTIONS(977), - [aux_sym__record_key_token2] = ACTIONS(975), + [810] = { + [sym_comment] = STATE(810), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1656), + [sym_duration_unit] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [aux_sym__record_key_token2] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [798] = { - [sym_comment] = STATE(798), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(846), - [aux_sym__val_number_token2] = ACTIONS(846), - [aux_sym__val_number_token3] = ACTIONS(846), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(846), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(3), - }, - [799] = { - [sym_path] = STATE(839), - [sym_comment] = STATE(799), - [aux_sym_cell_path_repeat1] = STATE(804), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_list] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [sym__entry_separator] = ACTIONS(977), - [aux_sym__record_key_token2] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [800] = { - [sym_comment] = STATE(800), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_error] = ACTIONS(815), - [anon_sym_list] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_make] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_else] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_catch] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_new] = ACTIONS(815), - [anon_sym_as] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(817), - [anon_sym_BANG_TILDE] = ACTIONS(817), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(817), - [aux_sym__val_number_token2] = ACTIONS(817), - [aux_sym__val_number_token3] = ACTIONS(817), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(817), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym__str_single_quotes] = ACTIONS(817), - [sym__str_back_ticks] = ACTIONS(817), - [aux_sym__record_key_token2] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(3), - }, - [801] = { - [sym_cell_path] = STATE(913), - [sym_path] = STATE(779), - [sym_comment] = STATE(801), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_list] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_new] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [sym__entry_separator] = ACTIONS(973), - [aux_sym__record_key_token2] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(105), - }, - [802] = { - [sym_comment] = STATE(802), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [sym__entry_separator] = ACTIONS(891), - [aux_sym__record_key_token2] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), - }, - [803] = { - [sym_comment] = STATE(803), + [811] = { + [sym_comment] = STATE(811), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -160491,184 +161200,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(817), [sym__str_back_ticks] = ACTIONS(817), [aux_sym__record_key_token2] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(3), - }, - [804] = { - [sym_path] = STATE(839), - [sym_comment] = STATE(804), - [aux_sym_cell_path_repeat1] = STATE(804), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [sym__entry_separator] = ACTIONS(1017), - [aux_sym__record_key_token2] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(105), - }, - [805] = { - [sym_path] = STATE(895), - [sym_comment] = STATE(805), - [aux_sym_cell_path_repeat1] = STATE(815), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_list] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(977), - [anon_sym_BANG_TILDE] = ACTIONS(977), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [aux_sym__record_key_token2] = ACTIONS(975), [anon_sym_POUND] = ACTIONS(3), }, - [806] = { - [sym_path] = STATE(895), - [sym_comment] = STATE(806), - [aux_sym_cell_path_repeat1] = STATE(805), + [812] = { + [sym_path] = STATE(853), + [sym_comment] = STATE(812), + [aux_sym_cell_path_repeat1] = STATE(829), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -160750,1625 +161287,1115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(3), }, - [807] = { - [sym_cell_path] = STATE(964), - [sym_path] = STATE(826), - [sym_comment] = STATE(807), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(971), - [anon_sym_list] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_new] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(973), - [anon_sym_BANG_TILDE] = ACTIONS(973), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [aux_sym__record_key_token2] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(3), - }, - [808] = { - [sym_cell_path] = STATE(976), - [sym_path] = STATE(826), - [sym_comment] = STATE(808), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_list] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_make] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1035), - [anon_sym_BANG_TILDE] = ACTIONS(1035), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1035), - [aux_sym__val_number_token2] = ACTIONS(1035), - [aux_sym__val_number_token3] = ACTIONS(1035), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1035), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1035), - [sym__str_single_quotes] = ACTIONS(1035), - [sym__str_back_ticks] = ACTIONS(1035), - [aux_sym__record_key_token2] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(3), - }, - [809] = { - [sym_comment] = STATE(809), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_list] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_make] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_else] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_catch] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_new] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [sym__entry_separator] = ACTIONS(1100), - [aux_sym__record_key_token2] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [810] = { - [sym_comment] = STATE(810), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_error] = ACTIONS(815), - [anon_sym_list] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_make] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_else] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_catch] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_new] = ACTIONS(815), - [anon_sym_as] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(817), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(817), - [anon_sym_BANG_TILDE] = ACTIONS(817), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(817), - [aux_sym__val_number_token2] = ACTIONS(817), - [aux_sym__val_number_token3] = ACTIONS(817), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(817), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym__str_single_quotes] = ACTIONS(817), - [sym__str_back_ticks] = ACTIONS(817), - [aux_sym__record_key_token2] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(3), - }, - [811] = { - [sym_comment] = STATE(811), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(846), - [anon_sym_error] = ACTIONS(844), - [anon_sym_list] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_make] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(846), - [anon_sym_BANG_TILDE] = ACTIONS(846), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(846), - [aux_sym__val_number_token2] = ACTIONS(846), - [aux_sym__val_number_token3] = ACTIONS(846), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(846), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [sym__str_single_quotes] = ACTIONS(846), - [sym__str_back_ticks] = ACTIONS(846), - [aux_sym__record_key_token2] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(3), - }, - [812] = { - [sym_comment] = STATE(812), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_error] = ACTIONS(807), - [anon_sym_list] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_make] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_else] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_catch] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(809), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(809), - [aux_sym__val_number_token2] = ACTIONS(809), - [aux_sym__val_number_token3] = ACTIONS(809), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(809), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [sym__str_single_quotes] = ACTIONS(809), - [sym__str_back_ticks] = ACTIONS(809), - [aux_sym__record_key_token2] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(3), - }, [813] = { + [sym_path] = STATE(853), [sym_comment] = STATE(813), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(891), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [aux_sym__record_key_token2] = ACTIONS(889), + [aux_sym_cell_path_repeat1] = STATE(832), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_error] = ACTIONS(973), + [anon_sym_list] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_make] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_BANG_TILDE] = ACTIONS(975), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(975), + [aux_sym__val_number_token2] = ACTIONS(975), + [aux_sym__val_number_token3] = ACTIONS(975), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym__str_single_quotes] = ACTIONS(975), + [sym__str_back_ticks] = ACTIONS(975), + [aux_sym__record_key_token2] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(3), }, [814] = { [sym_comment] = STATE(814), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(863), - [anon_sym_BANG_EQ] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(863), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(863), - [anon_sym_BANG_TILDE] = ACTIONS(863), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(863), - [aux_sym__val_number_token2] = ACTIONS(863), - [aux_sym__val_number_token3] = ACTIONS(863), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(863), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym__str_single_quotes] = ACTIONS(863), - [sym__str_back_ticks] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_error] = ACTIONS(894), + [anon_sym_list] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_make] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_catch] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_new] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(896), + [aux_sym__val_number_token2] = ACTIONS(896), + [aux_sym__val_number_token3] = ACTIONS(896), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(896), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym__str_single_quotes] = ACTIONS(896), + [sym__str_back_ticks] = ACTIONS(896), + [aux_sym__record_key_token2] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(3), }, [815] = { - [sym_path] = STATE(895), [sym_comment] = STATE(815), - [aux_sym_cell_path_repeat1] = STATE(815), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(1652), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ] = ACTIONS(1017), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1017), - [anon_sym_GT_EQ] = ACTIONS(1017), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1017), - [anon_sym_BANG_TILDE] = ACTIONS(1017), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1017), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [aux_sym__record_key_token2] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1660), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [aux_sym__record_key_token2] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), }, [816] = { [sym_comment] = STATE(816), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1655), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [sym__entry_separator] = ACTIONS(1056), - [aux_sym__record_key_token2] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [sym__entry_separator] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, [817] = { - [sym_cell_path] = STATE(928), - [sym_path] = STATE(826), [sym_comment] = STATE(817), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_list] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_make] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_catch] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1003), - [anon_sym_BANG_TILDE] = ACTIONS(1003), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1003), - [aux_sym__val_number_token2] = ACTIONS(1003), - [aux_sym__val_number_token3] = ACTIONS(1003), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1003), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1003), - [sym__str_single_quotes] = ACTIONS(1003), - [sym__str_back_ticks] = ACTIONS(1003), - [aux_sym__record_key_token2] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_list] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_make] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_catch] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_new] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [sym__entry_separator] = ACTIONS(1179), + [aux_sym__record_key_token2] = ACTIONS(1177), + [anon_sym_POUND] = ACTIONS(105), }, [818] = { - [sym_cell_path] = STATE(926), - [sym_path] = STATE(826), + [sym_cell_path] = STATE(950), + [sym_path] = STATE(812), [sym_comment] = STATE(818), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_error] = ACTIONS(959), + [anon_sym_list] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_make] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(959), [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [aux_sym__record_key_token2] = ACTIONS(990), + [anon_sym_try] = ACTIONS(959), + [anon_sym_catch] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_new] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(961), + [anon_sym_BANG_TILDE] = ACTIONS(961), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(961), + [aux_sym__val_number_token2] = ACTIONS(961), + [aux_sym__val_number_token3] = ACTIONS(961), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym__str_single_quotes] = ACTIONS(961), + [sym__str_back_ticks] = ACTIONS(961), + [aux_sym__record_key_token2] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1655), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [sym__entry_separator] = ACTIONS(1056), - [aux_sym__record_key_token2] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(1662), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(879), + [aux_sym__val_number_token2] = ACTIONS(879), + [aux_sym__val_number_token3] = ACTIONS(879), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(879), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [sym__str_single_quotes] = ACTIONS(879), + [sym__str_back_ticks] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), }, [820] = { + [sym_cell_path] = STATE(923), + [sym_path] = STATE(812), [sym_comment] = STATE(820), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(909), + [anon_sym_list] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_make] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_else] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(909), + [anon_sym_catch] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_new] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [aux_sym__record_key_token2] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(3), }, [821] = { - [sym_cell_path] = STATE(914), - [sym_path] = STATE(806), + [sym_cell_path] = STATE(984), + [sym_path] = STATE(812), [sym_comment] = STATE(821), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(997), - [anon_sym_list] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_make] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(997), - [anon_sym_catch] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [aux_sym__record_key_token2] = ACTIONS(997), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [aux_sym__record_key_token2] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(3), }, [822] = { + [sym_cell_path] = STATE(939), + [sym_path] = STATE(812), [sym_comment] = STATE(822), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [sym__entry_separator] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_error] = ACTIONS(925), + [anon_sym_list] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_make] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(927), + [aux_sym__val_number_token2] = ACTIONS(927), + [aux_sym__val_number_token3] = ACTIONS(927), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(927), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [aux_sym__record_key_token2] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(3), }, [823] = { - [sym_cell_path] = STATE(946), - [sym_path] = STATE(826), [sym_comment] = STATE(823), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_list] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_new] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_BANG_TILDE] = ACTIONS(981), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [aux_sym__record_key_token2] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [sym__entry_separator] = ACTIONS(1084), + [aux_sym__record_key_token2] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), }, [824] = { + [sym_cell_path] = STATE(934), + [sym_path] = STATE(812), [sym_comment] = STATE(824), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(1660), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1007), - [anon_sym_BANG_TILDE] = ACTIONS(1007), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1662), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1007), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [aux_sym__record_key_token2] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(1664), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_error] = ACTIONS(917), + [anon_sym_list] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_make] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_else] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(917), + [anon_sym_catch] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_new] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(919), + [aux_sym__val_number_token2] = ACTIONS(919), + [aux_sym__val_number_token3] = ACTIONS(919), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(919), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [sym__str_single_quotes] = ACTIONS(919), + [sym__str_back_ticks] = ACTIONS(919), + [aux_sym__record_key_token2] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(3), }, [825] = { + [sym_cell_path] = STATE(922), + [sym_path] = STATE(812), [sym_comment] = STATE(825), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(863), - [anon_sym_BANG_EQ] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(863), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(863), - [anon_sym_BANG_TILDE] = ACTIONS(863), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(863), - [aux_sym__val_number_token2] = ACTIONS(863), - [aux_sym__val_number_token3] = ACTIONS(863), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(863), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym__str_single_quotes] = ACTIONS(863), - [sym__str_back_ticks] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(1641), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(929), + [anon_sym_list] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [aux_sym__record_key_token2] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(3), }, [826] = { - [sym_path] = STATE(895), + [sym_path] = STATE(853), [sym_comment] = STATE(826), - [aux_sym_cell_path_repeat1] = STATE(831), + [aux_sym_cell_path_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -162451,1442 +162478,1610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [827] = { - [sym_cell_path] = STATE(972), - [sym_path] = STATE(826), [sym_comment] = STATE(827), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(909), - [anon_sym_list] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_make] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(909), - [anon_sym_catch] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_new] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(911), - [aux_sym__val_number_token2] = ACTIONS(911), - [aux_sym__val_number_token3] = ACTIONS(911), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(911), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [aux_sym__record_key_token2] = ACTIONS(909), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_error] = ACTIONS(949), + [anon_sym_list] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_make] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_new] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(951), + [anon_sym_BANG_TILDE] = ACTIONS(951), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(951), + [aux_sym__val_number_token2] = ACTIONS(951), + [aux_sym__val_number_token3] = ACTIONS(951), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(951), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym__str_single_quotes] = ACTIONS(951), + [sym__str_back_ticks] = ACTIONS(951), + [aux_sym__record_key_token2] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(1668), [anon_sym_POUND] = ACTIONS(3), }, [828] = { [sym_comment] = STATE(828), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1666), - [sym_duration_unit] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [sym__entry_separator] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1660), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [aux_sym__record_key_token2] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [829] = { - [sym_cell_path] = STATE(865), - [sym_path] = STATE(806), + [sym_path] = STATE(853), [sym_comment] = STATE(829), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_list] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(1670), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_new] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_BANG_TILDE] = ACTIONS(981), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [aux_sym__record_key_token2] = ACTIONS(979), + [aux_sym_cell_path_repeat1] = STATE(832), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_error] = ACTIONS(973), + [anon_sym_list] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_make] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_BANG_TILDE] = ACTIONS(975), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(975), + [aux_sym__val_number_token2] = ACTIONS(975), + [aux_sym__val_number_token3] = ACTIONS(975), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym__str_single_quotes] = ACTIONS(975), + [sym__str_back_ticks] = ACTIONS(975), + [aux_sym__record_key_token2] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(3), }, [830] = { - [sym_cell_path] = STATE(948), - [sym_path] = STATE(826), + [sym_cell_path] = STATE(949), + [sym_path] = STATE(812), [sym_comment] = STATE(830), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_error] = ACTIONS(997), - [anon_sym_list] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_make] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(997), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(933), + [anon_sym_list] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_make] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(933), [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(997), - [anon_sym_catch] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(999), - [anon_sym_BANG_TILDE] = ACTIONS(999), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(999), - [aux_sym__val_number_token2] = ACTIONS(999), - [aux_sym__val_number_token3] = ACTIONS(999), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(999), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym__str_single_quotes] = ACTIONS(999), - [sym__str_back_ticks] = ACTIONS(999), - [aux_sym__record_key_token2] = ACTIONS(997), + [anon_sym_try] = ACTIONS(933), + [anon_sym_catch] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_new] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [aux_sym__record_key_token2] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(3), }, [831] = { - [sym_path] = STATE(895), [sym_comment] = STATE(831), - [aux_sym_cell_path_repeat1] = STATE(815), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_list] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(977), - [anon_sym_BANG_TILDE] = ACTIONS(977), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [aux_sym__record_key_token2] = ACTIONS(975), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(879), + [aux_sym__val_number_token2] = ACTIONS(879), + [aux_sym__val_number_token3] = ACTIONS(879), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(879), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [sym__str_single_quotes] = ACTIONS(879), + [sym__str_back_ticks] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [832] = { + [sym_path] = STATE(853), [sym_comment] = STATE(832), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_list] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_make] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_catch] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [sym__entry_separator] = ACTIONS(1067), - [aux_sym__record_key_token2] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_cell_path_repeat1] = STATE(832), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_error] = ACTIONS(942), + [anon_sym_list] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_new] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(944), + [anon_sym_BANG_TILDE] = ACTIONS(944), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [aux_sym__record_key_token2] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(3), }, [833] = { - [sym_cell_path] = STATE(963), - [sym_path] = STATE(826), [sym_comment] = STATE(833), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(967), - [anon_sym_list] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_new] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(969), - [anon_sym_BANG_TILDE] = ACTIONS(969), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [aux_sym__record_key_token2] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_make] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [sym__entry_separator] = ACTIONS(1088), + [aux_sym__record_key_token2] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), }, [834] = { [sym_comment] = STATE(834), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1100), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_list] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_make] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_else] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_catch] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_new] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1100), - [anon_sym_STAR_STAR] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1100), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_BANG_TILDE] = ACTIONS(1100), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1100), - [aux_sym__val_number_token2] = ACTIONS(1100), - [aux_sym__val_number_token3] = ACTIONS(1100), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1100), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym__str_single_quotes] = ACTIONS(1100), - [sym__str_back_ticks] = ACTIONS(1100), - [aux_sym__record_key_token2] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_list] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_make] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_catch] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [sym__entry_separator] = ACTIONS(1219), + [aux_sym__record_key_token2] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), }, [835] = { [sym_comment] = STATE(835), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(1104), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1104), - [anon_sym_BANG_EQ] = ACTIONS(1104), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1104), - [anon_sym_BANG_TILDE] = ACTIONS(1104), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1104), - [aux_sym__val_number_token2] = ACTIONS(1104), - [aux_sym__val_number_token3] = ACTIONS(1104), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1104), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym__str_single_quotes] = ACTIONS(1104), - [sym__str_back_ticks] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [sym__entry_separator] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), }, [836] = { [sym_comment] = STATE(836), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_list] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_make] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [sym__entry_separator] = ACTIONS(1230), - [aux_sym__record_key_token2] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_list] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_make] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_catch] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_new] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [sym__entry_separator] = ACTIONS(1211), + [aux_sym__record_key_token2] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [837] = { [sym_comment] = STATE(837), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_list] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_make] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1067), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_catch] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_BANG_EQ] = ACTIONS(1067), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1067), - [anon_sym_BANG_TILDE] = ACTIONS(1067), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1067), - [aux_sym__val_number_token2] = ACTIONS(1067), - [aux_sym__val_number_token3] = ACTIONS(1067), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1067), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1067), - [sym__str_single_quotes] = ACTIONS(1067), - [sym__str_back_ticks] = ACTIONS(1067), - [aux_sym__record_key_token2] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_list] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_make] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_catch] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_new] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [sym__entry_separator] = ACTIONS(1215), + [aux_sym__record_key_token2] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(105), }, [838] = { [sym_comment] = STATE(838), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_error] = ACTIONS(861), - [anon_sym_list] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_make] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_try] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(863), - [anon_sym_BANG_EQ] = ACTIONS(863), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(863), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(863), - [anon_sym_BANG_TILDE] = ACTIONS(863), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(863), - [aux_sym__val_number_token2] = ACTIONS(863), - [aux_sym__val_number_token3] = ACTIONS(863), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(863), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym__str_single_quotes] = ACTIONS(863), - [sym__str_back_ticks] = ACTIONS(863), - [aux_sym__record_key_token2] = ACTIONS(861), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1072), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1072), + [anon_sym_BANG_TILDE] = ACTIONS(1072), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [aux_sym__record_key_token2] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(3), }, [839] = { [sym_comment] = STATE(839), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_list] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_make] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [sym__entry_separator] = ACTIONS(1224), - [aux_sym__record_key_token2] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1072), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1072), + [anon_sym_BANG_TILDE] = ACTIONS(1072), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1072), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [aux_sym__record_key_token2] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(3), }, [840] = { [sym_comment] = STATE(840), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_list] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_make] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_catch] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_new] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [sym__entry_separator] = ACTIONS(1191), - [aux_sym__record_key_token2] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1084), + [anon_sym_STAR_STAR] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1084), + [anon_sym_BANG_TILDE] = ACTIONS(1084), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1084), + [aux_sym__val_number_token2] = ACTIONS(1084), + [aux_sym__val_number_token3] = ACTIONS(1084), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1084), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym__str_single_quotes] = ACTIONS(1084), + [sym__str_back_ticks] = ACTIONS(1084), + [aux_sym__record_key_token2] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(3), }, [841] = { [sym_comment] = STATE(841), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [sym__entry_separator] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_make] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1088), + [anon_sym_STAR_STAR] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1088), + [anon_sym_BANG_TILDE] = ACTIONS(1088), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1088), + [aux_sym__val_number_token2] = ACTIONS(1088), + [aux_sym__val_number_token3] = ACTIONS(1088), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1088), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym__str_single_quotes] = ACTIONS(1088), + [sym__str_back_ticks] = ACTIONS(1088), + [aux_sym__record_key_token2] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(3), }, [842] = { [sym_comment] = STATE(842), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_list] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_make] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_else] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [sym__entry_separator] = ACTIONS(825), - [aux_sym__record_key_token2] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1563), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_list] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_make] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [sym__entry_separator] = ACTIONS(1253), + [aux_sym__record_key_token2] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [843] = { [sym_comment] = STATE(843), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1249), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [sym__entry_separator] = ACTIONS(1245), - [aux_sym__record_key_token2] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_list] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_make] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [sym__entry_separator] = ACTIONS(1193), + [aux_sym__record_key_token2] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(105), }, [844] = { [sym_comment] = STATE(844), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_error] = ACTIONS(877), + [anon_sym_list] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_make] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_else] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_try] = ACTIONS(877), + [anon_sym_catch] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_new] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(879), + [aux_sym__val_number_token2] = ACTIONS(879), + [aux_sym__val_number_token3] = ACTIONS(879), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(879), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [sym__str_single_quotes] = ACTIONS(879), + [sym__str_back_ticks] = ACTIONS(879), + [aux_sym__record_key_token2] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), + }, + [845] = { + [sym_comment] = STATE(845), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_list] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_make] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1179), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_catch] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_new] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1179), + [anon_sym_BANG_TILDE] = ACTIONS(1179), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1179), + [aux_sym__val_number_token2] = ACTIONS(1179), + [aux_sym__val_number_token3] = ACTIONS(1179), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1179), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym__str_single_quotes] = ACTIONS(1179), + [sym__str_back_ticks] = ACTIONS(1179), + [aux_sym__record_key_token2] = ACTIONS(1177), + [anon_sym_POUND] = ACTIONS(3), + }, + [846] = { + [sym_comment] = STATE(846), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -163899,8 +164094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1054), [anon_sym_module] = ACTIONS(1054), [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_error] = ACTIONS(1054), [anon_sym_list] = ACTIONS(1054), [anon_sym_GT] = ACTIONS(1054), @@ -163916,9 +164111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_else] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(1675), [anon_sym_try] = ACTIONS(1054), [anon_sym_catch] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), @@ -163931,25 +164126,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1679), - [anon_sym_STAR_STAR] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1056), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_bit_DASHshl] = ACTIONS(1054), [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), [anon_sym_not_DASHin] = ACTIONS(1054), [anon_sym_starts_DASHwith] = ACTIONS(1054), [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1056), - [anon_sym_BANG_TILDE] = ACTIONS(1056), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), [anon_sym_bit_DASHand] = ACTIONS(1054), [anon_sym_bit_DASHxor] = ACTIONS(1054), [anon_sym_bit_DASHor] = ACTIONS(1054), @@ -163957,104 +164151,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(1054), [anon_sym_or] = ACTIONS(1054), [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1056), + [aux_sym__val_number_token5] = ACTIONS(1054), [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), [aux_sym__record_key_token2] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(105), }, - [845] = { - [sym_comment] = STATE(845), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [sym__entry_separator] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), + [847] = { + [sym_comment] = STATE(847), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_list] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_make] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_else] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_catch] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_new] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [sym__entry_separator] = ACTIONS(829), + [aux_sym__record_key_token2] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(1556), [anon_sym_POUND] = ACTIONS(105), }, - [846] = { - [sym_comment] = STATE(846), + [848] = { + [sym_comment] = STATE(848), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -164085,8 +164280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), [anon_sym_try] = ACTIONS(1054), [anon_sym_catch] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), @@ -164099,7 +164293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(1679), [anon_sym_STAR_STAR] = ACTIONS(1056), [anon_sym_PLUS_PLUS] = ACTIONS(1056), [anon_sym_SLASH] = ACTIONS(1054), @@ -164131,2815 +164324,2649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1054), [aux_sym__val_number_token5] = ACTIONS(1056), [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(1679), + [sym_duration_unit] = ACTIONS(1681), [anon_sym_DQUOTE] = ACTIONS(1056), [sym__str_single_quotes] = ACTIONS(1056), [sym__str_back_ticks] = ACTIONS(1056), [aux_sym__record_key_token2] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), }, - [847] = { - [sym_comment] = STATE(847), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_list] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_make] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_catch] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [sym__entry_separator] = ACTIONS(1254), - [aux_sym__record_key_token2] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [848] = { - [sym_comment] = STATE(848), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1115), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(3), - }, [849] = { [sym_comment] = STATE(849), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_list] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_make] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [sym__entry_separator] = ACTIONS(1195), - [aux_sym__record_key_token2] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1681), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_list] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_make] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_catch] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [sym__entry_separator] = ACTIONS(1187), + [aux_sym__record_key_token2] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, [850] = { [sym_comment] = STATE(850), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1695), + [anon_sym_BANG_TILDE] = ACTIONS(1695), + [anon_sym_bit_DASHand] = ACTIONS(1697), + [anon_sym_bit_DASHxor] = ACTIONS(1699), + [anon_sym_bit_DASHor] = ACTIONS(1701), + [anon_sym_and] = ACTIONS(1703), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [851] = { [sym_comment] = STATE(851), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_list] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_make] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_catch] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [sym__entry_separator] = ACTIONS(1219), + [aux_sym__record_key_token2] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [852] = { [sym_comment] = STATE(852), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [853] = { [sym_comment] = STATE(853), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [sym__entry_separator] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_list] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_make] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_catch] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_new] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1211), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym__str_single_quotes] = ACTIONS(1211), + [sym__str_back_ticks] = ACTIONS(1211), + [aux_sym__record_key_token2] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(3), }, [854] = { [sym_comment] = STATE(854), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [855] = { [sym_comment] = STATE(855), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_list] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_make] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [sym__entry_separator] = ACTIONS(1399), - [aux_sym__record_key_token2] = ACTIONS(1397), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_make] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [sym__entry_separator] = ACTIONS(1088), + [aux_sym__record_key_token2] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [856] = { [sym_comment] = STATE(856), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [857] = { [sym_comment] = STATE(857), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_list] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_make] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_new] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [sym__entry_separator] = ACTIONS(1331), + [aux_sym__record_key_token2] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [858] = { [sym_comment] = STATE(858), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [sym__entry_separator] = ACTIONS(1409), - [aux_sym__record_key_token2] = ACTIONS(1247), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_list] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_make] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_else] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_catch] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_new] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [aux_sym__record_key_token2] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(1611), [anon_sym_POUND] = ACTIONS(105), }, [859] = { [sym_comment] = STATE(859), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_list] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_make] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_catch] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [sym__entry_separator] = ACTIONS(1323), - [aux_sym__record_key_token2] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [860] = { [sym_comment] = STATE(860), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_list] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_make] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_catch] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [sym__entry_separator] = ACTIONS(1319), - [aux_sym__record_key_token2] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_list] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_make] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_catch] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [sym__entry_separator] = ACTIONS(1431), + [aux_sym__record_key_token2] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [861] = { [sym_comment] = STATE(861), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_list] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_make] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [sym__entry_separator] = ACTIONS(1315), - [aux_sym__record_key_token2] = ACTIONS(1313), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_list] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_make] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_new] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [sym__entry_separator] = ACTIONS(1335), + [aux_sym__record_key_token2] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, [862] = { [sym_comment] = STATE(862), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_list] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_make] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_else] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [aux_sym__record_key_token2] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1601), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [863] = { [sym_comment] = STATE(863), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_list] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_make] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [sym__entry_separator] = ACTIONS(1403), - [aux_sym__record_key_token2] = ACTIONS(1401), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_list] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_make] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_catch] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_new] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [sym__entry_separator] = ACTIONS(1435), + [aux_sym__record_key_token2] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [864] = { [sym_comment] = STATE(864), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1249), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [sym__entry_separator] = ACTIONS(1245), - [aux_sym__record_key_token2] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_list] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_make] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [sym__entry_separator] = ACTIONS(1253), + [aux_sym__record_key_token2] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [865] = { [sym_comment] = STATE(865), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_list] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_make] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_catch] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_BANG_TILDE] = ACTIONS(1254), - [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), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1254), - [aux_sym__val_number_token2] = ACTIONS(1254), - [aux_sym__val_number_token3] = ACTIONS(1254), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1254), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym__str_single_quotes] = ACTIONS(1254), - [sym__str_back_ticks] = ACTIONS(1254), - [aux_sym__record_key_token2] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_list] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_make] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_catch] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_new] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [sym__entry_separator] = ACTIONS(1359), + [aux_sym__record_key_token2] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(105), }, [866] = { [sym_comment] = STATE(866), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_list] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_make] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_catch] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [sym__entry_separator] = ACTIONS(1311), - [aux_sym__record_key_token2] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_list] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_make] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_catch] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_new] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [sym__entry_separator] = ACTIONS(1339), + [aux_sym__record_key_token2] = ACTIONS(1337), [anon_sym_POUND] = ACTIONS(105), }, [867] = { [sym_comment] = STATE(867), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [868] = { [sym_comment] = STATE(868), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_list] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_make] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_catch] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [sym__entry_separator] = ACTIONS(1395), - [aux_sym__record_key_token2] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [sym_cmd_identifier] = ACTIONS(1282), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_list] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_make] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_bit_DASHshl] = ACTIONS(1282), + [anon_sym_bit_DASHshr] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT2] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_not_DASHin] = ACTIONS(1282), + [anon_sym_starts_DASHwith] = ACTIONS(1282), + [anon_sym_ends_DASHwith] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_BANG_TILDE] = ACTIONS(1282), + [anon_sym_bit_DASHand] = ACTIONS(1282), + [anon_sym_bit_DASHxor] = ACTIONS(1282), + [anon_sym_bit_DASHor] = ACTIONS(1282), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_xor] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [sym__entry_separator] = ACTIONS(1284), + [aux_sym__record_key_token2] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, [869] = { [sym_comment] = STATE(869), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [870] = { [sym_comment] = STATE(870), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [871] = { [sym_comment] = STATE(871), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [872] = { [sym_comment] = STATE(872), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [873] = { [sym_comment] = STATE(873), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [874] = { [sym_comment] = STATE(874), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [875] = { [sym_comment] = STATE(875), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), [anon_sym_bit_DASHand] = ACTIONS(1697), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [876] = { [sym_comment] = STATE(876), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), [anon_sym_bit_DASHand] = ACTIONS(1697), [anon_sym_bit_DASHxor] = ACTIONS(1699), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [877] = { [sym_comment] = STATE(877), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), [anon_sym_bit_DASHand] = ACTIONS(1697), [anon_sym_bit_DASHxor] = ACTIONS(1699), [anon_sym_bit_DASHor] = ACTIONS(1701), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [878] = { [sym_comment] = STATE(878), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_list] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_make] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [sym__entry_separator] = ACTIONS(1193), + [aux_sym__record_key_token2] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(105), + }, + [879] = { + [sym_comment] = STATE(879), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), [anon_sym_bit_DASHand] = ACTIONS(1697), [anon_sym_bit_DASHxor] = ACTIONS(1699), [anon_sym_bit_DASHor] = ACTIONS(1701), [anon_sym_and] = ACTIONS(1703), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_xor] = ACTIONS(1705), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, - [879] = { - [sym_comment] = STATE(879), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1230), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_list] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_make] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1230), - [anon_sym_BANG_EQ] = ACTIONS(1230), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1230), - [anon_sym_BANG_TILDE] = ACTIONS(1230), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1230), - [aux_sym__val_number_token2] = ACTIONS(1230), - [aux_sym__val_number_token3] = ACTIONS(1230), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1230), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym__str_single_quotes] = ACTIONS(1230), - [sym__str_back_ticks] = ACTIONS(1230), - [aux_sym__record_key_token2] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(3), - }, [880] = { [sym_comment] = STATE(880), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_SLASH_SLASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1693), + [anon_sym_bit_DASHshr] = ACTIONS(1693), [anon_sym_EQ_EQ] = ACTIONS(1683), [anon_sym_BANG_EQ] = ACTIONS(1683), [anon_sym_LT2] = ACTIONS(1683), [anon_sym_LT_EQ] = ACTIONS(1683), [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), [anon_sym_EQ_TILDE] = ACTIONS(1695), [anon_sym_BANG_TILDE] = ACTIONS(1695), [anon_sym_bit_DASHand] = ACTIONS(1697), @@ -166947,1683 +166974,2762 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor] = ACTIONS(1701), [anon_sym_and] = ACTIONS(1703), [anon_sym_xor] = ACTIONS(1705), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_or] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [sym__entry_separator] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [881] = { [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [sym_cmd_identifier] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_list] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_make] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_catch] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1282), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [sym__entry_separator] = ACTIONS(1284), - [aux_sym__record_key_token2] = ACTIONS(1282), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [882] = { [sym_comment] = STATE(882), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_STAR_STAR] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_SLASH_SLASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_bit_DASHshl] = ACTIONS(1691), - [anon_sym_bit_DASHshr] = ACTIONS(1691), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT2] = ACTIONS(1683), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1693), - [anon_sym_starts_DASHwith] = ACTIONS(1693), - [anon_sym_ends_DASHwith] = ACTIONS(1693), - [anon_sym_EQ_TILDE] = ACTIONS(1695), - [anon_sym_BANG_TILDE] = ACTIONS(1695), - [anon_sym_bit_DASHand] = ACTIONS(1697), - [anon_sym_bit_DASHxor] = ACTIONS(1699), - [anon_sym_bit_DASHor] = ACTIONS(1701), - [anon_sym_and] = ACTIONS(1703), - [anon_sym_xor] = ACTIONS(1705), - [anon_sym_or] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [sym__entry_separator] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT2] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1056), + [anon_sym_BANG_TILDE] = ACTIONS(1056), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1056), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [aux_sym__record_key_token2] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(3), }, [883] = { [sym_comment] = STATE(883), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_list] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_make] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_catch] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [sym__entry_separator] = ACTIONS(1340), - [aux_sym__record_key_token2] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_list] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_make] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_catch] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [sym__entry_separator] = ACTIONS(1351), + [aux_sym__record_key_token2] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, [884] = { [sym_comment] = STATE(884), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_list] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_make] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_catch] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [sym__entry_separator] = ACTIONS(1340), - [aux_sym__record_key_token2] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_list] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_make] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_catch] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_new] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [sym__entry_separator] = ACTIONS(1363), + [aux_sym__record_key_token2] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [885] = { [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [sym__entry_separator] = ACTIONS(1007), - [aux_sym__record_key_token2] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_list] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_make] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_catch] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_new] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [sym__entry_separator] = ACTIONS(1355), + [aux_sym__record_key_token2] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(105), }, [886] = { [sym_comment] = STATE(886), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_list] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_make] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_catch] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [sym__entry_separator] = ACTIONS(1344), - [aux_sym__record_key_token2] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_list] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_make] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_catch] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_new] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1215), + [aux_sym__val_number_token2] = ACTIONS(1215), + [aux_sym__val_number_token3] = ACTIONS(1215), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1215), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym__str_single_quotes] = ACTIONS(1215), + [sym__str_back_ticks] = ACTIONS(1215), + [aux_sym__record_key_token2] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(3), }, [887] = { [sym_comment] = STATE(887), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_list] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_make] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_catch] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [sym__entry_separator] = ACTIONS(1348), - [aux_sym__record_key_token2] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [sym__entry_separator] = ACTIONS(1084), + [aux_sym__record_key_token2] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [888] = { [sym_comment] = STATE(888), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [889] = { [sym_comment] = STATE(889), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_list] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_make] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [sym__entry_separator] = ACTIONS(1035), - [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_list] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_make] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_catch] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [sym__entry_separator] = ACTIONS(1423), + [aux_sym__record_key_token2] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, [890] = { [sym_comment] = STATE(890), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_list] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_make] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1385), + [anon_sym_BANG_TILDE] = ACTIONS(1385), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [aux_sym__record_key_token2] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(3), }, [891] = { [sym_comment] = STATE(891), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1352), - [aux_sym__record_key_token2] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_list] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_make] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_catch] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [sym__entry_separator] = ACTIONS(1321), + [aux_sym__record_key_token2] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [892] = { [sym_comment] = STATE(892), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_list] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_make] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [sym__entry_separator] = ACTIONS(1356), - [aux_sym__record_key_token2] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_list] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_make] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_catch] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [sym__entry_separator] = ACTIONS(1376), + [aux_sym__record_key_token2] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(105), }, [893] = { [sym_comment] = STATE(893), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_BANG_TILDE] = ACTIONS(1223), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1223), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1223), + [sym__str_back_ticks] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(3), + }, + [894] = { + [sym_comment] = STATE(894), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), [anon_sym_LPAREN] = ACTIONS(1193), [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_list] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_make] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_list] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_make] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), [anon_sym_STAR_STAR] = ACTIONS(1193), [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), [anon_sym_EQ_EQ] = ACTIONS(1193), [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), + [anon_sym_LT2] = ACTIONS(1191), [anon_sym_LT_EQ] = ACTIONS(1193), [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), [anon_sym_EQ_TILDE] = ACTIONS(1193), [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), [aux_sym__val_number_token1] = ACTIONS(1193), [aux_sym__val_number_token2] = ACTIONS(1193), [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), + [aux_sym__val_number_token4] = ACTIONS(1191), [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), + [aux_sym__val_number_token6] = ACTIONS(1191), [anon_sym_DQUOTE] = ACTIONS(1193), [sym__str_single_quotes] = ACTIONS(1193), [sym__str_back_ticks] = ACTIONS(1193), - [sym__entry_separator] = ACTIONS(1195), - [aux_sym__record_key_token2] = ACTIONS(1193), - [anon_sym_POUND] = ACTIONS(105), - }, - [894] = { - [sym_comment] = STATE(894), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_list] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_make] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_catch] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [sym__entry_separator] = ACTIONS(1360), - [aux_sym__record_key_token2] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__record_key_token2] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [895] = { [sym_comment] = STATE(895), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_list] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_make] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_BANG_TILDE] = ACTIONS(1224), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1224), - [aux_sym__val_number_token2] = ACTIONS(1224), - [aux_sym__val_number_token3] = ACTIONS(1224), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1224), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym__str_single_quotes] = ACTIONS(1224), - [sym__str_back_ticks] = ACTIONS(1224), - [aux_sym__record_key_token2] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_list] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_make] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_catch] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [sym__entry_separator] = ACTIONS(1268), + [aux_sym__record_key_token2] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), }, [896] = { [sym_comment] = STATE(896), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1191), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_list] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_make] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_catch] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_new] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1191), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1191), - [anon_sym_BANG_TILDE] = ACTIONS(1191), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1191), - [aux_sym__val_number_token2] = ACTIONS(1191), - [aux_sym__val_number_token3] = ACTIONS(1191), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1191), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym__str_single_quotes] = ACTIONS(1191), - [sym__str_back_ticks] = ACTIONS(1191), - [aux_sym__record_key_token2] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), }, [897] = { [sym_comment] = STATE(897), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_list] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_make] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_catch] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_as] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [sym__entry_separator] = ACTIONS(1290), - [aux_sym__record_key_token2] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1187), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_list] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_make] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_catch] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1187), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1187), + [anon_sym_BANG_EQ] = ACTIONS(1187), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1187), + [anon_sym_GT_EQ] = ACTIONS(1187), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1187), + [anon_sym_BANG_TILDE] = ACTIONS(1187), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1187), + [aux_sym__val_number_token2] = ACTIONS(1187), + [aux_sym__val_number_token3] = ACTIONS(1187), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1187), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1187), + [sym__str_single_quotes] = ACTIONS(1187), + [sym__str_back_ticks] = ACTIONS(1187), + [aux_sym__record_key_token2] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(3), }, [898] = { [sym_comment] = STATE(898), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(1104), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1104), - [anon_sym_BANG_EQ] = ACTIONS(1104), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1104), - [anon_sym_BANG_TILDE] = ACTIONS(1104), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1104), - [aux_sym__val_number_token2] = ACTIONS(1104), - [aux_sym__val_number_token3] = ACTIONS(1104), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1104), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym__str_single_quotes] = ACTIONS(1104), - [sym__str_back_ticks] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), }, [899] = { [sym_comment] = STATE(899), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1249), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1409), - [anon_sym_BANG_TILDE] = ACTIONS(1409), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1245), - [aux_sym__val_number_token2] = ACTIONS(1245), - [aux_sym__val_number_token3] = ACTIONS(1245), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1245), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym__str_single_quotes] = ACTIONS(1245), - [sym__str_back_ticks] = ACTIONS(1245), - [aux_sym__record_key_token2] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_list] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_make] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_catch] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [sym__entry_separator] = ACTIONS(1268), + [aux_sym__record_key_token2] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), }, [900] = { [sym_comment] = STATE(900), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_list] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_make] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [sym__entry_separator] = ACTIONS(1383), + [aux_sym__record_key_token2] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(105), }, [901] = { [sym_comment] = STATE(901), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1219), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_list] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_make] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_catch] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_BANG_TILDE] = ACTIONS(1219), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1219), + [aux_sym__val_number_token2] = ACTIONS(1219), + [aux_sym__val_number_token3] = ACTIONS(1219), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1219), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym__str_single_quotes] = ACTIONS(1219), + [sym__str_back_ticks] = ACTIONS(1219), + [aux_sym__record_key_token2] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(3), + }, + [902] = { + [sym_comment] = STATE(902), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_list] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_make] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_catch] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [sym__entry_separator] = ACTIONS(1385), + [aux_sym__record_key_token2] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(105), + }, + [903] = { + [sym_comment] = STATE(903), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_list] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_make] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_else] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_catch] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_new] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [sym__entry_separator] = ACTIONS(911), + [aux_sym__record_key_token2] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), + }, + [904] = { + [sym_comment] = STATE(904), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_list] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_make] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_new] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [sym__entry_separator] = ACTIONS(951), + [aux_sym__record_key_token2] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(105), + }, + [905] = { + [sym_comment] = STATE(905), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_list] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_make] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [sym__entry_separator] = ACTIONS(1305), + [aux_sym__record_key_token2] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(105), + }, + [906] = { + [sym_comment] = STATE(906), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_list] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_make] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_catch] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_new] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [sym__entry_separator] = ACTIONS(1272), + [aux_sym__record_key_token2] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(105), + }, + [907] = { + [sym_comment] = STATE(907), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_list] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_make] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [sym__entry_separator] = ACTIONS(1439), + [aux_sym__record_key_token2] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [908] = { + [sym_comment] = STATE(908), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_list] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_make] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [sym__entry_separator] = ACTIONS(1343), + [aux_sym__record_key_token2] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(105), + }, + [909] = { + [sym_comment] = STATE(909), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_list] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [sym__entry_separator] = ACTIONS(931), + [aux_sym__record_key_token2] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [910] = { + [sym_comment] = STATE(910), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [sym__entry_separator] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [911] = { + [sym_comment] = STATE(911), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [912] = { + [sym_comment] = STATE(912), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [913] = { + [sym_comment] = STATE(913), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_list] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [sym__entry_separator] = ACTIONS(1309), + [aux_sym__record_key_token2] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(105), + }, + [914] = { + [sym_comment] = STATE(914), [anon_sym_export] = ACTIONS(1274), [anon_sym_alias] = ACTIONS(1274), [anon_sym_let] = ACTIONS(1274), @@ -168705,257 +169811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [902] = { - [sym_comment] = STATE(902), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_list] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_make] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_catch] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [sym__entry_separator] = ACTIONS(1391), - [aux_sym__record_key_token2] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(105), - }, - [903] = { - [sym_comment] = STATE(903), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [904] = { - [sym_comment] = STATE(904), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_list] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_make] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [sym__entry_separator] = ACTIONS(1387), - [aux_sym__record_key_token2] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(105), - }, - [905] = { - [sym_comment] = STATE(905), + [915] = { + [sym_comment] = STATE(915), [anon_sym_export] = ACTIONS(1278), [anon_sym_alias] = ACTIONS(1278), [anon_sym_let] = ACTIONS(1278), @@ -169037,2402 +169894,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, - [906] = { - [sym_comment] = STATE(906), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [sym__entry_separator] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [907] = { - [sym_comment] = STATE(907), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_list] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_make] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_catch] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [sym__entry_separator] = ACTIONS(1254), - [aux_sym__record_key_token2] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [908] = { - [sym_comment] = STATE(908), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_list] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_make] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_catch] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [sym__entry_separator] = ACTIONS(1307), - [aux_sym__record_key_token2] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(105), - }, - [909] = { - [sym_comment] = STATE(909), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_list] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_make] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_else] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_catch] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_new] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [sym__entry_separator] = ACTIONS(1100), - [aux_sym__record_key_token2] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [910] = { - [sym_comment] = STATE(910), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [sym__entry_separator] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, - [911] = { - [sym_comment] = STATE(911), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_list] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_make] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [sym__entry_separator] = ACTIONS(1407), - [aux_sym__record_key_token2] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(105), - }, - [912] = { - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [913] = { - [sym_comment] = STATE(913), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_list] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_make] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_catch] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [sym__entry_separator] = ACTIONS(1334), - [aux_sym__record_key_token2] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(105), - }, - [914] = { - [sym_comment] = STATE(914), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1261), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_BANG_TILDE] = ACTIONS(1261), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1261), - [aux_sym__val_number_token2] = ACTIONS(1261), - [aux_sym__val_number_token3] = ACTIONS(1261), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1261), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1261), - [sym__str_back_ticks] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(3), - }, - [915] = { - [sym_comment] = STATE(915), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [aux_sym__record_key_token2] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(105), - }, [916] = { [sym_comment] = STATE(916), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1195), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_list] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_make] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1195), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1195), - [aux_sym__val_number_token2] = ACTIONS(1195), - [aux_sym__val_number_token3] = ACTIONS(1195), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1195), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym__str_single_quotes] = ACTIONS(1195), - [sym__str_back_ticks] = ACTIONS(1195), - [aux_sym__record_key_token2] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_list] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_make] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_catch] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_new] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [sym__entry_separator] = ACTIONS(1427), + [aux_sym__record_key_token2] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(105), }, [917] = { [sym_comment] = STATE(917), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_list] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_make] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [sym__entry_separator] = ACTIONS(1347), + [aux_sym__record_key_token2] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [918] = { [sym_comment] = STATE(918), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_list] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_new] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [sym__entry_separator] = ACTIONS(1327), - [aux_sym__record_key_token2] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(105), - }, - [919] = { - [sym_comment] = STATE(919), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [sym__entry_separator] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [920] = { - [sym_comment] = STATE(920), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_list] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_make] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [sym__entry_separator] = ACTIONS(1300), - [aux_sym__record_key_token2] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(105), - }, - [921] = { - [sym_comment] = STATE(921), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_make] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [sym__entry_separator] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(105), - }, - [922] = { - [sym_comment] = STATE(922), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_list] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_make] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_DOT] = ACTIONS(1307), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_catch] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1307), - [anon_sym_BANG_EQ] = ACTIONS(1307), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1307), - [anon_sym_GT_EQ] = ACTIONS(1307), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1307), - [anon_sym_BANG_TILDE] = ACTIONS(1307), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1307), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [aux_sym__record_key_token2] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(3), - }, - [923] = { - [sym_comment] = STATE(923), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(3), - }, - [924] = { - [sym_comment] = STATE(924), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_list] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_make] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_catch] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1319), - [anon_sym_BANG_TILDE] = ACTIONS(1319), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1319), - [aux_sym__val_number_token2] = ACTIONS(1319), - [aux_sym__val_number_token3] = ACTIONS(1319), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1319), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym__str_single_quotes] = ACTIONS(1319), - [sym__str_back_ticks] = ACTIONS(1319), - [aux_sym__record_key_token2] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(3), - }, - [925] = { - [sym_comment] = STATE(925), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_list] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_make] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_catch] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1391), - [anon_sym_BANG_TILDE] = ACTIONS(1391), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1391), - [aux_sym__val_number_token2] = ACTIONS(1391), - [aux_sym__val_number_token3] = ACTIONS(1391), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1391), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym__str_single_quotes] = ACTIONS(1391), - [sym__str_back_ticks] = ACTIONS(1391), - [aux_sym__record_key_token2] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(3), - }, - [926] = { - [sym_comment] = STATE(926), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1315), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_list] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_make] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_DOT] = ACTIONS(1315), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1315), - [anon_sym_BANG_EQ] = ACTIONS(1315), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1315), - [anon_sym_GT_EQ] = ACTIONS(1315), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1315), - [anon_sym_BANG_TILDE] = ACTIONS(1315), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1315), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [aux_sym__record_key_token2] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(3), - }, - [927] = { - [sym_comment] = STATE(927), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_list] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_make] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_BANG_TILDE] = ACTIONS(1296), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [aux_sym__record_key_token2] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(3), - }, - [928] = { - [sym_comment] = STATE(928), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(992), - [anon_sym_BANG_TILDE] = ACTIONS(992), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [aux_sym__record_key_token2] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(3), - }, - [929] = { - [sym_comment] = STATE(929), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_list] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_make] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_catch] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_as] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [anon_sym_BANG_TILDE] = ACTIONS(1290), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1290), - [aux_sym__val_number_token2] = ACTIONS(1290), - [aux_sym__val_number_token3] = ACTIONS(1290), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__str_single_quotes] = ACTIONS(1290), - [sym__str_back_ticks] = ACTIONS(1290), - [aux_sym__record_key_token2] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(3), - }, - [930] = { - [sym_comment] = STATE(930), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_alias] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_let_DASHenv] = ACTIONS(1401), - [anon_sym_mut] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [sym_cmd_identifier] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1401), - [anon_sym_export_DASHenv] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_error] = ACTIONS(1401), - [anon_sym_list] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_make] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_try] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_source] = ACTIONS(1401), - [anon_sym_source_DASHenv] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_hide] = ACTIONS(1401), - [anon_sym_hide_DASHenv] = ACTIONS(1401), - [anon_sym_overlay] = ACTIONS(1401), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1403), - [anon_sym_BANG_TILDE] = ACTIONS(1403), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1403), - [aux_sym__val_number_token2] = ACTIONS(1403), - [aux_sym__val_number_token3] = ACTIONS(1403), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1403), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym__str_single_quotes] = ACTIONS(1403), - [sym__str_back_ticks] = ACTIONS(1403), - [aux_sym__record_key_token2] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(3), - }, - [931] = { - [sym_comment] = STATE(931), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_list] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_make] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1399), - [anon_sym_BANG_TILDE] = ACTIONS(1399), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1399), - [aux_sym__val_number_token2] = ACTIONS(1399), - [aux_sym__val_number_token3] = ACTIONS(1399), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1399), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym__str_single_quotes] = ACTIONS(1399), - [sym__str_back_ticks] = ACTIONS(1399), - [aux_sym__record_key_token2] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [aux_sym__record_key_token2] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), }, - [932] = { - [sym_comment] = STATE(932), - [anon_sym_export] = ACTIONS(1247), - [anon_sym_alias] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_let_DASHenv] = ACTIONS(1247), - [anon_sym_mut] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [sym_cmd_identifier] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1247), - [anon_sym_export_DASHenv] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_DOLLAR] = ACTIONS(1409), - [anon_sym_error] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_make] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_catch] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_source] = ACTIONS(1247), - [anon_sym_source_DASHenv] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_hide] = ACTIONS(1247), - [anon_sym_hide_DASHenv] = ACTIONS(1247), - [anon_sym_overlay] = ACTIONS(1247), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1409), - [anon_sym_BANG_TILDE] = ACTIONS(1409), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1409), - [aux_sym__val_number_token2] = ACTIONS(1409), - [aux_sym__val_number_token3] = ACTIONS(1409), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1409), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym__str_single_quotes] = ACTIONS(1409), - [sym__str_back_ticks] = ACTIONS(1409), - [aux_sym__record_key_token2] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(3), + [919] = { + [sym_comment] = STATE(919), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), }, - [933] = { - [sym_comment] = STATE(933), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(3), + [920] = { + [sym_comment] = STATE(920), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [sym__entry_separator] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), }, - [934] = { - [sym_comment] = STATE(934), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(3), + [921] = { + [sym_comment] = STATE(921), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_list] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_make] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_catch] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_new] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [sym__entry_separator] = ACTIONS(1370), + [aux_sym__record_key_token2] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(105), }, - [935] = { - [sym_comment] = STATE(935), + [922] = { + [sym_comment] = STATE(922), [anon_sym_export] = ACTIONS(1282), [anon_sym_alias] = ACTIONS(1282), [anon_sym_let] = ACTIONS(1282), @@ -171513,254 +170474,1484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(3), }, + [923] = { + [sym_comment] = STATE(923), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1351), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_list] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_make] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_catch] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1351), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1351), + [anon_sym_BANG_TILDE] = ACTIONS(1351), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1351), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [aux_sym__record_key_token2] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [924] = { + [sym_comment] = STATE(924), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_DOLLAR] = ACTIONS(1355), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_list] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_make] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_catch] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_new] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1355), + [anon_sym_BANG_EQ] = ACTIONS(1355), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1355), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1355), + [anon_sym_BANG_TILDE] = ACTIONS(1355), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1355), + [aux_sym__val_number_token2] = ACTIONS(1355), + [aux_sym__val_number_token3] = ACTIONS(1355), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1355), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym__str_single_quotes] = ACTIONS(1355), + [sym__str_back_ticks] = ACTIONS(1355), + [aux_sym__record_key_token2] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(3), + }, + [925] = { + [sym_comment] = STATE(925), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1305), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_list] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_make] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1305), + [anon_sym_BANG_TILDE] = ACTIONS(1305), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1305), + [aux_sym__val_number_token2] = ACTIONS(1305), + [aux_sym__val_number_token3] = ACTIONS(1305), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1305), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym__str_single_quotes] = ACTIONS(1305), + [sym__str_back_ticks] = ACTIONS(1305), + [aux_sym__record_key_token2] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(3), + }, + [926] = { + [sym_comment] = STATE(926), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_list] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1309), + [anon_sym_BANG_TILDE] = ACTIONS(1309), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1309), + [aux_sym__val_number_token2] = ACTIONS(1309), + [aux_sym__val_number_token3] = ACTIONS(1309), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1309), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym__str_single_quotes] = ACTIONS(1309), + [sym__str_back_ticks] = ACTIONS(1309), + [aux_sym__record_key_token2] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(3), + }, + [927] = { + [sym_comment] = STATE(927), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_list] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_make] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_catch] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1321), + [anon_sym_BANG_TILDE] = ACTIONS(1321), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1321), + [aux_sym__val_number_token2] = ACTIONS(1321), + [aux_sym__val_number_token3] = ACTIONS(1321), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1321), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym__str_single_quotes] = ACTIONS(1321), + [sym__str_back_ticks] = ACTIONS(1321), + [aux_sym__record_key_token2] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(3), + }, + [928] = { + [sym_comment] = STATE(928), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_list] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_make] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_catch] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_new] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1331), + [anon_sym_BANG_TILDE] = ACTIONS(1331), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1331), + [aux_sym__val_number_token2] = ACTIONS(1331), + [aux_sym__val_number_token3] = ACTIONS(1331), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1331), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym__str_single_quotes] = ACTIONS(1331), + [sym__str_back_ticks] = ACTIONS(1331), + [aux_sym__record_key_token2] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(3), + }, + [929] = { + [sym_comment] = STATE(929), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_list] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_make] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_catch] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_new] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1335), + [anon_sym_BANG_TILDE] = ACTIONS(1335), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1335), + [aux_sym__val_number_token2] = ACTIONS(1335), + [aux_sym__val_number_token3] = ACTIONS(1335), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1335), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym__str_single_quotes] = ACTIONS(1335), + [sym__str_back_ticks] = ACTIONS(1335), + [aux_sym__record_key_token2] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(3), + }, + [930] = { + [sym_comment] = STATE(930), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_list] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_make] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_catch] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_new] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1339), + [anon_sym_BANG_TILDE] = ACTIONS(1339), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1339), + [aux_sym__val_number_token2] = ACTIONS(1339), + [aux_sym__val_number_token3] = ACTIONS(1339), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1339), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [aux_sym__record_key_token2] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(3), + }, + [931] = { + [sym_comment] = STATE(931), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_list] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_make] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1347), + [anon_sym_BANG_EQ] = ACTIONS(1347), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1347), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1347), + [anon_sym_BANG_TILDE] = ACTIONS(1347), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1347), + [aux_sym__val_number_token2] = ACTIONS(1347), + [aux_sym__val_number_token3] = ACTIONS(1347), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1347), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym__str_single_quotes] = ACTIONS(1347), + [sym__str_back_ticks] = ACTIONS(1347), + [aux_sym__record_key_token2] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(3), + }, + [932] = { + [sym_comment] = STATE(932), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_DOLLAR] = ACTIONS(1359), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_list] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_make] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_catch] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_new] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1359), + [anon_sym_BANG_EQ] = ACTIONS(1359), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1359), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1359), + [anon_sym_BANG_TILDE] = ACTIONS(1359), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1359), + [aux_sym__val_number_token2] = ACTIONS(1359), + [aux_sym__val_number_token3] = ACTIONS(1359), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1359), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [aux_sym__record_key_token2] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(3), + }, + [933] = { + [sym_comment] = STATE(933), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_DOLLAR] = ACTIONS(1363), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_list] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_make] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_catch] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_new] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1363), + [anon_sym_BANG_EQ] = ACTIONS(1363), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1363), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1363), + [anon_sym_BANG_TILDE] = ACTIONS(1363), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1363), + [aux_sym__val_number_token2] = ACTIONS(1363), + [aux_sym__val_number_token3] = ACTIONS(1363), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1363), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym__str_single_quotes] = ACTIONS(1363), + [sym__str_back_ticks] = ACTIONS(1363), + [aux_sym__record_key_token2] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(3), + }, + [934] = { + [sym_comment] = STATE(934), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_list] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_make] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1370), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_catch] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_new] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1370), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1370), + [anon_sym_BANG_TILDE] = ACTIONS(1370), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1370), + [aux_sym__val_number_token2] = ACTIONS(1370), + [aux_sym__val_number_token3] = ACTIONS(1370), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1370), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym__str_single_quotes] = ACTIONS(1370), + [sym__str_back_ticks] = ACTIONS(1370), + [aux_sym__record_key_token2] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(3), + }, + [935] = { + [sym_comment] = STATE(935), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_list] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_make] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_catch] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_BANG_TILDE] = ACTIONS(1268), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1268), + [aux_sym__val_number_token2] = ACTIONS(1268), + [aux_sym__val_number_token3] = ACTIONS(1268), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1268), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym__str_single_quotes] = ACTIONS(1268), + [sym__str_back_ticks] = ACTIONS(1268), + [aux_sym__record_key_token2] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(3), + }, [936] = { [sym_comment] = STATE(936), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(1104), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_list] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_make] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_catch] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_new] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1104), - [anon_sym_BANG_EQ] = ACTIONS(1104), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1104), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1104), - [anon_sym_BANG_TILDE] = ACTIONS(1104), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1104), - [aux_sym__val_number_token2] = ACTIONS(1104), - [aux_sym__val_number_token3] = ACTIONS(1104), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1104), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym__str_single_quotes] = ACTIONS(1104), - [sym__str_back_ticks] = ACTIONS(1104), - [aux_sym__record_key_token2] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_list] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_make] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_catch] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1268), + [anon_sym_BANG_EQ] = ACTIONS(1268), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1268), + [anon_sym_BANG_TILDE] = ACTIONS(1268), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1268), + [aux_sym__val_number_token2] = ACTIONS(1268), + [aux_sym__val_number_token3] = ACTIONS(1268), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1268), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym__str_single_quotes] = ACTIONS(1268), + [sym__str_back_ticks] = ACTIONS(1268), + [aux_sym__record_key_token2] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(3), }, [937] = { [sym_comment] = STATE(937), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_list] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_make] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_DOT] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_catch] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_new] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_BANG_TILDE] = ACTIONS(1272), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1272), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [aux_sym__record_key_token2] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(3), }, [938] = { [sym_comment] = STATE(938), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1439), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_list] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_make] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1439), + [anon_sym_BANG_TILDE] = ACTIONS(1439), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1439), + [aux_sym__val_number_token2] = ACTIONS(1439), + [aux_sym__val_number_token3] = ACTIONS(1439), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1439), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), + [sym__str_single_quotes] = ACTIONS(1439), + [sym__str_back_ticks] = ACTIONS(1439), + [aux_sym__record_key_token2] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(3), }, [939] = { [sym_comment] = STATE(939), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(929), + [anon_sym_list] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [aux_sym__record_key_token2] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(3), + }, + [940] = { + [sym_comment] = STATE(940), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [sym_cmd_identifier] = ACTIONS(1274), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_list] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_in] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_make] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_DOT] = ACTIONS(1276), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_catch] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_bit_DASHshl] = ACTIONS(1274), + [anon_sym_bit_DASHshr] = ACTIONS(1274), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT2] = ACTIONS(1274), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_not_DASHin] = ACTIONS(1274), + [anon_sym_starts_DASHwith] = ACTIONS(1274), + [anon_sym_ends_DASHwith] = ACTIONS(1274), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_BANG_TILDE] = ACTIONS(1276), + [anon_sym_bit_DASHand] = ACTIONS(1274), + [anon_sym_bit_DASHxor] = ACTIONS(1274), + [anon_sym_bit_DASHor] = ACTIONS(1274), + [anon_sym_and] = ACTIONS(1274), + [anon_sym_xor] = ACTIONS(1274), + [anon_sym_or] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1276), + [aux_sym__val_number_token2] = ACTIONS(1276), + [aux_sym__val_number_token3] = ACTIONS(1276), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1276), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym__str_single_quotes] = ACTIONS(1276), + [sym__str_back_ticks] = ACTIONS(1276), + [aux_sym__record_key_token2] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(3), + }, + [941] = { + [sym_comment] = STATE(941), [anon_sym_export] = ACTIONS(1278), [anon_sym_alias] = ACTIONS(1278), [anon_sym_let] = ACTIONS(1278), @@ -171841,3751 +172032,3587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__record_key_token2] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(3), }, - [940] = { - [sym_comment] = STATE(940), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(3), - }, - [941] = { - [sym_comment] = STATE(941), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(3), - }, [942] = { [sym_comment] = STATE(942), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_error] = ACTIONS(949), + [anon_sym_list] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_make] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_try] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_new] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(951), + [anon_sym_BANG_TILDE] = ACTIONS(951), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(951), + [aux_sym__val_number_token2] = ACTIONS(951), + [aux_sym__val_number_token3] = ACTIONS(951), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(951), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym__str_single_quotes] = ACTIONS(951), + [sym__str_back_ticks] = ACTIONS(951), + [aux_sym__record_key_token2] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(3), }, [943] = { [sym_comment] = STATE(943), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_list] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_make] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1193), + [aux_sym__val_number_token2] = ACTIONS(1193), + [aux_sym__val_number_token3] = ACTIONS(1193), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1193), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym__str_single_quotes] = ACTIONS(1193), + [sym__str_back_ticks] = ACTIONS(1193), + [aux_sym__record_key_token2] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(3), }, [944] = { [sym_comment] = STATE(944), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_make] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_catch] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1115), - [anon_sym_BANG_TILDE] = ACTIONS(1115), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1115), - [aux_sym__val_number_token2] = ACTIONS(1115), - [aux_sym__val_number_token3] = ACTIONS(1115), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1115), - [sym__str_back_ticks] = ACTIONS(1115), - [aux_sym__record_key_token2] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(1427), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_list] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_make] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_catch] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_new] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1427), + [anon_sym_BANG_TILDE] = ACTIONS(1427), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1427), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [aux_sym__record_key_token2] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(3), }, [945] = { [sym_comment] = STATE(945), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1100), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_list] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_make] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_else] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_catch] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_new] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_BANG_EQ] = ACTIONS(1100), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1100), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_BANG_TILDE] = ACTIONS(1100), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1100), - [aux_sym__val_number_token2] = ACTIONS(1100), - [aux_sym__val_number_token3] = ACTIONS(1100), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1100), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym__str_single_quotes] = ACTIONS(1100), - [sym__str_back_ticks] = ACTIONS(1100), - [aux_sym__record_key_token2] = ACTIONS(1098), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_list] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_make] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_catch] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1431), + [anon_sym_BANG_TILDE] = ACTIONS(1431), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [aux_sym__record_key_token2] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(3), }, [946] = { [sym_comment] = STATE(946), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_list] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_make] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_catch] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_BANG_TILDE] = ACTIONS(1254), - [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), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1254), - [aux_sym__val_number_token2] = ACTIONS(1254), - [aux_sym__val_number_token3] = ACTIONS(1254), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1254), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym__str_single_quotes] = ACTIONS(1254), - [sym__str_back_ticks] = ACTIONS(1254), - [aux_sym__record_key_token2] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_list] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_make] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_catch] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_new] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1435), + [anon_sym_BANG_TILDE] = ACTIONS(1435), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1435), + [aux_sym__val_number_token2] = ACTIONS(1435), + [aux_sym__val_number_token3] = ACTIONS(1435), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1435), + [sym__str_single_quotes] = ACTIONS(1435), + [sym__str_back_ticks] = ACTIONS(1435), + [aux_sym__record_key_token2] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(3), }, [947] = { [sym_comment] = STATE(947), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1084), + [anon_sym_BANG_TILDE] = ACTIONS(1084), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1084), + [aux_sym__val_number_token2] = ACTIONS(1084), + [aux_sym__val_number_token3] = ACTIONS(1084), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1084), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym__str_single_quotes] = ACTIONS(1084), + [sym__str_back_ticks] = ACTIONS(1084), + [aux_sym__record_key_token2] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(3), }, [948] = { [sym_comment] = STATE(948), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1261), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_make] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_DOT] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_catch] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_new] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_BANG_TILDE] = ACTIONS(1261), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1261), - [aux_sym__val_number_token2] = ACTIONS(1261), - [aux_sym__val_number_token3] = ACTIONS(1261), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1261), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1261), - [sym__str_back_ticks] = ACTIONS(1261), - [aux_sym__record_key_token2] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_make] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_catch] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1088), + [anon_sym_BANG_TILDE] = ACTIONS(1088), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1088), + [aux_sym__val_number_token2] = ACTIONS(1088), + [aux_sym__val_number_token3] = ACTIONS(1088), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1088), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym__str_single_quotes] = ACTIONS(1088), + [sym__str_back_ticks] = ACTIONS(1088), + [aux_sym__record_key_token2] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(3), }, [949] = { [sym_comment] = STATE(949), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1219), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_list] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_make] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_catch] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_BANG_TILDE] = ACTIONS(1219), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1219), + [aux_sym__val_number_token2] = ACTIONS(1219), + [aux_sym__val_number_token3] = ACTIONS(1219), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1219), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym__str_single_quotes] = ACTIONS(1219), + [sym__str_back_ticks] = ACTIONS(1219), + [aux_sym__record_key_token2] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(3), }, [950] = { [sym_comment] = STATE(950), - [anon_sym_export] = ACTIONS(1393), - [anon_sym_alias] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_let_DASHenv] = ACTIONS(1393), - [anon_sym_mut] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [sym_cmd_identifier] = ACTIONS(1393), - [anon_sym_def] = ACTIONS(1393), - [anon_sym_export_DASHenv] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_module] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_error] = ACTIONS(1393), - [anon_sym_list] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_make] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1393), - [anon_sym_catch] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_source] = ACTIONS(1393), - [anon_sym_source_DASHenv] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_hide] = ACTIONS(1393), - [anon_sym_hide_DASHenv] = ACTIONS(1393), - [anon_sym_overlay] = ACTIONS(1393), - [anon_sym_new] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1395), - [anon_sym_BANG_TILDE] = ACTIONS(1395), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1395), - [aux_sym__val_number_token2] = ACTIONS(1395), - [aux_sym__val_number_token3] = ACTIONS(1395), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1395), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym__str_single_quotes] = ACTIONS(1395), - [sym__str_back_ticks] = ACTIONS(1395), - [aux_sym__record_key_token2] = ACTIONS(1393), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_error] = ACTIONS(909), + [anon_sym_list] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_make] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_else] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_try] = ACTIONS(909), + [anon_sym_catch] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_new] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(911), + [aux_sym__val_number_token2] = ACTIONS(911), + [aux_sym__val_number_token3] = ACTIONS(911), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(911), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(911), + [sym__str_back_ticks] = ACTIONS(911), + [aux_sym__record_key_token2] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(3), }, [951] = { [sym_comment] = STATE(951), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_alias] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_let_DASHenv] = ACTIONS(1374), + [anon_sym_mut] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [sym_cmd_identifier] = ACTIONS(1374), + [anon_sym_def] = ACTIONS(1374), + [anon_sym_export_DASHenv] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [anon_sym_error] = ACTIONS(1374), + [anon_sym_list] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_make] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_catch] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_source] = ACTIONS(1374), + [anon_sym_source_DASHenv] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_hide] = ACTIONS(1374), + [anon_sym_hide_DASHenv] = ACTIONS(1374), + [anon_sym_overlay] = ACTIONS(1374), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1376), + [anon_sym_BANG_EQ] = ACTIONS(1376), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1376), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1376), + [anon_sym_BANG_TILDE] = ACTIONS(1376), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1376), + [aux_sym__val_number_token2] = ACTIONS(1376), + [aux_sym__val_number_token3] = ACTIONS(1376), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1376), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym__str_single_quotes] = ACTIONS(1376), + [sym__str_back_ticks] = ACTIONS(1376), + [aux_sym__record_key_token2] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(3), }, [952] = { [sym_comment] = STATE(952), - [anon_sym_export] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_let_DASHenv] = ACTIONS(1263), - [anon_sym_mut] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [sym_cmd_identifier] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_export_DASHenv] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_module] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_make] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_catch] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_source] = ACTIONS(1263), - [anon_sym_source_DASHenv] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_hide] = ACTIONS(1263), - [anon_sym_hide_DASHenv] = ACTIONS(1263), - [anon_sym_overlay] = ACTIONS(1263), - [anon_sym_new] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_BANG_TILDE] = ACTIONS(1265), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1265), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [aux_sym__record_key_token2] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [sym_cmd_identifier] = ACTIONS(1381), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1383), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_list] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_make] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1383), + [anon_sym_BANG_EQ] = ACTIONS(1383), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1383), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1383), + [anon_sym_BANG_TILDE] = ACTIONS(1383), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1383), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [aux_sym__record_key_token2] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(3), }, [953] = { [sym_comment] = STATE(953), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1729), - [anon_sym_BANG_TILDE] = ACTIONS(1729), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_alias] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_let_DASHenv] = ACTIONS(1255), + [anon_sym_mut] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [sym_cmd_identifier] = ACTIONS(1255), + [anon_sym_def] = ACTIONS(1255), + [anon_sym_export_DASHenv] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_DOLLAR] = ACTIONS(1385), + [anon_sym_error] = ACTIONS(1255), + [anon_sym_list] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_make] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_catch] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_source] = ACTIONS(1255), + [anon_sym_source_DASHenv] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_hide_DASHenv] = ACTIONS(1255), + [anon_sym_overlay] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1385), + [anon_sym_BANG_TILDE] = ACTIONS(1385), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1385), + [aux_sym__val_number_token2] = ACTIONS(1385), + [aux_sym__val_number_token3] = ACTIONS(1385), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1385), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1385), + [sym__str_single_quotes] = ACTIONS(1385), + [sym__str_back_ticks] = ACTIONS(1385), + [aux_sym__record_key_token2] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(3), }, [954] = { [sym_comment] = STATE(954), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1195), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_list] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_make] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1195), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1195), - [aux_sym__val_number_token2] = ACTIONS(1195), - [aux_sym__val_number_token3] = ACTIONS(1195), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1195), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym__str_single_quotes] = ACTIONS(1195), - [sym__str_back_ticks] = ACTIONS(1195), - [aux_sym__record_key_token2] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [955] = { [sym_comment] = STATE(955), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_alias] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_let_DASHenv] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [sym_cmd_identifier] = ACTIONS(1274), - [anon_sym_def] = ACTIONS(1274), - [anon_sym_export_DASHenv] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_error] = ACTIONS(1274), - [anon_sym_list] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_in] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_make] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(1276), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_catch] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_source] = ACTIONS(1274), - [anon_sym_source_DASHenv] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_hide_DASHenv] = ACTIONS(1274), - [anon_sym_overlay] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_as] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_mod] = ACTIONS(1274), - [anon_sym_SLASH_SLASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_bit_DASHshl] = ACTIONS(1274), - [anon_sym_bit_DASHshr] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT2] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_not_DASHin] = ACTIONS(1274), - [anon_sym_starts_DASHwith] = ACTIONS(1274), - [anon_sym_ends_DASHwith] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_BANG_TILDE] = ACTIONS(1276), - [anon_sym_bit_DASHand] = ACTIONS(1274), - [anon_sym_bit_DASHxor] = ACTIONS(1274), - [anon_sym_bit_DASHor] = ACTIONS(1274), - [anon_sym_and] = ACTIONS(1274), - [anon_sym_xor] = ACTIONS(1274), - [anon_sym_or] = ACTIONS(1274), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(1276), - [aux_sym__val_number_token2] = ACTIONS(1276), - [aux_sym__val_number_token3] = ACTIONS(1276), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1276), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym__str_single_quotes] = ACTIONS(1276), - [sym__str_back_ticks] = ACTIONS(1276), - [aux_sym__record_key_token2] = ACTIONS(1274), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [956] = { [sym_comment] = STATE(956), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_in] = ACTIONS(1249), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_make] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_catch] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1409), - [anon_sym_BANG_TILDE] = ACTIONS(1409), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1245), - [aux_sym__val_number_token2] = ACTIONS(1245), - [aux_sym__val_number_token3] = ACTIONS(1245), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1245), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym__str_single_quotes] = ACTIONS(1245), - [sym__str_back_ticks] = ACTIONS(1245), - [aux_sym__record_key_token2] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [957] = { [sym_comment] = STATE(957), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_DOLLAR] = ACTIONS(1387), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_list] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_make] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_DOT] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_catch] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1387), - [anon_sym_BANG_TILDE] = ACTIONS(1387), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1387), - [aux_sym__val_number_token2] = ACTIONS(1387), - [aux_sym__val_number_token3] = ACTIONS(1387), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1387), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym__str_single_quotes] = ACTIONS(1387), - [sym__str_back_ticks] = ACTIONS(1387), - [aux_sym__record_key_token2] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [958] = { [sym_comment] = STATE(958), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [959] = { [sym_comment] = STATE(959), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_list] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_make] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_catch] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1311), - [anon_sym_BANG_EQ] = ACTIONS(1311), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1311), - [anon_sym_GT_EQ] = ACTIONS(1311), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1311), - [anon_sym_BANG_TILDE] = ACTIONS(1311), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1311), - [aux_sym__val_number_token2] = ACTIONS(1311), - [aux_sym__val_number_token3] = ACTIONS(1311), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym__str_single_quotes] = ACTIONS(1311), - [sym__str_back_ticks] = ACTIONS(1311), - [aux_sym__record_key_token2] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [960] = { [sym_comment] = STATE(960), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [961] = { [sym_comment] = STATE(961), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_list] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_make] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_BANG_TILDE] = ACTIONS(1300), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1300), - [aux_sym__val_number_token2] = ACTIONS(1300), - [aux_sym__val_number_token3] = ACTIONS(1300), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__str_single_quotes] = ACTIONS(1300), - [sym__str_back_ticks] = ACTIONS(1300), - [aux_sym__record_key_token2] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [962] = { [sym_comment] = STATE(962), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1323), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_list] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_make] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_catch] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1323), - [anon_sym_BANG_EQ] = ACTIONS(1323), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1323), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1323), - [anon_sym_BANG_TILDE] = ACTIONS(1323), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1323), - [aux_sym__val_number_token2] = ACTIONS(1323), - [aux_sym__val_number_token3] = ACTIONS(1323), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1323), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym__str_single_quotes] = ACTIONS(1323), - [sym__str_back_ticks] = ACTIONS(1323), - [aux_sym__record_key_token2] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [963] = { [sym_comment] = STATE(963), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_list] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_new] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1327), - [anon_sym_BANG_TILDE] = ACTIONS(1327), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1327), - [aux_sym__val_number_token2] = ACTIONS(1327), - [aux_sym__val_number_token3] = ACTIONS(1327), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1327), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym__str_single_quotes] = ACTIONS(1327), - [sym__str_back_ticks] = ACTIONS(1327), - [aux_sym__record_key_token2] = ACTIONS(1325), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [964] = { [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_list] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_make] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_DOT] = ACTIONS(1334), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_catch] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_BANG_TILDE] = ACTIONS(1334), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1334), - [aux_sym__val_number_token2] = ACTIONS(1334), - [aux_sym__val_number_token3] = ACTIONS(1334), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1334), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym__str_single_quotes] = ACTIONS(1334), - [sym__str_back_ticks] = ACTIONS(1334), - [aux_sym__record_key_token2] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [965] = { [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1340), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_list] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_make] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_catch] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1340), - [anon_sym_BANG_EQ] = ACTIONS(1340), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1340), - [anon_sym_BANG_TILDE] = ACTIONS(1340), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1340), - [aux_sym__val_number_token2] = ACTIONS(1340), - [aux_sym__val_number_token3] = ACTIONS(1340), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1340), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym__str_single_quotes] = ACTIONS(1340), - [sym__str_back_ticks] = ACTIONS(1340), - [aux_sym__record_key_token2] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [966] = { [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1387), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_let_DASHenv] = ACTIONS(1387), + [anon_sym_mut] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [sym_cmd_identifier] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1387), + [anon_sym_export_DASHenv] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1387), + [anon_sym_list] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_make] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_source] = ACTIONS(1387), + [anon_sym_source_DASHenv] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), + [anon_sym_hide_DASHenv] = ACTIONS(1387), + [anon_sym_overlay] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_BANG_TILDE] = ACTIONS(1389), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1389), + [aux_sym__val_number_token2] = ACTIONS(1389), + [aux_sym__val_number_token3] = ACTIONS(1389), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym__str_single_quotes] = ACTIONS(1389), + [sym__str_back_ticks] = ACTIONS(1389), + [aux_sym__record_key_token2] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(3), }, [967] = { [sym_comment] = STATE(967), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1340), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_list] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_make] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_catch] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1340), - [anon_sym_BANG_EQ] = ACTIONS(1340), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1340), - [anon_sym_BANG_TILDE] = ACTIONS(1340), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1340), - [aux_sym__val_number_token2] = ACTIONS(1340), - [aux_sym__val_number_token3] = ACTIONS(1340), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1340), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym__str_single_quotes] = ACTIONS(1340), - [sym__str_back_ticks] = ACTIONS(1340), - [aux_sym__record_key_token2] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_list] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_make] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1385), + [anon_sym_BANG_TILDE] = ACTIONS(1385), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1253), + [aux_sym__val_number_token2] = ACTIONS(1253), + [aux_sym__val_number_token3] = ACTIONS(1253), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1253), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym__str_single_quotes] = ACTIONS(1253), + [sym__str_back_ticks] = ACTIONS(1253), + [aux_sym__record_key_token2] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(3), }, [968] = { [sym_comment] = STATE(968), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [969] = { [sym_comment] = STATE(969), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(3), }, [970] = { [sym_comment] = STATE(970), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_list] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_make] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_DOT] = ACTIONS(1344), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_catch] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1344), - [anon_sym_BANG_TILDE] = ACTIONS(1344), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1344), - [aux_sym__val_number_token2] = ACTIONS(1344), - [aux_sym__val_number_token3] = ACTIONS(1344), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1344), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym__str_single_quotes] = ACTIONS(1344), - [sym__str_back_ticks] = ACTIONS(1344), - [aux_sym__record_key_token2] = ACTIONS(1342), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [971] = { [sym_comment] = STATE(971), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_list] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_make] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_DOT] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_catch] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1348), - [anon_sym_BANG_TILDE] = ACTIONS(1348), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1348), - [aux_sym__val_number_token2] = ACTIONS(1348), - [aux_sym__val_number_token3] = ACTIONS(1348), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1348), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [aux_sym__record_key_token2] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [972] = { [sym_comment] = STATE(972), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_list] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_make] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_catch] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1035), - [anon_sym_BANG_TILDE] = ACTIONS(1035), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1035), - [aux_sym__val_number_token2] = ACTIONS(1035), - [aux_sym__val_number_token3] = ACTIONS(1035), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1035), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1035), - [sym__str_single_quotes] = ACTIONS(1035), - [sym__str_back_ticks] = ACTIONS(1035), - [aux_sym__record_key_token2] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [973] = { [sym_comment] = STATE(973), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1413), - [anon_sym_BANG_TILDE] = ACTIONS(1413), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1393), + [anon_sym_BANG_TILDE] = ACTIONS(1393), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [974] = { [sym_comment] = STATE(974), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_BANG_TILDE] = ACTIONS(1352), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1352), - [aux_sym__val_number_token2] = ACTIONS(1352), - [aux_sym__val_number_token3] = ACTIONS(1352), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1352), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym__str_single_quotes] = ACTIONS(1352), - [sym__str_back_ticks] = ACTIONS(1352), - [aux_sym__record_key_token2] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [975] = { [sym_comment] = STATE(975), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_list] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_make] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_BANG_TILDE] = ACTIONS(1356), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1356), - [aux_sym__val_number_token2] = ACTIONS(1356), - [aux_sym__val_number_token3] = ACTIONS(1356), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1356), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym__str_single_quotes] = ACTIONS(1356), - [sym__str_back_ticks] = ACTIONS(1356), - [aux_sym__record_key_token2] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1731), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, [976] = { [sym_comment] = STATE(976), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_list] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_make] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_catch] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_BANG_TILDE] = ACTIONS(1360), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1360), - [aux_sym__val_number_token2] = ACTIONS(1360), - [aux_sym__val_number_token3] = ACTIONS(1360), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1360), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym__str_single_quotes] = ACTIONS(1360), - [sym__str_back_ticks] = ACTIONS(1360), - [aux_sym__record_key_token2] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(3), - }, - [977] = { - [sym_comment] = STATE(977), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1007), - [anon_sym_BANG_TILDE] = ACTIONS(1007), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1007), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [aux_sym__record_key_token2] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(3), - }, - [978] = { - [sym_comment] = STATE(978), - [anon_sym_export] = ACTIONS(1405), - [anon_sym_alias] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_let_DASHenv] = ACTIONS(1405), - [anon_sym_mut] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [sym_cmd_identifier] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1405), - [anon_sym_export_DASHenv] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_module] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_error] = ACTIONS(1405), - [anon_sym_list] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_make] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_source] = ACTIONS(1405), - [anon_sym_source_DASHenv] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_hide] = ACTIONS(1405), - [anon_sym_hide_DASHenv] = ACTIONS(1405), - [anon_sym_overlay] = ACTIONS(1405), - [anon_sym_new] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1407), - [anon_sym_BANG_TILDE] = ACTIONS(1407), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1407), - [aux_sym__val_number_token2] = ACTIONS(1407), - [aux_sym__val_number_token3] = ACTIONS(1407), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1407), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym__str_single_quotes] = ACTIONS(1407), - [sym__str_back_ticks] = ACTIONS(1407), - [aux_sym__record_key_token2] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(3), - }, - [979] = { - [sym_comment] = STATE(979), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1713), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), [anon_sym_EQ_TILDE] = ACTIONS(1729), [anon_sym_BANG_TILDE] = ACTIONS(1729), [anon_sym_bit_DASHand] = ACTIONS(1731), [anon_sym_bit_DASHxor] = ACTIONS(1733), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_xor] = ACTIONS(1739), - [anon_sym_or] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, - [980] = { - [sym_comment] = STATE(980), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [977] = { + [sym_comment] = STATE(977), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1713), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), [anon_sym_EQ_TILDE] = ACTIONS(1729), [anon_sym_BANG_TILDE] = ACTIONS(1729), [anon_sym_bit_DASHand] = ACTIONS(1731), [anon_sym_bit_DASHxor] = ACTIONS(1733), [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_xor] = ACTIONS(1739), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, - [981] = { - [sym_comment] = STATE(981), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [978] = { + [sym_comment] = STATE(978), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1713), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), [anon_sym_EQ_TILDE] = ACTIONS(1729), [anon_sym_BANG_TILDE] = ACTIONS(1729), [anon_sym_bit_DASHand] = ACTIONS(1731), [anon_sym_bit_DASHxor] = ACTIONS(1733), [anon_sym_bit_DASHor] = ACTIONS(1735), [anon_sym_and] = ACTIONS(1737), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, - [982] = { - [sym_comment] = STATE(982), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [979] = { + [sym_comment] = STATE(979), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1713), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), [anon_sym_EQ_TILDE] = ACTIONS(1729), [anon_sym_BANG_TILDE] = ACTIONS(1729), [anon_sym_bit_DASHand] = ACTIONS(1731), [anon_sym_bit_DASHxor] = ACTIONS(1733), [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_and] = ACTIONS(1737), + [anon_sym_xor] = ACTIONS(1739), + [anon_sym_or] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(3), }, - [983] = { - [sym_comment] = STATE(983), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), + [980] = { + [sym_comment] = STATE(980), + [anon_sym_export] = ACTIONS(1391), + [anon_sym_alias] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_let_DASHenv] = ACTIONS(1391), + [anon_sym_mut] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [sym_cmd_identifier] = ACTIONS(1391), + [anon_sym_def] = ACTIONS(1391), + [anon_sym_export_DASHenv] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_module] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1391), + [anon_sym_list] = ACTIONS(1391), [anon_sym_GT] = ACTIONS(1713), [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_make] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_source] = ACTIONS(1391), + [anon_sym_source_DASHenv] = ACTIONS(1391), + [anon_sym_register] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), + [anon_sym_hide_DASHenv] = ACTIONS(1391), + [anon_sym_overlay] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(1721), [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_bit_DASHshl] = ACTIONS(1723), + [anon_sym_bit_DASHshr] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1727), + [anon_sym_starts_DASHwith] = ACTIONS(1727), + [anon_sym_ends_DASHwith] = ACTIONS(1727), [anon_sym_EQ_TILDE] = ACTIONS(1729), [anon_sym_BANG_TILDE] = ACTIONS(1729), [anon_sym_bit_DASHand] = ACTIONS(1731), [anon_sym_bit_DASHxor] = ACTIONS(1733), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_bit_DASHor] = ACTIONS(1735), + [anon_sym_and] = ACTIONS(1737), + [anon_sym_xor] = ACTIONS(1739), + [anon_sym_or] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1393), + [aux_sym__val_number_token2] = ACTIONS(1393), + [aux_sym__val_number_token3] = ACTIONS(1393), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1393), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1393), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [aux_sym__record_key_token2] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(3), + }, + [981] = { + [sym_comment] = STATE(981), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_alias] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_let_DASHenv] = ACTIONS(1421), + [anon_sym_mut] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [sym_cmd_identifier] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_export_DASHenv] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(1423), + [anon_sym_error] = ACTIONS(1421), + [anon_sym_list] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_make] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_catch] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_source] = ACTIONS(1421), + [anon_sym_source_DASHenv] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_hide] = ACTIONS(1421), + [anon_sym_hide_DASHenv] = ACTIONS(1421), + [anon_sym_overlay] = ACTIONS(1421), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1423), + [anon_sym_BANG_TILDE] = ACTIONS(1423), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1423), + [aux_sym__val_number_token2] = ACTIONS(1423), + [aux_sym__val_number_token3] = ACTIONS(1423), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1423), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym__str_single_quotes] = ACTIONS(1423), + [sym__str_back_ticks] = ACTIONS(1423), + [aux_sym__record_key_token2] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(3), + }, + [982] = { + [sym_comment] = STATE(982), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1343), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_list] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_make] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1343), + [anon_sym_BANG_TILDE] = ACTIONS(1343), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1343), + [aux_sym__val_number_token2] = ACTIONS(1343), + [aux_sym__val_number_token3] = ACTIONS(1343), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1343), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym__str_single_quotes] = ACTIONS(1343), + [sym__str_back_ticks] = ACTIONS(1343), + [aux_sym__record_key_token2] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(3), + }, + [983] = { + [sym_comment] = STATE(983), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1056), + [anon_sym_BANG_TILDE] = ACTIONS(1056), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1056), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [aux_sym__record_key_token2] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), }, [984] = { [sym_comment] = STATE(984), - [anon_sym_export] = ACTIONS(1411), - [anon_sym_alias] = ACTIONS(1411), - [anon_sym_let] = ACTIONS(1411), - [anon_sym_let_DASHenv] = ACTIONS(1411), - [anon_sym_mut] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [sym_cmd_identifier] = ACTIONS(1411), - [anon_sym_def] = ACTIONS(1411), - [anon_sym_export_DASHenv] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_module] = ACTIONS(1411), - [anon_sym_use] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1411), - [anon_sym_list] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1411), - [anon_sym_make] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1411), - [anon_sym_match] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1411), - [anon_sym_catch] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_source] = ACTIONS(1411), - [anon_sym_source_DASHenv] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_hide] = ACTIONS(1411), - [anon_sym_hide_DASHenv] = ACTIONS(1411), - [anon_sym_overlay] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1729), - [anon_sym_BANG_TILDE] = ACTIONS(1729), - [anon_sym_bit_DASHand] = ACTIONS(1731), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [aux_sym__record_key_token2] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_make] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_catch] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_new] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_BANG_TILDE] = ACTIONS(1223), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1223), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1223), + [sym__str_back_ticks] = ACTIONS(1223), + [aux_sym__record_key_token2] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(3), }, [985] = { - [sym_pipeline] = STATE(2378), - [sym_pipeline_last] = STATE(9483), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline_parenthesized] = STATE(2419), + [sym_pipeline_parenthesized_last] = STATE(10014), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(985), - [aux_sym_pipeline_repeat1] = STATE(1011), - [sym_cmd_identifier] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_DOLLAR] = ACTIONS(1743), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_where] = ACTIONS(179), [anon_sym_PLUS] = ACTIONS(417), @@ -175609,51 +175636,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, [986] = { - [sym_pipeline_parenthesized] = STATE(2418), - [sym_pipeline_parenthesized_last] = STATE(10038), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym_pipeline_parenthesized] = STATE(2420), + [sym_pipeline_parenthesized_last] = STATE(10025), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), [sym_comment] = STATE(986), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -175694,47 +175721,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [987] = { - [sym_pipeline] = STATE(2386), - [sym_pipeline_last] = STATE(9246), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline] = STATE(2389), + [sym_pipeline_last] = STATE(9447), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(987), - [aux_sym_pipeline_repeat1] = STATE(1011), + [aux_sym_pipeline_repeat1] = STATE(1008), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -175775,47 +175802,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [988] = { - [sym_pipeline] = STATE(2378), - [sym_pipeline_last] = STATE(10086), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [sym_pipeline] = STATE(2376), + [sym_pipeline_last] = STATE(10133), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), [sym_comment] = STATE(988), - [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym_pipeline_repeat1] = STATE(1007), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -175856,47 +175883,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [989] = { - [sym_pipeline] = STATE(2386), - [sym_pipeline_last] = STATE(9872), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [sym_pipeline] = STATE(2377), + [sym_pipeline_last] = STATE(10160), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), [sym_comment] = STATE(989), - [aux_sym_pipeline_repeat1] = STATE(1008), + [aux_sym_pipeline_repeat1] = STATE(1007), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -175937,47 +175964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [990] = { - [sym_pipeline] = STATE(2430), - [sym_pipeline_last] = STATE(9486), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline] = STATE(2377), + [sym_pipeline_last] = STATE(9529), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(990), - [aux_sym_pipeline_repeat1] = STATE(1011), + [aux_sym_pipeline_repeat1] = STATE(1008), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176019,46 +176046,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [991] = { [sym_pipeline] = STATE(2388), - [sym_pipeline_last] = STATE(9247), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8845), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline_last] = STATE(9410), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(991), - [aux_sym_pipeline_repeat1] = STATE(1011), + [aux_sym_pipeline_repeat1] = STATE(1008), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176099,47 +176126,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [992] = { - [sym_pipeline_parenthesized] = STATE(2412), - [sym_pipeline_parenthesized_last] = STATE(10074), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), + [sym_pipeline] = STATE(2376), + [sym_pipeline_last] = STATE(9528), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(8593), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(992), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), + [aux_sym_pipeline_repeat1] = STATE(1008), + [sym_cmd_identifier] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(403), + [anon_sym_return] = ACTIONS(405), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + }, + [993] = { + [sym_pipeline_parenthesized] = STATE(2393), + [sym_pipeline_parenthesized_last] = STATE(9976), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(993), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176179,48 +176287,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [993] = { - [sym_pipeline] = STATE(2388), - [sym_pipeline_last] = STATE(9876), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [994] = { + [sym_pipeline_parenthesized] = STATE(2392), + [sym_pipeline_parenthesized_last] = STATE(9970), + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(9901), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(994), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1010), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, + [995] = { + [sym_pipeline] = STATE(2389), + [sym_pipeline_last] = STATE(9904), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), - [sym_comment] = STATE(993), - [aux_sym_pipeline_repeat1] = STATE(1008), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), + [sym_comment] = STATE(995), + [aux_sym_pipeline_repeat1] = STATE(1007), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -176260,48 +176449,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [994] = { - [sym_pipeline] = STATE(2430), - [sym_pipeline_last] = STATE(10066), - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9452), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [996] = { + [sym_pipeline] = STATE(2388), + [sym_pipeline_last] = STATE(10056), + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9363), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), - [sym_comment] = STATE(994), - [aux_sym_pipeline_repeat1] = STATE(1008), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), + [sym_comment] = STATE(996), + [aux_sym_pipeline_repeat1] = STATE(1007), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -176341,129 +176530,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [995] = { - [sym_pipeline_parenthesized] = STATE(2373), - [sym_pipeline_parenthesized_last] = STATE(9979), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(995), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), - [sym_cmd_identifier] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(3), - }, - [996] = { - [sym_pipeline_parenthesized] = STATE(2425), - [sym_pipeline_parenthesized_last] = STATE(10024), - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(9928), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(996), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1009), + [997] = { + [sym_pipeline_parenthesized] = STATE(2419), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10811), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), + [sym_comment] = STATE(997), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1011), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176503,127 +176610,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [997] = { - [sym_pipeline] = STATE(2388), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9866), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(997), - [aux_sym_pipeline_repeat1] = STATE(1010), - [sym_cmd_identifier] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - }, [998] = { - [sym_pipeline] = STATE(2386), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9866), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline] = STATE(2376), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10031), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(998), - [aux_sym_pipeline_repeat1] = STATE(1010), + [aux_sym_pipeline_repeat1] = STATE(1009), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176664,126 +176691,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [999] = { - [sym_expr_parenthesized] = STATE(1514), - [sym__immediate_decimal] = STATE(1513), - [sym_val_variable] = STATE(1514), - [sym__var] = STATE(1289), + [sym_pipeline_parenthesized] = STATE(2420), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10811), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), [sym_comment] = STATE(999), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(1755), - [aux_sym__immediate_decimal_token1] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(1763), - [aux_sym_unquoted_token6] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(105), - }, - [1000] = { - [sym_pipeline_parenthesized] = STATE(2425), - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11382), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), - [sym_comment] = STATE(1000), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1006), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1011), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176823,47 +176770,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [1001] = { - [sym_pipeline_parenthesized] = STATE(2373), - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11382), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), - [sym_comment] = STATE(1001), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1006), + [1000] = { + [sym_pipeline_parenthesized] = STATE(2392), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10811), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), + [sym_comment] = STATE(1000), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1011), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176903,47 +176850,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [1002] = { - [sym_pipeline_parenthesized] = STATE(2412), - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11382), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), - [sym_comment] = STATE(1002), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1006), + [1001] = { + [sym_pipeline_parenthesized] = STATE(2393), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10811), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), + [sym_comment] = STATE(1001), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1011), [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -176983,60 +176930,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, - [1003] = { - [sym_pipeline_parenthesized] = STATE(2418), - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11382), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), - [sym_comment] = STATE(1003), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1006), - [sym_cmd_identifier] = ACTIONS(435), + [1002] = { + [sym_pipeline] = STATE(2388), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10031), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(1002), + [aux_sym_pipeline_repeat1] = STATE(1009), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_DOLLAR] = ACTIONS(1743), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_where] = ACTIONS(179), [anon_sym_PLUS] = ACTIONS(417), @@ -177060,50 +177007,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, + [1003] = { + [sym_expr_parenthesized] = STATE(1505), + [sym__immediate_decimal] = STATE(1533), + [sym_val_variable] = STATE(1505), + [sym__var] = STATE(1295), + [sym_comment] = STATE(1003), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(1755), + [aux_sym__immediate_decimal_token1] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1759), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(1763), + [aux_sym_unquoted_token6] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(105), + }, [1004] = { - [sym_pipeline] = STATE(2378), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9866), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline] = STATE(2389), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10031), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(1004), - [aux_sym_pipeline_repeat1] = STATE(1010), + [aux_sym_pipeline_repeat1] = STATE(1009), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -177144,46 +177171,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1005] = { - [sym_pipeline] = STATE(2430), - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9866), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym_pipeline] = STATE(2377), + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10031), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), [sym_comment] = STATE(1005), - [aux_sym_pipeline_repeat1] = STATE(1010), + [aux_sym_pipeline_repeat1] = STATE(1009), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -177224,203 +177251,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1006] = { - [sym__ctrl_expression_parenthesized] = STATE(9828), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(11009), - [sym_where_command] = STATE(9829), - [sym__expression] = STATE(9829), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9830), + [sym_expr_parenthesized] = STATE(1680), + [sym__immediate_decimal] = STATE(1559), + [sym_val_variable] = STATE(1680), + [sym__var] = STATE(1343), [sym_comment] = STATE(1006), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1018), - [sym_cmd_identifier] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(191), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [sym__str_single_quotes] = ACTIONS(201), - [sym__str_back_ticks] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(3), - }, - [1007] = { - [sym_expr_parenthesized] = STATE(1706), - [sym__immediate_decimal] = STATE(1541), - [sym_val_variable] = STATE(1706), - [sym__var] = STATE(1391), - [sym_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), [anon_sym_LPAREN] = ACTIONS(1767), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(823), + [anon_sym_error] = ACTIONS(827), [anon_sym_LT] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), [anon_sym_DOT2] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), [anon_sym_EQ2] = ACTIONS(1775), [aux_sym__immediate_decimal_token1] = ACTIONS(1777), [anon_sym_DASH2] = ACTIONS(1779), [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), [aux_sym_unquoted_token4] = ACTIONS(1783), [aux_sym_unquoted_token6] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(105), }, - [1008] = { - [sym__ctrl_expression] = STATE(9013), - [sym_ctrl_do] = STATE(9446), - [sym_ctrl_if] = STATE(9446), - [sym_ctrl_match] = STATE(9446), - [sym_ctrl_try] = STATE(9446), - [sym_ctrl_return] = STATE(9446), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(9628), - [sym_where_command] = STATE(9007), - [sym__expression] = STATE(9007), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), + [1007] = { + [sym__ctrl_expression] = STATE(8732), + [sym_ctrl_do] = STATE(9630), + [sym_ctrl_if] = STATE(9630), + [sym_ctrl_match] = STATE(9630), + [sym_ctrl_try] = STATE(9630), + [sym_ctrl_return] = STATE(9630), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9616), + [sym_where_command] = STATE(8904), + [sym__expression] = STATE(8904), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_command] = STATE(9007), - [sym_comment] = STATE(1008), - [aux_sym_pipeline_repeat1] = STATE(1019), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym_command] = STATE(8904), + [sym_comment] = STATE(1007), + [aux_sym_pipeline_repeat1] = STATE(1012), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -177460,59 +177408,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [1009] = { - [sym__ctrl_expression_parenthesized] = STATE(8791), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_pipe_element_parenthesized_last] = STATE(10154), - [sym_where_command] = STATE(8744), - [sym__expression] = STATE(8744), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(8615), - [sym_comment] = STATE(1009), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1018), - [sym_cmd_identifier] = ACTIONS(435), + [1008] = { + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(9007), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(1008), + [aux_sym_pipeline_repeat1] = STATE(1012), + [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_DOLLAR] = ACTIONS(1743), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(439), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(441), + [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(443), + [anon_sym_try] = ACTIONS(403), [anon_sym_return] = ACTIONS(405), [anon_sym_where] = ACTIONS(179), [anon_sym_PLUS] = ACTIONS(417), @@ -177536,49 +177484,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, - [1010] = { - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(10087), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), - [sym_comment] = STATE(1010), - [aux_sym_pipeline_repeat1] = STATE(1019), + [1009] = { + [sym__ctrl_expression] = STATE(8367), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_pipe_element_last] = STATE(10049), + [sym_where_command] = STATE(8350), + [sym__expression] = STATE(8350), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(8350), + [sym_comment] = STATE(1009), + [aux_sym_pipeline_repeat1] = STATE(1012), [sym_cmd_identifier] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -177618,59 +177566,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), }, + [1010] = { + [sym__ctrl_expression_parenthesized] = STATE(8695), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10037), + [sym_where_command] = STATE(8946), + [sym__expression] = STATE(8946), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(8949), + [sym_comment] = STATE(1010), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1014), + [sym_cmd_identifier] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(163), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(405), + [anon_sym_where] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(191), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [sym__str_single_quotes] = ACTIONS(201), + [sym__str_back_ticks] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(3), + }, [1011] = { - [sym__ctrl_expression] = STATE(8418), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_pipe_element_last] = STATE(8762), - [sym_where_command] = STATE(8417), - [sym__expression] = STATE(8417), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(8417), + [sym__ctrl_expression_parenthesized] = STATE(9681), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_pipe_element_parenthesized_last] = STATE(10801), + [sym_where_command] = STATE(9682), + [sym__expression] = STATE(9682), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(9685), [sym_comment] = STATE(1011), - [aux_sym_pipeline_repeat1] = STATE(1019), - [sym_cmd_identifier] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1014), + [sym_cmd_identifier] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_DOLLAR] = ACTIONS(1743), [anon_sym_DASH] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(439), [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), + [anon_sym_if] = ACTIONS(441), [anon_sym_match] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(163), - [anon_sym_try] = ACTIONS(403), + [anon_sym_try] = ACTIONS(443), [anon_sym_return] = ACTIONS(405), [anon_sym_where] = ACTIONS(179), [anon_sym_PLUS] = ACTIONS(417), @@ -177694,635 +177721,943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(447), [anon_sym_POUND] = ACTIONS(3), }, [1012] = { - [sym_expr_parenthesized] = STATE(1639), - [sym__immediate_decimal] = STATE(1635), - [sym_val_variable] = STATE(1639), - [sym__var] = STATE(1266), + [sym__ctrl_expression] = STATE(10058), + [sym_ctrl_do] = STATE(8589), + [sym_ctrl_if] = STATE(8589), + [sym_ctrl_match] = STATE(8589), + [sym_ctrl_try] = STATE(8589), + [sym_ctrl_return] = STATE(8589), + [sym_pipe_element] = STATE(4694), + [sym_where_command] = STATE(9876), + [sym__expression] = STATE(9876), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym_command] = STATE(9876), [sym_comment] = STATE(1012), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), + [aux_sym_pipeline_repeat1] = STATE(1012), [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_EQ2] = ACTIONS(1797), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_where] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_not] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1844), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [aux_sym__val_number_token4] = ACTIONS(1850), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1853), + [anon_sym_0o] = ACTIONS(1853), + [anon_sym_0x] = ACTIONS(1853), + [sym_val_date] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1862), + [sym__str_back_ticks] = ACTIONS(1862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1868), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(3), }, [1013] = { - [sym_expr_parenthesized] = STATE(1626), - [sym__immediate_decimal] = STATE(1623), - [sym_val_variable] = STATE(1626), - [sym__var] = STATE(1266), + [sym_expr_parenthesized] = STATE(1536), + [sym__immediate_decimal] = STATE(1470), + [sym_val_variable] = STATE(1536), + [sym__var] = STATE(1295), [sym_comment] = STATE(1013), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1874), [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_not] = ACTIONS(1805), - [anon_sym_EQ2] = ACTIONS(1811), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1805), - [aux_sym__val_number_token2] = ACTIONS(1805), - [aux_sym__val_number_token3] = ACTIONS(1805), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1805), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_0b] = ACTIONS(1805), - [anon_sym_0o] = ACTIONS(1805), - [anon_sym_0x] = ACTIONS(1805), - [sym_val_date] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym__str_single_quotes] = ACTIONS(1805), - [sym__str_back_ticks] = ACTIONS(1805), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_as] = ACTIONS(1874), + [anon_sym_where] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_not] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token1] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1759), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1874), + [anon_sym_0o] = ACTIONS(1874), + [anon_sym_0x] = ACTIONS(1874), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(105), }, [1014] = { - [sym_expr_parenthesized] = STATE(1620), - [sym__immediate_decimal] = STATE(1618), - [sym_val_variable] = STATE(1620), - [sym__var] = STATE(1266), + [sym__ctrl_expression_parenthesized] = STATE(10013), + [sym_ctrl_do] = STATE(9583), + [sym_ctrl_if_parenthesized] = STATE(9583), + [sym_ctrl_match] = STATE(9583), + [sym_ctrl_try_parenthesized] = STATE(9583), + [sym_ctrl_return] = STATE(9583), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command] = STATE(10017), + [sym__expression] = STATE(10017), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__command_parenthesized_body] = STATE(10166), [sym_comment] = STATE(1014), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_not] = ACTIONS(1813), - [anon_sym_EQ2] = ACTIONS(1819), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1813), - [aux_sym__val_number_token2] = ACTIONS(1813), - [aux_sym__val_number_token3] = ACTIONS(1813), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1813), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_0b] = ACTIONS(1813), - [anon_sym_0o] = ACTIONS(1813), - [anon_sym_0x] = ACTIONS(1813), - [sym_val_date] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym__str_single_quotes] = ACTIONS(1813), - [sym__str_back_ticks] = ACTIONS(1813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(1014), + [sym_cmd_identifier] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_where] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_not] = ACTIONS(1932), + [anon_sym_null] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [aux_sym__val_number_decimal_token1] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1947), + [aux_sym__val_number_token5] = ACTIONS(1944), + [aux_sym__val_number_token6] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1950), + [anon_sym_0o] = ACTIONS(1950), + [anon_sym_0x] = ACTIONS(1950), + [sym_val_date] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(1956), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(3), }, [1015] = { - [sym_expr_parenthesized] = STATE(1617), - [sym__immediate_decimal] = STATE(1616), - [sym_val_variable] = STATE(1617), - [sym__var] = STATE(1266), + [sym_expr_parenthesized] = STATE(1477), + [sym__immediate_decimal] = STATE(1478), + [sym_val_variable] = STATE(1477), + [sym__var] = STATE(1295), [sym_comment] = STATE(1015), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1971), [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_as] = ACTIONS(1821), - [anon_sym_where] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(1827), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1821), - [aux_sym__val_number_token2] = ACTIONS(1821), - [aux_sym__val_number_token3] = ACTIONS(1821), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1821), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_0b] = ACTIONS(1821), - [anon_sym_0o] = ACTIONS(1821), - [anon_sym_0x] = ACTIONS(1821), - [sym_val_date] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__str_single_quotes] = ACTIONS(1821), - [sym__str_back_ticks] = ACTIONS(1821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_as] = ACTIONS(1971), + [anon_sym_where] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(1977), + [aux_sym__immediate_decimal_token1] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1759), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), [anon_sym_POUND] = ACTIONS(105), }, [1016] = { - [sym_expr_parenthesized] = STATE(1510), - [sym__immediate_decimal] = STATE(1509), - [sym_val_variable] = STATE(1510), - [sym__var] = STATE(1289), + [sym_expr_parenthesized] = STATE(1595), + [sym__immediate_decimal] = STATE(1600), + [sym_val_variable] = STATE(1595), + [sym__var] = STATE(1310), [sym_comment] = STATE(1016), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1981), [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_where] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_not] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(1837), - [aux_sym__immediate_decimal_token1] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_EQ2] = ACTIONS(1991), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(105), }, [1017] = { - [sym_expr_parenthesized] = STATE(1508), - [sym__immediate_decimal] = STATE(1507), - [sym_val_variable] = STATE(1508), - [sym__var] = STATE(1289), + [sym_expr_parenthesized] = STATE(1622), + [sym__immediate_decimal] = STATE(1635), + [sym_val_variable] = STATE(1622), + [sym__var] = STATE(1310), [sym_comment] = STATE(1017), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1999), [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_where] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(1845), - [aux_sym__immediate_decimal_token1] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_EQ2] = ACTIONS(2005), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(105), }, [1018] = { - [sym__ctrl_expression_parenthesized] = STATE(9916), - [sym_ctrl_do] = STATE(9750), - [sym_ctrl_if_parenthesized] = STATE(9750), - [sym_ctrl_match] = STATE(9750), - [sym_ctrl_try_parenthesized] = STATE(9750), - [sym_ctrl_return] = STATE(9750), - [sym_pipe_element_parenthesized] = STATE(4605), - [sym_where_command] = STATE(9924), - [sym__expression] = STATE(9924), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__command_parenthesized_body] = STATE(9925), + [sym_expr_parenthesized] = STATE(1645), + [sym__immediate_decimal] = STATE(1646), + [sym_val_variable] = STATE(1645), + [sym__var] = STATE(1310), [sym_comment] = STATE(1018), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(1018), - [sym_cmd_identifier] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1882), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_not] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1912), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1912), - [anon_sym_0b] = ACTIONS(1915), - [anon_sym_0o] = ACTIONS(1915), - [anon_sym_0x] = ACTIONS(1915), - [sym_val_date] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1924), - [sym__str_back_ticks] = ACTIONS(1924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_LF] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_where] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(2007), + [anon_sym_EQ2] = ACTIONS(2013), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_CARET] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(105), }, [1019] = { - [sym__ctrl_expression] = STATE(9859), - [sym_ctrl_do] = STATE(8813), - [sym_ctrl_if] = STATE(8813), - [sym_ctrl_match] = STATE(8813), - [sym_ctrl_try] = STATE(8813), - [sym_ctrl_return] = STATE(8813), - [sym_pipe_element] = STATE(4669), - [sym_where_command] = STATE(9860), - [sym__expression] = STATE(9860), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym_command] = STATE(9860), + [sym_expr_parenthesized] = STATE(1652), + [sym__immediate_decimal] = STATE(1653), + [sym_val_variable] = STATE(1652), + [sym__var] = STATE(1310), [sym_comment] = STATE(1019), - [aux_sym_pipeline_repeat1] = STATE(1019), - [sym_cmd_identifier] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_where] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_not] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1996), - [aux_sym__val_number_token2] = ACTIONS(1996), - [aux_sym__val_number_token3] = ACTIONS(1996), - [aux_sym__val_number_token4] = ACTIONS(1999), - [aux_sym__val_number_token5] = ACTIONS(1996), - [aux_sym__val_number_token6] = ACTIONS(1999), - [anon_sym_0b] = ACTIONS(2002), - [anon_sym_0o] = ACTIONS(2002), - [anon_sym_0x] = ACTIONS(2002), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_where] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(2021), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2015), + [anon_sym_0o] = ACTIONS(2015), + [anon_sym_0x] = ACTIONS(2015), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(105), }, [1020] = { + [sym_expr_parenthesized] = STATE(1658), + [sym__immediate_decimal] = STATE(1659), + [sym_val_variable] = STATE(1658), + [sym__var] = STATE(1310), [sym_comment] = STATE(1020), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(105), + }, + [1021] = { + [sym_comment] = STATE(1021), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(2025), + [aux_sym__immediate_decimal_token2] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [aux_sym_unquoted_token1] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [1022] = { + [sym_expr_parenthesized] = STATE(1601), + [sym__immediate_decimal] = STATE(1633), + [sym_val_variable] = STATE(1601), + [sym__var] = STATE(1343), + [sym_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_as] = ACTIONS(1971), + [anon_sym_where] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(2033), + [aux_sym__immediate_decimal_token1] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(105), + }, + [1023] = { + [sym_expr_parenthesized] = STATE(1656), + [sym__immediate_decimal] = STATE(1657), + [sym_val_variable] = STATE(1656), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1023), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(105), + }, + [1024] = { + [sym_comment] = STATE(1024), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(807), @@ -178363,8 +178698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(2023), - [aux_sym__immediate_decimal_token2] = ACTIONS(2025), + [aux_sym__immediate_decimal_token1] = ACTIONS(2037), + [aux_sym__immediate_decimal_token2] = ACTIONS(2039), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -178398,547 +178733,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1021] = { - [sym_expr_parenthesized] = STATE(1686), - [sym__immediate_decimal] = STATE(1688), - [sym_val_variable] = STATE(1686), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1021), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(105), - }, - [1022] = { - [sym_expr_parenthesized] = STATE(1684), - [sym__immediate_decimal] = STATE(1685), - [sym_val_variable] = STATE(1684), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1022), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(105), - }, - [1023] = { - [sym_expr_parenthesized] = STATE(1582), - [sym__immediate_decimal] = STATE(1584), - [sym_val_variable] = STATE(1582), - [sym__var] = STATE(1391), - [sym_comment] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_where] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_not] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(2033), - [aux_sym__immediate_decimal_token1] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(105), - }, - [1024] = { - [sym_expr_parenthesized] = STATE(1606), - [sym__immediate_decimal] = STATE(1612), - [sym_val_variable] = STATE(1606), - [sym__var] = STATE(1391), - [sym_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_where] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(2037), - [aux_sym__immediate_decimal_token1] = ACTIONS(2039), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(105), - }, [1025] = { - [sym_expr_parenthesized] = STATE(1836), - [sym__immediate_decimal] = STATE(1837), - [sym_val_variable] = STATE(1836), - [sym__var] = STATE(1360), + [sym_expr_parenthesized] = STATE(1912), + [sym__immediate_decimal] = STATE(1913), + [sym_val_variable] = STATE(1912), + [sym__var] = STATE(1371), [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1999), [anon_sym_LT] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1999), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), [anon_sym_EQ2] = ACTIONS(2047), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(105), }, [1026] = { - [sym_expr_parenthesized] = STATE(1840), - [sym__immediate_decimal] = STATE(1843), - [sym_val_variable] = STATE(1840), - [sym__var] = STATE(1360), + [sym_expr_parenthesized] = STATE(1914), + [sym__immediate_decimal] = STATE(1915), + [sym_val_variable] = STATE(1914), + [sym__var] = STATE(1371), [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), + [ts_builtin_sym_end] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_LF] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(2007), [anon_sym_LT] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2007), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_not] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_where] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(2007), [anon_sym_EQ2] = ACTIONS(2057), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1805), - [aux_sym__val_number_token2] = ACTIONS(1805), - [aux_sym__val_number_token3] = ACTIONS(1805), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1805), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_0b] = ACTIONS(1805), - [anon_sym_0o] = ACTIONS(1805), - [anon_sym_0x] = ACTIONS(1805), - [sym_val_date] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym__str_single_quotes] = ACTIONS(1805), - [sym__str_back_ticks] = ACTIONS(1805), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_CARET] = ACTIONS(2007), [anon_sym_POUND] = ACTIONS(105), }, [1027] = { - [sym_expr_parenthesized] = STATE(1844), - [sym__immediate_decimal] = STATE(1845), - [sym_val_variable] = STATE(1844), - [sym__var] = STATE(1360), + [sym_expr_parenthesized] = STATE(1910), + [sym__immediate_decimal] = STATE(1911), + [sym_val_variable] = STATE(1910), + [sym__var] = STATE(1371), [sym_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(1983), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1813), + [anon_sym_error] = ACTIONS(1981), [anon_sym_LT] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_not] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), [anon_sym_EQ2] = ACTIONS(2061), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1813), - [aux_sym__val_number_token2] = ACTIONS(1813), - [aux_sym__val_number_token3] = ACTIONS(1813), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1813), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_0b] = ACTIONS(1813), - [anon_sym_0o] = ACTIONS(1813), - [anon_sym_0x] = ACTIONS(1813), - [sym_val_date] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym__str_single_quotes] = ACTIONS(1813), - [sym__str_back_ticks] = ACTIONS(1813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(105), }, [1028] = { + [sym_expr_parenthesized] = STATE(1916), + [sym__immediate_decimal] = STATE(1917), + [sym_val_variable] = STATE(1916), + [sym__var] = STATE(1371), [sym_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2017), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_where] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(2065), + [aux_sym__immediate_decimal_token1] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2015), + [anon_sym_0o] = ACTIONS(2015), + [anon_sym_0x] = ACTIONS(2015), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(105), + }, + [1029] = { + [sym_expr_parenthesized] = STATE(1590), + [sym__immediate_decimal] = STATE(1598), + [sym_val_variable] = STATE(1590), + [sym__var] = STATE(1343), + [sym_comment] = STATE(1029), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_as] = ACTIONS(1874), + [anon_sym_where] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_not] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(2069), + [aux_sym__immediate_decimal_token1] = ACTIONS(1777), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1874), + [anon_sym_0o] = ACTIONS(1874), + [anon_sym_0x] = ACTIONS(1874), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(105), + }, + [1030] = { + [sym_expr_parenthesized] = STATE(1706), + [sym__immediate_decimal] = STATE(1712), + [sym_val_variable] = STATE(1706), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1030), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [sym_cmd_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2071), + [anon_sym_where] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_not] = ACTIONS(2071), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [aux_sym__val_number_token4] = ACTIONS(2071), + [aux_sym__val_number_token5] = ACTIONS(2071), + [aux_sym__val_number_token6] = ACTIONS(2071), + [anon_sym_0b] = ACTIONS(2071), + [anon_sym_0o] = ACTIONS(2071), + [anon_sym_0x] = ACTIONS(2071), + [sym_val_date] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [sym__str_single_quotes] = ACTIONS(2071), + [sym__str_back_ticks] = ACTIONS(2071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(105), + }, + [1031] = { + [sym_expr_parenthesized] = STATE(1684), + [sym__immediate_decimal] = STATE(1687), + [sym_val_variable] = STATE(1684), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1031), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [sym_cmd_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_not] = ACTIONS(2075), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_token1] = ACTIONS(2075), + [aux_sym__val_number_token2] = ACTIONS(2075), + [aux_sym__val_number_token3] = ACTIONS(2075), + [aux_sym__val_number_token4] = ACTIONS(2075), + [aux_sym__val_number_token5] = ACTIONS(2075), + [aux_sym__val_number_token6] = ACTIONS(2075), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2075), + [anon_sym_0x] = ACTIONS(2075), + [sym_val_date] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2075), + [sym__str_back_ticks] = ACTIONS(2075), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(105), + }, + [1032] = { + [sym_expr_parenthesized] = STATE(1690), + [sym__immediate_decimal] = STATE(1704), + [sym_val_variable] = STATE(1690), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1032), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [sym_cmd_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2079), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [aux_sym__val_number_token4] = ACTIONS(2079), + [aux_sym__val_number_token5] = ACTIONS(2079), + [aux_sym__val_number_token6] = ACTIONS(2079), + [anon_sym_0b] = ACTIONS(2079), + [anon_sym_0o] = ACTIONS(2079), + [anon_sym_0x] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(105), + }, + [1033] = { + [sym_comment] = STATE(1033), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(815), @@ -178953,7 +179362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(2083), [anon_sym_STAR] = ACTIONS(815), [anon_sym_STAR_STAR] = ACTIONS(815), [anon_sym_PLUS_PLUS] = ACTIONS(815), @@ -178979,8 +179388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(2063), - [aux_sym__immediate_decimal_token2] = ACTIONS(2065), + [aux_sym__immediate_decimal_token2] = ACTIONS(2027), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -179014,545 +179422,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1029] = { - [sym_expr_parenthesized] = STATE(1846), - [sym__immediate_decimal] = STATE(1847), - [sym_val_variable] = STATE(1846), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_as] = ACTIONS(1821), - [anon_sym_where] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(2069), - [aux_sym__immediate_decimal_token1] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1821), - [aux_sym__val_number_token2] = ACTIONS(1821), - [aux_sym__val_number_token3] = ACTIONS(1821), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1821), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_0b] = ACTIONS(1821), - [anon_sym_0o] = ACTIONS(1821), - [anon_sym_0x] = ACTIONS(1821), - [sym_val_date] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__str_single_quotes] = ACTIONS(1821), - [sym__str_back_ticks] = ACTIONS(1821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(105), - }, - [1030] = { - [sym_expr_parenthesized] = STATE(2029), - [sym__immediate_decimal] = STATE(2035), - [sym_val_variable] = STATE(2029), - [sym__var] = STATE(1506), - [sym_comment] = STATE(1030), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_not] = ACTIONS(1813), - [anon_sym_EQ2] = ACTIONS(2079), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1813), - [aux_sym__val_number_token2] = ACTIONS(1813), - [aux_sym__val_number_token3] = ACTIONS(1813), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1813), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_0b] = ACTIONS(1813), - [anon_sym_0o] = ACTIONS(1813), - [anon_sym_0x] = ACTIONS(1813), - [sym_val_date] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym__str_single_quotes] = ACTIONS(1813), - [sym__str_back_ticks] = ACTIONS(1813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(105), - }, - [1031] = { - [sym_expr_parenthesized] = STATE(1567), - [sym__immediate_decimal] = STATE(1559), - [sym_val_variable] = STATE(1567), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1031), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [sym_cmd_identifier] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_not] = ACTIONS(2087), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [aux_sym__val_number_token4] = ACTIONS(2087), - [aux_sym__val_number_token5] = ACTIONS(2087), - [aux_sym__val_number_token6] = ACTIONS(2087), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(105), - }, - [1032] = { - [sym_expr_parenthesized] = STATE(1577), - [sym__immediate_decimal] = STATE(1576), - [sym_val_variable] = STATE(1577), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1032), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_alias] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_let_DASHenv] = ACTIONS(2091), - [anon_sym_mut] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2091), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_export_DASHenv] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_source] = ACTIONS(2091), - [anon_sym_source_DASHenv] = ACTIONS(2091), - [anon_sym_register] = ACTIONS(2091), - [anon_sym_hide] = ACTIONS(2091), - [anon_sym_hide_DASHenv] = ACTIONS(2091), - [anon_sym_overlay] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2091), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2091), - [anon_sym_0o] = ACTIONS(2091), - [anon_sym_0x] = ACTIONS(2091), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(105), - }, - [1033] = { - [sym_expr_parenthesized] = STATE(1581), - [sym__immediate_decimal] = STATE(1578), - [sym_val_variable] = STATE(1581), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1033), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_cmd_identifier] = ACTIONS(2095), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2095), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(105), - }, [1034] = { [sym_comment] = STATE(1034), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_err_GT] = ACTIONS(807), - [anon_sym_out_GT] = ACTIONS(807), - [anon_sym_e_GT] = ACTIONS(807), - [anon_sym_o_GT] = ACTIONS(807), - [anon_sym_err_PLUSout_GT] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT] = ACTIONS(807), - [anon_sym_o_PLUSe_GT] = ACTIONS(807), - [anon_sym_e_PLUSo_GT] = ACTIONS(807), - [aux_sym_unquoted_token1] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(2086), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [1035] = { - [sym_expr_parenthesized] = STATE(2036), - [sym__immediate_decimal] = STATE(2042), - [sym_val_variable] = STATE(2036), - [sym__var] = STATE(1506), [sym_comment] = STATE(1035), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_where] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(2104), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1821), - [aux_sym__val_number_token2] = ACTIONS(1821), - [aux_sym__val_number_token3] = ACTIONS(1821), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1821), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_0b] = ACTIONS(1821), - [anon_sym_0o] = ACTIONS(1821), - [anon_sym_0x] = ACTIONS(1821), - [sym_val_date] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__str_single_quotes] = ACTIONS(1821), - [sym__str_back_ticks] = ACTIONS(1821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [aux_sym_unquoted_token1] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1036] = { - [sym_expr_parenthesized] = STATE(1587), - [sym__immediate_decimal] = STATE(1586), - [sym_val_variable] = STATE(1587), - [sym__var] = STATE(1266), + [sym_expr_parenthesized] = STATE(1882), + [sym__immediate_decimal] = STATE(1883), + [sym_val_variable] = STATE(1882), + [sym__var] = STATE(1371), [sym_comment] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_DOT2] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [aux_sym__immediate_decimal_token1] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(105), + }, + [1037] = { + [sym_expr_parenthesized] = STATE(1931), + [sym__immediate_decimal] = STATE(1932), + [sym_val_variable] = STATE(1931), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1037), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_where] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(2098), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2015), + [anon_sym_0o] = ACTIONS(2015), + [anon_sym_0x] = ACTIONS(2015), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(105), + }, + [1038] = { + [sym_expr_parenthesized] = STATE(1671), + [sym__immediate_decimal] = STATE(1672), + [sym_val_variable] = STATE(1671), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1038), [anon_sym_export] = ACTIONS(2106), [anon_sym_alias] = ACTIONS(2106), [anon_sym_let] = ACTIONS(2106), @@ -179568,7 +179747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2106), [anon_sym_use] = ACTIONS(2106), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2106), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2106), @@ -179585,7 +179764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2106), [anon_sym_RBRACE] = ACTIONS(2106), [anon_sym_DOT] = ACTIONS(2106), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2106), [anon_sym_return] = ACTIONS(2106), [anon_sym_source] = ACTIONS(2106), @@ -179598,9 +179777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2106), [anon_sym_PLUS] = ACTIONS(2106), [anon_sym_not] = ACTIONS(2106), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2106), [anon_sym_true] = ACTIONS(2106), [anon_sym_false] = ACTIONS(2106), @@ -179623,12 +179802,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(105), }, - [1037] = { - [sym_expr_parenthesized] = STATE(1609), - [sym__immediate_decimal] = STATE(1594), - [sym_val_variable] = STATE(1609), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1037), + [1039] = { + [sym_expr_parenthesized] = STATE(1673), + [sym__immediate_decimal] = STATE(1677), + [sym_val_variable] = STATE(1673), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1039), [anon_sym_export] = ACTIONS(2110), [anon_sym_alias] = ACTIONS(2110), [anon_sym_let] = ACTIONS(2110), @@ -179644,7 +179823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2110), [anon_sym_use] = ACTIONS(2110), [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2110), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2110), @@ -179661,7 +179840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_RBRACE] = ACTIONS(2110), [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2110), [anon_sym_return] = ACTIONS(2110), [anon_sym_source] = ACTIONS(2110), @@ -179674,9 +179853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2110), [anon_sym_PLUS] = ACTIONS(2110), [anon_sym_not] = ACTIONS(2110), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2110), [anon_sym_true] = ACTIONS(2110), [anon_sym_false] = ACTIONS(2110), @@ -179699,88 +179878,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(105), }, - [1038] = { - [sym_comment] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(2114), - [aux_sym__immediate_decimal_token2] = ACTIONS(2116), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_err_GT] = ACTIONS(815), - [anon_sym_out_GT] = ACTIONS(815), - [anon_sym_e_GT] = ACTIONS(815), - [anon_sym_o_GT] = ACTIONS(815), - [anon_sym_err_PLUSout_GT] = ACTIONS(815), - [anon_sym_out_PLUSerr_GT] = ACTIONS(815), - [anon_sym_o_PLUSe_GT] = ACTIONS(815), - [anon_sym_e_PLUSo_GT] = ACTIONS(815), - [aux_sym_unquoted_token1] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), + [1040] = { + [sym_expr_parenthesized] = STATE(1681), + [sym__immediate_decimal] = STATE(1686), + [sym_val_variable] = STATE(1681), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1040), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_alias] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_let_DASHenv] = ACTIONS(2114), + [anon_sym_mut] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [sym_cmd_identifier] = ACTIONS(2114), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_def] = ACTIONS(2114), + [anon_sym_export_DASHenv] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_DOT] = ACTIONS(2114), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_source] = ACTIONS(2114), + [anon_sym_source_DASHenv] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2114), + [anon_sym_hide] = ACTIONS(2114), + [anon_sym_hide_DASHenv] = ACTIONS(2114), + [anon_sym_overlay] = ACTIONS(2114), + [anon_sym_as] = ACTIONS(2114), + [anon_sym_where] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_not] = ACTIONS(2114), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym__val_number_decimal_token1] = ACTIONS(2114), + [aux_sym__val_number_token1] = ACTIONS(2114), + [aux_sym__val_number_token2] = ACTIONS(2114), + [aux_sym__val_number_token3] = ACTIONS(2114), + [aux_sym__val_number_token4] = ACTIONS(2114), + [aux_sym__val_number_token5] = ACTIONS(2114), + [aux_sym__val_number_token6] = ACTIONS(2114), + [anon_sym_0b] = ACTIONS(2114), + [anon_sym_0o] = ACTIONS(2114), + [anon_sym_0x] = ACTIONS(2114), + [sym_val_date] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym__str_single_quotes] = ACTIONS(2114), + [sym__str_back_ticks] = ACTIONS(2114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(105), }, - [1039] = { - [sym_expr_parenthesized] = STATE(1613), - [sym__immediate_decimal] = STATE(1611), - [sym_val_variable] = STATE(1613), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1039), + [1041] = { + [sym_expr_parenthesized] = STATE(1692), + [sym__immediate_decimal] = STATE(1693), + [sym_val_variable] = STATE(1692), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1041), [anon_sym_export] = ACTIONS(2118), [anon_sym_alias] = ACTIONS(2118), [anon_sym_let] = ACTIONS(2118), @@ -179796,7 +179975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2118), [anon_sym_use] = ACTIONS(2118), [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2118), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2118), @@ -179813,7 +179992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2118), [anon_sym_RBRACE] = ACTIONS(2118), [anon_sym_DOT] = ACTIONS(2118), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2118), [anon_sym_return] = ACTIONS(2118), [anon_sym_source] = ACTIONS(2118), @@ -179826,9 +180005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2118), [anon_sym_PLUS] = ACTIONS(2118), [anon_sym_not] = ACTIONS(2118), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2118), [anon_sym_true] = ACTIONS(2118), [anon_sym_false] = ACTIONS(2118), @@ -179851,12 +180030,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(105), }, - [1040] = { - [sym_expr_parenthesized] = STATE(1574), - [sym__immediate_decimal] = STATE(1572), - [sym_val_variable] = STATE(1574), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1040), + [1042] = { + [sym_expr_parenthesized] = STATE(1695), + [sym__immediate_decimal] = STATE(1710), + [sym_val_variable] = STATE(1695), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1042), [anon_sym_export] = ACTIONS(2122), [anon_sym_alias] = ACTIONS(2122), [anon_sym_let] = ACTIONS(2122), @@ -179872,7 +180051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2122), [anon_sym_use] = ACTIONS(2122), [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2122), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2122), @@ -179889,7 +180068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2122), [anon_sym_RBRACE] = ACTIONS(2122), [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2122), [anon_sym_return] = ACTIONS(2122), [anon_sym_source] = ACTIONS(2122), @@ -179902,9 +180081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2122), [anon_sym_PLUS] = ACTIONS(2122), [anon_sym_not] = ACTIONS(2122), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2122), [anon_sym_true] = ACTIONS(2122), [anon_sym_false] = ACTIONS(2122), @@ -179927,12 +180106,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2122), [anon_sym_POUND] = ACTIONS(105), }, - [1041] = { - [sym_expr_parenthesized] = STATE(1703), - [sym__immediate_decimal] = STATE(1707), - [sym_val_variable] = STATE(1703), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1041), + [1043] = { + [sym_expr_parenthesized] = STATE(1724), + [sym__immediate_decimal] = STATE(1638), + [sym_val_variable] = STATE(1724), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1043), [anon_sym_export] = ACTIONS(2126), [anon_sym_alias] = ACTIONS(2126), [anon_sym_let] = ACTIONS(2126), @@ -179948,7 +180127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2126), [anon_sym_use] = ACTIONS(2126), [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2126), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2126), @@ -179965,7 +180144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2126), [anon_sym_RBRACE] = ACTIONS(2126), [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2126), [anon_sym_return] = ACTIONS(2126), [anon_sym_source] = ACTIONS(2126), @@ -179978,9 +180157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2126), [anon_sym_PLUS] = ACTIONS(2126), [anon_sym_not] = ACTIONS(2126), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2126), [anon_sym_true] = ACTIONS(2126), [anon_sym_false] = ACTIONS(2126), @@ -180003,12 +180182,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2126), [anon_sym_POUND] = ACTIONS(105), }, - [1042] = { - [sym_expr_parenthesized] = STATE(1571), - [sym__immediate_decimal] = STATE(1570), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1266), - [sym_comment] = STATE(1042), + [1044] = { + [sym_expr_parenthesized] = STATE(1539), + [sym__immediate_decimal] = STATE(1543), + [sym_val_variable] = STATE(1539), + [sym__var] = STATE(1310), + [sym_comment] = STATE(1044), [anon_sym_export] = ACTIONS(2130), [anon_sym_alias] = ACTIONS(2130), [anon_sym_let] = ACTIONS(2130), @@ -180024,7 +180203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2130), [anon_sym_use] = ACTIONS(2130), [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1985), [anon_sym_RPAREN] = ACTIONS(2130), [anon_sym_DOLLAR] = ACTIONS(1749), [anon_sym_error] = ACTIONS(2130), @@ -180041,7 +180220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2130), [anon_sym_RBRACE] = ACTIONS(2130), [anon_sym_DOT] = ACTIONS(2130), - [anon_sym_DOT2] = ACTIONS(1795), + [anon_sym_DOT2] = ACTIONS(1989), [anon_sym_try] = ACTIONS(2130), [anon_sym_return] = ACTIONS(2130), [anon_sym_source] = ACTIONS(2130), @@ -180054,9 +180233,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2130), [anon_sym_PLUS] = ACTIONS(2130), [anon_sym_not] = ACTIONS(2130), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), [anon_sym_null] = ACTIONS(2130), [anon_sym_true] = ACTIONS(2130), [anon_sym_false] = ACTIONS(2130), @@ -180079,469 +180258,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(105), }, - [1043] = { - [sym_expr_parenthesized] = STATE(2026), - [sym__immediate_decimal] = STATE(2027), - [sym_val_variable] = STATE(2026), - [sym__var] = STATE(1506), - [sym_comment] = STATE(1043), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_not] = ACTIONS(1805), - [anon_sym_EQ2] = ACTIONS(2136), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1805), - [aux_sym__val_number_token2] = ACTIONS(1805), - [aux_sym__val_number_token3] = ACTIONS(1805), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1805), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_0b] = ACTIONS(1805), - [anon_sym_0o] = ACTIONS(1805), - [anon_sym_0x] = ACTIONS(1805), - [sym_val_date] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym__str_single_quotes] = ACTIONS(1805), - [sym__str_back_ticks] = ACTIONS(1805), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(105), - }, - [1044] = { - [sym_comment] = STATE(1044), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_err_GT] = ACTIONS(835), - [anon_sym_out_GT] = ACTIONS(835), - [anon_sym_e_GT] = ACTIONS(835), - [anon_sym_o_GT] = ACTIONS(835), - [anon_sym_err_PLUSout_GT] = ACTIONS(835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(835), - [anon_sym_o_PLUSe_GT] = ACTIONS(835), - [anon_sym_e_PLUSo_GT] = ACTIONS(835), - [aux_sym_unquoted_token1] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), - }, [1045] = { - [sym_expr_parenthesized] = STATE(2021), - [sym__immediate_decimal] = STATE(2023), - [sym_val_variable] = STATE(2021), - [sym__var] = STATE(1506), + [sym_expr_parenthesized] = STATE(1545), + [sym__immediate_decimal] = STATE(1546), + [sym_val_variable] = STATE(1545), + [sym__var] = STATE(1310), [sym_comment] = STATE(1045), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_EQ2] = ACTIONS(2145), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [sym_cmd_identifier] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_DOT] = ACTIONS(2134), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2134), + [anon_sym_where] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [sym_val_date] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym__str_single_quotes] = ACTIONS(2134), + [sym__str_back_ticks] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(105), }, [1046] = { - [sym_expr_parenthesized] = STATE(1701), - [sym__immediate_decimal] = STATE(1702), - [sym_val_variable] = STATE(1701), - [sym__var] = STATE(1266), + [sym_expr_parenthesized] = STATE(1879), + [sym__immediate_decimal] = STATE(1881), + [sym_val_variable] = STATE(1879), + [sym__var] = STATE(1371), [sym_comment] = STATE(1046), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_token1] = ACTIONS(2147), - [aux_sym__val_number_token2] = ACTIONS(2147), - [aux_sym__val_number_token3] = ACTIONS(2147), - [aux_sym__val_number_token4] = ACTIONS(2147), - [aux_sym__val_number_token5] = ACTIONS(2147), - [aux_sym__val_number_token6] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(105), - }, - [1047] = { - [sym_expr_parenthesized] = STATE(1737), - [sym__immediate_decimal] = STATE(1739), - [sym_val_variable] = STATE(1737), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [aux_sym__immediate_decimal_token1] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(105), - }, - [1048] = { - [sym_expr_parenthesized] = STATE(1735), - [sym__immediate_decimal] = STATE(1736), - [sym_val_variable] = STATE(1735), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2151), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(105), }, - [1049] = { - [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(809), + [1047] = { + [sym_comment] = STATE(1047), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_PIPE] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_GT] = ACTIONS(807), @@ -180549,6 +180424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(807), [anon_sym_in] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(807), @@ -180576,8 +180452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(2153), - [aux_sym__immediate_decimal_token2] = ACTIONS(2155), + [aux_sym__immediate_decimal_token2] = ACTIONS(2039), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -180611,469 +180486,773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, + [1048] = { + [sym_expr_parenthesized] = STATE(1808), + [sym__immediate_decimal] = STATE(1810), + [sym_val_variable] = STATE(1808), + [sym__var] = STATE(1490), + [sym_comment] = STATE(1048), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_where] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(2144), + [aux_sym__immediate_decimal_token1] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2148), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(105), + }, + [1049] = { + [sym_comment] = STATE(1049), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_err_GT] = ACTIONS(827), + [anon_sym_out_GT] = ACTIONS(827), + [anon_sym_e_GT] = ACTIONS(827), + [anon_sym_o_GT] = ACTIONS(827), + [anon_sym_err_PLUSout_GT] = ACTIONS(827), + [anon_sym_out_PLUSerr_GT] = ACTIONS(827), + [anon_sym_o_PLUSe_GT] = ACTIONS(827), + [anon_sym_e_PLUSo_GT] = ACTIONS(827), + [aux_sym_unquoted_token1] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2156), + [aux_sym_unquoted_token6] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(105), + }, [1050] = { - [sym_expr_parenthesized] = STATE(1800), - [sym__immediate_decimal] = STATE(1798), - [sym_val_variable] = STATE(1800), - [sym__var] = STATE(1497), [sym_comment] = STATE(1050), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_where] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(2163), - [aux_sym__immediate_decimal_token1] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(2163), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_err_GT] = ACTIONS(846), + [anon_sym_out_GT] = ACTIONS(846), + [anon_sym_e_GT] = ACTIONS(846), + [anon_sym_o_GT] = ACTIONS(846), + [anon_sym_err_PLUSout_GT] = ACTIONS(846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(846), + [anon_sym_o_PLUSe_GT] = ACTIONS(846), + [anon_sym_e_PLUSo_GT] = ACTIONS(846), + [aux_sym_unquoted_token1] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, [1051] = { - [sym_expr_parenthesized] = STATE(1698), - [sym__immediate_decimal] = STATE(1700), - [sym_val_variable] = STATE(1698), - [sym__var] = STATE(1266), [sym_comment] = STATE(1051), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_alias] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_let_DASHenv] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [sym_cmd_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2171), - [anon_sym_export_DASHenv] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_do] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_source] = ACTIONS(2171), - [anon_sym_source_DASHenv] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_hide] = ACTIONS(2171), - [anon_sym_hide_DASHenv] = ACTIONS(2171), - [anon_sym_overlay] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_not] = ACTIONS(2171), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2171), - [anon_sym_0o] = ACTIONS(2171), - [anon_sym_0x] = ACTIONS(2171), - [sym_val_date] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(2165), + [aux_sym__immediate_decimal_token2] = ACTIONS(2167), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [aux_sym_unquoted_token1] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1052] = { - [sym_expr_parenthesized] = STATE(1695), - [sym__immediate_decimal] = STATE(1696), - [sym_val_variable] = STATE(1695), - [sym__var] = STATE(1266), [sym_comment] = STATE(1052), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [aux_sym__immediate_decimal_token1] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(2169), + [aux_sym__immediate_decimal_token2] = ACTIONS(2171), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_err_GT] = ACTIONS(807), + [anon_sym_out_GT] = ACTIONS(807), + [anon_sym_e_GT] = ACTIONS(807), + [anon_sym_o_GT] = ACTIONS(807), + [anon_sym_err_PLUSout_GT] = ACTIONS(807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(807), + [anon_sym_o_PLUSe_GT] = ACTIONS(807), + [anon_sym_e_PLUSo_GT] = ACTIONS(807), + [aux_sym_unquoted_token1] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, [1053] = { - [sym_expr_parenthesized] = STATE(1802), - [sym__immediate_decimal] = STATE(1801), - [sym_val_variable] = STATE(1802), - [sym__var] = STATE(1497), + [sym_expr_parenthesized] = STATE(1682), + [sym__immediate_decimal] = STATE(1683), + [sym_val_variable] = STATE(1682), + [sym__var] = STATE(1310), [sym_comment] = STATE(1053), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_where] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_not] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(2181), - [aux_sym__immediate_decimal_token1] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_DOT2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), + [aux_sym__immediate_decimal_token1] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), [anon_sym_POUND] = ACTIONS(105), }, [1054] = { + [sym_expr_parenthesized] = STATE(1806), + [sym__immediate_decimal] = STATE(1807), + [sym_val_variable] = STATE(1806), + [sym__var] = STATE(1490), [sym_comment] = STATE(1054), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(2183), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_err_GT] = ACTIONS(823), - [anon_sym_out_GT] = ACTIONS(823), - [anon_sym_e_GT] = ACTIONS(823), - [anon_sym_o_GT] = ACTIONS(823), - [anon_sym_err_PLUSout_GT] = ACTIONS(823), - [anon_sym_out_PLUSerr_GT] = ACTIONS(823), - [anon_sym_o_PLUSe_GT] = ACTIONS(823), - [anon_sym_e_PLUSo_GT] = ACTIONS(823), - [aux_sym_unquoted_token1] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2187), - [aux_sym_unquoted_token6] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_where] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_not] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(2179), + [aux_sym__immediate_decimal_token1] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2148), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1874), + [anon_sym_0o] = ACTIONS(1874), + [anon_sym_0x] = ACTIONS(1874), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(105), }, [1055] = { + [sym_expr_parenthesized] = STATE(1948), + [sym__immediate_decimal] = STATE(1926), + [sym_val_variable] = STATE(1948), + [sym__var] = STATE(1469), [sym_comment] = STATE(1055), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(2191), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_err_GT] = ACTIONS(844), - [anon_sym_out_GT] = ACTIONS(844), - [anon_sym_e_GT] = ACTIONS(844), - [anon_sym_o_GT] = ACTIONS(844), - [anon_sym_err_PLUSout_GT] = ACTIONS(844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(844), - [anon_sym_o_PLUSe_GT] = ACTIONS(844), - [anon_sym_e_PLUSo_GT] = ACTIONS(844), - [aux_sym_unquoted_token1] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_EQ2] = ACTIONS(2183), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(105), }, [1056] = { + [sym_expr_parenthesized] = STATE(1927), + [sym__immediate_decimal] = STATE(1928), + [sym_val_variable] = STATE(1927), + [sym__var] = STATE(1469), [sym_comment] = STATE(1056), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_EQ2] = ACTIONS(2187), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(105), + }, + [1057] = { + [sym_expr_parenthesized] = STATE(1929), + [sym__immediate_decimal] = STATE(1930), + [sym_val_variable] = STATE(1929), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1057), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_LF] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_where] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(2007), + [anon_sym_EQ2] = ACTIONS(2191), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_CARET] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(105), + }, + [1058] = { + [sym_comment] = STATE(1058), + [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -181081,7 +181260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(815), [anon_sym_in] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_STAR] = ACTIONS(815), @@ -181109,7 +181287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(2065), + [aux_sym__immediate_decimal_token2] = ACTIONS(2167), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -181143,8 +181321,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1057] = { - [sym_comment] = STATE(1057), + [1059] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1059), + [aux_sym_command_repeat1] = STATE(1093), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(105), + }, + [1060] = { + [sym_comment] = STATE(1060), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(807), @@ -181185,7 +181438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2025), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -181219,237 +181471,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1058] = { - [sym_expr_parenthesized] = STATE(1815), - [sym__immediate_decimal] = STATE(1816), - [sym_val_variable] = STATE(1815), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_alias] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_let_DASHenv] = ACTIONS(2126), - [anon_sym_mut] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [sym_cmd_identifier] = ACTIONS(2126), - [anon_sym_LF] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2126), - [anon_sym_export_DASHenv] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_module] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), + [1061] = { + [sym_expr_parenthesized] = STATE(1888), + [sym__immediate_decimal] = STATE(1889), + [sym_val_variable] = STATE(1888), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1061), + [ts_builtin_sym_end] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2173), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_source] = ACTIONS(2126), - [anon_sym_source_DASHenv] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_hide] = ACTIONS(2126), - [anon_sym_hide_DASHenv] = ACTIONS(2126), - [anon_sym_overlay] = ACTIONS(2126), - [anon_sym_as] = ACTIONS(2126), - [anon_sym_where] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_not] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [aux_sym__val_number_decimal_token1] = ACTIONS(2126), - [aux_sym__val_number_token1] = ACTIONS(2126), - [aux_sym__val_number_token2] = ACTIONS(2126), - [aux_sym__val_number_token3] = ACTIONS(2126), - [aux_sym__val_number_token4] = ACTIONS(2126), - [aux_sym__val_number_token5] = ACTIONS(2126), - [aux_sym__val_number_token6] = ACTIONS(2126), - [anon_sym_0b] = ACTIONS(2126), - [anon_sym_0o] = ACTIONS(2126), - [anon_sym_0x] = ACTIONS(2126), - [sym_val_date] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [sym__str_single_quotes] = ACTIONS(2126), - [sym__str_back_ticks] = ACTIONS(2126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), [anon_sym_POUND] = ACTIONS(105), }, - [1059] = { - [sym_expr_parenthesized] = STATE(1848), - [sym__immediate_decimal] = STATE(1850), - [sym_val_variable] = STATE(1848), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_SEMI] = ACTIONS(2118), - [sym_cmd_identifier] = ACTIONS(2118), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), + [1062] = { + [sym_expr_parenthesized] = STATE(1890), + [sym__immediate_decimal] = STATE(1891), + [sym_val_variable] = STATE(1890), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [sym_cmd_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2075), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_where] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_not] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_not] = ACTIONS(2075), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_0b] = ACTIONS(2118), - [anon_sym_0o] = ACTIONS(2118), - [anon_sym_0x] = ACTIONS(2118), - [sym_val_date] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_null] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_token1] = ACTIONS(2075), + [aux_sym__val_number_token2] = ACTIONS(2075), + [aux_sym__val_number_token3] = ACTIONS(2075), + [aux_sym__val_number_token4] = ACTIONS(2075), + [aux_sym__val_number_token5] = ACTIONS(2075), + [aux_sym__val_number_token6] = ACTIONS(2075), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2075), + [anon_sym_0x] = ACTIONS(2075), + [sym_val_date] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2075), + [sym__str_back_ticks] = ACTIONS(2075), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2075), [anon_sym_POUND] = ACTIONS(105), }, - [1060] = { - [sym_expr_parenthesized] = STATE(1851), - [sym__immediate_decimal] = STATE(1852), - [sym_val_variable] = STATE(1851), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(2112), - [anon_sym_export] = ACTIONS(2110), - [anon_sym_alias] = ACTIONS(2110), - [anon_sym_let] = ACTIONS(2110), - [anon_sym_let_DASHenv] = ACTIONS(2110), - [anon_sym_mut] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [sym_cmd_identifier] = ACTIONS(2110), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_def] = ACTIONS(2110), - [anon_sym_export_DASHenv] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_module] = ACTIONS(2110), - [anon_sym_use] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), + [1063] = { + [sym_expr_parenthesized] = STATE(1892), + [sym__immediate_decimal] = STATE(1893), + [sym_val_variable] = STATE(1892), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1063), + [ts_builtin_sym_end] = ACTIONS(2081), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [sym_cmd_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2110), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_loop] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_source] = ACTIONS(2110), - [anon_sym_source_DASHenv] = ACTIONS(2110), - [anon_sym_register] = ACTIONS(2110), - [anon_sym_hide] = ACTIONS(2110), - [anon_sym_hide_DASHenv] = ACTIONS(2110), - [anon_sym_overlay] = ACTIONS(2110), - [anon_sym_as] = ACTIONS(2110), - [anon_sym_where] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2079), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [aux_sym__val_number_decimal_token1] = ACTIONS(2110), - [aux_sym__val_number_token1] = ACTIONS(2110), - [aux_sym__val_number_token2] = ACTIONS(2110), - [aux_sym__val_number_token3] = ACTIONS(2110), - [aux_sym__val_number_token4] = ACTIONS(2110), - [aux_sym__val_number_token5] = ACTIONS(2110), - [aux_sym__val_number_token6] = ACTIONS(2110), - [anon_sym_0b] = ACTIONS(2110), - [anon_sym_0o] = ACTIONS(2110), - [anon_sym_0x] = ACTIONS(2110), - [sym_val_date] = ACTIONS(2110), - [anon_sym_DQUOTE] = ACTIONS(2110), - [sym__str_single_quotes] = ACTIONS(2110), - [sym__str_back_ticks] = ACTIONS(2110), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [aux_sym__val_number_token4] = ACTIONS(2079), + [aux_sym__val_number_token5] = ACTIONS(2079), + [aux_sym__val_number_token6] = ACTIONS(2079), + [anon_sym_0b] = ACTIONS(2079), + [anon_sym_0o] = ACTIONS(2079), + [anon_sym_0x] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(105), }, - [1061] = { - [sym_expr_parenthesized] = STATE(1853), - [sym__immediate_decimal] = STATE(1854), - [sym_val_variable] = STATE(1853), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1061), + [1064] = { + [sym_expr_parenthesized] = STATE(1894), + [sym__immediate_decimal] = STATE(1895), + [sym_val_variable] = STATE(1894), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(2073), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [sym_cmd_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_DOT2] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2071), + [anon_sym_where] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_not] = ACTIONS(2071), + [aux_sym__immediate_decimal_token1] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [aux_sym__val_number_token4] = ACTIONS(2071), + [aux_sym__val_number_token5] = ACTIONS(2071), + [aux_sym__val_number_token6] = ACTIONS(2071), + [anon_sym_0b] = ACTIONS(2071), + [anon_sym_0o] = ACTIONS(2071), + [anon_sym_0x] = ACTIONS(2071), + [sym_val_date] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [sym__str_single_quotes] = ACTIONS(2071), + [sym__str_back_ticks] = ACTIONS(2071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(105), + }, + [1065] = { + [sym_expr_parenthesized] = STATE(1918), + [sym__immediate_decimal] = STATE(1919), + [sym_val_variable] = STATE(1918), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1065), [ts_builtin_sym_end] = ACTIONS(2108), [anon_sym_export] = ACTIONS(2106), [anon_sym_alias] = ACTIONS(2106), @@ -181519,387 +181846,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(105), }, - [1062] = { - [sym_expr_parenthesized] = STATE(1855), - [sym__immediate_decimal] = STATE(1856), - [sym_val_variable] = STATE(1855), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_cmd_identifier] = ACTIONS(2095), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), + [1066] = { + [sym_expr_parenthesized] = STATE(1920), + [sym__immediate_decimal] = STATE(1921), + [sym_val_variable] = STATE(1920), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1066), + [ts_builtin_sym_end] = ACTIONS(2112), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_alias] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_let_DASHenv] = ACTIONS(2110), + [anon_sym_mut] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [sym_cmd_identifier] = ACTIONS(2110), + [anon_sym_LF] = ACTIONS(2112), + [anon_sym_def] = ACTIONS(2110), + [anon_sym_export_DASHenv] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_error] = ACTIONS(2110), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_DOT] = ACTIONS(2110), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_source] = ACTIONS(2110), + [anon_sym_source_DASHenv] = ACTIONS(2110), + [anon_sym_register] = ACTIONS(2110), + [anon_sym_hide] = ACTIONS(2110), + [anon_sym_hide_DASHenv] = ACTIONS(2110), + [anon_sym_overlay] = ACTIONS(2110), + [anon_sym_as] = ACTIONS(2110), + [anon_sym_where] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_not] = ACTIONS(2110), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_null] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [aux_sym__val_number_decimal_token1] = ACTIONS(2110), + [aux_sym__val_number_token1] = ACTIONS(2110), + [aux_sym__val_number_token2] = ACTIONS(2110), + [aux_sym__val_number_token3] = ACTIONS(2110), + [aux_sym__val_number_token4] = ACTIONS(2110), + [aux_sym__val_number_token5] = ACTIONS(2110), + [aux_sym__val_number_token6] = ACTIONS(2110), + [anon_sym_0b] = ACTIONS(2110), + [anon_sym_0o] = ACTIONS(2110), + [anon_sym_0x] = ACTIONS(2110), + [sym_val_date] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym__str_single_quotes] = ACTIONS(2110), + [sym__str_back_ticks] = ACTIONS(2110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(105), }, - [1063] = { - [sym_expr_parenthesized] = STATE(1811), - [sym__immediate_decimal] = STATE(1814), - [sym_val_variable] = STATE(1811), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), + [1067] = { + [sym_expr_parenthesized] = STATE(1922), + [sym__immediate_decimal] = STATE(1923), + [sym_val_variable] = STATE(1922), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_alias] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_let_DASHenv] = ACTIONS(2114), + [anon_sym_mut] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [sym_cmd_identifier] = ACTIONS(2114), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_def] = ACTIONS(2114), + [anon_sym_export_DASHenv] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_error] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_DOT] = ACTIONS(2114), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_source] = ACTIONS(2114), + [anon_sym_source_DASHenv] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2114), + [anon_sym_hide] = ACTIONS(2114), + [anon_sym_hide_DASHenv] = ACTIONS(2114), + [anon_sym_overlay] = ACTIONS(2114), + [anon_sym_as] = ACTIONS(2114), + [anon_sym_where] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_not] = ACTIONS(2114), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_token1] = ACTIONS(2147), - [aux_sym__val_number_token2] = ACTIONS(2147), - [aux_sym__val_number_token3] = ACTIONS(2147), - [aux_sym__val_number_token4] = ACTIONS(2147), - [aux_sym__val_number_token5] = ACTIONS(2147), - [aux_sym__val_number_token6] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym__val_number_decimal_token1] = ACTIONS(2114), + [aux_sym__val_number_token1] = ACTIONS(2114), + [aux_sym__val_number_token2] = ACTIONS(2114), + [aux_sym__val_number_token3] = ACTIONS(2114), + [aux_sym__val_number_token4] = ACTIONS(2114), + [aux_sym__val_number_token5] = ACTIONS(2114), + [aux_sym__val_number_token6] = ACTIONS(2114), + [anon_sym_0b] = ACTIONS(2114), + [anon_sym_0o] = ACTIONS(2114), + [anon_sym_0x] = ACTIONS(2114), + [sym_val_date] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym__str_single_quotes] = ACTIONS(2114), + [sym__str_back_ticks] = ACTIONS(2114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(105), }, - [1064] = { - [sym_expr_parenthesized] = STATE(1857), - [sym__immediate_decimal] = STATE(1858), - [sym_val_variable] = STATE(1857), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_alias] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_let_DASHenv] = ACTIONS(2091), - [anon_sym_mut] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2091), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_export_DASHenv] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), + [1068] = { + [sym_expr_parenthesized] = STATE(1924), + [sym__immediate_decimal] = STATE(1727), + [sym_val_variable] = STATE(1924), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [sym_cmd_identifier] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_DOT] = ACTIONS(2118), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_source] = ACTIONS(2091), - [anon_sym_source_DASHenv] = ACTIONS(2091), - [anon_sym_register] = ACTIONS(2091), - [anon_sym_hide] = ACTIONS(2091), - [anon_sym_hide_DASHenv] = ACTIONS(2091), - [anon_sym_overlay] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_as] = ACTIONS(2118), + [anon_sym_where] = ACTIONS(2118), + [anon_sym_PLUS] = ACTIONS(2118), + [anon_sym_not] = ACTIONS(2118), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2091), - [anon_sym_0o] = ACTIONS(2091), - [anon_sym_0x] = ACTIONS(2091), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_null] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_token1] = ACTIONS(2118), + [aux_sym__val_number_token2] = ACTIONS(2118), + [aux_sym__val_number_token3] = ACTIONS(2118), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_0b] = ACTIONS(2118), + [anon_sym_0o] = ACTIONS(2118), + [anon_sym_0x] = ACTIONS(2118), + [sym_val_date] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym__str_single_quotes] = ACTIONS(2118), + [sym__str_back_ticks] = ACTIONS(2118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(105), }, - [1065] = { - [sym_comment] = STATE(1065), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_err_GT] = ACTIONS(807), - [anon_sym_out_GT] = ACTIONS(807), - [anon_sym_e_GT] = ACTIONS(807), - [anon_sym_o_GT] = ACTIONS(807), - [anon_sym_err_PLUSout_GT] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT] = ACTIONS(807), - [anon_sym_o_PLUSe_GT] = ACTIONS(807), - [anon_sym_e_PLUSo_GT] = ACTIONS(807), - [aux_sym_unquoted_token1] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [1069] = { + [sym_comment] = STATE(1069), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(105), }, - [1066] = { - [sym_comment] = STATE(1066), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2195), + [1070] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1070), + [aux_sym_command_repeat1] = STATE(1086), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, - [1067] = { - [sym_expr_parenthesized] = STATE(1859), - [sym__immediate_decimal] = STATE(1860), - [sym_val_variable] = STATE(1859), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1067), + [1071] = { + [sym_expr_parenthesized] = STATE(1728), + [sym__immediate_decimal] = STATE(1729), + [sym_val_variable] = STATE(1728), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1071), [ts_builtin_sym_end] = ACTIONS(2124), [anon_sym_export] = ACTIONS(2122), [anon_sym_alias] = ACTIONS(2122), @@ -181969,87 +182296,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2122), [anon_sym_POUND] = ACTIONS(105), }, - [1068] = { - [sym_expr_parenthesized] = STATE(1804), - [sym__immediate_decimal] = STATE(1809), - [sym_val_variable] = STATE(1804), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_alias] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_let_DASHenv] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [sym_cmd_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2171), - [anon_sym_export_DASHenv] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), + [1072] = { + [sym_expr_parenthesized] = STATE(1730), + [sym__immediate_decimal] = STATE(1731), + [sym_val_variable] = STATE(1730), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1072), + [ts_builtin_sym_end] = ACTIONS(2128), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_alias] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_let_DASHenv] = ACTIONS(2126), + [anon_sym_mut] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [sym_cmd_identifier] = ACTIONS(2126), + [anon_sym_LF] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2126), + [anon_sym_export_DASHenv] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_do] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_error] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_source] = ACTIONS(2171), - [anon_sym_source_DASHenv] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_hide] = ACTIONS(2171), - [anon_sym_hide_DASHenv] = ACTIONS(2171), - [anon_sym_overlay] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_not] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_source] = ACTIONS(2126), + [anon_sym_source_DASHenv] = ACTIONS(2126), + [anon_sym_register] = ACTIONS(2126), + [anon_sym_hide] = ACTIONS(2126), + [anon_sym_hide_DASHenv] = ACTIONS(2126), + [anon_sym_overlay] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_where] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_not] = ACTIONS(2126), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2171), - [anon_sym_0o] = ACTIONS(2171), - [anon_sym_0x] = ACTIONS(2171), - [sym_val_date] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_null] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2126), + [aux_sym__val_number_token1] = ACTIONS(2126), + [aux_sym__val_number_token2] = ACTIONS(2126), + [aux_sym__val_number_token3] = ACTIONS(2126), + [aux_sym__val_number_token4] = ACTIONS(2126), + [aux_sym__val_number_token5] = ACTIONS(2126), + [aux_sym__val_number_token6] = ACTIONS(2126), + [anon_sym_0b] = ACTIONS(2126), + [anon_sym_0o] = ACTIONS(2126), + [anon_sym_0x] = ACTIONS(2126), + [sym_val_date] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym__str_single_quotes] = ACTIONS(2126), + [sym__str_back_ticks] = ACTIONS(2126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), [anon_sym_POUND] = ACTIONS(105), }, - [1069] = { - [sym_expr_parenthesized] = STATE(1862), - [sym__immediate_decimal] = STATE(1863), - [sym_val_variable] = STATE(1862), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1069), + [1073] = { + [sym_expr_parenthesized] = STATE(1732), + [sym__immediate_decimal] = STATE(1733), + [sym_val_variable] = STATE(1732), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1073), [ts_builtin_sym_end] = ACTIONS(2132), [anon_sym_export] = ACTIONS(2130), [anon_sym_alias] = ACTIONS(2130), @@ -182119,13 +182446,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(105), }, - [1070] = { - [sym_comment] = STATE(1070), + [1074] = { + [sym_comment] = STATE(1074), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(105), + }, + [1075] = { + [sym_expr_parenthesized] = STATE(2159), + [sym__immediate_decimal] = STATE(2160), + [sym_val_variable] = STATE(2159), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1075), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_EQ2] = ACTIONS(2261), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(105), + }, + [1076] = { + [sym_expr_parenthesized] = STATE(2161), + [sym__immediate_decimal] = STATE(2162), + [sym_val_variable] = STATE(2161), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_LF] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_where] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(2007), + [anon_sym_EQ2] = ACTIONS(2271), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_CARET] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(105), + }, + [1077] = { + [sym_expr_parenthesized] = STATE(2163), + [sym__immediate_decimal] = STATE(2164), + [sym_val_variable] = STATE(2163), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(2017), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_where] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(2275), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2015), + [anon_sym_0o] = ACTIONS(2015), + [anon_sym_0x] = ACTIONS(2015), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(105), + }, + [1078] = { + [sym_comment] = STATE(1078), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(2280), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_err_GT] = ACTIONS(846), + [anon_sym_out_GT] = ACTIONS(846), + [anon_sym_e_GT] = ACTIONS(846), + [anon_sym_o_GT] = ACTIONS(846), + [anon_sym_err_PLUSout_GT] = ACTIONS(846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(846), + [anon_sym_o_PLUSe_GT] = ACTIONS(846), + [anon_sym_e_PLUSo_GT] = ACTIONS(846), + [aux_sym_unquoted_token1] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(105), + }, + [1079] = { + [sym_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -182133,9 +182835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(815), [anon_sym_in] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(2282), [anon_sym_STAR] = ACTIONS(815), [anon_sym_STAR_STAR] = ACTIONS(815), [anon_sym_PLUS_PLUS] = ACTIONS(815), @@ -182161,6 +182862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(2167), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -182194,983 +182896,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1071] = { - [sym_expr_parenthesized] = STATE(1865), - [sym__immediate_decimal] = STATE(1866), - [sym_val_variable] = STATE(1865), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [sym_cmd_identifier] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_not] = ACTIONS(2087), - [aux_sym__immediate_decimal_token1] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [aux_sym__val_number_token4] = ACTIONS(2087), - [aux_sym__val_number_token5] = ACTIONS(2087), - [aux_sym__val_number_token6] = ACTIONS(2087), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(105), - }, - [1072] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1072), - [aux_sym_command_repeat1] = STATE(1086), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1073] = { - [sym_expr_parenthesized] = STATE(2166), - [sym__immediate_decimal] = STATE(2343), - [sym_val_variable] = STATE(2166), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_not] = ACTIONS(1813), - [anon_sym_EQ2] = ACTIONS(2251), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1813), - [aux_sym__val_number_token2] = ACTIONS(1813), - [aux_sym__val_number_token3] = ACTIONS(1813), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1813), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_0b] = ACTIONS(1813), - [anon_sym_0o] = ACTIONS(1813), - [anon_sym_0x] = ACTIONS(1813), - [sym_val_date] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym__str_single_quotes] = ACTIONS(1813), - [sym__str_back_ticks] = ACTIONS(1813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(105), - }, - [1074] = { - [sym_expr_parenthesized] = STATE(2160), - [sym__immediate_decimal] = STATE(2162), - [sym_val_variable] = STATE(2160), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_EQ2] = ACTIONS(2261), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(105), - }, - [1075] = { - [sym_expr_parenthesized] = STATE(2163), - [sym__immediate_decimal] = STATE(2164), - [sym_val_variable] = STATE(2163), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_not] = ACTIONS(1805), - [anon_sym_EQ2] = ACTIONS(2265), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1805), - [aux_sym__val_number_token2] = ACTIONS(1805), - [aux_sym__val_number_token3] = ACTIONS(1805), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1805), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_0b] = ACTIONS(1805), - [anon_sym_0o] = ACTIONS(1805), - [anon_sym_0x] = ACTIONS(1805), - [sym_val_date] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym__str_single_quotes] = ACTIONS(1805), - [sym__str_back_ticks] = ACTIONS(1805), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(105), - }, - [1076] = { - [sym_comment] = STATE(1076), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_err_GT] = ACTIONS(844), - [anon_sym_out_GT] = ACTIONS(844), - [anon_sym_e_GT] = ACTIONS(844), - [anon_sym_o_GT] = ACTIONS(844), - [anon_sym_err_PLUSout_GT] = ACTIONS(844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(844), - [anon_sym_o_PLUSe_GT] = ACTIONS(844), - [anon_sym_e_PLUSo_GT] = ACTIONS(844), - [aux_sym_unquoted_token1] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), - }, - [1077] = { - [sym_expr_parenthesized] = STATE(1797), - [sym__immediate_decimal] = STATE(1799), - [sym_val_variable] = STATE(1797), - [sym__var] = STATE(1360), - [sym_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), + [1080] = { + [sym_expr_parenthesized] = STATE(1734), + [sym__immediate_decimal] = STATE(1735), + [sym_val_variable] = STATE(1734), + [sym__var] = STATE(1371), + [sym_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2136), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [sym_cmd_identifier] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), [anon_sym_LPAREN] = ACTIONS(2041), [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_DOT] = ACTIONS(2134), [anon_sym_DOT2] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2134), + [anon_sym_where] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), [aux_sym__immediate_decimal_token1] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2051), [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(105), - }, - [1078] = { - [sym_comment] = STATE(1078), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [aux_sym_unquoted_token1] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), - }, - [1079] = { - [sym_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_err_GT] = ACTIONS(807), - [anon_sym_out_GT] = ACTIONS(807), - [anon_sym_e_GT] = ACTIONS(807), - [anon_sym_o_GT] = ACTIONS(807), - [anon_sym_err_PLUSout_GT] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT] = ACTIONS(807), - [anon_sym_o_PLUSe_GT] = ACTIONS(807), - [anon_sym_e_PLUSo_GT] = ACTIONS(807), - [aux_sym_unquoted_token1] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [1080] = { - [sym_expr_parenthesized] = STATE(1928), - [sym__immediate_decimal] = STATE(1934), - [sym_val_variable] = STATE(1928), - [sym__var] = STATE(1553), - [sym_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(1831), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_where] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_not] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(2276), - [aux_sym__immediate_decimal_token1] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [sym_val_date] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym__str_single_quotes] = ACTIONS(2134), + [sym__str_back_ticks] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(105), }, [1081] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1081), - [aux_sym_command_repeat1] = STATE(1083), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym_command_repeat1] = STATE(1086), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1082] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1082), - [aux_sym_command_repeat1] = STATE(1083), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(2287), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_err_GT] = ACTIONS(827), + [anon_sym_out_GT] = ACTIONS(827), + [anon_sym_e_GT] = ACTIONS(827), + [anon_sym_o_GT] = ACTIONS(827), + [anon_sym_err_PLUSout_GT] = ACTIONS(827), + [anon_sym_out_PLUSerr_GT] = ACTIONS(827), + [anon_sym_o_PLUSe_GT] = ACTIONS(827), + [anon_sym_e_PLUSo_GT] = ACTIONS(827), + [aux_sym_unquoted_token1] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2291), + [aux_sym_unquoted_token6] = ACTIONS(2293), [anon_sym_POUND] = ACTIONS(105), }, [1083] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1083), - [aux_sym_command_repeat1] = STATE(1090), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_LF] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1084] = { - [sym_comment] = STATE(1084), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), @@ -183210,7 +183162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(807), [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2155), + [aux_sym__immediate_decimal_token2] = ACTIONS(2171), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -183244,313 +183196,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, + [1084] = { + [sym_comment] = STATE(1084), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, [1085] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), + [sym_expr_parenthesized] = STATE(2067), + [sym__immediate_decimal] = STATE(2068), + [sym_val_variable] = STATE(2067), + [sym__var] = STATE(1616), [sym_comment] = STATE(1085), - [aux_sym_command_repeat1] = STATE(1083), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_where] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_not] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(2301), + [aux_sym__immediate_decimal_token1] = ACTIONS(2303), + [anon_sym_DASH2] = ACTIONS(2305), + [anon_sym_PLUS2] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1874), + [anon_sym_0o] = ACTIONS(1874), + [anon_sym_0x] = ACTIONS(1874), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(105), }, [1086] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1086), - [aux_sym_command_repeat1] = STATE(1090), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_LF] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym_command_repeat1] = STATE(1093), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1087] = { - [sym_expr_parenthesized] = STATE(2172), - [sym__immediate_decimal] = STATE(2173), - [sym_val_variable] = STATE(2172), - [sym__var] = STATE(1590), [sym_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_where] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(2302), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1821), - [aux_sym__val_number_token2] = ACTIONS(1821), - [aux_sym__val_number_token3] = ACTIONS(1821), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1821), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_0b] = ACTIONS(1821), - [anon_sym_0o] = ACTIONS(1821), - [anon_sym_0x] = ACTIONS(1821), - [sym_val_date] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__str_single_quotes] = ACTIONS(1821), - [sym__str_back_ticks] = ACTIONS(1821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [1088] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(2304), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_err_GT] = ACTIONS(844), - [anon_sym_out_GT] = ACTIONS(844), - [anon_sym_e_GT] = ACTIONS(844), - [anon_sym_o_GT] = ACTIONS(844), - [anon_sym_err_PLUSout_GT] = ACTIONS(844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(844), - [anon_sym_o_PLUSe_GT] = ACTIONS(844), - [anon_sym_e_PLUSo_GT] = ACTIONS(844), - [aux_sym_unquoted_token1] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [aux_sym_command_repeat1] = STATE(1059), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1089] = { [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [aux_sym_unquoted_token1] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [1090] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1090), + [aux_sym_command_repeat1] = STATE(1086), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(105), + }, + [1091] = { + [sym_comment] = STATE(1091), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_GT] = ACTIONS(815), @@ -183558,6 +183735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(815), [anon_sym_in] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_STAR] = ACTIONS(815), @@ -183585,7 +183763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(815), [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(2116), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -183619,1053 +183796,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1090] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4216), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1090), - [aux_sym_command_repeat1] = STATE(1090), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_LF] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_DOLLAR] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_null] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2340), - [aux_sym__val_number_token1] = ACTIONS(2343), - [aux_sym__val_number_token2] = ACTIONS(2343), - [aux_sym__val_number_token3] = ACTIONS(2343), - [aux_sym__val_number_token4] = ACTIONS(2346), - [aux_sym__val_number_token5] = ACTIONS(2346), - [aux_sym__val_number_token6] = ACTIONS(2346), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2358), - [sym__str_back_ticks] = ACTIONS(2358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2364), - [anon_sym_err_GT] = ACTIONS(2367), - [anon_sym_out_GT] = ACTIONS(2367), - [anon_sym_e_GT] = ACTIONS(2367), - [anon_sym_o_GT] = ACTIONS(2367), - [anon_sym_err_PLUSout_GT] = ACTIONS(2367), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2367), - [anon_sym_o_PLUSe_GT] = ACTIONS(2367), - [anon_sym_e_PLUSo_GT] = ACTIONS(2367), - [aux_sym_unquoted_token1] = ACTIONS(2370), - [anon_sym_POUND] = ACTIONS(105), - }, - [1091] = { - [sym_expr_parenthesized] = STATE(1943), - [sym__immediate_decimal] = STATE(1944), - [sym_val_variable] = STATE(1943), - [sym__var] = STATE(1553), - [sym_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_where] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(2375), - [aux_sym__immediate_decimal_token1] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(105), - }, [1092] = { + [sym_expr_parenthesized] = STATE(2069), + [sym__immediate_decimal] = STATE(2070), + [sym_val_variable] = STATE(2069), + [sym__var] = STATE(1616), [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_err_GT] = ACTIONS(823), - [anon_sym_out_GT] = ACTIONS(823), - [anon_sym_e_GT] = ACTIONS(823), - [anon_sym_o_GT] = ACTIONS(823), - [anon_sym_err_PLUSout_GT] = ACTIONS(823), - [anon_sym_out_PLUSerr_GT] = ACTIONS(823), - [anon_sym_o_PLUSe_GT] = ACTIONS(823), - [anon_sym_e_PLUSo_GT] = ACTIONS(823), - [aux_sym_unquoted_token1] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2381), - [aux_sym_unquoted_token6] = ACTIONS(2383), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_where] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(2321), + [aux_sym__immediate_decimal_token1] = ACTIONS(2303), + [anon_sym_DASH2] = ACTIONS(2305), + [anon_sym_PLUS2] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), [anon_sym_POUND] = ACTIONS(105), }, [1093] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4196), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(2388), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_err_GT] = ACTIONS(835), - [anon_sym_out_GT] = ACTIONS(835), - [anon_sym_e_GT] = ACTIONS(835), - [anon_sym_o_GT] = ACTIONS(835), - [anon_sym_err_PLUSout_GT] = ACTIONS(835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(835), - [anon_sym_o_PLUSe_GT] = ACTIONS(835), - [anon_sym_e_PLUSo_GT] = ACTIONS(835), - [aux_sym_unquoted_token1] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [aux_sym_command_repeat1] = STATE(1093), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LF] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_null] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2357), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [aux_sym__val_number_token4] = ACTIONS(2363), + [aux_sym__val_number_token5] = ACTIONS(2363), + [aux_sym__val_number_token6] = ACTIONS(2363), + [anon_sym_0b] = ACTIONS(2366), + [anon_sym_0o] = ACTIONS(2366), + [anon_sym_0x] = ACTIONS(2366), + [sym_val_date] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym__str_single_quotes] = ACTIONS(2375), + [sym__str_back_ticks] = ACTIONS(2375), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2378), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2381), + [anon_sym_err_GT] = ACTIONS(2384), + [anon_sym_out_GT] = ACTIONS(2384), + [anon_sym_e_GT] = ACTIONS(2384), + [anon_sym_o_GT] = ACTIONS(2384), + [anon_sym_err_PLUSout_GT] = ACTIONS(2384), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), + [anon_sym_o_PLUSe_GT] = ACTIONS(2384), + [anon_sym_e_PLUSo_GT] = ACTIONS(2384), + [aux_sym_unquoted_token1] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(105), }, [1094] = { + [sym_expr_parenthesized] = STATE(2157), + [sym__immediate_decimal] = STATE(2158), + [sym_val_variable] = STATE(2157), + [sym__var] = STATE(1649), [sym_comment] = STATE(1094), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(2390), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(1983), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_EQ2] = ACTIONS(2392), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(105), }, [1095] = { - [sym_cell_path] = STATE(1204), - [sym_path] = STATE(1131), [sym_comment] = STATE(1095), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [aux_sym_unquoted_token1] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [aux_sym_unquoted_token1] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(105), }, [1096] = { [sym_comment] = STATE(1096), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(2399), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(2394), + [aux_sym__immediate_decimal_token2] = ACTIONS(2396), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1097] = { - [sym__expression] = STATE(4117), - [sym_expr_unary] = STATE(1317), - [sym__expr_unary_minus] = STATE(1316), - [sym_expr_binary] = STATE(1317), - [sym__expr_binary_expression] = STATE(6783), - [sym_expr_parenthesized] = STATE(1225), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(1317), - [sym_val_nothing] = STATE(1248), - [sym_val_bool] = STATE(1248), - [sym_val_variable] = STATE(1233), - [sym__var] = STATE(1121), - [sym_val_number] = STATE(1154), - [sym__val_number_decimal] = STATE(1094), - [sym__val_number] = STATE(1155), - [sym_val_duration] = STATE(1248), - [sym_val_filesize] = STATE(1248), - [sym_val_binary] = STATE(1248), - [sym_val_string] = STATE(1248), - [sym__str_double_quotes] = STATE(1278), - [sym_val_interpolated] = STATE(1248), - [sym__inter_single_quotes] = STATE(1260), - [sym__inter_double_quotes] = STATE(1261), - [sym_val_list] = STATE(1248), - [sym_val_record] = STATE(1248), - [sym_val_table] = STATE(1248), - [sym_val_closure] = STATE(1248), - [sym_unquoted] = STATE(4107), [sym_comment] = STATE(1097), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_not] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2419), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [aux_sym__val_number_token4] = ACTIONS(2427), - [aux_sym__val_number_token5] = ACTIONS(2427), - [aux_sym__val_number_token6] = ACTIONS(2427), - [anon_sym_0b] = ACTIONS(2429), - [anon_sym_0o] = ACTIONS(2429), - [anon_sym_0x] = ACTIONS(2429), - [sym_val_date] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2433), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2439), - [anon_sym_err_GT] = ACTIONS(923), - [anon_sym_out_GT] = ACTIONS(923), - [anon_sym_e_GT] = ACTIONS(923), - [anon_sym_o_GT] = ACTIONS(923), - [anon_sym_err_PLUSout_GT] = ACTIONS(923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(923), - [anon_sym_o_PLUSe_GT] = ACTIONS(923), - [anon_sym_e_PLUSo_GT] = ACTIONS(923), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1098] = { - [sym_expr_parenthesized] = STATE(1959), - [sym__immediate_decimal] = STATE(1967), - [sym_val_variable] = STATE(1959), - [sym__var] = STATE(1506), - [sym_comment] = STATE(1098), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(105), - }, - [1099] = { - [sym_cell_path] = STATE(1245), - [sym_path] = STATE(1106), - [sym_comment] = STATE(1099), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym_unquoted_token1] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(105), - }, - [1100] = { - [sym_path] = STATE(1209), - [sym_comment] = STATE(1100), - [aux_sym_cell_path_repeat1] = STATE(1129), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [1101] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4272), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1101), - [aux_sym__command_parenthesized_body_repeat1] = STATE(1107), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LF] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(2398), + [aux_sym__immediate_decimal_token2] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), }, - [1102] = { - [sym_cell_path] = STATE(1246), - [sym_path] = STATE(1106), - [sym_comment] = STATE(1102), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(990), + [1098] = { + [sym_expr_parenthesized] = STATE(1941), + [sym__immediate_decimal] = STATE(1942), + [sym_val_variable] = STATE(1941), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1098), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [sym_cmd_identifier] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_where] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_not] = ACTIONS(2122), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_token1] = ACTIONS(2122), + [aux_sym__val_number_token2] = ACTIONS(2122), + [aux_sym__val_number_token3] = ACTIONS(2122), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_0b] = ACTIONS(2122), + [anon_sym_0o] = ACTIONS(2122), + [anon_sym_0x] = ACTIONS(2122), + [sym_val_date] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), [anon_sym_POUND] = ACTIONS(105), }, - [1103] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4307), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_unquoted] = STATE(4262), - [sym_comment] = STATE(1103), - [aux_sym_command_repeat1] = STATE(1130), - [ts_builtin_sym_end] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_LF] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2471), - [aux_sym__val_number_token5] = ACTIONS(2471), - [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_err_GT] = ACTIONS(2485), - [anon_sym_out_GT] = ACTIONS(2485), - [anon_sym_e_GT] = ACTIONS(2485), - [anon_sym_o_GT] = ACTIONS(2485), - [anon_sym_err_PLUSout_GT] = ACTIONS(2485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), - [anon_sym_o_PLUSe_GT] = ACTIONS(2485), - [anon_sym_e_PLUSo_GT] = ACTIONS(2485), - [aux_sym_unquoted_token1] = ACTIONS(2487), + [1099] = { + [sym_expr_parenthesized] = STATE(1947), + [sym__immediate_decimal] = STATE(2147), + [sym_val_variable] = STATE(1947), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1099), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [sym_cmd_identifier] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_DOT] = ACTIONS(2134), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_where] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [sym_val_date] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym__str_single_quotes] = ACTIONS(2134), + [sym__str_back_ticks] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(105), }, - [1104] = { - [sym_expr_parenthesized] = STATE(1978), - [sym__immediate_decimal] = STATE(1979), - [sym_val_variable] = STATE(1978), - [sym__var] = STATE(1506), - [sym_comment] = STATE(1104), + [1100] = { + [sym_expr_parenthesized] = STATE(1943), + [sym__immediate_decimal] = STATE(1944), + [sym_val_variable] = STATE(1943), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1100), [anon_sym_export] = ACTIONS(2126), [anon_sym_alias] = ACTIONS(2126), [anon_sym_let] = ACTIONS(2126), @@ -184681,9 +184412,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2126), [anon_sym_use] = ACTIONS(2126), [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2090), [anon_sym_RPAREN] = ACTIONS(2126), - [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2092), [anon_sym_error] = ACTIONS(2126), [anon_sym_DASH] = ACTIONS(2126), [anon_sym_break] = ACTIONS(2126), @@ -184697,7 +184428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2126), [anon_sym_RBRACE] = ACTIONS(2126), [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DOT2] = ACTIONS(2077), + [anon_sym_DOT2] = ACTIONS(2096), [anon_sym_try] = ACTIONS(2126), [anon_sym_return] = ACTIONS(2126), [anon_sym_source] = ACTIONS(2126), @@ -184709,9 +184440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2126), [anon_sym_PLUS] = ACTIONS(2126), [anon_sym_not] = ACTIONS(2126), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), [anon_sym_null] = ACTIONS(2126), [anon_sym_true] = ACTIONS(2126), [anon_sym_false] = ACTIONS(2126), @@ -184734,83 +184465,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2126), [anon_sym_POUND] = ACTIONS(105), }, - [1105] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4272), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1105), - [aux_sym__command_parenthesized_body_repeat1] = STATE(1126), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_LF] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [1101] = { + [sym_comment] = STATE(1101), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2251), [anon_sym_POUND] = ACTIONS(105), }, - [1106] = { - [sym_path] = STATE(1209), - [sym_comment] = STATE(1106), + [1102] = { + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4363), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_unquoted] = STATE(4374), + [sym_comment] = STATE(1102), + [aux_sym_command_repeat1] = STATE(1113), + [ts_builtin_sym_end] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_0b] = ACTIONS(2428), + [anon_sym_0o] = ACTIONS(2428), + [anon_sym_0x] = ACTIONS(2428), + [sym_val_date] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2438), + [anon_sym_err_GT] = ACTIONS(2440), + [anon_sym_out_GT] = ACTIONS(2440), + [anon_sym_e_GT] = ACTIONS(2440), + [anon_sym_o_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT] = ACTIONS(2440), + [aux_sym_unquoted_token1] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(105), + }, + [1103] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4353), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1103), + [aux_sym__command_parenthesized_body_repeat1] = STATE(1106), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(105), + }, + [1104] = { + [sym_path] = STATE(1226), + [sym_comment] = STATE(1104), [aux_sym_cell_path_repeat1] = STATE(1114), [anon_sym_SEMI] = ACTIONS(903), [anon_sym_LF] = ACTIONS(905), @@ -184826,7 +184705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2441), + [anon_sym_DOT2] = ACTIONS(2448), [anon_sym_STAR] = ACTIONS(903), [anon_sym_STAR_STAR] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(903), @@ -184882,824 +184761,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, + [1105] = { + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4363), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_unquoted] = STATE(4374), + [sym_comment] = STATE(1105), + [aux_sym_command_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LF] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_null] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [aux_sym__val_number_decimal_token1] = ACTIONS(2480), + [aux_sym__val_number_token1] = ACTIONS(2483), + [aux_sym__val_number_token2] = ACTIONS(2483), + [aux_sym__val_number_token3] = ACTIONS(2483), + [aux_sym__val_number_token4] = ACTIONS(2486), + [aux_sym__val_number_token5] = ACTIONS(2486), + [aux_sym__val_number_token6] = ACTIONS(2486), + [anon_sym_0b] = ACTIONS(2489), + [anon_sym_0o] = ACTIONS(2489), + [anon_sym_0x] = ACTIONS(2489), + [sym_val_date] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2504), + [anon_sym_err_GT] = ACTIONS(2507), + [anon_sym_out_GT] = ACTIONS(2507), + [anon_sym_e_GT] = ACTIONS(2507), + [anon_sym_o_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(105), + }, + [1106] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4353), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1106), + [aux_sym__command_parenthesized_body_repeat1] = STATE(1122), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(105), + }, [1107] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4272), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4353), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1107), - [aux_sym__command_parenthesized_body_repeat1] = STATE(1128), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_LF] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym__command_parenthesized_body_repeat1] = STATE(1127), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_LF] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1108] = { - [sym_expr_parenthesized] = STATE(1971), - [sym__immediate_decimal] = STATE(1977), - [sym_val_variable] = STATE(1971), - [sym__var] = STATE(1506), + [sym_path] = STATE(1226), [sym_comment] = STATE(1108), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_token1] = ACTIONS(2147), - [aux_sym__val_number_token2] = ACTIONS(2147), - [aux_sym__val_number_token3] = ACTIONS(2147), - [aux_sym__val_number_token4] = ACTIONS(2147), - [aux_sym__val_number_token5] = ACTIONS(2147), - [aux_sym__val_number_token6] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), + [aux_sym_cell_path_repeat1] = STATE(1129), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, [1109] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4307), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_unquoted] = STATE(4262), + [sym_cell_path] = STATE(1309), + [sym_path] = STATE(1104), [sym_comment] = STATE(1109), - [aux_sym_command_repeat1] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2471), - [aux_sym__val_number_token5] = ACTIONS(2471), - [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_err_GT] = ACTIONS(2485), - [anon_sym_out_GT] = ACTIONS(2485), - [anon_sym_e_GT] = ACTIONS(2485), - [anon_sym_o_GT] = ACTIONS(2485), - [anon_sym_err_PLUSout_GT] = ACTIONS(2485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), - [anon_sym_o_PLUSe_GT] = ACTIONS(2485), - [anon_sym_e_PLUSo_GT] = ACTIONS(2485), - [aux_sym_unquoted_token1] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1110] = { - [sym_expr_parenthesized] = STATE(2075), - [sym__immediate_decimal] = STATE(2076), - [sym_val_variable] = STATE(2075), - [sym__var] = STATE(1506), + [sym_cell_path] = STATE(1335), + [sym_path] = STATE(1104), [sym_comment] = STATE(1110), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_SEMI] = ACTIONS(2130), - [sym_cmd_identifier] = ACTIONS(2130), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_DOT] = ACTIONS(2130), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_where] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_not] = ACTIONS(2130), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_err_GT] = ACTIONS(959), + [anon_sym_out_GT] = ACTIONS(959), + [anon_sym_e_GT] = ACTIONS(959), + [anon_sym_o_GT] = ACTIONS(959), + [anon_sym_err_PLUSout_GT] = ACTIONS(959), + [anon_sym_out_PLUSerr_GT] = ACTIONS(959), + [anon_sym_o_PLUSe_GT] = ACTIONS(959), + [anon_sym_e_PLUSo_GT] = ACTIONS(959), + [aux_sym_unquoted_token1] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, [1111] = { - [sym_cell_path] = STATE(1255), - [sym_path] = STATE(1106), + [sym_cell_path] = STATE(1323), + [sym_path] = STATE(1104), [sym_comment] = STATE(1111), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(105), - }, - [1112] = { - [sym_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(105), - }, - [1113] = { - [sym_cell_path] = STATE(1254), - [sym_path] = STATE(1106), - [sym_comment] = STATE(1113), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(105), - }, - [1114] = { - [sym_path] = STATE(1209), - [sym_comment] = STATE(1114), - [aux_sym_cell_path_repeat1] = STATE(1129), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [1115] = { - [sym_comment] = STATE(1115), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(105), - }, - [1116] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4307), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_unquoted] = STATE(4262), - [sym_comment] = STATE(1116), - [aux_sym_command_repeat1] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2471), - [aux_sym__val_number_token5] = ACTIONS(2471), - [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_err_GT] = ACTIONS(2485), - [anon_sym_out_GT] = ACTIONS(2485), - [anon_sym_e_GT] = ACTIONS(2485), - [anon_sym_o_GT] = ACTIONS(2485), - [anon_sym_err_PLUSout_GT] = ACTIONS(2485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), - [anon_sym_o_PLUSe_GT] = ACTIONS(2485), - [anon_sym_e_PLUSo_GT] = ACTIONS(2485), - [aux_sym_unquoted_token1] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(105), - }, - [1117] = { - [sym_comment] = STATE(1117), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(105), - }, - [1118] = { - [sym_cell_path] = STATE(1257), - [sym_path] = STATE(1106), - [sym_comment] = STATE(1118), [anon_sym_SEMI] = ACTIONS(909), [anon_sym_LF] = ACTIONS(911), [anon_sym_LBRACK] = ACTIONS(909), @@ -185714,7 +185223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(909), [anon_sym_RBRACE] = ACTIONS(909), [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(2441), + [anon_sym_DOT2] = ACTIONS(2448), [anon_sym_STAR] = ACTIONS(909), [anon_sym_STAR_STAR] = ACTIONS(909), [anon_sym_PLUS_PLUS] = ACTIONS(909), @@ -185770,970 +185279,1414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, + [1112] = { + [sym_path] = STATE(1226), + [sym_comment] = STATE(1112), + [aux_sym_cell_path_repeat1] = STATE(1112), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(105), + }, + [1113] = { + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4363), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_unquoted] = STATE(4374), + [sym_comment] = STATE(1113), + [aux_sym_command_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_0b] = ACTIONS(2428), + [anon_sym_0o] = ACTIONS(2428), + [anon_sym_0x] = ACTIONS(2428), + [sym_val_date] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2438), + [anon_sym_err_GT] = ACTIONS(2440), + [anon_sym_out_GT] = ACTIONS(2440), + [anon_sym_e_GT] = ACTIONS(2440), + [anon_sym_o_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT] = ACTIONS(2440), + [aux_sym_unquoted_token1] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(105), + }, + [1114] = { + [sym_path] = STATE(1226), + [sym_comment] = STATE(1114), + [aux_sym_cell_path_repeat1] = STATE(1112), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(973), + [anon_sym_out_GT] = ACTIONS(973), + [anon_sym_e_GT] = ACTIONS(973), + [anon_sym_o_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [1115] = { + [sym_cell_path] = STATE(1213), + [sym_path] = STATE(1108), + [sym_comment] = STATE(1115), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(933), + [anon_sym_out_GT] = ACTIONS(933), + [anon_sym_e_GT] = ACTIONS(933), + [anon_sym_o_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1116] = { + [sym_cell_path] = STATE(1245), + [sym_path] = STATE(1104), + [sym_comment] = STATE(1116), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(105), + }, + [1117] = { + [sym_cell_path] = STATE(1282), + [sym_path] = STATE(1104), + [sym_comment] = STATE(1117), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_err_GT] = ACTIONS(917), + [anon_sym_out_GT] = ACTIONS(917), + [anon_sym_e_GT] = ACTIONS(917), + [anon_sym_o_GT] = ACTIONS(917), + [anon_sym_err_PLUSout_GT] = ACTIONS(917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(917), + [anon_sym_o_PLUSe_GT] = ACTIONS(917), + [anon_sym_e_PLUSo_GT] = ACTIONS(917), + [aux_sym_unquoted_token1] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(105), + }, + [1118] = { + [sym_cell_path] = STATE(1281), + [sym_path] = STATE(1104), + [sym_comment] = STATE(1118), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(933), + [anon_sym_out_GT] = ACTIONS(933), + [anon_sym_e_GT] = ACTIONS(933), + [anon_sym_o_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, [1119] = { - [sym_cell_path] = STATE(1325), - [sym_path] = STATE(1106), + [sym_expr_parenthesized] = STATE(1939), + [sym__immediate_decimal] = STATE(1940), + [sym_val_variable] = STATE(1939), + [sym__var] = STATE(1469), [sym_comment] = STATE(1119), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(997), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [sym_cmd_identifier] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_where] = ACTIONS(2118), + [anon_sym_PLUS] = ACTIONS(2118), + [anon_sym_not] = ACTIONS(2118), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_token1] = ACTIONS(2118), + [aux_sym__val_number_token2] = ACTIONS(2118), + [aux_sym__val_number_token3] = ACTIONS(2118), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_0b] = ACTIONS(2118), + [anon_sym_0o] = ACTIONS(2118), + [anon_sym_0x] = ACTIONS(2118), + [sym_val_date] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym__str_single_quotes] = ACTIONS(2118), + [sym__str_back_ticks] = ACTIONS(2118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(105), }, [1120] = { - [sym_expr_parenthesized] = STATE(2077), - [sym__immediate_decimal] = STATE(2078), - [sym_val_variable] = STATE(2077), - [sym__var] = STATE(1506), + [sym_cell_path] = STATE(1301), + [sym_path] = STATE(1104), [sym_comment] = STATE(1120), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [sym_cmd_identifier] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_not] = ACTIONS(2087), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [aux_sym__val_number_token4] = ACTIONS(2087), - [aux_sym__val_number_token5] = ACTIONS(2087), - [aux_sym__val_number_token6] = ACTIONS(2087), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [aux_sym_unquoted_token1] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(105), }, [1121] = { - [sym_cell_path] = STATE(1217), - [sym_path] = STATE(1131), + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4363), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_unquoted] = STATE(4374), [sym_comment] = STATE(1121), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(997), + [aux_sym_command_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_0b] = ACTIONS(2428), + [anon_sym_0o] = ACTIONS(2428), + [anon_sym_0x] = ACTIONS(2428), + [sym_val_date] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2438), + [anon_sym_err_GT] = ACTIONS(2440), + [anon_sym_out_GT] = ACTIONS(2440), + [anon_sym_e_GT] = ACTIONS(2440), + [anon_sym_o_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT] = ACTIONS(2440), + [aux_sym_unquoted_token1] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(105), }, [1122] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4353), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [aux_sym_unquoted_token1] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [aux_sym__command_parenthesized_body_repeat1] = STATE(1122), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_LF] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [aux_sym__val_number_decimal_token1] = ACTIONS(2562), + [aux_sym__val_number_token1] = ACTIONS(2565), + [aux_sym__val_number_token2] = ACTIONS(2565), + [aux_sym__val_number_token3] = ACTIONS(2565), + [aux_sym__val_number_token4] = ACTIONS(2568), + [aux_sym__val_number_token5] = ACTIONS(2568), + [aux_sym__val_number_token6] = ACTIONS(2568), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2571), + [anon_sym_0x] = ACTIONS(2571), + [sym_val_date] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym__str_single_quotes] = ACTIONS(2580), + [sym__str_back_ticks] = ACTIONS(2580), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_err_GT] = ACTIONS(2589), + [anon_sym_out_GT] = ACTIONS(2589), + [anon_sym_e_GT] = ACTIONS(2589), + [anon_sym_o_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT] = ACTIONS(2589), + [aux_sym_unquoted_token1] = ACTIONS(2592), [anon_sym_POUND] = ACTIONS(105), }, [1123] = { - [sym_expr_parenthesized] = STATE(2070), - [sym__immediate_decimal] = STATE(2074), - [sym_val_variable] = STATE(2070), - [sym__var] = STATE(1506), + [sym_cell_path] = STATE(1306), + [sym_path] = STATE(1104), [sym_comment] = STATE(1123), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [sym_cmd_identifier] = ACTIONS(2122), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_where] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_not] = ACTIONS(2122), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_0b] = ACTIONS(2122), - [anon_sym_0o] = ACTIONS(2122), - [anon_sym_0x] = ACTIONS(2122), - [sym_val_date] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [aux_sym_unquoted_token1] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, [1124] = { - [sym_cell_path] = STATE(1258), - [sym_path] = STATE(1106), + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4363), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_unquoted] = STATE(4374), [sym_comment] = STATE(1124), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1033), - [anon_sym_out_GT] = ACTIONS(1033), - [anon_sym_e_GT] = ACTIONS(1033), - [anon_sym_o_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1033), + [aux_sym_command_repeat1] = STATE(1121), + [ts_builtin_sym_end] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_0b] = ACTIONS(2428), + [anon_sym_0o] = ACTIONS(2428), + [anon_sym_0x] = ACTIONS(2428), + [sym_val_date] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2438), + [anon_sym_err_GT] = ACTIONS(2440), + [anon_sym_out_GT] = ACTIONS(2440), + [anon_sym_e_GT] = ACTIONS(2440), + [anon_sym_o_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT] = ACTIONS(2440), + [aux_sym_unquoted_token1] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(105), }, [1125] = { [sym_comment] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_err_GT] = ACTIONS(807), - [anon_sym_out_GT] = ACTIONS(807), - [anon_sym_e_GT] = ACTIONS(807), - [anon_sym_o_GT] = ACTIONS(807), - [anon_sym_err_PLUSout_GT] = ACTIONS(807), - [anon_sym_out_PLUSerr_GT] = ACTIONS(807), - [anon_sym_o_PLUSe_GT] = ACTIONS(807), - [anon_sym_e_PLUSo_GT] = ACTIONS(807), - [aux_sym_unquoted_token1] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2597), [anon_sym_POUND] = ACTIONS(105), }, [1126] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4272), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1126), - [aux_sym__command_parenthesized_body_repeat1] = STATE(1128), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_LF] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(105), }, [1127] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4353), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2510), + [aux_sym__command_parenthesized_body_repeat1] = STATE(1122), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_LF] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1128] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4272), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1128), - [aux_sym__command_parenthesized_body_repeat1] = STATE(1128), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_LF] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2512), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_DOT] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2550), - [aux_sym__val_number_token2] = ACTIONS(2550), - [aux_sym__val_number_token3] = ACTIONS(2550), - [aux_sym__val_number_token4] = ACTIONS(2553), - [aux_sym__val_number_token5] = ACTIONS(2553), - [aux_sym__val_number_token6] = ACTIONS(2553), - [anon_sym_0b] = ACTIONS(2556), - [anon_sym_0o] = ACTIONS(2556), - [anon_sym_0x] = ACTIONS(2556), - [sym_val_date] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym__str_single_quotes] = ACTIONS(2565), - [sym__str_back_ticks] = ACTIONS(2565), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2574), - [anon_sym_out_GT] = ACTIONS(2574), - [anon_sym_e_GT] = ACTIONS(2574), - [anon_sym_o_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT] = ACTIONS(2574), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2605), [anon_sym_POUND] = ACTIONS(105), }, [1129] = { - [sym_path] = STATE(1209), + [sym_path] = STATE(1226), [sym_comment] = STATE(1129), - [aux_sym_cell_path_repeat1] = STATE(1129), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [aux_sym_unquoted_token1] = ACTIONS(1015), + [aux_sym_cell_path_repeat1] = STATE(1112), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(973), + [anon_sym_out_GT] = ACTIONS(973), + [anon_sym_e_GT] = ACTIONS(973), + [anon_sym_o_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1130] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4307), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_unquoted] = STATE(4262), + [sym__expression] = STATE(4157), + [sym_expr_unary] = STATE(1332), + [sym__expr_unary_minus] = STATE(1334), + [sym_expr_binary] = STATE(1332), + [sym__expr_binary_expression] = STATE(6685), + [sym_expr_parenthesized] = STATE(1223), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(1332), + [sym_val_nothing] = STATE(1287), + [sym_val_bool] = STATE(1287), + [sym_val_variable] = STATE(1205), + [sym__var] = STATE(1138), + [sym_val_number] = STATE(1151), + [sym__val_number_decimal] = STATE(1074), + [sym__val_number] = STATE(1152), + [sym_val_duration] = STATE(1287), + [sym_val_filesize] = STATE(1287), + [sym_val_binary] = STATE(1287), + [sym_val_string] = STATE(1287), + [sym__str_double_quotes] = STATE(1284), + [sym_val_interpolated] = STATE(1287), + [sym__inter_single_quotes] = STATE(1325), + [sym__inter_double_quotes] = STATE(1336), + [sym_val_list] = STATE(1287), + [sym_val_record] = STATE(1287), + [sym_val_table] = STATE(1287), + [sym_val_closure] = STATE(1287), + [sym_unquoted] = STATE(4159), [sym_comment] = STATE(1130), - [aux_sym_command_repeat1] = STATE(1130), - [ts_builtin_sym_end] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_LF] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_DOLLAR] = ACTIONS(2589), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_null] = ACTIONS(2607), - [anon_sym_true] = ACTIONS(2610), - [anon_sym_false] = ACTIONS(2610), - [aux_sym__val_number_decimal_token1] = ACTIONS(2613), - [aux_sym__val_number_token1] = ACTIONS(2616), - [aux_sym__val_number_token2] = ACTIONS(2616), - [aux_sym__val_number_token3] = ACTIONS(2616), - [aux_sym__val_number_token4] = ACTIONS(2619), - [aux_sym__val_number_token5] = ACTIONS(2619), - [aux_sym__val_number_token6] = ACTIONS(2619), - [anon_sym_0b] = ACTIONS(2622), - [anon_sym_0o] = ACTIONS(2622), - [anon_sym_0x] = ACTIONS(2622), - [sym_val_date] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym__str_single_quotes] = ACTIONS(2631), - [sym__str_back_ticks] = ACTIONS(2631), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2640), - [anon_sym_out_GT] = ACTIONS(2640), - [anon_sym_e_GT] = ACTIONS(2640), - [anon_sym_o_GT] = ACTIONS(2640), - [anon_sym_err_PLUSout_GT] = ACTIONS(2640), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2640), - [anon_sym_o_PLUSe_GT] = ACTIONS(2640), - [anon_sym_e_PLUSo_GT] = ACTIONS(2640), - [aux_sym_unquoted_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [aux_sym__val_number_decimal_token1] = ACTIONS(2627), + [aux_sym__val_number_token1] = ACTIONS(2629), + [aux_sym__val_number_token2] = ACTIONS(2629), + [aux_sym__val_number_token3] = ACTIONS(2629), + [aux_sym__val_number_token4] = ACTIONS(2631), + [aux_sym__val_number_token5] = ACTIONS(2631), + [aux_sym__val_number_token6] = ACTIONS(2631), + [anon_sym_0b] = ACTIONS(2633), + [anon_sym_0o] = ACTIONS(2633), + [anon_sym_0x] = ACTIONS(2633), + [sym_val_date] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym__str_single_quotes] = ACTIONS(2639), + [sym__str_back_ticks] = ACTIONS(2639), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2643), + [anon_sym_err_GT] = ACTIONS(985), + [anon_sym_out_GT] = ACTIONS(985), + [anon_sym_e_GT] = ACTIONS(985), + [anon_sym_o_GT] = ACTIONS(985), + [anon_sym_err_PLUSout_GT] = ACTIONS(985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(985), + [anon_sym_o_PLUSe_GT] = ACTIONS(985), + [anon_sym_e_PLUSo_GT] = ACTIONS(985), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1131] = { - [sym_path] = STATE(1209), [sym_comment] = STATE(1131), - [aux_sym_cell_path_repeat1] = STATE(1100), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_err_GT] = ACTIONS(903), - [anon_sym_out_GT] = ACTIONS(903), - [anon_sym_e_GT] = ACTIONS(903), - [anon_sym_o_GT] = ACTIONS(903), - [anon_sym_err_PLUSout_GT] = ACTIONS(903), - [anon_sym_out_PLUSerr_GT] = ACTIONS(903), - [anon_sym_o_PLUSe_GT] = ACTIONS(903), - [anon_sym_e_PLUSo_GT] = ACTIONS(903), - [aux_sym_unquoted_token1] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(105), - }, - [1132] = { - [sym_comment] = STATE(1132), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), @@ -186806,456 +186759,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, + [1132] = { + [sym_comment] = STATE(1132), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_err_GT] = ACTIONS(807), + [anon_sym_out_GT] = ACTIONS(807), + [anon_sym_e_GT] = ACTIONS(807), + [anon_sym_o_GT] = ACTIONS(807), + [anon_sym_err_PLUSout_GT] = ACTIONS(807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(807), + [anon_sym_o_PLUSe_GT] = ACTIONS(807), + [anon_sym_e_PLUSo_GT] = ACTIONS(807), + [aux_sym_unquoted_token1] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), + }, [1133] = { + [sym_expr_parenthesized] = STATE(1945), + [sym__immediate_decimal] = STATE(1946), + [sym_val_variable] = STATE(1945), + [sym__var] = STATE(1469), [sym_comment] = STATE(1133), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_as] = ACTIONS(815), - [anon_sym_where] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(2646), - [aux_sym__immediate_decimal_token2] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [sym_cmd_identifier] = ACTIONS(2130), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_DOT] = ACTIONS(2130), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_where] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(2130), + [anon_sym_not] = ACTIONS(2130), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_token1] = ACTIONS(2130), + [aux_sym__val_number_token2] = ACTIONS(2130), + [aux_sym__val_number_token3] = ACTIONS(2130), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(105), }, [1134] = { - [sym_expr_parenthesized] = STATE(2045), - [sym__immediate_decimal] = STATE(2052), - [sym_val_variable] = STATE(2045), - [sym__var] = STATE(1506), [sym_comment] = STATE(1134), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_SEMI] = ACTIONS(2118), - [sym_cmd_identifier] = ACTIONS(2118), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2118), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_where] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_not] = ACTIONS(2118), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_0b] = ACTIONS(2118), - [anon_sym_0o] = ACTIONS(2118), - [anon_sym_0x] = ACTIONS(2118), - [sym_val_date] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_err_GT] = ACTIONS(855), + [anon_sym_out_GT] = ACTIONS(855), + [anon_sym_e_GT] = ACTIONS(855), + [anon_sym_o_GT] = ACTIONS(855), + [anon_sym_err_PLUSout_GT] = ACTIONS(855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(855), + [anon_sym_o_PLUSe_GT] = ACTIONS(855), + [anon_sym_e_PLUSo_GT] = ACTIONS(855), + [aux_sym_unquoted_token1] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [1135] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4307), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_unquoted] = STATE(4262), + [sym_expr_parenthesized] = STATE(2119), + [sym__immediate_decimal] = STATE(2120), + [sym_val_variable] = STATE(2119), + [sym__var] = STATE(1469), [sym_comment] = STATE(1135), - [aux_sym_command_repeat1] = STATE(1130), - [ts_builtin_sym_end] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_LF] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2471), - [aux_sym__val_number_token5] = ACTIONS(2471), - [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_err_GT] = ACTIONS(2485), - [anon_sym_out_GT] = ACTIONS(2485), - [anon_sym_e_GT] = ACTIONS(2485), - [anon_sym_o_GT] = ACTIONS(2485), - [anon_sym_err_PLUSout_GT] = ACTIONS(2485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), - [anon_sym_o_PLUSe_GT] = ACTIONS(2485), - [anon_sym_e_PLUSo_GT] = ACTIONS(2485), - [aux_sym_unquoted_token1] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), [anon_sym_POUND] = ACTIONS(105), }, [1136] = { - [sym_expr_parenthesized] = STATE(1969), - [sym__immediate_decimal] = STATE(1970), - [sym_val_variable] = STATE(1969), - [sym__var] = STATE(1506), + [sym_expr_parenthesized] = STATE(2121), + [sym__immediate_decimal] = STATE(2122), + [sym_val_variable] = STATE(2121), + [sym__var] = STATE(1469), [sym_comment] = STATE(1136), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_alias] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_let_DASHenv] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [sym_cmd_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2171), - [anon_sym_export_DASHenv] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_do] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_source] = ACTIONS(2171), - [anon_sym_source_DASHenv] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_hide] = ACTIONS(2171), - [anon_sym_hide_DASHenv] = ACTIONS(2171), - [anon_sym_overlay] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_not] = ACTIONS(2171), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2171), - [anon_sym_0o] = ACTIONS(2171), - [anon_sym_0x] = ACTIONS(2171), - [sym_val_date] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [sym_cmd_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_not] = ACTIONS(2075), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_token1] = ACTIONS(2075), + [aux_sym__val_number_token2] = ACTIONS(2075), + [aux_sym__val_number_token3] = ACTIONS(2075), + [aux_sym__val_number_token4] = ACTIONS(2075), + [aux_sym__val_number_token5] = ACTIONS(2075), + [aux_sym__val_number_token6] = ACTIONS(2075), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2075), + [anon_sym_0x] = ACTIONS(2075), + [sym_val_date] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2075), + [sym__str_back_ticks] = ACTIONS(2075), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2075), [anon_sym_POUND] = ACTIONS(105), }, [1137] = { - [sym_expr_parenthesized] = STATE(2053), - [sym__immediate_decimal] = STATE(2058), - [sym_val_variable] = STATE(2053), - [sym__var] = STATE(1506), + [sym_expr_parenthesized] = STATE(2123), + [sym__immediate_decimal] = STATE(2124), + [sym_val_variable] = STATE(2123), + [sym__var] = STATE(1469), [sym_comment] = STATE(1137), - [anon_sym_export] = ACTIONS(2110), - [anon_sym_alias] = ACTIONS(2110), - [anon_sym_let] = ACTIONS(2110), - [anon_sym_let_DASHenv] = ACTIONS(2110), - [anon_sym_mut] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [sym_cmd_identifier] = ACTIONS(2110), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_def] = ACTIONS(2110), - [anon_sym_export_DASHenv] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_module] = ACTIONS(2110), - [anon_sym_use] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2110), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_loop] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_source] = ACTIONS(2110), - [anon_sym_source_DASHenv] = ACTIONS(2110), - [anon_sym_register] = ACTIONS(2110), - [anon_sym_hide] = ACTIONS(2110), - [anon_sym_hide_DASHenv] = ACTIONS(2110), - [anon_sym_overlay] = ACTIONS(2110), - [anon_sym_where] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2110), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [aux_sym__val_number_decimal_token1] = ACTIONS(2110), - [aux_sym__val_number_token1] = ACTIONS(2110), - [aux_sym__val_number_token2] = ACTIONS(2110), - [aux_sym__val_number_token3] = ACTIONS(2110), - [aux_sym__val_number_token4] = ACTIONS(2110), - [aux_sym__val_number_token5] = ACTIONS(2110), - [aux_sym__val_number_token6] = ACTIONS(2110), - [anon_sym_0b] = ACTIONS(2110), - [anon_sym_0o] = ACTIONS(2110), - [anon_sym_0x] = ACTIONS(2110), - [sym_val_date] = ACTIONS(2110), - [anon_sym_DQUOTE] = ACTIONS(2110), - [sym__str_single_quotes] = ACTIONS(2110), - [sym__str_back_ticks] = ACTIONS(2110), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [sym_cmd_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2079), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [aux_sym__val_number_token4] = ACTIONS(2079), + [aux_sym__val_number_token5] = ACTIONS(2079), + [aux_sym__val_number_token6] = ACTIONS(2079), + [anon_sym_0b] = ACTIONS(2079), + [anon_sym_0o] = ACTIONS(2079), + [anon_sym_0x] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(105), }, [1138] = { + [sym_cell_path] = STATE(1201), + [sym_path] = STATE(1108), [sym_comment] = STATE(1138), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_err_GT] = ACTIONS(844), - [anon_sym_out_GT] = ACTIONS(844), - [anon_sym_e_GT] = ACTIONS(844), - [anon_sym_o_GT] = ACTIONS(844), - [anon_sym_err_PLUSout_GT] = ACTIONS(844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(844), - [anon_sym_o_PLUSe_GT] = ACTIONS(844), - [anon_sym_e_PLUSo_GT] = ACTIONS(844), - [aux_sym_unquoted_token1] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1139] = { - [sym_expr_parenthesized] = STATE(2063), - [sym__immediate_decimal] = STATE(2064), - [sym_val_variable] = STATE(2063), - [sym__var] = STATE(1506), + [sym_expr_parenthesized] = STATE(2125), + [sym__immediate_decimal] = STATE(2126), + [sym_val_variable] = STATE(2125), + [sym__var] = STATE(1469), [sym_comment] = STATE(1139), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [sym_cmd_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_where] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_not] = ACTIONS(2071), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [aux_sym__val_number_token4] = ACTIONS(2071), + [aux_sym__val_number_token5] = ACTIONS(2071), + [aux_sym__val_number_token6] = ACTIONS(2071), + [anon_sym_0b] = ACTIONS(2071), + [anon_sym_0o] = ACTIONS(2071), + [anon_sym_0x] = ACTIONS(2071), + [sym_val_date] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [sym__str_single_quotes] = ACTIONS(2071), + [sym__str_back_ticks] = ACTIONS(2071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(105), + }, + [1140] = { + [sym_expr_parenthesized] = STATE(1933), + [sym__immediate_decimal] = STATE(1934), + [sym_val_variable] = STATE(1933), + [sym__var] = STATE(1469), + [sym_comment] = STATE(1140), [anon_sym_export] = ACTIONS(2106), [anon_sym_alias] = ACTIONS(2106), [anon_sym_let] = ACTIONS(2106), @@ -187271,9 +187372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2106), [anon_sym_use] = ACTIONS(2106), [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2090), [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2092), [anon_sym_error] = ACTIONS(2106), [anon_sym_DASH] = ACTIONS(2106), [anon_sym_break] = ACTIONS(2106), @@ -187287,7 +187388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2106), [anon_sym_RBRACE] = ACTIONS(2106), [anon_sym_DOT] = ACTIONS(2106), - [anon_sym_DOT2] = ACTIONS(2077), + [anon_sym_DOT2] = ACTIONS(2096), [anon_sym_try] = ACTIONS(2106), [anon_sym_return] = ACTIONS(2106), [anon_sym_source] = ACTIONS(2106), @@ -187299,9 +187400,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2106), [anon_sym_PLUS] = ACTIONS(2106), [anon_sym_not] = ACTIONS(2106), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), [anon_sym_null] = ACTIONS(2106), [anon_sym_true] = ACTIONS(2106), [anon_sym_false] = ACTIONS(2106), @@ -187324,675 +187425,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(105), }, - [1140] = { - [sym_comment] = STATE(1140), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(2650), - [aux_sym__immediate_decimal_token2] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, [1141] = { - [sym_expr_parenthesized] = STATE(2065), - [sym__immediate_decimal] = STATE(2067), - [sym_val_variable] = STATE(2065), - [sym__var] = STATE(1506), + [sym_expr_parenthesized] = STATE(1935), + [sym__immediate_decimal] = STATE(1936), + [sym_val_variable] = STATE(1935), + [sym__var] = STATE(1469), [sym_comment] = STATE(1141), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_cmd_identifier] = ACTIONS(2095), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2095), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_alias] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_let_DASHenv] = ACTIONS(2110), + [anon_sym_mut] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [sym_cmd_identifier] = ACTIONS(2110), + [anon_sym_LF] = ACTIONS(2112), + [anon_sym_def] = ACTIONS(2110), + [anon_sym_export_DASHenv] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_source] = ACTIONS(2110), + [anon_sym_source_DASHenv] = ACTIONS(2110), + [anon_sym_register] = ACTIONS(2110), + [anon_sym_hide] = ACTIONS(2110), + [anon_sym_hide_DASHenv] = ACTIONS(2110), + [anon_sym_overlay] = ACTIONS(2110), + [anon_sym_where] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_not] = ACTIONS(2110), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [aux_sym__val_number_decimal_token1] = ACTIONS(2110), + [aux_sym__val_number_token1] = ACTIONS(2110), + [aux_sym__val_number_token2] = ACTIONS(2110), + [aux_sym__val_number_token3] = ACTIONS(2110), + [aux_sym__val_number_token4] = ACTIONS(2110), + [aux_sym__val_number_token5] = ACTIONS(2110), + [aux_sym__val_number_token6] = ACTIONS(2110), + [anon_sym_0b] = ACTIONS(2110), + [anon_sym_0o] = ACTIONS(2110), + [anon_sym_0x] = ACTIONS(2110), + [sym_val_date] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym__str_single_quotes] = ACTIONS(2110), + [sym__str_back_ticks] = ACTIONS(2110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(105), }, [1142] = { - [sym_cell_path] = STATE(1321), - [sym_path] = STATE(1106), + [sym_expr_parenthesized] = STATE(1937), + [sym__immediate_decimal] = STATE(1938), + [sym_val_variable] = STATE(1937), + [sym__var] = STATE(1469), [sym_comment] = STATE(1142), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [aux_sym_unquoted_token1] = ACTIONS(979), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_alias] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_let_DASHenv] = ACTIONS(2114), + [anon_sym_mut] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [sym_cmd_identifier] = ACTIONS(2114), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_def] = ACTIONS(2114), + [anon_sym_export_DASHenv] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_DOT] = ACTIONS(2114), + [anon_sym_DOT2] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_source] = ACTIONS(2114), + [anon_sym_source_DASHenv] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2114), + [anon_sym_hide] = ACTIONS(2114), + [anon_sym_hide_DASHenv] = ACTIONS(2114), + [anon_sym_overlay] = ACTIONS(2114), + [anon_sym_where] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_not] = ACTIONS(2114), + [aux_sym__immediate_decimal_token1] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym__val_number_decimal_token1] = ACTIONS(2114), + [aux_sym__val_number_token1] = ACTIONS(2114), + [aux_sym__val_number_token2] = ACTIONS(2114), + [aux_sym__val_number_token3] = ACTIONS(2114), + [aux_sym__val_number_token4] = ACTIONS(2114), + [aux_sym__val_number_token5] = ACTIONS(2114), + [aux_sym__val_number_token6] = ACTIONS(2114), + [anon_sym_0b] = ACTIONS(2114), + [anon_sym_0o] = ACTIONS(2114), + [anon_sym_0x] = ACTIONS(2114), + [sym_val_date] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym__str_single_quotes] = ACTIONS(2114), + [sym__str_back_ticks] = ACTIONS(2114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(105), }, [1143] = { - [sym_expr_parenthesized] = STATE(2068), - [sym__immediate_decimal] = STATE(2069), - [sym_val_variable] = STATE(2068), - [sym__var] = STATE(1506), [sym_comment] = STATE(1143), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_alias] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_let_DASHenv] = ACTIONS(2091), - [anon_sym_mut] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2091), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_export_DASHenv] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_source] = ACTIONS(2091), - [anon_sym_source_DASHenv] = ACTIONS(2091), - [anon_sym_register] = ACTIONS(2091), - [anon_sym_hide] = ACTIONS(2091), - [anon_sym_hide_DASHenv] = ACTIONS(2091), - [anon_sym_overlay] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2091), - [aux_sym__immediate_decimal_token1] = ACTIONS(2081), - [anon_sym_DASH2] = ACTIONS(2083), - [anon_sym_PLUS2] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2091), - [anon_sym_0o] = ACTIONS(2091), - [anon_sym_0x] = ACTIONS(2091), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_err_GT] = ACTIONS(949), + [anon_sym_out_GT] = ACTIONS(949), + [anon_sym_e_GT] = ACTIONS(949), + [anon_sym_o_GT] = ACTIONS(949), + [anon_sym_err_PLUSout_GT] = ACTIONS(949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(949), + [anon_sym_o_PLUSe_GT] = ACTIONS(949), + [anon_sym_e_PLUSo_GT] = ACTIONS(949), + [aux_sym_unquoted_token1] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(105), }, [1144] = { - [sym_expr_parenthesized] = STATE(2296), - [sym__immediate_decimal] = STATE(2292), - [sym_val_variable] = STATE(2296), - [sym__var] = STATE(1590), [sym_comment] = STATE(1144), - [ts_builtin_sym_end] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2171), - [anon_sym_alias] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_let_DASHenv] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [sym_cmd_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2171), - [anon_sym_export_DASHenv] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_do] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_source] = ACTIONS(2171), - [anon_sym_source_DASHenv] = ACTIONS(2171), - [anon_sym_register] = ACTIONS(2171), - [anon_sym_hide] = ACTIONS(2171), - [anon_sym_hide_DASHenv] = ACTIONS(2171), - [anon_sym_overlay] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_not] = ACTIONS(2171), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2171), - [aux_sym__val_number_token5] = ACTIONS(2171), - [aux_sym__val_number_token6] = ACTIONS(2171), - [anon_sym_0b] = ACTIONS(2171), - [anon_sym_0o] = ACTIONS(2171), - [anon_sym_0x] = ACTIONS(2171), - [sym_val_date] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(2396), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1145] = { - [sym_expr_parenthesized] = STATE(2256), - [sym__immediate_decimal] = STATE(2264), - [sym_val_variable] = STATE(2256), - [sym__var] = STATE(1590), + [sym_path] = STATE(1316), [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [sym_cmd_identifier] = ACTIONS(2087), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_not] = ACTIONS(2087), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [aux_sym__val_number_token4] = ACTIONS(2087), - [aux_sym__val_number_token5] = ACTIONS(2087), - [aux_sym__val_number_token6] = ACTIONS(2087), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), + [aux_sym_cell_path_repeat1] = STATE(1160), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(973), + [anon_sym_out_GT] = ACTIONS(973), + [anon_sym_e_GT] = ACTIONS(973), + [anon_sym_o_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1146] = { - [sym__command_name] = STATE(2139), - [sym_scope_pattern] = STATE(2082), - [sym_wild_card] = STATE(1984), - [sym_command_list] = STATE(1997), - [sym_val_string] = STATE(1731), - [sym__str_double_quotes] = STATE(1772), [sym_comment] = STATE(1146), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_alias] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_let_DASHenv] = ACTIONS(2654), - [anon_sym_mut] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [sym_cmd_identifier] = ACTIONS(2656), - [anon_sym_LF] = ACTIONS(2658), - [anon_sym_def] = ACTIONS(2654), - [anon_sym_export_DASHenv] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_use] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_RPAREN] = ACTIONS(2654), - [anon_sym_DOLLAR] = ACTIONS(2654), - [anon_sym_error] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_loop] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_source] = ACTIONS(2654), - [anon_sym_source_DASHenv] = ACTIONS(2654), - [anon_sym_register] = ACTIONS(2654), - [anon_sym_hide] = ACTIONS(2654), - [anon_sym_hide_DASHenv] = ACTIONS(2654), - [anon_sym_overlay] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_where] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym__val_number_decimal_token1] = ACTIONS(2654), - [aux_sym__val_number_token1] = ACTIONS(2654), - [aux_sym__val_number_token2] = ACTIONS(2654), - [aux_sym__val_number_token3] = ACTIONS(2654), - [aux_sym__val_number_token4] = ACTIONS(2654), - [aux_sym__val_number_token5] = ACTIONS(2654), - [aux_sym__val_number_token6] = ACTIONS(2654), - [anon_sym_0b] = ACTIONS(2654), - [anon_sym_0o] = ACTIONS(2654), - [anon_sym_0x] = ACTIONS(2654), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2654), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(2662), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, [1147] = { - [sym_expr_parenthesized] = STATE(2189), - [sym__immediate_decimal] = STATE(2196), - [sym_val_variable] = STATE(2189), - [sym__var] = STATE(1590), + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4263), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1147), - [ts_builtin_sym_end] = ACTIONS(2108), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_alias] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_let_DASHenv] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2106), - [sym_cmd_identifier] = ACTIONS(2106), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_def] = ACTIONS(2106), - [anon_sym_export_DASHenv] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_DOT] = ACTIONS(2106), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_source] = ACTIONS(2106), - [anon_sym_source_DASHenv] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_hide] = ACTIONS(2106), - [anon_sym_hide_DASHenv] = ACTIONS(2106), - [anon_sym_overlay] = ACTIONS(2106), - [anon_sym_where] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_not] = ACTIONS(2106), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_token1] = ACTIONS(2106), - [aux_sym__val_number_token2] = ACTIONS(2106), - [aux_sym__val_number_token3] = ACTIONS(2106), - [aux_sym__val_number_token4] = ACTIONS(2106), - [aux_sym__val_number_token5] = ACTIONS(2106), - [aux_sym__val_number_token6] = ACTIONS(2106), - [anon_sym_0b] = ACTIONS(2106), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [sym__str_single_quotes] = ACTIONS(2106), - [sym__str_back_ticks] = ACTIONS(2106), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2106), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_LF] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, [1148] = { - [sym_path] = STATE(1239), + [sym_cell_path] = STATE(1356), + [sym_path] = STATE(1199), [sym_comment] = STATE(1148), - [aux_sym_cell_path_repeat1] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(933), + [anon_sym_out_GT] = ACTIONS(933), + [anon_sym_e_GT] = ACTIONS(933), + [anon_sym_o_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [1149] = { - [sym__command_name] = STATE(2139), - [sym_scope_pattern] = STATE(2137), - [sym_wild_card] = STATE(1984), - [sym_command_list] = STATE(1997), - [sym_val_string] = STATE(1731), - [sym__str_double_quotes] = STATE(1772), [sym_comment] = STATE(1149), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(105), + }, + [1150] = { + [sym__flag] = STATE(1632), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), + [sym_comment] = STATE(1150), + [aux_sym_overlay_use_repeat1] = STATE(1193), [anon_sym_export] = ACTIONS(2668), [anon_sym_alias] = ACTIONS(2668), [anon_sym_let] = ACTIONS(2668), @@ -188000,19 +188099,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2668), [anon_sym_const] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2668), - [sym_cmd_identifier] = ACTIONS(2656), + [sym_cmd_identifier] = ACTIONS(2668), [anon_sym_LF] = ACTIONS(2670), [anon_sym_def] = ACTIONS(2668), [anon_sym_export_DASHenv] = ACTIONS(2668), [anon_sym_extern] = ACTIONS(2668), [anon_sym_module] = ACTIONS(2668), [anon_sym_use] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2668), [anon_sym_LPAREN] = ACTIONS(2668), [anon_sym_RPAREN] = ACTIONS(2668), [anon_sym_DOLLAR] = ACTIONS(2668), [anon_sym_error] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2674), [anon_sym_break] = ACTIONS(2668), [anon_sym_continue] = ACTIONS(2668), [anon_sym_for] = ACTIONS(2668), @@ -188032,7 +188132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2668), [anon_sym_hide_DASHenv] = ACTIONS(2668), [anon_sym_overlay] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_as] = ACTIONS(2676), [anon_sym_where] = ACTIONS(2668), [anon_sym_PLUS] = ACTIONS(2668), [anon_sym_not] = ACTIONS(2668), @@ -188050,459 +188150,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0o] = ACTIONS(2668), [anon_sym_0x] = ACTIONS(2668), [sym_val_date] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DQUOTE] = ACTIONS(2668), + [sym__str_single_quotes] = ACTIONS(2668), + [sym__str_back_ticks] = ACTIONS(2668), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2668), [anon_sym_CARET] = ACTIONS(2668), [anon_sym_POUND] = ACTIONS(105), }, - [1150] = { - [sym_expr_parenthesized] = STATE(2214), - [sym__immediate_decimal] = STATE(2215), - [sym_val_variable] = STATE(2214), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_cmd_identifier] = ACTIONS(2095), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2095), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(105), - }, [1151] = { - [sym__command_name] = STATE(2139), - [sym_scope_pattern] = STATE(1947), - [sym_wild_card] = STATE(1984), - [sym_command_list] = STATE(1997), - [sym_val_string] = STATE(1731), - [sym__str_double_quotes] = STATE(1772), [sym_comment] = STATE(1151), - [anon_sym_export] = ACTIONS(2672), - [anon_sym_alias] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_let_DASHenv] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2672), - [sym_cmd_identifier] = ACTIONS(2656), - [anon_sym_LF] = ACTIONS(2674), - [anon_sym_def] = ACTIONS(2672), - [anon_sym_export_DASHenv] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_module] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_RPAREN] = ACTIONS(2672), - [anon_sym_DOLLAR] = ACTIONS(2672), - [anon_sym_error] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_do] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_source] = ACTIONS(2672), - [anon_sym_source_DASHenv] = ACTIONS(2672), - [anon_sym_register] = ACTIONS(2672), - [anon_sym_hide] = ACTIONS(2672), - [anon_sym_hide_DASHenv] = ACTIONS(2672), - [anon_sym_overlay] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_where] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_not] = ACTIONS(2672), - [anon_sym_null] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [aux_sym__val_number_decimal_token1] = ACTIONS(2672), - [aux_sym__val_number_token1] = ACTIONS(2672), - [aux_sym__val_number_token2] = ACTIONS(2672), - [aux_sym__val_number_token3] = ACTIONS(2672), - [aux_sym__val_number_token4] = ACTIONS(2672), - [aux_sym__val_number_token5] = ACTIONS(2672), - [aux_sym__val_number_token6] = ACTIONS(2672), - [anon_sym_0b] = ACTIONS(2672), - [anon_sym_0o] = ACTIONS(2672), - [anon_sym_0x] = ACTIONS(2672), - [sym_val_date] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(2678), + [sym_duration_unit] = ACTIONS(2680), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [1152] = { - [sym_path] = STATE(1239), [sym_comment] = STATE(1152), - [aux_sym_cell_path_repeat1] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_STAR_STAR] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_bit_DASHshl] = ACTIONS(975), - [anon_sym_bit_DASHshr] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_not_DASHin] = ACTIONS(975), - [anon_sym_starts_DASHwith] = ACTIONS(975), - [anon_sym_ends_DASHwith] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_BANG_TILDE] = ACTIONS(975), - [anon_sym_bit_DASHand] = ACTIONS(975), - [anon_sym_bit_DASHxor] = ACTIONS(975), - [anon_sym_bit_DASHor] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_xor] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_err_GT] = ACTIONS(1177), + [anon_sym_out_GT] = ACTIONS(1177), + [anon_sym_e_GT] = ACTIONS(1177), + [anon_sym_o_GT] = ACTIONS(1177), + [anon_sym_err_PLUSout_GT] = ACTIONS(1177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1177), + [anon_sym_o_PLUSe_GT] = ACTIONS(1177), + [anon_sym_e_PLUSo_GT] = ACTIONS(1177), + [aux_sym_unquoted_token1] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, [1153] = { + [sym__flag] = STATE(1632), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), [sym_comment] = STATE(1153), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, - [1154] = { - [sym_comment] = STATE(1154), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(2678), - [sym_duration_unit] = ACTIONS(2680), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [1155] = { - [sym_comment] = STATE(1155), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym_unquoted_token1] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), - }, - [1156] = { - [sym__flag] = STATE(1663), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_comment] = STATE(1156), - [aux_sym_overlay_use_repeat1] = STATE(1198), + [aux_sym_overlay_use_repeat1] = STATE(1166), [anon_sym_export] = ACTIONS(2682), [anon_sym_alias] = ACTIONS(2682), [anon_sym_let] = ACTIONS(2682), @@ -188522,7 +188330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2682), [anon_sym_DOLLAR] = ACTIONS(2682), [anon_sym_error] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_DASH_DASH] = ACTIONS(2672), [anon_sym_DASH] = ACTIONS(2682), [anon_sym_break] = ACTIONS(2682), [anon_sym_continue] = ACTIONS(2682), @@ -188543,7 +188351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2682), [anon_sym_hide_DASHenv] = ACTIONS(2682), [anon_sym_overlay] = ACTIONS(2682), - [anon_sym_as] = ACTIONS(2688), + [anon_sym_as] = ACTIONS(2686), [anon_sym_where] = ACTIONS(2682), [anon_sym_PLUS] = ACTIONS(2682), [anon_sym_not] = ACTIONS(2682), @@ -188569,8 +188377,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2682), [anon_sym_POUND] = ACTIONS(105), }, + [1154] = { + [sym_path] = STATE(1316), + [sym_comment] = STATE(1154), + [aux_sym_cell_path_repeat1] = STATE(1172), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_in] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_bit_DASHshl] = ACTIONS(903), + [anon_sym_bit_DASHshr] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_LT2] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_not_DASHin] = ACTIONS(903), + [anon_sym_starts_DASHwith] = ACTIONS(903), + [anon_sym_ends_DASHwith] = ACTIONS(903), + [anon_sym_EQ_TILDE] = ACTIONS(903), + [anon_sym_BANG_TILDE] = ACTIONS(903), + [anon_sym_bit_DASHand] = ACTIONS(903), + [anon_sym_bit_DASHxor] = ACTIONS(903), + [anon_sym_bit_DASHor] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_err_GT] = ACTIONS(903), + [anon_sym_out_GT] = ACTIONS(903), + [anon_sym_e_GT] = ACTIONS(903), + [anon_sym_o_GT] = ACTIONS(903), + [anon_sym_err_PLUSout_GT] = ACTIONS(903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(903), + [anon_sym_o_PLUSe_GT] = ACTIONS(903), + [anon_sym_e_PLUSo_GT] = ACTIONS(903), + [aux_sym_unquoted_token1] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(105), + }, + [1155] = { + [sym__expression] = STATE(4281), + [sym_expr_unary] = STATE(1387), + [sym__expr_unary_minus] = STATE(1388), + [sym_expr_binary] = STATE(1387), + [sym__expr_binary_expression] = STATE(6679), + [sym_expr_parenthesized] = STATE(1321), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(1387), + [sym_val_nothing] = STATE(1352), + [sym_val_bool] = STATE(1352), + [sym_val_variable] = STATE(1304), + [sym__var] = STATE(1167), + [sym_val_number] = STATE(1224), + [sym__val_number_decimal] = STATE(1125), + [sym__val_number] = STATE(1227), + [sym_val_duration] = STATE(1352), + [sym_val_filesize] = STATE(1352), + [sym_val_binary] = STATE(1352), + [sym_val_string] = STATE(1352), + [sym__str_double_quotes] = STATE(1454), + [sym_val_interpolated] = STATE(1352), + [sym__inter_single_quotes] = STATE(1427), + [sym__inter_double_quotes] = STATE(1428), + [sym_val_list] = STATE(1352), + [sym_val_record] = STATE(1352), + [sym_val_table] = STATE(1352), + [sym_val_closure] = STATE(1352), + [sym_unquoted] = STATE(4282), + [sym_comment] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2698), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_not] = ACTIONS(2702), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2706), + [anon_sym_false] = ACTIONS(2706), + [aux_sym__val_number_decimal_token1] = ACTIONS(2708), + [aux_sym__val_number_token1] = ACTIONS(2710), + [aux_sym__val_number_token2] = ACTIONS(2710), + [aux_sym__val_number_token3] = ACTIONS(2710), + [aux_sym__val_number_token4] = ACTIONS(2712), + [aux_sym__val_number_token5] = ACTIONS(2712), + [aux_sym__val_number_token6] = ACTIONS(2712), + [anon_sym_0b] = ACTIONS(2714), + [anon_sym_0o] = ACTIONS(2714), + [anon_sym_0x] = ACTIONS(2714), + [sym_val_date] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2718), + [sym__str_single_quotes] = ACTIONS(2720), + [sym__str_back_ticks] = ACTIONS(2720), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2722), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(985), + [anon_sym_out_GT] = ACTIONS(985), + [anon_sym_e_GT] = ACTIONS(985), + [anon_sym_o_GT] = ACTIONS(985), + [anon_sym_err_PLUSout_GT] = ACTIONS(985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(985), + [anon_sym_o_PLUSe_GT] = ACTIONS(985), + [anon_sym_e_PLUSo_GT] = ACTIONS(985), + [aux_sym_unquoted_token1] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(105), + }, + [1156] = { + [sym_comment] = STATE(1156), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(2726), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, [1157] = { [sym_comment] = STATE(1157), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(2726), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1158] = { + [sym_comment] = STATE(1158), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token2] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), + }, + [1159] = { + [sym_cell_path] = STATE(1318), + [sym_path] = STATE(1154), + [sym_comment] = STATE(1159), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_STAR_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_bit_DASHshl] = ACTIONS(933), + [anon_sym_bit_DASHshr] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_not_DASHin] = ACTIONS(933), + [anon_sym_starts_DASHwith] = ACTIONS(933), + [anon_sym_ends_DASHwith] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_BANG_TILDE] = ACTIONS(933), + [anon_sym_bit_DASHand] = ACTIONS(933), + [anon_sym_bit_DASHxor] = ACTIONS(933), + [anon_sym_bit_DASHor] = ACTIONS(933), + [anon_sym_and] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(933), + [anon_sym_or] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(933), + [anon_sym_out_GT] = ACTIONS(933), + [anon_sym_e_GT] = ACTIONS(933), + [anon_sym_o_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1160] = { + [sym_path] = STATE(1316), + [sym_comment] = STATE(1160), + [aux_sym_cell_path_repeat1] = STATE(1160), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_STAR_STAR] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_bit_DASHshl] = ACTIONS(942), + [anon_sym_bit_DASHshr] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_not_DASHin] = ACTIONS(942), + [anon_sym_starts_DASHwith] = ACTIONS(942), + [anon_sym_ends_DASHwith] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_BANG_TILDE] = ACTIONS(942), + [anon_sym_bit_DASHand] = ACTIONS(942), + [anon_sym_bit_DASHxor] = ACTIONS(942), + [anon_sym_bit_DASHor] = ACTIONS(942), + [anon_sym_and] = ACTIONS(942), + [anon_sym_xor] = ACTIONS(942), + [anon_sym_or] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(105), + }, + [1161] = { + [sym_comment] = STATE(1161), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -188616,7 +188935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(815), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(2648), + [aux_sym__immediate_decimal_token2] = ACTIONS(2396), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -188642,158 +188961,1472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1158] = { - [sym__flag] = STATE(1663), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_comment] = STATE(1158), - [aux_sym_overlay_use_repeat1] = STATE(1165), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_alias] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_let_DASHenv] = ACTIONS(2690), - [anon_sym_mut] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2690), - [sym_cmd_identifier] = ACTIONS(2690), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_def] = ACTIONS(2690), - [anon_sym_export_DASHenv] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_error] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_loop] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_match] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_source] = ACTIONS(2690), - [anon_sym_source_DASHenv] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_hide] = ACTIONS(2690), - [anon_sym_hide_DASHenv] = ACTIONS(2690), - [anon_sym_overlay] = ACTIONS(2690), - [anon_sym_as] = ACTIONS(2696), - [anon_sym_where] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_null] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2690), - [anon_sym_false] = ACTIONS(2690), - [aux_sym__val_number_decimal_token1] = ACTIONS(2690), - [aux_sym__val_number_token1] = ACTIONS(2690), - [aux_sym__val_number_token2] = ACTIONS(2690), - [aux_sym__val_number_token3] = ACTIONS(2690), - [aux_sym__val_number_token4] = ACTIONS(2690), - [aux_sym__val_number_token5] = ACTIONS(2690), - [aux_sym__val_number_token6] = ACTIONS(2690), - [anon_sym_0b] = ACTIONS(2690), - [anon_sym_0o] = ACTIONS(2690), - [anon_sym_0x] = ACTIONS(2690), - [sym_val_date] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym__str_single_quotes] = ACTIONS(2690), - [sym__str_back_ticks] = ACTIONS(2690), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2690), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2690), + [1162] = { + [sym_cell_path] = STATE(1367), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1162), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_bit_DASHshl] = ACTIONS(959), + [anon_sym_bit_DASHshr] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_not_DASHin] = ACTIONS(959), + [anon_sym_starts_DASHwith] = ACTIONS(959), + [anon_sym_ends_DASHwith] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [anon_sym_bit_DASHand] = ACTIONS(959), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(959), + [anon_sym_and] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(959), + [anon_sym_or] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_err_GT] = ACTIONS(959), + [anon_sym_out_GT] = ACTIONS(959), + [anon_sym_e_GT] = ACTIONS(959), + [anon_sym_o_GT] = ACTIONS(959), + [anon_sym_err_PLUSout_GT] = ACTIONS(959), + [anon_sym_out_PLUSerr_GT] = ACTIONS(959), + [anon_sym_o_PLUSe_GT] = ACTIONS(959), + [anon_sym_e_PLUSo_GT] = ACTIONS(959), + [aux_sym_unquoted_token1] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, - [1159] = { - [sym_path] = STATE(1239), - [sym_comment] = STATE(1159), - [aux_sym_cell_path_repeat1] = STATE(1148), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_err_GT] = ACTIONS(903), - [anon_sym_out_GT] = ACTIONS(903), - [anon_sym_e_GT] = ACTIONS(903), - [anon_sym_o_GT] = ACTIONS(903), - [anon_sym_err_PLUSout_GT] = ACTIONS(903), - [anon_sym_out_PLUSerr_GT] = ACTIONS(903), - [anon_sym_o_PLUSe_GT] = ACTIONS(903), - [anon_sym_e_PLUSo_GT] = ACTIONS(903), - [aux_sym_unquoted_token1] = ACTIONS(903), + [1163] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4263), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1163), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, - [1160] = { - [sym_expr_parenthesized] = STATE(2171), - [sym__immediate_decimal] = STATE(2180), - [sym_val_variable] = STATE(2171), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1160), + [1164] = { + [sym_cell_path] = STATE(1368), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1164), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_bit_DASHshl] = ACTIONS(925), + [anon_sym_bit_DASHshr] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_not_DASHin] = ACTIONS(925), + [anon_sym_starts_DASHwith] = ACTIONS(925), + [anon_sym_ends_DASHwith] = ACTIONS(925), + [anon_sym_EQ_TILDE] = ACTIONS(925), + [anon_sym_BANG_TILDE] = ACTIONS(925), + [anon_sym_bit_DASHand] = ACTIONS(925), + [anon_sym_bit_DASHxor] = ACTIONS(925), + [anon_sym_bit_DASHor] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [aux_sym_unquoted_token1] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [1165] = { + [sym_comment] = STATE(1165), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(105), + }, + [1166] = { + [sym__flag] = STATE(1632), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), + [sym_comment] = STATE(1166), + [aux_sym_overlay_use_repeat1] = STATE(1166), + [anon_sym_export] = ACTIONS(2738), + [anon_sym_alias] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2738), + [anon_sym_let_DASHenv] = ACTIONS(2738), + [anon_sym_mut] = ACTIONS(2738), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [sym_cmd_identifier] = ACTIONS(2738), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_def] = ACTIONS(2738), + [anon_sym_export_DASHenv] = ACTIONS(2738), + [anon_sym_extern] = ACTIONS(2738), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_use] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_DOLLAR] = ACTIONS(2738), + [anon_sym_error] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2738), + [anon_sym_continue] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2738), + [anon_sym_loop] = ACTIONS(2738), + [anon_sym_while] = ACTIONS(2738), + [anon_sym_do] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_DOT] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2738), + [anon_sym_return] = ACTIONS(2738), + [anon_sym_source] = ACTIONS(2738), + [anon_sym_source_DASHenv] = ACTIONS(2738), + [anon_sym_register] = ACTIONS(2738), + [anon_sym_hide] = ACTIONS(2738), + [anon_sym_hide_DASHenv] = ACTIONS(2738), + [anon_sym_overlay] = ACTIONS(2738), + [anon_sym_as] = ACTIONS(2738), + [anon_sym_where] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2738), + [anon_sym_not] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2738), + [anon_sym_false] = ACTIONS(2738), + [aux_sym__val_number_decimal_token1] = ACTIONS(2738), + [aux_sym__val_number_token1] = ACTIONS(2738), + [aux_sym__val_number_token2] = ACTIONS(2738), + [aux_sym__val_number_token3] = ACTIONS(2738), + [aux_sym__val_number_token4] = ACTIONS(2738), + [aux_sym__val_number_token5] = ACTIONS(2738), + [aux_sym__val_number_token6] = ACTIONS(2738), + [anon_sym_0b] = ACTIONS(2738), + [anon_sym_0o] = ACTIONS(2738), + [anon_sym_0x] = ACTIONS(2738), + [sym_val_date] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [sym__str_single_quotes] = ACTIONS(2738), + [sym__str_back_ticks] = ACTIONS(2738), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(105), + }, + [1167] = { + [sym_cell_path] = STATE(1297), + [sym_path] = STATE(1154), + [sym_comment] = STATE(1167), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [1168] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4263), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1168), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_LF] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(105), + }, + [1169] = { + [sym_cell_path] = STATE(1420), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1169), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_err_GT] = ACTIONS(909), + [anon_sym_out_GT] = ACTIONS(909), + [anon_sym_e_GT] = ACTIONS(909), + [anon_sym_o_GT] = ACTIONS(909), + [anon_sym_err_PLUSout_GT] = ACTIONS(909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(909), + [anon_sym_o_PLUSe_GT] = ACTIONS(909), + [anon_sym_e_PLUSo_GT] = ACTIONS(909), + [aux_sym_unquoted_token1] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), + }, + [1170] = { + [sym_cell_path] = STATE(1423), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1170), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(105), + }, + [1171] = { + [sym_cell_path] = STATE(1424), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1171), + [ts_builtin_sym_end] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_in] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_bit_DASHshl] = ACTIONS(917), + [anon_sym_bit_DASHshr] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_not_DASHin] = ACTIONS(917), + [anon_sym_starts_DASHwith] = ACTIONS(917), + [anon_sym_ends_DASHwith] = ACTIONS(917), + [anon_sym_EQ_TILDE] = ACTIONS(917), + [anon_sym_BANG_TILDE] = ACTIONS(917), + [anon_sym_bit_DASHand] = ACTIONS(917), + [anon_sym_bit_DASHxor] = ACTIONS(917), + [anon_sym_bit_DASHor] = ACTIONS(917), + [anon_sym_and] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(917), + [anon_sym_or] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_err_GT] = ACTIONS(917), + [anon_sym_out_GT] = ACTIONS(917), + [anon_sym_e_GT] = ACTIONS(917), + [anon_sym_o_GT] = ACTIONS(917), + [anon_sym_err_PLUSout_GT] = ACTIONS(917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(917), + [anon_sym_o_PLUSe_GT] = ACTIONS(917), + [anon_sym_e_PLUSo_GT] = ACTIONS(917), + [aux_sym_unquoted_token1] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(105), + }, + [1172] = { + [sym_path] = STATE(1316), + [sym_comment] = STATE(1172), + [aux_sym_cell_path_repeat1] = STATE(1160), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_in] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_STAR_STAR] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_bit_DASHshl] = ACTIONS(973), + [anon_sym_bit_DASHshr] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_not_DASHin] = ACTIONS(973), + [anon_sym_starts_DASHwith] = ACTIONS(973), + [anon_sym_ends_DASHwith] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_BANG_TILDE] = ACTIONS(973), + [anon_sym_bit_DASHand] = ACTIONS(973), + [anon_sym_bit_DASHxor] = ACTIONS(973), + [anon_sym_bit_DASHor] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(973), + [anon_sym_out_GT] = ACTIONS(973), + [anon_sym_e_GT] = ACTIONS(973), + [anon_sym_o_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [1173] = { + [sym_expr_parenthesized] = STATE(2351), + [sym__immediate_decimal] = STATE(2352), + [sym_val_variable] = STATE(2351), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [sym_cmd_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2173), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2173), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2173), + [anon_sym_0o] = ACTIONS(2173), + [anon_sym_0x] = ACTIONS(2173), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(105), + }, + [1174] = { + [sym_cell_path] = STATE(1421), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1174), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [1175] = { + [sym_expr_parenthesized] = STATE(2353), + [sym__immediate_decimal] = STATE(2354), + [sym_val_variable] = STATE(2353), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1175), + [ts_builtin_sym_end] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [sym_cmd_identifier] = ACTIONS(2075), + [anon_sym_LF] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_where] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_not] = ACTIONS(2075), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_token1] = ACTIONS(2075), + [aux_sym__val_number_token2] = ACTIONS(2075), + [aux_sym__val_number_token3] = ACTIONS(2075), + [aux_sym__val_number_token4] = ACTIONS(2075), + [aux_sym__val_number_token5] = ACTIONS(2075), + [aux_sym__val_number_token6] = ACTIONS(2075), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2075), + [anon_sym_0x] = ACTIONS(2075), + [sym_val_date] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2075), + [sym__str_back_ticks] = ACTIONS(2075), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(105), + }, + [1176] = { + [sym_expr_parenthesized] = STATE(2357), + [sym__immediate_decimal] = STATE(2358), + [sym_val_variable] = STATE(2357), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1176), + [ts_builtin_sym_end] = ACTIONS(2081), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [sym_cmd_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_where] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2079), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [aux_sym__val_number_token4] = ACTIONS(2079), + [aux_sym__val_number_token5] = ACTIONS(2079), + [aux_sym__val_number_token6] = ACTIONS(2079), + [anon_sym_0b] = ACTIONS(2079), + [anon_sym_0o] = ACTIONS(2079), + [anon_sym_0x] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(105), + }, + [1177] = { + [sym_expr_parenthesized] = STATE(2359), + [sym__immediate_decimal] = STATE(2361), + [sym_val_variable] = STATE(2359), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1177), + [ts_builtin_sym_end] = ACTIONS(2073), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [sym_cmd_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_where] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_not] = ACTIONS(2071), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [aux_sym__val_number_token4] = ACTIONS(2071), + [aux_sym__val_number_token5] = ACTIONS(2071), + [aux_sym__val_number_token6] = ACTIONS(2071), + [anon_sym_0b] = ACTIONS(2071), + [anon_sym_0o] = ACTIONS(2071), + [anon_sym_0x] = ACTIONS(2071), + [sym_val_date] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [sym__str_single_quotes] = ACTIONS(2071), + [sym__str_back_ticks] = ACTIONS(2071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(105), + }, + [1178] = { + [sym_cell_path] = STATE(1401), + [sym_path] = STATE(1199), + [sym_comment] = STATE(1178), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_bit_DASHshl] = ACTIONS(966), + [anon_sym_bit_DASHshr] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_not_DASHin] = ACTIONS(966), + [anon_sym_starts_DASHwith] = ACTIONS(966), + [anon_sym_ends_DASHwith] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_BANG_TILDE] = ACTIONS(966), + [anon_sym_bit_DASHand] = ACTIONS(966), + [anon_sym_bit_DASHxor] = ACTIONS(966), + [anon_sym_bit_DASHor] = ACTIONS(966), + [anon_sym_and] = ACTIONS(966), + [anon_sym_xor] = ACTIONS(966), + [anon_sym_or] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [1179] = { + [sym__command_name] = STATE(2047), + [sym_scope_pattern] = STATE(2050), + [sym_wild_card] = STATE(2057), + [sym_command_list] = STATE(2061), + [sym_val_string] = STATE(1814), + [sym__str_double_quotes] = STATE(1778), + [sym_comment] = STATE(1179), + [anon_sym_export] = ACTIONS(2755), + [anon_sym_alias] = ACTIONS(2755), + [anon_sym_let] = ACTIONS(2755), + [anon_sym_let_DASHenv] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2755), + [sym_cmd_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2759), + [anon_sym_def] = ACTIONS(2755), + [anon_sym_export_DASHenv] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym_module] = ACTIONS(2755), + [anon_sym_use] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2755), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_error] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_loop] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_source] = ACTIONS(2755), + [anon_sym_source_DASHenv] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_hide] = ACTIONS(2755), + [anon_sym_hide_DASHenv] = ACTIONS(2755), + [anon_sym_overlay] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_where] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_null] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2755), + [anon_sym_false] = ACTIONS(2755), + [aux_sym__val_number_decimal_token1] = ACTIONS(2755), + [aux_sym__val_number_token1] = ACTIONS(2755), + [aux_sym__val_number_token2] = ACTIONS(2755), + [aux_sym__val_number_token3] = ACTIONS(2755), + [aux_sym__val_number_token4] = ACTIONS(2755), + [aux_sym__val_number_token5] = ACTIONS(2755), + [aux_sym__val_number_token6] = ACTIONS(2755), + [anon_sym_0b] = ACTIONS(2755), + [anon_sym_0o] = ACTIONS(2755), + [anon_sym_0x] = ACTIONS(2755), + [sym_val_date] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym__str_single_quotes] = ACTIONS(2767), + [sym__str_back_ticks] = ACTIONS(2767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(105), + }, + [1180] = { + [sym__command_name] = STATE(2047), + [sym_scope_pattern] = STATE(2091), + [sym_wild_card] = STATE(2057), + [sym_command_list] = STATE(2061), + [sym_val_string] = STATE(1814), + [sym__str_double_quotes] = STATE(1778), + [sym_comment] = STATE(1180), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_alias] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_let_DASHenv] = ACTIONS(2769), + [anon_sym_mut] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2769), + [sym_cmd_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_export_DASHenv] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_module] = ACTIONS(2769), + [anon_sym_use] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2769), + [anon_sym_error] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_loop] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_source] = ACTIONS(2769), + [anon_sym_source_DASHenv] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_hide] = ACTIONS(2769), + [anon_sym_hide_DASHenv] = ACTIONS(2769), + [anon_sym_overlay] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_where] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_null] = ACTIONS(2769), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [aux_sym__val_number_decimal_token1] = ACTIONS(2769), + [aux_sym__val_number_token1] = ACTIONS(2769), + [aux_sym__val_number_token2] = ACTIONS(2769), + [aux_sym__val_number_token3] = ACTIONS(2769), + [aux_sym__val_number_token4] = ACTIONS(2769), + [aux_sym__val_number_token5] = ACTIONS(2769), + [aux_sym__val_number_token6] = ACTIONS(2769), + [anon_sym_0b] = ACTIONS(2769), + [anon_sym_0o] = ACTIONS(2769), + [anon_sym_0x] = ACTIONS(2769), + [sym_val_date] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym__str_single_quotes] = ACTIONS(2767), + [sym__str_back_ticks] = ACTIONS(2767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2769), + [anon_sym_CARET] = ACTIONS(2769), + [anon_sym_POUND] = ACTIONS(105), + }, + [1181] = { + [sym_expr_parenthesized] = STATE(2166), + [sym__immediate_decimal] = STATE(2168), + [sym_val_variable] = STATE(2166), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_alias] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_let_DASHenv] = ACTIONS(2106), + [anon_sym_mut] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [sym_cmd_identifier] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2108), + [anon_sym_def] = ACTIONS(2106), + [anon_sym_export_DASHenv] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_DOT] = ACTIONS(2106), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_source] = ACTIONS(2106), + [anon_sym_source_DASHenv] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_hide] = ACTIONS(2106), + [anon_sym_hide_DASHenv] = ACTIONS(2106), + [anon_sym_overlay] = ACTIONS(2106), + [anon_sym_where] = ACTIONS(2106), + [anon_sym_PLUS] = ACTIONS(2106), + [anon_sym_not] = ACTIONS(2106), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2106), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [aux_sym__val_number_decimal_token1] = ACTIONS(2106), + [aux_sym__val_number_token1] = ACTIONS(2106), + [aux_sym__val_number_token2] = ACTIONS(2106), + [aux_sym__val_number_token3] = ACTIONS(2106), + [aux_sym__val_number_token4] = ACTIONS(2106), + [aux_sym__val_number_token5] = ACTIONS(2106), + [aux_sym__val_number_token6] = ACTIONS(2106), + [anon_sym_0b] = ACTIONS(2106), + [anon_sym_0o] = ACTIONS(2106), + [anon_sym_0x] = ACTIONS(2106), + [sym_val_date] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym__str_single_quotes] = ACTIONS(2106), + [sym__str_back_ticks] = ACTIONS(2106), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2106), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(105), + }, + [1182] = { + [sym_expr_parenthesized] = STATE(2169), + [sym__immediate_decimal] = STATE(2170), + [sym_val_variable] = STATE(2169), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1182), [ts_builtin_sym_end] = ACTIONS(2112), [anon_sym_export] = ACTIONS(2110), [anon_sym_alias] = ACTIONS(2110), @@ -188810,8 +190443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2110), [anon_sym_use] = ACTIONS(2110), [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), [anon_sym_error] = ACTIONS(2110), [anon_sym_DASH] = ACTIONS(2110), [anon_sym_break] = ACTIONS(2110), @@ -188824,7 +190457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(2110), [anon_sym_LBRACE] = ACTIONS(2110), [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT2] = ACTIONS(2249), + [anon_sym_DOT2] = ACTIONS(2259), [anon_sym_try] = ACTIONS(2110), [anon_sym_return] = ACTIONS(2110), [anon_sym_source] = ACTIONS(2110), @@ -188836,9 +190469,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2110), [anon_sym_PLUS] = ACTIONS(2110), [anon_sym_not] = ACTIONS(2110), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), [anon_sym_null] = ACTIONS(2110), [anon_sym_true] = ACTIONS(2110), [anon_sym_false] = ACTIONS(2110), @@ -188861,158 +190494,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(105), }, - [1161] = { - [sym_comment] = STATE(1161), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym_unquoted_token1] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, - [1162] = { - [sym_cell_path] = STATE(1326), - [sym_path] = STATE(1159), - [sym_comment] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [aux_sym_unquoted_token1] = ACTIONS(979), + [1183] = { + [sym_expr_parenthesized] = STATE(2171), + [sym__immediate_decimal] = STATE(2173), + [sym_val_variable] = STATE(2171), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1183), + [ts_builtin_sym_end] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2114), + [anon_sym_alias] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_let_DASHenv] = ACTIONS(2114), + [anon_sym_mut] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [sym_cmd_identifier] = ACTIONS(2114), + [anon_sym_LF] = ACTIONS(2116), + [anon_sym_def] = ACTIONS(2114), + [anon_sym_export_DASHenv] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_module] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_DOT] = ACTIONS(2114), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_source] = ACTIONS(2114), + [anon_sym_source_DASHenv] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2114), + [anon_sym_hide] = ACTIONS(2114), + [anon_sym_hide_DASHenv] = ACTIONS(2114), + [anon_sym_overlay] = ACTIONS(2114), + [anon_sym_where] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_not] = ACTIONS(2114), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym__val_number_decimal_token1] = ACTIONS(2114), + [aux_sym__val_number_token1] = ACTIONS(2114), + [aux_sym__val_number_token2] = ACTIONS(2114), + [aux_sym__val_number_token3] = ACTIONS(2114), + [aux_sym__val_number_token4] = ACTIONS(2114), + [aux_sym__val_number_token5] = ACTIONS(2114), + [aux_sym__val_number_token6] = ACTIONS(2114), + [anon_sym_0b] = ACTIONS(2114), + [anon_sym_0o] = ACTIONS(2114), + [anon_sym_0x] = ACTIONS(2114), + [sym_val_date] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym__str_single_quotes] = ACTIONS(2114), + [sym__str_back_ticks] = ACTIONS(2114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(105), }, - [1163] = { + [1184] = { [sym_expr_parenthesized] = STATE(2174), - [sym__immediate_decimal] = STATE(2175), + [sym__immediate_decimal] = STATE(2180), [sym_val_variable] = STATE(2174), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1163), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1184), [ts_builtin_sym_end] = ACTIONS(2120), [anon_sym_export] = ACTIONS(2118), [anon_sym_alias] = ACTIONS(2118), @@ -189029,8 +190589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2118), [anon_sym_use] = ACTIONS(2118), [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), [anon_sym_error] = ACTIONS(2118), [anon_sym_DASH] = ACTIONS(2118), [anon_sym_break] = ACTIONS(2118), @@ -189043,7 +190603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(2118), [anon_sym_LBRACE] = ACTIONS(2118), [anon_sym_DOT] = ACTIONS(2118), - [anon_sym_DOT2] = ACTIONS(2249), + [anon_sym_DOT2] = ACTIONS(2259), [anon_sym_try] = ACTIONS(2118), [anon_sym_return] = ACTIONS(2118), [anon_sym_source] = ACTIONS(2118), @@ -189055,9 +190615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2118), [anon_sym_PLUS] = ACTIONS(2118), [anon_sym_not] = ACTIONS(2118), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), [anon_sym_null] = ACTIONS(2118), [anon_sym_true] = ACTIONS(2118), [anon_sym_false] = ACTIONS(2118), @@ -189080,811 +190640,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(105), }, - [1164] = { - [sym_expr_parenthesized] = STATE(2217), - [sym__immediate_decimal] = STATE(2219), - [sym_val_variable] = STATE(2217), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_alias] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_let_DASHenv] = ACTIONS(2091), - [anon_sym_mut] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2091), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_export_DASHenv] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_source] = ACTIONS(2091), - [anon_sym_source_DASHenv] = ACTIONS(2091), - [anon_sym_register] = ACTIONS(2091), - [anon_sym_hide] = ACTIONS(2091), - [anon_sym_hide_DASHenv] = ACTIONS(2091), - [anon_sym_overlay] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2091), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2091), - [anon_sym_0o] = ACTIONS(2091), - [anon_sym_0x] = ACTIONS(2091), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(105), - }, - [1165] = { - [sym__flag] = STATE(1663), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_comment] = STATE(1165), - [aux_sym_overlay_use_repeat1] = STATE(1198), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_alias] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_DASHenv] = ACTIONS(2701), - [anon_sym_mut] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [sym_cmd_identifier] = ACTIONS(2701), - [anon_sym_LF] = ACTIONS(2703), - [anon_sym_def] = ACTIONS(2701), - [anon_sym_export_DASHenv] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_error] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_loop] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_source] = ACTIONS(2701), - [anon_sym_source_DASHenv] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_hide] = ACTIONS(2701), - [anon_sym_hide_DASHenv] = ACTIONS(2701), - [anon_sym_overlay] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2705), - [anon_sym_where] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2701), - [anon_sym_false] = ACTIONS(2701), - [aux_sym__val_number_decimal_token1] = ACTIONS(2701), - [aux_sym__val_number_token1] = ACTIONS(2701), - [aux_sym__val_number_token2] = ACTIONS(2701), - [aux_sym__val_number_token3] = ACTIONS(2701), - [aux_sym__val_number_token4] = ACTIONS(2701), - [aux_sym__val_number_token5] = ACTIONS(2701), - [aux_sym__val_number_token6] = ACTIONS(2701), - [anon_sym_0b] = ACTIONS(2701), - [anon_sym_0o] = ACTIONS(2701), - [anon_sym_0x] = ACTIONS(2701), - [sym_val_date] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym__str_single_quotes] = ACTIONS(2701), - [sym__str_back_ticks] = ACTIONS(2701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(105), - }, - [1166] = { - [sym_comment] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(105), - }, - [1167] = { - [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(105), - }, - [1168] = { - [sym_cell_path] = STATE(1390), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_STAR_STAR] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_mod] = ACTIONS(979), - [anon_sym_SLASH_SLASH] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_bit_DASHshl] = ACTIONS(979), - [anon_sym_bit_DASHshr] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_not_DASHin] = ACTIONS(979), - [anon_sym_starts_DASHwith] = ACTIONS(979), - [anon_sym_ends_DASHwith] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [anon_sym_bit_DASHand] = ACTIONS(979), - [anon_sym_bit_DASHxor] = ACTIONS(979), - [anon_sym_bit_DASHor] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_xor] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [aux_sym_unquoted_token1] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [1169] = { - [sym_expr_parenthesized] = STATE(2300), - [sym__immediate_decimal] = STATE(2297), - [sym_val_variable] = STATE(2300), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [sym_cmd_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_where] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), + [1185] = { + [sym_expr_parenthesized] = STATE(2181), + [sym__immediate_decimal] = STATE(2182), + [sym_val_variable] = STATE(2181), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1185), + [ts_builtin_sym_end] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [sym_cmd_identifier] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2124), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_where] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_not] = ACTIONS(2122), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_token1] = ACTIONS(2122), + [aux_sym__val_number_token2] = ACTIONS(2122), + [aux_sym__val_number_token3] = ACTIONS(2122), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_0b] = ACTIONS(2122), + [anon_sym_0o] = ACTIONS(2122), + [anon_sym_0x] = ACTIONS(2122), + [sym_val_date] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), [anon_sym_POUND] = ACTIONS(105), }, - [1170] = { - [sym_comment] = STATE(1170), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(2707), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1054), - [anon_sym_out_GT] = ACTIONS(1054), - [anon_sym_e_GT] = ACTIONS(1054), - [anon_sym_o_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1054), + [1186] = { + [sym_expr_parenthesized] = STATE(2196), + [sym__immediate_decimal] = STATE(2199), + [sym_val_variable] = STATE(2196), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1186), + [ts_builtin_sym_end] = ACTIONS(2128), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_alias] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_let_DASHenv] = ACTIONS(2126), + [anon_sym_mut] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [sym_cmd_identifier] = ACTIONS(2126), + [anon_sym_LF] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2126), + [anon_sym_export_DASHenv] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_source] = ACTIONS(2126), + [anon_sym_source_DASHenv] = ACTIONS(2126), + [anon_sym_register] = ACTIONS(2126), + [anon_sym_hide] = ACTIONS(2126), + [anon_sym_hide_DASHenv] = ACTIONS(2126), + [anon_sym_overlay] = ACTIONS(2126), + [anon_sym_where] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_not] = ACTIONS(2126), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2126), + [aux_sym__val_number_token1] = ACTIONS(2126), + [aux_sym__val_number_token2] = ACTIONS(2126), + [aux_sym__val_number_token3] = ACTIONS(2126), + [aux_sym__val_number_token4] = ACTIONS(2126), + [aux_sym__val_number_token5] = ACTIONS(2126), + [aux_sym__val_number_token6] = ACTIONS(2126), + [anon_sym_0b] = ACTIONS(2126), + [anon_sym_0o] = ACTIONS(2126), + [anon_sym_0x] = ACTIONS(2126), + [sym_val_date] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym__str_single_quotes] = ACTIONS(2126), + [sym__str_back_ticks] = ACTIONS(2126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), [anon_sym_POUND] = ACTIONS(105), }, - [1171] = { - [sym_comment] = STATE(1171), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(2707), - [anon_sym_STAR_STAR] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_bit_DASHshl] = ACTIONS(1054), - [anon_sym_bit_DASHshr] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_not_DASHin] = ACTIONS(1054), - [anon_sym_starts_DASHwith] = ACTIONS(1054), - [anon_sym_ends_DASHwith] = ACTIONS(1054), - [anon_sym_EQ_TILDE] = ACTIONS(1054), - [anon_sym_BANG_TILDE] = ACTIONS(1054), - [anon_sym_bit_DASHand] = ACTIONS(1054), - [anon_sym_bit_DASHxor] = ACTIONS(1054), - [anon_sym_bit_DASHor] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1054), - [anon_sym_xor] = ACTIONS(1054), - [anon_sym_or] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1054), - [anon_sym_out_GT] = ACTIONS(1054), - [anon_sym_e_GT] = ACTIONS(1054), - [anon_sym_o_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1054), + [1187] = { + [sym_expr_parenthesized] = STATE(2201), + [sym__immediate_decimal] = STATE(2202), + [sym_val_variable] = STATE(2201), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1187), + [ts_builtin_sym_end] = ACTIONS(2132), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [sym_cmd_identifier] = ACTIONS(2130), + [anon_sym_LF] = ACTIONS(2132), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_DOT] = ACTIONS(2130), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_where] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(2130), + [anon_sym_not] = ACTIONS(2130), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_token1] = ACTIONS(2130), + [aux_sym__val_number_token2] = ACTIONS(2130), + [aux_sym__val_number_token3] = ACTIONS(2130), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(105), }, - [1172] = { - [sym_cell_path] = STATE(1458), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_in] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_STAR_STAR] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_bit_DASHshl] = ACTIONS(909), - [anon_sym_bit_DASHshr] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_not_DASHin] = ACTIONS(909), - [anon_sym_starts_DASHwith] = ACTIONS(909), - [anon_sym_ends_DASHwith] = ACTIONS(909), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_BANG_TILDE] = ACTIONS(909), - [anon_sym_bit_DASHand] = ACTIONS(909), - [anon_sym_bit_DASHxor] = ACTIONS(909), - [anon_sym_bit_DASHor] = ACTIONS(909), - [anon_sym_and] = ACTIONS(909), - [anon_sym_xor] = ACTIONS(909), - [anon_sym_or] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_err_GT] = ACTIONS(909), - [anon_sym_out_GT] = ACTIONS(909), - [anon_sym_e_GT] = ACTIONS(909), - [anon_sym_o_GT] = ACTIONS(909), - [anon_sym_err_PLUSout_GT] = ACTIONS(909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(909), - [anon_sym_o_PLUSe_GT] = ACTIONS(909), - [anon_sym_e_PLUSo_GT] = ACTIONS(909), - [aux_sym_unquoted_token1] = ACTIONS(909), + [1188] = { + [sym_expr_parenthesized] = STATE(2204), + [sym__immediate_decimal] = STATE(2205), + [sym_val_variable] = STATE(2204), + [sym__var] = STATE(1649), + [sym_comment] = STATE(1188), + [ts_builtin_sym_end] = ACTIONS(2136), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [sym_cmd_identifier] = ACTIONS(2134), + [anon_sym_LF] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_DOT] = ACTIONS(2134), + [anon_sym_DOT2] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_where] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_not] = ACTIONS(2134), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [sym_val_date] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym__str_single_quotes] = ACTIONS(2134), + [sym__str_back_ticks] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(105), }, - [1173] = { - [sym_cell_path] = STATE(1460), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_in] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_STAR_STAR] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_bit_DASHshl] = ACTIONS(1001), - [anon_sym_bit_DASHshr] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_LT2] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_not_DASHin] = ACTIONS(1001), - [anon_sym_starts_DASHwith] = ACTIONS(1001), - [anon_sym_ends_DASHwith] = ACTIONS(1001), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_BANG_TILDE] = ACTIONS(1001), - [anon_sym_bit_DASHand] = ACTIONS(1001), - [anon_sym_bit_DASHxor] = ACTIONS(1001), - [anon_sym_bit_DASHor] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_xor] = ACTIONS(1001), - [anon_sym_or] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_err_GT] = ACTIONS(1001), - [anon_sym_out_GT] = ACTIONS(1001), - [anon_sym_e_GT] = ACTIONS(1001), - [anon_sym_o_GT] = ACTIONS(1001), - [anon_sym_err_PLUSout_GT] = ACTIONS(1001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1001), - [anon_sym_o_PLUSe_GT] = ACTIONS(1001), - [anon_sym_e_PLUSo_GT] = ACTIONS(1001), - [aux_sym_unquoted_token1] = ACTIONS(1001), + [1189] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4263), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1189), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2227), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(105), }, - [1174] = { - [sym_cell_path] = STATE(1418), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_STAR_STAR] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_bit_DASHshl] = ACTIONS(967), - [anon_sym_bit_DASHshr] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_not_DASHin] = ACTIONS(967), - [anon_sym_starts_DASHwith] = ACTIONS(967), - [anon_sym_ends_DASHwith] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [anon_sym_bit_DASHand] = ACTIONS(967), - [anon_sym_bit_DASHxor] = ACTIONS(967), - [anon_sym_bit_DASHor] = ACTIONS(967), - [anon_sym_and] = ACTIONS(967), - [anon_sym_xor] = ACTIONS(967), - [anon_sym_or] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [aux_sym_unquoted_token1] = ACTIONS(967), + [1190] = { + [sym_comment] = STATE(1190), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(2779), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_err_GT] = ACTIONS(949), + [anon_sym_out_GT] = ACTIONS(949), + [anon_sym_e_GT] = ACTIONS(949), + [anon_sym_o_GT] = ACTIONS(949), + [anon_sym_err_PLUSout_GT] = ACTIONS(949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(949), + [anon_sym_o_PLUSe_GT] = ACTIONS(949), + [anon_sym_e_PLUSo_GT] = ACTIONS(949), + [aux_sym_unquoted_token1] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(2781), [anon_sym_POUND] = ACTIONS(105), }, - [1175] = { - [sym_comment] = STATE(1175), + [1191] = { + [sym__command_name] = STATE(2047), + [sym_scope_pattern] = STATE(2033), + [sym_wild_card] = STATE(2057), + [sym_command_list] = STATE(2061), + [sym_val_string] = STATE(1814), + [sym__str_double_quotes] = STATE(1778), + [sym_comment] = STATE(1191), + [anon_sym_export] = ACTIONS(2783), + [anon_sym_alias] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2783), + [anon_sym_let_DASHenv] = ACTIONS(2783), + [anon_sym_mut] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2783), + [sym_cmd_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2785), + [anon_sym_def] = ACTIONS(2783), + [anon_sym_export_DASHenv] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2783), + [anon_sym_use] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2783), + [anon_sym_error] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_loop] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_match] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_DOT] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_source] = ACTIONS(2783), + [anon_sym_source_DASHenv] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_hide] = ACTIONS(2783), + [anon_sym_hide_DASHenv] = ACTIONS(2783), + [anon_sym_overlay] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_where] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_null] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2783), + [anon_sym_false] = ACTIONS(2783), + [aux_sym__val_number_decimal_token1] = ACTIONS(2783), + [aux_sym__val_number_token1] = ACTIONS(2783), + [aux_sym__val_number_token2] = ACTIONS(2783), + [aux_sym__val_number_token3] = ACTIONS(2783), + [aux_sym__val_number_token4] = ACTIONS(2783), + [aux_sym__val_number_token5] = ACTIONS(2783), + [aux_sym__val_number_token6] = ACTIONS(2783), + [anon_sym_0b] = ACTIONS(2783), + [anon_sym_0o] = ACTIONS(2783), + [anon_sym_0x] = ACTIONS(2783), + [sym_val_date] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2765), + [sym__str_single_quotes] = ACTIONS(2767), + [sym__str_back_ticks] = ACTIONS(2767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_POUND] = ACTIONS(105), + }, + [1192] = { + [sym_comment] = STATE(1192), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -189929,8 +191197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(815), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(2709), - [aux_sym__immediate_decimal_token2] = ACTIONS(2711), + [aux_sym__immediate_decimal_token1] = ACTIONS(2787), + [aux_sym__immediate_decimal_token2] = ACTIONS(2789), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -189956,373 +191224,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1176] = { - [sym_expr_parenthesized] = STATE(2227), - [sym__immediate_decimal] = STATE(2228), - [sym_val_variable] = STATE(2227), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1176), - [ts_builtin_sym_end] = ACTIONS(2124), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [sym_cmd_identifier] = ACTIONS(2122), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_DOT] = ACTIONS(2122), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_where] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_not] = ACTIONS(2122), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_0b] = ACTIONS(2122), - [anon_sym_0o] = ACTIONS(2122), - [anon_sym_0x] = ACTIONS(2122), - [sym_val_date] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(105), - }, - [1177] = { - [sym__flag] = STATE(1663), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_comment] = STATE(1177), - [aux_sym_overlay_use_repeat1] = STATE(1156), - [anon_sym_export] = ACTIONS(2713), - [anon_sym_alias] = ACTIONS(2713), - [anon_sym_let] = ACTIONS(2713), - [anon_sym_let_DASHenv] = ACTIONS(2713), - [anon_sym_mut] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2713), - [sym_cmd_identifier] = ACTIONS(2713), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_def] = ACTIONS(2713), - [anon_sym_export_DASHenv] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym_module] = ACTIONS(2713), - [anon_sym_use] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_RPAREN] = ACTIONS(2713), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_error] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_loop] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_match] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_DOT] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_source] = ACTIONS(2713), - [anon_sym_source_DASHenv] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_hide] = ACTIONS(2713), - [anon_sym_hide_DASHenv] = ACTIONS(2713), - [anon_sym_overlay] = ACTIONS(2713), - [anon_sym_as] = ACTIONS(2717), - [anon_sym_where] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_null] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2713), - [aux_sym__val_number_token1] = ACTIONS(2713), - [aux_sym__val_number_token2] = ACTIONS(2713), - [aux_sym__val_number_token3] = ACTIONS(2713), - [aux_sym__val_number_token4] = ACTIONS(2713), - [aux_sym__val_number_token5] = ACTIONS(2713), - [aux_sym__val_number_token6] = ACTIONS(2713), - [anon_sym_0b] = ACTIONS(2713), - [anon_sym_0o] = ACTIONS(2713), - [anon_sym_0x] = ACTIONS(2713), - [sym_val_date] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym__str_single_quotes] = ACTIONS(2713), - [sym__str_back_ticks] = ACTIONS(2713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(105), - }, - [1178] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4225), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1178), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_LF] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2719), - [anon_sym_PIPE] = ACTIONS(2719), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1179] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4225), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1179), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_LF] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1180] = { - [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(2729), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(2731), + [1193] = { + [sym__flag] = STATE(1632), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), + [sym_comment] = STATE(1193), + [aux_sym_overlay_use_repeat1] = STATE(1166), + [anon_sym_export] = ACTIONS(2791), + [anon_sym_alias] = ACTIONS(2791), + [anon_sym_let] = ACTIONS(2791), + [anon_sym_let_DASHenv] = ACTIONS(2791), + [anon_sym_mut] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2791), + [sym_cmd_identifier] = ACTIONS(2791), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_def] = ACTIONS(2791), + [anon_sym_export_DASHenv] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym_module] = ACTIONS(2791), + [anon_sym_use] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_error] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_loop] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_do] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_match] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_source] = ACTIONS(2791), + [anon_sym_source_DASHenv] = ACTIONS(2791), + [anon_sym_register] = ACTIONS(2791), + [anon_sym_hide] = ACTIONS(2791), + [anon_sym_hide_DASHenv] = ACTIONS(2791), + [anon_sym_overlay] = ACTIONS(2791), + [anon_sym_as] = ACTIONS(2795), + [anon_sym_where] = ACTIONS(2791), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_null] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2791), + [anon_sym_false] = ACTIONS(2791), + [aux_sym__val_number_decimal_token1] = ACTIONS(2791), + [aux_sym__val_number_token1] = ACTIONS(2791), + [aux_sym__val_number_token2] = ACTIONS(2791), + [aux_sym__val_number_token3] = ACTIONS(2791), + [aux_sym__val_number_token4] = ACTIONS(2791), + [aux_sym__val_number_token5] = ACTIONS(2791), + [aux_sym__val_number_token6] = ACTIONS(2791), + [anon_sym_0b] = ACTIONS(2791), + [anon_sym_0o] = ACTIONS(2791), + [anon_sym_0x] = ACTIONS(2791), + [sym_val_date] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym__str_single_quotes] = ACTIONS(2791), + [sym__str_back_ticks] = ACTIONS(2791), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2791), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2791), + [anon_sym_CARET] = ACTIONS(2791), [anon_sym_POUND] = ACTIONS(105), }, - [1181] = { - [sym_comment] = STATE(1181), + [1194] = { + [sym_comment] = STATE(1194), + [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -190339,7 +191316,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(807), [anon_sym_error] = ACTIONS(807), [anon_sym_DASH_DASH] = ACTIONS(807), @@ -190353,7 +191329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(807), [anon_sym_match] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), [anon_sym_DOT2] = ACTIONS(809), [anon_sym_try] = ACTIONS(807), @@ -190368,7 +191343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2652), + [aux_sym__immediate_decimal_token1] = ACTIONS(2797), + [aux_sym__immediate_decimal_token2] = ACTIONS(2799), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -190394,375 +191370,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1182] = { - [sym_cell_path] = STATE(1416), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_STAR_STAR] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_bit_DASHshl] = ACTIONS(971), - [anon_sym_bit_DASHshr] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_not_DASHin] = ACTIONS(971), - [anon_sym_starts_DASHwith] = ACTIONS(971), - [anon_sym_ends_DASHwith] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [anon_sym_bit_DASHand] = ACTIONS(971), - [anon_sym_bit_DASHxor] = ACTIONS(971), - [anon_sym_bit_DASHor] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_xor] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(105), - }, - [1183] = { - [sym_cell_path] = STATE(1421), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1183), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(990), + [1195] = { + [sym_comment] = STATE(1195), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(2801), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [1184] = { - [sym_path] = STATE(1239), - [sym_comment] = STATE(1184), - [aux_sym_cell_path_repeat1] = STATE(1184), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_STAR_STAR] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_mod] = ACTIONS(1015), - [anon_sym_SLASH_SLASH] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_bit_DASHshl] = ACTIONS(1015), - [anon_sym_bit_DASHshr] = ACTIONS(1015), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_LT2] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_not_DASHin] = ACTIONS(1015), - [anon_sym_starts_DASHwith] = ACTIONS(1015), - [anon_sym_ends_DASHwith] = ACTIONS(1015), - [anon_sym_EQ_TILDE] = ACTIONS(1015), - [anon_sym_BANG_TILDE] = ACTIONS(1015), - [anon_sym_bit_DASHand] = ACTIONS(1015), - [anon_sym_bit_DASHxor] = ACTIONS(1015), - [anon_sym_bit_DASHor] = ACTIONS(1015), - [anon_sym_and] = ACTIONS(1015), - [anon_sym_xor] = ACTIONS(1015), - [anon_sym_or] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [aux_sym_unquoted_token1] = ACTIONS(1015), + [1196] = { + [sym_comment] = STATE(1196), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_err_GT] = ACTIONS(1082), + [anon_sym_out_GT] = ACTIONS(1082), + [anon_sym_e_GT] = ACTIONS(1082), + [anon_sym_o_GT] = ACTIONS(1082), + [anon_sym_err_PLUSout_GT] = ACTIONS(1082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1082), + [anon_sym_o_PLUSe_GT] = ACTIONS(1082), + [anon_sym_e_PLUSo_GT] = ACTIONS(1082), + [aux_sym_unquoted_token1] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, - [1185] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4225), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1185), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [1197] = { + [sym__flag] = STATE(1632), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), + [sym_comment] = STATE(1197), + [aux_sym_overlay_use_repeat1] = STATE(1153), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_alias] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_let_DASHenv] = ACTIONS(2803), + [anon_sym_mut] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [sym_cmd_identifier] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_def] = ACTIONS(2803), + [anon_sym_export_DASHenv] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_error] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_loop] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_match] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_source] = ACTIONS(2803), + [anon_sym_source_DASHenv] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_hide] = ACTIONS(2803), + [anon_sym_hide_DASHenv] = ACTIONS(2803), + [anon_sym_overlay] = ACTIONS(2803), + [anon_sym_as] = ACTIONS(2807), + [anon_sym_where] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2803), + [anon_sym_true] = ACTIONS(2803), + [anon_sym_false] = ACTIONS(2803), + [aux_sym__val_number_decimal_token1] = ACTIONS(2803), + [aux_sym__val_number_token1] = ACTIONS(2803), + [aux_sym__val_number_token2] = ACTIONS(2803), + [aux_sym__val_number_token3] = ACTIONS(2803), + [aux_sym__val_number_token4] = ACTIONS(2803), + [aux_sym__val_number_token5] = ACTIONS(2803), + [aux_sym__val_number_token6] = ACTIONS(2803), + [anon_sym_0b] = ACTIONS(2803), + [anon_sym_0o] = ACTIONS(2803), + [anon_sym_0x] = ACTIONS(2803), + [sym_val_date] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym__str_single_quotes] = ACTIONS(2803), + [sym__str_back_ticks] = ACTIONS(2803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2803), + [anon_sym_CARET] = ACTIONS(2803), [anon_sym_POUND] = ACTIONS(105), }, - [1186] = { - [sym_expr_parenthesized] = STATE(2279), - [sym__immediate_decimal] = STATE(2277), - [sym_val_variable] = STATE(2279), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_alias] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_let_DASHenv] = ACTIONS(2126), - [anon_sym_mut] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [sym_cmd_identifier] = ACTIONS(2126), - [anon_sym_LF] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2126), - [anon_sym_export_DASHenv] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_module] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_DOT] = ACTIONS(2126), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_source] = ACTIONS(2126), - [anon_sym_source_DASHenv] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_hide] = ACTIONS(2126), - [anon_sym_hide_DASHenv] = ACTIONS(2126), - [anon_sym_overlay] = ACTIONS(2126), - [anon_sym_where] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_not] = ACTIONS(2126), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [aux_sym__val_number_decimal_token1] = ACTIONS(2126), - [aux_sym__val_number_token1] = ACTIONS(2126), - [aux_sym__val_number_token2] = ACTIONS(2126), - [aux_sym__val_number_token3] = ACTIONS(2126), - [aux_sym__val_number_token4] = ACTIONS(2126), - [aux_sym__val_number_token5] = ACTIONS(2126), - [aux_sym__val_number_token6] = ACTIONS(2126), - [anon_sym_0b] = ACTIONS(2126), - [anon_sym_0o] = ACTIONS(2126), - [anon_sym_0x] = ACTIONS(2126), - [sym_val_date] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [sym__str_single_quotes] = ACTIONS(2126), - [sym__str_back_ticks] = ACTIONS(2126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), + [1198] = { + [sym_comment] = STATE(1198), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(2605), [anon_sym_POUND] = ACTIONS(105), }, - [1187] = { - [sym_path] = STATE(1239), - [sym_comment] = STATE(1187), - [aux_sym_cell_path_repeat1] = STATE(1152), + [1199] = { + [sym_path] = STATE(1316), + [sym_comment] = STATE(1199), + [aux_sym_cell_path_repeat1] = STATE(1145), [ts_builtin_sym_end] = ACTIONS(905), [anon_sym_SEMI] = ACTIONS(903), [anon_sym_LF] = ACTIONS(905), @@ -190776,7 +191679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2676), + [anon_sym_DOT2] = ACTIONS(2657), [anon_sym_STAR] = ACTIONS(903), [anon_sym_STAR_STAR] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(903), @@ -190832,743 +191735,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1188] = { - [sym_comment] = STATE(1188), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), - }, - [1189] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4225), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), - [sym_comment] = STATE(1189), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2231), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2237), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(105), - }, - [1190] = { - [sym_cell_path] = STATE(1253), - [sym_path] = STATE(1159), - [sym_comment] = STATE(1190), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [1191] = { - [sym_expr_parenthesized] = STATE(2291), - [sym__immediate_decimal] = STATE(2286), - [sym_val_variable] = STATE(2291), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2147), - [anon_sym_alias] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_let_DASHenv] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [sym_cmd_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_export_DASHenv] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_source] = ACTIONS(2147), - [anon_sym_source_DASHenv] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_hide] = ACTIONS(2147), - [anon_sym_hide_DASHenv] = ACTIONS(2147), - [anon_sym_overlay] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2147), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_token1] = ACTIONS(2147), - [aux_sym__val_number_token2] = ACTIONS(2147), - [aux_sym__val_number_token3] = ACTIONS(2147), - [aux_sym__val_number_token4] = ACTIONS(2147), - [aux_sym__val_number_token5] = ACTIONS(2147), - [aux_sym__val_number_token6] = ACTIONS(2147), - [anon_sym_0b] = ACTIONS(2147), - [anon_sym_0o] = ACTIONS(2147), - [anon_sym_0x] = ACTIONS(2147), - [sym_val_date] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [sym__str_single_quotes] = ACTIONS(2147), - [sym__str_back_ticks] = ACTIONS(2147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2147), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(105), - }, - [1192] = { - [sym_cell_path] = STATE(1420), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1033), - [anon_sym_out_GT] = ACTIONS(1033), - [anon_sym_e_GT] = ACTIONS(1033), - [anon_sym_o_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [1193] = { - [sym_comment] = STATE(1193), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_err_GT] = ACTIONS(1098), - [anon_sym_out_GT] = ACTIONS(1098), - [anon_sym_e_GT] = ACTIONS(1098), - [anon_sym_o_GT] = ACTIONS(1098), - [anon_sym_err_PLUSout_GT] = ACTIONS(1098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1098), - [anon_sym_o_PLUSe_GT] = ACTIONS(1098), - [anon_sym_e_PLUSo_GT] = ACTIONS(1098), - [aux_sym_unquoted_token1] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [1194] = { - [sym_cell_path] = STATE(1414), - [sym_path] = STATE(1187), - [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_in] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_STAR_STAR] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_bit_DASHshl] = ACTIONS(997), - [anon_sym_bit_DASHshr] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_LT2] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_not_DASHin] = ACTIONS(997), - [anon_sym_starts_DASHwith] = ACTIONS(997), - [anon_sym_ends_DASHwith] = ACTIONS(997), - [anon_sym_EQ_TILDE] = ACTIONS(997), - [anon_sym_BANG_TILDE] = ACTIONS(997), - [anon_sym_bit_DASHand] = ACTIONS(997), - [anon_sym_bit_DASHxor] = ACTIONS(997), - [anon_sym_bit_DASHor] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_xor] = ACTIONS(997), - [anon_sym_or] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_err_GT] = ACTIONS(997), - [anon_sym_out_GT] = ACTIONS(997), - [anon_sym_e_GT] = ACTIONS(997), - [anon_sym_o_GT] = ACTIONS(997), - [anon_sym_err_PLUSout_GT] = ACTIONS(997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(997), - [anon_sym_o_PLUSe_GT] = ACTIONS(997), - [anon_sym_e_PLUSo_GT] = ACTIONS(997), - [aux_sym_unquoted_token1] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [1195] = { - [sym_expr_parenthesized] = STATE(2234), - [sym__immediate_decimal] = STATE(2255), - [sym_val_variable] = STATE(2234), - [sym__var] = STATE(1590), - [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(2132), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_SEMI] = ACTIONS(2130), - [sym_cmd_identifier] = ACTIONS(2130), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_DOT] = ACTIONS(2130), - [anon_sym_DOT2] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_where] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_not] = ACTIONS(2130), - [aux_sym__immediate_decimal_token1] = ACTIONS(2253), - [anon_sym_DASH2] = ACTIONS(2255), - [anon_sym_PLUS2] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(105), - }, - [1196] = { - [sym__expression] = STATE(4285), - [sym_expr_unary] = STATE(1374), - [sym__expr_unary_minus] = STATE(1375), - [sym_expr_binary] = STATE(1374), - [sym__expr_binary_expression] = STATE(6650), - [sym_expr_parenthesized] = STATE(1339), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(1374), - [sym_val_nothing] = STATE(1449), - [sym_val_bool] = STATE(1449), - [sym_val_variable] = STATE(1331), - [sym__var] = STATE(1190), - [sym_val_number] = STATE(1237), - [sym__val_number_decimal] = STATE(1112), - [sym__val_number] = STATE(1216), - [sym_val_duration] = STATE(1449), - [sym_val_filesize] = STATE(1449), - [sym_val_binary] = STATE(1449), - [sym_val_string] = STATE(1449), - [sym__str_double_quotes] = STATE(1351), - [sym_val_interpolated] = STATE(1449), - [sym__inter_single_quotes] = STATE(1411), - [sym__inter_double_quotes] = STATE(1410), - [sym_val_list] = STATE(1449), - [sym_val_record] = STATE(1449), - [sym_val_table] = STATE(1449), - [sym_val_closure] = STATE(1449), - [sym_unquoted] = STATE(4288), - [sym_comment] = STATE(1196), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_null] = ACTIONS(2765), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [aux_sym__val_number_decimal_token1] = ACTIONS(2769), - [aux_sym__val_number_token1] = ACTIONS(2771), - [aux_sym__val_number_token2] = ACTIONS(2771), - [aux_sym__val_number_token3] = ACTIONS(2771), - [aux_sym__val_number_token4] = ACTIONS(2773), - [aux_sym__val_number_token5] = ACTIONS(2773), - [aux_sym__val_number_token6] = ACTIONS(2773), - [anon_sym_0b] = ACTIONS(2775), - [anon_sym_0o] = ACTIONS(2775), - [anon_sym_0x] = ACTIONS(2775), - [sym_val_date] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym__str_single_quotes] = ACTIONS(2781), - [sym__str_back_ticks] = ACTIONS(2781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2785), - [anon_sym_err_GT] = ACTIONS(923), - [anon_sym_out_GT] = ACTIONS(923), - [anon_sym_e_GT] = ACTIONS(923), - [anon_sym_o_GT] = ACTIONS(923), - [anon_sym_err_PLUSout_GT] = ACTIONS(923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(923), - [anon_sym_o_PLUSe_GT] = ACTIONS(923), - [anon_sym_e_PLUSo_GT] = ACTIONS(923), - [aux_sym_unquoted_token1] = ACTIONS(2487), + [1200] = { + [sym_comment] = STATE(1200), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_err_GT] = ACTIONS(1086), + [anon_sym_out_GT] = ACTIONS(1086), + [anon_sym_e_GT] = ACTIONS(1086), + [anon_sym_o_GT] = ACTIONS(1086), + [anon_sym_err_PLUSout_GT] = ACTIONS(1086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1086), + [anon_sym_o_PLUSe_GT] = ACTIONS(1086), + [anon_sym_e_PLUSo_GT] = ACTIONS(1086), + [aux_sym_unquoted_token1] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, - [1197] = { - [sym_comment] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(2787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2789), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [1201] = { + [sym_comment] = STATE(1201), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_err_GT] = ACTIONS(1221), + [anon_sym_out_GT] = ACTIONS(1221), + [anon_sym_e_GT] = ACTIONS(1221), + [anon_sym_o_GT] = ACTIONS(1221), + [anon_sym_err_PLUSout_GT] = ACTIONS(1221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1221), + [anon_sym_o_PLUSe_GT] = ACTIONS(1221), + [anon_sym_e_PLUSo_GT] = ACTIONS(1221), + [aux_sym_unquoted_token1] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, - [1198] = { - [sym__flag] = STATE(1663), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_comment] = STATE(1198), - [aux_sym_overlay_use_repeat1] = STATE(1198), + [1202] = { + [sym__flag] = STATE(1759), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), + [sym_comment] = STATE(1202), + [aux_sym_overlay_use_repeat1] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2793), [anon_sym_export] = ACTIONS(2791), [anon_sym_alias] = ACTIONS(2791), [anon_sym_let] = ACTIONS(2791), @@ -191585,11 +191904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2791), [anon_sym_LBRACK] = ACTIONS(2791), [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2791), [anon_sym_DOLLAR] = ACTIONS(2791), [anon_sym_error] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2791), [anon_sym_break] = ACTIONS(2791), [anon_sym_continue] = ACTIONS(2791), [anon_sym_for] = ACTIONS(2791), @@ -191599,7 +191917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2791), [anon_sym_match] = ACTIONS(2791), [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), [anon_sym_DOT] = ACTIONS(2791), [anon_sym_try] = ACTIONS(2791), [anon_sym_return] = ACTIONS(2791), @@ -191609,7 +191926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2791), [anon_sym_hide_DASHenv] = ACTIONS(2791), [anon_sym_overlay] = ACTIONS(2791), - [anon_sym_as] = ACTIONS(2791), + [anon_sym_as] = ACTIONS(2811), [anon_sym_where] = ACTIONS(2791), [anon_sym_PLUS] = ACTIONS(2791), [anon_sym_not] = ACTIONS(2791), @@ -191635,519 +191952,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2791), [anon_sym_POUND] = ACTIONS(105), }, - [1199] = { - [sym_comment] = STATE(1199), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [1200] = { - [sym_comment] = STATE(1200), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(2807), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), - }, - [1201] = { - [sym_comment] = STATE(1201), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_err_GT] = ACTIONS(1189), - [anon_sym_out_GT] = ACTIONS(1189), - [anon_sym_e_GT] = ACTIONS(1189), - [anon_sym_o_GT] = ACTIONS(1189), - [anon_sym_err_PLUSout_GT] = ACTIONS(1189), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1189), - [anon_sym_o_PLUSe_GT] = ACTIONS(1189), - [anon_sym_e_PLUSo_GT] = ACTIONS(1189), - [aux_sym_unquoted_token1] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, - [1202] = { - [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_export] = ACTIONS(815), - [anon_sym_alias] = ACTIONS(815), - [anon_sym_let] = ACTIONS(815), - [anon_sym_let_DASHenv] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(815), - [sym_cmd_identifier] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_def] = ACTIONS(815), - [anon_sym_export_DASHenv] = ACTIONS(815), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_module] = ACTIONS(815), - [anon_sym_use] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_error] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(815), - [anon_sym_match] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_try] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_source] = ACTIONS(815), - [anon_sym_source_DASHenv] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_hide] = ACTIONS(815), - [anon_sym_hide_DASHenv] = ACTIONS(815), - [anon_sym_overlay] = ACTIONS(815), - [anon_sym_as] = ACTIONS(815), - [anon_sym_where] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(2711), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, [1203] = { + [sym__flag] = STATE(1759), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2789), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [aux_sym_overlay_use_repeat1] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(2805), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_alias] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_let_DASHenv] = ACTIONS(2803), + [anon_sym_mut] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [sym_cmd_identifier] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_def] = ACTIONS(2803), + [anon_sym_export_DASHenv] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_error] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_loop] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_match] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_source] = ACTIONS(2803), + [anon_sym_source_DASHenv] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_hide] = ACTIONS(2803), + [anon_sym_hide_DASHenv] = ACTIONS(2803), + [anon_sym_overlay] = ACTIONS(2803), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_where] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2803), + [anon_sym_true] = ACTIONS(2803), + [anon_sym_false] = ACTIONS(2803), + [aux_sym__val_number_decimal_token1] = ACTIONS(2803), + [aux_sym__val_number_token1] = ACTIONS(2803), + [aux_sym__val_number_token2] = ACTIONS(2803), + [aux_sym__val_number_token3] = ACTIONS(2803), + [aux_sym__val_number_token4] = ACTIONS(2803), + [aux_sym__val_number_token5] = ACTIONS(2803), + [aux_sym__val_number_token6] = ACTIONS(2803), + [anon_sym_0b] = ACTIONS(2803), + [anon_sym_0o] = ACTIONS(2803), + [anon_sym_0x] = ACTIONS(2803), + [sym_val_date] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym__str_single_quotes] = ACTIONS(2803), + [sym__str_back_ticks] = ACTIONS(2803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2803), + [anon_sym_CARET] = ACTIONS(2803), [anon_sym_POUND] = ACTIONS(105), }, [1204] = { [sym_comment] = STATE(1204), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_err_GT] = ACTIONS(1252), - [anon_sym_out_GT] = ACTIONS(1252), - [anon_sym_e_GT] = ACTIONS(1252), - [anon_sym_o_GT] = ACTIONS(1252), - [anon_sym_err_PLUSout_GT] = ACTIONS(1252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1252), - [anon_sym_o_PLUSe_GT] = ACTIONS(1252), - [anon_sym_e_PLUSo_GT] = ACTIONS(1252), - [aux_sym_unquoted_token1] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_err_GT] = ACTIONS(1082), + [anon_sym_out_GT] = ACTIONS(1082), + [anon_sym_e_GT] = ACTIONS(1082), + [anon_sym_o_GT] = ACTIONS(1082), + [anon_sym_err_PLUSout_GT] = ACTIONS(1082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1082), + [anon_sym_o_PLUSe_GT] = ACTIONS(1082), + [anon_sym_e_PLUSo_GT] = ACTIONS(1082), + [aux_sym_unquoted_token1] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [1205] = { [sym_comment] = STATE(1205), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_err_GT] = ACTIONS(823), - [anon_sym_out_GT] = ACTIONS(823), - [anon_sym_e_GT] = ACTIONS(823), - [anon_sym_o_GT] = ACTIONS(823), - [anon_sym_err_PLUSout_GT] = ACTIONS(823), - [anon_sym_out_PLUSerr_GT] = ACTIONS(823), - [anon_sym_o_PLUSe_GT] = ACTIONS(823), - [anon_sym_e_PLUSo_GT] = ACTIONS(823), - [aux_sym_unquoted_token1] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(105), - }, - [1206] = { - [sym_comment] = STATE(1206), - [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_SEMI] = ACTIONS(1054), [anon_sym_LF] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(1054), [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), [anon_sym_PIPE] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_GT] = ACTIONS(1054), @@ -192155,10 +192110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1054), [anon_sym_in] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(2817), [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(2809), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -192213,230 +192168,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [1207] = { - [sym_comment] = STATE(1207), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), - }, - [1208] = { - [sym_comment] = STATE(1208), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_err_GT] = ACTIONS(1193), - [anon_sym_out_GT] = ACTIONS(1193), - [anon_sym_e_GT] = ACTIONS(1193), - [anon_sym_o_GT] = ACTIONS(1193), - [anon_sym_err_PLUSout_GT] = ACTIONS(1193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1193), - [anon_sym_o_PLUSe_GT] = ACTIONS(1193), - [anon_sym_e_PLUSo_GT] = ACTIONS(1193), - [aux_sym_unquoted_token1] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(105), - }, - [1209] = { - [sym_comment] = STATE(1209), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_err_GT] = ACTIONS(1222), - [anon_sym_out_GT] = ACTIONS(1222), - [anon_sym_e_GT] = ACTIONS(1222), - [anon_sym_o_GT] = ACTIONS(1222), - [anon_sym_err_PLUSout_GT] = ACTIONS(1222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1222), - [anon_sym_o_PLUSe_GT] = ACTIONS(1222), - [anon_sym_e_PLUSo_GT] = ACTIONS(1222), - [aux_sym_unquoted_token1] = ACTIONS(1222), + [1206] = { + [sym_comment] = STATE(1206), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_err_GT] = ACTIONS(1086), + [anon_sym_out_GT] = ACTIONS(1086), + [anon_sym_e_GT] = ACTIONS(1086), + [anon_sym_o_GT] = ACTIONS(1086), + [anon_sym_err_PLUSout_GT] = ACTIONS(1086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1086), + [anon_sym_o_PLUSe_GT] = ACTIONS(1086), + [anon_sym_e_PLUSo_GT] = ACTIONS(1086), + [aux_sym_unquoted_token1] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, - [1210] = { - [sym__command_name] = STATE(2154), - [sym_scope_pattern] = STATE(2153), - [sym_wild_card] = STATE(2152), - [sym_command_list] = STATE(2151), - [sym_val_string] = STATE(1956), - [sym__str_double_quotes] = STATE(2049), - [sym_comment] = STATE(1210), + [1207] = { + [sym__flag] = STATE(1759), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), + [sym_comment] = STATE(1207), + [aux_sym_overlay_use_repeat1] = STATE(1202), [ts_builtin_sym_end] = ACTIONS(2670), [anon_sym_export] = ACTIONS(2668), [anon_sym_alias] = ACTIONS(2668), @@ -192445,18 +192255,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2668), [anon_sym_const] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2668), - [sym_cmd_identifier] = ACTIONS(2813), + [sym_cmd_identifier] = ACTIONS(2668), [anon_sym_LF] = ACTIONS(2670), [anon_sym_def] = ACTIONS(2668), [anon_sym_export_DASHenv] = ACTIONS(2668), [anon_sym_extern] = ACTIONS(2668), [anon_sym_module] = ACTIONS(2668), [anon_sym_use] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2668), [anon_sym_LPAREN] = ACTIONS(2668), [anon_sym_DOLLAR] = ACTIONS(2668), [anon_sym_error] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2813), [anon_sym_break] = ACTIONS(2668), [anon_sym_continue] = ACTIONS(2668), [anon_sym_for] = ACTIONS(2668), @@ -192475,7 +192286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2668), [anon_sym_hide_DASHenv] = ACTIONS(2668), [anon_sym_overlay] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_as] = ACTIONS(2819), [anon_sym_where] = ACTIONS(2668), [anon_sym_PLUS] = ACTIONS(2668), [anon_sym_not] = ACTIONS(2668), @@ -192493,42 +192304,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0o] = ACTIONS(2668), [anon_sym_0x] = ACTIONS(2668), [sym_val_date] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym__str_single_quotes] = ACTIONS(2821), - [sym__str_back_ticks] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2668), + [sym__str_single_quotes] = ACTIONS(2668), + [sym__str_back_ticks] = ACTIONS(2668), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2668), [anon_sym_CARET] = ACTIONS(2668), [anon_sym_POUND] = ACTIONS(105), }, - [1211] = { - [sym__flag] = STATE(1906), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), - [sym_comment] = STATE(1211), - [aux_sym_overlay_use_repeat1] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(2684), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_alias] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_let_DASHenv] = ACTIONS(2682), - [anon_sym_mut] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2682), - [sym_cmd_identifier] = ACTIONS(2682), - [anon_sym_LF] = ACTIONS(2684), - [anon_sym_def] = ACTIONS(2682), - [anon_sym_export_DASHenv] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_use] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2682), - [anon_sym_error] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2682), + [1208] = { + [sym_comment] = STATE(1208), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_err_GT] = ACTIONS(1191), + [anon_sym_out_GT] = ACTIONS(1191), + [anon_sym_e_GT] = ACTIONS(1191), + [anon_sym_o_GT] = ACTIONS(1191), + [anon_sym_err_PLUSout_GT] = ACTIONS(1191), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1191), + [anon_sym_o_PLUSe_GT] = ACTIONS(1191), + [anon_sym_e_PLUSo_GT] = ACTIONS(1191), + [aux_sym_unquoted_token1] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(105), + }, + [1209] = { + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(105), + }, + [1210] = { + [sym_comment] = STATE(1210), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(2823), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2827), + [aux_sym_unquoted_token6] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(105), + }, + [1211] = { + [sym_comment] = STATE(1211), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [1212] = { + [sym_comment] = STATE(1212), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(2831), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1213] = { + [sym_comment] = STATE(1213), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym_unquoted_token1] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), + }, + [1214] = { + [sym_comment] = STATE(1214), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(2831), + [anon_sym_STAR_STAR] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_bit_DASHshl] = ACTIONS(1070), + [anon_sym_bit_DASHshr] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1070), + [anon_sym_BANG_EQ] = ACTIONS(1070), + [anon_sym_LT2] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_not_DASHin] = ACTIONS(1070), + [anon_sym_starts_DASHwith] = ACTIONS(1070), + [anon_sym_ends_DASHwith] = ACTIONS(1070), + [anon_sym_EQ_TILDE] = ACTIONS(1070), + [anon_sym_BANG_TILDE] = ACTIONS(1070), + [anon_sym_bit_DASHand] = ACTIONS(1070), + [anon_sym_bit_DASHxor] = ACTIONS(1070), + [anon_sym_bit_DASHor] = ACTIONS(1070), + [anon_sym_and] = ACTIONS(1070), + [anon_sym_xor] = ACTIONS(1070), + [anon_sym_or] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1215] = { + [sym__command_name] = STATE(2290), + [sym_scope_pattern] = STATE(2365), + [sym_wild_card] = STATE(2306), + [sym_command_list] = STATE(2316), + [sym_val_string] = STATE(2136), + [sym__str_double_quotes] = STATE(2008), + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(2771), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_alias] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_let_DASHenv] = ACTIONS(2769), + [anon_sym_mut] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2769), + [sym_cmd_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_export_DASHenv] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_module] = ACTIONS(2769), + [anon_sym_use] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2769), + [anon_sym_error] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_loop] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_source] = ACTIONS(2769), + [anon_sym_source_DASHenv] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_hide] = ACTIONS(2769), + [anon_sym_hide_DASHenv] = ACTIONS(2769), + [anon_sym_overlay] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_where] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_null] = ACTIONS(2769), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [aux_sym__val_number_decimal_token1] = ACTIONS(2769), + [aux_sym__val_number_token1] = ACTIONS(2769), + [aux_sym__val_number_token2] = ACTIONS(2769), + [aux_sym__val_number_token3] = ACTIONS(2769), + [aux_sym__val_number_token4] = ACTIONS(2769), + [aux_sym__val_number_token5] = ACTIONS(2769), + [aux_sym__val_number_token6] = ACTIONS(2769), + [anon_sym_0b] = ACTIONS(2769), + [anon_sym_0o] = ACTIONS(2769), + [anon_sym_0x] = ACTIONS(2769), + [sym_val_date] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym__str_single_quotes] = ACTIONS(2841), + [sym__str_back_ticks] = ACTIONS(2841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2769), + [anon_sym_CARET] = ACTIONS(2769), + [anon_sym_POUND] = ACTIONS(105), + }, + [1216] = { + [sym_comment] = STATE(1216), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [1217] = { + [sym__flag] = STATE(1759), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), + [sym_comment] = STATE(1217), + [aux_sym_overlay_use_repeat1] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2684), + [anon_sym_export] = ACTIONS(2682), + [anon_sym_alias] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_let_DASHenv] = ACTIONS(2682), + [anon_sym_mut] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [sym_cmd_identifier] = ACTIONS(2682), + [anon_sym_LF] = ACTIONS(2684), + [anon_sym_def] = ACTIONS(2682), + [anon_sym_export_DASHenv] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2682), + [anon_sym_module] = ACTIONS(2682), + [anon_sym_use] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_DOLLAR] = ACTIONS(2682), + [anon_sym_error] = ACTIONS(2682), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2682), [anon_sym_break] = ACTIONS(2682), [anon_sym_continue] = ACTIONS(2682), [anon_sym_for] = ACTIONS(2682), @@ -192547,7 +193006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2682), [anon_sym_hide_DASHenv] = ACTIONS(2682), [anon_sym_overlay] = ACTIONS(2682), - [anon_sym_as] = ACTIONS(2825), + [anon_sym_as] = ACTIONS(2843), [anon_sym_where] = ACTIONS(2682), [anon_sym_PLUS] = ACTIONS(2682), [anon_sym_not] = ACTIONS(2682), @@ -192573,656 +193032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2682), [anon_sym_POUND] = ACTIONS(105), }, - [1212] = { - [sym__flag] = STATE(1906), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), - [sym_comment] = STATE(1212), - [aux_sym_overlay_use_repeat1] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2692), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_alias] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_let_DASHenv] = ACTIONS(2690), - [anon_sym_mut] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2690), - [sym_cmd_identifier] = ACTIONS(2690), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_def] = ACTIONS(2690), - [anon_sym_export_DASHenv] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_DOLLAR] = ACTIONS(2690), - [anon_sym_error] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_loop] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_match] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_source] = ACTIONS(2690), - [anon_sym_source_DASHenv] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_hide] = ACTIONS(2690), - [anon_sym_hide_DASHenv] = ACTIONS(2690), - [anon_sym_overlay] = ACTIONS(2690), - [anon_sym_as] = ACTIONS(2829), - [anon_sym_where] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_null] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2690), - [anon_sym_false] = ACTIONS(2690), - [aux_sym__val_number_decimal_token1] = ACTIONS(2690), - [aux_sym__val_number_token1] = ACTIONS(2690), - [aux_sym__val_number_token2] = ACTIONS(2690), - [aux_sym__val_number_token3] = ACTIONS(2690), - [aux_sym__val_number_token4] = ACTIONS(2690), - [aux_sym__val_number_token5] = ACTIONS(2690), - [aux_sym__val_number_token6] = ACTIONS(2690), - [anon_sym_0b] = ACTIONS(2690), - [anon_sym_0o] = ACTIONS(2690), - [anon_sym_0x] = ACTIONS(2690), - [sym_val_date] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym__str_single_quotes] = ACTIONS(2690), - [sym__str_back_ticks] = ACTIONS(2690), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2690), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(105), - }, - [1213] = { - [sym_comment] = STATE(1213), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(2831), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2835), - [aux_sym_unquoted_token6] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(105), - }, - [1214] = { - [sym__command_name] = STATE(2154), - [sym_scope_pattern] = STATE(2331), - [sym_wild_card] = STATE(2152), - [sym_command_list] = STATE(2151), - [sym_val_string] = STATE(1956), - [sym__str_double_quotes] = STATE(2049), - [sym_comment] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(2658), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_alias] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_let_DASHenv] = ACTIONS(2654), - [anon_sym_mut] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [sym_cmd_identifier] = ACTIONS(2813), - [anon_sym_LF] = ACTIONS(2658), - [anon_sym_def] = ACTIONS(2654), - [anon_sym_export_DASHenv] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_use] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_DOLLAR] = ACTIONS(2654), - [anon_sym_error] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_loop] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_source] = ACTIONS(2654), - [anon_sym_source_DASHenv] = ACTIONS(2654), - [anon_sym_register] = ACTIONS(2654), - [anon_sym_hide] = ACTIONS(2654), - [anon_sym_hide_DASHenv] = ACTIONS(2654), - [anon_sym_overlay] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym__val_number_decimal_token1] = ACTIONS(2654), - [aux_sym__val_number_token1] = ACTIONS(2654), - [aux_sym__val_number_token2] = ACTIONS(2654), - [aux_sym__val_number_token3] = ACTIONS(2654), - [aux_sym__val_number_token4] = ACTIONS(2654), - [aux_sym__val_number_token5] = ACTIONS(2654), - [aux_sym__val_number_token6] = ACTIONS(2654), - [anon_sym_0b] = ACTIONS(2654), - [anon_sym_0o] = ACTIONS(2654), - [anon_sym_0x] = ACTIONS(2654), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym__str_single_quotes] = ACTIONS(2821), - [sym__str_back_ticks] = ACTIONS(2821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(105), - }, - [1215] = { - [sym__flag] = STATE(1906), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), - [sym_comment] = STATE(1215), - [aux_sym_overlay_use_repeat1] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(2715), - [anon_sym_export] = ACTIONS(2713), - [anon_sym_alias] = ACTIONS(2713), - [anon_sym_let] = ACTIONS(2713), - [anon_sym_let_DASHenv] = ACTIONS(2713), - [anon_sym_mut] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2713), - [sym_cmd_identifier] = ACTIONS(2713), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_def] = ACTIONS(2713), - [anon_sym_export_DASHenv] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym_module] = ACTIONS(2713), - [anon_sym_use] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_error] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_loop] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_match] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_DOT] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_source] = ACTIONS(2713), - [anon_sym_source_DASHenv] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_hide] = ACTIONS(2713), - [anon_sym_hide_DASHenv] = ACTIONS(2713), - [anon_sym_overlay] = ACTIONS(2713), - [anon_sym_as] = ACTIONS(2839), - [anon_sym_where] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2713), - [anon_sym_null] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2713), - [aux_sym__val_number_token1] = ACTIONS(2713), - [aux_sym__val_number_token2] = ACTIONS(2713), - [aux_sym__val_number_token3] = ACTIONS(2713), - [aux_sym__val_number_token4] = ACTIONS(2713), - [aux_sym__val_number_token5] = ACTIONS(2713), - [aux_sym__val_number_token6] = ACTIONS(2713), - [anon_sym_0b] = ACTIONS(2713), - [anon_sym_0o] = ACTIONS(2713), - [anon_sym_0x] = ACTIONS(2713), - [sym_val_date] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym__str_single_quotes] = ACTIONS(2713), - [sym__str_back_ticks] = ACTIONS(2713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(105), - }, - [1216] = { - [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_STAR_STAR] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_mod] = ACTIONS(1065), - [anon_sym_SLASH_SLASH] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_bit_DASHshl] = ACTIONS(1065), - [anon_sym_bit_DASHshr] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_LT2] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_not_DASHin] = ACTIONS(1065), - [anon_sym_starts_DASHwith] = ACTIONS(1065), - [anon_sym_ends_DASHwith] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_BANG_TILDE] = ACTIONS(1065), - [anon_sym_bit_DASHand] = ACTIONS(1065), - [anon_sym_bit_DASHxor] = ACTIONS(1065), - [anon_sym_bit_DASHor] = ACTIONS(1065), - [anon_sym_and] = ACTIONS(1065), - [anon_sym_xor] = ACTIONS(1065), - [anon_sym_or] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_err_GT] = ACTIONS(1065), - [anon_sym_out_GT] = ACTIONS(1065), - [anon_sym_e_GT] = ACTIONS(1065), - [anon_sym_o_GT] = ACTIONS(1065), - [anon_sym_err_PLUSout_GT] = ACTIONS(1065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1065), - [anon_sym_o_PLUSe_GT] = ACTIONS(1065), - [anon_sym_e_PLUSo_GT] = ACTIONS(1065), - [aux_sym_unquoted_token1] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), - }, - [1217] = { - [sym_comment] = STATE(1217), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_err_GT] = ACTIONS(1259), - [anon_sym_out_GT] = ACTIONS(1259), - [anon_sym_e_GT] = ACTIONS(1259), - [anon_sym_o_GT] = ACTIONS(1259), - [anon_sym_err_PLUSout_GT] = ACTIONS(1259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), - [anon_sym_o_PLUSe_GT] = ACTIONS(1259), - [anon_sym_e_PLUSo_GT] = ACTIONS(1259), - [aux_sym_unquoted_token1] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, [1218] = { [sym_comment] = STATE(1218), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(105), - }, - [1219] = { - [sym_comment] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_err_GT] = ACTIONS(1098), - [anon_sym_out_GT] = ACTIONS(1098), - [anon_sym_e_GT] = ACTIONS(1098), - [anon_sym_o_GT] = ACTIONS(1098), - [anon_sym_err_PLUSout_GT] = ACTIONS(1098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1098), - [anon_sym_o_PLUSe_GT] = ACTIONS(1098), - [anon_sym_e_PLUSo_GT] = ACTIONS(1098), - [aux_sym_unquoted_token1] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [1220] = { - [sym__match_pattern_expression] = STATE(6865), - [sym__match_pattern_value] = STATE(6664), - [sym__match_pattern_list] = STATE(6665), - [sym__match_pattern_rest] = STATE(10823), - [sym__match_pattern_ignore_rest] = STATE(10823), - [sym__match_pattern_record] = STATE(6666), - [sym__expr_unary_minus] = STATE(6638), - [sym_expr_parenthesized] = STATE(6261), - [sym_val_range] = STATE(6640), - [sym__value] = STATE(10212), - [sym_val_nothing] = STATE(6637), - [sym_val_bool] = STATE(6637), - [sym_val_variable] = STATE(6465), - [sym__var] = STATE(5879), - [sym_val_number] = STATE(6141), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(6199), - [sym_val_duration] = STATE(6637), - [sym_val_filesize] = STATE(6637), - [sym_val_binary] = STATE(6637), - [sym_val_string] = STATE(6637), - [sym__str_double_quotes] = STATE(6589), - [sym_val_interpolated] = STATE(6201), - [sym__inter_single_quotes] = STATE(6093), - [sym__inter_double_quotes] = STATE(6091), - [sym_val_list] = STATE(10077), - [sym_list_body] = STATE(11039), - [sym_val_entry] = STATE(10215), - [sym__list_item_expression] = STATE(10234), - [sym__list_item_starts_with_sign] = STATE(6518), - [sym_val_record] = STATE(6201), - [sym_val_table] = STATE(6637), - [sym_val_closure] = STATE(6201), - [sym_short_flag] = STATE(6518), - [sym_long_flag] = STATE(6518), - [sym_long_flag_equals_value] = STATE(6493), - [sym__unquoted_in_list] = STATE(6518), - [sym_comment] = STATE(1220), - [aux_sym__match_pattern_list_repeat1] = STATE(2957), - [aux_sym_list_body_repeat1] = STATE(2440), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_null] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [aux_sym__val_number_decimal_token1] = ACTIONS(2863), - [aux_sym__val_number_token1] = ACTIONS(2865), - [aux_sym__val_number_token2] = ACTIONS(2865), - [aux_sym__val_number_token3] = ACTIONS(2865), - [aux_sym__val_number_token4] = ACTIONS(2867), - [aux_sym__val_number_token5] = ACTIONS(2867), - [aux_sym__val_number_token6] = ACTIONS(2867), - [anon_sym_0b] = ACTIONS(2869), - [anon_sym_0o] = ACTIONS(2869), - [anon_sym_0x] = ACTIONS(2869), - [sym_val_date] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym__str_single_quotes] = ACTIONS(2875), - [sym__str_back_ticks] = ACTIONS(2875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2879), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2881), - [anon_sym_POUND] = ACTIONS(3), - }, - [1221] = { - [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), [anon_sym_let] = ACTIONS(815), @@ -193239,7 +193051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(815), [anon_sym_LBRACK] = ACTIONS(815), [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), [anon_sym_DOLLAR] = ACTIONS(815), [anon_sym_error] = ACTIONS(815), [anon_sym_DASH_DASH] = ACTIONS(815), @@ -193253,7 +193064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(815), [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), [anon_sym_DOT2] = ACTIONS(817), [anon_sym_try] = ACTIONS(815), @@ -193268,6 +193078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(815), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(2789), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -193293,8 +193104,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_err_GT] = ACTIONS(1185), + [anon_sym_out_GT] = ACTIONS(1185), + [anon_sym_e_GT] = ACTIONS(1185), + [anon_sym_o_GT] = ACTIONS(1185), + [anon_sym_err_PLUSout_GT] = ACTIONS(1185), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1185), + [anon_sym_o_PLUSe_GT] = ACTIONS(1185), + [anon_sym_e_PLUSo_GT] = ACTIONS(1185), + [aux_sym_unquoted_token1] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [1220] = { + [sym__command_name] = STATE(2290), + [sym_scope_pattern] = STATE(2337), + [sym_wild_card] = STATE(2306), + [sym_command_list] = STATE(2316), + [sym_val_string] = STATE(2136), + [sym__str_double_quotes] = STATE(2008), + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(2759), + [anon_sym_export] = ACTIONS(2755), + [anon_sym_alias] = ACTIONS(2755), + [anon_sym_let] = ACTIONS(2755), + [anon_sym_let_DASHenv] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2755), + [sym_cmd_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2759), + [anon_sym_def] = ACTIONS(2755), + [anon_sym_export_DASHenv] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym_module] = ACTIONS(2755), + [anon_sym_use] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_error] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_loop] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_source] = ACTIONS(2755), + [anon_sym_source_DASHenv] = ACTIONS(2755), + [anon_sym_register] = ACTIONS(2755), + [anon_sym_hide] = ACTIONS(2755), + [anon_sym_hide_DASHenv] = ACTIONS(2755), + [anon_sym_overlay] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_where] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_null] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2755), + [anon_sym_false] = ACTIONS(2755), + [aux_sym__val_number_decimal_token1] = ACTIONS(2755), + [aux_sym__val_number_token1] = ACTIONS(2755), + [aux_sym__val_number_token2] = ACTIONS(2755), + [aux_sym__val_number_token3] = ACTIONS(2755), + [aux_sym__val_number_token4] = ACTIONS(2755), + [aux_sym__val_number_token5] = ACTIONS(2755), + [aux_sym__val_number_token6] = ACTIONS(2755), + [anon_sym_0b] = ACTIONS(2755), + [anon_sym_0o] = ACTIONS(2755), + [anon_sym_0x] = ACTIONS(2755), + [sym_val_date] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym__str_single_quotes] = ACTIONS(2841), + [sym__str_back_ticks] = ACTIONS(2841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(105), + }, + [1221] = { + [sym_comment] = STATE(1221), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, [1222] = { [sym_comment] = STATE(1222), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token2] = ACTIONS(2799), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), + }, + [1223] = { + [sym_comment] = STATE(1223), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym_unquoted_token1] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(105), + }, + [1224] = { + [sym_comment] = STATE(1224), [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_SEMI] = ACTIONS(1054), [anon_sym_LF] = ACTIONS(1056), @@ -193308,9 +193479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(2809), [anon_sym_STAR_STAR] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_SLASH] = ACTIONS(1054), @@ -193345,6 +193514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1054), [aux_sym__val_number_token5] = ACTIONS(1054), [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(2845), + [sym_duration_unit] = ACTIONS(2847), [anon_sym_0b] = ACTIONS(1054), [anon_sym_0o] = ACTIONS(1054), [anon_sym_0x] = ACTIONS(1054), @@ -193365,944 +193536,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [1223] = { - [sym__flag] = STATE(1906), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), - [sym_comment] = STATE(1223), - [aux_sym_overlay_use_repeat1] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(2703), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_alias] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_DASHenv] = ACTIONS(2701), - [anon_sym_mut] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [sym_cmd_identifier] = ACTIONS(2701), - [anon_sym_LF] = ACTIONS(2703), - [anon_sym_def] = ACTIONS(2701), - [anon_sym_export_DASHenv] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_error] = ACTIONS(2701), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_loop] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_source] = ACTIONS(2701), - [anon_sym_source_DASHenv] = ACTIONS(2701), - [anon_sym_register] = ACTIONS(2701), - [anon_sym_hide] = ACTIONS(2701), - [anon_sym_hide_DASHenv] = ACTIONS(2701), - [anon_sym_overlay] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_where] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_not] = ACTIONS(2701), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2701), - [anon_sym_false] = ACTIONS(2701), - [aux_sym__val_number_decimal_token1] = ACTIONS(2701), - [aux_sym__val_number_token1] = ACTIONS(2701), - [aux_sym__val_number_token2] = ACTIONS(2701), - [aux_sym__val_number_token3] = ACTIONS(2701), - [aux_sym__val_number_token4] = ACTIONS(2701), - [aux_sym__val_number_token5] = ACTIONS(2701), - [aux_sym__val_number_token6] = ACTIONS(2701), - [anon_sym_0b] = ACTIONS(2701), - [anon_sym_0o] = ACTIONS(2701), - [anon_sym_0x] = ACTIONS(2701), - [sym_val_date] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym__str_single_quotes] = ACTIONS(2701), - [sym__str_back_ticks] = ACTIONS(2701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_CARET] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(105), - }, - [1224] = { - [sym_comment] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym_unquoted_token1] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, [1225] = { [sym_comment] = STATE(1225), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym_unquoted_token1] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(881), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(883), [anon_sym_POUND] = ACTIONS(105), }, [1226] = { [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_err_GT] = ACTIONS(1209), + [anon_sym_out_GT] = ACTIONS(1209), + [anon_sym_e_GT] = ACTIONS(1209), + [anon_sym_o_GT] = ACTIONS(1209), + [anon_sym_err_PLUSout_GT] = ACTIONS(1209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1209), + [anon_sym_o_PLUSe_GT] = ACTIONS(1209), + [anon_sym_e_PLUSo_GT] = ACTIONS(1209), + [aux_sym_unquoted_token1] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [1227] = { [sym_comment] = STATE(1227), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(880), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_SLASH_SLASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_bit_DASHshl] = ACTIONS(1177), + [anon_sym_bit_DASHshr] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT2] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_not_DASHin] = ACTIONS(1177), + [anon_sym_starts_DASHwith] = ACTIONS(1177), + [anon_sym_ends_DASHwith] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_BANG_TILDE] = ACTIONS(1177), + [anon_sym_bit_DASHand] = ACTIONS(1177), + [anon_sym_bit_DASHxor] = ACTIONS(1177), + [anon_sym_bit_DASHor] = ACTIONS(1177), + [anon_sym_and] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1177), + [anon_sym_or] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_err_GT] = ACTIONS(1177), + [anon_sym_out_GT] = ACTIONS(1177), + [anon_sym_e_GT] = ACTIONS(1177), + [anon_sym_o_GT] = ACTIONS(1177), + [anon_sym_err_PLUSout_GT] = ACTIONS(1177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1177), + [anon_sym_o_PLUSe_GT] = ACTIONS(1177), + [anon_sym_e_PLUSo_GT] = ACTIONS(1177), + [aux_sym_unquoted_token1] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, [1228] = { - [sym__match_pattern_expression] = STATE(6865), - [sym__match_pattern_value] = STATE(6664), - [sym__match_pattern_list] = STATE(6665), - [sym__match_pattern_rest] = STATE(10823), - [sym__match_pattern_ignore_rest] = STATE(10823), - [sym__match_pattern_record] = STATE(6666), - [sym__expr_unary_minus] = STATE(6638), - [sym_expr_parenthesized] = STATE(6261), - [sym_val_range] = STATE(6640), - [sym__value] = STATE(10212), - [sym_val_nothing] = STATE(6637), - [sym_val_bool] = STATE(6637), - [sym_val_variable] = STATE(6465), - [sym__var] = STATE(5879), - [sym_val_number] = STATE(6141), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(6199), - [sym_val_duration] = STATE(6637), - [sym_val_filesize] = STATE(6637), - [sym_val_binary] = STATE(6637), - [sym_val_string] = STATE(6637), - [sym__str_double_quotes] = STATE(6589), - [sym_val_interpolated] = STATE(6201), - [sym__inter_single_quotes] = STATE(6093), - [sym__inter_double_quotes] = STATE(6091), - [sym_val_list] = STATE(10123), - [sym_list_body] = STATE(10712), - [sym_val_entry] = STATE(10215), - [sym__list_item_expression] = STATE(10234), - [sym__list_item_starts_with_sign] = STATE(6518), - [sym_val_record] = STATE(6201), - [sym_val_table] = STATE(6637), - [sym_val_closure] = STATE(6201), - [sym_short_flag] = STATE(6518), - [sym_long_flag] = STATE(6518), - [sym_long_flag_equals_value] = STATE(6493), - [sym__unquoted_in_list] = STATE(6518), + [sym__flag] = STATE(1759), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), [sym_comment] = STATE(1228), - [aux_sym__match_pattern_list_repeat1] = STATE(2957), - [aux_sym_list_body_repeat1] = STATE(2440), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2847), + [aux_sym_overlay_use_repeat1] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2740), + [anon_sym_export] = ACTIONS(2738), + [anon_sym_alias] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2738), + [anon_sym_let_DASHenv] = ACTIONS(2738), + [anon_sym_mut] = ACTIONS(2738), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [sym_cmd_identifier] = ACTIONS(2738), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_def] = ACTIONS(2738), + [anon_sym_export_DASHenv] = ACTIONS(2738), + [anon_sym_extern] = ACTIONS(2738), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_use] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_DOLLAR] = ACTIONS(2738), + [anon_sym_error] = ACTIONS(2738), [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_null] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [aux_sym__val_number_decimal_token1] = ACTIONS(2863), - [aux_sym__val_number_token1] = ACTIONS(2865), - [aux_sym__val_number_token2] = ACTIONS(2865), - [aux_sym__val_number_token3] = ACTIONS(2865), - [aux_sym__val_number_token4] = ACTIONS(2867), - [aux_sym__val_number_token5] = ACTIONS(2867), - [aux_sym__val_number_token6] = ACTIONS(2867), - [anon_sym_0b] = ACTIONS(2869), - [anon_sym_0o] = ACTIONS(2869), - [anon_sym_0x] = ACTIONS(2869), - [sym_val_date] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym__str_single_quotes] = ACTIONS(2875), - [sym__str_back_ticks] = ACTIONS(2875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2879), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2881), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2738), + [anon_sym_continue] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2738), + [anon_sym_loop] = ACTIONS(2738), + [anon_sym_while] = ACTIONS(2738), + [anon_sym_do] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_DOT] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2738), + [anon_sym_return] = ACTIONS(2738), + [anon_sym_source] = ACTIONS(2738), + [anon_sym_source_DASHenv] = ACTIONS(2738), + [anon_sym_register] = ACTIONS(2738), + [anon_sym_hide] = ACTIONS(2738), + [anon_sym_hide_DASHenv] = ACTIONS(2738), + [anon_sym_overlay] = ACTIONS(2738), + [anon_sym_as] = ACTIONS(2738), + [anon_sym_where] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2738), + [anon_sym_not] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2738), + [anon_sym_false] = ACTIONS(2738), + [aux_sym__val_number_decimal_token1] = ACTIONS(2738), + [aux_sym__val_number_token1] = ACTIONS(2738), + [aux_sym__val_number_token2] = ACTIONS(2738), + [aux_sym__val_number_token3] = ACTIONS(2738), + [aux_sym__val_number_token4] = ACTIONS(2738), + [aux_sym__val_number_token5] = ACTIONS(2738), + [aux_sym__val_number_token6] = ACTIONS(2738), + [anon_sym_0b] = ACTIONS(2738), + [anon_sym_0o] = ACTIONS(2738), + [anon_sym_0x] = ACTIONS(2738), + [sym_val_date] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [sym__str_single_quotes] = ACTIONS(2738), + [sym__str_back_ticks] = ACTIONS(2738), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(105), }, [1229] = { - [sym__flag] = STATE(1906), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), + [sym__command_name] = STATE(2290), + [sym_scope_pattern] = STATE(2368), + [sym_wild_card] = STATE(2306), + [sym_command_list] = STATE(2316), + [sym_val_string] = STATE(2136), + [sym__str_double_quotes] = STATE(2008), [sym_comment] = STATE(1229), - [aux_sym_overlay_use_repeat1] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(2793), - [anon_sym_export] = ACTIONS(2791), - [anon_sym_alias] = ACTIONS(2791), - [anon_sym_let] = ACTIONS(2791), - [anon_sym_let_DASHenv] = ACTIONS(2791), - [anon_sym_mut] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2791), - [sym_cmd_identifier] = ACTIONS(2791), - [anon_sym_LF] = ACTIONS(2793), - [anon_sym_def] = ACTIONS(2791), - [anon_sym_export_DASHenv] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_use] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_DOLLAR] = ACTIONS(2791), - [anon_sym_error] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_loop] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_match] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_DOT] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_source] = ACTIONS(2791), - [anon_sym_source_DASHenv] = ACTIONS(2791), - [anon_sym_register] = ACTIONS(2791), - [anon_sym_hide] = ACTIONS(2791), - [anon_sym_hide_DASHenv] = ACTIONS(2791), - [anon_sym_overlay] = ACTIONS(2791), - [anon_sym_as] = ACTIONS(2791), - [anon_sym_where] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2791), - [anon_sym_not] = ACTIONS(2791), - [anon_sym_null] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [aux_sym__val_number_decimal_token1] = ACTIONS(2791), - [aux_sym__val_number_token1] = ACTIONS(2791), - [aux_sym__val_number_token2] = ACTIONS(2791), - [aux_sym__val_number_token3] = ACTIONS(2791), - [aux_sym__val_number_token4] = ACTIONS(2791), - [aux_sym__val_number_token5] = ACTIONS(2791), - [aux_sym__val_number_token6] = ACTIONS(2791), - [anon_sym_0b] = ACTIONS(2791), - [anon_sym_0o] = ACTIONS(2791), - [anon_sym_0x] = ACTIONS(2791), - [sym_val_date] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym__str_single_quotes] = ACTIONS(2791), - [sym__str_back_ticks] = ACTIONS(2791), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2791), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2791), + [ts_builtin_sym_end] = ACTIONS(2785), + [anon_sym_export] = ACTIONS(2783), + [anon_sym_alias] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2783), + [anon_sym_let_DASHenv] = ACTIONS(2783), + [anon_sym_mut] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2783), + [sym_cmd_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2785), + [anon_sym_def] = ACTIONS(2783), + [anon_sym_export_DASHenv] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym_module] = ACTIONS(2783), + [anon_sym_use] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2783), + [anon_sym_error] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_loop] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_do] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_match] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_DOT] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_source] = ACTIONS(2783), + [anon_sym_source_DASHenv] = ACTIONS(2783), + [anon_sym_register] = ACTIONS(2783), + [anon_sym_hide] = ACTIONS(2783), + [anon_sym_hide_DASHenv] = ACTIONS(2783), + [anon_sym_overlay] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_where] = ACTIONS(2783), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_not] = ACTIONS(2783), + [anon_sym_null] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2783), + [anon_sym_false] = ACTIONS(2783), + [aux_sym__val_number_decimal_token1] = ACTIONS(2783), + [aux_sym__val_number_token1] = ACTIONS(2783), + [aux_sym__val_number_token2] = ACTIONS(2783), + [aux_sym__val_number_token3] = ACTIONS(2783), + [aux_sym__val_number_token4] = ACTIONS(2783), + [aux_sym__val_number_token5] = ACTIONS(2783), + [aux_sym__val_number_token6] = ACTIONS(2783), + [anon_sym_0b] = ACTIONS(2783), + [anon_sym_0o] = ACTIONS(2783), + [anon_sym_0x] = ACTIONS(2783), + [sym_val_date] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym__str_single_quotes] = ACTIONS(2841), + [sym__str_back_ticks] = ACTIONS(2841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), [anon_sym_POUND] = ACTIONS(105), }, [1230] = { - [sym__command_name] = STATE(2154), - [sym_scope_pattern] = STATE(2303), - [sym_wild_card] = STATE(2152), - [sym_command_list] = STATE(2151), - [sym_val_string] = STATE(1956), - [sym__str_double_quotes] = STATE(2049), [sym_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2672), - [anon_sym_alias] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_let_DASHenv] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2672), - [sym_cmd_identifier] = ACTIONS(2813), - [anon_sym_LF] = ACTIONS(2674), - [anon_sym_def] = ACTIONS(2672), - [anon_sym_export_DASHenv] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_module] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_DOLLAR] = ACTIONS(2672), - [anon_sym_error] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_do] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_source] = ACTIONS(2672), - [anon_sym_source_DASHenv] = ACTIONS(2672), - [anon_sym_register] = ACTIONS(2672), - [anon_sym_hide] = ACTIONS(2672), - [anon_sym_hide_DASHenv] = ACTIONS(2672), - [anon_sym_overlay] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_where] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_not] = ACTIONS(2672), - [anon_sym_null] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [aux_sym__val_number_decimal_token1] = ACTIONS(2672), - [aux_sym__val_number_token1] = ACTIONS(2672), - [aux_sym__val_number_token2] = ACTIONS(2672), - [aux_sym__val_number_token3] = ACTIONS(2672), - [aux_sym__val_number_token4] = ACTIONS(2672), - [aux_sym__val_number_token5] = ACTIONS(2672), - [aux_sym__val_number_token6] = ACTIONS(2672), - [anon_sym_0b] = ACTIONS(2672), - [anon_sym_0o] = ACTIONS(2672), - [anon_sym_0x] = ACTIONS(2672), - [sym_val_date] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2819), - [sym__str_single_quotes] = ACTIONS(2821), - [sym__str_back_ticks] = ACTIONS(2821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2672), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(2855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [1231] = { [sym_comment] = STATE(1231), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_err_GT] = ACTIONS(1228), - [anon_sym_out_GT] = ACTIONS(1228), - [anon_sym_e_GT] = ACTIONS(1228), - [anon_sym_o_GT] = ACTIONS(1228), - [anon_sym_err_PLUSout_GT] = ACTIONS(1228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1228), - [anon_sym_o_PLUSe_GT] = ACTIONS(1228), - [anon_sym_e_PLUSo_GT] = ACTIONS(1228), - [aux_sym_unquoted_token1] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(846), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(846), + [anon_sym_const] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(846), + [sym_cmd_identifier] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_def] = ACTIONS(846), + [anon_sym_export_DASHenv] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_use] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_match] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_source] = ACTIONS(846), + [anon_sym_source_DASHenv] = ACTIONS(846), + [anon_sym_register] = ACTIONS(846), + [anon_sym_hide] = ACTIONS(846), + [anon_sym_hide_DASHenv] = ACTIONS(846), + [anon_sym_overlay] = ACTIONS(846), + [anon_sym_as] = ACTIONS(846), + [anon_sym_where] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(2860), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, [1232] = { + [sym__match_pattern_expression] = STATE(6861), + [sym__match_pattern_value] = STATE(6796), + [sym__match_pattern_list] = STATE(6797), + [sym__match_pattern_rest] = STATE(11345), + [sym__match_pattern_ignore_rest] = STATE(11345), + [sym__match_pattern_record] = STATE(6800), + [sym__expr_unary_minus] = STATE(6637), + [sym_expr_parenthesized] = STATE(6485), + [sym_val_range] = STATE(6639), + [sym__value] = STATE(10229), + [sym_val_nothing] = STATE(6636), + [sym_val_bool] = STATE(6636), + [sym_val_variable] = STATE(6486), + [sym__var] = STATE(6043), + [sym_val_number] = STATE(6207), + [sym__val_number_decimal] = STATE(5663), + [sym__val_number] = STATE(6204), + [sym_val_duration] = STATE(6636), + [sym_val_filesize] = STATE(6636), + [sym_val_binary] = STATE(6636), + [sym_val_string] = STATE(6636), + [sym__str_double_quotes] = STATE(6581), + [sym_val_interpolated] = STATE(6113), + [sym__inter_single_quotes] = STATE(6093), + [sym__inter_double_quotes] = STATE(6094), + [sym_val_list] = STATE(10115), + [sym_list_body] = STATE(10966), + [sym_val_entry] = STATE(10233), + [sym__list_item_expression] = STATE(10277), + [sym__list_item_starts_with_sign] = STATE(6640), + [sym_val_record] = STATE(6113), + [sym_val_table] = STATE(6636), + [sym_val_closure] = STATE(6113), + [sym_short_flag] = STATE(6640), + [sym_long_flag] = STATE(6640), + [sym_long_flag_equals_value] = STATE(6580), + [sym__unquoted_in_list] = STATE(6640), [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_export] = ACTIONS(835), - [anon_sym_alias] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_let_DASHenv] = ACTIONS(835), - [anon_sym_mut] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [sym_cmd_identifier] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_def] = ACTIONS(835), - [anon_sym_export_DASHenv] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_error] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_source] = ACTIONS(835), - [anon_sym_source_DASHenv] = ACTIONS(835), - [anon_sym_register] = ACTIONS(835), - [anon_sym_hide] = ACTIONS(835), - [anon_sym_hide_DASHenv] = ACTIONS(835), - [anon_sym_overlay] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_list_repeat1] = STATE(3050), + [aux_sym_list_body_repeat1] = STATE(2446), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_RBRACK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [aux_sym__val_number_decimal_token1] = ACTIONS(2884), + [aux_sym__val_number_token1] = ACTIONS(2886), + [aux_sym__val_number_token2] = ACTIONS(2886), + [aux_sym__val_number_token3] = ACTIONS(2886), + [aux_sym__val_number_token4] = ACTIONS(2888), + [aux_sym__val_number_token5] = ACTIONS(2888), + [aux_sym__val_number_token6] = ACTIONS(2888), + [anon_sym_0b] = ACTIONS(2890), + [anon_sym_0o] = ACTIONS(2890), + [anon_sym_0x] = ACTIONS(2890), + [sym_val_date] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2894), + [sym__str_single_quotes] = ACTIONS(2896), + [sym__str_back_ticks] = ACTIONS(2896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(3), }, [1233] = { [sym_comment] = STATE(1233), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [1234] = { - [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, - [1235] = { - [sym_comment] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(2789), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [1236] = { - [sym_comment] = STATE(1236), [anon_sym_export] = ACTIONS(807), [anon_sym_alias] = ACTIONS(807), [anon_sym_let] = ACTIONS(807), @@ -194373,80 +194184,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1237] = { - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(2905), - [sym_duration_unit] = ACTIONS(2907), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), + [1234] = { + [sym_comment] = STATE(1234), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_err_GT] = ACTIONS(1213), + [anon_sym_out_GT] = ACTIONS(1213), + [anon_sym_e_GT] = ACTIONS(1213), + [anon_sym_o_GT] = ACTIONS(1213), + [anon_sym_err_PLUSout_GT] = ACTIONS(1213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1213), + [anon_sym_o_PLUSe_GT] = ACTIONS(1213), + [anon_sym_e_PLUSo_GT] = ACTIONS(1213), + [aux_sym_unquoted_token1] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, - [1238] = { - [sym_comment] = STATE(1238), + [1235] = { + [sym_comment] = STATE(1235), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_export] = ACTIONS(815), [anon_sym_alias] = ACTIONS(815), @@ -194478,7 +194289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(815), [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_DOT2] = ACTIONS(2904), [anon_sym_try] = ACTIONS(815), [anon_sym_return] = ACTIONS(815), [anon_sym_source] = ACTIONS(815), @@ -194491,6 +194302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(815), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(2789), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -194516,789 +194328,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, + [1236] = { + [sym_comment] = STATE(1236), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_err_GT] = ACTIONS(827), + [anon_sym_out_GT] = ACTIONS(827), + [anon_sym_e_GT] = ACTIONS(827), + [anon_sym_o_GT] = ACTIONS(827), + [anon_sym_err_PLUSout_GT] = ACTIONS(827), + [anon_sym_out_PLUSerr_GT] = ACTIONS(827), + [anon_sym_o_PLUSe_GT] = ACTIONS(827), + [anon_sym_e_PLUSo_GT] = ACTIONS(827), + [aux_sym_unquoted_token1] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(105), + }, + [1237] = { + [sym__match_pattern_expression] = STATE(6861), + [sym__match_pattern_value] = STATE(6796), + [sym__match_pattern_list] = STATE(6797), + [sym__match_pattern_rest] = STATE(11345), + [sym__match_pattern_ignore_rest] = STATE(11345), + [sym__match_pattern_record] = STATE(6800), + [sym__expr_unary_minus] = STATE(6637), + [sym_expr_parenthesized] = STATE(6485), + [sym_val_range] = STATE(6639), + [sym__value] = STATE(10229), + [sym_val_nothing] = STATE(6636), + [sym_val_bool] = STATE(6636), + [sym_val_variable] = STATE(6486), + [sym__var] = STATE(6043), + [sym_val_number] = STATE(6207), + [sym__val_number_decimal] = STATE(5663), + [sym__val_number] = STATE(6204), + [sym_val_duration] = STATE(6636), + [sym_val_filesize] = STATE(6636), + [sym_val_binary] = STATE(6636), + [sym_val_string] = STATE(6636), + [sym__str_double_quotes] = STATE(6581), + [sym_val_interpolated] = STATE(6113), + [sym__inter_single_quotes] = STATE(6093), + [sym__inter_double_quotes] = STATE(6094), + [sym_val_list] = STATE(10103), + [sym_list_body] = STATE(11408), + [sym_val_entry] = STATE(10233), + [sym__list_item_expression] = STATE(10277), + [sym__list_item_starts_with_sign] = STATE(6640), + [sym_val_record] = STATE(6113), + [sym_val_table] = STATE(6636), + [sym_val_closure] = STATE(6113), + [sym_short_flag] = STATE(6640), + [sym_long_flag] = STATE(6640), + [sym_long_flag_equals_value] = STATE(6580), + [sym__unquoted_in_list] = STATE(6640), + [sym_comment] = STATE(1237), + [aux_sym__match_pattern_list_repeat1] = STATE(3050), + [aux_sym_list_body_repeat1] = STATE(2446), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_RBRACK] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [aux_sym__val_number_decimal_token1] = ACTIONS(2884), + [aux_sym__val_number_token1] = ACTIONS(2886), + [aux_sym__val_number_token2] = ACTIONS(2886), + [aux_sym__val_number_token3] = ACTIONS(2886), + [aux_sym__val_number_token4] = ACTIONS(2888), + [aux_sym__val_number_token5] = ACTIONS(2888), + [aux_sym__val_number_token6] = ACTIONS(2888), + [anon_sym_0b] = ACTIONS(2890), + [anon_sym_0o] = ACTIONS(2890), + [anon_sym_0x] = ACTIONS(2890), + [sym_val_date] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2894), + [sym__str_single_quotes] = ACTIONS(2896), + [sym__str_back_ticks] = ACTIONS(2896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(3), + }, + [1238] = { + [sym_comment] = STATE(1238), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_err_GT] = ACTIONS(1381), + [anon_sym_out_GT] = ACTIONS(1381), + [anon_sym_e_GT] = ACTIONS(1381), + [anon_sym_o_GT] = ACTIONS(1381), + [anon_sym_err_PLUSout_GT] = ACTIONS(1381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1381), + [anon_sym_o_PLUSe_GT] = ACTIONS(1381), + [anon_sym_e_PLUSo_GT] = ACTIONS(1381), + [aux_sym_unquoted_token1] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(105), + }, [1239] = { + [sym_cell_path] = STATE(1568), + [sym_path] = STATE(1288), [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_SLASH_SLASH] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_bit_DASHshl] = ACTIONS(1222), - [anon_sym_bit_DASHshr] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT2] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_not_DASHin] = ACTIONS(1222), - [anon_sym_starts_DASHwith] = ACTIONS(1222), - [anon_sym_ends_DASHwith] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1222), - [anon_sym_BANG_TILDE] = ACTIONS(1222), - [anon_sym_bit_DASHand] = ACTIONS(1222), - [anon_sym_bit_DASHxor] = ACTIONS(1222), - [anon_sym_bit_DASHor] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_xor] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_err_GT] = ACTIONS(1222), - [anon_sym_out_GT] = ACTIONS(1222), - [anon_sym_e_GT] = ACTIONS(1222), - [anon_sym_o_GT] = ACTIONS(1222), - [anon_sym_err_PLUSout_GT] = ACTIONS(1222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1222), - [anon_sym_o_PLUSe_GT] = ACTIONS(1222), - [anon_sym_e_PLUSo_GT] = ACTIONS(1222), - [aux_sym_unquoted_token1] = ACTIONS(1222), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(105), }, [1240] = { [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_SLASH_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_bit_DASHshl] = ACTIONS(1228), - [anon_sym_bit_DASHshr] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT2] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_not_DASHin] = ACTIONS(1228), - [anon_sym_starts_DASHwith] = ACTIONS(1228), - [anon_sym_ends_DASHwith] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_BANG_TILDE] = ACTIONS(1228), - [anon_sym_bit_DASHand] = ACTIONS(1228), - [anon_sym_bit_DASHxor] = ACTIONS(1228), - [anon_sym_bit_DASHor] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1228), - [anon_sym_xor] = ACTIONS(1228), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_err_GT] = ACTIONS(1228), - [anon_sym_out_GT] = ACTIONS(1228), - [anon_sym_e_GT] = ACTIONS(1228), - [anon_sym_o_GT] = ACTIONS(1228), - [anon_sym_err_PLUSout_GT] = ACTIONS(1228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1228), - [anon_sym_o_PLUSe_GT] = ACTIONS(1228), - [anon_sym_e_PLUSo_GT] = ACTIONS(1228), - [aux_sym_unquoted_token1] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_err_GT] = ACTIONS(1270), + [anon_sym_out_GT] = ACTIONS(1270), + [anon_sym_e_GT] = ACTIONS(1270), + [anon_sym_o_GT] = ACTIONS(1270), + [anon_sym_err_PLUSout_GT] = ACTIONS(1270), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1270), + [anon_sym_o_PLUSe_GT] = ACTIONS(1270), + [anon_sym_e_PLUSo_GT] = ACTIONS(1270), + [aux_sym_unquoted_token1] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [1241] = { [sym_comment] = STATE(1241), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_err_GT] = ACTIONS(1288), - [anon_sym_out_GT] = ACTIONS(1288), - [anon_sym_e_GT] = ACTIONS(1288), - [anon_sym_o_GT] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT] = ACTIONS(1288), - [aux_sym_unquoted_token1] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1242] = { [sym_comment] = STATE(1242), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_err_GT] = ACTIONS(1305), - [anon_sym_out_GT] = ACTIONS(1305), - [anon_sym_e_GT] = ACTIONS(1305), - [anon_sym_o_GT] = ACTIONS(1305), - [anon_sym_err_PLUSout_GT] = ACTIONS(1305), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1305), - [anon_sym_o_PLUSe_GT] = ACTIONS(1305), - [anon_sym_e_PLUSo_GT] = ACTIONS(1305), - [aux_sym_unquoted_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_err_GT] = ACTIONS(827), + [anon_sym_out_GT] = ACTIONS(827), + [anon_sym_e_GT] = ACTIONS(827), + [anon_sym_o_GT] = ACTIONS(827), + [anon_sym_err_PLUSout_GT] = ACTIONS(827), + [anon_sym_out_PLUSerr_GT] = ACTIONS(827), + [anon_sym_o_PLUSe_GT] = ACTIONS(827), + [anon_sym_e_PLUSo_GT] = ACTIONS(827), + [aux_sym_unquoted_token1] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(2293), [anon_sym_POUND] = ACTIONS(105), }, [1243] = { [sym_comment] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_STAR_STAR] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_mod] = ACTIONS(1189), - [anon_sym_SLASH_SLASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_bit_DASHshl] = ACTIONS(1189), - [anon_sym_bit_DASHshr] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT2] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1189), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_not_DASHin] = ACTIONS(1189), - [anon_sym_starts_DASHwith] = ACTIONS(1189), - [anon_sym_ends_DASHwith] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_bit_DASHand] = ACTIONS(1189), - [anon_sym_bit_DASHxor] = ACTIONS(1189), - [anon_sym_bit_DASHor] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1189), - [anon_sym_xor] = ACTIONS(1189), - [anon_sym_or] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_err_GT] = ACTIONS(1189), - [anon_sym_out_GT] = ACTIONS(1189), - [anon_sym_e_GT] = ACTIONS(1189), - [anon_sym_o_GT] = ACTIONS(1189), - [anon_sym_err_PLUSout_GT] = ACTIONS(1189), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1189), - [anon_sym_o_PLUSe_GT] = ACTIONS(1189), - [anon_sym_e_PLUSo_GT] = ACTIONS(1189), - [aux_sym_unquoted_token1] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_GT] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_in] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_DOT] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_STAR_STAR] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_SLASH_SLASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_bit_DASHshl] = ACTIONS(1274), + [anon_sym_bit_DASHshr] = ACTIONS(1274), + [anon_sym_EQ_EQ] = ACTIONS(1274), + [anon_sym_BANG_EQ] = ACTIONS(1274), + [anon_sym_LT2] = ACTIONS(1274), + [anon_sym_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_EQ] = ACTIONS(1274), + [anon_sym_not_DASHin] = ACTIONS(1274), + [anon_sym_starts_DASHwith] = ACTIONS(1274), + [anon_sym_ends_DASHwith] = ACTIONS(1274), + [anon_sym_EQ_TILDE] = ACTIONS(1274), + [anon_sym_BANG_TILDE] = ACTIONS(1274), + [anon_sym_bit_DASHand] = ACTIONS(1274), + [anon_sym_bit_DASHxor] = ACTIONS(1274), + [anon_sym_bit_DASHor] = ACTIONS(1274), + [anon_sym_and] = ACTIONS(1274), + [anon_sym_xor] = ACTIONS(1274), + [anon_sym_or] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1274), + [anon_sym_0x] = ACTIONS(1274), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_err_GT] = ACTIONS(1274), + [anon_sym_out_GT] = ACTIONS(1274), + [anon_sym_e_GT] = ACTIONS(1274), + [anon_sym_o_GT] = ACTIONS(1274), + [anon_sym_err_PLUSout_GT] = ACTIONS(1274), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1274), + [anon_sym_o_PLUSe_GT] = ACTIONS(1274), + [anon_sym_e_PLUSo_GT] = ACTIONS(1274), + [aux_sym_unquoted_token1] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, [1244] = { [sym_comment] = STATE(1244), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_err_GT] = ACTIONS(1321), - [anon_sym_out_GT] = ACTIONS(1321), - [anon_sym_e_GT] = ACTIONS(1321), - [anon_sym_o_GT] = ACTIONS(1321), - [anon_sym_err_PLUSout_GT] = ACTIONS(1321), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1321), - [anon_sym_o_PLUSe_GT] = ACTIONS(1321), - [anon_sym_e_PLUSo_GT] = ACTIONS(1321), - [aux_sym_unquoted_token1] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(105), - }, - [1245] = { - [sym_comment] = STATE(1245), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(105), - }, - [1246] = { - [sym_comment] = STATE(1246), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_err_GT] = ACTIONS(1313), - [anon_sym_out_GT] = ACTIONS(1313), - [anon_sym_e_GT] = ACTIONS(1313), - [anon_sym_o_GT] = ACTIONS(1313), - [anon_sym_err_PLUSout_GT] = ACTIONS(1313), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1313), - [anon_sym_o_PLUSe_GT] = ACTIONS(1313), - [anon_sym_e_PLUSo_GT] = ACTIONS(1313), - [aux_sym_unquoted_token1] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(105), - }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_err_GT] = ACTIONS(1298), - [anon_sym_out_GT] = ACTIONS(1298), - [anon_sym_e_GT] = ACTIONS(1298), - [anon_sym_o_GT] = ACTIONS(1298), - [anon_sym_err_PLUSout_GT] = ACTIONS(1298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1298), - [anon_sym_o_PLUSe_GT] = ACTIONS(1298), - [anon_sym_e_PLUSo_GT] = ACTIONS(1298), - [aux_sym_unquoted_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(105), - }, - [1248] = { - [sym_comment] = STATE(1248), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [1249] = { - [sym_comment] = STATE(1249), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_err_GT] = ACTIONS(1294), - [anon_sym_out_GT] = ACTIONS(1294), - [anon_sym_e_GT] = ACTIONS(1294), - [anon_sym_o_GT] = ACTIONS(1294), - [anon_sym_err_PLUSout_GT] = ACTIONS(1294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1294), - [anon_sym_o_PLUSe_GT] = ACTIONS(1294), - [anon_sym_e_PLUSo_GT] = ACTIONS(1294), - [aux_sym_unquoted_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(105), - }, - [1250] = { - [sym_comment] = STATE(1250), [anon_sym_SEMI] = ACTIONS(1278), [anon_sym_LF] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(1278), @@ -195368,2495 +194969,3063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, + [1245] = { + [sym_comment] = STATE(1245), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_err_GT] = ACTIONS(1361), + [anon_sym_out_GT] = ACTIONS(1361), + [anon_sym_e_GT] = ACTIONS(1361), + [anon_sym_o_GT] = ACTIONS(1361), + [anon_sym_err_PLUSout_GT] = ACTIONS(1361), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1361), + [anon_sym_o_PLUSe_GT] = ACTIONS(1361), + [anon_sym_e_PLUSo_GT] = ACTIONS(1361), + [aux_sym_unquoted_token1] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(105), + }, + [1246] = { + [sym_comment] = STATE(1246), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_err_GT] = ACTIONS(1191), + [anon_sym_out_GT] = ACTIONS(1191), + [anon_sym_e_GT] = ACTIONS(1191), + [anon_sym_o_GT] = ACTIONS(1191), + [anon_sym_err_PLUSout_GT] = ACTIONS(1191), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1191), + [anon_sym_o_PLUSe_GT] = ACTIONS(1191), + [anon_sym_e_PLUSo_GT] = ACTIONS(1191), + [aux_sym_unquoted_token1] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(105), + }, + [1247] = { + [sym_comment] = STATE(1247), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(883), + [anon_sym_POUND] = ACTIONS(105), + }, + [1248] = { + [sym_comment] = STATE(1248), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_err_GT] = ACTIONS(1353), + [anon_sym_out_GT] = ACTIONS(1353), + [anon_sym_e_GT] = ACTIONS(1353), + [anon_sym_o_GT] = ACTIONS(1353), + [anon_sym_err_PLUSout_GT] = ACTIONS(1353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1353), + [anon_sym_o_PLUSe_GT] = ACTIONS(1353), + [anon_sym_e_PLUSo_GT] = ACTIONS(1353), + [aux_sym_unquoted_token1] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(105), + }, + [1249] = { + [sym_comment] = STATE(1249), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_err_GT] = ACTIONS(1425), + [anon_sym_out_GT] = ACTIONS(1425), + [anon_sym_e_GT] = ACTIONS(1425), + [anon_sym_o_GT] = ACTIONS(1425), + [anon_sym_err_PLUSout_GT] = ACTIONS(1425), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1425), + [anon_sym_o_PLUSe_GT] = ACTIONS(1425), + [anon_sym_e_PLUSo_GT] = ACTIONS(1425), + [aux_sym_unquoted_token1] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(105), + }, + [1250] = { + [sym_comment] = STATE(1250), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_err_GT] = ACTIONS(1429), + [anon_sym_out_GT] = ACTIONS(1429), + [anon_sym_e_GT] = ACTIONS(1429), + [anon_sym_o_GT] = ACTIONS(1429), + [anon_sym_err_PLUSout_GT] = ACTIONS(1429), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), + [anon_sym_o_PLUSe_GT] = ACTIONS(1429), + [anon_sym_e_PLUSo_GT] = ACTIONS(1429), + [aux_sym_unquoted_token1] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(105), + }, [1251] = { [sym_comment] = STATE(1251), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_in] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_STAR_STAR] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_mod] = ACTIONS(1274), - [anon_sym_SLASH_SLASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_bit_DASHshl] = ACTIONS(1274), - [anon_sym_bit_DASHshr] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT2] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_not_DASHin] = ACTIONS(1274), - [anon_sym_starts_DASHwith] = ACTIONS(1274), - [anon_sym_ends_DASHwith] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1274), - [anon_sym_BANG_TILDE] = ACTIONS(1274), - [anon_sym_bit_DASHand] = ACTIONS(1274), - [anon_sym_bit_DASHxor] = ACTIONS(1274), - [anon_sym_bit_DASHor] = ACTIONS(1274), - [anon_sym_and] = ACTIONS(1274), - [anon_sym_xor] = ACTIONS(1274), - [anon_sym_or] = ACTIONS(1274), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(1274), - [aux_sym__val_number_token2] = ACTIONS(1274), - [aux_sym__val_number_token3] = ACTIONS(1274), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1274), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_0b] = ACTIONS(1274), - [anon_sym_0o] = ACTIONS(1274), - [anon_sym_0x] = ACTIONS(1274), - [sym_val_date] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym__str_single_quotes] = ACTIONS(1274), - [sym__str_back_ticks] = ACTIONS(1274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), - [anon_sym_err_GT] = ACTIONS(1274), - [anon_sym_out_GT] = ACTIONS(1274), - [anon_sym_e_GT] = ACTIONS(1274), - [anon_sym_o_GT] = ACTIONS(1274), - [anon_sym_err_PLUSout_GT] = ACTIONS(1274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1274), - [anon_sym_o_PLUSe_GT] = ACTIONS(1274), - [anon_sym_e_PLUSo_GT] = ACTIONS(1274), - [aux_sym_unquoted_token1] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_err_GT] = ACTIONS(1303), + [anon_sym_out_GT] = ACTIONS(1303), + [anon_sym_e_GT] = ACTIONS(1303), + [anon_sym_o_GT] = ACTIONS(1303), + [anon_sym_err_PLUSout_GT] = ACTIONS(1303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1303), + [anon_sym_o_PLUSe_GT] = ACTIONS(1303), + [anon_sym_e_PLUSo_GT] = ACTIONS(1303), + [aux_sym_unquoted_token1] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, [1252] = { + [sym_cell_path] = STATE(1492), + [sym_path] = STATE(1319), [sym_comment] = STATE(1252), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_err_GT] = ACTIONS(1309), - [anon_sym_out_GT] = ACTIONS(1309), - [anon_sym_e_GT] = ACTIONS(1309), - [anon_sym_o_GT] = ACTIONS(1309), - [anon_sym_err_PLUSout_GT] = ACTIONS(1309), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1309), - [anon_sym_o_PLUSe_GT] = ACTIONS(1309), - [anon_sym_e_PLUSo_GT] = ACTIONS(1309), - [aux_sym_unquoted_token1] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [1253] = { [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_err_GT] = ACTIONS(1259), - [anon_sym_out_GT] = ACTIONS(1259), - [anon_sym_e_GT] = ACTIONS(1259), - [anon_sym_o_GT] = ACTIONS(1259), - [anon_sym_err_PLUSout_GT] = ACTIONS(1259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), - [anon_sym_o_PLUSe_GT] = ACTIONS(1259), - [anon_sym_e_PLUSo_GT] = ACTIONS(1259), - [aux_sym_unquoted_token1] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_err_GT] = ACTIONS(1255), + [anon_sym_out_GT] = ACTIONS(1255), + [anon_sym_e_GT] = ACTIONS(1255), + [anon_sym_o_GT] = ACTIONS(1255), + [anon_sym_err_PLUSout_GT] = ACTIONS(1255), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1255), + [anon_sym_o_PLUSe_GT] = ACTIONS(1255), + [anon_sym_e_PLUSo_GT] = ACTIONS(1255), + [aux_sym_unquoted_token1] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(105), }, [1254] = { [sym_comment] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_err_GT] = ACTIONS(1332), - [anon_sym_out_GT] = ACTIONS(1332), - [anon_sym_e_GT] = ACTIONS(1332), - [anon_sym_o_GT] = ACTIONS(1332), - [anon_sym_err_PLUSout_GT] = ACTIONS(1332), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1332), - [anon_sym_o_PLUSe_GT] = ACTIONS(1332), - [anon_sym_e_PLUSo_GT] = ACTIONS(1332), - [aux_sym_unquoted_token1] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1255] = { [sym_comment] = STATE(1255), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_err_GT] = ACTIONS(1325), - [anon_sym_out_GT] = ACTIONS(1325), - [anon_sym_e_GT] = ACTIONS(1325), - [anon_sym_o_GT] = ACTIONS(1325), - [anon_sym_err_PLUSout_GT] = ACTIONS(1325), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1325), - [anon_sym_o_PLUSe_GT] = ACTIONS(1325), - [anon_sym_e_PLUSo_GT] = ACTIONS(1325), - [aux_sym_unquoted_token1] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_err_GT] = ACTIONS(1433), + [anon_sym_out_GT] = ACTIONS(1433), + [anon_sym_e_GT] = ACTIONS(1433), + [anon_sym_o_GT] = ACTIONS(1433), + [anon_sym_err_PLUSout_GT] = ACTIONS(1433), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1433), + [anon_sym_o_PLUSe_GT] = ACTIONS(1433), + [anon_sym_e_PLUSo_GT] = ACTIONS(1433), + [aux_sym_unquoted_token1] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [1256] = { [sym_comment] = STATE(1256), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1257] = { [sym_comment] = STATE(1257), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1033), - [anon_sym_out_GT] = ACTIONS(1033), - [anon_sym_e_GT] = ACTIONS(1033), - [anon_sym_o_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1258] = { [sym_comment] = STATE(1258), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_err_GT] = ACTIONS(1358), - [anon_sym_out_GT] = ACTIONS(1358), - [anon_sym_e_GT] = ACTIONS(1358), - [anon_sym_o_GT] = ACTIONS(1358), - [anon_sym_err_PLUSout_GT] = ACTIONS(1358), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1358), - [anon_sym_o_PLUSe_GT] = ACTIONS(1358), - [anon_sym_e_PLUSo_GT] = ACTIONS(1358), - [aux_sym_unquoted_token1] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1259] = { - [sym_path] = STATE(1471), [sym_comment] = STATE(1259), - [aux_sym_cell_path_repeat1] = STATE(1319), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1260] = { [sym_comment] = STATE(1260), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym_unquoted_token1] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1261] = { [sym_comment] = STATE(1261), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym_unquoted_token1] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1262] = { [sym_comment] = STATE(1262), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [aux_sym_unquoted_token1] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1263] = { [sym_comment] = STATE(1263), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_err_GT] = ACTIONS(1342), - [anon_sym_out_GT] = ACTIONS(1342), - [anon_sym_e_GT] = ACTIONS(1342), - [anon_sym_o_GT] = ACTIONS(1342), - [anon_sym_err_PLUSout_GT] = ACTIONS(1342), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1342), - [anon_sym_o_PLUSe_GT] = ACTIONS(1342), - [anon_sym_e_PLUSo_GT] = ACTIONS(1342), - [aux_sym_unquoted_token1] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1264] = { [sym_comment] = STATE(1264), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_err_GT] = ACTIONS(1346), - [anon_sym_out_GT] = ACTIONS(1346), - [anon_sym_e_GT] = ACTIONS(1346), - [anon_sym_o_GT] = ACTIONS(1346), - [anon_sym_err_PLUSout_GT] = ACTIONS(1346), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1346), - [anon_sym_o_PLUSe_GT] = ACTIONS(1346), - [anon_sym_e_PLUSo_GT] = ACTIONS(1346), - [aux_sym_unquoted_token1] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1265] = { - [sym_cell_path] = STATE(1575), - [sym_path] = STATE(1286), [sym_comment] = STATE(1265), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1266] = { - [sym_cell_path] = STATE(1588), - [sym_path] = STATE(1286), [sym_comment] = STATE(1266), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1267] = { [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_err_GT] = ACTIONS(823), - [anon_sym_out_GT] = ACTIONS(823), - [anon_sym_e_GT] = ACTIONS(823), - [anon_sym_o_GT] = ACTIONS(823), - [anon_sym_err_PLUSout_GT] = ACTIONS(823), - [anon_sym_out_PLUSerr_GT] = ACTIONS(823), - [anon_sym_o_PLUSe_GT] = ACTIONS(823), - [anon_sym_e_PLUSo_GT] = ACTIONS(823), - [aux_sym_unquoted_token1] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1268] = { [sym_comment] = STATE(1268), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_err_GT] = ACTIONS(1350), - [anon_sym_out_GT] = ACTIONS(1350), - [anon_sym_e_GT] = ACTIONS(1350), - [anon_sym_o_GT] = ACTIONS(1350), - [anon_sym_err_PLUSout_GT] = ACTIONS(1350), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1350), - [anon_sym_o_PLUSe_GT] = ACTIONS(1350), - [anon_sym_e_PLUSo_GT] = ACTIONS(1350), - [aux_sym_unquoted_token1] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1269] = { [sym_comment] = STATE(1269), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_err_GT] = ACTIONS(1354), - [anon_sym_out_GT] = ACTIONS(1354), - [anon_sym_e_GT] = ACTIONS(1354), - [anon_sym_o_GT] = ACTIONS(1354), - [anon_sym_err_PLUSout_GT] = ACTIONS(1354), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1354), - [anon_sym_o_PLUSe_GT] = ACTIONS(1354), - [anon_sym_e_PLUSo_GT] = ACTIONS(1354), - [aux_sym_unquoted_token1] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1270] = { [sym_comment] = STATE(1270), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [1271] = { - [sym_comment] = STATE(1271), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_err_GT] = ACTIONS(1193), - [anon_sym_out_GT] = ACTIONS(1193), - [anon_sym_e_GT] = ACTIONS(1193), - [anon_sym_o_GT] = ACTIONS(1193), - [anon_sym_err_PLUSout_GT] = ACTIONS(1193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1193), - [anon_sym_o_PLUSe_GT] = ACTIONS(1193), - [anon_sym_e_PLUSo_GT] = ACTIONS(1193), - [aux_sym_unquoted_token1] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1271] = { + [sym_comment] = STATE(1271), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(2930), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1272] = { [sym_comment] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2921), - [aux_sym_unquoted_token6] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1273] = { [sym_comment] = STATE(1273), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_err_GT] = ACTIONS(1317), - [anon_sym_out_GT] = ACTIONS(1317), - [anon_sym_e_GT] = ACTIONS(1317), - [anon_sym_o_GT] = ACTIONS(1317), - [anon_sym_err_PLUSout_GT] = ACTIONS(1317), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1317), - [anon_sym_o_PLUSe_GT] = ACTIONS(1317), - [anon_sym_e_PLUSo_GT] = ACTIONS(1317), - [aux_sym_unquoted_token1] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(2930), + [anon_sym_bit_DASHor] = ACTIONS(2932), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1274] = { [sym_comment] = STATE(1274), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_err_GT] = ACTIONS(1397), - [anon_sym_out_GT] = ACTIONS(1397), - [anon_sym_e_GT] = ACTIONS(1397), - [anon_sym_o_GT] = ACTIONS(1397), - [anon_sym_err_PLUSout_GT] = ACTIONS(1397), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1397), - [anon_sym_o_PLUSe_GT] = ACTIONS(1397), - [anon_sym_e_PLUSo_GT] = ACTIONS(1397), - [aux_sym_unquoted_token1] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1275] = { [sym_comment] = STATE(1275), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(2935), - [anon_sym_bit_DASHor] = ACTIONS(2937), - [anon_sym_and] = ACTIONS(2939), - [anon_sym_xor] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(2930), + [anon_sym_bit_DASHor] = ACTIONS(2932), + [anon_sym_and] = ACTIONS(2934), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1276] = { [sym_comment] = STATE(1276), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_err_GT] = ACTIONS(1389), - [anon_sym_out_GT] = ACTIONS(1389), - [anon_sym_e_GT] = ACTIONS(1389), - [anon_sym_o_GT] = ACTIONS(1389), - [anon_sym_err_PLUSout_GT] = ACTIONS(1389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1389), - [anon_sym_o_PLUSe_GT] = ACTIONS(1389), - [anon_sym_e_PLUSo_GT] = ACTIONS(1389), - [aux_sym_unquoted_token1] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1277] = { [sym_comment] = STATE(1277), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_err_GT] = ACTIONS(1385), - [anon_sym_out_GT] = ACTIONS(1385), - [anon_sym_e_GT] = ACTIONS(1385), - [anon_sym_o_GT] = ACTIONS(1385), - [anon_sym_err_PLUSout_GT] = ACTIONS(1385), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1385), - [anon_sym_o_PLUSe_GT] = ACTIONS(1385), - [anon_sym_e_PLUSo_GT] = ACTIONS(1385), - [aux_sym_unquoted_token1] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(2930), + [anon_sym_bit_DASHor] = ACTIONS(2932), + [anon_sym_and] = ACTIONS(2934), + [anon_sym_xor] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1278] = { [sym_comment] = STATE(1278), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1282), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1282), - [anon_sym_out_GT] = ACTIONS(1282), - [anon_sym_e_GT] = ACTIONS(1282), - [anon_sym_o_GT] = ACTIONS(1282), - [anon_sym_err_PLUSout_GT] = ACTIONS(1282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), - [anon_sym_o_PLUSe_GT] = ACTIONS(1282), - [anon_sym_e_PLUSo_GT] = ACTIONS(1282), - [aux_sym_unquoted_token1] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1279] = { [sym_comment] = STATE(1279), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_STAR_STAR] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_bit_DASHshl] = ACTIONS(2922), + [anon_sym_bit_DASHshr] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT2] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_not_DASHin] = ACTIONS(2924), + [anon_sym_starts_DASHwith] = ACTIONS(2924), + [anon_sym_ends_DASHwith] = ACTIONS(2924), + [anon_sym_EQ_TILDE] = ACTIONS(2926), + [anon_sym_BANG_TILDE] = ACTIONS(2926), + [anon_sym_bit_DASHand] = ACTIONS(2928), + [anon_sym_bit_DASHxor] = ACTIONS(2930), + [anon_sym_bit_DASHor] = ACTIONS(2932), + [anon_sym_and] = ACTIONS(2934), + [anon_sym_xor] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1280] = { [sym_comment] = STATE(1280), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(2935), - [anon_sym_bit_DASHor] = ACTIONS(2937), - [anon_sym_and] = ACTIONS(2939), - [anon_sym_xor] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1281] = { [sym_comment] = STATE(1281), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym_unquoted_token1] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1282] = { [sym_comment] = STATE(1282), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(2935), - [anon_sym_bit_DASHor] = ACTIONS(2937), - [anon_sym_and] = ACTIONS(2939), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_err_GT] = ACTIONS(1368), + [anon_sym_out_GT] = ACTIONS(1368), + [anon_sym_e_GT] = ACTIONS(1368), + [anon_sym_o_GT] = ACTIONS(1368), + [anon_sym_err_PLUSout_GT] = ACTIONS(1368), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), + [anon_sym_o_PLUSe_GT] = ACTIONS(1368), + [anon_sym_e_PLUSo_GT] = ACTIONS(1368), + [aux_sym_unquoted_token1] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [1283] = { + [sym_cell_path] = STATE(1621), + [sym_path] = STATE(1288), [sym_comment] = STATE(1283), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, [1284] = { [sym_comment] = STATE(1284), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_err_GT] = ACTIONS(1319), + [anon_sym_out_GT] = ACTIONS(1319), + [anon_sym_e_GT] = ACTIONS(1319), + [anon_sym_o_GT] = ACTIONS(1319), + [anon_sym_err_PLUSout_GT] = ACTIONS(1319), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1319), + [anon_sym_o_PLUSe_GT] = ACTIONS(1319), + [anon_sym_e_PLUSo_GT] = ACTIONS(1319), + [aux_sym_unquoted_token1] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [1285] = { [sym_comment] = STATE(1285), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(2935), - [anon_sym_bit_DASHor] = ACTIONS(2937), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2944), + [aux_sym_unquoted_token6] = ACTIONS(2946), [anon_sym_POUND] = ACTIONS(105), }, [1286] = { - [sym_path] = STATE(1471), + [sym_cell_path] = STATE(1560), + [sym_path] = STATE(1288), [sym_comment] = STATE(1286), - [aux_sym_cell_path_repeat1] = STATE(1259), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1287] = { + [sym_comment] = STATE(1287), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), + }, + [1288] = { + [sym_path] = STATE(1521), + [sym_comment] = STATE(1288), + [aux_sym_cell_path_repeat1] = STATE(1300), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -197889,7 +198058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2915), + [anon_sym_DOT2] = ACTIONS(2909), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -197924,694 +198093,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1287] = { - [sym_path] = STATE(1471), - [sym_comment] = STATE(1287), - [aux_sym_cell_path_repeat1] = STATE(1319), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [1288] = { - [sym_comment] = STATE(1288), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, [1289] = { - [sym_cell_path] = STATE(1500), - [sym_path] = STATE(1328), [sym_comment] = STATE(1289), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(2952), [anon_sym_POUND] = ACTIONS(105), }, [1290] = { + [sym_path] = STATE(1521), [sym_comment] = STATE(1290), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(2935), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [aux_sym_cell_path_repeat1] = STATE(1290), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, [1291] = { [sym_comment] = STATE(1291), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_err_GT] = ACTIONS(1341), + [anon_sym_out_GT] = ACTIONS(1341), + [anon_sym_e_GT] = ACTIONS(1341), + [anon_sym_o_GT] = ACTIONS(1341), + [anon_sym_err_PLUSout_GT] = ACTIONS(1341), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1341), + [anon_sym_o_PLUSe_GT] = ACTIONS(1341), + [anon_sym_e_PLUSo_GT] = ACTIONS(1341), + [aux_sym_unquoted_token1] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [1292] = { + [sym_cell_path] = STATE(1701), + [sym_path] = STATE(1288), [sym_comment] = STATE(1292), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(2933), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [1293] = { [sym_comment] = STATE(1293), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_err_GT] = ACTIONS(1307), + [anon_sym_out_GT] = ACTIONS(1307), + [anon_sym_e_GT] = ACTIONS(1307), + [anon_sym_o_GT] = ACTIONS(1307), + [anon_sym_err_PLUSout_GT] = ACTIONS(1307), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1307), + [anon_sym_o_PLUSe_GT] = ACTIONS(1307), + [anon_sym_e_PLUSo_GT] = ACTIONS(1307), + [aux_sym_unquoted_token1] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(105), }, [1294] = { [sym_comment] = STATE(1294), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(2931), - [anon_sym_BANG_TILDE] = ACTIONS(2931), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(2961), + [aux_sym__immediate_decimal_token2] = ACTIONS(2963), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1295] = { + [sym_cell_path] = STATE(1493), + [sym_path] = STATE(1319), [sym_comment] = STATE(1295), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1296] = { - [sym_ctrl_do] = STATE(8780), - [sym_ctrl_if] = STATE(8780), - [sym_ctrl_match] = STATE(8780), - [sym_ctrl_try] = STATE(8780), - [sym__expression] = STATE(8780), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), + [sym_ctrl_do] = STATE(8696), + [sym_ctrl_if] = STATE(8696), + [sym_ctrl_match] = STATE(8696), + [sym_ctrl_try] = STATE(8696), + [sym__expression] = STATE(8696), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), [sym_comment] = STATE(1296), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2968), [anon_sym_DOLLAR] = ACTIONS(1743), [anon_sym_DASH] = ACTIONS(383), [anon_sym_do] = ACTIONS(395), [anon_sym_if] = ACTIONS(397), [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2978), [anon_sym_try] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2980), [anon_sym_not] = ACTIONS(183), [anon_sym_null] = ACTIONS(185), [anon_sym_true] = ACTIONS(187), @@ -198626,2219 +198653,1580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(195), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2968), - [sym__str_single_quotes] = ACTIONS(2970), - [sym__str_back_ticks] = ACTIONS(2970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [sym_val_date] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2986), + [sym__str_back_ticks] = ACTIONS(2986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), [anon_sym_POUND] = ACTIONS(105), }, [1297] = { [sym_comment] = STATE(1297), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_err_GT] = ACTIONS(1221), + [anon_sym_out_GT] = ACTIONS(1221), + [anon_sym_e_GT] = ACTIONS(1221), + [anon_sym_o_GT] = ACTIONS(1221), + [anon_sym_err_PLUSout_GT] = ACTIONS(1221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1221), + [anon_sym_o_PLUSe_GT] = ACTIONS(1221), + [anon_sym_e_PLUSo_GT] = ACTIONS(1221), + [aux_sym_unquoted_token1] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1298] = { [sym_comment] = STATE(1298), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [aux_sym_unquoted_token1] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [1299] = { + [sym_path] = STATE(1521), [sym_comment] = STATE(1299), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [aux_sym_cell_path_repeat1] = STATE(1290), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1300] = { - [sym_ctrl_do] = STATE(8780), - [sym_ctrl_if] = STATE(8780), - [sym_ctrl_match] = STATE(8780), - [sym_ctrl_try] = STATE(8780), - [sym__expression] = STATE(8780), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), + [sym_path] = STATE(1521), [sym_comment] = STATE(1300), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(193), - [aux_sym__val_number_token2] = ACTIONS(193), - [aux_sym__val_number_token3] = ACTIONS(193), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(193), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2968), - [sym__str_single_quotes] = ACTIONS(2970), - [sym__str_back_ticks] = ACTIONS(2970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [aux_sym_cell_path_repeat1] = STATE(1290), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1301] = { [sym_comment] = STATE(1301), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [aux_sym_unquoted_token1] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, [1302] = { + [sym_cell_path] = STATE(1555), + [sym_path] = STATE(1288), [sym_comment] = STATE(1302), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(105), }, [1303] = { [sym_comment] = STATE(1303), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_err_GT] = ACTIONS(1082), + [anon_sym_out_GT] = ACTIONS(1082), + [anon_sym_e_GT] = ACTIONS(1082), + [anon_sym_o_GT] = ACTIONS(1082), + [anon_sym_err_PLUSout_GT] = ACTIONS(1082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1082), + [anon_sym_o_PLUSe_GT] = ACTIONS(1082), + [anon_sym_e_PLUSo_GT] = ACTIONS(1082), + [aux_sym_unquoted_token1] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [1304] = { [sym_comment] = STATE(1304), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2927), - [anon_sym_starts_DASHwith] = ACTIONS(2927), - [anon_sym_ends_DASHwith] = ACTIONS(2927), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [1305] = { + [sym_ctrl_do] = STATE(8696), + [sym_ctrl_if] = STATE(8696), + [sym_ctrl_match] = STATE(8696), + [sym_ctrl_try] = STATE(8696), + [sym__expression] = STATE(8696), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), [sym_comment] = STATE(1305), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_COLON] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(193), + [aux_sym__val_number_token2] = ACTIONS(193), + [aux_sym__val_number_token3] = ACTIONS(193), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(193), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2986), + [sym__str_back_ticks] = ACTIONS(2986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), [anon_sym_POUND] = ACTIONS(105), }, [1306] = { [sym_comment] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_export] = ACTIONS(807), - [anon_sym_alias] = ACTIONS(807), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(807), - [anon_sym_const] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(807), - [sym_cmd_identifier] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_def] = ACTIONS(807), - [anon_sym_export_DASHenv] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(807), - [anon_sym_module] = ACTIONS(807), - [anon_sym_use] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_error] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(807), - [anon_sym_for] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(807), - [anon_sym_while] = ACTIONS(807), - [anon_sym_do] = ACTIONS(807), - [anon_sym_if] = ACTIONS(807), - [anon_sym_match] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_try] = ACTIONS(807), - [anon_sym_return] = ACTIONS(807), - [anon_sym_source] = ACTIONS(807), - [anon_sym_source_DASHenv] = ACTIONS(807), - [anon_sym_register] = ACTIONS(807), - [anon_sym_hide] = ACTIONS(807), - [anon_sym_hide_DASHenv] = ACTIONS(807), - [anon_sym_overlay] = ACTIONS(807), - [anon_sym_as] = ACTIONS(807), - [anon_sym_where] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_bit_DASHshl] = ACTIONS(1282), + [anon_sym_bit_DASHshr] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT2] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_not_DASHin] = ACTIONS(1282), + [anon_sym_starts_DASHwith] = ACTIONS(1282), + [anon_sym_ends_DASHwith] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_BANG_TILDE] = ACTIONS(1282), + [anon_sym_bit_DASHand] = ACTIONS(1282), + [anon_sym_bit_DASHxor] = ACTIONS(1282), + [anon_sym_bit_DASHor] = ACTIONS(1282), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_xor] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [anon_sym_err_GT] = ACTIONS(1282), + [anon_sym_out_GT] = ACTIONS(1282), + [anon_sym_e_GT] = ACTIONS(1282), + [anon_sym_o_GT] = ACTIONS(1282), + [anon_sym_err_PLUSout_GT] = ACTIONS(1282), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), + [anon_sym_o_PLUSe_GT] = ACTIONS(1282), + [anon_sym_e_PLUSo_GT] = ACTIONS(1282), + [aux_sym_unquoted_token1] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, [1307] = { [sym_comment] = STATE(1307), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_err_GT] = ACTIONS(1086), + [anon_sym_out_GT] = ACTIONS(1086), + [anon_sym_e_GT] = ACTIONS(1086), + [anon_sym_o_GT] = ACTIONS(1086), + [anon_sym_err_PLUSout_GT] = ACTIONS(1086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1086), + [anon_sym_o_PLUSe_GT] = ACTIONS(1086), + [anon_sym_e_PLUSo_GT] = ACTIONS(1086), + [aux_sym_unquoted_token1] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1308] = { [sym_comment] = STATE(1308), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_err_GT] = ACTIONS(1098), - [anon_sym_out_GT] = ACTIONS(1098), - [anon_sym_e_GT] = ACTIONS(1098), - [anon_sym_o_GT] = ACTIONS(1098), - [anon_sym_err_PLUSout_GT] = ACTIONS(1098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1098), - [anon_sym_o_PLUSe_GT] = ACTIONS(1098), - [anon_sym_e_PLUSo_GT] = ACTIONS(1098), - [aux_sym_unquoted_token1] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(921), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(105), }, [1309] = { [sym_comment] = STATE(1309), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym_unquoted_token1] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_err_GT] = ACTIONS(1221), + [anon_sym_out_GT] = ACTIONS(1221), + [anon_sym_e_GT] = ACTIONS(1221), + [anon_sym_o_GT] = ACTIONS(1221), + [anon_sym_err_PLUSout_GT] = ACTIONS(1221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1221), + [anon_sym_o_PLUSe_GT] = ACTIONS(1221), + [anon_sym_e_PLUSo_GT] = ACTIONS(1221), + [aux_sym_unquoted_token1] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1310] = { - [sym_cell_path] = STATE(1499), - [sym_path] = STATE(1328), + [sym_cell_path] = STATE(1540), + [sym_path] = STATE(1288), [sym_comment] = STATE(1310), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1311] = { [sym_comment] = STATE(1311), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_STAR_STAR] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_bit_DASHshl] = ACTIONS(2929), - [anon_sym_bit_DASHshr] = ACTIONS(2929), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_err_GT] = ACTIONS(1329), + [anon_sym_out_GT] = ACTIONS(1329), + [anon_sym_e_GT] = ACTIONS(1329), + [anon_sym_o_GT] = ACTIONS(1329), + [anon_sym_err_PLUSout_GT] = ACTIONS(1329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1329), + [anon_sym_o_PLUSe_GT] = ACTIONS(1329), + [anon_sym_e_PLUSo_GT] = ACTIONS(1329), + [aux_sym_unquoted_token1] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [1312] = { + [sym_ctrl_do] = STATE(8696), + [sym_ctrl_if] = STATE(8696), + [sym_ctrl_match] = STATE(8696), + [sym_ctrl_try] = STATE(8696), + [sym__expression] = STATE(8696), + [sym_expr_unary] = STATE(5667), + [sym__expr_unary_minus] = STATE(5669), + [sym_expr_binary] = STATE(5667), + [sym__expr_binary_expression] = STATE(6657), + [sym_expr_parenthesized] = STATE(5292), + [sym_val_range] = STATE(4150), + [sym__value] = STATE(5667), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(5194), + [sym__var] = STATE(4833), + [sym_val_number] = STATE(4976), + [sym__val_number_decimal] = STATE(4458), + [sym__val_number] = STATE(4464), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), [sym_comment] = STATE(1312), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_err_GT] = ACTIONS(1247), - [anon_sym_out_GT] = ACTIONS(1247), - [anon_sym_e_GT] = ACTIONS(1247), - [anon_sym_o_GT] = ACTIONS(1247), - [anon_sym_err_PLUSout_GT] = ACTIONS(1247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), - [anon_sym_o_PLUSe_GT] = ACTIONS(1247), - [anon_sym_e_PLUSo_GT] = ACTIONS(1247), - [aux_sym_unquoted_token1] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_COLON] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_do] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_match] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(183), + [anon_sym_null] = ACTIONS(185), + [anon_sym_true] = ACTIONS(187), + [anon_sym_false] = ACTIONS(187), + [aux_sym__val_number_decimal_token1] = ACTIONS(189), + [aux_sym__val_number_token1] = ACTIONS(193), + [aux_sym__val_number_token2] = ACTIONS(193), + [aux_sym__val_number_token3] = ACTIONS(193), + [aux_sym__val_number_token4] = ACTIONS(193), + [aux_sym__val_number_token5] = ACTIONS(193), + [aux_sym__val_number_token6] = ACTIONS(193), + [anon_sym_0b] = ACTIONS(195), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2984), + [sym__str_single_quotes] = ACTIONS(2986), + [sym__str_back_ticks] = ACTIONS(2986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), [anon_sym_POUND] = ACTIONS(105), }, [1313] = { [sym_comment] = STATE(1313), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_err_GT] = ACTIONS(1401), - [anon_sym_out_GT] = ACTIONS(1401), - [anon_sym_e_GT] = ACTIONS(1401), - [anon_sym_o_GT] = ACTIONS(1401), - [anon_sym_err_PLUSout_GT] = ACTIONS(1401), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1401), - [anon_sym_o_PLUSe_GT] = ACTIONS(1401), - [anon_sym_e_PLUSo_GT] = ACTIONS(1401), - [aux_sym_unquoted_token1] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_export] = ACTIONS(815), + [anon_sym_alias] = ACTIONS(815), + [anon_sym_let] = ACTIONS(815), + [anon_sym_let_DASHenv] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [sym_cmd_identifier] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_def] = ACTIONS(815), + [anon_sym_export_DASHenv] = ACTIONS(815), + [anon_sym_extern] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_use] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_error] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_match] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_try] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_source] = ACTIONS(815), + [anon_sym_source_DASHenv] = ACTIONS(815), + [anon_sym_register] = ACTIONS(815), + [anon_sym_hide] = ACTIONS(815), + [anon_sym_hide_DASHenv] = ACTIONS(815), + [anon_sym_overlay] = ACTIONS(815), + [anon_sym_as] = ACTIONS(815), + [anon_sym_where] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1314] = { [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(889), - [sym_cmd_identifier] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_where] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [ts_builtin_sym_end] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_SLASH_SLASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_bit_DASHshl] = ACTIONS(1185), + [anon_sym_bit_DASHshr] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT2] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_not_DASHin] = ACTIONS(1185), + [anon_sym_starts_DASHwith] = ACTIONS(1185), + [anon_sym_ends_DASHwith] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1185), + [anon_sym_BANG_TILDE] = ACTIONS(1185), + [anon_sym_bit_DASHand] = ACTIONS(1185), + [anon_sym_bit_DASHxor] = ACTIONS(1185), + [anon_sym_bit_DASHor] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1185), + [anon_sym_or] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_err_GT] = ACTIONS(1185), + [anon_sym_out_GT] = ACTIONS(1185), + [anon_sym_e_GT] = ACTIONS(1185), + [anon_sym_o_GT] = ACTIONS(1185), + [anon_sym_err_PLUSout_GT] = ACTIONS(1185), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1185), + [anon_sym_o_PLUSe_GT] = ACTIONS(1185), + [anon_sym_e_PLUSo_GT] = ACTIONS(1185), + [aux_sym_unquoted_token1] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, [1315] = { [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_export] = ACTIONS(844), - [anon_sym_alias] = ACTIONS(844), - [anon_sym_let] = ACTIONS(844), - [anon_sym_let_DASHenv] = ACTIONS(844), - [anon_sym_mut] = ACTIONS(844), - [anon_sym_const] = ACTIONS(844), - [anon_sym_SEMI] = ACTIONS(844), - [sym_cmd_identifier] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_def] = ACTIONS(844), - [anon_sym_export_DASHenv] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_module] = ACTIONS(844), - [anon_sym_use] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_error] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_loop] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_source] = ACTIONS(844), - [anon_sym_source_DASHenv] = ACTIONS(844), - [anon_sym_register] = ACTIONS(844), - [anon_sym_hide] = ACTIONS(844), - [anon_sym_hide_DASHenv] = ACTIONS(844), - [anon_sym_overlay] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_where] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(955), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(2952), [anon_sym_POUND] = ACTIONS(105), }, [1316] = { [sym_comment] = STATE(1316), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_err_GT] = ACTIONS(1393), - [anon_sym_out_GT] = ACTIONS(1393), - [anon_sym_e_GT] = ACTIONS(1393), - [anon_sym_o_GT] = ACTIONS(1393), - [anon_sym_err_PLUSout_GT] = ACTIONS(1393), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1393), - [anon_sym_o_PLUSe_GT] = ACTIONS(1393), - [anon_sym_e_PLUSo_GT] = ACTIONS(1393), - [aux_sym_unquoted_token1] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_STAR_STAR] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_SLASH_SLASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_bit_DASHshl] = ACTIONS(1209), + [anon_sym_bit_DASHshr] = ACTIONS(1209), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT2] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_not_DASHin] = ACTIONS(1209), + [anon_sym_starts_DASHwith] = ACTIONS(1209), + [anon_sym_ends_DASHwith] = ACTIONS(1209), + [anon_sym_EQ_TILDE] = ACTIONS(1209), + [anon_sym_BANG_TILDE] = ACTIONS(1209), + [anon_sym_bit_DASHand] = ACTIONS(1209), + [anon_sym_bit_DASHxor] = ACTIONS(1209), + [anon_sym_bit_DASHor] = ACTIONS(1209), + [anon_sym_and] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1209), + [anon_sym_or] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_err_GT] = ACTIONS(1209), + [anon_sym_out_GT] = ACTIONS(1209), + [anon_sym_e_GT] = ACTIONS(1209), + [anon_sym_o_GT] = ACTIONS(1209), + [anon_sym_err_PLUSout_GT] = ACTIONS(1209), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1209), + [anon_sym_o_PLUSe_GT] = ACTIONS(1209), + [anon_sym_e_PLUSo_GT] = ACTIONS(1209), + [aux_sym_unquoted_token1] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [1317] = { [sym_comment] = STATE(1317), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym_unquoted_token1] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_err_GT] = ACTIONS(1191), + [anon_sym_out_GT] = ACTIONS(1191), + [anon_sym_e_GT] = ACTIONS(1191), + [anon_sym_o_GT] = ACTIONS(1191), + [anon_sym_err_PLUSout_GT] = ACTIONS(1191), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1191), + [anon_sym_o_PLUSe_GT] = ACTIONS(1191), + [anon_sym_e_PLUSo_GT] = ACTIONS(1191), + [aux_sym_unquoted_token1] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(2994), [anon_sym_POUND] = ACTIONS(105), }, [1318] = { [sym_comment] = STATE(1318), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(2979), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym_unquoted_token1] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1319] = { - [sym_path] = STATE(1471), + [sym_path] = STATE(1521), [sym_comment] = STATE(1319), - [aux_sym_cell_path_repeat1] = STATE(1319), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(105), - }, - [1320] = { - [sym_comment] = STATE(1320), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(882), - [anon_sym_POUND] = ACTIONS(105), - }, - [1321] = { - [sym_comment] = STATE(1321), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_err_GT] = ACTIONS(1252), - [anon_sym_out_GT] = ACTIONS(1252), - [anon_sym_e_GT] = ACTIONS(1252), - [anon_sym_o_GT] = ACTIONS(1252), - [anon_sym_err_PLUSout_GT] = ACTIONS(1252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1252), - [anon_sym_o_PLUSe_GT] = ACTIONS(1252), - [anon_sym_e_PLUSo_GT] = ACTIONS(1252), - [aux_sym_unquoted_token1] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1322] = { - [sym_cell_path] = STATE(1624), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1322), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [1323] = { - [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(986), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(105), - }, - [1324] = { - [sym_comment] = STATE(1324), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_err_GT] = ACTIONS(1405), - [anon_sym_out_GT] = ACTIONS(1405), - [anon_sym_e_GT] = ACTIONS(1405), - [anon_sym_o_GT] = ACTIONS(1405), - [anon_sym_err_PLUSout_GT] = ACTIONS(1405), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1405), - [anon_sym_o_PLUSe_GT] = ACTIONS(1405), - [anon_sym_e_PLUSo_GT] = ACTIONS(1405), - [aux_sym_unquoted_token1] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(105), - }, - [1325] = { - [sym_comment] = STATE(1325), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_err_GT] = ACTIONS(1259), - [anon_sym_out_GT] = ACTIONS(1259), - [anon_sym_e_GT] = ACTIONS(1259), - [anon_sym_o_GT] = ACTIONS(1259), - [anon_sym_err_PLUSout_GT] = ACTIONS(1259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), - [anon_sym_o_PLUSe_GT] = ACTIONS(1259), - [anon_sym_e_PLUSo_GT] = ACTIONS(1259), - [aux_sym_unquoted_token1] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [1326] = { - [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_err_GT] = ACTIONS(1252), - [anon_sym_out_GT] = ACTIONS(1252), - [anon_sym_e_GT] = ACTIONS(1252), - [anon_sym_o_GT] = ACTIONS(1252), - [anon_sym_err_PLUSout_GT] = ACTIONS(1252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1252), - [anon_sym_o_PLUSe_GT] = ACTIONS(1252), - [anon_sym_e_PLUSo_GT] = ACTIONS(1252), - [aux_sym_unquoted_token1] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1327] = { - [sym_comment] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_err_GT] = ACTIONS(1193), - [anon_sym_out_GT] = ACTIONS(1193), - [anon_sym_e_GT] = ACTIONS(1193), - [anon_sym_o_GT] = ACTIONS(1193), - [anon_sym_err_PLUSout_GT] = ACTIONS(1193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1193), - [anon_sym_o_PLUSe_GT] = ACTIONS(1193), - [anon_sym_e_PLUSo_GT] = ACTIONS(1193), - [aux_sym_unquoted_token1] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(105), - }, - [1328] = { - [sym_path] = STATE(1471), - [sym_comment] = STATE(1328), - [aux_sym_cell_path_repeat1] = STATE(1287), + [aux_sym_cell_path_repeat1] = STATE(1299), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -200871,7 +200259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(2915), + [anon_sym_DOT2] = ACTIONS(2909), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -200906,410 +200294,1112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1329] = { - [sym_cell_path] = STATE(1622), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1329), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), + [1320] = { + [sym_comment] = STATE(1320), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_err_GT] = ACTIONS(1421), + [anon_sym_out_GT] = ACTIONS(1421), + [anon_sym_e_GT] = ACTIONS(1421), + [anon_sym_o_GT] = ACTIONS(1421), + [anon_sym_err_PLUSout_GT] = ACTIONS(1421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1421), + [anon_sym_o_PLUSe_GT] = ACTIONS(1421), + [anon_sym_e_PLUSo_GT] = ACTIONS(1421), + [aux_sym_unquoted_token1] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, - [1330] = { - [sym_comment] = STATE(1330), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(2990), - [aux_sym__immediate_decimal_token2] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [1321] = { + [sym_comment] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT2] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym_unquoted_token1] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, - [1331] = { - [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), + [1322] = { + [sym_comment] = STATE(1322), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_err_GT] = ACTIONS(1333), + [anon_sym_out_GT] = ACTIONS(1333), + [anon_sym_e_GT] = ACTIONS(1333), + [anon_sym_o_GT] = ACTIONS(1333), + [anon_sym_err_PLUSout_GT] = ACTIONS(1333), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1333), + [anon_sym_o_PLUSe_GT] = ACTIONS(1333), + [anon_sym_e_PLUSo_GT] = ACTIONS(1333), + [aux_sym_unquoted_token1] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, - [1332] = { - [sym_comment] = STATE(1332), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(3000), - [aux_sym__immediate_decimal_token2] = ACTIONS(3002), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1323] = { + [sym_comment] = STATE(1323), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_err_GT] = ACTIONS(1349), + [anon_sym_out_GT] = ACTIONS(1349), + [anon_sym_e_GT] = ACTIONS(1349), + [anon_sym_o_GT] = ACTIONS(1349), + [anon_sym_err_PLUSout_GT] = ACTIONS(1349), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1349), + [anon_sym_o_PLUSe_GT] = ACTIONS(1349), + [anon_sym_e_PLUSo_GT] = ACTIONS(1349), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, - [1333] = { - [sym_cell_path] = STATE(1560), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1333), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [1324] = { + [sym_comment] = STATE(1324), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_err_GT] = ACTIONS(1357), + [anon_sym_out_GT] = ACTIONS(1357), + [anon_sym_e_GT] = ACTIONS(1357), + [anon_sym_o_GT] = ACTIONS(1357), + [anon_sym_err_PLUSout_GT] = ACTIONS(1357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1357), + [anon_sym_o_PLUSe_GT] = ACTIONS(1357), + [anon_sym_e_PLUSo_GT] = ACTIONS(1357), + [aux_sym_unquoted_token1] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, - [1334] = { - [sym_cell_path] = STATE(1638), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1334), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), + [1325] = { + [sym_comment] = STATE(1325), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_err_GT] = ACTIONS(1266), + [anon_sym_out_GT] = ACTIONS(1266), + [anon_sym_e_GT] = ACTIONS(1266), + [anon_sym_o_GT] = ACTIONS(1266), + [anon_sym_err_PLUSout_GT] = ACTIONS(1266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1266), + [anon_sym_o_PLUSe_GT] = ACTIONS(1266), + [anon_sym_e_PLUSo_GT] = ACTIONS(1266), + [aux_sym_unquoted_token1] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [1326] = { + [sym_comment] = STATE(1326), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_STAR_STAR] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_bit_DASHshl] = ACTIONS(1213), + [anon_sym_bit_DASHshr] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT2] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_not_DASHin] = ACTIONS(1213), + [anon_sym_starts_DASHwith] = ACTIONS(1213), + [anon_sym_ends_DASHwith] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1213), + [anon_sym_BANG_TILDE] = ACTIONS(1213), + [anon_sym_bit_DASHand] = ACTIONS(1213), + [anon_sym_bit_DASHxor] = ACTIONS(1213), + [anon_sym_bit_DASHor] = ACTIONS(1213), + [anon_sym_and] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_err_GT] = ACTIONS(1213), + [anon_sym_out_GT] = ACTIONS(1213), + [anon_sym_e_GT] = ACTIONS(1213), + [anon_sym_o_GT] = ACTIONS(1213), + [anon_sym_err_PLUSout_GT] = ACTIONS(1213), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1213), + [anon_sym_o_PLUSe_GT] = ACTIONS(1213), + [anon_sym_e_PLUSo_GT] = ACTIONS(1213), + [aux_sym_unquoted_token1] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(105), + }, + [1327] = { + [sym_comment] = STATE(1327), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_export] = ACTIONS(807), + [anon_sym_alias] = ACTIONS(807), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(807), + [anon_sym_const] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [sym_cmd_identifier] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_def] = ACTIONS(807), + [anon_sym_export_DASHenv] = ACTIONS(807), + [anon_sym_extern] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_use] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_error] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_loop] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_try] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_source] = ACTIONS(807), + [anon_sym_source_DASHenv] = ACTIONS(807), + [anon_sym_register] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_hide_DASHenv] = ACTIONS(807), + [anon_sym_overlay] = ACTIONS(807), + [anon_sym_as] = ACTIONS(807), + [anon_sym_where] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), + }, + [1328] = { + [sym_cell_path] = STATE(1602), + [sym_path] = STATE(1288), + [sym_comment] = STATE(1328), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [1329] = { + [sym_comment] = STATE(1329), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_export] = ACTIONS(855), + [anon_sym_alias] = ACTIONS(855), + [anon_sym_let] = ACTIONS(855), + [anon_sym_let_DASHenv] = ACTIONS(855), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [sym_cmd_identifier] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_def] = ACTIONS(855), + [anon_sym_export_DASHenv] = ACTIONS(855), + [anon_sym_extern] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_use] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_error] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_loop] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_try] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_source] = ACTIONS(855), + [anon_sym_source_DASHenv] = ACTIONS(855), + [anon_sym_register] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_hide_DASHenv] = ACTIONS(855), + [anon_sym_overlay] = ACTIONS(855), + [anon_sym_as] = ACTIONS(855), + [anon_sym_where] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(105), + }, + [1330] = { + [sym_comment] = STATE(1330), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_err_GT] = ACTIONS(1337), + [anon_sym_out_GT] = ACTIONS(1337), + [anon_sym_e_GT] = ACTIONS(1337), + [anon_sym_o_GT] = ACTIONS(1337), + [anon_sym_err_PLUSout_GT] = ACTIONS(1337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), + [anon_sym_o_PLUSe_GT] = ACTIONS(1337), + [anon_sym_e_PLUSo_GT] = ACTIONS(1337), + [aux_sym_unquoted_token1] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(105), + }, + [1331] = { + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_export] = ACTIONS(894), + [anon_sym_alias] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_let_DASHenv] = ACTIONS(894), + [anon_sym_mut] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [sym_cmd_identifier] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_def] = ACTIONS(894), + [anon_sym_export_DASHenv] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_try] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_source] = ACTIONS(894), + [anon_sym_source_DASHenv] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(894), + [anon_sym_overlay] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(105), + }, + [1332] = { + [sym_comment] = STATE(1332), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym_unquoted_token1] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(105), + }, + [1333] = { + [sym_cell_path] = STATE(1644), + [sym_path] = STATE(1288), + [sym_comment] = STATE(1333), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [1334] = { + [sym_comment] = STATE(1334), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_err_GT] = ACTIONS(1374), + [anon_sym_out_GT] = ACTIONS(1374), + [anon_sym_e_GT] = ACTIONS(1374), + [anon_sym_o_GT] = ACTIONS(1374), + [anon_sym_err_PLUSout_GT] = ACTIONS(1374), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1374), + [anon_sym_o_PLUSe_GT] = ACTIONS(1374), + [anon_sym_e_PLUSo_GT] = ACTIONS(1374), + [aux_sym_unquoted_token1] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(105), + }, + [1335] = { + [sym_comment] = STATE(1335), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), [anon_sym_DASH_DASH] = ACTIONS(909), [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), [anon_sym_LBRACE] = ACTIONS(909), [anon_sym_RBRACE] = ACTIONS(909), [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), [anon_sym_null] = ACTIONS(909), [anon_sym_true] = ACTIONS(909), [anon_sym_false] = ACTIONS(909), @@ -201329,929 +201419,1075 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(909), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(105), - }, - [1335] = { - [sym_cell_path] = STATE(1681), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1335), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), + [anon_sym_err_GT] = ACTIONS(909), + [anon_sym_out_GT] = ACTIONS(909), + [anon_sym_e_GT] = ACTIONS(909), + [anon_sym_o_GT] = ACTIONS(909), + [anon_sym_err_PLUSout_GT] = ACTIONS(909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(909), + [anon_sym_o_PLUSe_GT] = ACTIONS(909), + [anon_sym_e_PLUSo_GT] = ACTIONS(909), + [aux_sym_unquoted_token1] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [1336] = { - [sym_ctrl_do] = STATE(8780), - [sym_ctrl_if] = STATE(8780), - [sym_ctrl_match] = STATE(8780), - [sym_ctrl_try] = STATE(8780), - [sym__expression] = STATE(8780), - [sym_expr_unary] = STATE(5676), - [sym__expr_unary_minus] = STATE(5678), - [sym_expr_binary] = STATE(5676), - [sym__expr_binary_expression] = STATE(6863), - [sym_expr_parenthesized] = STATE(5136), - [sym_val_range] = STATE(4147), - [sym__value] = STATE(5676), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(5143), - [sym__var] = STATE(4799), - [sym_val_number] = STATE(5033), - [sym__val_number_decimal] = STATE(4460), - [sym__val_number] = STATE(4536), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), [sym_comment] = STATE(1336), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_RPAREN] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_not] = ACTIONS(183), - [anon_sym_null] = ACTIONS(185), - [anon_sym_true] = ACTIONS(187), - [anon_sym_false] = ACTIONS(187), - [aux_sym__val_number_decimal_token1] = ACTIONS(189), - [aux_sym__val_number_token1] = ACTIONS(193), - [aux_sym__val_number_token2] = ACTIONS(193), - [aux_sym__val_number_token3] = ACTIONS(193), - [aux_sym__val_number_token4] = ACTIONS(193), - [aux_sym__val_number_token5] = ACTIONS(193), - [aux_sym__val_number_token6] = ACTIONS(193), - [anon_sym_0b] = ACTIONS(195), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2968), - [sym__str_single_quotes] = ACTIONS(2970), - [sym__str_back_ticks] = ACTIONS(2970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_err_GT] = ACTIONS(1266), + [anon_sym_out_GT] = ACTIONS(1266), + [anon_sym_e_GT] = ACTIONS(1266), + [anon_sym_o_GT] = ACTIONS(1266), + [anon_sym_err_PLUSout_GT] = ACTIONS(1266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1266), + [anon_sym_o_PLUSe_GT] = ACTIONS(1266), + [anon_sym_e_PLUSo_GT] = ACTIONS(1266), + [aux_sym_unquoted_token1] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [1337] = { - [sym_cell_path] = STATE(1680), - [sym_path] = STATE(1286), [sym_comment] = STATE(1337), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_err_GT] = ACTIONS(949), + [anon_sym_out_GT] = ACTIONS(949), + [anon_sym_e_GT] = ACTIONS(949), + [anon_sym_o_GT] = ACTIONS(949), + [anon_sym_err_PLUSout_GT] = ACTIONS(949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(949), + [anon_sym_o_PLUSe_GT] = ACTIONS(949), + [anon_sym_e_PLUSo_GT] = ACTIONS(949), + [aux_sym_unquoted_token1] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [1338] = { [sym_comment] = STATE(1338), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2835), - [aux_sym_unquoted_token6] = ACTIONS(2837), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(2996), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2827), + [aux_sym_unquoted_token6] = ACTIONS(2829), [anon_sym_POUND] = ACTIONS(105), }, [1339] = { [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_DOT2] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym_unquoted_token1] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(3002), + [aux_sym__immediate_decimal_token2] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1340] = { + [sym_cell_path] = STATE(1769), + [sym_path] = STATE(1379), [sym_comment] = STATE(1340), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(3006), - [aux_sym__immediate_decimal_token2] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(919), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_not] = ACTIONS(917), + [anon_sym_null] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym__val_number_decimal_token1] = ACTIONS(917), + [aux_sym__val_number_token1] = ACTIONS(917), + [aux_sym__val_number_token2] = ACTIONS(917), + [aux_sym__val_number_token3] = ACTIONS(917), + [aux_sym__val_number_token4] = ACTIONS(917), + [aux_sym__val_number_token5] = ACTIONS(917), + [aux_sym__val_number_token6] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(105), }, [1341] = { - [sym_expr_parenthesized] = STATE(8633), - [sym_val_range] = STATE(9484), - [sym__value] = STATE(9484), - [sym_val_nothing] = STATE(9719), - [sym_val_bool] = STATE(9719), - [sym_val_variable] = STATE(8749), - [sym__var] = STATE(8116), - [sym_val_number] = STATE(8398), - [sym__val_number_decimal] = STATE(8453), - [sym__val_number] = STATE(8541), - [sym_val_duration] = STATE(9719), - [sym_val_filesize] = STATE(9719), - [sym_val_binary] = STATE(9719), - [sym_val_string] = STATE(9719), - [sym__str_double_quotes] = STATE(7131), - [sym_val_interpolated] = STATE(9719), - [sym__inter_single_quotes] = STATE(9190), - [sym__inter_double_quotes] = STATE(9235), - [sym_val_list] = STATE(9719), - [sym_val_record] = STATE(9719), - [sym_val_table] = STATE(9719), - [sym_val_closure] = STATE(9719), - [sym__cmd_arg] = STATE(9749), - [sym_redirection] = STATE(9544), - [sym__flag] = STATE(9488), - [sym_short_flag] = STATE(8821), - [sym_long_flag] = STATE(8821), - [sym_long_flag_equals_value] = STATE(9841), - [sym_long_flag_value] = STATE(9739), - [sym_unquoted] = STATE(9490), [sym_comment] = STATE(1341), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [aux_sym__val_number_decimal_token1] = ACTIONS(3030), - [aux_sym__val_number_token1] = ACTIONS(3032), - [aux_sym__val_number_token2] = ACTIONS(3032), - [aux_sym__val_number_token3] = ACTIONS(3032), - [aux_sym__val_number_token4] = ACTIONS(3034), - [aux_sym__val_number_token5] = ACTIONS(3034), - [aux_sym__val_number_token6] = ACTIONS(3034), - [anon_sym_0b] = ACTIONS(3036), - [anon_sym_0o] = ACTIONS(3036), - [anon_sym_0x] = ACTIONS(3036), - [sym_val_date] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [sym__str_single_quotes] = ACTIONS(3042), - [sym__str_back_ticks] = ACTIONS(3042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), - [anon_sym_err_GT] = ACTIONS(3048), - [anon_sym_out_GT] = ACTIONS(3048), - [anon_sym_e_GT] = ACTIONS(3048), - [anon_sym_o_GT] = ACTIONS(3048), - [anon_sym_err_PLUSout_GT] = ACTIONS(3048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3048), - [anon_sym_o_PLUSe_GT] = ACTIONS(3048), - [anon_sym_e_PLUSo_GT] = ACTIONS(3048), - [aux_sym_unquoted_token1] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), }, [1342] = { [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_bit_DASHshl] = ACTIONS(1098), - [anon_sym_bit_DASHshr] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT2] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_not_DASHin] = ACTIONS(1098), - [anon_sym_starts_DASHwith] = ACTIONS(1098), - [anon_sym_ends_DASHwith] = ACTIONS(1098), - [anon_sym_EQ_TILDE] = ACTIONS(1098), - [anon_sym_BANG_TILDE] = ACTIONS(1098), - [anon_sym_bit_DASHand] = ACTIONS(1098), - [anon_sym_bit_DASHxor] = ACTIONS(1098), - [anon_sym_bit_DASHor] = ACTIONS(1098), - [anon_sym_and] = ACTIONS(1098), - [anon_sym_xor] = ACTIONS(1098), - [anon_sym_or] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_err_GT] = ACTIONS(1098), - [anon_sym_out_GT] = ACTIONS(1098), - [anon_sym_e_GT] = ACTIONS(1098), - [anon_sym_o_GT] = ACTIONS(1098), - [anon_sym_err_PLUSout_GT] = ACTIONS(1098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1098), - [anon_sym_o_PLUSe_GT] = ACTIONS(1098), - [anon_sym_e_PLUSo_GT] = ACTIONS(1098), - [aux_sym_unquoted_token1] = ACTIONS(1098), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1343] = { + [sym_cell_path] = STATE(1620), + [sym_path] = STATE(1456), [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_in] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_bit_DASHshl] = ACTIONS(1385), - [anon_sym_bit_DASHshr] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1385), - [anon_sym_BANG_EQ] = ACTIONS(1385), - [anon_sym_LT2] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1385), - [anon_sym_not_DASHin] = ACTIONS(1385), - [anon_sym_starts_DASHwith] = ACTIONS(1385), - [anon_sym_ends_DASHwith] = ACTIONS(1385), - [anon_sym_EQ_TILDE] = ACTIONS(1385), - [anon_sym_BANG_TILDE] = ACTIONS(1385), - [anon_sym_bit_DASHand] = ACTIONS(1385), - [anon_sym_bit_DASHxor] = ACTIONS(1385), - [anon_sym_bit_DASHor] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1385), - [anon_sym_xor] = ACTIONS(1385), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_err_GT] = ACTIONS(1385), - [anon_sym_out_GT] = ACTIONS(1385), - [anon_sym_e_GT] = ACTIONS(1385), - [anon_sym_o_GT] = ACTIONS(1385), - [anon_sym_err_PLUSout_GT] = ACTIONS(1385), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1385), - [anon_sym_o_PLUSe_GT] = ACTIONS(1385), - [anon_sym_e_PLUSo_GT] = ACTIONS(1385), - [aux_sym_unquoted_token1] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1344] = { + [sym_path] = STATE(1554), [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_in] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_STAR_STAR] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_mod] = ACTIONS(1193), - [anon_sym_SLASH_SLASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_bit_DASHshl] = ACTIONS(1193), - [anon_sym_bit_DASHshr] = ACTIONS(1193), - [anon_sym_EQ_EQ] = ACTIONS(1193), - [anon_sym_BANG_EQ] = ACTIONS(1193), - [anon_sym_LT2] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_not_DASHin] = ACTIONS(1193), - [anon_sym_starts_DASHwith] = ACTIONS(1193), - [anon_sym_ends_DASHwith] = ACTIONS(1193), - [anon_sym_EQ_TILDE] = ACTIONS(1193), - [anon_sym_BANG_TILDE] = ACTIONS(1193), - [anon_sym_bit_DASHand] = ACTIONS(1193), - [anon_sym_bit_DASHxor] = ACTIONS(1193), - [anon_sym_bit_DASHor] = ACTIONS(1193), - [anon_sym_and] = ACTIONS(1193), - [anon_sym_xor] = ACTIONS(1193), - [anon_sym_or] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_err_GT] = ACTIONS(1193), - [anon_sym_out_GT] = ACTIONS(1193), - [anon_sym_e_GT] = ACTIONS(1193), - [anon_sym_o_GT] = ACTIONS(1193), - [anon_sym_err_PLUSout_GT] = ACTIONS(1193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1193), - [anon_sym_o_PLUSe_GT] = ACTIONS(1193), - [anon_sym_e_PLUSo_GT] = ACTIONS(1193), - [aux_sym_unquoted_token1] = ACTIONS(1193), + [aux_sym_cell_path_repeat1] = STATE(1354), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1345] = { - [sym_expr_parenthesized] = STATE(10232), - [sym_val_range] = STATE(10710), - [sym__value] = STATE(10710), - [sym_val_nothing] = STATE(5744), - [sym_val_bool] = STATE(5744), - [sym_val_variable] = STATE(6547), - [sym__var] = STATE(9263), - [sym_val_number] = STATE(8868), - [sym__val_number_decimal] = STATE(8748), - [sym__val_number] = STATE(7725), - [sym_val_duration] = STATE(5744), - [sym_val_filesize] = STATE(5744), - [sym_val_binary] = STATE(5744), - [sym_val_string] = STATE(5744), - [sym__str_double_quotes] = STATE(5113), - [sym_val_interpolated] = STATE(5744), - [sym__inter_single_quotes] = STATE(5771), - [sym__inter_double_quotes] = STATE(5770), - [sym_val_list] = STATE(5744), - [sym_val_record] = STATE(5744), - [sym_val_table] = STATE(5744), - [sym_val_closure] = STATE(5744), - [sym__cmd_arg] = STATE(10760), - [sym_redirection] = STATE(10747), - [sym__flag] = STATE(10711), - [sym_short_flag] = STATE(10784), - [sym_long_flag] = STATE(10784), - [sym_long_flag_equals_value] = STATE(10713), - [sym_long_flag_value] = STATE(10764), - [sym_unquoted] = STATE(10714), + [sym_expr_parenthesized] = STATE(9008), + [sym_val_range] = STATE(7925), + [sym__value] = STATE(7925), + [sym_val_nothing] = STATE(6172), + [sym_val_bool] = STATE(6172), + [sym_val_variable] = STATE(5871), + [sym__var] = STATE(8243), + [sym_val_number] = STATE(8340), + [sym__val_number_decimal] = STATE(7941), + [sym__val_number] = STATE(7727), + [sym_val_duration] = STATE(6172), + [sym_val_filesize] = STATE(6172), + [sym_val_binary] = STATE(6172), + [sym_val_string] = STATE(6172), + [sym__str_double_quotes] = STATE(7148), + [sym_val_interpolated] = STATE(6172), + [sym__inter_single_quotes] = STATE(6105), + [sym__inter_double_quotes] = STATE(6126), + [sym_val_list] = STATE(6172), + [sym_val_record] = STATE(6172), + [sym_val_table] = STATE(6172), + [sym_val_closure] = STATE(6172), + [sym__cmd_arg] = STATE(8060), + [sym_redirection] = STATE(7926), + [sym__flag] = STATE(7933), + [sym_short_flag] = STATE(9009), + [sym_long_flag] = STATE(9009), + [sym_long_flag_equals_value] = STATE(8017), + [sym_long_flag_value] = STATE(8061), + [sym_unquoted] = STATE(7935), [sym_comment] = STATE(1345), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [aux_sym__val_number_decimal_token1] = ACTIONS(3072), - [aux_sym__val_number_token1] = ACTIONS(3074), - [aux_sym__val_number_token2] = ACTIONS(3074), - [aux_sym__val_number_token3] = ACTIONS(3074), - [aux_sym__val_number_token4] = ACTIONS(3076), - [aux_sym__val_number_token5] = ACTIONS(3076), - [aux_sym__val_number_token6] = ACTIONS(3076), - [anon_sym_0b] = ACTIONS(3078), - [anon_sym_0o] = ACTIONS(3078), - [anon_sym_0x] = ACTIONS(3078), - [sym_val_date] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3082), - [sym__str_single_quotes] = ACTIONS(3084), - [sym__str_back_ticks] = ACTIONS(3084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_err_GT] = ACTIONS(3090), - [anon_sym_out_GT] = ACTIONS(3090), - [anon_sym_e_GT] = ACTIONS(3090), - [anon_sym_o_GT] = ACTIONS(3090), - [anon_sym_err_PLUSout_GT] = ACTIONS(3090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3090), - [anon_sym_o_PLUSe_GT] = ACTIONS(3090), - [anon_sym_e_PLUSo_GT] = ACTIONS(3090), - [aux_sym_unquoted_token1] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_DOLLAR] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_true] = ACTIONS(3029), + [anon_sym_false] = ACTIONS(3029), + [aux_sym__val_number_decimal_token1] = ACTIONS(3031), + [aux_sym__val_number_token1] = ACTIONS(3033), + [aux_sym__val_number_token2] = ACTIONS(3033), + [aux_sym__val_number_token3] = ACTIONS(3033), + [aux_sym__val_number_token4] = ACTIONS(3035), + [aux_sym__val_number_token5] = ACTIONS(3035), + [aux_sym__val_number_token6] = ACTIONS(3035), + [anon_sym_0b] = ACTIONS(3037), + [anon_sym_0o] = ACTIONS(3037), + [anon_sym_0x] = ACTIONS(3037), + [sym_val_date] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), + [anon_sym_err_GT] = ACTIONS(3049), + [anon_sym_out_GT] = ACTIONS(3049), + [anon_sym_e_GT] = ACTIONS(3049), + [anon_sym_o_GT] = ACTIONS(3049), + [anon_sym_err_PLUSout_GT] = ACTIONS(3049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3049), + [anon_sym_o_PLUSe_GT] = ACTIONS(3049), + [anon_sym_e_PLUSo_GT] = ACTIONS(3049), + [aux_sym_unquoted_token1] = ACTIONS(3051), [anon_sym_POUND] = ACTIONS(3), }, [1346] = { [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_in] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_bit_DASHshl] = ACTIONS(1389), - [anon_sym_bit_DASHshr] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT2] = ACTIONS(1389), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_not_DASHin] = ACTIONS(1389), - [anon_sym_starts_DASHwith] = ACTIONS(1389), - [anon_sym_ends_DASHwith] = ACTIONS(1389), - [anon_sym_EQ_TILDE] = ACTIONS(1389), - [anon_sym_BANG_TILDE] = ACTIONS(1389), - [anon_sym_bit_DASHand] = ACTIONS(1389), - [anon_sym_bit_DASHxor] = ACTIONS(1389), - [anon_sym_bit_DASHor] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_xor] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_err_GT] = ACTIONS(1389), - [anon_sym_out_GT] = ACTIONS(1389), - [anon_sym_e_GT] = ACTIONS(1389), - [anon_sym_o_GT] = ACTIONS(1389), - [anon_sym_err_PLUSout_GT] = ACTIONS(1389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1389), - [anon_sym_o_PLUSe_GT] = ACTIONS(1389), - [anon_sym_e_PLUSo_GT] = ACTIONS(1389), - [aux_sym_unquoted_token1] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_in] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_bit_DASHshl] = ACTIONS(1421), + [anon_sym_bit_DASHshr] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT2] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_not_DASHin] = ACTIONS(1421), + [anon_sym_starts_DASHwith] = ACTIONS(1421), + [anon_sym_ends_DASHwith] = ACTIONS(1421), + [anon_sym_EQ_TILDE] = ACTIONS(1421), + [anon_sym_BANG_TILDE] = ACTIONS(1421), + [anon_sym_bit_DASHand] = ACTIONS(1421), + [anon_sym_bit_DASHxor] = ACTIONS(1421), + [anon_sym_bit_DASHor] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1421), + [anon_sym_xor] = ACTIONS(1421), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_token1] = ACTIONS(1421), + [aux_sym__val_number_token2] = ACTIONS(1421), + [aux_sym__val_number_token3] = ACTIONS(1421), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__str_single_quotes] = ACTIONS(1421), + [sym__str_back_ticks] = ACTIONS(1421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1421), + [anon_sym_err_GT] = ACTIONS(1421), + [anon_sym_out_GT] = ACTIONS(1421), + [anon_sym_e_GT] = ACTIONS(1421), + [anon_sym_o_GT] = ACTIONS(1421), + [anon_sym_err_PLUSout_GT] = ACTIONS(1421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1421), + [anon_sym_o_PLUSe_GT] = ACTIONS(1421), + [anon_sym_e_PLUSo_GT] = ACTIONS(1421), + [aux_sym_unquoted_token1] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(105), }, [1347] = { + [sym_expr_parenthesized] = STATE(5213), + [sym_val_range] = STATE(5507), + [sym__value] = STATE(5507), + [sym_val_nothing] = STATE(5509), + [sym_val_bool] = STATE(5509), + [sym_val_variable] = STATE(5316), + [sym__var] = STATE(4789), + [sym_val_number] = STATE(5118), + [sym__val_number_decimal] = STATE(4628), + [sym__val_number] = STATE(4919), + [sym_val_duration] = STATE(5509), + [sym_val_filesize] = STATE(5509), + [sym_val_binary] = STATE(5509), + [sym_val_string] = STATE(5509), + [sym__str_double_quotes] = STATE(5370), + [sym_val_interpolated] = STATE(5509), + [sym__inter_single_quotes] = STATE(5414), + [sym__inter_double_quotes] = STATE(5415), + [sym_val_list] = STATE(5509), + [sym_val_record] = STATE(5509), + [sym_val_table] = STATE(5509), + [sym_val_closure] = STATE(5509), + [sym__cmd_arg] = STATE(5400), + [sym_redirection] = STATE(5543), + [sym__flag] = STATE(5553), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_long_flag_value] = STATE(5401), + [sym_unquoted] = STATE(5592), [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_in] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_STAR_STAR] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_mod] = ACTIONS(1113), - [anon_sym_SLASH_SLASH] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_bit_DASHshl] = ACTIONS(1113), - [anon_sym_bit_DASHshr] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT2] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_not_DASHin] = ACTIONS(1113), - [anon_sym_starts_DASHwith] = ACTIONS(1113), - [anon_sym_ends_DASHwith] = ACTIONS(1113), - [anon_sym_EQ_TILDE] = ACTIONS(1113), - [anon_sym_BANG_TILDE] = ACTIONS(1113), - [anon_sym_bit_DASHand] = ACTIONS(1113), - [anon_sym_bit_DASHxor] = ACTIONS(1113), - [anon_sym_bit_DASHor] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_xor] = ACTIONS(1113), - [anon_sym_or] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_err_GT] = ACTIONS(1113), - [anon_sym_out_GT] = ACTIONS(1113), - [anon_sym_e_GT] = ACTIONS(1113), - [anon_sym_o_GT] = ACTIONS(1113), - [anon_sym_err_PLUSout_GT] = ACTIONS(1113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1113), - [anon_sym_o_PLUSe_GT] = ACTIONS(1113), - [anon_sym_e_PLUSo_GT] = ACTIONS(1113), - [aux_sym_unquoted_token1] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_DOLLAR] = ACTIONS(3057), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_true] = ACTIONS(3071), + [anon_sym_false] = ACTIONS(3071), + [aux_sym__val_number_decimal_token1] = ACTIONS(3073), + [aux_sym__val_number_token1] = ACTIONS(3075), + [aux_sym__val_number_token2] = ACTIONS(3075), + [aux_sym__val_number_token3] = ACTIONS(3075), + [aux_sym__val_number_token4] = ACTIONS(3077), + [aux_sym__val_number_token5] = ACTIONS(3077), + [aux_sym__val_number_token6] = ACTIONS(3077), + [anon_sym_0b] = ACTIONS(3079), + [anon_sym_0o] = ACTIONS(3079), + [anon_sym_0x] = ACTIONS(3079), + [sym_val_date] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3083), + [sym__str_single_quotes] = ACTIONS(3085), + [sym__str_back_ticks] = ACTIONS(3085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3089), + [anon_sym_err_GT] = ACTIONS(3091), + [anon_sym_out_GT] = ACTIONS(3091), + [anon_sym_e_GT] = ACTIONS(3091), + [anon_sym_o_GT] = ACTIONS(3091), + [anon_sym_err_PLUSout_GT] = ACTIONS(3091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3091), + [anon_sym_o_PLUSe_GT] = ACTIONS(3091), + [anon_sym_e_PLUSo_GT] = ACTIONS(3091), + [aux_sym_unquoted_token1] = ACTIONS(3093), + [anon_sym_POUND] = ACTIONS(3), }, [1348] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1348), - [aux_sym_cell_path_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_bit_DASHshl] = ACTIONS(1303), + [anon_sym_bit_DASHshr] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT2] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_not_DASHin] = ACTIONS(1303), + [anon_sym_starts_DASHwith] = ACTIONS(1303), + [anon_sym_ends_DASHwith] = ACTIONS(1303), + [anon_sym_EQ_TILDE] = ACTIONS(1303), + [anon_sym_BANG_TILDE] = ACTIONS(1303), + [anon_sym_bit_DASHand] = ACTIONS(1303), + [anon_sym_bit_DASHxor] = ACTIONS(1303), + [anon_sym_bit_DASHor] = ACTIONS(1303), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_xor] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_err_GT] = ACTIONS(1303), + [anon_sym_out_GT] = ACTIONS(1303), + [anon_sym_e_GT] = ACTIONS(1303), + [anon_sym_o_GT] = ACTIONS(1303), + [anon_sym_err_PLUSout_GT] = ACTIONS(1303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1303), + [anon_sym_o_PLUSe_GT] = ACTIONS(1303), + [anon_sym_e_PLUSo_GT] = ACTIONS(1303), + [aux_sym_unquoted_token1] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(105), + }, + [1349] = { + [sym_path] = STATE(1554), + [sym_comment] = STATE(1349), + [aux_sym_cell_path_repeat1] = STATE(1354), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [1350] = { + [sym_comment] = STATE(1350), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_in] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_SLASH_SLASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_bit_DASHshl] = ACTIONS(1307), + [anon_sym_bit_DASHshr] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT2] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_not_DASHin] = ACTIONS(1307), + [anon_sym_starts_DASHwith] = ACTIONS(1307), + [anon_sym_ends_DASHwith] = ACTIONS(1307), + [anon_sym_EQ_TILDE] = ACTIONS(1307), + [anon_sym_BANG_TILDE] = ACTIONS(1307), + [anon_sym_bit_DASHand] = ACTIONS(1307), + [anon_sym_bit_DASHxor] = ACTIONS(1307), + [anon_sym_bit_DASHor] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_err_GT] = ACTIONS(1307), + [anon_sym_out_GT] = ACTIONS(1307), + [anon_sym_e_GT] = ACTIONS(1307), + [anon_sym_o_GT] = ACTIONS(1307), + [anon_sym_err_PLUSout_GT] = ACTIONS(1307), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1307), + [anon_sym_o_PLUSe_GT] = ACTIONS(1307), + [anon_sym_e_PLUSo_GT] = ACTIONS(1307), + [aux_sym_unquoted_token1] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(105), + }, + [1351] = { + [sym_path] = STATE(1631), + [sym_comment] = STATE(1351), + [aux_sym_cell_path_repeat1] = STATE(1397), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -202268,9 +202504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(903), [anon_sym_LBRACK] = ACTIONS(903), [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), [anon_sym_DOLLAR] = ACTIONS(903), [anon_sym_error] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_break] = ACTIONS(903), [anon_sym_continue] = ACTIONS(903), @@ -202281,8 +202517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(903), [anon_sym_match] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(3094), + [anon_sym_DOT2] = ACTIONS(3095), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -202291,7 +202528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(903), [anon_sym_hide_DASHenv] = ACTIONS(903), [anon_sym_overlay] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), [anon_sym_where] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_not] = ACTIONS(903), @@ -202317,598 +202554,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1349] = { - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_bit_DASHshl] = ACTIONS(1397), - [anon_sym_bit_DASHshr] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT2] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_not_DASHin] = ACTIONS(1397), - [anon_sym_starts_DASHwith] = ACTIONS(1397), - [anon_sym_ends_DASHwith] = ACTIONS(1397), - [anon_sym_EQ_TILDE] = ACTIONS(1397), - [anon_sym_BANG_TILDE] = ACTIONS(1397), - [anon_sym_bit_DASHand] = ACTIONS(1397), - [anon_sym_bit_DASHxor] = ACTIONS(1397), - [anon_sym_bit_DASHor] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_xor] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_err_GT] = ACTIONS(1397), - [anon_sym_out_GT] = ACTIONS(1397), - [anon_sym_e_GT] = ACTIONS(1397), - [anon_sym_o_GT] = ACTIONS(1397), - [anon_sym_err_PLUSout_GT] = ACTIONS(1397), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1397), - [anon_sym_o_PLUSe_GT] = ACTIONS(1397), - [anon_sym_e_PLUSo_GT] = ACTIONS(1397), - [aux_sym_unquoted_token1] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(105), - }, - [1350] = { - [sym_comment] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_STAR_STAR] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_bit_DASHshl] = ACTIONS(1005), - [anon_sym_bit_DASHshr] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_LT2] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_not_DASHin] = ACTIONS(1005), - [anon_sym_starts_DASHwith] = ACTIONS(1005), - [anon_sym_ends_DASHwith] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_BANG_TILDE] = ACTIONS(1005), - [anon_sym_bit_DASHand] = ACTIONS(1005), - [anon_sym_bit_DASHxor] = ACTIONS(1005), - [anon_sym_bit_DASHor] = ACTIONS(1005), - [anon_sym_and] = ACTIONS(1005), - [anon_sym_xor] = ACTIONS(1005), - [anon_sym_or] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(105), - }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_STAR_STAR] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_SLASH_SLASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_bit_DASHshl] = ACTIONS(1282), - [anon_sym_bit_DASHshr] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT2] = ACTIONS(1282), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_not_DASHin] = ACTIONS(1282), - [anon_sym_starts_DASHwith] = ACTIONS(1282), - [anon_sym_ends_DASHwith] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1282), - [anon_sym_BANG_TILDE] = ACTIONS(1282), - [anon_sym_bit_DASHand] = ACTIONS(1282), - [anon_sym_bit_DASHxor] = ACTIONS(1282), - [anon_sym_bit_DASHor] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_xor] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_err_GT] = ACTIONS(1282), - [anon_sym_out_GT] = ACTIONS(1282), - [anon_sym_e_GT] = ACTIONS(1282), - [anon_sym_o_GT] = ACTIONS(1282), - [anon_sym_err_PLUSout_GT] = ACTIONS(1282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), - [anon_sym_o_PLUSe_GT] = ACTIONS(1282), - [anon_sym_e_PLUSo_GT] = ACTIONS(1282), - [aux_sym_unquoted_token1] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(105), - }, [1352] = { [sym_comment] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(3096), - [aux_sym__immediate_decimal_token2] = ACTIONS(3098), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_bit_DASHshl] = ACTIONS(1054), + [anon_sym_bit_DASHshr] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_not_DASHin] = ACTIONS(1054), + [anon_sym_starts_DASHwith] = ACTIONS(1054), + [anon_sym_ends_DASHwith] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_BANG_TILDE] = ACTIONS(1054), + [anon_sym_bit_DASHand] = ACTIONS(1054), + [anon_sym_bit_DASHxor] = ACTIONS(1054), + [anon_sym_bit_DASHor] = ACTIONS(1054), + [anon_sym_and] = ACTIONS(1054), + [anon_sym_xor] = ACTIONS(1054), + [anon_sym_or] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [1353] = { - [sym_cell_path] = STATE(1777), - [sym_path] = STATE(1383), + [sym_ctrl_do] = STATE(9382), + [sym_ctrl_if] = STATE(9382), + [sym_ctrl_match] = STATE(9382), + [sym_ctrl_try] = STATE(9382), + [sym__expression] = STATE(9382), + [sym_expr_unary] = STATE(5830), + [sym__expr_unary_minus] = STATE(5926), + [sym_expr_binary] = STATE(5830), + [sym__expr_binary_expression] = STATE(6831), + [sym_expr_parenthesized] = STATE(5711), + [sym_val_range] = STATE(4271), + [sym__value] = STATE(5830), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(5772), + [sym__var] = STATE(5003), + [sym_val_number] = STATE(5168), + [sym__val_number_decimal] = STATE(4722), + [sym__val_number] = STATE(4763), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), [sym_comment] = STATE(1353), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_DOT] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(79), + [anon_sym_null] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym__val_number_decimal_token1] = ACTIONS(85), + [aux_sym__val_number_token1] = ACTIONS(89), + [aux_sym__val_number_token2] = ACTIONS(89), + [aux_sym__val_number_token3] = ACTIONS(89), + [aux_sym__val_number_token4] = ACTIONS(89), + [aux_sym__val_number_token5] = ACTIONS(89), + [aux_sym__val_number_token6] = ACTIONS(89), + [anon_sym_0b] = ACTIONS(91), + [anon_sym_0o] = ACTIONS(91), + [anon_sym_0x] = ACTIONS(91), + [sym_val_date] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym__str_single_quotes] = ACTIONS(3111), + [sym__str_back_ticks] = ACTIONS(3111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), [anon_sym_POUND] = ACTIONS(105), }, [1354] = { + [sym_path] = STATE(1554), [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(1081), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(3104), + [aux_sym_cell_path_repeat1] = STATE(1354), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(105), }, [1355] = { + [sym_expr_parenthesized] = STATE(7907), + [sym_val_range] = STATE(8275), + [sym__value] = STATE(8275), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(7857), + [sym__val_number_decimal] = STATE(7519), + [sym__val_number] = STATE(7900), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__cmd_arg] = STATE(8196), + [sym_redirection] = STATE(8296), + [sym__flag] = STATE(8086), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), + [sym_long_flag_value] = STATE(8197), + [sym_unquoted] = STATE(8255), [sym_comment] = STATE(1355), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, - [1356] = { - [sym_expr_parenthesized] = STATE(8633), - [sym_val_range] = STATE(9484), - [sym__value] = STATE(9484), - [sym_val_nothing] = STATE(9719), - [sym_val_bool] = STATE(9719), - [sym_val_variable] = STATE(8749), - [sym__var] = STATE(8116), - [sym_val_number] = STATE(8398), - [sym__val_number_decimal] = STATE(8297), - [sym__val_number] = STATE(8541), - [sym_val_duration] = STATE(9719), - [sym_val_filesize] = STATE(9719), - [sym_val_binary] = STATE(9719), - [sym_val_string] = STATE(9719), - [sym__str_double_quotes] = STATE(7131), - [sym_val_interpolated] = STATE(9719), - [sym__inter_single_quotes] = STATE(9190), - [sym__inter_double_quotes] = STATE(9235), - [sym_val_list] = STATE(9719), - [sym_val_record] = STATE(9719), - [sym_val_table] = STATE(9719), - [sym_val_closure] = STATE(9719), - [sym__cmd_arg] = STATE(9749), - [sym_redirection] = STATE(9544), - [sym__flag] = STATE(9488), - [sym_short_flag] = STATE(8821), - [sym_long_flag] = STATE(8821), - [sym_long_flag_equals_value] = STATE(9841), - [sym_long_flag_value] = STATE(9739), - [sym_unquoted] = STATE(9490), - [sym_comment] = STATE(1356), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_token1] = ACTIONS(3032), - [aux_sym__val_number_token2] = ACTIONS(3032), - [aux_sym__val_number_token3] = ACTIONS(3032), - [aux_sym__val_number_token4] = ACTIONS(3116), - [aux_sym__val_number_token5] = ACTIONS(3116), - [aux_sym__val_number_token6] = ACTIONS(3116), - [anon_sym_0b] = ACTIONS(3036), - [anon_sym_0o] = ACTIONS(3036), - [anon_sym_0x] = ACTIONS(3036), - [sym_val_date] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [sym__str_single_quotes] = ACTIONS(3042), - [sym__str_back_ticks] = ACTIONS(3042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3046), - [anon_sym_err_GT] = ACTIONS(3118), - [anon_sym_out_GT] = ACTIONS(3118), - [anon_sym_e_GT] = ACTIONS(3118), - [anon_sym_o_GT] = ACTIONS(3118), - [anon_sym_err_PLUSout_GT] = ACTIONS(3118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3118), - [anon_sym_o_PLUSe_GT] = ACTIONS(3118), - [anon_sym_e_PLUSo_GT] = ACTIONS(3118), - [aux_sym_unquoted_token1] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3), - }, - [1357] = { - [sym_expr_parenthesized] = STATE(8384), - [sym_val_range] = STATE(7957), - [sym__value] = STATE(7957), - [sym_val_nothing] = STATE(8886), - [sym_val_bool] = STATE(8886), - [sym_val_variable] = STATE(8392), - [sym__var] = STATE(7963), - [sym_val_number] = STATE(8225), - [sym__val_number_decimal] = STATE(7862), - [sym__val_number] = STATE(8157), - [sym_val_duration] = STATE(8886), - [sym_val_filesize] = STATE(8886), - [sym_val_binary] = STATE(8886), - [sym_val_string] = STATE(8886), - [sym__str_double_quotes] = STATE(7146), - [sym_val_interpolated] = STATE(8886), - [sym__inter_single_quotes] = STATE(8673), - [sym__inter_double_quotes] = STATE(8672), - [sym_val_list] = STATE(8886), - [sym_val_record] = STATE(8886), - [sym_val_table] = STATE(8886), - [sym_val_closure] = STATE(8886), - [sym__cmd_arg] = STATE(8064), - [sym_redirection] = STATE(7950), - [sym__flag] = STATE(7948), - [sym_short_flag] = STATE(8985), - [sym_long_flag] = STATE(8985), - [sym_long_flag_equals_value] = STATE(8037), - [sym_long_flag_value] = STATE(8069), - [sym_unquoted] = STATE(7947), - [sym_comment] = STATE(1357), [anon_sym_LBRACK] = ACTIONS(3120), [anon_sym_LPAREN] = ACTIONS(3122), [anon_sym_DOLLAR] = ACTIONS(3124), @@ -202947,1760 +202834,1621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(3160), [anon_sym_POUND] = ACTIONS(3), }, + [1356] = { + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_bit_DASHshl] = ACTIONS(1217), + [anon_sym_bit_DASHshr] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT2] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_not_DASHin] = ACTIONS(1217), + [anon_sym_starts_DASHwith] = ACTIONS(1217), + [anon_sym_ends_DASHwith] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1217), + [anon_sym_BANG_TILDE] = ACTIONS(1217), + [anon_sym_bit_DASHand] = ACTIONS(1217), + [anon_sym_bit_DASHxor] = ACTIONS(1217), + [anon_sym_bit_DASHor] = ACTIONS(1217), + [anon_sym_and] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1217), + [anon_sym_or] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_err_GT] = ACTIONS(1217), + [anon_sym_out_GT] = ACTIONS(1217), + [anon_sym_e_GT] = ACTIONS(1217), + [anon_sym_o_GT] = ACTIONS(1217), + [anon_sym_err_PLUSout_GT] = ACTIONS(1217), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1217), + [anon_sym_o_PLUSe_GT] = ACTIONS(1217), + [anon_sym_e_PLUSo_GT] = ACTIONS(1217), + [aux_sym_unquoted_token1] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), + }, + [1357] = { + [sym_path] = STATE(1631), + [sym_comment] = STATE(1357), + [aux_sym_cell_path_repeat1] = STATE(1357), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(105), + }, [1358] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1358), - [aux_sym_cell_path_repeat1] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1359] = { [sym_comment] = STATE(1359), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(3175), + [sym_duration_unit] = ACTIONS(3177), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [1360] = { - [sym_cell_path] = STATE(1813), - [sym_path] = STATE(1348), [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [ts_builtin_sym_end] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_bit_DASHshl] = ACTIONS(1329), + [anon_sym_bit_DASHshr] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_LT2] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_not_DASHin] = ACTIONS(1329), + [anon_sym_starts_DASHwith] = ACTIONS(1329), + [anon_sym_ends_DASHwith] = ACTIONS(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1329), + [anon_sym_BANG_TILDE] = ACTIONS(1329), + [anon_sym_bit_DASHand] = ACTIONS(1329), + [anon_sym_bit_DASHxor] = ACTIONS(1329), + [anon_sym_bit_DASHor] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_xor] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_err_GT] = ACTIONS(1329), + [anon_sym_out_GT] = ACTIONS(1329), + [anon_sym_e_GT] = ACTIONS(1329), + [anon_sym_o_GT] = ACTIONS(1329), + [anon_sym_err_PLUSout_GT] = ACTIONS(1329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1329), + [anon_sym_o_PLUSe_GT] = ACTIONS(1329), + [anon_sym_e_PLUSo_GT] = ACTIONS(1329), + [aux_sym_unquoted_token1] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [1361] = { - [sym_cell_path] = STATE(1913), - [sym_path] = STATE(1348), + [sym_cell_path] = STATE(1752), + [sym_path] = STATE(1379), [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_export] = ACTIONS(959), + [anon_sym_alias] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_let_DASHenv] = ACTIONS(959), + [anon_sym_mut] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [sym_cmd_identifier] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_def] = ACTIONS(959), + [anon_sym_export_DASHenv] = ACTIONS(959), + [anon_sym_extern] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_error] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_source] = ACTIONS(959), + [anon_sym_source_DASHenv] = ACTIONS(959), + [anon_sym_register] = ACTIONS(959), + [anon_sym_hide] = ACTIONS(959), + [anon_sym_hide_DASHenv] = ACTIONS(959), + [anon_sym_overlay] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_not] = ACTIONS(959), + [anon_sym_null] = ACTIONS(959), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [aux_sym__val_number_decimal_token1] = ACTIONS(959), + [aux_sym__val_number_token1] = ACTIONS(959), + [aux_sym__val_number_token2] = ACTIONS(959), + [aux_sym__val_number_token3] = ACTIONS(959), + [aux_sym__val_number_token4] = ACTIONS(959), + [aux_sym__val_number_token5] = ACTIONS(959), + [aux_sym__val_number_token6] = ACTIONS(959), + [anon_sym_0b] = ACTIONS(959), + [anon_sym_0o] = ACTIONS(959), + [anon_sym_0x] = ACTIONS(959), + [sym_val_date] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__str_single_quotes] = ACTIONS(959), + [sym__str_back_ticks] = ACTIONS(959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), [anon_sym_POUND] = ACTIONS(105), }, [1362] = { - [sym_expr_parenthesized] = STATE(5728), - [sym_val_range] = STATE(5849), - [sym__value] = STATE(5849), - [sym_val_nothing] = STATE(6034), - [sym_val_bool] = STATE(6034), - [sym_val_variable] = STATE(5444), - [sym__var] = STATE(4926), - [sym_val_number] = STATE(5254), - [sym__val_number_decimal] = STATE(4795), - [sym__val_number] = STATE(5253), - [sym_val_duration] = STATE(6034), - [sym_val_filesize] = STATE(6034), - [sym_val_binary] = STATE(6034), - [sym_val_string] = STATE(6034), - [sym__str_double_quotes] = STATE(5829), - [sym_val_interpolated] = STATE(6034), - [sym__inter_single_quotes] = STATE(5825), - [sym__inter_double_quotes] = STATE(5824), - [sym_val_list] = STATE(6034), - [sym_val_record] = STATE(6034), - [sym_val_table] = STATE(6034), - [sym_val_closure] = STATE(6034), - [sym__cmd_arg] = STATE(5892), - [sym_redirection] = STATE(5851), - [sym__flag] = STATE(5853), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), - [sym_long_flag_value] = STATE(5895), - [sym_unquoted] = STATE(5857), [sym_comment] = STATE(1362), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_DOLLAR] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_null] = ACTIONS(3178), - [anon_sym_true] = ACTIONS(3180), - [anon_sym_false] = ACTIONS(3180), - [aux_sym__val_number_decimal_token1] = ACTIONS(3182), - [aux_sym__val_number_token1] = ACTIONS(3184), - [aux_sym__val_number_token2] = ACTIONS(3184), - [aux_sym__val_number_token3] = ACTIONS(3184), - [aux_sym__val_number_token4] = ACTIONS(3186), - [aux_sym__val_number_token5] = ACTIONS(3186), - [aux_sym__val_number_token6] = ACTIONS(3186), - [anon_sym_0b] = ACTIONS(3188), - [anon_sym_0o] = ACTIONS(3188), - [anon_sym_0x] = ACTIONS(3188), - [sym_val_date] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym__str_single_quotes] = ACTIONS(3194), - [sym__str_back_ticks] = ACTIONS(3194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3198), - [anon_sym_err_GT] = ACTIONS(3200), - [anon_sym_out_GT] = ACTIONS(3200), - [anon_sym_e_GT] = ACTIONS(3200), - [anon_sym_o_GT] = ACTIONS(3200), - [anon_sym_err_PLUSout_GT] = ACTIONS(3200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3200), - [anon_sym_o_PLUSe_GT] = ACTIONS(3200), - [anon_sym_e_PLUSo_GT] = ACTIONS(3200), - [aux_sym_unquoted_token1] = ACTIONS(3202), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(105), }, [1363] = { + [sym_expr_parenthesized] = STATE(1485), + [sym_val_range] = STATE(1614), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1688), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1519), + [sym__var] = STATE(1295), + [sym_val_number] = STATE(1359), + [sym__val_number_decimal] = STATE(1225), + [sym__val_number] = STATE(1452), + [sym_val_duration] = STATE(1688), + [sym_val_filesize] = STATE(1688), + [sym_val_binary] = STATE(1688), + [sym_val_string] = STATE(1688), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1688), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1579), + [sym_val_list] = STATE(1688), + [sym_val_record] = STATE(1688), + [sym_val_table] = STATE(1688), + [sym_val_closure] = STATE(1688), + [sym__cmd_arg] = STATE(1664), + [sym_redirection] = STATE(1615), + [sym__flag] = STATE(1617), + [sym_short_flag] = STATE(1625), + [sym_long_flag] = STATE(1625), + [sym_long_flag_equals_value] = STATE(1628), + [sym_long_flag_value] = STATE(1666), + [sym_unquoted] = STATE(1630), [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(3204), - [aux_sym__immediate_decimal_token2] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3195), + [anon_sym_false] = ACTIONS(3195), + [aux_sym__val_number_decimal_token1] = ACTIONS(3197), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [aux_sym__val_number_token4] = ACTIONS(3201), + [aux_sym__val_number_token5] = ACTIONS(3201), + [aux_sym__val_number_token6] = ACTIONS(3201), + [anon_sym_0b] = ACTIONS(3203), + [anon_sym_0o] = ACTIONS(3203), + [anon_sym_0x] = ACTIONS(3203), + [sym_val_date] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym__str_single_quotes] = ACTIONS(3209), + [sym__str_back_ticks] = ACTIONS(3209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3211), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3213), + [anon_sym_err_GT] = ACTIONS(3215), + [anon_sym_out_GT] = ACTIONS(3215), + [anon_sym_e_GT] = ACTIONS(3215), + [anon_sym_o_GT] = ACTIONS(3215), + [anon_sym_err_PLUSout_GT] = ACTIONS(3215), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3215), + [anon_sym_o_PLUSe_GT] = ACTIONS(3215), + [anon_sym_e_PLUSo_GT] = ACTIONS(3215), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(3), }, [1364] = { + [sym_cell_path] = STATE(1775), + [sym_path] = STATE(1379), [sym_comment] = STATE(1364), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(105), }, [1365] = { - [sym_expr_parenthesized] = STATE(5152), - [sym_val_range] = STATE(5556), - [sym__value] = STATE(5556), - [sym_val_nothing] = STATE(5762), - [sym_val_bool] = STATE(5762), - [sym_val_variable] = STATE(5281), - [sym__var] = STATE(4894), - [sym_val_number] = STATE(5056), - [sym__val_number_decimal] = STATE(4685), - [sym__val_number] = STATE(5058), - [sym_val_duration] = STATE(5762), - [sym_val_filesize] = STATE(5762), - [sym_val_binary] = STATE(5762), - [sym_val_string] = STATE(5762), - [sym__str_double_quotes] = STATE(5466), - [sym_val_interpolated] = STATE(5762), - [sym__inter_single_quotes] = STATE(5441), - [sym__inter_double_quotes] = STATE(5440), - [sym_val_list] = STATE(5762), - [sym_val_record] = STATE(5762), - [sym_val_table] = STATE(5762), - [sym_val_closure] = STATE(5762), - [sym__cmd_arg] = STATE(5426), - [sym_redirection] = STATE(5555), - [sym__flag] = STATE(5546), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_long_flag_value] = STATE(5425), - [sym_unquoted] = STATE(5541), [sym_comment] = STATE(1365), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_DOLLAR] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_DOT] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_true] = ACTIONS(3232), - [anon_sym_false] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_token1] = ACTIONS(3236), - [aux_sym__val_number_token2] = ACTIONS(3236), - [aux_sym__val_number_token3] = ACTIONS(3236), - [aux_sym__val_number_token4] = ACTIONS(3238), - [aux_sym__val_number_token5] = ACTIONS(3238), - [aux_sym__val_number_token6] = ACTIONS(3238), - [anon_sym_0b] = ACTIONS(3240), - [anon_sym_0o] = ACTIONS(3240), - [anon_sym_0x] = ACTIONS(3240), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3244), - [sym__str_single_quotes] = ACTIONS(3246), - [sym__str_back_ticks] = ACTIONS(3246), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3248), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3250), - [anon_sym_err_GT] = ACTIONS(3252), - [anon_sym_out_GT] = ACTIONS(3252), - [anon_sym_e_GT] = ACTIONS(3252), - [anon_sym_o_GT] = ACTIONS(3252), - [anon_sym_err_PLUSout_GT] = ACTIONS(3252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3252), - [anon_sym_o_PLUSe_GT] = ACTIONS(3252), - [anon_sym_e_PLUSo_GT] = ACTIONS(3252), - [aux_sym_unquoted_token1] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_STAR_STAR] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_bit_DASHshl] = ACTIONS(1333), + [anon_sym_bit_DASHshr] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_LT2] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_not_DASHin] = ACTIONS(1333), + [anon_sym_starts_DASHwith] = ACTIONS(1333), + [anon_sym_ends_DASHwith] = ACTIONS(1333), + [anon_sym_EQ_TILDE] = ACTIONS(1333), + [anon_sym_BANG_TILDE] = ACTIONS(1333), + [anon_sym_bit_DASHand] = ACTIONS(1333), + [anon_sym_bit_DASHxor] = ACTIONS(1333), + [anon_sym_bit_DASHor] = ACTIONS(1333), + [anon_sym_and] = ACTIONS(1333), + [anon_sym_xor] = ACTIONS(1333), + [anon_sym_or] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_err_GT] = ACTIONS(1333), + [anon_sym_out_GT] = ACTIONS(1333), + [anon_sym_e_GT] = ACTIONS(1333), + [anon_sym_o_GT] = ACTIONS(1333), + [anon_sym_err_PLUSout_GT] = ACTIONS(1333), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1333), + [anon_sym_o_PLUSe_GT] = ACTIONS(1333), + [anon_sym_e_PLUSo_GT] = ACTIONS(1333), + [aux_sym_unquoted_token1] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(105), }, [1366] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1366), - [aux_sym_cell_path_repeat1] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), + [ts_builtin_sym_end] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_STAR_STAR] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_bit_DASHshl] = ACTIONS(1337), + [anon_sym_bit_DASHshr] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_LT2] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_not_DASHin] = ACTIONS(1337), + [anon_sym_starts_DASHwith] = ACTIONS(1337), + [anon_sym_ends_DASHwith] = ACTIONS(1337), + [anon_sym_EQ_TILDE] = ACTIONS(1337), + [anon_sym_BANG_TILDE] = ACTIONS(1337), + [anon_sym_bit_DASHand] = ACTIONS(1337), + [anon_sym_bit_DASHxor] = ACTIONS(1337), + [anon_sym_bit_DASHor] = ACTIONS(1337), + [anon_sym_and] = ACTIONS(1337), + [anon_sym_xor] = ACTIONS(1337), + [anon_sym_or] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_err_GT] = ACTIONS(1337), + [anon_sym_out_GT] = ACTIONS(1337), + [anon_sym_e_GT] = ACTIONS(1337), + [anon_sym_o_GT] = ACTIONS(1337), + [anon_sym_err_PLUSout_GT] = ACTIONS(1337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), + [anon_sym_o_PLUSe_GT] = ACTIONS(1337), + [anon_sym_e_PLUSo_GT] = ACTIONS(1337), + [aux_sym_unquoted_token1] = ACTIONS(1337), [anon_sym_POUND] = ACTIONS(105), }, [1367] = { - [sym_expr_parenthesized] = STATE(1522), - [sym_val_range] = STATE(1662), - [sym__value] = STATE(1662), - [sym_val_nothing] = STATE(1603), - [sym_val_bool] = STATE(1603), - [sym_val_variable] = STATE(1486), - [sym__var] = STATE(1289), - [sym_val_number] = STATE(1372), - [sym__val_number_decimal] = STATE(1227), - [sym__val_number] = STATE(1359), - [sym_val_duration] = STATE(1603), - [sym_val_filesize] = STATE(1603), - [sym_val_binary] = STATE(1603), - [sym_val_string] = STATE(1603), - [sym__str_double_quotes] = STATE(1596), - [sym_val_interpolated] = STATE(1603), - [sym__inter_single_quotes] = STATE(1673), - [sym__inter_double_quotes] = STATE(1672), - [sym_val_list] = STATE(1603), - [sym_val_record] = STATE(1603), - [sym_val_table] = STATE(1603), - [sym_val_closure] = STATE(1603), - [sym__cmd_arg] = STATE(1689), - [sym_redirection] = STATE(1664), - [sym__flag] = STATE(1665), - [sym_short_flag] = STATE(1666), - [sym_long_flag] = STATE(1666), - [sym_long_flag_equals_value] = STATE(1667), - [sym_long_flag_value] = STATE(1691), - [sym_unquoted] = STATE(1669), [sym_comment] = STATE(1367), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [aux_sym__val_number_decimal_token1] = ACTIONS(3277), - [aux_sym__val_number_token1] = ACTIONS(3279), - [aux_sym__val_number_token2] = ACTIONS(3279), - [aux_sym__val_number_token3] = ACTIONS(3279), - [aux_sym__val_number_token4] = ACTIONS(3281), - [aux_sym__val_number_token5] = ACTIONS(3281), - [aux_sym__val_number_token6] = ACTIONS(3281), - [anon_sym_0b] = ACTIONS(3283), - [anon_sym_0o] = ACTIONS(3283), - [anon_sym_0x] = ACTIONS(3283), - [sym_val_date] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3287), - [sym__str_single_quotes] = ACTIONS(3289), - [sym__str_back_ticks] = ACTIONS(3289), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3293), - [anon_sym_err_GT] = ACTIONS(3295), - [anon_sym_out_GT] = ACTIONS(3295), - [anon_sym_e_GT] = ACTIONS(3295), - [anon_sym_o_GT] = ACTIONS(3295), - [anon_sym_err_PLUSout_GT] = ACTIONS(3295), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3295), - [anon_sym_o_PLUSe_GT] = ACTIONS(3295), - [anon_sym_e_PLUSo_GT] = ACTIONS(3295), - [aux_sym_unquoted_token1] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_err_GT] = ACTIONS(909), + [anon_sym_out_GT] = ACTIONS(909), + [anon_sym_e_GT] = ACTIONS(909), + [anon_sym_o_GT] = ACTIONS(909), + [anon_sym_err_PLUSout_GT] = ACTIONS(909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(909), + [anon_sym_o_PLUSe_GT] = ACTIONS(909), + [anon_sym_e_PLUSo_GT] = ACTIONS(909), + [aux_sym_unquoted_token1] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), }, [1368] = { - [sym_expr_parenthesized] = STATE(6697), - [sym_val_range] = STATE(6918), - [sym__value] = STATE(6918), - [sym_val_nothing] = STATE(6879), - [sym_val_bool] = STATE(6879), - [sym_val_variable] = STATE(6836), - [sym__var] = STATE(6463), - [sym_val_number] = STATE(6628), - [sym__val_number_decimal] = STATE(6087), - [sym__val_number] = STATE(6581), - [sym_val_duration] = STATE(6879), - [sym_val_filesize] = STATE(6879), - [sym_val_binary] = STATE(6879), - [sym_val_string] = STATE(6879), - [sym__str_double_quotes] = STATE(6948), - [sym_val_interpolated] = STATE(6879), - [sym__inter_single_quotes] = STATE(6940), - [sym__inter_double_quotes] = STATE(6943), - [sym_val_list] = STATE(6879), - [sym_val_record] = STATE(6879), - [sym_val_table] = STATE(6879), - [sym_val_closure] = STATE(6879), - [sym__cmd_arg] = STATE(6900), - [sym_redirection] = STATE(6933), - [sym__flag] = STATE(6932), - [sym_short_flag] = STATE(6942), - [sym_long_flag] = STATE(6942), - [sym_long_flag_equals_value] = STATE(6931), - [sym_long_flag_value] = STATE(6899), - [sym_unquoted] = STATE(6928), [sym_comment] = STATE(1368), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_DOT] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_null] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3315), - [anon_sym_false] = ACTIONS(3315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_token1] = ACTIONS(3319), - [aux_sym__val_number_token2] = ACTIONS(3319), - [aux_sym__val_number_token3] = ACTIONS(3319), - [aux_sym__val_number_token4] = ACTIONS(3321), - [aux_sym__val_number_token5] = ACTIONS(3321), - [aux_sym__val_number_token6] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3323), - [anon_sym_0x] = ACTIONS(3323), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym__str_single_quotes] = ACTIONS(3329), - [sym__str_back_ticks] = ACTIONS(3329), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3331), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3333), - [anon_sym_err_GT] = ACTIONS(3335), - [anon_sym_out_GT] = ACTIONS(3335), - [anon_sym_e_GT] = ACTIONS(3335), - [anon_sym_o_GT] = ACTIONS(3335), - [anon_sym_err_PLUSout_GT] = ACTIONS(3335), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3335), - [anon_sym_o_PLUSe_GT] = ACTIONS(3335), - [anon_sym_e_PLUSo_GT] = ACTIONS(3335), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_bit_DASHshl] = ACTIONS(929), + [anon_sym_bit_DASHshr] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_not_DASHin] = ACTIONS(929), + [anon_sym_starts_DASHwith] = ACTIONS(929), + [anon_sym_ends_DASHwith] = ACTIONS(929), + [anon_sym_EQ_TILDE] = ACTIONS(929), + [anon_sym_BANG_TILDE] = ACTIONS(929), + [anon_sym_bit_DASHand] = ACTIONS(929), + [anon_sym_bit_DASHxor] = ACTIONS(929), + [anon_sym_bit_DASHor] = ACTIONS(929), + [anon_sym_and] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(929), + [anon_sym_or] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), }, [1369] = { [sym_comment] = STATE(1369), - [ts_builtin_sym_end] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_STAR_STAR] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_SLASH_SLASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_bit_DASHshl] = ACTIONS(1317), - [anon_sym_bit_DASHshr] = ACTIONS(1317), - [anon_sym_EQ_EQ] = ACTIONS(1317), - [anon_sym_BANG_EQ] = ACTIONS(1317), - [anon_sym_LT2] = ACTIONS(1317), - [anon_sym_LT_EQ] = ACTIONS(1317), - [anon_sym_GT_EQ] = ACTIONS(1317), - [anon_sym_not_DASHin] = ACTIONS(1317), - [anon_sym_starts_DASHwith] = ACTIONS(1317), - [anon_sym_ends_DASHwith] = ACTIONS(1317), - [anon_sym_EQ_TILDE] = ACTIONS(1317), - [anon_sym_BANG_TILDE] = ACTIONS(1317), - [anon_sym_bit_DASHand] = ACTIONS(1317), - [anon_sym_bit_DASHxor] = ACTIONS(1317), - [anon_sym_bit_DASHor] = ACTIONS(1317), - [anon_sym_and] = ACTIONS(1317), - [anon_sym_xor] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_err_GT] = ACTIONS(1317), - [anon_sym_out_GT] = ACTIONS(1317), - [anon_sym_e_GT] = ACTIONS(1317), - [anon_sym_o_GT] = ACTIONS(1317), - [anon_sym_err_PLUSout_GT] = ACTIONS(1317), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1317), - [anon_sym_o_PLUSe_GT] = ACTIONS(1317), - [anon_sym_e_PLUSo_GT] = ACTIONS(1317), - [aux_sym_unquoted_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_STAR_STAR] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_bit_DASHshl] = ACTIONS(1341), + [anon_sym_bit_DASHshr] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_LT2] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_not_DASHin] = ACTIONS(1341), + [anon_sym_starts_DASHwith] = ACTIONS(1341), + [anon_sym_ends_DASHwith] = ACTIONS(1341), + [anon_sym_EQ_TILDE] = ACTIONS(1341), + [anon_sym_BANG_TILDE] = ACTIONS(1341), + [anon_sym_bit_DASHand] = ACTIONS(1341), + [anon_sym_bit_DASHxor] = ACTIONS(1341), + [anon_sym_bit_DASHor] = ACTIONS(1341), + [anon_sym_and] = ACTIONS(1341), + [anon_sym_xor] = ACTIONS(1341), + [anon_sym_or] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_err_GT] = ACTIONS(1341), + [anon_sym_out_GT] = ACTIONS(1341), + [anon_sym_e_GT] = ACTIONS(1341), + [anon_sym_o_GT] = ACTIONS(1341), + [anon_sym_err_PLUSout_GT] = ACTIONS(1341), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1341), + [anon_sym_o_PLUSe_GT] = ACTIONS(1341), + [anon_sym_e_PLUSo_GT] = ACTIONS(1341), + [aux_sym_unquoted_token1] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [1370] = { - [sym_expr_parenthesized] = STATE(9967), - [sym_val_range] = STATE(6564), - [sym__value] = STATE(6564), - [sym_val_nothing] = STATE(6201), - [sym_val_bool] = STATE(6201), - [sym_val_variable] = STATE(5873), - [sym__var] = STATE(5243), - [sym_val_number] = STATE(9807), - [sym__val_number_decimal] = STATE(8422), - [sym__val_number] = STATE(6199), - [sym_val_duration] = STATE(6201), - [sym_val_filesize] = STATE(6201), - [sym_val_binary] = STATE(6201), - [sym_val_string] = STATE(6201), - [sym__str_double_quotes] = STATE(6064), - [sym_val_interpolated] = STATE(6201), - [sym__inter_single_quotes] = STATE(6093), - [sym__inter_double_quotes] = STATE(6091), - [sym_val_list] = STATE(6201), - [sym_val_record] = STATE(6201), - [sym_val_table] = STATE(6201), - [sym_val_closure] = STATE(6201), - [sym__cmd_arg] = STATE(6528), - [sym_redirection] = STATE(6585), - [sym__flag] = STATE(6492), - [sym_short_flag] = STATE(6584), - [sym_long_flag] = STATE(6584), - [sym_long_flag_equals_value] = STATE(6493), - [sym_long_flag_value] = STATE(6529), - [sym_unquoted] = STATE(6571), + [sym_cell_path] = STATE(1848), + [sym_path] = STATE(1379), [sym_comment] = STATE(1370), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_null] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [aux_sym__val_number_decimal_token1] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(2865), - [aux_sym__val_number_token2] = ACTIONS(2865), - [aux_sym__val_number_token3] = ACTIONS(2865), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), - [anon_sym_0b] = ACTIONS(3363), - [anon_sym_0o] = ACTIONS(3363), - [anon_sym_0x] = ACTIONS(3363), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym__str_single_quotes] = ACTIONS(3369), - [sym__str_back_ticks] = ACTIONS(3369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2879), - [anon_sym_err_GT] = ACTIONS(3371), - [anon_sym_out_GT] = ACTIONS(3371), - [anon_sym_e_GT] = ACTIONS(3371), - [anon_sym_o_GT] = ACTIONS(3371), - [anon_sym_err_PLUSout_GT] = ACTIONS(3371), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3371), - [anon_sym_o_PLUSe_GT] = ACTIONS(3371), - [anon_sym_e_PLUSo_GT] = ACTIONS(3371), - [aux_sym_unquoted_token1] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), }, [1371] = { - [sym_expr_parenthesized] = STATE(9944), - [sym_val_range] = STATE(7957), - [sym__value] = STATE(7957), - [sym_val_nothing] = STATE(5744), - [sym_val_bool] = STATE(5744), - [sym_val_variable] = STATE(5580), - [sym__var] = STATE(8282), - [sym_val_number] = STATE(8868), - [sym__val_number_decimal] = STATE(8951), - [sym__val_number] = STATE(7725), - [sym_val_duration] = STATE(5744), - [sym_val_filesize] = STATE(5744), - [sym_val_binary] = STATE(5744), - [sym_val_string] = STATE(5744), - [sym__str_double_quotes] = STATE(7146), - [sym_val_interpolated] = STATE(5744), - [sym__inter_single_quotes] = STATE(5771), - [sym__inter_double_quotes] = STATE(5770), - [sym_val_list] = STATE(5744), - [sym_val_record] = STATE(5744), - [sym_val_table] = STATE(5744), - [sym_val_closure] = STATE(5744), - [sym__cmd_arg] = STATE(8064), - [sym_redirection] = STATE(7950), - [sym__flag] = STATE(7948), - [sym_short_flag] = STATE(8821), - [sym_long_flag] = STATE(8821), - [sym_long_flag_equals_value] = STATE(8037), - [sym_long_flag_value] = STATE(8069), - [sym_unquoted] = STATE(7947), + [sym_cell_path] = STATE(1846), + [sym_path] = STATE(1379), [sym_comment] = STATE(1371), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_token1] = ACTIONS(3074), - [aux_sym__val_number_token2] = ACTIONS(3074), - [aux_sym__val_number_token3] = ACTIONS(3074), - [aux_sym__val_number_token4] = ACTIONS(3391), - [aux_sym__val_number_token5] = ACTIONS(3391), - [aux_sym__val_number_token6] = ACTIONS(3391), - [anon_sym_0b] = ACTIONS(3078), - [anon_sym_0o] = ACTIONS(3078), - [anon_sym_0x] = ACTIONS(3078), - [sym_val_date] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_err_GT] = ACTIONS(3393), - [anon_sym_out_GT] = ACTIONS(3393), - [anon_sym_e_GT] = ACTIONS(3393), - [anon_sym_o_GT] = ACTIONS(3393), - [anon_sym_err_PLUSout_GT] = ACTIONS(3393), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3393), - [anon_sym_o_PLUSe_GT] = ACTIONS(3393), - [anon_sym_e_PLUSo_GT] = ACTIONS(3393), - [aux_sym_unquoted_token1] = ACTIONS(3092), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), }, [1372] = { [sym_comment] = STATE(1372), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(3395), - [sym_duration_unit] = ACTIONS(3397), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_STAR_STAR] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_bit_DASHshl] = ACTIONS(1345), + [anon_sym_bit_DASHshr] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT2] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_not_DASHin] = ACTIONS(1345), + [anon_sym_starts_DASHwith] = ACTIONS(1345), + [anon_sym_ends_DASHwith] = ACTIONS(1345), + [anon_sym_EQ_TILDE] = ACTIONS(1345), + [anon_sym_BANG_TILDE] = ACTIONS(1345), + [anon_sym_bit_DASHand] = ACTIONS(1345), + [anon_sym_bit_DASHxor] = ACTIONS(1345), + [anon_sym_bit_DASHor] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_xor] = ACTIONS(1345), + [anon_sym_or] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [aux_sym_unquoted_token1] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [1373] = { - [sym_expr_parenthesized] = STATE(8260), - [sym_val_range] = STATE(8475), - [sym__value] = STATE(8475), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(7934), - [sym__val_number_decimal] = STATE(7816), - [sym__val_number] = STATE(8009), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__cmd_arg] = STATE(8493), - [sym_redirection] = STATE(8477), - [sym__flag] = STATE(8481), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), - [sym_long_flag_value] = STATE(8495), - [sym_unquoted] = STATE(8484), + [sym_expr_parenthesized] = STATE(10061), + [sym_val_range] = STATE(7925), + [sym__value] = STATE(7925), + [sym_val_nothing] = STATE(5381), + [sym_val_bool] = STATE(5381), + [sym_val_variable] = STATE(5657), + [sym__var] = STATE(8103), + [sym_val_number] = STATE(8685), + [sym__val_number_decimal] = STATE(8390), + [sym__val_number] = STATE(7727), + [sym_val_duration] = STATE(5381), + [sym_val_filesize] = STATE(5381), + [sym_val_binary] = STATE(5381), + [sym_val_string] = STATE(5381), + [sym__str_double_quotes] = STATE(7148), + [sym_val_interpolated] = STATE(5381), + [sym__inter_single_quotes] = STATE(5369), + [sym__inter_double_quotes] = STATE(5801), + [sym_val_list] = STATE(5381), + [sym_val_record] = STATE(5381), + [sym_val_table] = STATE(5381), + [sym_val_closure] = STATE(5381), + [sym__cmd_arg] = STATE(8060), + [sym_redirection] = STATE(7926), + [sym__flag] = STATE(7933), + [sym_short_flag] = STATE(9009), + [sym_long_flag] = STATE(9009), + [sym_long_flag_equals_value] = STATE(8017), + [sym_long_flag_value] = STATE(8061), + [sym_unquoted] = STATE(7935), [sym_comment] = STATE(1373), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_null] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [aux_sym__val_number_decimal_token1] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(3437), - [anon_sym_out_GT] = ACTIONS(3437), - [anon_sym_e_GT] = ACTIONS(3437), - [anon_sym_o_GT] = ACTIONS(3437), - [anon_sym_err_PLUSout_GT] = ACTIONS(3437), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3437), - [anon_sym_o_PLUSe_GT] = ACTIONS(3437), - [anon_sym_e_PLUSo_GT] = ACTIONS(3437), - [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_null] = ACTIONS(3231), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [aux_sym__val_number_decimal_token1] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(3033), + [aux_sym__val_number_token2] = ACTIONS(3033), + [aux_sym__val_number_token3] = ACTIONS(3033), + [aux_sym__val_number_token4] = ACTIONS(3237), + [aux_sym__val_number_token5] = ACTIONS(3237), + [aux_sym__val_number_token6] = ACTIONS(3237), + [anon_sym_0b] = ACTIONS(3239), + [anon_sym_0o] = ACTIONS(3239), + [anon_sym_0x] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), + [anon_sym_err_GT] = ACTIONS(3247), + [anon_sym_out_GT] = ACTIONS(3247), + [anon_sym_e_GT] = ACTIONS(3247), + [anon_sym_o_GT] = ACTIONS(3247), + [anon_sym_err_PLUSout_GT] = ACTIONS(3247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3247), + [anon_sym_o_PLUSe_GT] = ACTIONS(3247), + [anon_sym_e_PLUSo_GT] = ACTIONS(3247), + [aux_sym_unquoted_token1] = ACTIONS(3249), [anon_sym_POUND] = ACTIONS(3), }, [1374] = { [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_err_GT] = ACTIONS(1243), - [anon_sym_out_GT] = ACTIONS(1243), - [anon_sym_e_GT] = ACTIONS(1243), - [anon_sym_o_GT] = ACTIONS(1243), - [anon_sym_err_PLUSout_GT] = ACTIONS(1243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1243), - [anon_sym_o_PLUSe_GT] = ACTIONS(1243), - [anon_sym_e_PLUSo_GT] = ACTIONS(1243), - [aux_sym_unquoted_token1] = ACTIONS(1243), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(3254), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1375] = { + [sym_expr_parenthesized] = STATE(8635), + [sym_val_range] = STATE(9272), + [sym__value] = STATE(9272), + [sym_val_nothing] = STATE(9555), + [sym_val_bool] = STATE(9555), + [sym_val_variable] = STATE(9016), + [sym__var] = STATE(8205), + [sym_val_number] = STATE(8406), + [sym__val_number_decimal] = STATE(8317), + [sym__val_number] = STATE(8513), + [sym_val_duration] = STATE(9555), + [sym_val_filesize] = STATE(9555), + [sym_val_binary] = STATE(9555), + [sym_val_string] = STATE(9555), + [sym__str_double_quotes] = STATE(7123), + [sym_val_interpolated] = STATE(9555), + [sym__inter_single_quotes] = STATE(9662), + [sym__inter_double_quotes] = STATE(9663), + [sym_val_list] = STATE(9555), + [sym_val_record] = STATE(9555), + [sym_val_table] = STATE(9555), + [sym_val_closure] = STATE(9555), + [sym__cmd_arg] = STATE(9624), + [sym_redirection] = STATE(9537), + [sym__flag] = STATE(9726), + [sym_short_flag] = STATE(9009), + [sym_long_flag] = STATE(9009), + [sym_long_flag_equals_value] = STATE(9540), + [sym_long_flag_value] = STATE(9628), + [sym_unquoted] = STATE(9243), [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_in] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_bit_DASHshl] = ACTIONS(1393), - [anon_sym_bit_DASHshr] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT2] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_not_DASHin] = ACTIONS(1393), - [anon_sym_starts_DASHwith] = ACTIONS(1393), - [anon_sym_ends_DASHwith] = ACTIONS(1393), - [anon_sym_EQ_TILDE] = ACTIONS(1393), - [anon_sym_BANG_TILDE] = ACTIONS(1393), - [anon_sym_bit_DASHand] = ACTIONS(1393), - [anon_sym_bit_DASHxor] = ACTIONS(1393), - [anon_sym_bit_DASHor] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_xor] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1393), - [aux_sym__val_number_token1] = ACTIONS(1393), - [aux_sym__val_number_token2] = ACTIONS(1393), - [aux_sym__val_number_token3] = ACTIONS(1393), - [aux_sym__val_number_token4] = ACTIONS(1393), - [aux_sym__val_number_token5] = ACTIONS(1393), - [aux_sym__val_number_token6] = ACTIONS(1393), - [anon_sym_0b] = ACTIONS(1393), - [anon_sym_0o] = ACTIONS(1393), - [anon_sym_0x] = ACTIONS(1393), - [sym_val_date] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym__str_single_quotes] = ACTIONS(1393), - [sym__str_back_ticks] = ACTIONS(1393), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1393), - [anon_sym_err_GT] = ACTIONS(1393), - [anon_sym_out_GT] = ACTIONS(1393), - [anon_sym_e_GT] = ACTIONS(1393), - [anon_sym_o_GT] = ACTIONS(1393), - [anon_sym_err_PLUSout_GT] = ACTIONS(1393), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1393), - [anon_sym_o_PLUSe_GT] = ACTIONS(1393), - [anon_sym_e_PLUSo_GT] = ACTIONS(1393), - [aux_sym_unquoted_token1] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3274), + [anon_sym_false] = ACTIONS(3274), + [aux_sym__val_number_decimal_token1] = ACTIONS(3276), + [aux_sym__val_number_token1] = ACTIONS(3278), + [aux_sym__val_number_token2] = ACTIONS(3278), + [aux_sym__val_number_token3] = ACTIONS(3278), + [aux_sym__val_number_token4] = ACTIONS(3280), + [aux_sym__val_number_token5] = ACTIONS(3280), + [aux_sym__val_number_token6] = ACTIONS(3280), + [anon_sym_0b] = ACTIONS(3282), + [anon_sym_0o] = ACTIONS(3282), + [anon_sym_0x] = ACTIONS(3282), + [sym_val_date] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3286), + [sym__str_single_quotes] = ACTIONS(3288), + [sym__str_back_ticks] = ACTIONS(3288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_err_GT] = ACTIONS(3294), + [anon_sym_out_GT] = ACTIONS(3294), + [anon_sym_e_GT] = ACTIONS(3294), + [anon_sym_o_GT] = ACTIONS(3294), + [anon_sym_err_PLUSout_GT] = ACTIONS(3294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3294), + [anon_sym_o_PLUSe_GT] = ACTIONS(3294), + [anon_sym_e_PLUSo_GT] = ACTIONS(3294), + [aux_sym_unquoted_token1] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3), }, [1376] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1376), - [aux_sym_cell_path_repeat1] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(3300), [anon_sym_POUND] = ACTIONS(105), }, [1377] = { [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(988), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1378] = { [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_in] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_bit_DASHshl] = ACTIONS(1401), - [anon_sym_bit_DASHshr] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT2] = ACTIONS(1401), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_not_DASHin] = ACTIONS(1401), - [anon_sym_starts_DASHwith] = ACTIONS(1401), - [anon_sym_ends_DASHwith] = ACTIONS(1401), - [anon_sym_EQ_TILDE] = ACTIONS(1401), - [anon_sym_BANG_TILDE] = ACTIONS(1401), - [anon_sym_bit_DASHand] = ACTIONS(1401), - [anon_sym_bit_DASHxor] = ACTIONS(1401), - [anon_sym_bit_DASHor] = ACTIONS(1401), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_xor] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1401), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [aux_sym__val_number_token4] = ACTIONS(1401), - [aux_sym__val_number_token5] = ACTIONS(1401), - [aux_sym__val_number_token6] = ACTIONS(1401), - [anon_sym_0b] = ACTIONS(1401), - [anon_sym_0o] = ACTIONS(1401), - [anon_sym_0x] = ACTIONS(1401), - [sym_val_date] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym__str_single_quotes] = ACTIONS(1401), - [sym__str_back_ticks] = ACTIONS(1401), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1401), - [anon_sym_err_GT] = ACTIONS(1401), - [anon_sym_out_GT] = ACTIONS(1401), - [anon_sym_e_GT] = ACTIONS(1401), - [anon_sym_o_GT] = ACTIONS(1401), - [anon_sym_err_PLUSout_GT] = ACTIONS(1401), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1401), - [anon_sym_o_PLUSe_GT] = ACTIONS(1401), - [anon_sym_e_PLUSo_GT] = ACTIONS(1401), - [aux_sym_unquoted_token1] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(3305), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(2944), + [aux_sym_unquoted_token6] = ACTIONS(2946), [anon_sym_POUND] = ACTIONS(105), }, [1379] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1807), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1756), - [sym_val_bool] = STATE(1756), - [sym_val_variable] = STATE(1621), - [sym__var] = STATE(1391), - [sym_val_number] = STATE(1518), - [sym__val_number_decimal] = STATE(1323), - [sym__val_number] = STATE(1485), - [sym_val_duration] = STATE(1756), - [sym_val_filesize] = STATE(1756), - [sym_val_binary] = STATE(1756), - [sym_val_string] = STATE(1756), - [sym__str_double_quotes] = STATE(1905), - [sym_val_interpolated] = STATE(1756), - [sym__inter_single_quotes] = STATE(1770), - [sym__inter_double_quotes] = STATE(1793), - [sym_val_list] = STATE(1756), - [sym_val_record] = STATE(1756), - [sym_val_table] = STATE(1756), - [sym_val_closure] = STATE(1756), - [sym__cmd_arg] = STATE(1908), - [sym_redirection] = STATE(1812), - [sym__flag] = STATE(1818), - [sym_short_flag] = STATE(1912), - [sym_long_flag] = STATE(1912), - [sym_long_flag_equals_value] = STATE(1838), - [sym_long_flag_value] = STATE(1907), - [sym_unquoted] = STATE(1874), + [sym_path] = STATE(1554), [sym_comment] = STATE(1379), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_token1] = ACTIONS(3461), - [aux_sym__val_number_token2] = ACTIONS(3461), - [aux_sym__val_number_token3] = ACTIONS(3461), - [aux_sym__val_number_token4] = ACTIONS(3463), - [aux_sym__val_number_token5] = ACTIONS(3463), - [aux_sym__val_number_token6] = ACTIONS(3463), - [anon_sym_0b] = ACTIONS(3465), - [anon_sym_0o] = ACTIONS(3465), - [anon_sym_0x] = ACTIONS(3465), - [sym_val_date] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym__str_single_quotes] = ACTIONS(3471), - [sym__str_back_ticks] = ACTIONS(3471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3475), - [anon_sym_err_GT] = ACTIONS(3477), - [anon_sym_out_GT] = ACTIONS(3477), - [anon_sym_e_GT] = ACTIONS(3477), - [anon_sym_o_GT] = ACTIONS(3477), - [anon_sym_err_PLUSout_GT] = ACTIONS(3477), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3477), - [anon_sym_o_PLUSe_GT] = ACTIONS(3477), - [anon_sym_e_PLUSo_GT] = ACTIONS(3477), - [aux_sym_unquoted_token1] = ACTIONS(1177), - [anon_sym_POUND] = ACTIONS(3), - }, - [1380] = { - [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_STAR_STAR] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_bit_DASHshl] = ACTIONS(1247), - [anon_sym_bit_DASHshr] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_LT2] = ACTIONS(1247), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1247), - [anon_sym_not_DASHin] = ACTIONS(1247), - [anon_sym_starts_DASHwith] = ACTIONS(1247), - [anon_sym_ends_DASHwith] = ACTIONS(1247), - [anon_sym_EQ_TILDE] = ACTIONS(1247), - [anon_sym_BANG_TILDE] = ACTIONS(1247), - [anon_sym_bit_DASHand] = ACTIONS(1247), - [anon_sym_bit_DASHxor] = ACTIONS(1247), - [anon_sym_bit_DASHor] = ACTIONS(1247), - [anon_sym_and] = ACTIONS(1247), - [anon_sym_xor] = ACTIONS(1247), - [anon_sym_or] = ACTIONS(1247), - [anon_sym_null] = ACTIONS(1247), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [aux_sym__val_number_decimal_token1] = ACTIONS(1247), - [aux_sym__val_number_token1] = ACTIONS(1247), - [aux_sym__val_number_token2] = ACTIONS(1247), - [aux_sym__val_number_token3] = ACTIONS(1247), - [aux_sym__val_number_token4] = ACTIONS(1247), - [aux_sym__val_number_token5] = ACTIONS(1247), - [aux_sym__val_number_token6] = ACTIONS(1247), - [anon_sym_0b] = ACTIONS(1247), - [anon_sym_0o] = ACTIONS(1247), - [anon_sym_0x] = ACTIONS(1247), - [sym_val_date] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym__str_single_quotes] = ACTIONS(1247), - [sym__str_back_ticks] = ACTIONS(1247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), - [anon_sym_err_GT] = ACTIONS(1247), - [anon_sym_out_GT] = ACTIONS(1247), - [anon_sym_e_GT] = ACTIONS(1247), - [anon_sym_o_GT] = ACTIONS(1247), - [anon_sym_err_PLUSout_GT] = ACTIONS(1247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1247), - [anon_sym_o_PLUSe_GT] = ACTIONS(1247), - [anon_sym_e_PLUSo_GT] = ACTIONS(1247), - [aux_sym_unquoted_token1] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(105), - }, - [1381] = { - [sym_comment] = STATE(1381), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [1382] = { - [sym_comment] = STATE(1382), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(3496), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(105), - }, - [1383] = { - [sym_path] = STATE(1608), - [sym_comment] = STATE(1383), - [aux_sym_cell_path_repeat1] = STATE(1417), + [aux_sym_cell_path_repeat1] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(905), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -204717,9 +204465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(903), [anon_sym_LBRACK] = ACTIONS(903), [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), [anon_sym_DOLLAR] = ACTIONS(903), [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_break] = ACTIONS(903), [anon_sym_continue] = ACTIONS(903), @@ -204730,9 +204478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(903), [anon_sym_match] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(3100), + [anon_sym_DOT2] = ACTIONS(3006), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -204741,7 +204488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(903), [anon_sym_hide_DASHenv] = ACTIONS(903), [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), [anon_sym_where] = ACTIONS(903), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_not] = ACTIONS(903), @@ -204767,3066 +204514,3486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, + [1380] = { + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(105), + }, + [1381] = { + [sym_cell_path] = STATE(1788), + [sym_path] = STATE(1351), + [sym_comment] = STATE(1381), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1382] = { + [sym_expr_parenthesized] = STATE(6678), + [sym_val_range] = STATE(6879), + [sym__value] = STATE(6879), + [sym_val_nothing] = STATE(6941), + [sym_val_bool] = STATE(6941), + [sym_val_variable] = STATE(6771), + [sym__var] = STATE(6324), + [sym_val_number] = STATE(6554), + [sym__val_number_decimal] = STATE(6170), + [sym__val_number] = STATE(6498), + [sym_val_duration] = STATE(6941), + [sym_val_filesize] = STATE(6941), + [sym_val_binary] = STATE(6941), + [sym_val_string] = STATE(6941), + [sym__str_double_quotes] = STATE(6960), + [sym_val_interpolated] = STATE(6941), + [sym__inter_single_quotes] = STATE(6966), + [sym__inter_double_quotes] = STATE(6967), + [sym_val_list] = STATE(6941), + [sym_val_record] = STATE(6941), + [sym_val_table] = STATE(6941), + [sym_val_closure] = STATE(6941), + [sym__cmd_arg] = STATE(6929), + [sym_redirection] = STATE(6880), + [sym__flag] = STATE(6881), + [sym_short_flag] = STATE(6976), + [sym_long_flag] = STATE(6976), + [sym_long_flag_equals_value] = STATE(6883), + [sym_long_flag_value] = STATE(6930), + [sym_unquoted] = STATE(6884), + [sym_comment] = STATE(1382), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_token1] = ACTIONS(3331), + [aux_sym__val_number_token2] = ACTIONS(3331), + [aux_sym__val_number_token3] = ACTIONS(3331), + [aux_sym__val_number_token4] = ACTIONS(3333), + [aux_sym__val_number_token5] = ACTIONS(3333), + [aux_sym__val_number_token6] = ACTIONS(3333), + [anon_sym_0b] = ACTIONS(3335), + [anon_sym_0o] = ACTIONS(3335), + [anon_sym_0x] = ACTIONS(3335), + [sym_val_date] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3339), + [sym__str_single_quotes] = ACTIONS(3341), + [sym__str_back_ticks] = ACTIONS(3341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3345), + [anon_sym_err_GT] = ACTIONS(3347), + [anon_sym_out_GT] = ACTIONS(3347), + [anon_sym_e_GT] = ACTIONS(3347), + [anon_sym_o_GT] = ACTIONS(3347), + [anon_sym_err_PLUSout_GT] = ACTIONS(3347), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3347), + [anon_sym_o_PLUSe_GT] = ACTIONS(3347), + [anon_sym_e_PLUSo_GT] = ACTIONS(3347), + [aux_sym_unquoted_token1] = ACTIONS(3349), + [anon_sym_POUND] = ACTIONS(3), + }, + [1383] = { + [sym_comment] = STATE(1383), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(3355), + [anon_sym_POUND] = ACTIONS(105), + }, [1384] = { + [sym_expr_parenthesized] = STATE(9943), + [sym_val_range] = STATE(6520), + [sym__value] = STATE(6520), + [sym_val_nothing] = STATE(6113), + [sym_val_bool] = STATE(6113), + [sym_val_variable] = STATE(5971), + [sym__var] = STATE(5149), + [sym_val_number] = STATE(9720), + [sym__val_number_decimal] = STATE(8573), + [sym__val_number] = STATE(6204), + [sym_val_duration] = STATE(6113), + [sym_val_filesize] = STATE(6113), + [sym_val_binary] = STATE(6113), + [sym_val_string] = STATE(6113), + [sym__str_double_quotes] = STATE(6080), + [sym_val_interpolated] = STATE(6113), + [sym__inter_single_quotes] = STATE(6093), + [sym__inter_double_quotes] = STATE(6094), + [sym_val_list] = STATE(6113), + [sym_val_record] = STATE(6113), + [sym_val_table] = STATE(6113), + [sym_val_closure] = STATE(6113), + [sym__cmd_arg] = STATE(6634), + [sym_redirection] = STATE(6570), + [sym__flag] = STATE(6549), + [sym_short_flag] = STATE(6620), + [sym_long_flag] = STATE(6620), + [sym_long_flag_equals_value] = STATE(6580), + [sym_long_flag_value] = STATE(6635), + [sym_unquoted] = STATE(6550), [sym_comment] = STATE(1384), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3002), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_DOT] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_null] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [aux_sym__val_number_decimal_token1] = ACTIONS(3377), + [aux_sym__val_number_token1] = ACTIONS(2886), + [aux_sym__val_number_token2] = ACTIONS(2886), + [aux_sym__val_number_token3] = ACTIONS(2886), + [aux_sym__val_number_token4] = ACTIONS(3379), + [aux_sym__val_number_token5] = ACTIONS(3379), + [aux_sym__val_number_token6] = ACTIONS(3379), + [anon_sym_0b] = ACTIONS(3381), + [anon_sym_0o] = ACTIONS(3381), + [anon_sym_0x] = ACTIONS(3381), + [sym_val_date] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3385), + [sym__str_single_quotes] = ACTIONS(3387), + [sym__str_back_ticks] = ACTIONS(3387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_err_GT] = ACTIONS(3389), + [anon_sym_out_GT] = ACTIONS(3389), + [anon_sym_e_GT] = ACTIONS(3389), + [anon_sym_o_GT] = ACTIONS(3389), + [anon_sym_err_PLUSout_GT] = ACTIONS(3389), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3389), + [anon_sym_o_PLUSe_GT] = ACTIONS(3389), + [anon_sym_e_PLUSo_GT] = ACTIONS(3389), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(3), }, [1385] = { + [sym_expr_parenthesized] = STATE(6506), + [sym_val_range] = STATE(6737), + [sym__value] = STATE(6737), + [sym_val_nothing] = STATE(6655), + [sym_val_bool] = STATE(6655), + [sym_val_variable] = STATE(6562), + [sym__var] = STATE(6177), + [sym_val_number] = STATE(6303), + [sym__val_number_decimal] = STATE(5886), + [sym__val_number] = STATE(6336), + [sym_val_duration] = STATE(6655), + [sym_val_filesize] = STATE(6655), + [sym_val_binary] = STATE(6655), + [sym_val_string] = STATE(6655), + [sym__str_double_quotes] = STATE(6794), + [sym_val_interpolated] = STATE(6655), + [sym__inter_single_quotes] = STATE(6862), + [sym__inter_double_quotes] = STATE(6873), + [sym_val_list] = STATE(6655), + [sym_val_record] = STATE(6655), + [sym_val_table] = STATE(6655), + [sym_val_closure] = STATE(6655), + [sym__cmd_arg] = STATE(6716), + [sym_redirection] = STATE(6747), + [sym__flag] = STATE(6786), + [sym_short_flag] = STATE(6791), + [sym_long_flag] = STATE(6791), + [sym_long_flag_equals_value] = STATE(6793), + [sym_long_flag_value] = STATE(6717), + [sym_unquoted] = STATE(6815), [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_DOT] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_token1] = ACTIONS(3415), + [aux_sym__val_number_token2] = ACTIONS(3415), + [aux_sym__val_number_token3] = ACTIONS(3415), + [aux_sym__val_number_token4] = ACTIONS(3417), + [aux_sym__val_number_token5] = ACTIONS(3417), + [aux_sym__val_number_token6] = ACTIONS(3417), + [anon_sym_0b] = ACTIONS(3419), + [anon_sym_0o] = ACTIONS(3419), + [anon_sym_0x] = ACTIONS(3419), + [sym_val_date] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym__str_single_quotes] = ACTIONS(3425), + [sym__str_back_ticks] = ACTIONS(3425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3429), + [anon_sym_err_GT] = ACTIONS(3431), + [anon_sym_out_GT] = ACTIONS(3431), + [anon_sym_e_GT] = ACTIONS(3431), + [anon_sym_o_GT] = ACTIONS(3431), + [anon_sym_err_PLUSout_GT] = ACTIONS(3431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3431), + [anon_sym_o_PLUSe_GT] = ACTIONS(3431), + [anon_sym_e_PLUSo_GT] = ACTIONS(3431), + [aux_sym_unquoted_token1] = ACTIONS(3433), + [anon_sym_POUND] = ACTIONS(3), }, [1386] = { - [sym_path] = STATE(1569), + [sym_cell_path] = STATE(1754), + [sym_path] = STATE(1379), [sym_comment] = STATE(1386), - [aux_sym_cell_path_repeat1] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [1387] = { [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_err_GT] = ACTIONS(1251), + [anon_sym_out_GT] = ACTIONS(1251), + [anon_sym_e_GT] = ACTIONS(1251), + [anon_sym_o_GT] = ACTIONS(1251), + [anon_sym_err_PLUSout_GT] = ACTIONS(1251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1251), + [anon_sym_o_PLUSe_GT] = ACTIONS(1251), + [anon_sym_e_PLUSo_GT] = ACTIONS(1251), + [aux_sym_unquoted_token1] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [1388] = { [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LF] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_STAR_STAR] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_SLASH_SLASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_bit_DASHshl] = ACTIONS(1374), + [anon_sym_bit_DASHshr] = ACTIONS(1374), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_LT2] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_not_DASHin] = ACTIONS(1374), + [anon_sym_starts_DASHwith] = ACTIONS(1374), + [anon_sym_ends_DASHwith] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1374), + [anon_sym_BANG_TILDE] = ACTIONS(1374), + [anon_sym_bit_DASHand] = ACTIONS(1374), + [anon_sym_bit_DASHxor] = ACTIONS(1374), + [anon_sym_bit_DASHor] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_xor] = ACTIONS(1374), + [anon_sym_or] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [aux_sym__val_number_decimal_token1] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1374), + [aux_sym__val_number_token5] = ACTIONS(1374), + [aux_sym__val_number_token6] = ACTIONS(1374), + [anon_sym_0b] = ACTIONS(1374), + [anon_sym_0o] = ACTIONS(1374), + [anon_sym_0x] = ACTIONS(1374), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [anon_sym_err_GT] = ACTIONS(1374), + [anon_sym_out_GT] = ACTIONS(1374), + [anon_sym_e_GT] = ACTIONS(1374), + [anon_sym_o_GT] = ACTIONS(1374), + [anon_sym_err_PLUSout_GT] = ACTIONS(1374), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1374), + [anon_sym_o_PLUSe_GT] = ACTIONS(1374), + [anon_sym_e_PLUSo_GT] = ACTIONS(1374), + [aux_sym_unquoted_token1] = ACTIONS(1374), [anon_sym_POUND] = ACTIONS(105), }, [1389] = { - [sym_expr_parenthesized] = STATE(8022), - [sym_val_range] = STATE(8170), - [sym__value] = STATE(8170), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(7866), - [sym__val_number_decimal] = STATE(7481), - [sym__val_number] = STATE(7873), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__cmd_arg] = STATE(8311), - [sym_redirection] = STATE(8169), - [sym__flag] = STATE(8167), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), - [sym_long_flag_value] = STATE(8313), - [sym_unquoted] = STATE(8164), + [sym_expr_parenthesized] = STATE(8467), + [sym_val_range] = STATE(7925), + [sym__value] = STATE(7925), + [sym_val_nothing] = STATE(8988), + [sym_val_bool] = STATE(8988), + [sym_val_variable] = STATE(8369), + [sym__var] = STATE(8018), + [sym_val_number] = STATE(8144), + [sym__val_number_decimal] = STATE(7887), + [sym__val_number] = STATE(8126), + [sym_val_duration] = STATE(8988), + [sym_val_filesize] = STATE(8988), + [sym_val_binary] = STATE(8988), + [sym_val_string] = STATE(8988), + [sym__str_double_quotes] = STATE(7148), + [sym_val_interpolated] = STATE(8988), + [sym__inter_single_quotes] = STATE(8818), + [sym__inter_double_quotes] = STATE(8828), + [sym_val_list] = STATE(8988), + [sym_val_record] = STATE(8988), + [sym_val_table] = STATE(8988), + [sym_val_closure] = STATE(8988), + [sym__cmd_arg] = STATE(8060), + [sym_redirection] = STATE(7926), + [sym__flag] = STATE(7933), + [sym_short_flag] = STATE(8898), + [sym_long_flag] = STATE(8898), + [sym_long_flag_equals_value] = STATE(8017), + [sym_long_flag_value] = STATE(8061), + [sym_unquoted] = STATE(7935), [sym_comment] = STATE(1389), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3507), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3519), - [anon_sym_false] = ACTIONS(3519), - [aux_sym__val_number_decimal_token1] = ACTIONS(3521), - [aux_sym__val_number_token1] = ACTIONS(3523), - [aux_sym__val_number_token2] = ACTIONS(3523), - [aux_sym__val_number_token3] = ACTIONS(3523), - [aux_sym__val_number_token4] = ACTIONS(3525), - [aux_sym__val_number_token5] = ACTIONS(3525), - [aux_sym__val_number_token6] = ACTIONS(3525), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(3529), - [anon_sym_DQUOTE] = ACTIONS(3531), - [sym__str_single_quotes] = ACTIONS(3533), - [sym__str_back_ticks] = ACTIONS(3533), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3535), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3537), - [anon_sym_err_GT] = ACTIONS(3539), - [anon_sym_out_GT] = ACTIONS(3539), - [anon_sym_e_GT] = ACTIONS(3539), - [anon_sym_o_GT] = ACTIONS(3539), - [anon_sym_err_PLUSout_GT] = ACTIONS(3539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3539), - [anon_sym_o_PLUSe_GT] = ACTIONS(3539), - [anon_sym_e_PLUSo_GT] = ACTIONS(3539), - [aux_sym_unquoted_token1] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_DOLLAR] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_DOT] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_true] = ACTIONS(3453), + [anon_sym_false] = ACTIONS(3453), + [aux_sym__val_number_decimal_token1] = ACTIONS(3455), + [aux_sym__val_number_token1] = ACTIONS(3457), + [aux_sym__val_number_token2] = ACTIONS(3457), + [aux_sym__val_number_token3] = ACTIONS(3457), + [aux_sym__val_number_token4] = ACTIONS(3459), + [aux_sym__val_number_token5] = ACTIONS(3459), + [aux_sym__val_number_token6] = ACTIONS(3459), + [anon_sym_0b] = ACTIONS(3461), + [anon_sym_0o] = ACTIONS(3461), + [anon_sym_0x] = ACTIONS(3461), + [sym_val_date] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(3469), + [anon_sym_out_GT] = ACTIONS(3469), + [anon_sym_e_GT] = ACTIONS(3469), + [anon_sym_o_GT] = ACTIONS(3469), + [anon_sym_err_PLUSout_GT] = ACTIONS(3469), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3469), + [anon_sym_o_PLUSe_GT] = ACTIONS(3469), + [anon_sym_e_PLUSo_GT] = ACTIONS(3469), + [aux_sym_unquoted_token1] = ACTIONS(3051), [anon_sym_POUND] = ACTIONS(3), }, [1390] = { + [sym_cell_path] = STATE(1779), + [sym_path] = STATE(1379), [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT2] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = 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_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_err_GT] = ACTIONS(1252), - [anon_sym_out_GT] = ACTIONS(1252), - [anon_sym_e_GT] = ACTIONS(1252), - [anon_sym_o_GT] = ACTIONS(1252), - [anon_sym_err_PLUSout_GT] = ACTIONS(1252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1252), - [anon_sym_o_PLUSe_GT] = ACTIONS(1252), - [anon_sym_e_PLUSo_GT] = ACTIONS(1252), - [aux_sym_unquoted_token1] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, [1391] = { - [sym_cell_path] = STATE(1694), - [sym_path] = STATE(1358), [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(3543), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3471), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [1392] = { [sym_comment] = STATE(1392), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3471), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [1393] = { [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_STAR_STAR] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_bit_DASHshl] = ACTIONS(1381), + [anon_sym_bit_DASHshr] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_LT2] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_not_DASHin] = ACTIONS(1381), + [anon_sym_starts_DASHwith] = ACTIONS(1381), + [anon_sym_ends_DASHwith] = ACTIONS(1381), + [anon_sym_EQ_TILDE] = ACTIONS(1381), + [anon_sym_BANG_TILDE] = ACTIONS(1381), + [anon_sym_bit_DASHand] = ACTIONS(1381), + [anon_sym_bit_DASHxor] = ACTIONS(1381), + [anon_sym_bit_DASHor] = ACTIONS(1381), + [anon_sym_and] = ACTIONS(1381), + [anon_sym_xor] = ACTIONS(1381), + [anon_sym_or] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_token1] = ACTIONS(1381), + [aux_sym__val_number_token2] = ACTIONS(1381), + [aux_sym__val_number_token3] = ACTIONS(1381), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1381), + [sym__str_back_ticks] = ACTIONS(1381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1381), + [anon_sym_err_GT] = ACTIONS(1381), + [anon_sym_out_GT] = ACTIONS(1381), + [anon_sym_e_GT] = ACTIONS(1381), + [anon_sym_o_GT] = ACTIONS(1381), + [anon_sym_err_PLUSout_GT] = ACTIONS(1381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1381), + [anon_sym_o_PLUSe_GT] = ACTIONS(1381), + [anon_sym_e_PLUSo_GT] = ACTIONS(1381), + [aux_sym_unquoted_token1] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(105), }, [1394] = { [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_in] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_bit_DASHshl] = ACTIONS(1255), + [anon_sym_bit_DASHshr] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT2] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_not_DASHin] = ACTIONS(1255), + [anon_sym_starts_DASHwith] = ACTIONS(1255), + [anon_sym_ends_DASHwith] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_BANG_TILDE] = ACTIONS(1255), + [anon_sym_bit_DASHand] = ACTIONS(1255), + [anon_sym_bit_DASHxor] = ACTIONS(1255), + [anon_sym_bit_DASHor] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [aux_sym__val_number_decimal_token1] = ACTIONS(1255), + [aux_sym__val_number_token1] = ACTIONS(1255), + [aux_sym__val_number_token2] = ACTIONS(1255), + [aux_sym__val_number_token3] = ACTIONS(1255), + [aux_sym__val_number_token4] = ACTIONS(1255), + [aux_sym__val_number_token5] = ACTIONS(1255), + [aux_sym__val_number_token6] = ACTIONS(1255), + [anon_sym_0b] = ACTIONS(1255), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym__str_single_quotes] = ACTIONS(1255), + [sym__str_back_ticks] = ACTIONS(1255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), + [anon_sym_err_GT] = ACTIONS(1255), + [anon_sym_out_GT] = ACTIONS(1255), + [anon_sym_e_GT] = ACTIONS(1255), + [anon_sym_o_GT] = ACTIONS(1255), + [anon_sym_err_PLUSout_GT] = ACTIONS(1255), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1255), + [anon_sym_o_PLUSe_GT] = ACTIONS(1255), + [anon_sym_e_PLUSo_GT] = ACTIONS(1255), + [aux_sym_unquoted_token1] = ACTIONS(1255), [anon_sym_POUND] = ACTIONS(105), }, [1395] = { - [sym_path] = STATE(1608), [sym_comment] = STATE(1395), - [aux_sym_cell_path_repeat1] = STATE(1395), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1397] = { + [sym_path] = STATE(1631), [sym_comment] = STATE(1397), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [aux_sym_cell_path_repeat1] = STATE(1357), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(105), }, [1398] = { + [sym_expr_parenthesized] = STATE(6443), + [sym_val_range] = STATE(6520), + [sym__value] = STATE(6520), + [sym_val_nothing] = STATE(6535), + [sym_val_bool] = STATE(6535), + [sym_val_variable] = STATE(6304), + [sym__var] = STATE(6043), + [sym_val_number] = STATE(6128), + [sym__val_number_decimal] = STATE(5699), + [sym__val_number] = STATE(6204), + [sym_val_duration] = STATE(6535), + [sym_val_filesize] = STATE(6535), + [sym_val_binary] = STATE(6535), + [sym_val_string] = STATE(6535), + [sym__str_double_quotes] = STATE(6581), + [sym_val_interpolated] = STATE(6535), + [sym__inter_single_quotes] = STATE(6584), + [sym__inter_double_quotes] = STATE(6585), + [sym_val_list] = STATE(6535), + [sym_val_record] = STATE(6535), + [sym_val_table] = STATE(6535), + [sym_val_closure] = STATE(6535), + [sym__cmd_arg] = STATE(6634), + [sym_redirection] = STATE(6570), + [sym__flag] = STATE(6549), + [sym_short_flag] = STATE(6620), + [sym_long_flag] = STATE(6620), + [sym_long_flag_equals_value] = STATE(6580), + [sym_long_flag_value] = STATE(6635), + [sym_unquoted] = STATE(6550), [sym_comment] = STATE(1398), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3491), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [aux_sym__val_number_decimal_token1] = ACTIONS(3493), + [aux_sym__val_number_token1] = ACTIONS(2886), + [aux_sym__val_number_token2] = ACTIONS(2886), + [aux_sym__val_number_token3] = ACTIONS(2886), + [aux_sym__val_number_token4] = ACTIONS(3495), + [aux_sym__val_number_token5] = ACTIONS(3495), + [aux_sym__val_number_token6] = ACTIONS(3495), + [anon_sym_0b] = ACTIONS(2890), + [anon_sym_0o] = ACTIONS(2890), + [anon_sym_0x] = ACTIONS(2890), + [sym_val_date] = ACTIONS(3497), + [anon_sym_DQUOTE] = ACTIONS(2894), + [sym__str_single_quotes] = ACTIONS(2896), + [sym__str_back_ticks] = ACTIONS(2896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), + [anon_sym_err_GT] = ACTIONS(3503), + [anon_sym_out_GT] = ACTIONS(3503), + [anon_sym_e_GT] = ACTIONS(3503), + [anon_sym_o_GT] = ACTIONS(3503), + [anon_sym_err_PLUSout_GT] = ACTIONS(3503), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3503), + [anon_sym_o_PLUSe_GT] = ACTIONS(3503), + [anon_sym_e_PLUSo_GT] = ACTIONS(3503), + [aux_sym_unquoted_token1] = ACTIONS(3505), + [anon_sym_POUND] = ACTIONS(3), }, [1399] = { [sym_comment] = STATE(1399), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(3551), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(3555), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1400] = { [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_mod] = ACTIONS(1411), - [anon_sym_SLASH_SLASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_bit_DASHshl] = ACTIONS(1411), - [anon_sym_bit_DASHshr] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_bit_DASHshl] = ACTIONS(1221), + [anon_sym_bit_DASHshr] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT2] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_not_DASHin] = ACTIONS(1221), + [anon_sym_starts_DASHwith] = ACTIONS(1221), + [anon_sym_ends_DASHwith] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1221), + [anon_sym_BANG_TILDE] = ACTIONS(1221), + [anon_sym_bit_DASHand] = ACTIONS(1221), + [anon_sym_bit_DASHxor] = ACTIONS(1221), + [anon_sym_bit_DASHor] = ACTIONS(1221), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_err_GT] = ACTIONS(1221), + [anon_sym_out_GT] = ACTIONS(1221), + [anon_sym_e_GT] = ACTIONS(1221), + [anon_sym_o_GT] = ACTIONS(1221), + [anon_sym_err_PLUSout_GT] = ACTIONS(1221), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1221), + [anon_sym_o_PLUSe_GT] = ACTIONS(1221), + [anon_sym_e_PLUSo_GT] = ACTIONS(1221), + [aux_sym_unquoted_token1] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1402] = { + [sym_expr_parenthesized] = STATE(5453), + [sym_val_range] = STATE(6003), + [sym__value] = STATE(6003), + [sym_val_nothing] = STATE(5884), + [sym_val_bool] = STATE(5884), + [sym_val_variable] = STATE(5614), + [sym__var] = STATE(4937), + [sym_val_number] = STATE(5177), + [sym__val_number_decimal] = STATE(4909), + [sym__val_number] = STATE(5178), + [sym_val_duration] = STATE(5884), + [sym_val_filesize] = STATE(5884), + [sym_val_binary] = STATE(5884), + [sym_val_string] = STATE(5884), + [sym__str_double_quotes] = STATE(5876), + [sym_val_interpolated] = STATE(5884), + [sym__inter_single_quotes] = STATE(5899), + [sym__inter_double_quotes] = STATE(5901), + [sym_val_list] = STATE(5884), + [sym_val_record] = STATE(5884), + [sym_val_table] = STATE(5884), + [sym_val_closure] = STATE(5884), + [sym__cmd_arg] = STATE(5879), + [sym_redirection] = STATE(6044), + [sym__flag] = STATE(6048), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), + [sym_long_flag_value] = STATE(5880), + [sym_unquoted] = STATE(5824), [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT2] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_not_DASHin] = ACTIONS(1411), - [anon_sym_starts_DASHwith] = ACTIONS(1411), - [anon_sym_ends_DASHwith] = ACTIONS(1411), - [anon_sym_EQ_TILDE] = ACTIONS(1411), - [anon_sym_BANG_TILDE] = ACTIONS(1411), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3511), + [anon_sym_DASH_DASH] = ACTIONS(3513), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_true] = ACTIONS(3525), + [anon_sym_false] = ACTIONS(3525), + [aux_sym__val_number_decimal_token1] = ACTIONS(3527), + [aux_sym__val_number_token1] = ACTIONS(3529), + [aux_sym__val_number_token2] = ACTIONS(3529), + [aux_sym__val_number_token3] = ACTIONS(3529), + [aux_sym__val_number_token4] = ACTIONS(3531), + [aux_sym__val_number_token5] = ACTIONS(3531), + [aux_sym__val_number_token6] = ACTIONS(3531), + [anon_sym_0b] = ACTIONS(3533), + [anon_sym_0o] = ACTIONS(3533), + [anon_sym_0x] = ACTIONS(3533), + [sym_val_date] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3537), + [sym__str_single_quotes] = ACTIONS(3539), + [sym__str_back_ticks] = ACTIONS(3539), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), + [anon_sym_err_GT] = ACTIONS(3545), + [anon_sym_out_GT] = ACTIONS(3545), + [anon_sym_e_GT] = ACTIONS(3545), + [anon_sym_o_GT] = ACTIONS(3545), + [anon_sym_err_PLUSout_GT] = ACTIONS(3545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3545), + [anon_sym_o_PLUSe_GT] = ACTIONS(3545), + [anon_sym_e_PLUSo_GT] = ACTIONS(3545), + [aux_sym_unquoted_token1] = ACTIONS(3547), + [anon_sym_POUND] = ACTIONS(3), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1404] = { [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_STAR_STAR] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_SLASH_SLASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_bit_DASHshl] = ACTIONS(1354), - [anon_sym_bit_DASHshr] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT2] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_not_DASHin] = ACTIONS(1354), - [anon_sym_starts_DASHwith] = ACTIONS(1354), - [anon_sym_ends_DASHwith] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_BANG_TILDE] = ACTIONS(1354), - [anon_sym_bit_DASHand] = ACTIONS(1354), - [anon_sym_bit_DASHxor] = ACTIONS(1354), - [anon_sym_bit_DASHor] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_xor] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_err_GT] = ACTIONS(1354), - [anon_sym_out_GT] = ACTIONS(1354), - [anon_sym_e_GT] = ACTIONS(1354), - [anon_sym_o_GT] = ACTIONS(1354), - [anon_sym_err_PLUSout_GT] = ACTIONS(1354), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1354), - [anon_sym_o_PLUSe_GT] = ACTIONS(1354), - [anon_sym_e_PLUSo_GT] = ACTIONS(1354), - [aux_sym_unquoted_token1] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(2963), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1405] = { + [sym_expr_parenthesized] = STATE(8989), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(5835), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(8990), + [sym__var] = STATE(8133), + [sym_val_number] = STATE(8495), + [sym__val_number_decimal] = STATE(7911), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(5835), + [sym_val_filesize] = STATE(5835), + [sym_val_binary] = STATE(5835), + [sym_val_string] = STATE(5835), + [sym__str_double_quotes] = STATE(6053), + [sym_val_interpolated] = STATE(5835), + [sym__inter_single_quotes] = STATE(6022), + [sym__inter_double_quotes] = STATE(6026), + [sym_val_list] = STATE(5835), + [sym_val_record] = STATE(5835), + [sym_val_table] = STATE(5835), + [sym_val_closure] = STATE(5835), + [sym__cmd_arg] = STATE(4310), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_long_flag_value] = STATE(4391), + [sym_unquoted] = STATE(4374), [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(1411), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3559), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3563), + [anon_sym_null] = ACTIONS(3565), + [anon_sym_true] = ACTIONS(3567), + [anon_sym_false] = ACTIONS(3567), + [aux_sym__val_number_decimal_token1] = ACTIONS(3569), + [aux_sym__val_number_token1] = ACTIONS(3571), + [aux_sym__val_number_token2] = ACTIONS(3571), + [aux_sym__val_number_token3] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3573), + [aux_sym__val_number_token5] = ACTIONS(3573), + [aux_sym__val_number_token6] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(91), + [anon_sym_0o] = ACTIONS(91), + [anon_sym_0x] = ACTIONS(91), + [sym_val_date] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym__str_single_quotes] = ACTIONS(97), + [sym__str_back_ticks] = ACTIONS(97), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), + [anon_sym_err_GT] = ACTIONS(3575), + [anon_sym_out_GT] = ACTIONS(3575), + [anon_sym_e_GT] = ACTIONS(3575), + [anon_sym_o_GT] = ACTIONS(3575), + [anon_sym_err_PLUSout_GT] = ACTIONS(3575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3575), + [anon_sym_o_PLUSe_GT] = ACTIONS(3575), + [anon_sym_e_PLUSo_GT] = ACTIONS(3575), + [aux_sym_unquoted_token1] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), }, [1406] = { [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_SLASH_SLASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_bit_DASHshl] = ACTIONS(1350), - [anon_sym_bit_DASHshr] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT2] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_not_DASHin] = ACTIONS(1350), - [anon_sym_starts_DASHwith] = ACTIONS(1350), - [anon_sym_ends_DASHwith] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1350), - [anon_sym_BANG_TILDE] = ACTIONS(1350), - [anon_sym_bit_DASHand] = ACTIONS(1350), - [anon_sym_bit_DASHxor] = ACTIONS(1350), - [anon_sym_bit_DASHor] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_xor] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_err_GT] = ACTIONS(1350), - [anon_sym_out_GT] = ACTIONS(1350), - [anon_sym_e_GT] = ACTIONS(1350), - [anon_sym_o_GT] = ACTIONS(1350), - [anon_sym_err_PLUSout_GT] = ACTIONS(1350), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1350), - [anon_sym_o_PLUSe_GT] = ACTIONS(1350), - [anon_sym_e_PLUSo_GT] = ACTIONS(1350), - [aux_sym_unquoted_token1] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(105), - }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_SLASH_SLASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_bit_DASHshl] = ACTIONS(1346), - [anon_sym_bit_DASHshr] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT2] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_not_DASHin] = ACTIONS(1346), - [anon_sym_starts_DASHwith] = ACTIONS(1346), - [anon_sym_ends_DASHwith] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_BANG_TILDE] = ACTIONS(1346), - [anon_sym_bit_DASHand] = ACTIONS(1346), - [anon_sym_bit_DASHxor] = ACTIONS(1346), - [anon_sym_bit_DASHor] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_xor] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_err_GT] = ACTIONS(1346), - [anon_sym_out_GT] = ACTIONS(1346), - [anon_sym_e_GT] = ACTIONS(1346), - [anon_sym_o_GT] = ACTIONS(1346), - [anon_sym_err_PLUSout_GT] = ACTIONS(1346), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1346), - [anon_sym_o_PLUSe_GT] = ACTIONS(1346), - [anon_sym_e_PLUSo_GT] = ACTIONS(1346), - [aux_sym_unquoted_token1] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(105), - }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_SLASH_SLASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_bit_DASHshl] = ACTIONS(1342), - [anon_sym_bit_DASHshr] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT2] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_not_DASHin] = ACTIONS(1342), - [anon_sym_starts_DASHwith] = ACTIONS(1342), - [anon_sym_ends_DASHwith] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_BANG_TILDE] = ACTIONS(1342), - [anon_sym_bit_DASHand] = ACTIONS(1342), - [anon_sym_bit_DASHxor] = ACTIONS(1342), - [anon_sym_bit_DASHor] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_xor] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_err_GT] = ACTIONS(1342), - [anon_sym_out_GT] = ACTIONS(1342), - [anon_sym_e_GT] = ACTIONS(1342), - [anon_sym_o_GT] = ACTIONS(1342), - [anon_sym_err_PLUSout_GT] = ACTIONS(1342), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1342), - [anon_sym_o_PLUSe_GT] = ACTIONS(1342), - [anon_sym_e_PLUSo_GT] = ACTIONS(1342), - [aux_sym_unquoted_token1] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(105), - }, - [1409] = { - [sym_expr_parenthesized] = STATE(9944), - [sym_val_range] = STATE(7957), - [sym__value] = STATE(7957), - [sym_val_nothing] = STATE(5744), - [sym_val_bool] = STATE(5744), - [sym_val_variable] = STATE(5580), - [sym__var] = STATE(8282), - [sym_val_number] = STATE(8868), - [sym__val_number_decimal] = STATE(8513), - [sym__val_number] = STATE(7725), - [sym_val_duration] = STATE(5744), - [sym_val_filesize] = STATE(5744), - [sym_val_binary] = STATE(5744), - [sym_val_string] = STATE(5744), - [sym__str_double_quotes] = STATE(7146), - [sym_val_interpolated] = STATE(5744), - [sym__inter_single_quotes] = STATE(5771), - [sym__inter_double_quotes] = STATE(5770), - [sym_val_list] = STATE(5744), - [sym_val_record] = STATE(5744), - [sym_val_table] = STATE(5744), - [sym_val_closure] = STATE(5744), - [sym__cmd_arg] = STATE(8064), - [sym_redirection] = STATE(7950), - [sym__flag] = STATE(7948), - [sym_short_flag] = STATE(8821), - [sym_long_flag] = STATE(8821), - [sym_long_flag_equals_value] = STATE(8037), - [sym_long_flag_value] = STATE(8069), - [sym_unquoted] = STATE(7947), - [sym_comment] = STATE(1409), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3559), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [aux_sym__val_number_decimal_token1] = ACTIONS(3567), - [aux_sym__val_number_token1] = ACTIONS(3074), - [aux_sym__val_number_token2] = ACTIONS(3074), - [aux_sym__val_number_token3] = ACTIONS(3074), - [aux_sym__val_number_token4] = ACTIONS(3569), - [aux_sym__val_number_token5] = ACTIONS(3569), - [aux_sym__val_number_token6] = ACTIONS(3569), - [anon_sym_0b] = ACTIONS(3078), - [anon_sym_0o] = ACTIONS(3078), - [anon_sym_0x] = ACTIONS(3078), - [sym_val_date] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3088), - [anon_sym_err_GT] = ACTIONS(3571), - [anon_sym_out_GT] = ACTIONS(3571), - [anon_sym_e_GT] = ACTIONS(3571), - [anon_sym_o_GT] = ACTIONS(3571), - [anon_sym_err_PLUSout_GT] = ACTIONS(3571), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3571), - [anon_sym_o_PLUSe_GT] = ACTIONS(3571), - [anon_sym_e_PLUSo_GT] = ACTIONS(3571), - [aux_sym_unquoted_token1] = ACTIONS(3092), - [anon_sym_POUND] = ACTIONS(3), - }, - [1410] = { + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1407] = { + [sym_comment] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [1408] = { + [sym_comment] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1409] = { + [sym_comment] = STATE(1409), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_bit_DASHshl] = ACTIONS(1391), + [anon_sym_bit_DASHshr] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [1410] = { [sym_comment] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym_unquoted_token1] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1411] = { [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_SLASH_SLASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_bit_DASHshl] = ACTIONS(1338), - [anon_sym_bit_DASHshr] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT2] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_not_DASHin] = ACTIONS(1338), - [anon_sym_starts_DASHwith] = ACTIONS(1338), - [anon_sym_ends_DASHwith] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_BANG_TILDE] = ACTIONS(1338), - [anon_sym_bit_DASHand] = ACTIONS(1338), - [anon_sym_bit_DASHxor] = ACTIONS(1338), - [anon_sym_bit_DASHor] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_xor] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_err_GT] = ACTIONS(1338), - [anon_sym_out_GT] = ACTIONS(1338), - [anon_sym_e_GT] = ACTIONS(1338), - [anon_sym_o_GT] = ACTIONS(1338), - [anon_sym_err_PLUSout_GT] = ACTIONS(1338), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1338), - [anon_sym_o_PLUSe_GT] = ACTIONS(1338), - [anon_sym_e_PLUSo_GT] = ACTIONS(1338), - [aux_sym_unquoted_token1] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT2] = ACTIONS(1391), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_not_DASHin] = ACTIONS(1391), + [anon_sym_starts_DASHwith] = ACTIONS(1391), + [anon_sym_ends_DASHwith] = ACTIONS(1391), + [anon_sym_EQ_TILDE] = ACTIONS(1391), + [anon_sym_BANG_TILDE] = ACTIONS(1391), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1412] = { - [sym_expr_parenthesized] = STATE(8652), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(8654), - [sym__var] = STATE(8203), - [sym_val_number] = STATE(8572), - [sym__val_number_decimal] = STATE(7971), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym__cmd_arg] = STATE(4345), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_long_flag_value] = STATE(4344), - [sym_unquoted] = STATE(4262), [sym_comment] = STATE(1412), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_DOT] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3585), - [anon_sym_null] = ACTIONS(3587), - [anon_sym_true] = ACTIONS(3589), - [anon_sym_false] = ACTIONS(3589), - [aux_sym__val_number_decimal_token1] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3595), - [aux_sym__val_number_token5] = ACTIONS(3595), - [aux_sym__val_number_token6] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(91), - [anon_sym_0o] = ACTIONS(91), - [anon_sym_0x] = ACTIONS(91), - [sym_val_date] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym__str_single_quotes] = ACTIONS(97), - [sym__str_back_ticks] = ACTIONS(97), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(99), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(101), - [anon_sym_err_GT] = ACTIONS(3597), - [anon_sym_out_GT] = ACTIONS(3597), - [anon_sym_e_GT] = ACTIONS(3597), - [anon_sym_o_GT] = ACTIONS(3597), - [anon_sym_err_PLUSout_GT] = ACTIONS(3597), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3597), - [anon_sym_o_PLUSe_GT] = ACTIONS(3597), - [anon_sym_e_PLUSo_GT] = ACTIONS(3597), - [aux_sym_unquoted_token1] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), }, [1413] = { [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(3599), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(3104), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1414] = { + [sym_expr_parenthesized] = STATE(8080), + [sym_val_range] = STATE(8354), + [sym__value] = STATE(8354), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(7937), + [sym__val_number_decimal] = STATE(7728), + [sym__val_number] = STATE(7986), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__cmd_arg] = STATE(8432), + [sym_redirection] = STATE(8372), + [sym__flag] = STATE(8373), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), + [sym_long_flag_value] = STATE(8435), + [sym_unquoted] = STATE(8402), [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_STAR_STAR] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_bit_DASHshl] = ACTIONS(1259), - [anon_sym_bit_DASHshr] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1259), - [anon_sym_LT2] = ACTIONS(1259), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1259), - [anon_sym_not_DASHin] = ACTIONS(1259), - [anon_sym_starts_DASHwith] = ACTIONS(1259), - [anon_sym_ends_DASHwith] = ACTIONS(1259), - [anon_sym_EQ_TILDE] = ACTIONS(1259), - [anon_sym_BANG_TILDE] = ACTIONS(1259), - [anon_sym_bit_DASHand] = ACTIONS(1259), - [anon_sym_bit_DASHxor] = ACTIONS(1259), - [anon_sym_bit_DASHor] = ACTIONS(1259), - [anon_sym_and] = ACTIONS(1259), - [anon_sym_xor] = ACTIONS(1259), - [anon_sym_or] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_err_GT] = ACTIONS(1259), - [anon_sym_out_GT] = ACTIONS(1259), - [anon_sym_e_GT] = ACTIONS(1259), - [anon_sym_o_GT] = ACTIONS(1259), - [anon_sym_err_PLUSout_GT] = ACTIONS(1259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), - [anon_sym_o_PLUSe_GT] = ACTIONS(1259), - [anon_sym_e_PLUSo_GT] = ACTIONS(1259), - [aux_sym_unquoted_token1] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(3587), + [anon_sym_DASH] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3591), + [anon_sym_DOT] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3595), + [anon_sym_null] = ACTIONS(3597), + [anon_sym_true] = ACTIONS(3599), + [anon_sym_false] = ACTIONS(3599), + [aux_sym__val_number_decimal_token1] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3603), + [aux_sym__val_number_token2] = ACTIONS(3603), + [aux_sym__val_number_token3] = ACTIONS(3603), + [aux_sym__val_number_token4] = ACTIONS(3605), + [aux_sym__val_number_token5] = ACTIONS(3605), + [aux_sym__val_number_token6] = ACTIONS(3605), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(3609), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym__str_single_quotes] = ACTIONS(3613), + [sym__str_back_ticks] = ACTIONS(3613), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3617), + [anon_sym_err_GT] = ACTIONS(3619), + [anon_sym_out_GT] = ACTIONS(3619), + [anon_sym_e_GT] = ACTIONS(3619), + [anon_sym_o_GT] = ACTIONS(3619), + [anon_sym_err_PLUSout_GT] = ACTIONS(3619), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3619), + [anon_sym_o_PLUSe_GT] = ACTIONS(3619), + [anon_sym_e_PLUSo_GT] = ACTIONS(3619), + [aux_sym_unquoted_token1] = ACTIONS(3621), + [anon_sym_POUND] = ACTIONS(3), }, [1415] = { - [sym_expr_parenthesized] = STATE(6532), - [sym_val_range] = STATE(6735), - [sym__value] = STATE(6735), - [sym_val_nothing] = STATE(6696), - [sym_val_bool] = STATE(6696), - [sym_val_variable] = STATE(6602), - [sym__var] = STATE(6205), - [sym_val_number] = STATE(6429), - [sym__val_number_decimal] = STATE(5898), - [sym__val_number] = STATE(6464), - [sym_val_duration] = STATE(6696), - [sym_val_filesize] = STATE(6696), - [sym_val_binary] = STATE(6696), - [sym_val_string] = STATE(6696), - [sym__str_double_quotes] = STATE(6767), - [sym_val_interpolated] = STATE(6696), - [sym__inter_single_quotes] = STATE(6760), - [sym__inter_double_quotes] = STATE(6761), - [sym_val_list] = STATE(6696), - [sym_val_record] = STATE(6696), - [sym_val_table] = STATE(6696), - [sym_val_closure] = STATE(6696), - [sym__cmd_arg] = STATE(6833), - [sym_redirection] = STATE(6753), - [sym__flag] = STATE(6687), - [sym_short_flag] = STATE(6763), - [sym_long_flag] = STATE(6763), - [sym_long_flag_equals_value] = STATE(6774), - [sym_long_flag_value] = STATE(6829), - [sym_unquoted] = STATE(6782), [sym_comment] = STATE(1415), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3603), - [anon_sym_DOLLAR] = ACTIONS(3605), - [anon_sym_DASH_DASH] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_LBRACE] = ACTIONS(3611), - [anon_sym_DOT] = ACTIONS(3613), - [anon_sym_PLUS] = ACTIONS(3615), - [anon_sym_null] = ACTIONS(3617), - [anon_sym_true] = ACTIONS(3619), - [anon_sym_false] = ACTIONS(3619), - [aux_sym__val_number_decimal_token1] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(3623), - [aux_sym__val_number_token2] = ACTIONS(3623), - [aux_sym__val_number_token3] = ACTIONS(3623), - [aux_sym__val_number_token4] = ACTIONS(3625), - [aux_sym__val_number_token5] = ACTIONS(3625), - [aux_sym__val_number_token6] = ACTIONS(3625), - [anon_sym_0b] = ACTIONS(3627), - [anon_sym_0o] = ACTIONS(3627), - [anon_sym_0x] = ACTIONS(3627), - [sym_val_date] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(3631), - [sym__str_single_quotes] = ACTIONS(3633), - [sym__str_back_ticks] = ACTIONS(3633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), - [anon_sym_err_GT] = ACTIONS(3639), - [anon_sym_out_GT] = ACTIONS(3639), - [anon_sym_e_GT] = ACTIONS(3639), - [anon_sym_o_GT] = ACTIONS(3639), - [anon_sym_err_PLUSout_GT] = ACTIONS(3639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), - [anon_sym_o_PLUSe_GT] = ACTIONS(3639), - [anon_sym_e_PLUSo_GT] = ACTIONS(3639), - [aux_sym_unquoted_token1] = ACTIONS(3641), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(3623), + [aux_sym__immediate_decimal_token2] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), }, [1416] = { [sym_comment] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_SLASH_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_bit_DASHshl] = ACTIONS(1332), - [anon_sym_bit_DASHshr] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT2] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_not_DASHin] = ACTIONS(1332), - [anon_sym_starts_DASHwith] = ACTIONS(1332), - [anon_sym_ends_DASHwith] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_BANG_TILDE] = ACTIONS(1332), - [anon_sym_bit_DASHand] = ACTIONS(1332), - [anon_sym_bit_DASHxor] = ACTIONS(1332), - [anon_sym_bit_DASHor] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_xor] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_err_GT] = ACTIONS(1332), - [anon_sym_out_GT] = ACTIONS(1332), - [anon_sym_e_GT] = ACTIONS(1332), - [anon_sym_o_GT] = ACTIONS(1332), - [anon_sym_err_PLUSout_GT] = ACTIONS(1332), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1332), - [anon_sym_o_PLUSe_GT] = ACTIONS(1332), - [anon_sym_e_PLUSo_GT] = ACTIONS(1332), - [aux_sym_unquoted_token1] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1417] = { - [sym_path] = STATE(1608), [sym_comment] = STATE(1417), - [aux_sym_cell_path_repeat1] = STATE(1395), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(3629), + [aux_sym__immediate_decimal_token2] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1418] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4193), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_long_flag_value] = STATE(4194), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_bit_DASHshl] = ACTIONS(1325), - [anon_sym_bit_DASHshr] = ACTIONS(1325), - [anon_sym_EQ_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_LT2] = ACTIONS(1325), - [anon_sym_LT_EQ] = ACTIONS(1325), - [anon_sym_GT_EQ] = ACTIONS(1325), - [anon_sym_not_DASHin] = ACTIONS(1325), - [anon_sym_starts_DASHwith] = ACTIONS(1325), - [anon_sym_ends_DASHwith] = ACTIONS(1325), - [anon_sym_EQ_TILDE] = ACTIONS(1325), - [anon_sym_BANG_TILDE] = ACTIONS(1325), - [anon_sym_bit_DASHand] = ACTIONS(1325), - [anon_sym_bit_DASHxor] = ACTIONS(1325), - [anon_sym_bit_DASHor] = ACTIONS(1325), - [anon_sym_and] = ACTIONS(1325), - [anon_sym_xor] = ACTIONS(1325), - [anon_sym_or] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_err_GT] = ACTIONS(1325), - [anon_sym_out_GT] = ACTIONS(1325), - [anon_sym_e_GT] = ACTIONS(1325), - [anon_sym_o_GT] = ACTIONS(1325), - [anon_sym_err_PLUSout_GT] = ACTIONS(1325), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1325), - [anon_sym_o_PLUSe_GT] = ACTIONS(1325), - [anon_sym_e_PLUSo_GT] = ACTIONS(1325), - [aux_sym_unquoted_token1] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3645), + [anon_sym_true] = ACTIONS(3647), + [anon_sym_false] = ACTIONS(3647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(3649), + [aux_sym__val_number_token2] = ACTIONS(3649), + [aux_sym__val_number_token3] = ACTIONS(3649), + [aux_sym__val_number_token4] = ACTIONS(3651), + [aux_sym__val_number_token5] = ACTIONS(3651), + [aux_sym__val_number_token6] = ACTIONS(3651), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(3653), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym__str_single_quotes] = ACTIONS(3657), + [sym__str_back_ticks] = ACTIONS(3657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_err_GT] = ACTIONS(3663), + [anon_sym_out_GT] = ACTIONS(3663), + [anon_sym_e_GT] = ACTIONS(3663), + [anon_sym_o_GT] = ACTIONS(3663), + [anon_sym_err_PLUSout_GT] = ACTIONS(3663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3663), + [anon_sym_o_PLUSe_GT] = ACTIONS(3663), + [anon_sym_e_PLUSo_GT] = ACTIONS(3663), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(3), }, [1419] = { [sym_comment] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_STAR_STAR] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_SLASH_SLASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_bit_DASHshl] = ACTIONS(1321), - [anon_sym_bit_DASHshr] = ACTIONS(1321), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_LT2] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_not_DASHin] = ACTIONS(1321), - [anon_sym_starts_DASHwith] = ACTIONS(1321), - [anon_sym_ends_DASHwith] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_BANG_TILDE] = ACTIONS(1321), - [anon_sym_bit_DASHand] = ACTIONS(1321), - [anon_sym_bit_DASHxor] = ACTIONS(1321), - [anon_sym_bit_DASHor] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(1321), - [anon_sym_xor] = ACTIONS(1321), - [anon_sym_or] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_err_GT] = ACTIONS(1321), - [anon_sym_out_GT] = ACTIONS(1321), - [anon_sym_e_GT] = ACTIONS(1321), - [anon_sym_o_GT] = ACTIONS(1321), - [anon_sym_err_PLUSout_GT] = ACTIONS(1321), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1321), - [anon_sym_o_PLUSe_GT] = ACTIONS(1321), - [anon_sym_e_PLUSo_GT] = ACTIONS(1321), - [aux_sym_unquoted_token1] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(1391), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1420] = { [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_STAR_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_SLASH_SLASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_bit_DASHshl] = ACTIONS(1358), - [anon_sym_bit_DASHshr] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT2] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_not_DASHin] = ACTIONS(1358), - [anon_sym_starts_DASHwith] = ACTIONS(1358), - [anon_sym_ends_DASHwith] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_BANG_TILDE] = ACTIONS(1358), - [anon_sym_bit_DASHand] = ACTIONS(1358), - [anon_sym_bit_DASHxor] = ACTIONS(1358), - [anon_sym_bit_DASHor] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_xor] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_err_GT] = ACTIONS(1358), - [anon_sym_out_GT] = ACTIONS(1358), - [anon_sym_e_GT] = ACTIONS(1358), - [anon_sym_o_GT] = ACTIONS(1358), - [anon_sym_err_PLUSout_GT] = ACTIONS(1358), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1358), - [anon_sym_o_PLUSe_GT] = ACTIONS(1358), - [anon_sym_e_PLUSo_GT] = ACTIONS(1358), - [aux_sym_unquoted_token1] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_STAR_STAR] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_bit_DASHshl] = ACTIONS(1349), + [anon_sym_bit_DASHshr] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_LT2] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_not_DASHin] = ACTIONS(1349), + [anon_sym_starts_DASHwith] = ACTIONS(1349), + [anon_sym_ends_DASHwith] = ACTIONS(1349), + [anon_sym_EQ_TILDE] = ACTIONS(1349), + [anon_sym_BANG_TILDE] = ACTIONS(1349), + [anon_sym_bit_DASHand] = ACTIONS(1349), + [anon_sym_bit_DASHxor] = ACTIONS(1349), + [anon_sym_bit_DASHor] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_err_GT] = ACTIONS(1349), + [anon_sym_out_GT] = ACTIONS(1349), + [anon_sym_e_GT] = ACTIONS(1349), + [anon_sym_o_GT] = ACTIONS(1349), + [anon_sym_err_PLUSout_GT] = ACTIONS(1349), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1349), + [anon_sym_o_PLUSe_GT] = ACTIONS(1349), + [anon_sym_e_PLUSo_GT] = ACTIONS(1349), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, [1421] = { [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_GT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_bit_DASHshl] = ACTIONS(1313), - [anon_sym_bit_DASHshr] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT2] = ACTIONS(1313), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_not_DASHin] = ACTIONS(1313), - [anon_sym_starts_DASHwith] = ACTIONS(1313), - [anon_sym_ends_DASHwith] = ACTIONS(1313), - [anon_sym_EQ_TILDE] = ACTIONS(1313), - [anon_sym_BANG_TILDE] = ACTIONS(1313), - [anon_sym_bit_DASHand] = ACTIONS(1313), - [anon_sym_bit_DASHxor] = ACTIONS(1313), - [anon_sym_bit_DASHor] = ACTIONS(1313), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_xor] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_err_GT] = ACTIONS(1313), - [anon_sym_out_GT] = ACTIONS(1313), - [anon_sym_e_GT] = ACTIONS(1313), - [anon_sym_o_GT] = ACTIONS(1313), - [anon_sym_err_PLUSout_GT] = ACTIONS(1313), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1313), - [anon_sym_o_PLUSe_GT] = ACTIONS(1313), - [anon_sym_e_PLUSo_GT] = ACTIONS(1313), - [aux_sym_unquoted_token1] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_SLASH_SLASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_bit_DASHshl] = ACTIONS(1282), + [anon_sym_bit_DASHshr] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT2] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_not_DASHin] = ACTIONS(1282), + [anon_sym_starts_DASHwith] = ACTIONS(1282), + [anon_sym_ends_DASHwith] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_BANG_TILDE] = ACTIONS(1282), + [anon_sym_bit_DASHand] = ACTIONS(1282), + [anon_sym_bit_DASHxor] = ACTIONS(1282), + [anon_sym_bit_DASHor] = ACTIONS(1282), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_xor] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [anon_sym_err_GT] = ACTIONS(1282), + [anon_sym_out_GT] = ACTIONS(1282), + [anon_sym_e_GT] = ACTIONS(1282), + [anon_sym_o_GT] = ACTIONS(1282), + [anon_sym_err_PLUSout_GT] = ACTIONS(1282), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1282), + [anon_sym_o_PLUSe_GT] = ACTIONS(1282), + [anon_sym_e_PLUSo_GT] = ACTIONS(1282), + [aux_sym_unquoted_token1] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, [1422] = { - [sym_expr_parenthesized] = STATE(6405), - [sym_val_range] = STATE(6564), - [sym__value] = STATE(6564), - [sym_val_nothing] = STATE(6500), - [sym_val_bool] = STATE(6500), - [sym_val_variable] = STATE(6424), - [sym__var] = STATE(5879), - [sym_val_number] = STATE(6113), - [sym__val_number_decimal] = STATE(5510), - [sym__val_number] = STATE(6199), - [sym_val_duration] = STATE(6500), - [sym_val_filesize] = STATE(6500), - [sym_val_binary] = STATE(6500), - [sym_val_string] = STATE(6500), - [sym__str_double_quotes] = STATE(6589), - [sym_val_interpolated] = STATE(6500), - [sym__inter_single_quotes] = STATE(6593), - [sym__inter_double_quotes] = STATE(6595), - [sym_val_list] = STATE(6500), - [sym_val_record] = STATE(6500), - [sym_val_table] = STATE(6500), - [sym_val_closure] = STATE(6500), - [sym__cmd_arg] = STATE(6528), - [sym_redirection] = STATE(6585), - [sym__flag] = STATE(6492), - [sym_short_flag] = STATE(6584), - [sym_long_flag] = STATE(6584), - [sym_long_flag_equals_value] = STATE(6493), - [sym_long_flag_value] = STATE(6529), - [sym_unquoted] = STATE(6571), [sym_comment] = STATE(1422), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3647), - [anon_sym_DOT] = ACTIONS(3649), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [aux_sym__val_number_decimal_token1] = ACTIONS(3653), - [aux_sym__val_number_token1] = ACTIONS(2865), - [aux_sym__val_number_token2] = ACTIONS(2865), - [aux_sym__val_number_token3] = ACTIONS(2865), - [aux_sym__val_number_token4] = ACTIONS(3655), - [aux_sym__val_number_token5] = ACTIONS(3655), - [aux_sym__val_number_token6] = ACTIONS(3655), - [anon_sym_0b] = ACTIONS(2869), - [anon_sym_0o] = ACTIONS(2869), - [anon_sym_0x] = ACTIONS(2869), - [sym_val_date] = ACTIONS(3657), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym__str_single_quotes] = ACTIONS(2875), - [sym__str_back_ticks] = ACTIONS(2875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), - [anon_sym_err_GT] = ACTIONS(3663), - [anon_sym_out_GT] = ACTIONS(3663), - [anon_sym_e_GT] = ACTIONS(3663), - [anon_sym_o_GT] = ACTIONS(3663), - [anon_sym_err_PLUSout_GT] = ACTIONS(3663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3663), - [anon_sym_o_PLUSe_GT] = ACTIONS(3663), - [anon_sym_e_PLUSo_GT] = ACTIONS(3663), - [aux_sym_unquoted_token1] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_STAR_STAR] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_bit_DASHshl] = ACTIONS(1357), + [anon_sym_bit_DASHshr] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_LT2] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_not_DASHin] = ACTIONS(1357), + [anon_sym_starts_DASHwith] = ACTIONS(1357), + [anon_sym_ends_DASHwith] = ACTIONS(1357), + [anon_sym_EQ_TILDE] = ACTIONS(1357), + [anon_sym_BANG_TILDE] = ACTIONS(1357), + [anon_sym_bit_DASHand] = ACTIONS(1357), + [anon_sym_bit_DASHxor] = ACTIONS(1357), + [anon_sym_bit_DASHor] = ACTIONS(1357), + [anon_sym_and] = ACTIONS(1357), + [anon_sym_xor] = ACTIONS(1357), + [anon_sym_or] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_err_GT] = ACTIONS(1357), + [anon_sym_out_GT] = ACTIONS(1357), + [anon_sym_e_GT] = ACTIONS(1357), + [anon_sym_o_GT] = ACTIONS(1357), + [anon_sym_err_PLUSout_GT] = ACTIONS(1357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1357), + [anon_sym_o_PLUSe_GT] = ACTIONS(1357), + [anon_sym_e_PLUSo_GT] = ACTIONS(1357), + [aux_sym_unquoted_token1] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(105), }, [1423] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4124), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_long_flag_value] = STATE(4119), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1423), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_true] = ACTIONS(3681), - [anon_sym_false] = ACTIONS(3681), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(3683), - [aux_sym__val_number_token2] = ACTIONS(3683), - [aux_sym__val_number_token3] = ACTIONS(3683), - [aux_sym__val_number_token4] = ACTIONS(3685), - [aux_sym__val_number_token5] = ACTIONS(3685), - [aux_sym__val_number_token6] = ACTIONS(3685), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3689), - [sym__str_single_quotes] = ACTIONS(3691), - [sym__str_back_ticks] = ACTIONS(3691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3695), - [anon_sym_err_GT] = ACTIONS(3697), - [anon_sym_out_GT] = ACTIONS(3697), - [anon_sym_e_GT] = ACTIONS(3697), - [anon_sym_o_GT] = ACTIONS(3697), - [anon_sym_err_PLUSout_GT] = ACTIONS(3697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3697), - [anon_sym_o_PLUSe_GT] = ACTIONS(3697), - [anon_sym_e_PLUSo_GT] = ACTIONS(3697), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_STAR_STAR] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_mod] = ACTIONS(1361), + [anon_sym_SLASH_SLASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_bit_DASHshl] = ACTIONS(1361), + [anon_sym_bit_DASHshr] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_LT2] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_not_DASHin] = ACTIONS(1361), + [anon_sym_starts_DASHwith] = ACTIONS(1361), + [anon_sym_ends_DASHwith] = ACTIONS(1361), + [anon_sym_EQ_TILDE] = ACTIONS(1361), + [anon_sym_BANG_TILDE] = ACTIONS(1361), + [anon_sym_bit_DASHand] = ACTIONS(1361), + [anon_sym_bit_DASHxor] = ACTIONS(1361), + [anon_sym_bit_DASHor] = ACTIONS(1361), + [anon_sym_and] = ACTIONS(1361), + [anon_sym_xor] = ACTIONS(1361), + [anon_sym_or] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_err_GT] = ACTIONS(1361), + [anon_sym_out_GT] = ACTIONS(1361), + [anon_sym_e_GT] = ACTIONS(1361), + [anon_sym_o_GT] = ACTIONS(1361), + [anon_sym_err_PLUSout_GT] = ACTIONS(1361), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1361), + [anon_sym_o_PLUSe_GT] = ACTIONS(1361), + [anon_sym_e_PLUSo_GT] = ACTIONS(1361), + [aux_sym_unquoted_token1] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(105), }, [1424] = { - [sym_cell_path] = STATE(1591), - [sym_path] = STATE(1358), [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(3699), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_bit_DASHshl] = ACTIONS(1368), + [anon_sym_bit_DASHshr] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT2] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_not_DASHin] = ACTIONS(1368), + [anon_sym_starts_DASHwith] = ACTIONS(1368), + [anon_sym_ends_DASHwith] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_BANG_TILDE] = ACTIONS(1368), + [anon_sym_bit_DASHand] = ACTIONS(1368), + [anon_sym_bit_DASHxor] = ACTIONS(1368), + [anon_sym_bit_DASHor] = ACTIONS(1368), + [anon_sym_and] = ACTIONS(1368), + [anon_sym_xor] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_err_GT] = ACTIONS(1368), + [anon_sym_out_GT] = ACTIONS(1368), + [anon_sym_e_GT] = ACTIONS(1368), + [anon_sym_o_GT] = ACTIONS(1368), + [anon_sym_err_PLUSout_GT] = ACTIONS(1368), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), + [anon_sym_o_PLUSe_GT] = ACTIONS(1368), + [anon_sym_e_PLUSo_GT] = ACTIONS(1368), + [aux_sym_unquoted_token1] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [1425] = { [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1426] = { - [sym_expr_parenthesized] = STATE(4083), - [sym_val_range] = STATE(4239), - [sym__value] = STATE(4239), - [sym_val_nothing] = STATE(4370), - [sym_val_bool] = STATE(4370), - [sym_val_variable] = STATE(4086), - [sym__var] = STATE(3982), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3929), - [sym__val_number] = STATE(4051), - [sym_val_duration] = STATE(4370), - [sym_val_filesize] = STATE(4370), - [sym_val_binary] = STATE(4370), - [sym_val_string] = STATE(4370), - [sym__str_double_quotes] = STATE(4365), - [sym_val_interpolated] = STATE(4370), - [sym__inter_single_quotes] = STATE(4267), - [sym__inter_double_quotes] = STATE(4230), - [sym_val_list] = STATE(4370), - [sym_val_record] = STATE(4370), - [sym_val_table] = STATE(4370), - [sym_val_closure] = STATE(4370), - [sym__cmd_arg] = STATE(4345), - [sym_redirection] = STATE(4253), - [sym__flag] = STATE(4255), - [sym_short_flag] = STATE(4256), - [sym_long_flag] = STATE(4256), - [sym_long_flag_equals_value] = STATE(4257), - [sym_long_flag_value] = STATE(4344), - [sym_unquoted] = STATE(4262), [sym_comment] = STATE(1426), - [anon_sym_LBRACK] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(3708), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_null] = ACTIONS(3714), - [anon_sym_true] = ACTIONS(3716), - [anon_sym_false] = ACTIONS(3716), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3718), - [aux_sym__val_number_token5] = ACTIONS(3718), - [aux_sym__val_number_token6] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(2473), - [anon_sym_0o] = ACTIONS(2473), - [anon_sym_0x] = ACTIONS(2473), - [sym_val_date] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym__str_single_quotes] = ACTIONS(3724), - [sym__str_back_ticks] = ACTIONS(3724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3728), - [anon_sym_err_GT] = ACTIONS(3730), - [anon_sym_out_GT] = ACTIONS(3730), - [anon_sym_e_GT] = ACTIONS(3730), - [anon_sym_o_GT] = ACTIONS(3730), - [anon_sym_err_PLUSout_GT] = ACTIONS(3730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3730), - [anon_sym_o_PLUSe_GT] = ACTIONS(3730), - [anon_sym_e_PLUSo_GT] = ACTIONS(3730), - [aux_sym_unquoted_token1] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(1391), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), }, [1427] = { - [sym_expr_parenthesized] = STATE(8409), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(5671), - [sym_val_bool] = STATE(5671), - [sym_val_variable] = STATE(8376), - [sym__var] = STATE(8007), - [sym_val_number] = STATE(8271), - [sym__val_number_decimal] = STATE(7898), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(5671), - [sym_val_filesize] = STATE(5671), - [sym_val_binary] = STATE(5671), - [sym_val_string] = STATE(5671), - [sym__str_double_quotes] = STATE(5153), - [sym_val_interpolated] = STATE(5671), - [sym__inter_single_quotes] = STATE(5749), - [sym__inter_double_quotes] = STATE(5750), - [sym_val_list] = STATE(5671), - [sym_val_record] = STATE(5671), - [sym_val_table] = STATE(5671), - [sym_val_closure] = STATE(5671), - [sym__cmd_arg] = STATE(4124), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_long_flag_value] = STATE(4119), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1427), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3734), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_err_GT] = ACTIONS(1266), + [anon_sym_out_GT] = ACTIONS(1266), + [anon_sym_e_GT] = ACTIONS(1266), + [anon_sym_o_GT] = ACTIONS(1266), + [anon_sym_err_PLUSout_GT] = ACTIONS(1266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1266), + [anon_sym_o_PLUSe_GT] = ACTIONS(1266), + [anon_sym_e_PLUSo_GT] = ACTIONS(1266), + [aux_sym_unquoted_token1] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [1428] = { + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_SLASH_SLASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_bit_DASHshl] = ACTIONS(1266), + [anon_sym_bit_DASHshr] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT2] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_not_DASHin] = ACTIONS(1266), + [anon_sym_starts_DASHwith] = ACTIONS(1266), + [anon_sym_ends_DASHwith] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_BANG_TILDE] = ACTIONS(1266), + [anon_sym_bit_DASHand] = ACTIONS(1266), + [anon_sym_bit_DASHxor] = ACTIONS(1266), + [anon_sym_bit_DASHor] = ACTIONS(1266), + [anon_sym_and] = ACTIONS(1266), + [anon_sym_xor] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_err_GT] = ACTIONS(1266), + [anon_sym_out_GT] = ACTIONS(1266), + [anon_sym_e_GT] = ACTIONS(1266), + [anon_sym_o_GT] = ACTIONS(1266), + [anon_sym_err_PLUSout_GT] = ACTIONS(1266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1266), + [anon_sym_o_PLUSe_GT] = ACTIONS(1266), + [anon_sym_e_PLUSo_GT] = ACTIONS(1266), + [aux_sym_unquoted_token1] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [1429] = { + [sym_expr_parenthesized] = STATE(8541), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(5709), + [sym_val_bool] = STATE(5709), + [sym_val_variable] = STATE(8332), + [sym__var] = STATE(7982), + [sym_val_number] = STATE(8104), + [sym__val_number_decimal] = STATE(7879), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(5709), + [sym_val_filesize] = STATE(5709), + [sym_val_binary] = STATE(5709), + [sym_val_string] = STATE(5709), + [sym__str_double_quotes] = STATE(5336), + [sym_val_interpolated] = STATE(5709), + [sym__inter_single_quotes] = STATE(5391), + [sym__inter_double_quotes] = STATE(5392), + [sym_val_list] = STATE(5709), + [sym_val_record] = STATE(5709), + [sym_val_table] = STATE(5709), + [sym_val_closure] = STATE(5709), + [sym__cmd_arg] = STATE(4193), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_long_flag_value] = STATE(4194), + [sym_unquoted] = STATE(4204), + [sym_comment] = STATE(1429), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3671), [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(3736), - [anon_sym_DASH] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_DOT] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_null] = ACTIONS(3746), - [anon_sym_true] = ACTIONS(3748), - [anon_sym_false] = ACTIONS(3748), - [aux_sym__val_number_decimal_token1] = ACTIONS(3750), - [aux_sym__val_number_token1] = ACTIONS(3683), - [aux_sym__val_number_token2] = ACTIONS(3683), - [aux_sym__val_number_token3] = ACTIONS(3683), - [aux_sym__val_number_token4] = ACTIONS(3752), - [aux_sym__val_number_token5] = ACTIONS(3752), - [aux_sym__val_number_token6] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3677), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3681), + [anon_sym_null] = ACTIONS(3683), + [anon_sym_true] = ACTIONS(3685), + [anon_sym_false] = ACTIONS(3685), + [aux_sym__val_number_decimal_token1] = ACTIONS(3687), + [aux_sym__val_number_token1] = ACTIONS(3649), + [aux_sym__val_number_token2] = ACTIONS(3649), + [aux_sym__val_number_token3] = ACTIONS(3649), + [aux_sym__val_number_token4] = ACTIONS(3689), + [aux_sym__val_number_token5] = ACTIONS(3689), + [aux_sym__val_number_token6] = ACTIONS(3689), [anon_sym_0b] = ACTIONS(195), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), @@ -207836,1349 +208003,789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_err_GT] = ACTIONS(3754), - [anon_sym_out_GT] = ACTIONS(3754), - [anon_sym_e_GT] = ACTIONS(3754), - [anon_sym_o_GT] = ACTIONS(3754), - [anon_sym_err_PLUSout_GT] = ACTIONS(3754), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3754), - [anon_sym_o_PLUSe_GT] = ACTIONS(3754), - [anon_sym_e_PLUSo_GT] = ACTIONS(3754), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [anon_sym_err_GT] = ACTIONS(3691), + [anon_sym_out_GT] = ACTIONS(3691), + [anon_sym_e_GT] = ACTIONS(3691), + [anon_sym_o_GT] = ACTIONS(3691), + [anon_sym_err_PLUSout_GT] = ACTIONS(3691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3691), + [anon_sym_o_PLUSe_GT] = ACTIONS(3691), + [anon_sym_e_PLUSo_GT] = ACTIONS(3691), + [aux_sym_unquoted_token1] = ACTIONS(2237), [anon_sym_POUND] = ACTIONS(3), }, - [1428] = { - [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(1411), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, [1430] = { [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(3758), - [anon_sym_bit_DASHor] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1431] = { [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(3693), + [anon_sym_bit_DASHor] = ACTIONS(1391), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1432] = { [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(3758), - [anon_sym_bit_DASHor] = ACTIONS(3760), - [anon_sym_and] = ACTIONS(1411), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1433] = { [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(3693), + [anon_sym_bit_DASHor] = ACTIONS(3695), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1434] = { [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(3758), - [anon_sym_bit_DASHor] = ACTIONS(3760), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(1411), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1435] = { [sym_comment] = STATE(1435), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(3764), - [aux_sym__immediate_decimal_token2] = ACTIONS(3766), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(3693), + [anon_sym_bit_DASHor] = ACTIONS(3695), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_xor] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), [anon_sym_POUND] = ACTIONS(105), }, [1437] = { [sym_comment] = STATE(1437), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(3768), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(3699), + [aux_sym__immediate_decimal_token2] = ACTIONS(3701), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(3758), - [anon_sym_bit_DASHor] = ACTIONS(3760), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3770), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(3693), + [anon_sym_bit_DASHor] = ACTIONS(3695), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_xor] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), [anon_sym_POUND] = ACTIONS(105), }, [1439] = { [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_GT] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_STAR_STAR] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_SLASH_SLASH] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_bit_DASHshl] = ACTIONS(1270), + [anon_sym_bit_DASHshr] = ACTIONS(1270), + [anon_sym_EQ_EQ] = ACTIONS(1270), + [anon_sym_BANG_EQ] = ACTIONS(1270), + [anon_sym_LT2] = ACTIONS(1270), + [anon_sym_LT_EQ] = ACTIONS(1270), + [anon_sym_GT_EQ] = ACTIONS(1270), + [anon_sym_not_DASHin] = ACTIONS(1270), + [anon_sym_starts_DASHwith] = ACTIONS(1270), + [anon_sym_ends_DASHwith] = ACTIONS(1270), + [anon_sym_EQ_TILDE] = ACTIONS(1270), + [anon_sym_BANG_TILDE] = ACTIONS(1270), + [anon_sym_bit_DASHand] = ACTIONS(1270), + [anon_sym_bit_DASHxor] = ACTIONS(1270), + [anon_sym_bit_DASHor] = ACTIONS(1270), + [anon_sym_and] = ACTIONS(1270), + [anon_sym_xor] = ACTIONS(1270), + [anon_sym_or] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_err_GT] = ACTIONS(1270), + [anon_sym_out_GT] = ACTIONS(1270), + [anon_sym_e_GT] = ACTIONS(1270), + [anon_sym_o_GT] = ACTIONS(1270), + [anon_sym_err_PLUSout_GT] = ACTIONS(1270), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1270), + [anon_sym_o_PLUSe_GT] = ACTIONS(1270), + [anon_sym_e_PLUSo_GT] = ACTIONS(1270), + [aux_sym_unquoted_token1] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [1440] = { [sym_comment] = STATE(1440), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(3772), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(3774), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_bit_DASHshl] = ACTIONS(1437), + [anon_sym_bit_DASHshr] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_LT2] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_not_DASHin] = ACTIONS(1437), + [anon_sym_starts_DASHwith] = ACTIONS(1437), + [anon_sym_ends_DASHwith] = ACTIONS(1437), + [anon_sym_EQ_TILDE] = ACTIONS(1437), + [anon_sym_BANG_TILDE] = ACTIONS(1437), + [anon_sym_bit_DASHand] = ACTIONS(1437), + [anon_sym_bit_DASHxor] = ACTIONS(1437), + [anon_sym_bit_DASHor] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1437), + [anon_sym_xor] = ACTIONS(1437), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_err_GT] = ACTIONS(1437), + [anon_sym_out_GT] = ACTIONS(1437), + [anon_sym_e_GT] = ACTIONS(1437), + [anon_sym_o_GT] = ACTIONS(1437), + [anon_sym_err_PLUSout_GT] = ACTIONS(1437), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1437), + [anon_sym_o_PLUSe_GT] = ACTIONS(1437), + [anon_sym_e_PLUSo_GT] = ACTIONS(1437), + [aux_sym_unquoted_token1] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1441] = { [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LF] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_STAR_STAR] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_mod] = ACTIONS(3483), - [anon_sym_SLASH_SLASH] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_bit_DASHshl] = ACTIONS(3487), - [anon_sym_bit_DASHshr] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_LT2] = ACTIONS(3479), - [anon_sym_LT_EQ] = ACTIONS(3479), - [anon_sym_GT_EQ] = ACTIONS(3479), - [anon_sym_not_DASHin] = ACTIONS(3546), - [anon_sym_starts_DASHwith] = ACTIONS(3546), - [anon_sym_ends_DASHwith] = ACTIONS(3546), - [anon_sym_EQ_TILDE] = ACTIONS(3557), - [anon_sym_BANG_TILDE] = ACTIONS(3557), - [anon_sym_bit_DASHand] = ACTIONS(3756), - [anon_sym_bit_DASHxor] = ACTIONS(3758), - [anon_sym_bit_DASHor] = ACTIONS(3760), - [anon_sym_and] = ACTIONS(3762), - [anon_sym_xor] = ACTIONS(3770), - [anon_sym_or] = ACTIONS(3776), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [aux_sym__val_number_decimal_token1] = ACTIONS(1411), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [aux_sym__val_number_token4] = ACTIONS(1411), - [aux_sym__val_number_token5] = ACTIONS(1411), - [aux_sym__val_number_token6] = ACTIONS(1411), - [anon_sym_0b] = ACTIONS(1411), - [anon_sym_0o] = ACTIONS(1411), - [anon_sym_0x] = ACTIONS(1411), - [sym_val_date] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1411), - [sym__str_back_ticks] = ACTIONS(1411), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1411), - [anon_sym_err_GT] = ACTIONS(1411), - [anon_sym_out_GT] = ACTIONS(1411), - [anon_sym_e_GT] = ACTIONS(1411), - [anon_sym_o_GT] = ACTIONS(1411), - [anon_sym_err_PLUSout_GT] = ACTIONS(1411), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1411), - [anon_sym_o_PLUSe_GT] = ACTIONS(1411), - [anon_sym_e_PLUSo_GT] = ACTIONS(1411), - [aux_sym_unquoted_token1] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(105), - }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_STAR_STAR] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_bit_DASHshl] = ACTIONS(1263), - [anon_sym_bit_DASHshr] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1263), - [anon_sym_starts_DASHwith] = ACTIONS(1263), - [anon_sym_ends_DASHwith] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1263), - [anon_sym_BANG_TILDE] = ACTIONS(1263), - [anon_sym_bit_DASHand] = ACTIONS(1263), - [anon_sym_bit_DASHxor] = ACTIONS(1263), - [anon_sym_bit_DASHor] = ACTIONS(1263), - [anon_sym_and] = ACTIONS(1263), - [anon_sym_xor] = ACTIONS(1263), - [anon_sym_or] = ACTIONS(1263), - [anon_sym_null] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [aux_sym__val_number_decimal_token1] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1263), - [aux_sym__val_number_token2] = ACTIONS(1263), - [aux_sym__val_number_token3] = ACTIONS(1263), - [aux_sym__val_number_token4] = ACTIONS(1263), - [aux_sym__val_number_token5] = ACTIONS(1263), - [aux_sym__val_number_token6] = ACTIONS(1263), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1263), - [anon_sym_0x] = ACTIONS(1263), - [sym_val_date] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym__str_single_quotes] = ACTIONS(1263), - [sym__str_back_ticks] = ACTIONS(1263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1263), - [anon_sym_err_GT] = ACTIONS(1263), - [anon_sym_out_GT] = ACTIONS(1263), - [anon_sym_e_GT] = ACTIONS(1263), - [anon_sym_o_GT] = ACTIONS(1263), - [anon_sym_err_PLUSout_GT] = ACTIONS(1263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1263), - [anon_sym_o_PLUSe_GT] = ACTIONS(1263), - [anon_sym_e_PLUSo_GT] = ACTIONS(1263), - [aux_sym_unquoted_token1] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(105), - }, - [1443] = { - [sym_ctrl_do] = STATE(9468), - [sym_ctrl_if] = STATE(9468), - [sym_ctrl_match] = STATE(9468), - [sym_ctrl_try] = STATE(9468), - [sym__expression] = STATE(9468), - [sym_expr_unary] = STATE(6030), - [sym__expr_unary_minus] = STATE(6029), - [sym_expr_binary] = STATE(6030), - [sym__expr_binary_expression] = STATE(6688), - [sym_expr_parenthesized] = STATE(5437), - [sym_val_range] = STATE(4327), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(6035), - [sym_val_bool] = STATE(6035), - [sym_val_variable] = STATE(5675), - [sym__var] = STATE(4919), - [sym_val_number] = STATE(5363), - [sym__val_number_decimal] = STATE(4762), - [sym__val_number] = STATE(4763), - [sym_val_duration] = STATE(6035), - [sym_val_filesize] = STATE(6035), - [sym_val_binary] = STATE(6035), - [sym_val_string] = STATE(6035), - [sym__str_double_quotes] = STATE(6032), - [sym_val_interpolated] = STATE(6035), - [sym__inter_single_quotes] = STATE(6024), - [sym__inter_double_quotes] = STATE(6023), - [sym_val_list] = STATE(6035), - [sym_val_record] = STATE(6035), - [sym_val_table] = STATE(6035), - [sym_val_closure] = STATE(6035), - [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(2954), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_PIPE] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(3782), - [anon_sym_DOT] = ACTIONS(3784), - [anon_sym_try] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(3786), - [anon_sym_not] = ACTIONS(79), - [anon_sym_null] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym__val_number_decimal_token1] = ACTIONS(85), - [aux_sym__val_number_token1] = ACTIONS(89), - [aux_sym__val_number_token2] = ACTIONS(89), - [aux_sym__val_number_token3] = ACTIONS(89), - [aux_sym__val_number_token4] = ACTIONS(89), - [aux_sym__val_number_token5] = ACTIONS(89), - [aux_sym__val_number_token6] = ACTIONS(89), - [anon_sym_0b] = ACTIONS(91), - [anon_sym_0o] = ACTIONS(91), - [anon_sym_0x] = ACTIONS(91), - [sym_val_date] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3790), - [sym__str_single_quotes] = ACTIONS(3792), - [sym__str_back_ticks] = ACTIONS(3792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3796), - [anon_sym_POUND] = ACTIONS(105), - }, - [1444] = { - [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(3798), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(2921), - [aux_sym_unquoted_token6] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(105), - }, - [1445] = { - [sym_expr_parenthesized] = STATE(8676), - [sym_val_range] = STATE(7957), - [sym__value] = STATE(7957), - [sym_val_nothing] = STATE(6250), - [sym_val_bool] = STATE(6250), - [sym_val_variable] = STATE(5997), - [sym__var] = STATE(8119), - [sym_val_number] = STATE(8544), - [sym__val_number_decimal] = STATE(7904), - [sym__val_number] = STATE(7725), - [sym_val_duration] = STATE(6250), - [sym_val_filesize] = STATE(6250), - [sym_val_binary] = STATE(6250), - [sym_val_string] = STATE(6250), - [sym__str_double_quotes] = STATE(7146), - [sym_val_interpolated] = STATE(6250), - [sym__inter_single_quotes] = STATE(6211), - [sym__inter_double_quotes] = STATE(6212), - [sym_val_list] = STATE(6250), - [sym_val_record] = STATE(6250), - [sym_val_table] = STATE(6250), - [sym_val_closure] = STATE(6250), - [sym__cmd_arg] = STATE(8064), - [sym_redirection] = STATE(7950), - [sym__flag] = STATE(7948), - [sym_short_flag] = STATE(8821), - [sym_long_flag] = STATE(8821), - [sym_long_flag_equals_value] = STATE(8037), - [sym_long_flag_value] = STATE(8069), - [sym_unquoted] = STATE(7947), - [sym_comment] = STATE(1445), - [anon_sym_LBRACK] = ACTIONS(3800), - [anon_sym_LPAREN] = ACTIONS(3802), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3804), - [anon_sym_DASH] = ACTIONS(3806), - [anon_sym_LBRACE] = ACTIONS(3808), - [anon_sym_DOT] = ACTIONS(3810), - [anon_sym_PLUS] = ACTIONS(3812), - [anon_sym_null] = ACTIONS(3814), - [anon_sym_true] = ACTIONS(3816), - [anon_sym_false] = ACTIONS(3816), - [aux_sym__val_number_decimal_token1] = ACTIONS(3818), - [aux_sym__val_number_token1] = ACTIONS(3074), - [aux_sym__val_number_token2] = ACTIONS(3074), - [aux_sym__val_number_token3] = ACTIONS(3074), - [aux_sym__val_number_token4] = ACTIONS(3820), - [aux_sym__val_number_token5] = ACTIONS(3820), - [aux_sym__val_number_token6] = ACTIONS(3820), - [anon_sym_0b] = ACTIONS(3822), - [anon_sym_0o] = ACTIONS(3822), - [anon_sym_0x] = ACTIONS(3822), - [sym_val_date] = ACTIONS(3824), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3828), - [anon_sym_err_GT] = ACTIONS(3830), - [anon_sym_out_GT] = ACTIONS(3830), - [anon_sym_e_GT] = ACTIONS(3830), - [anon_sym_o_GT] = ACTIONS(3830), - [anon_sym_err_PLUSout_GT] = ACTIONS(3830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3830), - [anon_sym_o_PLUSe_GT] = ACTIONS(3830), - [anon_sym_e_PLUSo_GT] = ACTIONS(3830), - [aux_sym_unquoted_token1] = ACTIONS(3160), - [anon_sym_POUND] = ACTIONS(3), - }, - [1446] = { - [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_bit_DASHshl] = ACTIONS(1405), - [anon_sym_bit_DASHshr] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT2] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_not_DASHin] = ACTIONS(1405), - [anon_sym_starts_DASHwith] = ACTIONS(1405), - [anon_sym_ends_DASHwith] = ACTIONS(1405), - [anon_sym_EQ_TILDE] = ACTIONS(1405), - [anon_sym_BANG_TILDE] = ACTIONS(1405), - [anon_sym_bit_DASHand] = ACTIONS(1405), - [anon_sym_bit_DASHxor] = ACTIONS(1405), - [anon_sym_bit_DASHor] = ACTIONS(1405), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_xor] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [aux_sym__val_number_decimal_token1] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1405), - [aux_sym__val_number_token2] = ACTIONS(1405), - [aux_sym__val_number_token3] = ACTIONS(1405), - [aux_sym__val_number_token4] = ACTIONS(1405), - [aux_sym__val_number_token5] = ACTIONS(1405), - [aux_sym__val_number_token6] = ACTIONS(1405), - [anon_sym_0b] = ACTIONS(1405), - [anon_sym_0o] = ACTIONS(1405), - [anon_sym_0x] = ACTIONS(1405), - [sym_val_date] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [sym__str_single_quotes] = ACTIONS(1405), - [sym__str_back_ticks] = ACTIONS(1405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1405), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1405), - [anon_sym_err_GT] = ACTIONS(1405), - [anon_sym_out_GT] = ACTIONS(1405), - [anon_sym_e_GT] = ACTIONS(1405), - [anon_sym_o_GT] = ACTIONS(1405), - [anon_sym_err_PLUSout_GT] = ACTIONS(1405), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1405), - [anon_sym_o_PLUSe_GT] = ACTIONS(1405), - [anon_sym_e_PLUSo_GT] = ACTIONS(1405), - [aux_sym_unquoted_token1] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(105), - }, - [1447] = { - [sym_comment] = STATE(1447), [ts_builtin_sym_end] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1274), [anon_sym_LF] = ACTIONS(1276), @@ -209247,8 +208854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, - [1448] = { - [sym_comment] = STATE(1448), + [1442] = { + [sym_comment] = STATE(1442), [ts_builtin_sym_end] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1278), [anon_sym_LF] = ACTIONS(1280), @@ -209317,3627 +208924,4392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, + [1443] = { + [sym_comment] = STATE(1443), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1444] = { + [sym_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LF] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_in] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_STAR_STAR] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3477), + [anon_sym_mod] = ACTIONS(3477), + [anon_sym_SLASH_SLASH] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_bit_DASHshl] = ACTIONS(3481), + [anon_sym_bit_DASHshr] = ACTIONS(3481), + [anon_sym_EQ_EQ] = ACTIONS(3473), + [anon_sym_BANG_EQ] = ACTIONS(3473), + [anon_sym_LT2] = ACTIONS(3473), + [anon_sym_LT_EQ] = ACTIONS(3473), + [anon_sym_GT_EQ] = ACTIONS(3473), + [anon_sym_not_DASHin] = ACTIONS(3549), + [anon_sym_starts_DASHwith] = ACTIONS(3549), + [anon_sym_ends_DASHwith] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3665), + [anon_sym_BANG_TILDE] = ACTIONS(3665), + [anon_sym_bit_DASHand] = ACTIONS(3667), + [anon_sym_bit_DASHxor] = ACTIONS(3693), + [anon_sym_bit_DASHor] = ACTIONS(3695), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_xor] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3705), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [aux_sym__val_number_decimal_token1] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1391), + [aux_sym__val_number_token5] = ACTIONS(1391), + [aux_sym__val_number_token6] = ACTIONS(1391), + [anon_sym_0b] = ACTIONS(1391), + [anon_sym_0o] = ACTIONS(1391), + [anon_sym_0x] = ACTIONS(1391), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [anon_sym_err_GT] = ACTIONS(1391), + [anon_sym_out_GT] = ACTIONS(1391), + [anon_sym_e_GT] = ACTIONS(1391), + [anon_sym_o_GT] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT] = ACTIONS(1391), + [aux_sym_unquoted_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(105), + }, + [1445] = { + [sym_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(3707), + [aux_sym__immediate_decimal_token2] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), + }, + [1446] = { + [sym_expr_parenthesized] = STATE(10061), + [sym_val_range] = STATE(7925), + [sym__value] = STATE(7925), + [sym_val_nothing] = STATE(5381), + [sym_val_bool] = STATE(5381), + [sym_val_variable] = STATE(5657), + [sym__var] = STATE(8103), + [sym_val_number] = STATE(8685), + [sym__val_number_decimal] = STATE(8715), + [sym__val_number] = STATE(7727), + [sym_val_duration] = STATE(5381), + [sym_val_filesize] = STATE(5381), + [sym_val_binary] = STATE(5381), + [sym_val_string] = STATE(5381), + [sym__str_double_quotes] = STATE(7148), + [sym_val_interpolated] = STATE(5381), + [sym__inter_single_quotes] = STATE(5369), + [sym__inter_double_quotes] = STATE(5801), + [sym_val_list] = STATE(5381), + [sym_val_record] = STATE(5381), + [sym_val_table] = STATE(5381), + [sym_val_closure] = STATE(5381), + [sym__cmd_arg] = STATE(8060), + [sym_redirection] = STATE(7926), + [sym__flag] = STATE(7933), + [sym_short_flag] = STATE(9009), + [sym_long_flag] = STATE(9009), + [sym_long_flag_equals_value] = STATE(8017), + [sym_long_flag_value] = STATE(8061), + [sym_unquoted] = STATE(7935), + [sym_comment] = STATE(1446), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_null] = ACTIONS(3231), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [aux_sym__val_number_decimal_token1] = ACTIONS(3719), + [aux_sym__val_number_token1] = ACTIONS(3033), + [aux_sym__val_number_token2] = ACTIONS(3033), + [aux_sym__val_number_token3] = ACTIONS(3033), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(3239), + [anon_sym_0o] = ACTIONS(3239), + [anon_sym_0x] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), + [anon_sym_err_GT] = ACTIONS(3723), + [anon_sym_out_GT] = ACTIONS(3723), + [anon_sym_e_GT] = ACTIONS(3723), + [anon_sym_o_GT] = ACTIONS(3723), + [anon_sym_err_PLUSout_GT] = ACTIONS(3723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3723), + [anon_sym_o_PLUSe_GT] = ACTIONS(3723), + [anon_sym_e_PLUSo_GT] = ACTIONS(3723), + [aux_sym_unquoted_token1] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3), + }, + [1447] = { + [sym_comment] = STATE(1447), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_bit_DASHshl] = ACTIONS(1387), + [anon_sym_bit_DASHshr] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT2] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_not_DASHin] = ACTIONS(1387), + [anon_sym_starts_DASHwith] = ACTIONS(1387), + [anon_sym_ends_DASHwith] = ACTIONS(1387), + [anon_sym_EQ_TILDE] = ACTIONS(1387), + [anon_sym_BANG_TILDE] = ACTIONS(1387), + [anon_sym_bit_DASHand] = ACTIONS(1387), + [anon_sym_bit_DASHxor] = ACTIONS(1387), + [anon_sym_bit_DASHor] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_xor] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [aux_sym__val_number_decimal_token1] = ACTIONS(1387), + [aux_sym__val_number_token1] = ACTIONS(1387), + [aux_sym__val_number_token2] = ACTIONS(1387), + [aux_sym__val_number_token3] = ACTIONS(1387), + [aux_sym__val_number_token4] = ACTIONS(1387), + [aux_sym__val_number_token5] = ACTIONS(1387), + [aux_sym__val_number_token6] = ACTIONS(1387), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym__str_single_quotes] = ACTIONS(1387), + [sym__str_back_ticks] = ACTIONS(1387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1387), + [anon_sym_out_GT] = ACTIONS(1387), + [anon_sym_e_GT] = ACTIONS(1387), + [anon_sym_o_GT] = ACTIONS(1387), + [anon_sym_err_PLUSout_GT] = ACTIONS(1387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1387), + [anon_sym_o_PLUSe_GT] = ACTIONS(1387), + [anon_sym_e_PLUSo_GT] = ACTIONS(1387), + [aux_sym_unquoted_token1] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(105), + }, + [1448] = { + [sym_comment] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_STAR_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1353), + [anon_sym_mod] = ACTIONS(1353), + [anon_sym_SLASH_SLASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_bit_DASHshl] = ACTIONS(1353), + [anon_sym_bit_DASHshr] = ACTIONS(1353), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_LT2] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_not_DASHin] = ACTIONS(1353), + [anon_sym_starts_DASHwith] = ACTIONS(1353), + [anon_sym_ends_DASHwith] = ACTIONS(1353), + [anon_sym_EQ_TILDE] = ACTIONS(1353), + [anon_sym_BANG_TILDE] = ACTIONS(1353), + [anon_sym_bit_DASHand] = ACTIONS(1353), + [anon_sym_bit_DASHxor] = ACTIONS(1353), + [anon_sym_bit_DASHor] = ACTIONS(1353), + [anon_sym_and] = ACTIONS(1353), + [anon_sym_xor] = ACTIONS(1353), + [anon_sym_or] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_err_GT] = ACTIONS(1353), + [anon_sym_out_GT] = ACTIONS(1353), + [anon_sym_e_GT] = ACTIONS(1353), + [anon_sym_o_GT] = ACTIONS(1353), + [anon_sym_err_PLUSout_GT] = ACTIONS(1353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1353), + [anon_sym_o_PLUSe_GT] = ACTIONS(1353), + [anon_sym_e_PLUSo_GT] = ACTIONS(1353), + [aux_sym_unquoted_token1] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(105), + }, [1449] = { [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_STAR_STAR] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_SLASH_SLASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_bit_DASHshl] = ACTIONS(1102), - [anon_sym_bit_DASHshr] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT2] = ACTIONS(1102), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_not_DASHin] = ACTIONS(1102), - [anon_sym_starts_DASHwith] = ACTIONS(1102), - [anon_sym_ends_DASHwith] = ACTIONS(1102), - [anon_sym_EQ_TILDE] = ACTIONS(1102), - [anon_sym_BANG_TILDE] = ACTIONS(1102), - [anon_sym_bit_DASHand] = ACTIONS(1102), - [anon_sym_bit_DASHxor] = ACTIONS(1102), - [anon_sym_bit_DASHor] = ACTIONS(1102), - [anon_sym_and] = ACTIONS(1102), - [anon_sym_xor] = ACTIONS(1102), - [anon_sym_or] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_err_GT] = ACTIONS(1102), - [anon_sym_out_GT] = ACTIONS(1102), - [anon_sym_e_GT] = ACTIONS(1102), - [anon_sym_o_GT] = ACTIONS(1102), - [anon_sym_err_PLUSout_GT] = ACTIONS(1102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1102), - [anon_sym_o_PLUSe_GT] = ACTIONS(1102), - [anon_sym_e_PLUSo_GT] = ACTIONS(1102), - [aux_sym_unquoted_token1] = ACTIONS(1102), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, [1450] = { - [sym_cell_path] = STATE(1919), - [sym_path] = STATE(1348), + [sym_expr_parenthesized] = STATE(1567), + [sym_val_range] = STATE(1791), + [sym__value] = STATE(1791), + [sym_val_nothing] = STATE(1746), + [sym_val_bool] = STATE(1746), + [sym_val_variable] = STATE(1641), + [sym__var] = STATE(1343), + [sym_val_number] = STATE(1524), + [sym__val_number_decimal] = STATE(1308), + [sym__val_number] = STATE(1518), + [sym_val_duration] = STATE(1746), + [sym_val_filesize] = STATE(1746), + [sym_val_binary] = STATE(1746), + [sym_val_string] = STATE(1746), + [sym__str_double_quotes] = STATE(1758), + [sym_val_interpolated] = STATE(1746), + [sym__inter_single_quotes] = STATE(1771), + [sym__inter_double_quotes] = STATE(1772), + [sym_val_list] = STATE(1746), + [sym_val_record] = STATE(1746), + [sym_val_table] = STATE(1746), + [sym_val_closure] = STATE(1746), + [sym__cmd_arg] = STATE(1799), + [sym_redirection] = STATE(1792), + [sym__flag] = STATE(1793), + [sym_short_flag] = STATE(1739), + [sym_long_flag] = STATE(1739), + [sym_long_flag_equals_value] = STATE(1794), + [sym_long_flag_value] = STATE(1800), + [sym_unquoted] = STATE(1795), [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_LPAREN] = ACTIONS(3727), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3731), + [anon_sym_LBRACE] = ACTIONS(3733), + [anon_sym_DOT] = ACTIONS(3735), + [anon_sym_PLUS] = ACTIONS(3737), + [anon_sym_null] = ACTIONS(3739), + [anon_sym_true] = ACTIONS(3741), + [anon_sym_false] = ACTIONS(3741), + [aux_sym__val_number_decimal_token1] = ACTIONS(3743), + [aux_sym__val_number_token1] = ACTIONS(3745), + [aux_sym__val_number_token2] = ACTIONS(3745), + [aux_sym__val_number_token3] = ACTIONS(3745), + [aux_sym__val_number_token4] = ACTIONS(3747), + [aux_sym__val_number_token5] = ACTIONS(3747), + [aux_sym__val_number_token6] = ACTIONS(3747), + [anon_sym_0b] = ACTIONS(3749), + [anon_sym_0o] = ACTIONS(3749), + [anon_sym_0x] = ACTIONS(3749), + [sym_val_date] = ACTIONS(3751), + [anon_sym_DQUOTE] = ACTIONS(3753), + [sym__str_single_quotes] = ACTIONS(3755), + [sym__str_back_ticks] = ACTIONS(3755), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3759), + [anon_sym_err_GT] = ACTIONS(3761), + [anon_sym_out_GT] = ACTIONS(3761), + [anon_sym_e_GT] = ACTIONS(3761), + [anon_sym_o_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT] = ACTIONS(3761), + [aux_sym_unquoted_token1] = ACTIONS(1153), + [anon_sym_POUND] = ACTIONS(3), }, [1451] = { - [sym_cell_path] = STATE(1861), - [sym_path] = STATE(1348), + [sym_expr_parenthesized] = STATE(8635), + [sym_val_range] = STATE(9272), + [sym__value] = STATE(9272), + [sym_val_nothing] = STATE(9555), + [sym_val_bool] = STATE(9555), + [sym_val_variable] = STATE(9016), + [sym__var] = STATE(8205), + [sym_val_number] = STATE(8406), + [sym__val_number_decimal] = STATE(8585), + [sym__val_number] = STATE(8513), + [sym_val_duration] = STATE(9555), + [sym_val_filesize] = STATE(9555), + [sym_val_binary] = STATE(9555), + [sym_val_string] = STATE(9555), + [sym__str_double_quotes] = STATE(7123), + [sym_val_interpolated] = STATE(9555), + [sym__inter_single_quotes] = STATE(9662), + [sym__inter_double_quotes] = STATE(9663), + [sym_val_list] = STATE(9555), + [sym_val_record] = STATE(9555), + [sym_val_table] = STATE(9555), + [sym_val_closure] = STATE(9555), + [sym__cmd_arg] = STATE(9624), + [sym_redirection] = STATE(9537), + [sym__flag] = STATE(9726), + [sym_short_flag] = STATE(9009), + [sym_long_flag] = STATE(9009), + [sym_long_flag_equals_value] = STATE(9540), + [sym_long_flag_value] = STATE(9628), + [sym_unquoted] = STATE(9243), [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [sym_cmd_identifier] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_not] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3763), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_null] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3274), + [anon_sym_false] = ACTIONS(3274), + [aux_sym__val_number_decimal_token1] = ACTIONS(3771), + [aux_sym__val_number_token1] = ACTIONS(3278), + [aux_sym__val_number_token2] = ACTIONS(3278), + [aux_sym__val_number_token3] = ACTIONS(3278), + [aux_sym__val_number_token4] = ACTIONS(3773), + [aux_sym__val_number_token5] = ACTIONS(3773), + [aux_sym__val_number_token6] = ACTIONS(3773), + [anon_sym_0b] = ACTIONS(3282), + [anon_sym_0o] = ACTIONS(3282), + [anon_sym_0x] = ACTIONS(3282), + [sym_val_date] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3286), + [sym__str_single_quotes] = ACTIONS(3288), + [sym__str_back_ticks] = ACTIONS(3288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3290), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_err_GT] = ACTIONS(3775), + [anon_sym_out_GT] = ACTIONS(3775), + [anon_sym_e_GT] = ACTIONS(3775), + [anon_sym_o_GT] = ACTIONS(3775), + [anon_sym_err_PLUSout_GT] = ACTIONS(3775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3775), + [anon_sym_o_PLUSe_GT] = ACTIONS(3775), + [anon_sym_e_PLUSo_GT] = ACTIONS(3775), + [aux_sym_unquoted_token1] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3), }, [1452] = { - [sym_cell_path] = STATE(1869), - [sym_path] = STATE(1348), [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [sym_cmd_identifier] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_not] = ACTIONS(967), - [anon_sym_null] = ACTIONS(967), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, [1453] = { + [sym_cell_path] = STATE(1612), + [sym_path] = STATE(1456), [sym_comment] = STATE(1453), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(3832), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(3777), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [1454] = { [sym_comment] = STATE(1454), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(3832), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_STAR_STAR] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_bit_DASHshl] = ACTIONS(1319), + [anon_sym_bit_DASHshr] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1319), + [anon_sym_LT2] = ACTIONS(1319), + [anon_sym_LT_EQ] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1319), + [anon_sym_not_DASHin] = ACTIONS(1319), + [anon_sym_starts_DASHwith] = ACTIONS(1319), + [anon_sym_ends_DASHwith] = ACTIONS(1319), + [anon_sym_EQ_TILDE] = ACTIONS(1319), + [anon_sym_BANG_TILDE] = ACTIONS(1319), + [anon_sym_bit_DASHand] = ACTIONS(1319), + [anon_sym_bit_DASHxor] = ACTIONS(1319), + [anon_sym_bit_DASHor] = ACTIONS(1319), + [anon_sym_and] = ACTIONS(1319), + [anon_sym_xor] = ACTIONS(1319), + [anon_sym_or] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_err_GT] = ACTIONS(1319), + [anon_sym_out_GT] = ACTIONS(1319), + [anon_sym_e_GT] = ACTIONS(1319), + [anon_sym_o_GT] = ACTIONS(1319), + [anon_sym_err_PLUSout_GT] = ACTIONS(1319), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1319), + [anon_sym_o_PLUSe_GT] = ACTIONS(1319), + [anon_sym_e_PLUSo_GT] = ACTIONS(1319), + [aux_sym_unquoted_token1] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [1455] = { [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_SLASH_SLASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_bit_DASHshl] = ACTIONS(1309), - [anon_sym_bit_DASHshr] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT2] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_not_DASHin] = ACTIONS(1309), - [anon_sym_starts_DASHwith] = ACTIONS(1309), - [anon_sym_ends_DASHwith] = ACTIONS(1309), - [anon_sym_EQ_TILDE] = ACTIONS(1309), - [anon_sym_BANG_TILDE] = ACTIONS(1309), - [anon_sym_bit_DASHand] = ACTIONS(1309), - [anon_sym_bit_DASHxor] = ACTIONS(1309), - [anon_sym_bit_DASHor] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_xor] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_err_GT] = ACTIONS(1309), - [anon_sym_out_GT] = ACTIONS(1309), - [anon_sym_e_GT] = ACTIONS(1309), - [anon_sym_o_GT] = ACTIONS(1309), - [anon_sym_err_PLUSout_GT] = ACTIONS(1309), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1309), - [anon_sym_o_PLUSe_GT] = ACTIONS(1309), - [anon_sym_e_PLUSo_GT] = ACTIONS(1309), - [aux_sym_unquoted_token1] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_in] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_bit_DASHshl] = ACTIONS(949), + [anon_sym_bit_DASHshr] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_not_DASHin] = ACTIONS(949), + [anon_sym_starts_DASHwith] = ACTIONS(949), + [anon_sym_ends_DASHwith] = ACTIONS(949), + [anon_sym_EQ_TILDE] = ACTIONS(949), + [anon_sym_BANG_TILDE] = ACTIONS(949), + [anon_sym_bit_DASHand] = ACTIONS(949), + [anon_sym_bit_DASHxor] = ACTIONS(949), + [anon_sym_bit_DASHor] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_err_GT] = ACTIONS(949), + [anon_sym_out_GT] = ACTIONS(949), + [anon_sym_e_GT] = ACTIONS(949), + [anon_sym_o_GT] = ACTIONS(949), + [anon_sym_err_PLUSout_GT] = ACTIONS(949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(949), + [anon_sym_o_PLUSe_GT] = ACTIONS(949), + [anon_sym_e_PLUSo_GT] = ACTIONS(949), + [aux_sym_unquoted_token1] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [1456] = { - [sym_cell_path] = STATE(1841), - [sym_path] = STATE(1348), + [sym_path] = STATE(1554), [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), + [aux_sym_cell_path_repeat1] = STATE(1344), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, [1457] = { [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_SLASH_SLASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_bit_DASHshl] = ACTIONS(1305), - [anon_sym_bit_DASHshr] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT2] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_not_DASHin] = ACTIONS(1305), - [anon_sym_starts_DASHwith] = ACTIONS(1305), - [anon_sym_ends_DASHwith] = ACTIONS(1305), - [anon_sym_EQ_TILDE] = ACTIONS(1305), - [anon_sym_BANG_TILDE] = ACTIONS(1305), - [anon_sym_bit_DASHand] = ACTIONS(1305), - [anon_sym_bit_DASHxor] = ACTIONS(1305), - [anon_sym_bit_DASHor] = ACTIONS(1305), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_xor] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_err_GT] = ACTIONS(1305), - [anon_sym_out_GT] = ACTIONS(1305), - [anon_sym_e_GT] = ACTIONS(1305), - [anon_sym_o_GT] = ACTIONS(1305), - [anon_sym_err_PLUSout_GT] = ACTIONS(1305), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1305), - [anon_sym_o_PLUSe_GT] = ACTIONS(1305), - [anon_sym_e_PLUSo_GT] = ACTIONS(1305), - [aux_sym_unquoted_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_mod] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_bit_DASHshl] = ACTIONS(1082), + [anon_sym_bit_DASHshr] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_LT2] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_not_DASHin] = ACTIONS(1082), + [anon_sym_starts_DASHwith] = ACTIONS(1082), + [anon_sym_ends_DASHwith] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_BANG_TILDE] = ACTIONS(1082), + [anon_sym_bit_DASHand] = ACTIONS(1082), + [anon_sym_bit_DASHxor] = ACTIONS(1082), + [anon_sym_bit_DASHor] = ACTIONS(1082), + [anon_sym_and] = ACTIONS(1082), + [anon_sym_xor] = ACTIONS(1082), + [anon_sym_or] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_err_GT] = ACTIONS(1082), + [anon_sym_out_GT] = ACTIONS(1082), + [anon_sym_e_GT] = ACTIONS(1082), + [anon_sym_o_GT] = ACTIONS(1082), + [anon_sym_err_PLUSout_GT] = ACTIONS(1082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1082), + [anon_sym_o_PLUSe_GT] = ACTIONS(1082), + [anon_sym_e_PLUSo_GT] = ACTIONS(1082), + [aux_sym_unquoted_token1] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [1458] = { [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_STAR_STAR] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_bit_DASHshl] = ACTIONS(1033), - [anon_sym_bit_DASHshr] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_LT2] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_not_DASHin] = ACTIONS(1033), - [anon_sym_starts_DASHwith] = ACTIONS(1033), - [anon_sym_ends_DASHwith] = ACTIONS(1033), - [anon_sym_EQ_TILDE] = ACTIONS(1033), - [anon_sym_BANG_TILDE] = ACTIONS(1033), - [anon_sym_bit_DASHand] = ACTIONS(1033), - [anon_sym_bit_DASHxor] = ACTIONS(1033), - [anon_sym_bit_DASHor] = ACTIONS(1033), - [anon_sym_and] = ACTIONS(1033), - [anon_sym_xor] = ACTIONS(1033), - [anon_sym_or] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1033), - [anon_sym_out_GT] = ACTIONS(1033), - [anon_sym_e_GT] = ACTIONS(1033), - [anon_sym_o_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_STAR_STAR] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_SLASH_SLASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_bit_DASHshl] = ACTIONS(1086), + [anon_sym_bit_DASHshr] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT2] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_not_DASHin] = ACTIONS(1086), + [anon_sym_starts_DASHwith] = ACTIONS(1086), + [anon_sym_ends_DASHwith] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_BANG_TILDE] = ACTIONS(1086), + [anon_sym_bit_DASHand] = ACTIONS(1086), + [anon_sym_bit_DASHxor] = ACTIONS(1086), + [anon_sym_bit_DASHor] = ACTIONS(1086), + [anon_sym_and] = ACTIONS(1086), + [anon_sym_xor] = ACTIONS(1086), + [anon_sym_or] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_err_GT] = ACTIONS(1086), + [anon_sym_out_GT] = ACTIONS(1086), + [anon_sym_e_GT] = ACTIONS(1086), + [anon_sym_o_GT] = ACTIONS(1086), + [anon_sym_err_PLUSout_GT] = ACTIONS(1086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1086), + [anon_sym_o_PLUSe_GT] = ACTIONS(1086), + [anon_sym_e_PLUSo_GT] = ACTIONS(1086), + [aux_sym_unquoted_token1] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1459] = { + [sym_expr_parenthesized] = STATE(10208), + [sym_val_range] = STATE(10787), + [sym__value] = STATE(10787), + [sym_val_nothing] = STATE(5381), + [sym_val_bool] = STATE(5381), + [sym_val_variable] = STATE(6572), + [sym__var] = STATE(9770), + [sym_val_number] = STATE(8685), + [sym__val_number_decimal] = STATE(9017), + [sym__val_number] = STATE(7727), + [sym_val_duration] = STATE(5381), + [sym_val_filesize] = STATE(5381), + [sym_val_binary] = STATE(5381), + [sym_val_string] = STATE(5381), + [sym__str_double_quotes] = STATE(4950), + [sym_val_interpolated] = STATE(5381), + [sym__inter_single_quotes] = STATE(5369), + [sym__inter_double_quotes] = STATE(5801), + [sym_val_list] = STATE(5381), + [sym_val_record] = STATE(5381), + [sym_val_table] = STATE(5381), + [sym_val_closure] = STATE(5381), + [sym__cmd_arg] = STATE(10894), + [sym_redirection] = STATE(10793), + [sym__flag] = STATE(10800), + [sym_short_flag] = STATE(10695), + [sym_long_flag] = STATE(10695), + [sym_long_flag_equals_value] = STATE(10806), + [sym_long_flag_value] = STATE(10919), + [sym_unquoted] = STATE(10810), [sym_comment] = STATE(1459), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3002), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_DOLLAR] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_LBRACE] = ACTIONS(3788), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3231), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [aux_sym__val_number_decimal_token1] = ACTIONS(3794), + [aux_sym__val_number_token1] = ACTIONS(3033), + [aux_sym__val_number_token2] = ACTIONS(3033), + [aux_sym__val_number_token3] = ACTIONS(3033), + [aux_sym__val_number_token4] = ACTIONS(3796), + [aux_sym__val_number_token5] = ACTIONS(3796), + [aux_sym__val_number_token6] = ACTIONS(3796), + [anon_sym_0b] = ACTIONS(3239), + [anon_sym_0o] = ACTIONS(3239), + [anon_sym_0x] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3798), + [sym__str_single_quotes] = ACTIONS(3800), + [sym__str_back_ticks] = ACTIONS(3800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), + [anon_sym_err_GT] = ACTIONS(3802), + [anon_sym_out_GT] = ACTIONS(3802), + [anon_sym_e_GT] = ACTIONS(3802), + [anon_sym_o_GT] = ACTIONS(3802), + [anon_sym_err_PLUSout_GT] = ACTIONS(3802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3802), + [anon_sym_o_PLUSe_GT] = ACTIONS(3802), + [anon_sym_e_PLUSo_GT] = ACTIONS(3802), + [aux_sym_unquoted_token1] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3), }, [1460] = { [sym_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_STAR_STAR] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_bit_DASHshl] = ACTIONS(990), - [anon_sym_bit_DASHshr] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_not_DASHin] = ACTIONS(990), - [anon_sym_starts_DASHwith] = ACTIONS(990), - [anon_sym_ends_DASHwith] = ACTIONS(990), - [anon_sym_EQ_TILDE] = ACTIONS(990), - [anon_sym_BANG_TILDE] = ACTIONS(990), - [anon_sym_bit_DASHand] = ACTIONS(990), - [anon_sym_bit_DASHxor] = ACTIONS(990), - [anon_sym_bit_DASHor] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_xor] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_in] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_STAR_STAR] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_bit_DASHshl] = ACTIONS(1191), + [anon_sym_bit_DASHshr] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_LT2] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_not_DASHin] = ACTIONS(1191), + [anon_sym_starts_DASHwith] = ACTIONS(1191), + [anon_sym_ends_DASHwith] = ACTIONS(1191), + [anon_sym_EQ_TILDE] = ACTIONS(1191), + [anon_sym_BANG_TILDE] = ACTIONS(1191), + [anon_sym_bit_DASHand] = ACTIONS(1191), + [anon_sym_bit_DASHxor] = ACTIONS(1191), + [anon_sym_bit_DASHor] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_err_GT] = ACTIONS(1191), + [anon_sym_out_GT] = ACTIONS(1191), + [anon_sym_e_GT] = ACTIONS(1191), + [anon_sym_o_GT] = ACTIONS(1191), + [anon_sym_err_PLUSout_GT] = ACTIONS(1191), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1191), + [anon_sym_o_PLUSe_GT] = ACTIONS(1191), + [anon_sym_e_PLUSo_GT] = ACTIONS(1191), + [aux_sym_unquoted_token1] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(105), }, [1461] = { [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_SLASH_SLASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_bit_DASHshl] = ACTIONS(1298), - [anon_sym_bit_DASHshr] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT2] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_not_DASHin] = ACTIONS(1298), - [anon_sym_starts_DASHwith] = ACTIONS(1298), - [anon_sym_ends_DASHwith] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_BANG_TILDE] = ACTIONS(1298), - [anon_sym_bit_DASHand] = ACTIONS(1298), - [anon_sym_bit_DASHxor] = ACTIONS(1298), - [anon_sym_bit_DASHor] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_xor] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_err_GT] = ACTIONS(1298), - [anon_sym_out_GT] = ACTIONS(1298), - [anon_sym_e_GT] = ACTIONS(1298), - [anon_sym_o_GT] = ACTIONS(1298), - [anon_sym_err_PLUSout_GT] = ACTIONS(1298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1298), - [anon_sym_o_PLUSe_GT] = ACTIONS(1298), - [anon_sym_e_PLUSo_GT] = ACTIONS(1298), - [aux_sym_unquoted_token1] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_bit_DASHshl] = ACTIONS(1425), + [anon_sym_bit_DASHshr] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_LT2] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_not_DASHin] = ACTIONS(1425), + [anon_sym_starts_DASHwith] = ACTIONS(1425), + [anon_sym_ends_DASHwith] = ACTIONS(1425), + [anon_sym_EQ_TILDE] = ACTIONS(1425), + [anon_sym_BANG_TILDE] = ACTIONS(1425), + [anon_sym_bit_DASHand] = ACTIONS(1425), + [anon_sym_bit_DASHxor] = ACTIONS(1425), + [anon_sym_bit_DASHor] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1425), + [anon_sym_xor] = ACTIONS(1425), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_err_GT] = ACTIONS(1425), + [anon_sym_out_GT] = ACTIONS(1425), + [anon_sym_e_GT] = ACTIONS(1425), + [anon_sym_o_GT] = ACTIONS(1425), + [anon_sym_err_PLUSout_GT] = ACTIONS(1425), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1425), + [anon_sym_o_PLUSe_GT] = ACTIONS(1425), + [anon_sym_e_PLUSo_GT] = ACTIONS(1425), + [aux_sym_unquoted_token1] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(105), }, [1462] = { + [sym_cell_path] = STATE(1768), + [sym_path] = STATE(1379), [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_SLASH_SLASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_bit_DASHshl] = ACTIONS(1294), - [anon_sym_bit_DASHshr] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT2] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_not_DASHin] = ACTIONS(1294), - [anon_sym_starts_DASHwith] = ACTIONS(1294), - [anon_sym_ends_DASHwith] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_BANG_TILDE] = ACTIONS(1294), - [anon_sym_bit_DASHand] = ACTIONS(1294), - [anon_sym_bit_DASHxor] = ACTIONS(1294), - [anon_sym_bit_DASHor] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_xor] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_err_GT] = ACTIONS(1294), - [anon_sym_out_GT] = ACTIONS(1294), - [anon_sym_e_GT] = ACTIONS(1294), - [anon_sym_o_GT] = ACTIONS(1294), - [anon_sym_err_PLUSout_GT] = ACTIONS(1294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1294), - [anon_sym_o_PLUSe_GT] = ACTIONS(1294), - [anon_sym_e_PLUSo_GT] = ACTIONS(1294), - [aux_sym_unquoted_token1] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT2] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_null] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_token1] = ACTIONS(913), + [aux_sym__val_number_token2] = ACTIONS(913), + [aux_sym__val_number_token3] = ACTIONS(913), + [aux_sym__val_number_token4] = ACTIONS(913), + [aux_sym__val_number_token5] = ACTIONS(913), + [aux_sym__val_number_token6] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(105), }, [1463] = { [sym_comment] = STATE(1463), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_bit_DASHshl] = ACTIONS(1429), + [anon_sym_bit_DASHshr] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_LT2] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_not_DASHin] = ACTIONS(1429), + [anon_sym_starts_DASHwith] = ACTIONS(1429), + [anon_sym_ends_DASHwith] = ACTIONS(1429), + [anon_sym_EQ_TILDE] = ACTIONS(1429), + [anon_sym_BANG_TILDE] = ACTIONS(1429), + [anon_sym_bit_DASHand] = ACTIONS(1429), + [anon_sym_bit_DASHxor] = ACTIONS(1429), + [anon_sym_bit_DASHor] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1429), + [anon_sym_xor] = ACTIONS(1429), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_err_GT] = ACTIONS(1429), + [anon_sym_out_GT] = ACTIONS(1429), + [anon_sym_e_GT] = ACTIONS(1429), + [anon_sym_o_GT] = ACTIONS(1429), + [anon_sym_err_PLUSout_GT] = ACTIONS(1429), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), + [anon_sym_o_PLUSe_GT] = ACTIONS(1429), + [anon_sym_e_PLUSo_GT] = ACTIONS(1429), + [aux_sym_unquoted_token1] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [1464] = { [sym_comment] = STATE(1464), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(3838), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [ts_builtin_sym_end] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_in] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_bit_DASHshl] = ACTIONS(1433), + [anon_sym_bit_DASHshr] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_LT2] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_not_DASHin] = ACTIONS(1433), + [anon_sym_starts_DASHwith] = ACTIONS(1433), + [anon_sym_ends_DASHwith] = ACTIONS(1433), + [anon_sym_EQ_TILDE] = ACTIONS(1433), + [anon_sym_BANG_TILDE] = ACTIONS(1433), + [anon_sym_bit_DASHand] = ACTIONS(1433), + [anon_sym_bit_DASHxor] = ACTIONS(1433), + [anon_sym_bit_DASHor] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_xor] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_err_GT] = ACTIONS(1433), + [anon_sym_out_GT] = ACTIONS(1433), + [anon_sym_e_GT] = ACTIONS(1433), + [anon_sym_o_GT] = ACTIONS(1433), + [anon_sym_err_PLUSout_GT] = ACTIONS(1433), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1433), + [anon_sym_o_PLUSe_GT] = ACTIONS(1433), + [anon_sym_e_PLUSo_GT] = ACTIONS(1433), + [aux_sym_unquoted_token1] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [1465] = { [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_SLASH_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_bit_DASHshl] = ACTIONS(1288), - [anon_sym_bit_DASHshr] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT2] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_not_DASHin] = ACTIONS(1288), - [anon_sym_starts_DASHwith] = ACTIONS(1288), - [anon_sym_ends_DASHwith] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_BANG_TILDE] = ACTIONS(1288), - [anon_sym_bit_DASHand] = ACTIONS(1288), - [anon_sym_bit_DASHxor] = ACTIONS(1288), - [anon_sym_bit_DASHor] = ACTIONS(1288), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_xor] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_err_GT] = ACTIONS(1288), - [anon_sym_out_GT] = ACTIONS(1288), - [anon_sym_e_GT] = ACTIONS(1288), - [anon_sym_o_GT] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT] = ACTIONS(1288), - [aux_sym_unquoted_token1] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(3808), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1466] = { - [sym_cell_path] = STATE(1817), - [sym_path] = STATE(1348), [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(1003), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1001), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_null] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym__val_number_decimal_token1] = ACTIONS(1001), - [aux_sym__val_number_token1] = ACTIONS(1001), - [aux_sym__val_number_token2] = ACTIONS(1001), - [aux_sym__val_number_token3] = ACTIONS(1001), - [aux_sym__val_number_token4] = ACTIONS(1001), - [aux_sym__val_number_token5] = ACTIONS(1001), - [aux_sym__val_number_token6] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym__str_single_quotes] = ACTIONS(1001), - [sym__str_back_ticks] = ACTIONS(1001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1467] = { - [sym_cell_path] = STATE(1883), - [sym_path] = STATE(1348), + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4340), + [sym__value] = STATE(4340), + [sym_val_nothing] = STATE(4270), + [sym_val_bool] = STATE(4270), + [sym_val_variable] = STATE(4173), + [sym__var] = STATE(3995), + [sym_val_number] = STATE(4017), + [sym__val_number_decimal] = STATE(3951), + [sym__val_number] = STATE(4025), + [sym_val_duration] = STATE(4270), + [sym_val_filesize] = STATE(4270), + [sym_val_binary] = STATE(4270), + [sym_val_string] = STATE(4270), + [sym__str_double_quotes] = STATE(4288), + [sym_val_interpolated] = STATE(4270), + [sym__inter_single_quotes] = STATE(4292), + [sym__inter_double_quotes] = STATE(4295), + [sym_val_list] = STATE(4270), + [sym_val_record] = STATE(4270), + [sym_val_table] = STATE(4270), + [sym_val_closure] = STATE(4270), + [sym__cmd_arg] = STATE(4310), + [sym_redirection] = STATE(4323), + [sym__flag] = STATE(4331), + [sym_short_flag] = STATE(4338), + [sym_long_flag] = STATE(4338), + [sym_long_flag_equals_value] = STATE(4346), + [sym_long_flag_value] = STATE(4391), + [sym_unquoted] = STATE(4374), [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(3816), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3822), + [anon_sym_true] = ACTIONS(3824), + [anon_sym_false] = ACTIONS(3824), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(3571), + [aux_sym__val_number_token2] = ACTIONS(3571), + [aux_sym__val_number_token3] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3826), + [aux_sym__val_number_token5] = ACTIONS(3826), + [aux_sym__val_number_token6] = ACTIONS(3826), + [anon_sym_0b] = ACTIONS(2428), + [anon_sym_0o] = ACTIONS(2428), + [anon_sym_0x] = ACTIONS(2428), + [sym_val_date] = ACTIONS(3828), + [anon_sym_DQUOTE] = ACTIONS(3830), + [sym__str_single_quotes] = ACTIONS(3832), + [sym__str_back_ticks] = ACTIONS(3832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_err_GT] = ACTIONS(3838), + [anon_sym_out_GT] = ACTIONS(3838), + [anon_sym_e_GT] = ACTIONS(3838), + [anon_sym_o_GT] = ACTIONS(3838), + [anon_sym_err_PLUSout_GT] = ACTIONS(3838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3838), + [anon_sym_o_PLUSe_GT] = ACTIONS(3838), + [anon_sym_e_PLUSo_GT] = ACTIONS(3838), + [aux_sym_unquoted_token1] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), }, [1468] = { [sym_comment] = STATE(1468), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1469] = { + [sym_cell_path] = STATE(2035), + [sym_path] = STATE(1351), [sym_comment] = STATE(1469), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, [1470] = { [sym_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(3840), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3098), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(3840), + [anon_sym_alias] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_DASHenv] = ACTIONS(3840), + [anon_sym_mut] = ACTIONS(3840), + [anon_sym_const] = ACTIONS(3840), + [anon_sym_SEMI] = ACTIONS(3840), + [sym_cmd_identifier] = ACTIONS(3840), + [anon_sym_LF] = ACTIONS(3842), + [anon_sym_def] = ACTIONS(3840), + [anon_sym_export_DASHenv] = ACTIONS(3840), + [anon_sym_extern] = ACTIONS(3840), + [anon_sym_module] = ACTIONS(3840), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_RPAREN] = ACTIONS(3840), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_error] = ACTIONS(3840), + [anon_sym_DASH_DASH] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_break] = ACTIONS(3840), + [anon_sym_continue] = ACTIONS(3840), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_loop] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_RBRACE] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_DOT2] = ACTIONS(3844), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_source] = ACTIONS(3840), + [anon_sym_source_DASHenv] = ACTIONS(3840), + [anon_sym_register] = ACTIONS(3840), + [anon_sym_hide] = ACTIONS(3840), + [anon_sym_hide_DASHenv] = ACTIONS(3840), + [anon_sym_overlay] = ACTIONS(3840), + [anon_sym_as] = ACTIONS(3840), + [anon_sym_where] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_not] = ACTIONS(3840), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_true] = ACTIONS(3840), + [anon_sym_false] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3840), + [aux_sym__val_number_token1] = ACTIONS(3840), + [aux_sym__val_number_token2] = ACTIONS(3840), + [aux_sym__val_number_token3] = ACTIONS(3840), + [aux_sym__val_number_token4] = ACTIONS(3840), + [aux_sym__val_number_token5] = ACTIONS(3840), + [aux_sym__val_number_token6] = ACTIONS(3840), + [anon_sym_0b] = ACTIONS(3840), + [anon_sym_0o] = ACTIONS(3840), + [anon_sym_0x] = ACTIONS(3840), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_CARET] = ACTIONS(3840), [anon_sym_POUND] = ACTIONS(105), }, [1471] = { + [sym__match_pattern_record_variable] = STATE(3805), + [sym_expr_parenthesized] = STATE(10506), + [sym_val_variable] = STATE(2955), + [sym__var] = STATE(2634), + [sym_val_number] = STATE(10506), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10506), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(3805), + [sym__record_key] = STATE(10699), [sym_comment] = STATE(1471), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_record_repeat1] = STATE(1471), + [anon_sym_export] = ACTIONS(3846), + [anon_sym_alias] = ACTIONS(3846), + [anon_sym_let] = ACTIONS(3846), + [anon_sym_let_DASHenv] = ACTIONS(3846), + [anon_sym_mut] = ACTIONS(3846), + [anon_sym_const] = ACTIONS(3846), + [sym_cmd_identifier] = ACTIONS(3846), + [anon_sym_def] = ACTIONS(3846), + [anon_sym_export_DASHenv] = ACTIONS(3846), + [anon_sym_extern] = ACTIONS(3846), + [anon_sym_module] = ACTIONS(3846), + [anon_sym_use] = ACTIONS(3846), + [anon_sym_LPAREN] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_error] = ACTIONS(3846), + [anon_sym_list] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3855), + [anon_sym_break] = ACTIONS(3846), + [anon_sym_continue] = ACTIONS(3846), + [anon_sym_for] = ACTIONS(3846), + [anon_sym_in] = ACTIONS(3846), + [anon_sym_loop] = ACTIONS(3846), + [anon_sym_make] = ACTIONS(3846), + [anon_sym_while] = ACTIONS(3846), + [anon_sym_do] = ACTIONS(3846), + [anon_sym_if] = ACTIONS(3846), + [anon_sym_else] = ACTIONS(3846), + [anon_sym_match] = ACTIONS(3846), + [anon_sym_RBRACE] = ACTIONS(3858), + [anon_sym_DOT] = ACTIONS(3860), + [anon_sym_try] = ACTIONS(3846), + [anon_sym_catch] = ACTIONS(3846), + [anon_sym_return] = ACTIONS(3846), + [anon_sym_source] = ACTIONS(3846), + [anon_sym_source_DASHenv] = ACTIONS(3846), + [anon_sym_register] = ACTIONS(3846), + [anon_sym_hide] = ACTIONS(3846), + [anon_sym_hide_DASHenv] = ACTIONS(3846), + [anon_sym_overlay] = ACTIONS(3846), + [anon_sym_new] = ACTIONS(3846), + [anon_sym_as] = ACTIONS(3846), + [anon_sym_PLUS] = ACTIONS(3863), + [aux_sym__val_number_decimal_token1] = ACTIONS(3866), + [aux_sym__val_number_token1] = ACTIONS(3869), + [aux_sym__val_number_token2] = ACTIONS(3869), + [aux_sym__val_number_token3] = ACTIONS(3869), + [aux_sym__val_number_token4] = ACTIONS(3872), + [aux_sym__val_number_token5] = ACTIONS(3869), + [aux_sym__val_number_token6] = ACTIONS(3872), + [anon_sym_DQUOTE] = ACTIONS(3875), + [sym__str_single_quotes] = ACTIONS(3878), + [sym__str_back_ticks] = ACTIONS(3878), + [aux_sym__record_key_token2] = ACTIONS(3881), + [anon_sym_POUND] = ACTIONS(3), }, [1472] = { + [sym_cell_path] = STATE(1786), + [sym_path] = STATE(1534), [sym_comment] = STATE(1472), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(105), }, [1473] = { [sym_comment] = STATE(1473), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3625), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1474] = { - [sym_cell_path] = STATE(1740), - [sym_path] = STATE(1536), [sym_comment] = STATE(1474), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(3843), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(3887), + [anon_sym_alias] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_let_DASHenv] = ACTIONS(3887), + [anon_sym_mut] = ACTIONS(3887), + [anon_sym_const] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3887), + [sym_cmd_identifier] = ACTIONS(3887), + [sym_long_flag_identifier] = ACTIONS(3889), + [anon_sym_LF] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_export_DASHenv] = ACTIONS(3887), + [anon_sym_extern] = ACTIONS(3887), + [anon_sym_module] = ACTIONS(3887), + [anon_sym_use] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3887), + [anon_sym_RPAREN] = ACTIONS(3887), + [anon_sym_DOLLAR] = ACTIONS(3887), + [anon_sym_error] = ACTIONS(3887), + [anon_sym_DASH_DASH] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_loop] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_do] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_RBRACE] = ACTIONS(3887), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_source] = ACTIONS(3887), + [anon_sym_source_DASHenv] = ACTIONS(3887), + [anon_sym_register] = ACTIONS(3887), + [anon_sym_hide] = ACTIONS(3887), + [anon_sym_hide_DASHenv] = ACTIONS(3887), + [anon_sym_overlay] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_null] = ACTIONS(3887), + [anon_sym_true] = ACTIONS(3887), + [anon_sym_false] = ACTIONS(3887), + [aux_sym__val_number_decimal_token1] = ACTIONS(3887), + [aux_sym__val_number_token1] = ACTIONS(3887), + [aux_sym__val_number_token2] = ACTIONS(3887), + [aux_sym__val_number_token3] = ACTIONS(3887), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3887), + [anon_sym_0o] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3887), + [sym_val_date] = ACTIONS(3887), + [anon_sym_DQUOTE] = ACTIONS(3887), + [sym__str_single_quotes] = ACTIONS(3887), + [sym__str_back_ticks] = ACTIONS(3887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3887), [anon_sym_POUND] = ACTIONS(105), }, [1475] = { [sym_comment] = STATE(1475), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3893), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1476] = { [sym_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(3491), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(3846), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(3848), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), + [ts_builtin_sym_end] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1477] = { [sym_comment] = STATE(1477), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(3766), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(3903), + [anon_sym_alias] = ACTIONS(3903), + [anon_sym_let] = ACTIONS(3903), + [anon_sym_let_DASHenv] = ACTIONS(3903), + [anon_sym_mut] = ACTIONS(3903), + [anon_sym_const] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3903), + [sym_cmd_identifier] = ACTIONS(3903), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_def] = ACTIONS(3903), + [anon_sym_export_DASHenv] = ACTIONS(3903), + [anon_sym_extern] = ACTIONS(3903), + [anon_sym_module] = ACTIONS(3903), + [anon_sym_use] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3903), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3903), + [anon_sym_error] = ACTIONS(3903), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_loop] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_do] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3903), + [anon_sym_DOT] = ACTIONS(3903), + [anon_sym_DOT2] = ACTIONS(3907), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_source] = ACTIONS(3903), + [anon_sym_source_DASHenv] = ACTIONS(3903), + [anon_sym_register] = ACTIONS(3903), + [anon_sym_hide] = ACTIONS(3903), + [anon_sym_hide_DASHenv] = ACTIONS(3903), + [anon_sym_overlay] = ACTIONS(3903), + [anon_sym_as] = ACTIONS(3903), + [anon_sym_where] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_not] = ACTIONS(3903), + [anon_sym_null] = ACTIONS(3903), + [anon_sym_true] = ACTIONS(3903), + [anon_sym_false] = ACTIONS(3903), + [aux_sym__val_number_decimal_token1] = ACTIONS(3903), + [aux_sym__val_number_token1] = ACTIONS(3903), + [aux_sym__val_number_token2] = ACTIONS(3903), + [aux_sym__val_number_token3] = ACTIONS(3903), + [aux_sym__val_number_token4] = ACTIONS(3903), + [aux_sym__val_number_token5] = ACTIONS(3903), + [aux_sym__val_number_token6] = ACTIONS(3903), + [anon_sym_0b] = ACTIONS(3903), + [anon_sym_0o] = ACTIONS(3903), + [anon_sym_0x] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [sym__str_single_quotes] = ACTIONS(3903), + [sym__str_back_ticks] = ACTIONS(3903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3903), + [anon_sym_CARET] = ACTIONS(3903), [anon_sym_POUND] = ACTIONS(105), }, [1478] = { - [sym_expr_parenthesized] = STATE(4042), - [sym_val_range] = STATE(4213), - [sym__value] = STATE(4213), - [sym_val_nothing] = STATE(4071), - [sym_val_bool] = STATE(4071), - [sym_val_variable] = STATE(4037), - [sym__var] = STATE(3931), - [sym_val_number] = STATE(3975), - [sym__val_number_decimal] = STATE(3927), - [sym__val_number] = STATE(3971), - [sym_val_duration] = STATE(4071), - [sym_val_filesize] = STATE(4071), - [sym_val_binary] = STATE(4071), - [sym_val_string] = STATE(4071), - [sym__str_double_quotes] = STATE(4118), - [sym_val_interpolated] = STATE(4071), - [sym__inter_single_quotes] = STATE(4084), - [sym__inter_double_quotes] = STATE(4072), - [sym_val_list] = STATE(4071), - [sym_val_record] = STATE(4071), - [sym_val_table] = STATE(4071), - [sym_val_closure] = STATE(4071), - [sym__cmd_arg] = STATE(4225), - [sym_redirection] = STATE(4218), - [sym__flag] = STATE(4219), - [sym_short_flag] = STATE(4152), - [sym_long_flag] = STATE(4152), - [sym_long_flag_equals_value] = STATE(4175), - [sym_unquoted] = STATE(4221), [sym_comment] = STATE(1478), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_PLUS] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3679), - [anon_sym_true] = ACTIONS(3681), - [anon_sym_false] = ACTIONS(3681), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(3683), - [aux_sym__val_number_token2] = ACTIONS(3683), - [aux_sym__val_number_token3] = ACTIONS(3683), - [aux_sym__val_number_token4] = ACTIONS(3685), - [aux_sym__val_number_token5] = ACTIONS(3685), - [aux_sym__val_number_token6] = ACTIONS(3685), - [anon_sym_0b] = ACTIONS(2227), - [anon_sym_0o] = ACTIONS(2227), - [anon_sym_0x] = ACTIONS(2227), - [sym_val_date] = ACTIONS(3687), - [anon_sym_DQUOTE] = ACTIONS(3689), - [sym__str_single_quotes] = ACTIONS(3691), - [sym__str_back_ticks] = ACTIONS(3691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3695), - [anon_sym_err_GT] = ACTIONS(3697), - [anon_sym_out_GT] = ACTIONS(3697), - [anon_sym_e_GT] = ACTIONS(3697), - [anon_sym_o_GT] = ACTIONS(3697), - [anon_sym_err_PLUSout_GT] = ACTIONS(3697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3697), - [anon_sym_o_PLUSe_GT] = ACTIONS(3697), - [anon_sym_e_PLUSo_GT] = ACTIONS(3697), - [aux_sym_unquoted_token1] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(3), - }, - [1479] = { - [sym_comment] = STATE(1479), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(3850), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), - [anon_sym_POUND] = ACTIONS(105), - }, - [1480] = { - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(3852), - [aux_sym__immediate_decimal_token2] = ACTIONS(3854), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1481] = { - [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(3856), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3854), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(3836), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(3858), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), - [anon_sym_POUND] = ACTIONS(105), - }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_as] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(105), - }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), - }, - [1485] = { - [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_export] = ACTIONS(1065), - [anon_sym_alias] = ACTIONS(1065), - [anon_sym_let] = ACTIONS(1065), - [anon_sym_let_DASHenv] = ACTIONS(1065), - [anon_sym_mut] = ACTIONS(1065), - [anon_sym_const] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_cmd_identifier] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_def] = ACTIONS(1065), - [anon_sym_export_DASHenv] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_error] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_loop] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_source] = ACTIONS(1065), - [anon_sym_source_DASHenv] = ACTIONS(1065), - [anon_sym_register] = ACTIONS(1065), - [anon_sym_hide] = ACTIONS(1065), - [anon_sym_hide_DASHenv] = ACTIONS(1065), - [anon_sym_overlay] = ACTIONS(1065), - [anon_sym_as] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_not] = ACTIONS(1065), - [anon_sym_null] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1065), - [anon_sym_false] = ACTIONS(1065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1065), - [aux_sym__val_number_token1] = ACTIONS(1065), - [aux_sym__val_number_token2] = ACTIONS(1065), - [aux_sym__val_number_token3] = ACTIONS(1065), - [aux_sym__val_number_token4] = ACTIONS(1065), - [aux_sym__val_number_token5] = ACTIONS(1065), - [aux_sym__val_number_token6] = ACTIONS(1065), - [sym_filesize_unit] = ACTIONS(1065), - [sym_duration_unit] = ACTIONS(1065), - [anon_sym_0b] = ACTIONS(1065), - [anon_sym_0o] = ACTIONS(1065), - [anon_sym_0x] = ACTIONS(1065), - [sym_val_date] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__str_single_quotes] = ACTIONS(1065), - [sym__str_back_ticks] = ACTIONS(1065), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_POUND] = ACTIONS(105), - }, - [1486] = { - [sym_comment] = STATE(1486), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(105), - }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(3860), - [aux_sym__immediate_decimal_token2] = ACTIONS(3862), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), - }, - [1488] = { - [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(105), - }, - [1489] = { - [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3098), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1490] = { - [sym_comment] = STATE(1490), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(105), - }, - [1491] = { - [sym__match_pattern_record_variable] = STATE(3848), - [sym_expr_parenthesized] = STATE(10868), - [sym_val_variable] = STATE(3064), - [sym__var] = STATE(2585), - [sym_val_number] = STATE(10868), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(10868), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(3848), - [sym__record_key] = STATE(10701), - [sym_comment] = STATE(1491), - [aux_sym__match_pattern_record_repeat1] = STATE(1496), - [anon_sym_export] = ACTIONS(3868), - [anon_sym_alias] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_DASHenv] = ACTIONS(3868), - [anon_sym_mut] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [sym_cmd_identifier] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3868), - [anon_sym_export_DASHenv] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(3868), - [anon_sym_list] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_in] = ACTIONS(3868), - [anon_sym_loop] = ACTIONS(3868), - [anon_sym_make] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(3876), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_catch] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_source] = ACTIONS(3868), - [anon_sym_source_DASHenv] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_hide] = ACTIONS(3868), - [anon_sym_hide_DASHenv] = ACTIONS(3868), - [anon_sym_overlay] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_as] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [aux_sym__record_key_token2] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_let_DASHenv] = ACTIONS(3909), + [anon_sym_mut] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [sym_cmd_identifier] = ACTIONS(3909), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_def] = ACTIONS(3909), + [anon_sym_export_DASHenv] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym_module] = ACTIONS(3909), + [anon_sym_use] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3909), + [anon_sym_error] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_loop] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_DOT2] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_source] = ACTIONS(3909), + [anon_sym_source_DASHenv] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_hide] = ACTIONS(3909), + [anon_sym_hide_DASHenv] = ACTIONS(3909), + [anon_sym_overlay] = ACTIONS(3909), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_null] = ACTIONS(3909), + [anon_sym_true] = ACTIONS(3909), + [anon_sym_false] = ACTIONS(3909), + [aux_sym__val_number_decimal_token1] = ACTIONS(3909), + [aux_sym__val_number_token1] = ACTIONS(3909), + [aux_sym__val_number_token2] = ACTIONS(3909), + [aux_sym__val_number_token3] = ACTIONS(3909), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(3909), + [anon_sym_0o] = ACTIONS(3909), + [anon_sym_0x] = ACTIONS(3909), + [sym_val_date] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [sym__str_single_quotes] = ACTIONS(3909), + [sym__str_back_ticks] = ACTIONS(3909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_POUND] = ACTIONS(105), + }, + [1479] = { + [sym_path] = STATE(1766), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(105), + }, + [1480] = { + [sym_path] = STATE(1766), + [sym_comment] = STATE(1480), + [aux_sym_cell_path_repeat1] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [sym_cmd_identifier] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_not] = ACTIONS(942), + [anon_sym_null] = ACTIONS(942), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(105), + }, + [1481] = { + [sym_comment] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(3920), + [aux_sym__immediate_decimal_token2] = ACTIONS(3922), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1482] = { + [sym_path] = STATE(1766), + [sym_comment] = STATE(1482), + [aux_sym_cell_path_repeat1] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [1483] = { + [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3924), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3701), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1484] = { + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3927), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3922), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1485] = { + [sym_comment] = STATE(1485), + [anon_sym_export] = ACTIONS(3929), + [anon_sym_alias] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_DASHenv] = ACTIONS(3929), + [anon_sym_mut] = ACTIONS(3929), + [anon_sym_const] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3929), + [sym_cmd_identifier] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3931), + [anon_sym_def] = ACTIONS(3929), + [anon_sym_export_DASHenv] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_error] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_break] = ACTIONS(3929), + [anon_sym_continue] = ACTIONS(3929), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_loop] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_DOT2] = ACTIONS(1199), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_source] = ACTIONS(3929), + [anon_sym_source_DASHenv] = ACTIONS(3929), + [anon_sym_register] = ACTIONS(3929), + [anon_sym_hide] = ACTIONS(3929), + [anon_sym_hide_DASHenv] = ACTIONS(3929), + [anon_sym_overlay] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3929), + [anon_sym_false] = ACTIONS(3929), + [aux_sym__val_number_decimal_token1] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3929), + [aux_sym__val_number_token2] = ACTIONS(3929), + [aux_sym__val_number_token3] = ACTIONS(3929), + [aux_sym__val_number_token4] = ACTIONS(3929), + [aux_sym__val_number_token5] = ACTIONS(3929), + [aux_sym__val_number_token6] = ACTIONS(3929), + [anon_sym_0b] = ACTIONS(3929), + [anon_sym_0o] = ACTIONS(3929), + [anon_sym_0x] = ACTIONS(3929), + [sym_val_date] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3929), + [sym__str_back_ticks] = ACTIONS(3929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), + [anon_sym_POUND] = ACTIONS(105), + }, + [1486] = { + [sym_cell_path] = STATE(2005), + [sym_path] = STATE(1479), + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1487] = { + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(3933), + [aux_sym__immediate_decimal_token2] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), + }, + [1488] = { + [sym_comment] = STATE(1488), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1489] = { + [sym_comment] = STATE(1489), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [1490] = { + [sym_cell_path] = STATE(1801), + [sym_path] = STATE(1534), + [sym_comment] = STATE(1490), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(3939), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [1491] = { + [sym_path] = STATE(1631), + [sym_comment] = STATE(1491), + [aux_sym_cell_path_repeat1] = STATE(1357), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), }, [1492] = { [sym_comment] = STATE(1492), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1493] = { [sym_comment] = STATE(1493), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1494] = { + [sym_expr_parenthesized] = STATE(4036), + [sym_val_range] = STATE(4187), + [sym__value] = STATE(4187), + [sym_val_nothing] = STATE(4087), + [sym_val_bool] = STATE(4087), + [sym_val_variable] = STATE(4056), + [sym__var] = STATE(3930), + [sym_val_number] = STATE(3991), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(3974), + [sym_val_duration] = STATE(4087), + [sym_val_filesize] = STATE(4087), + [sym_val_binary] = STATE(4087), + [sym_val_string] = STATE(4087), + [sym__str_double_quotes] = STATE(4140), + [sym_val_interpolated] = STATE(4087), + [sym__inter_single_quotes] = STATE(4107), + [sym__inter_double_quotes] = STATE(4108), + [sym_val_list] = STATE(4087), + [sym_val_record] = STATE(4087), + [sym_val_table] = STATE(4087), + [sym_val_closure] = STATE(4087), + [sym__cmd_arg] = STATE(4263), + [sym_redirection] = STATE(4201), + [sym__flag] = STATE(4203), + [sym_short_flag] = STATE(4174), + [sym_long_flag] = STATE(4174), + [sym_long_flag_equals_value] = STATE(4177), + [sym_unquoted] = STATE(4204), [sym_comment] = STATE(1494), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_PLUS] = ACTIONS(3643), + [anon_sym_null] = ACTIONS(3645), + [anon_sym_true] = ACTIONS(3647), + [anon_sym_false] = ACTIONS(3647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(3649), + [aux_sym__val_number_token2] = ACTIONS(3649), + [aux_sym__val_number_token3] = ACTIONS(3649), + [aux_sym__val_number_token4] = ACTIONS(3651), + [aux_sym__val_number_token5] = ACTIONS(3651), + [aux_sym__val_number_token6] = ACTIONS(3651), + [anon_sym_0b] = ACTIONS(2223), + [anon_sym_0o] = ACTIONS(2223), + [anon_sym_0x] = ACTIONS(2223), + [sym_val_date] = ACTIONS(3653), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym__str_single_quotes] = ACTIONS(3657), + [sym__str_back_ticks] = ACTIONS(3657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3661), + [anon_sym_err_GT] = ACTIONS(3663), + [anon_sym_out_GT] = ACTIONS(3663), + [anon_sym_e_GT] = ACTIONS(3663), + [anon_sym_o_GT] = ACTIONS(3663), + [anon_sym_err_PLUSout_GT] = ACTIONS(3663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3663), + [anon_sym_o_PLUSe_GT] = ACTIONS(3663), + [anon_sym_e_PLUSo_GT] = ACTIONS(3663), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(3), }, [1495] = { [sym_comment] = STATE(1495), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_alias] = ACTIONS(3888), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_let_DASHenv] = ACTIONS(3888), - [anon_sym_mut] = ACTIONS(3888), - [anon_sym_const] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3888), - [sym_cmd_identifier] = ACTIONS(3888), - [anon_sym_LF] = ACTIONS(3890), - [anon_sym_def] = ACTIONS(3888), - [anon_sym_export_DASHenv] = ACTIONS(3888), - [anon_sym_extern] = ACTIONS(3888), - [anon_sym_module] = ACTIONS(3888), - [anon_sym_use] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3888), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_RPAREN] = ACTIONS(3888), - [anon_sym_DOLLAR] = ACTIONS(3888), - [anon_sym_error] = ACTIONS(3888), - [anon_sym_DASH_DASH] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_break] = ACTIONS(3888), - [anon_sym_continue] = ACTIONS(3888), - [anon_sym_for] = ACTIONS(3888), - [anon_sym_loop] = ACTIONS(3888), - [anon_sym_while] = ACTIONS(3888), - [anon_sym_do] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3888), - [anon_sym_match] = ACTIONS(3888), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_RBRACE] = ACTIONS(3888), - [anon_sym_DOT] = ACTIONS(3888), - [anon_sym_DOT2] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3888), - [anon_sym_return] = ACTIONS(3888), - [anon_sym_source] = ACTIONS(3888), - [anon_sym_source_DASHenv] = ACTIONS(3888), - [anon_sym_register] = ACTIONS(3888), - [anon_sym_hide] = ACTIONS(3888), - [anon_sym_hide_DASHenv] = ACTIONS(3888), - [anon_sym_overlay] = ACTIONS(3888), - [anon_sym_as] = ACTIONS(3888), - [anon_sym_where] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3888), - [anon_sym_null] = ACTIONS(3888), - [anon_sym_true] = ACTIONS(3888), - [anon_sym_false] = ACTIONS(3888), - [aux_sym__val_number_decimal_token1] = ACTIONS(3888), - [aux_sym__val_number_token1] = ACTIONS(3888), - [aux_sym__val_number_token2] = ACTIONS(3888), - [aux_sym__val_number_token3] = ACTIONS(3888), - [aux_sym__val_number_token4] = ACTIONS(3888), - [aux_sym__val_number_token5] = ACTIONS(3888), - [aux_sym__val_number_token6] = ACTIONS(3888), - [anon_sym_0b] = ACTIONS(3888), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3888), - [anon_sym_DQUOTE] = ACTIONS(3888), - [sym__str_single_quotes] = ACTIONS(3888), - [sym__str_back_ticks] = ACTIONS(3888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, [1496] = { - [sym__match_pattern_record_variable] = STATE(3848), - [sym_expr_parenthesized] = STATE(10868), - [sym_val_variable] = STATE(3064), - [sym__var] = STATE(2585), - [sym_val_number] = STATE(10868), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(10868), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(3848), - [sym__record_key] = STATE(10701), + [sym_cell_path] = STATE(1969), + [sym_path] = STATE(1351), [sym_comment] = STATE(1496), - [aux_sym__match_pattern_record_repeat1] = STATE(1519), - [anon_sym_export] = ACTIONS(3868), - [anon_sym_alias] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_DASHenv] = ACTIONS(3868), - [anon_sym_mut] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [sym_cmd_identifier] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3868), - [anon_sym_export_DASHenv] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(3868), - [anon_sym_list] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_in] = ACTIONS(3868), - [anon_sym_loop] = ACTIONS(3868), - [anon_sym_make] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_catch] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_source] = ACTIONS(3868), - [anon_sym_source_DASHenv] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_hide] = ACTIONS(3868), - [anon_sym_hide_DASHenv] = ACTIONS(3868), - [anon_sym_overlay] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_as] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [aux_sym__record_key_token2] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), }, [1497] = { - [sym_cell_path] = STATE(1796), - [sym_path] = STATE(1536), [sym_comment] = STATE(1497), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_export] = ACTIONS(3942), + [anon_sym_alias] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_let] = ACTIONS(3942), + [anon_sym_let_DASHenv] = ACTIONS(3942), + [anon_sym_mut] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3942), + [sym_cmd_identifier] = ACTIONS(3942), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_def] = ACTIONS(3942), + [anon_sym_export_DASHenv] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_use] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3942), + [anon_sym_error] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_loop] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_match] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3942), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_source] = ACTIONS(3942), + [anon_sym_source_DASHenv] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_hide] = ACTIONS(3942), + [anon_sym_hide_DASHenv] = ACTIONS(3942), + [anon_sym_overlay] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_null] = ACTIONS(3942), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(3942), + [aux_sym__val_number_token2] = ACTIONS(3942), + [aux_sym__val_number_token3] = ACTIONS(3942), + [aux_sym__val_number_token4] = ACTIONS(3942), + [aux_sym__val_number_token5] = ACTIONS(3942), + [aux_sym__val_number_token6] = ACTIONS(3942), + [anon_sym_0b] = ACTIONS(3942), + [anon_sym_0o] = ACTIONS(3942), + [anon_sym_0x] = ACTIONS(3942), + [sym_val_date] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [sym__str_single_quotes] = ACTIONS(3942), + [sym__str_back_ticks] = ACTIONS(3942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3942), + [anon_sym_CARET] = ACTIONS(3942), [anon_sym_POUND] = ACTIONS(105), }, [1498] = { - [sym_path] = STATE(1608), [sym_comment] = STATE(1498), - [aux_sym_cell_path_repeat1] = STATE(1395), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(3948), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(3950), [anon_sym_POUND] = ACTIONS(105), }, [1499] = { [sym_comment] = STATE(1499), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3952), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1500] = { + [sym__match_pattern_record_variable] = STATE(3805), + [sym_expr_parenthesized] = STATE(10506), + [sym_val_variable] = STATE(2955), + [sym__var] = STATE(2634), + [sym_val_number] = STATE(10506), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10506), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(3805), + [sym__record_key] = STATE(10699), [sym_comment] = STATE(1500), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_record_repeat1] = STATE(1515), + [anon_sym_export] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_let_DASHenv] = ACTIONS(3955), + [anon_sym_mut] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [sym_cmd_identifier] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_export_DASHenv] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym_module] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(3955), + [anon_sym_list] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_loop] = ACTIONS(3955), + [anon_sym_make] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_do] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_else] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_catch] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_source] = ACTIONS(3955), + [anon_sym_source_DASHenv] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_hide] = ACTIONS(3955), + [anon_sym_hide_DASHenv] = ACTIONS(3955), + [anon_sym_overlay] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [aux_sym__record_key_token2] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), }, [1501] = { - [sym_expr_parenthesized] = STATE(11481), - [sym_val_variable] = STATE(11481), - [sym__var] = STATE(7529), - [sym_val_number] = STATE(11481), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(11481), - [sym__str_double_quotes] = STATE(7146), - [sym_record_body] = STATE(10835), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), [sym_comment] = STATE(1501), - [aux_sym_record_body_repeat1] = STATE(1868), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3701), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1502] = { + [sym_comment] = STATE(1502), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(105), + }, + [1503] = { + [sym_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), + }, + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1505] = { + [sym_comment] = STATE(1505), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_alias] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_DASHenv] = ACTIONS(3977), + [anon_sym_mut] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [sym_cmd_identifier] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3979), + [anon_sym_def] = ACTIONS(3977), + [anon_sym_export_DASHenv] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_error] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_loop] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DOT2] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_source] = ACTIONS(3977), + [anon_sym_source_DASHenv] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_hide] = ACTIONS(3977), + [anon_sym_hide_DASHenv] = ACTIONS(3977), + [anon_sym_overlay] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3977), + [anon_sym_where] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_true] = ACTIONS(3977), + [anon_sym_false] = ACTIONS(3977), + [aux_sym__val_number_decimal_token1] = ACTIONS(3977), + [aux_sym__val_number_token1] = ACTIONS(3977), + [aux_sym__val_number_token2] = ACTIONS(3977), + [aux_sym__val_number_token3] = ACTIONS(3977), + [aux_sym__val_number_token4] = ACTIONS(3977), + [aux_sym__val_number_token5] = ACTIONS(3977), + [aux_sym__val_number_token6] = ACTIONS(3977), + [anon_sym_0b] = ACTIONS(3977), + [anon_sym_0o] = ACTIONS(3977), + [anon_sym_0x] = ACTIONS(3977), + [sym_val_date] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [sym__str_single_quotes] = ACTIONS(3977), + [sym__str_back_ticks] = ACTIONS(3977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), + [anon_sym_POUND] = ACTIONS(105), + }, + [1506] = { + [sym_expr_parenthesized] = STATE(10599), + [sym_val_variable] = STATE(10599), + [sym__var] = STATE(7451), + [sym_val_number] = STATE(10599), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10599), + [sym__str_double_quotes] = STATE(7148), + [sym_record_body] = STATE(10921), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), + [sym_comment] = STATE(1506), + [aux_sym_record_body_repeat1] = STATE(1840), [anon_sym_export] = ACTIONS(237), [anon_sym_alias] = ACTIONS(237), [anon_sym_let] = ACTIONS(237), @@ -212950,11 +213322,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(237), [anon_sym_module] = ACTIONS(237), [anon_sym_use] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3983), [anon_sym_error] = ACTIONS(237), [anon_sym_list] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3961), [anon_sym_break] = ACTIONS(237), [anon_sym_continue] = ACTIONS(237), [anon_sym_for] = ACTIONS(237), @@ -212966,8 +213338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(237), [anon_sym_else] = ACTIONS(237), [anon_sym_match] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_DOT] = ACTIONS(3965), [anon_sym_try] = ACTIONS(237), [anon_sym_catch] = ACTIONS(237), [anon_sym_return] = ACTIONS(237), @@ -212979,1886 +213351,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(237), [anon_sym_new] = ACTIONS(237), [anon_sym_as] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), [aux_sym__record_key_token2] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), }, - [1502] = { - [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(105), - }, - [1503] = { - [sym_comment] = STATE(1503), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(3901), - [aux_sym__immediate_decimal_token2] = ACTIONS(3903), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_POUND] = ACTIONS(105), - }, - [1505] = { - [sym_comment] = STATE(1505), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(3905), - [aux_sym__immediate_decimal_token2] = ACTIONS(3907), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(105), - }, - [1506] = { - [sym_cell_path] = STATE(1940), - [sym_path] = STATE(1383), - [sym_comment] = STATE(1506), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, [1507] = { [sym_comment] = STATE(1507), - [anon_sym_export] = ACTIONS(3909), - [anon_sym_alias] = ACTIONS(3909), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_let_DASHenv] = ACTIONS(3909), - [anon_sym_mut] = ACTIONS(3909), - [anon_sym_const] = ACTIONS(3909), - [anon_sym_SEMI] = ACTIONS(3909), - [sym_cmd_identifier] = ACTIONS(3909), - [anon_sym_LF] = ACTIONS(3911), - [anon_sym_def] = ACTIONS(3909), - [anon_sym_export_DASHenv] = ACTIONS(3909), - [anon_sym_extern] = ACTIONS(3909), - [anon_sym_module] = ACTIONS(3909), - [anon_sym_use] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_LPAREN] = ACTIONS(3909), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3909), - [anon_sym_error] = ACTIONS(3909), - [anon_sym_DASH_DASH] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_break] = ACTIONS(3909), - [anon_sym_continue] = ACTIONS(3909), - [anon_sym_for] = ACTIONS(3909), - [anon_sym_loop] = ACTIONS(3909), - [anon_sym_while] = ACTIONS(3909), - [anon_sym_do] = ACTIONS(3909), - [anon_sym_if] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(3909), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_DOT2] = ACTIONS(3913), - [anon_sym_try] = ACTIONS(3909), - [anon_sym_return] = ACTIONS(3909), - [anon_sym_source] = ACTIONS(3909), - [anon_sym_source_DASHenv] = ACTIONS(3909), - [anon_sym_register] = ACTIONS(3909), - [anon_sym_hide] = ACTIONS(3909), - [anon_sym_hide_DASHenv] = ACTIONS(3909), - [anon_sym_overlay] = ACTIONS(3909), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_not] = ACTIONS(3909), - [anon_sym_null] = ACTIONS(3909), - [anon_sym_true] = ACTIONS(3909), - [anon_sym_false] = ACTIONS(3909), - [aux_sym__val_number_decimal_token1] = ACTIONS(3909), - [aux_sym__val_number_token1] = ACTIONS(3909), - [aux_sym__val_number_token2] = ACTIONS(3909), - [aux_sym__val_number_token3] = ACTIONS(3909), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(3909), - [anon_sym_0o] = ACTIONS(3909), - [anon_sym_0x] = ACTIONS(3909), - [sym_val_date] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [sym__str_single_quotes] = ACTIONS(3909), - [sym__str_back_ticks] = ACTIONS(3909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3909), - [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1508] = { [sym_comment] = STATE(1508), - [anon_sym_export] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_let_DASHenv] = ACTIONS(3915), - [anon_sym_mut] = ACTIONS(3915), - [anon_sym_const] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [sym_cmd_identifier] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_def] = ACTIONS(3915), - [anon_sym_export_DASHenv] = ACTIONS(3915), - [anon_sym_extern] = ACTIONS(3915), - [anon_sym_module] = ACTIONS(3915), - [anon_sym_use] = ACTIONS(3915), - [anon_sym_LBRACK] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_error] = ACTIONS(3915), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_loop] = ACTIONS(3915), - [anon_sym_while] = ACTIONS(3915), - [anon_sym_do] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3915), - [anon_sym_RBRACE] = ACTIONS(3915), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_DOT2] = ACTIONS(3919), - [anon_sym_try] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_source] = ACTIONS(3915), - [anon_sym_source_DASHenv] = ACTIONS(3915), - [anon_sym_register] = ACTIONS(3915), - [anon_sym_hide] = ACTIONS(3915), - [anon_sym_hide_DASHenv] = ACTIONS(3915), - [anon_sym_overlay] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_not] = ACTIONS(3915), - [anon_sym_null] = ACTIONS(3915), - [anon_sym_true] = ACTIONS(3915), - [anon_sym_false] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(3915), - [aux_sym__val_number_token1] = ACTIONS(3915), - [aux_sym__val_number_token2] = ACTIONS(3915), - [aux_sym__val_number_token3] = ACTIONS(3915), - [aux_sym__val_number_token4] = ACTIONS(3915), - [aux_sym__val_number_token5] = ACTIONS(3915), - [aux_sym__val_number_token6] = ACTIONS(3915), - [anon_sym_0b] = ACTIONS(3915), - [anon_sym_0o] = ACTIONS(3915), - [anon_sym_0x] = ACTIONS(3915), - [sym_val_date] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1509] = { [sym_comment] = STATE(1509), - [anon_sym_export] = ACTIONS(3921), - [anon_sym_alias] = ACTIONS(3921), - [anon_sym_let] = ACTIONS(3921), - [anon_sym_let_DASHenv] = ACTIONS(3921), - [anon_sym_mut] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3921), - [sym_cmd_identifier] = ACTIONS(3921), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_def] = ACTIONS(3921), - [anon_sym_export_DASHenv] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym_module] = ACTIONS(3921), - [anon_sym_use] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_DOLLAR] = ACTIONS(3921), - [anon_sym_error] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_loop] = ACTIONS(3921), - [anon_sym_while] = ACTIONS(3921), - [anon_sym_do] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_match] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_DOT2] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_source] = ACTIONS(3921), - [anon_sym_source_DASHenv] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_hide] = ACTIONS(3921), - [anon_sym_hide_DASHenv] = ACTIONS(3921), - [anon_sym_overlay] = ACTIONS(3921), - [anon_sym_as] = ACTIONS(3921), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3921), - [anon_sym_true] = ACTIONS(3921), - [anon_sym_false] = ACTIONS(3921), - [aux_sym__val_number_decimal_token1] = ACTIONS(3921), - [aux_sym__val_number_token1] = ACTIONS(3921), - [aux_sym__val_number_token2] = ACTIONS(3921), - [aux_sym__val_number_token3] = ACTIONS(3921), - [aux_sym__val_number_token4] = ACTIONS(3921), - [aux_sym__val_number_token5] = ACTIONS(3921), - [aux_sym__val_number_token6] = ACTIONS(3921), - [anon_sym_0b] = ACTIONS(3921), - [anon_sym_0o] = ACTIONS(3921), - [anon_sym_0x] = ACTIONS(3921), - [sym_val_date] = ACTIONS(3921), - [anon_sym_DQUOTE] = ACTIONS(3921), - [sym__str_single_quotes] = ACTIONS(3921), - [sym__str_back_ticks] = ACTIONS(3921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(3987), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1510] = { [sym_comment] = STATE(1510), - [anon_sym_export] = ACTIONS(3927), - [anon_sym_alias] = ACTIONS(3927), - [anon_sym_let] = ACTIONS(3927), - [anon_sym_let_DASHenv] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_const] = ACTIONS(3927), - [anon_sym_SEMI] = ACTIONS(3927), - [sym_cmd_identifier] = ACTIONS(3927), - [anon_sym_LF] = ACTIONS(3929), - [anon_sym_def] = ACTIONS(3927), - [anon_sym_export_DASHenv] = ACTIONS(3927), - [anon_sym_extern] = ACTIONS(3927), - [anon_sym_module] = ACTIONS(3927), - [anon_sym_use] = ACTIONS(3927), - [anon_sym_LBRACK] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_error] = ACTIONS(3927), - [anon_sym_DASH_DASH] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_loop] = ACTIONS(3927), - [anon_sym_while] = ACTIONS(3927), - [anon_sym_do] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_RBRACE] = ACTIONS(3927), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT2] = ACTIONS(3931), - [anon_sym_try] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_source] = ACTIONS(3927), - [anon_sym_source_DASHenv] = ACTIONS(3927), - [anon_sym_register] = ACTIONS(3927), - [anon_sym_hide] = ACTIONS(3927), - [anon_sym_hide_DASHenv] = ACTIONS(3927), - [anon_sym_overlay] = ACTIONS(3927), - [anon_sym_as] = ACTIONS(3927), - [anon_sym_where] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3927), - [anon_sym_not] = ACTIONS(3927), - [anon_sym_null] = ACTIONS(3927), - [anon_sym_true] = ACTIONS(3927), - [anon_sym_false] = ACTIONS(3927), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_token1] = ACTIONS(3927), - [aux_sym__val_number_token2] = ACTIONS(3927), - [aux_sym__val_number_token3] = ACTIONS(3927), - [aux_sym__val_number_token4] = ACTIONS(3927), - [aux_sym__val_number_token5] = ACTIONS(3927), - [aux_sym__val_number_token6] = ACTIONS(3927), - [anon_sym_0b] = ACTIONS(3927), - [anon_sym_0o] = ACTIONS(3927), - [anon_sym_0x] = ACTIONS(3927), - [sym_val_date] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(3927), - [sym__str_single_quotes] = ACTIONS(3927), - [sym__str_back_ticks] = ACTIONS(3927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3927), - [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(3989), + [aux_sym__immediate_decimal_token2] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1511] = { [sym_comment] = STATE(1511), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1512] = { [sym_comment] = STATE(1512), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), [anon_sym_POUND] = ACTIONS(105), }, [1513] = { + [sym_expr_parenthesized] = STATE(10599), + [sym_val_variable] = STATE(10599), + [sym__var] = STATE(7451), + [sym_val_number] = STATE(10599), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10599), + [sym__str_double_quotes] = STATE(7148), + [sym_record_body] = STATE(10891), + [sym_record_entry] = STATE(10182), + [sym__record_key] = STATE(10885), [sym_comment] = STATE(1513), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_alias] = ACTIONS(3935), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_let_DASHenv] = ACTIONS(3935), - [anon_sym_mut] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3935), - [sym_cmd_identifier] = ACTIONS(3935), - [anon_sym_LF] = ACTIONS(3937), - [anon_sym_def] = ACTIONS(3935), - [anon_sym_export_DASHenv] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_use] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_RPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3935), - [anon_sym_error] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_loop] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_match] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3935), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_DOT2] = ACTIONS(3939), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_source] = ACTIONS(3935), - [anon_sym_source_DASHenv] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_hide] = ACTIONS(3935), - [anon_sym_hide_DASHenv] = ACTIONS(3935), - [anon_sym_overlay] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3935), - [anon_sym_false] = ACTIONS(3935), - [aux_sym__val_number_decimal_token1] = ACTIONS(3935), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3935), - [aux_sym__val_number_token5] = ACTIONS(3935), - [aux_sym__val_number_token6] = ACTIONS(3935), - [anon_sym_0b] = ACTIONS(3935), - [anon_sym_0o] = ACTIONS(3935), - [anon_sym_0x] = ACTIONS(3935), - [sym_val_date] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(3935), - [sym__str_single_quotes] = ACTIONS(3935), - [sym__str_back_ticks] = ACTIONS(3935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3935), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_record_body_repeat1] = STATE(1840), + [anon_sym_export] = ACTIONS(237), + [anon_sym_alias] = ACTIONS(237), + [anon_sym_let] = ACTIONS(237), + [anon_sym_let_DASHenv] = ACTIONS(237), + [anon_sym_mut] = ACTIONS(237), + [anon_sym_const] = ACTIONS(237), + [sym_cmd_identifier] = ACTIONS(237), + [anon_sym_def] = ACTIONS(237), + [anon_sym_export_DASHenv] = ACTIONS(237), + [anon_sym_extern] = ACTIONS(237), + [anon_sym_module] = ACTIONS(237), + [anon_sym_use] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3983), + [anon_sym_error] = ACTIONS(237), + [anon_sym_list] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(237), + [anon_sym_continue] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_in] = ACTIONS(237), + [anon_sym_loop] = ACTIONS(237), + [anon_sym_make] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_do] = ACTIONS(237), + [anon_sym_if] = ACTIONS(237), + [anon_sym_else] = ACTIONS(237), + [anon_sym_match] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(237), + [anon_sym_catch] = ACTIONS(237), + [anon_sym_return] = ACTIONS(237), + [anon_sym_source] = ACTIONS(237), + [anon_sym_source_DASHenv] = ACTIONS(237), + [anon_sym_register] = ACTIONS(237), + [anon_sym_hide] = ACTIONS(237), + [anon_sym_hide_DASHenv] = ACTIONS(237), + [anon_sym_overlay] = ACTIONS(237), + [anon_sym_new] = ACTIONS(237), + [anon_sym_as] = ACTIONS(237), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [aux_sym__record_key_token2] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), }, [1514] = { [sym_comment] = STATE(1514), - [anon_sym_export] = ACTIONS(3941), - [anon_sym_alias] = ACTIONS(3941), - [anon_sym_let] = ACTIONS(3941), - [anon_sym_let_DASHenv] = ACTIONS(3941), - [anon_sym_mut] = ACTIONS(3941), - [anon_sym_const] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [sym_cmd_identifier] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3943), - [anon_sym_def] = ACTIONS(3941), - [anon_sym_export_DASHenv] = ACTIONS(3941), - [anon_sym_extern] = ACTIONS(3941), - [anon_sym_module] = ACTIONS(3941), - [anon_sym_use] = ACTIONS(3941), - [anon_sym_LBRACK] = ACTIONS(3941), - [anon_sym_LPAREN] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_error] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_break] = ACTIONS(3941), - [anon_sym_continue] = ACTIONS(3941), - [anon_sym_for] = ACTIONS(3941), - [anon_sym_loop] = ACTIONS(3941), - [anon_sym_while] = ACTIONS(3941), - [anon_sym_do] = ACTIONS(3941), - [anon_sym_if] = ACTIONS(3941), - [anon_sym_match] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_DOT2] = ACTIONS(3945), - [anon_sym_try] = ACTIONS(3941), - [anon_sym_return] = ACTIONS(3941), - [anon_sym_source] = ACTIONS(3941), - [anon_sym_source_DASHenv] = ACTIONS(3941), - [anon_sym_register] = ACTIONS(3941), - [anon_sym_hide] = ACTIONS(3941), - [anon_sym_hide_DASHenv] = ACTIONS(3941), - [anon_sym_overlay] = ACTIONS(3941), - [anon_sym_as] = ACTIONS(3941), - [anon_sym_where] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3941), - [anon_sym_not] = ACTIONS(3941), - [anon_sym_null] = ACTIONS(3941), - [anon_sym_true] = ACTIONS(3941), - [anon_sym_false] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(3941), - [aux_sym__val_number_token1] = ACTIONS(3941), - [aux_sym__val_number_token2] = ACTIONS(3941), - [aux_sym__val_number_token3] = ACTIONS(3941), - [aux_sym__val_number_token4] = ACTIONS(3941), - [aux_sym__val_number_token5] = ACTIONS(3941), - [aux_sym__val_number_token6] = ACTIONS(3941), - [anon_sym_0b] = ACTIONS(3941), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym__str_single_quotes] = ACTIONS(3941), - [sym__str_back_ticks] = ACTIONS(3941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), - [anon_sym_CARET] = ACTIONS(3941), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [1515] = { + [sym__match_pattern_record_variable] = STATE(3805), + [sym_expr_parenthesized] = STATE(10506), + [sym_val_variable] = STATE(2955), + [sym__var] = STATE(2634), + [sym_val_number] = STATE(10506), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10506), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(3805), + [sym__record_key] = STATE(10699), [sym_comment] = STATE(1515), - [anon_sym_export] = ACTIONS(3947), - [anon_sym_alias] = ACTIONS(3947), - [anon_sym_let] = ACTIONS(3947), - [anon_sym_let_DASHenv] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [sym_cmd_identifier] = ACTIONS(3947), - [sym_long_flag_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3947), - [anon_sym_export_DASHenv] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym_module] = ACTIONS(3947), - [anon_sym_use] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [anon_sym_error] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_loop] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_RBRACE] = ACTIONS(3947), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_source] = ACTIONS(3947), - [anon_sym_source_DASHenv] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_hide] = ACTIONS(3947), - [anon_sym_hide_DASHenv] = ACTIONS(3947), - [anon_sym_overlay] = ACTIONS(3947), - [anon_sym_as] = ACTIONS(3947), - [anon_sym_where] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(3947), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3947), - [aux_sym__val_number_token5] = ACTIONS(3947), - [aux_sym__val_number_token6] = ACTIONS(3947), - [anon_sym_0b] = ACTIONS(3947), - [anon_sym_0o] = ACTIONS(3947), - [anon_sym_0x] = ACTIONS(3947), - [sym_val_date] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym__match_pattern_record_repeat1] = STATE(1471), + [anon_sym_export] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_let_DASHenv] = ACTIONS(3955), + [anon_sym_mut] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [sym_cmd_identifier] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_export_DASHenv] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym_module] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(3955), + [anon_sym_list] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_loop] = ACTIONS(3955), + [anon_sym_make] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_do] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_else] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3995), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_catch] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_source] = ACTIONS(3955), + [anon_sym_source_DASHenv] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_hide] = ACTIONS(3955), + [anon_sym_hide_DASHenv] = ACTIONS(3955), + [anon_sym_overlay] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [aux_sym__record_key_token2] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), }, [1516] = { [sym_comment] = STATE(1516), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(3953), - [aux_sym__immediate_decimal_token2] = ACTIONS(3955), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_as] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1517] = { [sym_comment] = STATE(1517), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(3957), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1518] = { [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [sym_filesize_unit] = ACTIONS(3961), - [sym_duration_unit] = ACTIONS(3963), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_alias] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_let_DASHenv] = ACTIONS(1177), + [anon_sym_mut] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [sym_cmd_identifier] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1179), + [anon_sym_def] = ACTIONS(1177), + [anon_sym_export_DASHenv] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_error] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_DOT] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_source] = ACTIONS(1177), + [anon_sym_source_DASHenv] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_hide] = ACTIONS(1177), + [anon_sym_hide_DASHenv] = ACTIONS(1177), + [anon_sym_overlay] = ACTIONS(1177), + [anon_sym_as] = ACTIONS(1177), + [anon_sym_where] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_not] = ACTIONS(1177), + [anon_sym_null] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_token1] = ACTIONS(1177), + [aux_sym__val_number_token2] = ACTIONS(1177), + [aux_sym__val_number_token3] = ACTIONS(1177), + [aux_sym__val_number_token4] = ACTIONS(1177), + [aux_sym__val_number_token5] = ACTIONS(1177), + [aux_sym__val_number_token6] = ACTIONS(1177), + [sym_filesize_unit] = ACTIONS(1177), + [sym_duration_unit] = ACTIONS(1177), + [anon_sym_0b] = ACTIONS(1177), + [anon_sym_0o] = ACTIONS(1177), + [anon_sym_0x] = ACTIONS(1177), + [sym_val_date] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym__str_single_quotes] = ACTIONS(1177), + [sym__str_back_ticks] = ACTIONS(1177), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), [anon_sym_POUND] = ACTIONS(105), }, [1519] = { - [sym__match_pattern_record_variable] = STATE(3848), - [sym_expr_parenthesized] = STATE(10868), - [sym_val_variable] = STATE(3064), - [sym__var] = STATE(2585), - [sym_val_number] = STATE(10868), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(10868), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(3848), - [sym__record_key] = STATE(10701), [sym_comment] = STATE(1519), - [aux_sym__match_pattern_record_repeat1] = STATE(1519), - [anon_sym_export] = ACTIONS(3965), - [anon_sym_alias] = ACTIONS(3965), - [anon_sym_let] = ACTIONS(3965), - [anon_sym_let_DASHenv] = ACTIONS(3965), - [anon_sym_mut] = ACTIONS(3965), - [anon_sym_const] = ACTIONS(3965), - [sym_cmd_identifier] = ACTIONS(3965), - [anon_sym_def] = ACTIONS(3965), - [anon_sym_export_DASHenv] = ACTIONS(3965), - [anon_sym_extern] = ACTIONS(3965), - [anon_sym_module] = ACTIONS(3965), - [anon_sym_use] = ACTIONS(3965), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_DOLLAR] = ACTIONS(3971), - [anon_sym_error] = ACTIONS(3965), - [anon_sym_list] = ACTIONS(3965), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_break] = ACTIONS(3965), - [anon_sym_continue] = ACTIONS(3965), - [anon_sym_for] = ACTIONS(3965), - [anon_sym_in] = ACTIONS(3965), - [anon_sym_loop] = ACTIONS(3965), - [anon_sym_make] = ACTIONS(3965), - [anon_sym_while] = ACTIONS(3965), - [anon_sym_do] = ACTIONS(3965), - [anon_sym_if] = ACTIONS(3965), - [anon_sym_else] = ACTIONS(3965), - [anon_sym_match] = ACTIONS(3965), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_try] = ACTIONS(3965), - [anon_sym_catch] = ACTIONS(3965), - [anon_sym_return] = ACTIONS(3965), - [anon_sym_source] = ACTIONS(3965), - [anon_sym_source_DASHenv] = ACTIONS(3965), - [anon_sym_register] = ACTIONS(3965), - [anon_sym_hide] = ACTIONS(3965), - [anon_sym_hide_DASHenv] = ACTIONS(3965), - [anon_sym_overlay] = ACTIONS(3965), - [anon_sym_new] = ACTIONS(3965), - [anon_sym_as] = ACTIONS(3965), - [anon_sym_PLUS] = ACTIONS(3982), - [aux_sym__val_number_decimal_token1] = ACTIONS(3985), - [aux_sym__val_number_token1] = ACTIONS(3988), - [aux_sym__val_number_token2] = ACTIONS(3988), - [aux_sym__val_number_token3] = ACTIONS(3988), - [aux_sym__val_number_token4] = ACTIONS(3991), - [aux_sym__val_number_token5] = ACTIONS(3988), - [aux_sym__val_number_token6] = ACTIONS(3991), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym__str_single_quotes] = ACTIONS(3997), - [sym__str_back_ticks] = ACTIONS(3997), - [aux_sym__record_key_token2] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(3), - }, - [1520] = { - [sym_comment] = STATE(1520), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(4003), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(4005), - [anon_sym_POUND] = ACTIONS(105), - }, - [1521] = { - [sym_comment] = STATE(1521), - [anon_sym_export] = ACTIONS(4007), - [anon_sym_alias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(4009), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_let_DASHenv] = ACTIONS(4007), - [anon_sym_mut] = ACTIONS(4007), - [anon_sym_const] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(4007), - [sym_cmd_identifier] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4011), - [anon_sym_def] = ACTIONS(4007), - [anon_sym_export_DASHenv] = ACTIONS(4007), - [anon_sym_extern] = ACTIONS(4007), - [anon_sym_module] = ACTIONS(4007), - [anon_sym_use] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_DOLLAR] = ACTIONS(4007), - [anon_sym_error] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_break] = ACTIONS(4007), - [anon_sym_continue] = ACTIONS(4007), - [anon_sym_for] = ACTIONS(4007), - [anon_sym_loop] = ACTIONS(4007), - [anon_sym_while] = ACTIONS(4007), - [anon_sym_do] = ACTIONS(4007), - [anon_sym_if] = ACTIONS(4007), - [anon_sym_match] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_try] = ACTIONS(4007), - [anon_sym_return] = ACTIONS(4007), - [anon_sym_source] = ACTIONS(4007), - [anon_sym_source_DASHenv] = ACTIONS(4007), - [anon_sym_register] = ACTIONS(4007), - [anon_sym_hide] = ACTIONS(4007), - [anon_sym_hide_DASHenv] = ACTIONS(4007), - [anon_sym_overlay] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_not] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4007), - [anon_sym_false] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4007), - [aux_sym__val_number_token1] = ACTIONS(4007), - [aux_sym__val_number_token2] = ACTIONS(4007), - [aux_sym__val_number_token3] = ACTIONS(4007), - [aux_sym__val_number_token4] = ACTIONS(4007), - [aux_sym__val_number_token5] = ACTIONS(4007), - [aux_sym__val_number_token6] = ACTIONS(4007), - [anon_sym_0b] = ACTIONS(4007), - [anon_sym_0o] = ACTIONS(4007), - [anon_sym_0x] = ACTIONS(4007), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4007), - [sym__str_single_quotes] = ACTIONS(4007), - [sym__str_back_ticks] = ACTIONS(4007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_POUND] = ACTIONS(105), - }, - [1522] = { - [sym_comment] = STATE(1522), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_let_DASHenv] = ACTIONS(4013), - [anon_sym_mut] = ACTIONS(4013), - [anon_sym_const] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4013), - [sym_cmd_identifier] = ACTIONS(4013), - [anon_sym_LF] = ACTIONS(4015), - [anon_sym_def] = ACTIONS(4013), - [anon_sym_export_DASHenv] = ACTIONS(4013), - [anon_sym_extern] = ACTIONS(4013), - [anon_sym_module] = ACTIONS(4013), - [anon_sym_use] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_DOLLAR] = ACTIONS(4013), - [anon_sym_error] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_break] = ACTIONS(4013), - [anon_sym_continue] = ACTIONS(4013), - [anon_sym_for] = ACTIONS(4013), - [anon_sym_loop] = ACTIONS(4013), - [anon_sym_while] = ACTIONS(4013), - [anon_sym_do] = ACTIONS(4013), - [anon_sym_if] = ACTIONS(4013), - [anon_sym_match] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_DOT2] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(4013), - [anon_sym_return] = ACTIONS(4013), - [anon_sym_source] = ACTIONS(4013), - [anon_sym_source_DASHenv] = ACTIONS(4013), - [anon_sym_register] = ACTIONS(4013), - [anon_sym_hide] = ACTIONS(4013), - [anon_sym_hide_DASHenv] = ACTIONS(4013), - [anon_sym_overlay] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_not] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4013), - [anon_sym_false] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(4013), - [aux_sym__val_number_token1] = ACTIONS(4013), - [aux_sym__val_number_token2] = ACTIONS(4013), - [aux_sym__val_number_token3] = ACTIONS(4013), - [aux_sym__val_number_token4] = ACTIONS(4013), - [aux_sym__val_number_token5] = ACTIONS(4013), - [aux_sym__val_number_token6] = ACTIONS(4013), - [anon_sym_0b] = ACTIONS(4013), - [anon_sym_0o] = ACTIONS(4013), - [anon_sym_0x] = ACTIONS(4013), - [sym_val_date] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym__str_single_quotes] = ACTIONS(4013), - [sym__str_back_ticks] = ACTIONS(4013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4013), - [anon_sym_CARET] = ACTIONS(4013), - [anon_sym_POUND] = ACTIONS(105), - }, - [1523] = { - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(3491), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4017), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(105), - }, - [1524] = { - [sym_cell_path] = STATE(2110), - [sym_path] = STATE(1383), - [sym_comment] = STATE(1524), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [1525] = { - [sym_cell_path] = STATE(2091), - [sym_path] = STATE(1383), - [sym_comment] = STATE(1525), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(105), - }, - [1526] = { - [sym_cell_path] = STATE(2128), - [sym_path] = STATE(1537), - [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(105), - }, - [1527] = { - [sym_comment] = STATE(1527), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1528] = { - [sym_path] = STATE(1897), - [sym_comment] = STATE(1528), - [aux_sym_cell_path_repeat1] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [1529] = { - [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -214875,6 +214211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1054), [anon_sym_LBRACK] = ACTIONS(1054), [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_error] = ACTIONS(1054), [anon_sym_DASH_DASH] = ACTIONS(1054), @@ -214888,8 +214225,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), + [anon_sym_DOT2] = ACTIONS(1199), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -214900,7 +214238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(4028), [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_not] = ACTIONS(1054), [anon_sym_null] = ACTIONS(1054), @@ -214925,284 +214262,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [1530] = { - [sym_path] = STATE(1897), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [sym_cmd_identifier] = ACTIONS(1015), - [anon_sym_LF] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT2] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [aux_sym__val_number_token4] = ACTIONS(1015), - [aux_sym__val_number_token5] = ACTIONS(1015), - [aux_sym__val_number_token6] = ACTIONS(1015), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(105), + [1520] = { + [sym__match_pattern_record_variable] = STATE(3805), + [sym_expr_parenthesized] = STATE(10506), + [sym_val_variable] = STATE(2955), + [sym__var] = STATE(2634), + [sym_val_number] = STATE(10506), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10506), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(3805), + [sym__record_key] = STATE(10699), + [sym_comment] = STATE(1520), + [aux_sym__match_pattern_record_repeat1] = STATE(1531), + [anon_sym_export] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_let_DASHenv] = ACTIONS(3955), + [anon_sym_mut] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [sym_cmd_identifier] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_export_DASHenv] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym_module] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(3955), + [anon_sym_list] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_loop] = ACTIONS(3955), + [anon_sym_make] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_do] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_else] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_catch] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_source] = ACTIONS(3955), + [anon_sym_source_DASHenv] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_hide] = ACTIONS(3955), + [anon_sym_hide_DASHenv] = ACTIONS(3955), + [anon_sym_overlay] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [aux_sym__record_key_token2] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), }, - [1531] = { - [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(3491), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4033), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4036), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), + [1521] = { + [sym_comment] = STATE(1521), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, - [1532] = { - [sym_expr_parenthesized] = STATE(11481), - [sym_val_variable] = STATE(11481), - [sym__var] = STATE(7529), - [sym_val_number] = STATE(11481), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(11481), - [sym__str_double_quotes] = STATE(7146), - [sym_record_body] = STATE(11303), - [sym_record_entry] = STATE(10184), - [sym__record_key] = STATE(10706), - [sym_comment] = STATE(1532), - [aux_sym_record_body_repeat1] = STATE(1868), - [anon_sym_export] = ACTIONS(237), - [anon_sym_alias] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_DASHenv] = ACTIONS(237), - [anon_sym_mut] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [sym_cmd_identifier] = ACTIONS(237), - [anon_sym_def] = ACTIONS(237), - [anon_sym_export_DASHenv] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_module] = ACTIONS(237), - [anon_sym_use] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3897), - [anon_sym_error] = ACTIONS(237), - [anon_sym_list] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(237), - [anon_sym_continue] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_in] = ACTIONS(237), - [anon_sym_loop] = ACTIONS(237), - [anon_sym_make] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_else] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(237), - [anon_sym_catch] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_source] = ACTIONS(237), - [anon_sym_source_DASHenv] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_hide] = ACTIONS(237), - [anon_sym_hide_DASHenv] = ACTIONS(237), - [anon_sym_overlay] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_as] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [aux_sym__record_key_token2] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), + [1522] = { + [sym_comment] = STATE(1522), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(4004), + [aux_sym__immediate_decimal_token2] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), }, - [1533] = { - [sym__match_pattern_record_variable] = STATE(3848), - [sym_expr_parenthesized] = STATE(10868), - [sym_val_variable] = STATE(3064), - [sym__var] = STATE(2585), - [sym_val_number] = STATE(10868), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(10868), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(3848), - [sym__record_key] = STATE(10701), - [sym_comment] = STATE(1533), - [aux_sym__match_pattern_record_repeat1] = STATE(1535), - [anon_sym_export] = ACTIONS(3868), - [anon_sym_alias] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_DASHenv] = ACTIONS(3868), - [anon_sym_mut] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [sym_cmd_identifier] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3868), - [anon_sym_export_DASHenv] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(3868), - [anon_sym_list] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_in] = ACTIONS(3868), - [anon_sym_loop] = ACTIONS(3868), - [anon_sym_make] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_catch] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_source] = ACTIONS(3868), - [anon_sym_source_DASHenv] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_hide] = ACTIONS(3868), - [anon_sym_hide_DASHenv] = ACTIONS(3868), - [anon_sym_overlay] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_as] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [aux_sym__record_key_token2] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), + [1523] = { + [sym_comment] = STATE(1523), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(4010), + [anon_sym_POUND] = ACTIONS(105), }, - [1534] = { - [sym_comment] = STATE(1534), + [1524] = { + [sym_comment] = STATE(1524), [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), @@ -215234,7 +214571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), [anon_sym_try] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), [anon_sym_source] = ACTIONS(1054), @@ -215245,7 +214581,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(4028), [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_not] = ACTIONS(1054), [anon_sym_null] = ACTIONS(1054), @@ -215258,6 +214593,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1054), [aux_sym__val_number_token5] = ACTIONS(1054), [aux_sym__val_number_token6] = ACTIONS(1054), + [sym_filesize_unit] = ACTIONS(4012), + [sym_duration_unit] = ACTIONS(4014), [anon_sym_0b] = ACTIONS(1054), [anon_sym_0o] = ACTIONS(1054), [anon_sym_0x] = ACTIONS(1054), @@ -215270,79 +214607,631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [1535] = { - [sym__match_pattern_record_variable] = STATE(3848), - [sym_expr_parenthesized] = STATE(10868), - [sym_val_variable] = STATE(3064), - [sym__var] = STATE(2585), - [sym_val_number] = STATE(10868), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(10868), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(3848), - [sym__record_key] = STATE(10701), - [sym_comment] = STATE(1535), - [aux_sym__match_pattern_record_repeat1] = STATE(1519), - [anon_sym_export] = ACTIONS(3868), - [anon_sym_alias] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_DASHenv] = ACTIONS(3868), - [anon_sym_mut] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [sym_cmd_identifier] = ACTIONS(3868), - [anon_sym_def] = ACTIONS(3868), - [anon_sym_export_DASHenv] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(3868), - [anon_sym_list] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_in] = ACTIONS(3868), - [anon_sym_loop] = ACTIONS(3868), - [anon_sym_make] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_catch] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_source] = ACTIONS(3868), - [anon_sym_source_DASHenv] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_hide] = ACTIONS(3868), - [anon_sym_hide_DASHenv] = ACTIONS(3868), - [anon_sym_overlay] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_as] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), + [1525] = { + [sym_comment] = STATE(1525), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(105), + }, + [1526] = { + [sym_comment] = STATE(1526), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token1] = ACTIONS(4016), + [aux_sym__immediate_decimal_token2] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(105), + }, + [1527] = { + [sym_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [1528] = { + [sym_comment] = STATE(1528), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [aux_sym__immediate_decimal_token1] = ACTIONS(4020), + [aux_sym__immediate_decimal_token2] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(105), + }, + [1529] = { + [sym_comment] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1530] = { + [sym_cell_path] = STATE(1957), + [sym_path] = STATE(1351), + [sym_comment] = STATE(1530), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(105), + }, + [1531] = { + [sym__match_pattern_record_variable] = STATE(3805), + [sym_expr_parenthesized] = STATE(10506), + [sym_val_variable] = STATE(2955), + [sym__var] = STATE(2634), + [sym_val_number] = STATE(10506), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10506), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(3805), + [sym__record_key] = STATE(10699), + [sym_comment] = STATE(1531), + [aux_sym__match_pattern_record_repeat1] = STATE(1471), + [anon_sym_export] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_let_DASHenv] = ACTIONS(3955), + [anon_sym_mut] = ACTIONS(3955), + [anon_sym_const] = ACTIONS(3955), + [sym_cmd_identifier] = ACTIONS(3955), + [anon_sym_def] = ACTIONS(3955), + [anon_sym_export_DASHenv] = ACTIONS(3955), + [anon_sym_extern] = ACTIONS(3955), + [anon_sym_module] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(3955), + [anon_sym_list] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_loop] = ACTIONS(3955), + [anon_sym_make] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_do] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_else] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_catch] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_source] = ACTIONS(3955), + [anon_sym_source_DASHenv] = ACTIONS(3955), + [anon_sym_register] = ACTIONS(3955), + [anon_sym_hide] = ACTIONS(3955), + [anon_sym_hide_DASHenv] = ACTIONS(3955), + [anon_sym_overlay] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), [aux_sym__record_key_token2] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), }, - [1536] = { - [sym_path] = STATE(1608), - [sym_comment] = STATE(1536), - [aux_sym_cell_path_repeat1] = STATE(1498), + [1532] = { + [sym_comment] = STATE(1532), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), + [anon_sym_POUND] = ACTIONS(105), + }, + [1533] = { + [sym_comment] = STATE(1533), + [anon_sym_export] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_let_DASHenv] = ACTIONS(4026), + [anon_sym_mut] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4026), + [sym_cmd_identifier] = ACTIONS(4026), + [anon_sym_LF] = ACTIONS(4028), + [anon_sym_def] = ACTIONS(4026), + [anon_sym_export_DASHenv] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_use] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4026), + [anon_sym_error] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_loop] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_DOT2] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_source] = ACTIONS(4026), + [anon_sym_source_DASHenv] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_hide] = ACTIONS(4026), + [anon_sym_hide_DASHenv] = ACTIONS(4026), + [anon_sym_overlay] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_null] = ACTIONS(4026), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4026), + [aux_sym__val_number_token1] = ACTIONS(4026), + [aux_sym__val_number_token2] = ACTIONS(4026), + [aux_sym__val_number_token3] = ACTIONS(4026), + [aux_sym__val_number_token4] = ACTIONS(4026), + [aux_sym__val_number_token5] = ACTIONS(4026), + [aux_sym__val_number_token6] = ACTIONS(4026), + [anon_sym_0b] = ACTIONS(4026), + [anon_sym_0o] = ACTIONS(4026), + [anon_sym_0x] = ACTIONS(4026), + [sym_val_date] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym__str_single_quotes] = ACTIONS(4026), + [sym__str_back_ticks] = ACTIONS(4026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4026), + [anon_sym_CARET] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(105), + }, + [1534] = { + [sym_path] = STATE(1631), + [sym_comment] = STATE(1534), + [aux_sym_cell_path_repeat1] = STATE(1491), [anon_sym_export] = ACTIONS(903), [anon_sym_alias] = ACTIONS(903), [anon_sym_let] = ACTIONS(903), @@ -215374,7 +215263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(3100), + [anon_sym_DOT2] = ACTIONS(3095), [anon_sym_try] = ACTIONS(903), [anon_sym_return] = ACTIONS(903), [anon_sym_source] = ACTIONS(903), @@ -215408,2944 +215297,2060 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1537] = { - [sym_path] = STATE(1897), - [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), + [1535] = { + [sym_comment] = STATE(1535), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_alias] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_let_DASHenv] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4032), + [sym_cmd_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_def] = ACTIONS(4032), + [anon_sym_export_DASHenv] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_use] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_error] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_loop] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_DOT2] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_source] = ACTIONS(4032), + [anon_sym_source_DASHenv] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_hide_DASHenv] = ACTIONS(4032), + [anon_sym_overlay] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [aux_sym__val_number_decimal_token1] = ACTIONS(4032), + [aux_sym__val_number_token1] = ACTIONS(4032), + [aux_sym__val_number_token2] = ACTIONS(4032), + [aux_sym__val_number_token3] = ACTIONS(4032), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(4032), + [anon_sym_0o] = ACTIONS(4032), + [anon_sym_0x] = ACTIONS(4032), + [sym_val_date] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [sym__str_single_quotes] = ACTIONS(4032), + [sym__str_back_ticks] = ACTIONS(4032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_POUND] = ACTIONS(105), + }, + [1536] = { + [sym_comment] = STATE(1536), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_alias] = ACTIONS(4036), + [anon_sym_let] = ACTIONS(4036), + [anon_sym_let_DASHenv] = ACTIONS(4036), + [anon_sym_mut] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4036), + [sym_cmd_identifier] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4038), + [anon_sym_def] = ACTIONS(4036), + [anon_sym_export_DASHenv] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_use] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4036), + [anon_sym_error] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_loop] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_match] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_DOT2] = ACTIONS(4040), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_source] = ACTIONS(4036), + [anon_sym_source_DASHenv] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_hide] = ACTIONS(4036), + [anon_sym_hide_DASHenv] = ACTIONS(4036), + [anon_sym_overlay] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_where] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_null] = ACTIONS(4036), + [anon_sym_true] = ACTIONS(4036), + [anon_sym_false] = ACTIONS(4036), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_token1] = ACTIONS(4036), + [aux_sym__val_number_token2] = ACTIONS(4036), + [aux_sym__val_number_token3] = ACTIONS(4036), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(4036), + [anon_sym_0o] = ACTIONS(4036), + [anon_sym_0x] = ACTIONS(4036), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym__str_single_quotes] = ACTIONS(4036), + [sym__str_back_ticks] = ACTIONS(4036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(105), + }, + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(3806), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(4042), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1538] = { + [sym_expr_parenthesized] = STATE(3228), + [sym__immediate_decimal] = STATE(3229), + [sym_val_variable] = STATE(3228), + [sym__var] = STATE(2661), [sym_comment] = STATE(1538), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_alias] = ACTIONS(3888), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_let_DASHenv] = ACTIONS(3888), - [anon_sym_mut] = ACTIONS(3888), - [anon_sym_const] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3888), - [sym_cmd_identifier] = ACTIONS(3888), - [anon_sym_LF] = ACTIONS(3890), - [anon_sym_def] = ACTIONS(3888), - [anon_sym_export_DASHenv] = ACTIONS(3888), - [anon_sym_extern] = ACTIONS(3888), - [anon_sym_module] = ACTIONS(3888), - [anon_sym_use] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3888), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_RPAREN] = ACTIONS(3888), - [anon_sym_DOLLAR] = ACTIONS(3888), - [anon_sym_error] = ACTIONS(3888), - [anon_sym_DASH_DASH] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_break] = ACTIONS(3888), - [anon_sym_continue] = ACTIONS(3888), - [anon_sym_for] = ACTIONS(3888), - [anon_sym_loop] = ACTIONS(3888), - [anon_sym_while] = ACTIONS(3888), - [anon_sym_do] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3888), - [anon_sym_match] = ACTIONS(3888), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_RBRACE] = ACTIONS(3888), - [anon_sym_DOT] = ACTIONS(3888), - [anon_sym_try] = ACTIONS(3888), - [anon_sym_return] = ACTIONS(3888), - [anon_sym_source] = ACTIONS(3888), - [anon_sym_source_DASHenv] = ACTIONS(3888), - [anon_sym_register] = ACTIONS(3888), - [anon_sym_hide] = ACTIONS(3888), - [anon_sym_hide_DASHenv] = ACTIONS(3888), - [anon_sym_overlay] = ACTIONS(3888), - [anon_sym_as] = ACTIONS(3888), - [anon_sym_where] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3888), - [anon_sym_null] = ACTIONS(3888), - [anon_sym_true] = ACTIONS(3888), - [anon_sym_false] = ACTIONS(3888), - [aux_sym__val_number_decimal_token1] = ACTIONS(3888), - [aux_sym__val_number_token1] = ACTIONS(3888), - [aux_sym__val_number_token2] = ACTIONS(3888), - [aux_sym__val_number_token3] = ACTIONS(3888), - [aux_sym__val_number_token4] = ACTIONS(3888), - [aux_sym__val_number_token5] = ACTIONS(3888), - [aux_sym__val_number_token6] = ACTIONS(3888), - [anon_sym_0b] = ACTIONS(3888), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3888), - [anon_sym_DQUOTE] = ACTIONS(3888), - [sym__str_single_quotes] = ACTIONS(3888), - [sym__str_back_ticks] = ACTIONS(3888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(4052), + [aux_sym__immediate_decimal_token1] = ACTIONS(4054), + [anon_sym_DASH2] = ACTIONS(4056), + [anon_sym_PLUS2] = ACTIONS(4058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [sym__entry_separator] = ACTIONS(2017), + [aux_sym__record_key_token2] = ACTIONS(2015), [anon_sym_POUND] = ACTIONS(105), }, [1539] = { [sym_comment] = STATE(1539), - [anon_sym_export] = ACTIONS(4044), - [anon_sym_alias] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4044), - [anon_sym_let_DASHenv] = ACTIONS(4044), - [anon_sym_mut] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [sym_cmd_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_def] = ACTIONS(4044), - [anon_sym_export_DASHenv] = ACTIONS(4044), - [anon_sym_extern] = ACTIONS(4044), - [anon_sym_module] = ACTIONS(4044), - [anon_sym_use] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(4044), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [anon_sym_error] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_loop] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(4044), - [anon_sym_do] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_match] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_DOT] = ACTIONS(4044), - [anon_sym_try] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_source] = ACTIONS(4044), - [anon_sym_source_DASHenv] = ACTIONS(4044), - [anon_sym_register] = ACTIONS(4044), - [anon_sym_hide] = ACTIONS(4044), - [anon_sym_hide_DASHenv] = ACTIONS(4044), - [anon_sym_overlay] = ACTIONS(4044), - [anon_sym_as] = ACTIONS(4044), - [anon_sym_where] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_not] = ACTIONS(4044), - [anon_sym_null] = ACTIONS(4044), - [anon_sym_true] = ACTIONS(4044), - [anon_sym_false] = ACTIONS(4044), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_token1] = ACTIONS(4044), - [aux_sym__val_number_token2] = ACTIONS(4044), - [aux_sym__val_number_token3] = ACTIONS(4044), - [aux_sym__val_number_token4] = ACTIONS(4044), - [aux_sym__val_number_token5] = ACTIONS(4044), - [aux_sym__val_number_token6] = ACTIONS(4044), - [anon_sym_0b] = ACTIONS(4044), - [anon_sym_0o] = ACTIONS(4044), - [anon_sym_0x] = ACTIONS(4044), - [sym_val_date] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4044), - [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_alias] = ACTIONS(4060), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_let_DASHenv] = ACTIONS(4060), + [anon_sym_mut] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4060), + [sym_cmd_identifier] = ACTIONS(4060), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_def] = ACTIONS(4060), + [anon_sym_export_DASHenv] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_use] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_error] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_loop] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_source] = ACTIONS(4060), + [anon_sym_source_DASHenv] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_hide] = ACTIONS(4060), + [anon_sym_hide_DASHenv] = ACTIONS(4060), + [anon_sym_overlay] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_where] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_null] = ACTIONS(4060), + [anon_sym_true] = ACTIONS(4060), + [anon_sym_false] = ACTIONS(4060), + [aux_sym__val_number_decimal_token1] = ACTIONS(4060), + [aux_sym__val_number_token1] = ACTIONS(4060), + [aux_sym__val_number_token2] = ACTIONS(4060), + [aux_sym__val_number_token3] = ACTIONS(4060), + [aux_sym__val_number_token4] = ACTIONS(4060), + [aux_sym__val_number_token5] = ACTIONS(4060), + [aux_sym__val_number_token6] = ACTIONS(4060), + [anon_sym_0b] = ACTIONS(4060), + [anon_sym_0o] = ACTIONS(4060), + [anon_sym_0x] = ACTIONS(4060), + [sym_val_date] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym__str_single_quotes] = ACTIONS(4060), + [sym__str_back_ticks] = ACTIONS(4060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), [anon_sym_POUND] = ACTIONS(105), }, [1540] = { [sym_comment] = STATE(1540), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(3937), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_alias] = ACTIONS(3935), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_let_DASHenv] = ACTIONS(3935), - [anon_sym_mut] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3935), - [sym_cmd_identifier] = ACTIONS(3935), - [anon_sym_LF] = ACTIONS(3937), - [anon_sym_def] = ACTIONS(3935), - [anon_sym_export_DASHenv] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_use] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3935), - [anon_sym_error] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_loop] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_match] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3935), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_DOT2] = ACTIONS(4048), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_source] = ACTIONS(3935), - [anon_sym_source_DASHenv] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_hide] = ACTIONS(3935), - [anon_sym_hide_DASHenv] = ACTIONS(3935), - [anon_sym_overlay] = ACTIONS(3935), - [anon_sym_as] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3935), - [anon_sym_false] = ACTIONS(3935), - [aux_sym__val_number_decimal_token1] = ACTIONS(3935), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3935), - [aux_sym__val_number_token5] = ACTIONS(3935), - [aux_sym__val_number_token6] = ACTIONS(3935), - [anon_sym_0b] = ACTIONS(3935), - [anon_sym_0o] = ACTIONS(3935), - [anon_sym_0x] = ACTIONS(3935), - [sym_val_date] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(3935), - [sym__str_single_quotes] = ACTIONS(3935), - [sym__str_back_ticks] = ACTIONS(3935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3935), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(2829), [anon_sym_POUND] = ACTIONS(105), }, [1542] = { - [sym_path] = STATE(1897), [sym_comment] = STATE(1542), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_null] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_token1] = ACTIONS(903), - [aux_sym__val_number_token2] = ACTIONS(903), - [aux_sym__val_number_token3] = ACTIONS(903), - [aux_sym__val_number_token4] = ACTIONS(903), - [aux_sym__val_number_token5] = ACTIONS(903), - [aux_sym__val_number_token6] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(4064), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(4066), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_alias] = ACTIONS(4068), + [anon_sym_let] = ACTIONS(4068), + [anon_sym_let_DASHenv] = ACTIONS(4068), + [anon_sym_mut] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4068), + [sym_cmd_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_def] = ACTIONS(4068), + [anon_sym_export_DASHenv] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_use] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_error] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_loop] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_source] = ACTIONS(4068), + [anon_sym_source_DASHenv] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_hide] = ACTIONS(4068), + [anon_sym_hide_DASHenv] = ACTIONS(4068), + [anon_sym_overlay] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4068), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_token1] = ACTIONS(4068), + [aux_sym__val_number_token2] = ACTIONS(4068), + [aux_sym__val_number_token3] = ACTIONS(4068), + [aux_sym__val_number_token4] = ACTIONS(4068), + [aux_sym__val_number_token5] = ACTIONS(4068), + [aux_sym__val_number_token6] = ACTIONS(4068), + [anon_sym_0b] = ACTIONS(4068), + [anon_sym_0o] = ACTIONS(4068), + [anon_sym_0x] = ACTIONS(4068), + [sym_val_date] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym__str_single_quotes] = ACTIONS(4068), + [sym__str_back_ticks] = ACTIONS(4068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4068), + [anon_sym_CARET] = ACTIONS(4068), [anon_sym_POUND] = ACTIONS(105), }, [1544] = { [sym_comment] = STATE(1544), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [1545] = { - [sym__expression] = STATE(7475), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1631), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1545), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4052), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_alias] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_let_DASHenv] = ACTIONS(4072), + [anon_sym_mut] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4072), + [sym_cmd_identifier] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_def] = ACTIONS(4072), + [anon_sym_export_DASHenv] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_use] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_DOLLAR] = ACTIONS(4072), + [anon_sym_error] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_loop] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_source] = ACTIONS(4072), + [anon_sym_source_DASHenv] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_hide] = ACTIONS(4072), + [anon_sym_hide_DASHenv] = ACTIONS(4072), + [anon_sym_overlay] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_where] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4072), + [aux_sym__val_number_token1] = ACTIONS(4072), + [aux_sym__val_number_token2] = ACTIONS(4072), + [aux_sym__val_number_token3] = ACTIONS(4072), + [aux_sym__val_number_token4] = ACTIONS(4072), + [aux_sym__val_number_token5] = ACTIONS(4072), + [aux_sym__val_number_token6] = ACTIONS(4072), + [anon_sym_0b] = ACTIONS(4072), + [anon_sym_0o] = ACTIONS(4072), + [anon_sym_0x] = ACTIONS(4072), + [sym_val_date] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym__str_single_quotes] = ACTIONS(4072), + [sym__str_back_ticks] = ACTIONS(4072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), [anon_sym_POUND] = ACTIONS(105), }, [1546] = { - [sym__expression] = STATE(7475), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1632), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1546), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4052), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_alias] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_let_DASHenv] = ACTIONS(4076), + [anon_sym_mut] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [sym_cmd_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4078), + [anon_sym_def] = ACTIONS(4076), + [anon_sym_export_DASHenv] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_use] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_DOLLAR] = ACTIONS(4076), + [anon_sym_error] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_loop] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_source] = ACTIONS(4076), + [anon_sym_source_DASHenv] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_hide] = ACTIONS(4076), + [anon_sym_hide_DASHenv] = ACTIONS(4076), + [anon_sym_overlay] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_where] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4076), + [anon_sym_false] = ACTIONS(4076), [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(4076), + [aux_sym__val_number_token5] = ACTIONS(4076), + [aux_sym__val_number_token6] = ACTIONS(4076), + [anon_sym_0b] = ACTIONS(4076), + [anon_sym_0o] = ACTIONS(4076), + [anon_sym_0x] = ACTIONS(4076), + [sym_val_date] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym__str_single_quotes] = ACTIONS(4076), + [sym__str_back_ticks] = ACTIONS(4076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), [anon_sym_POUND] = ACTIONS(105), }, [1547] = { - [sym__expression] = STATE(7527), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1605), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1547), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1548] = { - [sym__expression] = STATE(7527), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1604), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1548), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(4082), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1549] = { - [sym__expression] = STATE(7527), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1601), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1549), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(3806), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(4084), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1550] = { - [sym__expression] = STATE(7527), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1597), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1550), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT2] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_QMARK2] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_export] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4086), + [anon_sym_let] = ACTIONS(4086), + [anon_sym_let_DASHenv] = ACTIONS(4086), + [anon_sym_mut] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4086), + [sym_cmd_identifier] = ACTIONS(4086), + [anon_sym_LF] = ACTIONS(4088), + [anon_sym_def] = ACTIONS(4086), + [anon_sym_export_DASHenv] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym_module] = ACTIONS(4086), + [anon_sym_use] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_RPAREN] = ACTIONS(4086), + [anon_sym_DOLLAR] = ACTIONS(4086), + [anon_sym_error] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_loop] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_match] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_DOT] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_source] = ACTIONS(4086), + [anon_sym_source_DASHenv] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_hide] = ACTIONS(4086), + [anon_sym_hide_DASHenv] = ACTIONS(4086), + [anon_sym_overlay] = ACTIONS(4086), + [anon_sym_as] = ACTIONS(4086), + [anon_sym_where] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_null] = ACTIONS(4086), + [anon_sym_true] = ACTIONS(4086), + [anon_sym_false] = ACTIONS(4086), + [aux_sym__val_number_decimal_token1] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(4086), + [aux_sym__val_number_token2] = ACTIONS(4086), + [aux_sym__val_number_token3] = ACTIONS(4086), + [aux_sym__val_number_token4] = ACTIONS(4086), + [aux_sym__val_number_token5] = ACTIONS(4086), + [aux_sym__val_number_token6] = ACTIONS(4086), + [anon_sym_0b] = ACTIONS(4086), + [anon_sym_0o] = ACTIONS(4086), + [anon_sym_0x] = ACTIONS(4086), + [sym_val_date] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4086), + [sym__str_back_ticks] = ACTIONS(4086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4086), + [anon_sym_CARET] = ACTIONS(4086), [anon_sym_POUND] = ACTIONS(105), }, [1552] = { - [sym__expression] = STATE(7527), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(7512), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), [sym_comment] = STATE(1552), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4090), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1553] = { - [sym_cell_path] = STATE(2133), - [sym_path] = STATE(1542), [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(4098), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), + [anon_sym_export] = ACTIONS(4090), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_let_DASHenv] = ACTIONS(4090), + [anon_sym_mut] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4090), + [sym_cmd_identifier] = ACTIONS(4090), + [anon_sym_LF] = ACTIONS(4092), + [anon_sym_def] = ACTIONS(4090), + [anon_sym_export_DASHenv] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym_module] = ACTIONS(4090), + [anon_sym_use] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4090), + [anon_sym_error] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_loop] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_match] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_source] = ACTIONS(4090), + [anon_sym_source_DASHenv] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_hide] = ACTIONS(4090), + [anon_sym_hide_DASHenv] = ACTIONS(4090), + [anon_sym_overlay] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_null] = ACTIONS(4090), + [anon_sym_true] = ACTIONS(4090), + [anon_sym_false] = ACTIONS(4090), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_token1] = ACTIONS(4090), + [aux_sym__val_number_token2] = ACTIONS(4090), + [aux_sym__val_number_token3] = ACTIONS(4090), + [aux_sym__val_number_token4] = ACTIONS(4090), + [aux_sym__val_number_token5] = ACTIONS(4090), + [aux_sym__val_number_token6] = ACTIONS(4090), + [anon_sym_0b] = ACTIONS(4090), + [anon_sym_0o] = ACTIONS(4090), + [anon_sym_0x] = ACTIONS(4090), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym__str_single_quotes] = ACTIONS(4090), + [sym__str_back_ticks] = ACTIONS(4090), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), [anon_sym_POUND] = ACTIONS(105), }, [1554] = { - [sym__expression] = STATE(7453), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1545), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), [sym_comment] = STATE(1554), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_LF] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4101), - [anon_sym_PIPE] = ACTIONS(4101), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_as] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [1555] = { [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(1230), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_as] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [1556] = { [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_DOT2] = ACTIONS(1115), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_QMARK2] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_as] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(105), }, [1557] = { [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [sym_cmd_identifier] = ACTIONS(1054), - [anon_sym_LF] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT2] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_QMARK2] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_not] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(4094), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1558] = { + [sym__expression] = STATE(7455), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1577), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1558), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1559] = { [sym_comment] = STATE(1559), - [anon_sym_export] = ACTIONS(4105), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_let] = ACTIONS(4105), - [anon_sym_let_DASHenv] = ACTIONS(4105), - [anon_sym_mut] = ACTIONS(4105), - [anon_sym_const] = ACTIONS(4105), - [anon_sym_SEMI] = ACTIONS(4105), - [sym_cmd_identifier] = ACTIONS(4105), - [anon_sym_LF] = ACTIONS(4107), - [anon_sym_def] = ACTIONS(4105), - [anon_sym_export_DASHenv] = ACTIONS(4105), - [anon_sym_extern] = ACTIONS(4105), - [anon_sym_module] = ACTIONS(4105), - [anon_sym_use] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(4105), - [anon_sym_RPAREN] = ACTIONS(4105), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_error] = ACTIONS(4105), - [anon_sym_DASH_DASH] = ACTIONS(4105), - [anon_sym_DASH] = ACTIONS(4105), - [anon_sym_break] = ACTIONS(4105), - [anon_sym_continue] = ACTIONS(4105), - [anon_sym_for] = ACTIONS(4105), - [anon_sym_loop] = ACTIONS(4105), - [anon_sym_while] = ACTIONS(4105), - [anon_sym_do] = ACTIONS(4105), - [anon_sym_if] = ACTIONS(4105), - [anon_sym_match] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_RBRACE] = ACTIONS(4105), - [anon_sym_DOT] = ACTIONS(4105), - [anon_sym_try] = ACTIONS(4105), - [anon_sym_return] = ACTIONS(4105), - [anon_sym_source] = ACTIONS(4105), - [anon_sym_source_DASHenv] = ACTIONS(4105), - [anon_sym_register] = ACTIONS(4105), - [anon_sym_hide] = ACTIONS(4105), - [anon_sym_hide_DASHenv] = ACTIONS(4105), - [anon_sym_overlay] = ACTIONS(4105), - [anon_sym_as] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_PLUS] = ACTIONS(4105), - [anon_sym_not] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4105), - [anon_sym_false] = ACTIONS(4105), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(4105), - [aux_sym__val_number_token2] = ACTIONS(4105), - [aux_sym__val_number_token3] = ACTIONS(4105), - [aux_sym__val_number_token4] = ACTIONS(4105), - [aux_sym__val_number_token5] = ACTIONS(4105), - [aux_sym__val_number_token6] = ACTIONS(4105), - [anon_sym_0b] = ACTIONS(4105), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4105), - [anon_sym_DQUOTE] = ACTIONS(4105), - [sym__str_single_quotes] = ACTIONS(4105), - [sym__str_back_ticks] = ACTIONS(4105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4105), - [anon_sym_CARET] = ACTIONS(4105), + [ts_builtin_sym_end] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_let_DASHenv] = ACTIONS(4026), + [anon_sym_mut] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4026), + [sym_cmd_identifier] = ACTIONS(4026), + [anon_sym_LF] = ACTIONS(4028), + [anon_sym_def] = ACTIONS(4026), + [anon_sym_export_DASHenv] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_use] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4026), + [anon_sym_error] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_loop] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_DOT2] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_source] = ACTIONS(4026), + [anon_sym_source_DASHenv] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_hide] = ACTIONS(4026), + [anon_sym_hide_DASHenv] = ACTIONS(4026), + [anon_sym_overlay] = ACTIONS(4026), + [anon_sym_as] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_null] = ACTIONS(4026), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4026), + [aux_sym__val_number_token1] = ACTIONS(4026), + [aux_sym__val_number_token2] = ACTIONS(4026), + [aux_sym__val_number_token3] = ACTIONS(4026), + [aux_sym__val_number_token4] = ACTIONS(4026), + [aux_sym__val_number_token5] = ACTIONS(4026), + [aux_sym__val_number_token6] = ACTIONS(4026), + [anon_sym_0b] = ACTIONS(4026), + [anon_sym_0o] = ACTIONS(4026), + [anon_sym_0x] = ACTIONS(4026), + [sym_val_date] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym__str_single_quotes] = ACTIONS(4026), + [sym__str_back_ticks] = ACTIONS(4026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4026), + [anon_sym_CARET] = ACTIONS(4026), [anon_sym_POUND] = ACTIONS(105), }, [1560] = { [sym_comment] = STATE(1560), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1561] = { [sym_comment] = STATE(1561), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_alias] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_let_DASHenv] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [sym_cmd_identifier] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_def] = ACTIONS(1274), - [anon_sym_export_DASHenv] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_source] = ACTIONS(1274), - [anon_sym_source_DASHenv] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_hide_DASHenv] = ACTIONS(1274), - [anon_sym_overlay] = ACTIONS(1274), - [anon_sym_as] = ACTIONS(1274), - [anon_sym_where] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_not] = ACTIONS(1274), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(1274), - [aux_sym__val_number_token2] = ACTIONS(1274), - [aux_sym__val_number_token3] = ACTIONS(1274), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1274), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_0b] = ACTIONS(1274), - [anon_sym_0o] = ACTIONS(1274), - [anon_sym_0x] = ACTIONS(1274), - [sym_val_date] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym__str_single_quotes] = ACTIONS(1274), - [sym__str_back_ticks] = ACTIONS(1274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [1562] = { [sym_comment] = STATE(1562), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [sym_cmd_identifier] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1278), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_where] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_not] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1278), - [aux_sym__val_number_token5] = ACTIONS(1278), - [aux_sym__val_number_token6] = ACTIONS(1278), - [anon_sym_0b] = ACTIONS(1278), - [anon_sym_0o] = ACTIONS(1278), - [anon_sym_0x] = ACTIONS(1278), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(105), }, [1563] = { + [sym_expr_parenthesized] = STATE(2987), + [sym__immediate_decimal] = STATE(2990), + [sym_val_variable] = STATE(2987), + [sym__var] = STATE(2708), [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3890), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_alias] = ACTIONS(3888), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_let_DASHenv] = ACTIONS(3888), - [anon_sym_mut] = ACTIONS(3888), - [anon_sym_const] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3888), - [sym_cmd_identifier] = ACTIONS(3888), - [anon_sym_LF] = ACTIONS(3890), - [anon_sym_def] = ACTIONS(3888), - [anon_sym_export_DASHenv] = ACTIONS(3888), - [anon_sym_extern] = ACTIONS(3888), - [anon_sym_module] = ACTIONS(3888), - [anon_sym_use] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3888), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_DOLLAR] = ACTIONS(3888), - [anon_sym_error] = ACTIONS(3888), - [anon_sym_DASH_DASH] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_break] = ACTIONS(3888), - [anon_sym_continue] = ACTIONS(3888), - [anon_sym_for] = ACTIONS(3888), - [anon_sym_loop] = ACTIONS(3888), - [anon_sym_while] = ACTIONS(3888), - [anon_sym_do] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3888), - [anon_sym_match] = ACTIONS(3888), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_DOT] = ACTIONS(3888), - [anon_sym_DOT2] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3888), - [anon_sym_return] = ACTIONS(3888), - [anon_sym_source] = ACTIONS(3888), - [anon_sym_source_DASHenv] = ACTIONS(3888), - [anon_sym_register] = ACTIONS(3888), - [anon_sym_hide] = ACTIONS(3888), - [anon_sym_hide_DASHenv] = ACTIONS(3888), - [anon_sym_overlay] = ACTIONS(3888), - [anon_sym_as] = ACTIONS(3888), - [anon_sym_where] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3888), - [anon_sym_null] = ACTIONS(3888), - [anon_sym_true] = ACTIONS(3888), - [anon_sym_false] = ACTIONS(3888), - [aux_sym__val_number_decimal_token1] = ACTIONS(3888), - [aux_sym__val_number_token1] = ACTIONS(3888), - [aux_sym__val_number_token2] = ACTIONS(3888), - [aux_sym__val_number_token3] = ACTIONS(3888), - [aux_sym__val_number_token4] = ACTIONS(3888), - [aux_sym__val_number_token5] = ACTIONS(3888), - [aux_sym__val_number_token6] = ACTIONS(3888), - [anon_sym_0b] = ACTIONS(3888), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3888), - [anon_sym_DQUOTE] = ACTIONS(3888), - [sym__str_single_quotes] = ACTIONS(3888), - [sym__str_back_ticks] = ACTIONS(3888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_list] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_in] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_make] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_else] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_catch] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_as] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(4142), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [anon_sym_DASH2] = ACTIONS(4146), + [anon_sym_PLUS2] = ACTIONS(4148), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [sym__entry_separator] = ACTIONS(1973), + [aux_sym__record_key_token2] = ACTIONS(1971), [anon_sym_POUND] = ACTIONS(105), }, [1564] = { + [sym__expression] = STATE(7455), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1584), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3836), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), - [anon_sym_POUND] = ACTIONS(105), - }, - [1565] = { - [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), - }, - [1566] = { - [sym_comment] = STATE(1566), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4109), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4112), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(105), - }, - [1567] = { - [sym_comment] = STATE(1567), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_alias] = ACTIONS(4114), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_let_DASHenv] = ACTIONS(4114), - [anon_sym_mut] = ACTIONS(4114), - [anon_sym_const] = ACTIONS(4114), - [anon_sym_SEMI] = ACTIONS(4114), - [sym_cmd_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(4116), - [anon_sym_def] = ACTIONS(4114), - [anon_sym_export_DASHenv] = ACTIONS(4114), - [anon_sym_extern] = ACTIONS(4114), - [anon_sym_module] = ACTIONS(4114), - [anon_sym_use] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_DOLLAR] = ACTIONS(4114), - [anon_sym_error] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_break] = ACTIONS(4114), - [anon_sym_continue] = ACTIONS(4114), - [anon_sym_for] = ACTIONS(4114), - [anon_sym_loop] = ACTIONS(4114), - [anon_sym_while] = ACTIONS(4114), - [anon_sym_do] = ACTIONS(4114), - [anon_sym_if] = ACTIONS(4114), - [anon_sym_match] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_try] = ACTIONS(4114), - [anon_sym_return] = ACTIONS(4114), - [anon_sym_source] = ACTIONS(4114), - [anon_sym_source_DASHenv] = ACTIONS(4114), - [anon_sym_register] = ACTIONS(4114), - [anon_sym_hide] = ACTIONS(4114), - [anon_sym_hide_DASHenv] = ACTIONS(4114), - [anon_sym_overlay] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_where] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), [anon_sym_not] = ACTIONS(4114), - [anon_sym_null] = ACTIONS(4114), - [anon_sym_true] = ACTIONS(4114), - [anon_sym_false] = ACTIONS(4114), - [aux_sym__val_number_decimal_token1] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(4114), - [aux_sym__val_number_token2] = ACTIONS(4114), - [aux_sym__val_number_token3] = ACTIONS(4114), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(4114), - [anon_sym_0o] = ACTIONS(4114), - [anon_sym_0x] = ACTIONS(4114), - [sym_val_date] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym__str_single_quotes] = ACTIONS(4114), - [sym__str_back_ticks] = ACTIONS(4114), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4114), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(105), - }, - [1568] = { - [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1569] = { - [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(1224), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(105), - }, - [1570] = { - [sym_comment] = STATE(1570), - [anon_sym_export] = ACTIONS(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_let_DASHenv] = ACTIONS(4118), - [anon_sym_mut] = ACTIONS(4118), - [anon_sym_const] = ACTIONS(4118), - [anon_sym_SEMI] = ACTIONS(4118), - [sym_cmd_identifier] = ACTIONS(4118), - [anon_sym_LF] = ACTIONS(4120), - [anon_sym_def] = ACTIONS(4118), - [anon_sym_export_DASHenv] = ACTIONS(4118), - [anon_sym_extern] = ACTIONS(4118), - [anon_sym_module] = ACTIONS(4118), - [anon_sym_use] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_DOLLAR] = ACTIONS(4118), - [anon_sym_error] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_break] = ACTIONS(4118), - [anon_sym_continue] = ACTIONS(4118), - [anon_sym_for] = ACTIONS(4118), - [anon_sym_loop] = ACTIONS(4118), - [anon_sym_while] = ACTIONS(4118), - [anon_sym_do] = ACTIONS(4118), - [anon_sym_if] = ACTIONS(4118), - [anon_sym_match] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_try] = ACTIONS(4118), - [anon_sym_return] = ACTIONS(4118), - [anon_sym_source] = ACTIONS(4118), - [anon_sym_source_DASHenv] = ACTIONS(4118), - [anon_sym_register] = ACTIONS(4118), - [anon_sym_hide] = ACTIONS(4118), - [anon_sym_hide_DASHenv] = ACTIONS(4118), - [anon_sym_overlay] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_not] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4118), + [anon_sym_null] = ACTIONS(4116), [anon_sym_true] = ACTIONS(4118), [anon_sym_false] = ACTIONS(4118), - [aux_sym__val_number_decimal_token1] = ACTIONS(4118), - [aux_sym__val_number_token1] = ACTIONS(4118), - [aux_sym__val_number_token2] = ACTIONS(4118), - [aux_sym__val_number_token3] = ACTIONS(4118), - [aux_sym__val_number_token4] = ACTIONS(4118), - [aux_sym__val_number_token5] = ACTIONS(4118), - [aux_sym__val_number_token6] = ACTIONS(4118), - [anon_sym_0b] = ACTIONS(4118), - [anon_sym_0o] = ACTIONS(4118), - [anon_sym_0x] = ACTIONS(4118), - [sym_val_date] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym__str_single_quotes] = ACTIONS(4118), - [sym__str_back_ticks] = ACTIONS(4118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_CARET] = ACTIONS(4118), - [anon_sym_POUND] = ACTIONS(105), - }, - [1571] = { - [sym_comment] = STATE(1571), - [anon_sym_export] = ACTIONS(4122), - [anon_sym_alias] = ACTIONS(4122), - [anon_sym_let] = ACTIONS(4122), - [anon_sym_let_DASHenv] = ACTIONS(4122), - [anon_sym_mut] = ACTIONS(4122), - [anon_sym_const] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4122), - [sym_cmd_identifier] = ACTIONS(4122), - [anon_sym_LF] = ACTIONS(4124), - [anon_sym_def] = ACTIONS(4122), - [anon_sym_export_DASHenv] = ACTIONS(4122), - [anon_sym_extern] = ACTIONS(4122), - [anon_sym_module] = ACTIONS(4122), - [anon_sym_use] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_DOLLAR] = ACTIONS(4122), - [anon_sym_error] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_for] = ACTIONS(4122), - [anon_sym_loop] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_do] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_match] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_source] = ACTIONS(4122), - [anon_sym_source_DASHenv] = ACTIONS(4122), - [anon_sym_register] = ACTIONS(4122), - [anon_sym_hide] = ACTIONS(4122), - [anon_sym_hide_DASHenv] = ACTIONS(4122), - [anon_sym_overlay] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [aux_sym__val_number_decimal_token1] = ACTIONS(4122), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), [aux_sym__val_number_token1] = ACTIONS(4122), [aux_sym__val_number_token2] = ACTIONS(4122), [aux_sym__val_number_token3] = ACTIONS(4122), [aux_sym__val_number_token4] = ACTIONS(4122), [aux_sym__val_number_token5] = ACTIONS(4122), [aux_sym__val_number_token6] = ACTIONS(4122), - [anon_sym_0b] = ACTIONS(4122), - [anon_sym_0o] = ACTIONS(4122), - [anon_sym_0x] = ACTIONS(4122), - [sym_val_date] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym__str_single_quotes] = ACTIONS(4122), - [sym__str_back_ticks] = ACTIONS(4122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_POUND] = ACTIONS(105), - }, - [1572] = { - [sym_comment] = STATE(1572), - [anon_sym_export] = ACTIONS(4126), - [anon_sym_alias] = ACTIONS(4126), - [anon_sym_let] = ACTIONS(4126), - [anon_sym_let_DASHenv] = ACTIONS(4126), - [anon_sym_mut] = ACTIONS(4126), - [anon_sym_const] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4126), - [sym_cmd_identifier] = ACTIONS(4126), - [anon_sym_LF] = ACTIONS(4128), - [anon_sym_def] = ACTIONS(4126), - [anon_sym_export_DASHenv] = ACTIONS(4126), - [anon_sym_extern] = ACTIONS(4126), - [anon_sym_module] = ACTIONS(4126), - [anon_sym_use] = ACTIONS(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_DOLLAR] = ACTIONS(4126), - [anon_sym_error] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_break] = ACTIONS(4126), - [anon_sym_continue] = ACTIONS(4126), - [anon_sym_for] = ACTIONS(4126), - [anon_sym_loop] = ACTIONS(4126), - [anon_sym_while] = ACTIONS(4126), - [anon_sym_do] = ACTIONS(4126), - [anon_sym_if] = ACTIONS(4126), - [anon_sym_match] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_try] = ACTIONS(4126), - [anon_sym_return] = ACTIONS(4126), - [anon_sym_source] = ACTIONS(4126), - [anon_sym_source_DASHenv] = ACTIONS(4126), - [anon_sym_register] = ACTIONS(4126), - [anon_sym_hide] = ACTIONS(4126), - [anon_sym_hide_DASHenv] = ACTIONS(4126), - [anon_sym_overlay] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_not] = ACTIONS(4126), - [anon_sym_null] = ACTIONS(4126), - [anon_sym_true] = ACTIONS(4126), - [anon_sym_false] = ACTIONS(4126), - [aux_sym__val_number_decimal_token1] = ACTIONS(4126), - [aux_sym__val_number_token1] = ACTIONS(4126), - [aux_sym__val_number_token2] = ACTIONS(4126), - [aux_sym__val_number_token3] = ACTIONS(4126), - [aux_sym__val_number_token4] = ACTIONS(4126), - [aux_sym__val_number_token5] = ACTIONS(4126), - [aux_sym__val_number_token6] = ACTIONS(4126), - [anon_sym_0b] = ACTIONS(4126), - [anon_sym_0o] = ACTIONS(4126), - [anon_sym_0x] = ACTIONS(4126), - [sym_val_date] = ACTIONS(4126), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), [anon_sym_DQUOTE] = ACTIONS(4126), - [sym__str_single_quotes] = ACTIONS(4126), - [sym__str_back_ticks] = ACTIONS(4126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_POUND] = ACTIONS(105), - }, - [1573] = { - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT2] = ACTIONS(4130), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [aux_sym__immediate_decimal_token1] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [aux_sym_unquoted_token2] = ACTIONS(4132), - [anon_sym_POUND] = ACTIONS(105), - }, - [1574] = { - [sym_comment] = STATE(1574), - [anon_sym_export] = ACTIONS(4134), - [anon_sym_alias] = ACTIONS(4134), - [anon_sym_let] = ACTIONS(4134), - [anon_sym_let_DASHenv] = ACTIONS(4134), - [anon_sym_mut] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4134), - [sym_cmd_identifier] = ACTIONS(4134), - [anon_sym_LF] = ACTIONS(4136), - [anon_sym_def] = ACTIONS(4134), - [anon_sym_export_DASHenv] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym_module] = ACTIONS(4134), - [anon_sym_use] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_RPAREN] = ACTIONS(4134), - [anon_sym_DOLLAR] = ACTIONS(4134), - [anon_sym_error] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_loop] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_match] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_source] = ACTIONS(4134), - [anon_sym_source_DASHenv] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_hide] = ACTIONS(4134), - [anon_sym_hide_DASHenv] = ACTIONS(4134), - [anon_sym_overlay] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_where] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_null] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_false] = ACTIONS(4134), - [aux_sym__val_number_decimal_token1] = ACTIONS(4134), - [aux_sym__val_number_token1] = ACTIONS(4134), - [aux_sym__val_number_token2] = ACTIONS(4134), - [aux_sym__val_number_token3] = ACTIONS(4134), - [aux_sym__val_number_token4] = ACTIONS(4134), - [aux_sym__val_number_token5] = ACTIONS(4134), - [aux_sym__val_number_token6] = ACTIONS(4134), - [anon_sym_0b] = ACTIONS(4134), - [anon_sym_0o] = ACTIONS(4134), - [anon_sym_0x] = ACTIONS(4134), - [sym_val_date] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym__str_single_quotes] = ACTIONS(4134), - [sym__str_back_ticks] = ACTIONS(4134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4134), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4134), - [anon_sym_CARET] = ACTIONS(4134), - [anon_sym_POUND] = ACTIONS(105), - }, - [1575] = { - [sym_comment] = STATE(1575), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1576] = { - [sym_comment] = STATE(1576), - [anon_sym_export] = ACTIONS(4138), - [anon_sym_alias] = ACTIONS(4138), - [anon_sym_let] = ACTIONS(4138), - [anon_sym_let_DASHenv] = ACTIONS(4138), - [anon_sym_mut] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4138), - [sym_cmd_identifier] = ACTIONS(4138), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_def] = ACTIONS(4138), - [anon_sym_export_DASHenv] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym_module] = ACTIONS(4138), - [anon_sym_use] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_LPAREN] = ACTIONS(4138), - [anon_sym_RPAREN] = ACTIONS(4138), - [anon_sym_DOLLAR] = ACTIONS(4138), - [anon_sym_error] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_loop] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_match] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_source] = ACTIONS(4138), - [anon_sym_source_DASHenv] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_hide] = ACTIONS(4138), - [anon_sym_hide_DASHenv] = ACTIONS(4138), - [anon_sym_overlay] = ACTIONS(4138), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [aux_sym__val_number_decimal_token1] = ACTIONS(4138), - [aux_sym__val_number_token1] = ACTIONS(4138), - [aux_sym__val_number_token2] = ACTIONS(4138), - [aux_sym__val_number_token3] = ACTIONS(4138), - [aux_sym__val_number_token4] = ACTIONS(4138), - [aux_sym__val_number_token5] = ACTIONS(4138), - [aux_sym__val_number_token6] = ACTIONS(4138), - [anon_sym_0b] = ACTIONS(4138), - [anon_sym_0o] = ACTIONS(4138), - [anon_sym_0x] = ACTIONS(4138), - [sym_val_date] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym__str_single_quotes] = ACTIONS(4138), - [sym__str_back_ticks] = ACTIONS(4138), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4138), - [anon_sym_CARET] = ACTIONS(4138), - [anon_sym_POUND] = ACTIONS(105), - }, - [1577] = { - [sym_comment] = STATE(1577), - [anon_sym_export] = ACTIONS(4142), - [anon_sym_alias] = ACTIONS(4142), - [anon_sym_let] = ACTIONS(4142), - [anon_sym_let_DASHenv] = ACTIONS(4142), - [anon_sym_mut] = ACTIONS(4142), - [anon_sym_const] = ACTIONS(4142), - [anon_sym_SEMI] = ACTIONS(4142), - [sym_cmd_identifier] = ACTIONS(4142), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_def] = ACTIONS(4142), - [anon_sym_export_DASHenv] = ACTIONS(4142), - [anon_sym_extern] = ACTIONS(4142), - [anon_sym_module] = ACTIONS(4142), - [anon_sym_use] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_DOLLAR] = ACTIONS(4142), - [anon_sym_error] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4142), - [anon_sym_break] = ACTIONS(4142), - [anon_sym_continue] = ACTIONS(4142), - [anon_sym_for] = ACTIONS(4142), - [anon_sym_loop] = ACTIONS(4142), - [anon_sym_while] = ACTIONS(4142), - [anon_sym_do] = ACTIONS(4142), - [anon_sym_if] = ACTIONS(4142), - [anon_sym_match] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_try] = ACTIONS(4142), - [anon_sym_return] = ACTIONS(4142), - [anon_sym_source] = ACTIONS(4142), - [anon_sym_source_DASHenv] = ACTIONS(4142), - [anon_sym_register] = ACTIONS(4142), - [anon_sym_hide] = ACTIONS(4142), - [anon_sym_hide_DASHenv] = ACTIONS(4142), - [anon_sym_overlay] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4142), - [anon_sym_where] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4142), - [anon_sym_not] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4142), - [anon_sym_false] = ACTIONS(4142), - [aux_sym__val_number_decimal_token1] = ACTIONS(4142), - [aux_sym__val_number_token1] = ACTIONS(4142), - [aux_sym__val_number_token2] = ACTIONS(4142), - [aux_sym__val_number_token3] = ACTIONS(4142), - [aux_sym__val_number_token4] = ACTIONS(4142), - [aux_sym__val_number_token5] = ACTIONS(4142), - [aux_sym__val_number_token6] = ACTIONS(4142), - [anon_sym_0b] = ACTIONS(4142), - [anon_sym_0o] = ACTIONS(4142), - [anon_sym_0x] = ACTIONS(4142), - [sym_val_date] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym__str_single_quotes] = ACTIONS(4142), - [sym__str_back_ticks] = ACTIONS(4142), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4142), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4142), - [anon_sym_CARET] = ACTIONS(4142), - [anon_sym_POUND] = ACTIONS(105), - }, - [1578] = { - [sym_comment] = STATE(1578), - [anon_sym_export] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_let_DASHenv] = ACTIONS(4146), - [anon_sym_mut] = ACTIONS(4146), - [anon_sym_const] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4146), - [sym_cmd_identifier] = ACTIONS(4146), - [anon_sym_LF] = ACTIONS(4148), - [anon_sym_def] = ACTIONS(4146), - [anon_sym_export_DASHenv] = ACTIONS(4146), - [anon_sym_extern] = ACTIONS(4146), - [anon_sym_module] = ACTIONS(4146), - [anon_sym_use] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_LPAREN] = ACTIONS(4146), - [anon_sym_RPAREN] = ACTIONS(4146), - [anon_sym_DOLLAR] = ACTIONS(4146), - [anon_sym_error] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_for] = ACTIONS(4146), - [anon_sym_loop] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_do] = ACTIONS(4146), - [anon_sym_if] = ACTIONS(4146), - [anon_sym_match] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_try] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_source] = ACTIONS(4146), - [anon_sym_source_DASHenv] = ACTIONS(4146), - [anon_sym_register] = ACTIONS(4146), - [anon_sym_hide] = ACTIONS(4146), - [anon_sym_hide_DASHenv] = ACTIONS(4146), - [anon_sym_overlay] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_not] = ACTIONS(4146), - [anon_sym_null] = ACTIONS(4146), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [aux_sym__val_number_decimal_token1] = ACTIONS(4146), - [aux_sym__val_number_token1] = ACTIONS(4146), - [aux_sym__val_number_token2] = ACTIONS(4146), - [aux_sym__val_number_token3] = ACTIONS(4146), - [aux_sym__val_number_token4] = ACTIONS(4146), - [aux_sym__val_number_token5] = ACTIONS(4146), - [aux_sym__val_number_token6] = ACTIONS(4146), - [anon_sym_0b] = ACTIONS(4146), - [anon_sym_0o] = ACTIONS(4146), - [anon_sym_0x] = ACTIONS(4146), - [sym_val_date] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym__str_single_quotes] = ACTIONS(4146), - [sym__str_back_ticks] = ACTIONS(4146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_POUND] = ACTIONS(105), - }, - [1579] = { - [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(1191), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_as] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1580] = { - [sym__terminator] = STATE(1927), - [sym_comment] = STATE(1580), - [aux_sym__block_body_repeat1] = STATE(1580), + [1565] = { + [sym_comment] = STATE(1565), [anon_sym_export] = ACTIONS(4150), [anon_sym_alias] = ACTIONS(4150), [anon_sym_let] = ACTIONS(4150), [anon_sym_let_DASHenv] = ACTIONS(4150), [anon_sym_mut] = ACTIONS(4150), [anon_sym_const] = ACTIONS(4150), - [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4150), [sym_cmd_identifier] = ACTIONS(4150), - [anon_sym_LF] = ACTIONS(4155), + [anon_sym_LF] = ACTIONS(4152), [anon_sym_def] = ACTIONS(4150), [anon_sym_export_DASHenv] = ACTIONS(4150), [anon_sym_extern] = ACTIONS(4150), @@ -218356,6 +217361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4150), [anon_sym_DOLLAR] = ACTIONS(4150), [anon_sym_error] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), [anon_sym_DASH] = ACTIONS(4150), [anon_sym_break] = ACTIONS(4150), [anon_sym_continue] = ACTIONS(4150), @@ -218376,6 +217382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(4150), [anon_sym_hide_DASHenv] = ACTIONS(4150), [anon_sym_overlay] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), [anon_sym_where] = ACTIONS(4150), [anon_sym_PLUS] = ACTIONS(4150), [anon_sym_not] = ACTIONS(4150), @@ -218401,348 +217408,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4150), [anon_sym_POUND] = ACTIONS(105), }, - [1581] = { - [sym_comment] = STATE(1581), - [anon_sym_export] = ACTIONS(4158), - [anon_sym_alias] = ACTIONS(4158), - [anon_sym_let] = ACTIONS(4158), - [anon_sym_let_DASHenv] = ACTIONS(4158), - [anon_sym_mut] = ACTIONS(4158), - [anon_sym_const] = ACTIONS(4158), - [anon_sym_SEMI] = ACTIONS(4158), - [sym_cmd_identifier] = ACTIONS(4158), - [anon_sym_LF] = ACTIONS(4160), - [anon_sym_def] = ACTIONS(4158), - [anon_sym_export_DASHenv] = ACTIONS(4158), - [anon_sym_extern] = ACTIONS(4158), - [anon_sym_module] = ACTIONS(4158), - [anon_sym_use] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_DOLLAR] = ACTIONS(4158), - [anon_sym_error] = ACTIONS(4158), + [1566] = { + [sym__expression] = STATE(7465), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(7464), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), + [sym_comment] = STATE(1566), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3124), [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4158), - [anon_sym_break] = ACTIONS(4158), - [anon_sym_continue] = ACTIONS(4158), - [anon_sym_for] = ACTIONS(4158), - [anon_sym_loop] = ACTIONS(4158), - [anon_sym_while] = ACTIONS(4158), - [anon_sym_do] = ACTIONS(4158), - [anon_sym_if] = ACTIONS(4158), - [anon_sym_match] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4158), - [anon_sym_try] = ACTIONS(4158), - [anon_sym_return] = ACTIONS(4158), - [anon_sym_source] = ACTIONS(4158), - [anon_sym_source_DASHenv] = ACTIONS(4158), - [anon_sym_register] = ACTIONS(4158), - [anon_sym_hide] = ACTIONS(4158), - [anon_sym_hide_DASHenv] = ACTIONS(4158), - [anon_sym_overlay] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_where] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4158), - [anon_sym_not] = ACTIONS(4158), - [anon_sym_null] = ACTIONS(4158), - [anon_sym_true] = ACTIONS(4158), - [anon_sym_false] = ACTIONS(4158), - [aux_sym__val_number_decimal_token1] = ACTIONS(4158), - [aux_sym__val_number_token1] = ACTIONS(4158), - [aux_sym__val_number_token2] = ACTIONS(4158), - [aux_sym__val_number_token3] = ACTIONS(4158), - [aux_sym__val_number_token4] = ACTIONS(4158), - [aux_sym__val_number_token5] = ACTIONS(4158), - [aux_sym__val_number_token6] = ACTIONS(4158), - [anon_sym_0b] = ACTIONS(4158), - [anon_sym_0o] = ACTIONS(4158), - [anon_sym_0x] = ACTIONS(4158), - [sym_val_date] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym__str_single_quotes] = ACTIONS(4158), - [sym__str_back_ticks] = ACTIONS(4158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1582] = { - [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(3929), - [anon_sym_export] = ACTIONS(3927), - [anon_sym_alias] = ACTIONS(3927), - [anon_sym_let] = ACTIONS(3927), - [anon_sym_let_DASHenv] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_const] = ACTIONS(3927), - [anon_sym_SEMI] = ACTIONS(3927), - [sym_cmd_identifier] = ACTIONS(3927), - [anon_sym_LF] = ACTIONS(3929), - [anon_sym_def] = ACTIONS(3927), - [anon_sym_export_DASHenv] = ACTIONS(3927), - [anon_sym_extern] = ACTIONS(3927), - [anon_sym_module] = ACTIONS(3927), - [anon_sym_use] = ACTIONS(3927), - [anon_sym_LBRACK] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_error] = ACTIONS(3927), - [anon_sym_DASH_DASH] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_loop] = ACTIONS(3927), - [anon_sym_while] = ACTIONS(3927), - [anon_sym_do] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT2] = ACTIONS(4162), - [anon_sym_try] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_source] = ACTIONS(3927), - [anon_sym_source_DASHenv] = ACTIONS(3927), - [anon_sym_register] = ACTIONS(3927), - [anon_sym_hide] = ACTIONS(3927), - [anon_sym_hide_DASHenv] = ACTIONS(3927), - [anon_sym_overlay] = ACTIONS(3927), - [anon_sym_as] = ACTIONS(3927), - [anon_sym_where] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3927), - [anon_sym_not] = ACTIONS(3927), - [anon_sym_null] = ACTIONS(3927), - [anon_sym_true] = ACTIONS(3927), - [anon_sym_false] = ACTIONS(3927), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_token1] = ACTIONS(3927), - [aux_sym__val_number_token2] = ACTIONS(3927), - [aux_sym__val_number_token3] = ACTIONS(3927), - [aux_sym__val_number_token4] = ACTIONS(3927), - [aux_sym__val_number_token5] = ACTIONS(3927), - [aux_sym__val_number_token6] = ACTIONS(3927), - [anon_sym_0b] = ACTIONS(3927), - [anon_sym_0o] = ACTIONS(3927), - [anon_sym_0x] = ACTIONS(3927), - [sym_val_date] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(3927), - [sym__str_single_quotes] = ACTIONS(3927), - [sym__str_back_ticks] = ACTIONS(3927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3927), - [anon_sym_CARET] = ACTIONS(3927), + [1567] = { + [sym_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3929), + [anon_sym_alias] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_DASHenv] = ACTIONS(3929), + [anon_sym_mut] = ACTIONS(3929), + [anon_sym_const] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3929), + [sym_cmd_identifier] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3931), + [anon_sym_def] = ACTIONS(3929), + [anon_sym_export_DASHenv] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_error] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_break] = ACTIONS(3929), + [anon_sym_continue] = ACTIONS(3929), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_loop] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_DOT2] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_source] = ACTIONS(3929), + [anon_sym_source_DASHenv] = ACTIONS(3929), + [anon_sym_register] = ACTIONS(3929), + [anon_sym_hide] = ACTIONS(3929), + [anon_sym_hide_DASHenv] = ACTIONS(3929), + [anon_sym_overlay] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3929), + [anon_sym_false] = ACTIONS(3929), + [aux_sym__val_number_decimal_token1] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3929), + [aux_sym__val_number_token2] = ACTIONS(3929), + [aux_sym__val_number_token3] = ACTIONS(3929), + [aux_sym__val_number_token4] = ACTIONS(3929), + [aux_sym__val_number_token5] = ACTIONS(3929), + [aux_sym__val_number_token6] = ACTIONS(3929), + [anon_sym_0b] = ACTIONS(3929), + [anon_sym_0o] = ACTIONS(3929), + [anon_sym_0x] = ACTIONS(3929), + [sym_val_date] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3929), + [sym__str_back_ticks] = ACTIONS(3929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), [anon_sym_POUND] = ACTIONS(105), }, - [1583] = { - [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(4011), - [anon_sym_export] = ACTIONS(4007), - [anon_sym_alias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_let_DASHenv] = ACTIONS(4007), - [anon_sym_mut] = ACTIONS(4007), - [anon_sym_const] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(4007), - [sym_cmd_identifier] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4011), - [anon_sym_def] = ACTIONS(4007), - [anon_sym_export_DASHenv] = ACTIONS(4007), - [anon_sym_extern] = ACTIONS(4007), - [anon_sym_module] = ACTIONS(4007), - [anon_sym_use] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_DOLLAR] = ACTIONS(4007), - [anon_sym_error] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_break] = ACTIONS(4007), - [anon_sym_continue] = ACTIONS(4007), - [anon_sym_for] = ACTIONS(4007), - [anon_sym_loop] = ACTIONS(4007), - [anon_sym_while] = ACTIONS(4007), - [anon_sym_do] = ACTIONS(4007), - [anon_sym_if] = ACTIONS(4007), - [anon_sym_match] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_try] = ACTIONS(4007), - [anon_sym_return] = ACTIONS(4007), - [anon_sym_source] = ACTIONS(4007), - [anon_sym_source_DASHenv] = ACTIONS(4007), - [anon_sym_register] = ACTIONS(4007), - [anon_sym_hide] = ACTIONS(4007), - [anon_sym_hide_DASHenv] = ACTIONS(4007), - [anon_sym_overlay] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_not] = ACTIONS(4007), - [anon_sym_null] = ACTIONS(4007), - [anon_sym_true] = ACTIONS(4007), - [anon_sym_false] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4007), - [aux_sym__val_number_token1] = ACTIONS(4007), - [aux_sym__val_number_token2] = ACTIONS(4007), - [aux_sym__val_number_token3] = ACTIONS(4007), - [aux_sym__val_number_token4] = ACTIONS(4007), - [aux_sym__val_number_token5] = ACTIONS(4007), - [aux_sym__val_number_token6] = ACTIONS(4007), - [anon_sym_0b] = ACTIONS(4007), - [anon_sym_0o] = ACTIONS(4007), - [anon_sym_0x] = ACTIONS(4007), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4007), - [sym__str_single_quotes] = ACTIONS(4007), - [sym__str_back_ticks] = ACTIONS(4007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), + [1568] = { + [sym_comment] = STATE(1568), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, - [1584] = { - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(3923), - [anon_sym_export] = ACTIONS(3921), - [anon_sym_alias] = ACTIONS(3921), - [anon_sym_let] = ACTIONS(3921), - [anon_sym_let_DASHenv] = ACTIONS(3921), - [anon_sym_mut] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3921), - [sym_cmd_identifier] = ACTIONS(3921), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_def] = ACTIONS(3921), - [anon_sym_export_DASHenv] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym_module] = ACTIONS(3921), - [anon_sym_use] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_DOLLAR] = ACTIONS(3921), - [anon_sym_error] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_loop] = ACTIONS(3921), - [anon_sym_while] = ACTIONS(3921), - [anon_sym_do] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_match] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_DOT2] = ACTIONS(4166), - [anon_sym_try] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_source] = ACTIONS(3921), - [anon_sym_source_DASHenv] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_hide] = ACTIONS(3921), - [anon_sym_hide_DASHenv] = ACTIONS(3921), - [anon_sym_overlay] = ACTIONS(3921), - [anon_sym_as] = ACTIONS(3921), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3921), - [anon_sym_true] = ACTIONS(3921), - [anon_sym_false] = ACTIONS(3921), - [aux_sym__val_number_decimal_token1] = ACTIONS(3921), - [aux_sym__val_number_token1] = ACTIONS(3921), - [aux_sym__val_number_token2] = ACTIONS(3921), - [aux_sym__val_number_token3] = ACTIONS(3921), - [aux_sym__val_number_token4] = ACTIONS(3921), - [aux_sym__val_number_token5] = ACTIONS(3921), - [aux_sym__val_number_token6] = ACTIONS(3921), - [anon_sym_0b] = ACTIONS(3921), - [anon_sym_0o] = ACTIONS(3921), - [anon_sym_0x] = ACTIONS(3921), - [sym_val_date] = ACTIONS(3921), - [anon_sym_DQUOTE] = ACTIONS(3921), - [sym__str_single_quotes] = ACTIONS(3921), - [sym__str_back_ticks] = ACTIONS(3921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), + [1569] = { + [sym_comment] = STATE(1569), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(4162), + [aux_sym__immediate_decimal_token2] = ACTIONS(4082), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, - [1585] = { - [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3854), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1570] = { + [sym_comment] = STATE(1570), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_alias] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_let_DASHenv] = ACTIONS(4164), + [anon_sym_mut] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4164), + [sym_cmd_identifier] = ACTIONS(4164), + [anon_sym_LF] = ACTIONS(4166), + [anon_sym_def] = ACTIONS(4164), + [anon_sym_export_DASHenv] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_use] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4164), + [anon_sym_error] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_loop] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_match] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_source] = ACTIONS(4164), + [anon_sym_source_DASHenv] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_hide] = ACTIONS(4164), + [anon_sym_hide_DASHenv] = ACTIONS(4164), + [anon_sym_overlay] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_token1] = ACTIONS(4164), + [aux_sym__val_number_token2] = ACTIONS(4164), + [aux_sym__val_number_token3] = ACTIONS(4164), + [aux_sym__val_number_token4] = ACTIONS(4164), + [aux_sym__val_number_token5] = ACTIONS(4164), + [aux_sym__val_number_token6] = ACTIONS(4164), + [anon_sym_0b] = ACTIONS(4164), + [anon_sym_0o] = ACTIONS(4164), + [anon_sym_0x] = ACTIONS(4164), + [sym_val_date] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym__str_single_quotes] = ACTIONS(4164), + [sym__str_back_ticks] = ACTIONS(4164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(4164), [anon_sym_POUND] = ACTIONS(105), }, - [1586] = { - [sym_comment] = STATE(1586), + [1571] = { + [sym_comment] = STATE(1571), [anon_sym_export] = ACTIONS(4168), [anon_sym_alias] = ACTIONS(4168), [anon_sym_let] = ACTIONS(4168), @@ -218809,8 +217816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4168), [anon_sym_POUND] = ACTIONS(105), }, - [1587] = { - [sym_comment] = STATE(1587), + [1572] = { + [sym_comment] = STATE(1572), [anon_sym_export] = ACTIONS(4172), [anon_sym_alias] = ACTIONS(4172), [anon_sym_let] = ACTIONS(4172), @@ -218877,416 +217884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4172), [anon_sym_POUND] = ACTIONS(105), }, - [1588] = { - [sym_comment] = STATE(1588), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [1589] = { - [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(3862), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), - }, - [1590] = { - [sym_cell_path] = STATE(2339), - [sym_path] = STATE(1537), - [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(999), - [anon_sym_export] = ACTIONS(997), - [anon_sym_alias] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_let_DASHenv] = ACTIONS(997), - [anon_sym_mut] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(997), - [sym_cmd_identifier] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_def] = ACTIONS(997), - [anon_sym_export_DASHenv] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_error] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_source] = ACTIONS(997), - [anon_sym_source_DASHenv] = ACTIONS(997), - [anon_sym_register] = ACTIONS(997), - [anon_sym_hide] = ACTIONS(997), - [anon_sym_hide_DASHenv] = ACTIONS(997), - [anon_sym_overlay] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_not] = ACTIONS(997), - [anon_sym_null] = ACTIONS(997), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [aux_sym__val_number_decimal_token1] = ACTIONS(997), - [aux_sym__val_number_token1] = ACTIONS(997), - [aux_sym__val_number_token2] = ACTIONS(997), - [aux_sym__val_number_token3] = ACTIONS(997), - [aux_sym__val_number_token4] = ACTIONS(997), - [aux_sym__val_number_token5] = ACTIONS(997), - [aux_sym__val_number_token6] = ACTIONS(997), - [anon_sym_0b] = ACTIONS(997), - [anon_sym_0o] = ACTIONS(997), - [anon_sym_0x] = ACTIONS(997), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [sym__str_single_quotes] = ACTIONS(997), - [sym__str_back_ticks] = ACTIONS(997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(105), - }, - [1591] = { - [sym_comment] = STATE(1591), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1592] = { - [sym_comment] = STATE(1592), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(105), - }, - [1593] = { - [sym_path] = STATE(1897), - [sym_comment] = STATE(1593), - [aux_sym_cell_path_repeat1] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [sym_cmd_identifier] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT2] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_not] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(105), - }, - [1594] = { - [sym_comment] = STATE(1594), + [1573] = { + [sym_comment] = STATE(1573), [anon_sym_export] = ACTIONS(4176), [anon_sym_alias] = ACTIONS(4176), [anon_sym_let] = ACTIONS(4176), @@ -219353,2796 +217952,3544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4176), [anon_sym_POUND] = ACTIONS(105), }, - [1595] = { - [sym_comment] = STATE(1595), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(105), - }, - [1596] = { - [sym_comment] = STATE(1596), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [sym_cmd_identifier] = ACTIONS(1282), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1282), - [anon_sym_where] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_not] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), + [1574] = { + [sym_comment] = STATE(1574), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, - [1597] = { - [sym__expression] = STATE(7526), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(7525), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), - [sym_comment] = STATE(1597), + [1575] = { + [sym__expression] = STATE(7441), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1564), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1575), [anon_sym_SEMI] = ACTIONS(4180), [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), [anon_sym_RPAREN] = ACTIONS(4180), [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), [anon_sym_RBRACE] = ACTIONS(4180), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(105), - }, - [1598] = { - [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(3836), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(4184), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), - [anon_sym_POUND] = ACTIONS(105), - }, - [1599] = { - [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3947), - [anon_sym_alias] = ACTIONS(3947), - [anon_sym_let] = ACTIONS(3947), - [anon_sym_let_DASHenv] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [sym_cmd_identifier] = ACTIONS(3947), - [sym_long_flag_identifier] = ACTIONS(4186), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3947), - [anon_sym_export_DASHenv] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym_module] = ACTIONS(3947), - [anon_sym_use] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [anon_sym_error] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_loop] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_source] = ACTIONS(3947), - [anon_sym_source_DASHenv] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_hide] = ACTIONS(3947), - [anon_sym_hide_DASHenv] = ACTIONS(3947), - [anon_sym_overlay] = ACTIONS(3947), - [anon_sym_as] = ACTIONS(3947), - [anon_sym_where] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(3947), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3947), - [aux_sym__val_number_token5] = ACTIONS(3947), - [aux_sym__val_number_token6] = ACTIONS(3947), - [anon_sym_0b] = ACTIONS(3947), - [anon_sym_0o] = ACTIONS(3947), - [anon_sym_0x] = ACTIONS(3947), - [sym_val_date] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1600] = { - [sym_comment] = STATE(1600), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [1576] = { + [sym_path] = STATE(1766), + [sym_comment] = STATE(1576), + [aux_sym_cell_path_repeat1] = STATE(1618), + [ts_builtin_sym_end] = ACTIONS(905), + [anon_sym_export] = ACTIONS(903), + [anon_sym_alias] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_let_DASHenv] = ACTIONS(903), + [anon_sym_mut] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(903), + [sym_cmd_identifier] = ACTIONS(903), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_def] = ACTIONS(903), + [anon_sym_export_DASHenv] = ACTIONS(903), + [anon_sym_extern] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_source] = ACTIONS(903), + [anon_sym_source_DASHenv] = ACTIONS(903), + [anon_sym_register] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_hide_DASHenv] = ACTIONS(903), + [anon_sym_overlay] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_not] = ACTIONS(903), + [anon_sym_null] = ACTIONS(903), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_token1] = ACTIONS(903), + [aux_sym__val_number_token2] = ACTIONS(903), + [aux_sym__val_number_token3] = ACTIONS(903), + [aux_sym__val_number_token4] = ACTIONS(903), + [aux_sym__val_number_token5] = ACTIONS(903), + [aux_sym__val_number_token6] = ACTIONS(903), + [anon_sym_0b] = ACTIONS(903), + [anon_sym_0o] = ACTIONS(903), + [anon_sym_0x] = ACTIONS(903), + [sym_val_date] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym__str_single_quotes] = ACTIONS(903), + [sym__str_back_ticks] = ACTIONS(903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_POUND] = ACTIONS(105), }, - [1601] = { - [sym__expression] = STATE(7526), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1725), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1601), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4180), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1577] = { + [sym__expression] = STATE(7465), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1604), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1577), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1602] = { - [sym_comment] = STATE(1602), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4025), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1578] = { + [sym_comment] = STATE(1578), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, - [1603] = { - [sym_comment] = STATE(1603), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [1579] = { + [sym_comment] = STATE(1579), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, - [1604] = { - [sym__expression] = STATE(7526), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1724), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1604), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4180), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1580] = { + [sym_comment] = STATE(1580), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_alias] = ACTIONS(4184), + [anon_sym_let] = ACTIONS(4184), + [anon_sym_let_DASHenv] = ACTIONS(4184), + [anon_sym_mut] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4184), + [sym_cmd_identifier] = ACTIONS(4184), + [anon_sym_LF] = ACTIONS(4186), + [anon_sym_def] = ACTIONS(4184), + [anon_sym_export_DASHenv] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_use] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_RPAREN] = ACTIONS(4184), + [anon_sym_DOLLAR] = ACTIONS(4184), + [anon_sym_error] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_loop] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_match] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_source] = ACTIONS(4184), + [anon_sym_source_DASHenv] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_hide] = ACTIONS(4184), + [anon_sym_hide_DASHenv] = ACTIONS(4184), + [anon_sym_overlay] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4184), + [aux_sym__val_number_token1] = ACTIONS(4184), + [aux_sym__val_number_token2] = ACTIONS(4184), + [aux_sym__val_number_token3] = ACTIONS(4184), + [aux_sym__val_number_token4] = ACTIONS(4184), + [aux_sym__val_number_token5] = ACTIONS(4184), + [aux_sym__val_number_token6] = ACTIONS(4184), + [anon_sym_0b] = ACTIONS(4184), + [anon_sym_0o] = ACTIONS(4184), + [anon_sym_0x] = ACTIONS(4184), + [sym_val_date] = ACTIONS(4184), + [anon_sym_DQUOTE] = ACTIONS(4184), + [sym__str_single_quotes] = ACTIONS(4184), + [sym__str_back_ticks] = ACTIONS(4184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4184), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), [anon_sym_POUND] = ACTIONS(105), }, - [1605] = { - [sym__expression] = STATE(7526), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1723), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1605), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4180), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1581] = { + [sym_comment] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_as] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, - [1606] = { - [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(3917), - [anon_sym_export] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_let_DASHenv] = ACTIONS(3915), - [anon_sym_mut] = ACTIONS(3915), - [anon_sym_const] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [sym_cmd_identifier] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_def] = ACTIONS(3915), - [anon_sym_export_DASHenv] = ACTIONS(3915), - [anon_sym_extern] = ACTIONS(3915), - [anon_sym_module] = ACTIONS(3915), - [anon_sym_use] = ACTIONS(3915), - [anon_sym_LBRACK] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_error] = ACTIONS(3915), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_loop] = ACTIONS(3915), - [anon_sym_while] = ACTIONS(3915), - [anon_sym_do] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3915), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_DOT2] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_source] = ACTIONS(3915), - [anon_sym_source_DASHenv] = ACTIONS(3915), - [anon_sym_register] = ACTIONS(3915), - [anon_sym_hide] = ACTIONS(3915), - [anon_sym_hide_DASHenv] = ACTIONS(3915), - [anon_sym_overlay] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_not] = ACTIONS(3915), - [anon_sym_null] = ACTIONS(3915), - [anon_sym_true] = ACTIONS(3915), - [anon_sym_false] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(3915), - [aux_sym__val_number_token1] = ACTIONS(3915), - [aux_sym__val_number_token2] = ACTIONS(3915), - [aux_sym__val_number_token3] = ACTIONS(3915), - [aux_sym__val_number_token4] = ACTIONS(3915), - [aux_sym__val_number_token5] = ACTIONS(3915), - [aux_sym__val_number_token6] = ACTIONS(3915), - [anon_sym_0b] = ACTIONS(3915), - [anon_sym_0o] = ACTIONS(3915), - [anon_sym_0x] = ACTIONS(3915), - [sym_val_date] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), + [1582] = { + [sym__expression] = STATE(7461), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1678), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1582), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1607] = { - [sym_comment] = STATE(1607), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [1583] = { + [sym_comment] = STATE(1583), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_RPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(4195), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, - [1608] = { - [sym_comment] = STATE(1608), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), + [1584] = { + [sym__expression] = STATE(7465), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1605), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1584), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1609] = { - [sym_comment] = STATE(1609), - [anon_sym_export] = ACTIONS(4190), - [anon_sym_alias] = ACTIONS(4190), - [anon_sym_let] = ACTIONS(4190), - [anon_sym_let_DASHenv] = ACTIONS(4190), - [anon_sym_mut] = ACTIONS(4190), - [anon_sym_const] = ACTIONS(4190), - [anon_sym_SEMI] = ACTIONS(4190), - [sym_cmd_identifier] = ACTIONS(4190), - [anon_sym_LF] = ACTIONS(4192), - [anon_sym_def] = ACTIONS(4190), - [anon_sym_export_DASHenv] = ACTIONS(4190), - [anon_sym_extern] = ACTIONS(4190), - [anon_sym_module] = ACTIONS(4190), - [anon_sym_use] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_RPAREN] = ACTIONS(4190), - [anon_sym_DOLLAR] = ACTIONS(4190), - [anon_sym_error] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_break] = ACTIONS(4190), - [anon_sym_continue] = ACTIONS(4190), - [anon_sym_for] = ACTIONS(4190), - [anon_sym_loop] = ACTIONS(4190), - [anon_sym_while] = ACTIONS(4190), - [anon_sym_do] = ACTIONS(4190), - [anon_sym_if] = ACTIONS(4190), - [anon_sym_match] = ACTIONS(4190), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_try] = ACTIONS(4190), - [anon_sym_return] = ACTIONS(4190), - [anon_sym_source] = ACTIONS(4190), - [anon_sym_source_DASHenv] = ACTIONS(4190), - [anon_sym_register] = ACTIONS(4190), - [anon_sym_hide] = ACTIONS(4190), - [anon_sym_hide_DASHenv] = ACTIONS(4190), - [anon_sym_overlay] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_not] = ACTIONS(4190), - [anon_sym_null] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4190), - [anon_sym_false] = ACTIONS(4190), - [aux_sym__val_number_decimal_token1] = ACTIONS(4190), - [aux_sym__val_number_token1] = ACTIONS(4190), - [aux_sym__val_number_token2] = ACTIONS(4190), - [aux_sym__val_number_token3] = ACTIONS(4190), - [aux_sym__val_number_token4] = ACTIONS(4190), - [aux_sym__val_number_token5] = ACTIONS(4190), - [aux_sym__val_number_token6] = ACTIONS(4190), - [anon_sym_0b] = ACTIONS(4190), - [anon_sym_0o] = ACTIONS(4190), - [anon_sym_0x] = ACTIONS(4190), - [sym_val_date] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym__str_single_quotes] = ACTIONS(4190), - [sym__str_back_ticks] = ACTIONS(4190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), + [1585] = { + [sym_comment] = STATE(1585), + [anon_sym_export] = ACTIONS(4197), + [anon_sym_alias] = ACTIONS(4197), + [anon_sym_let] = ACTIONS(4197), + [anon_sym_let_DASHenv] = ACTIONS(4197), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_const] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [sym_cmd_identifier] = ACTIONS(4197), + [anon_sym_LF] = ACTIONS(4199), + [anon_sym_def] = ACTIONS(4197), + [anon_sym_export_DASHenv] = ACTIONS(4197), + [anon_sym_extern] = ACTIONS(4197), + [anon_sym_module] = ACTIONS(4197), + [anon_sym_use] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_error] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_break] = ACTIONS(4197), + [anon_sym_continue] = ACTIONS(4197), + [anon_sym_for] = ACTIONS(4197), + [anon_sym_loop] = ACTIONS(4197), + [anon_sym_while] = ACTIONS(4197), + [anon_sym_do] = ACTIONS(4197), + [anon_sym_if] = ACTIONS(4197), + [anon_sym_match] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_RBRACE] = ACTIONS(4197), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_try] = ACTIONS(4197), + [anon_sym_return] = ACTIONS(4197), + [anon_sym_source] = ACTIONS(4197), + [anon_sym_source_DASHenv] = ACTIONS(4197), + [anon_sym_register] = ACTIONS(4197), + [anon_sym_hide] = ACTIONS(4197), + [anon_sym_hide_DASHenv] = ACTIONS(4197), + [anon_sym_overlay] = ACTIONS(4197), + [anon_sym_as] = ACTIONS(4197), + [anon_sym_where] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_not] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4197), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [aux_sym__val_number_decimal_token1] = ACTIONS(4197), + [aux_sym__val_number_token1] = ACTIONS(4197), + [aux_sym__val_number_token2] = ACTIONS(4197), + [aux_sym__val_number_token3] = ACTIONS(4197), + [aux_sym__val_number_token4] = ACTIONS(4197), + [aux_sym__val_number_token5] = ACTIONS(4197), + [aux_sym__val_number_token6] = ACTIONS(4197), + [anon_sym_0b] = ACTIONS(4197), + [anon_sym_0o] = ACTIONS(4197), + [anon_sym_0x] = ACTIONS(4197), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4197), + [sym__str_back_ticks] = ACTIONS(4197), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4197), [anon_sym_POUND] = ACTIONS(105), }, - [1610] = { - [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(4015), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_let_DASHenv] = ACTIONS(4013), - [anon_sym_mut] = ACTIONS(4013), - [anon_sym_const] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4013), - [sym_cmd_identifier] = ACTIONS(4013), - [anon_sym_LF] = ACTIONS(4015), - [anon_sym_def] = ACTIONS(4013), - [anon_sym_export_DASHenv] = ACTIONS(4013), - [anon_sym_extern] = ACTIONS(4013), - [anon_sym_module] = ACTIONS(4013), - [anon_sym_use] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_DOLLAR] = ACTIONS(4013), - [anon_sym_error] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_break] = ACTIONS(4013), - [anon_sym_continue] = ACTIONS(4013), - [anon_sym_for] = ACTIONS(4013), - [anon_sym_loop] = ACTIONS(4013), - [anon_sym_while] = ACTIONS(4013), - [anon_sym_do] = ACTIONS(4013), - [anon_sym_if] = ACTIONS(4013), - [anon_sym_match] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_DOT2] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(4013), - [anon_sym_return] = ACTIONS(4013), - [anon_sym_source] = ACTIONS(4013), - [anon_sym_source_DASHenv] = ACTIONS(4013), - [anon_sym_register] = ACTIONS(4013), - [anon_sym_hide] = ACTIONS(4013), - [anon_sym_hide_DASHenv] = ACTIONS(4013), - [anon_sym_overlay] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_not] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4013), - [anon_sym_false] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(4013), - [aux_sym__val_number_token1] = ACTIONS(4013), - [aux_sym__val_number_token2] = ACTIONS(4013), - [aux_sym__val_number_token3] = ACTIONS(4013), - [aux_sym__val_number_token4] = ACTIONS(4013), - [aux_sym__val_number_token5] = ACTIONS(4013), - [aux_sym__val_number_token6] = ACTIONS(4013), - [anon_sym_0b] = ACTIONS(4013), - [anon_sym_0o] = ACTIONS(4013), - [anon_sym_0x] = ACTIONS(4013), - [sym_val_date] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym__str_single_quotes] = ACTIONS(4013), - [sym__str_back_ticks] = ACTIONS(4013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4013), - [anon_sym_CARET] = ACTIONS(4013), + [1586] = { + [sym_comment] = STATE(1586), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, - [1611] = { - [sym_comment] = STATE(1611), - [anon_sym_export] = ACTIONS(4194), - [anon_sym_alias] = ACTIONS(4194), - [anon_sym_let] = ACTIONS(4194), - [anon_sym_let_DASHenv] = ACTIONS(4194), - [anon_sym_mut] = ACTIONS(4194), - [anon_sym_const] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4194), - [sym_cmd_identifier] = ACTIONS(4194), - [anon_sym_LF] = ACTIONS(4196), - [anon_sym_def] = ACTIONS(4194), - [anon_sym_export_DASHenv] = ACTIONS(4194), - [anon_sym_extern] = ACTIONS(4194), - [anon_sym_module] = ACTIONS(4194), - [anon_sym_use] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4194), - [anon_sym_LPAREN] = ACTIONS(4194), - [anon_sym_RPAREN] = ACTIONS(4194), - [anon_sym_DOLLAR] = ACTIONS(4194), - [anon_sym_error] = ACTIONS(4194), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_for] = ACTIONS(4194), - [anon_sym_loop] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_do] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_match] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_source] = ACTIONS(4194), - [anon_sym_source_DASHenv] = ACTIONS(4194), - [anon_sym_register] = ACTIONS(4194), - [anon_sym_hide] = ACTIONS(4194), - [anon_sym_hide_DASHenv] = ACTIONS(4194), - [anon_sym_overlay] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_not] = ACTIONS(4194), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [aux_sym__val_number_decimal_token1] = ACTIONS(4194), - [aux_sym__val_number_token1] = ACTIONS(4194), - [aux_sym__val_number_token2] = ACTIONS(4194), - [aux_sym__val_number_token3] = ACTIONS(4194), - [aux_sym__val_number_token4] = ACTIONS(4194), - [aux_sym__val_number_token5] = ACTIONS(4194), - [aux_sym__val_number_token6] = ACTIONS(4194), - [anon_sym_0b] = ACTIONS(4194), - [anon_sym_0o] = ACTIONS(4194), - [anon_sym_0x] = ACTIONS(4194), - [sym_val_date] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym__str_single_quotes] = ACTIONS(4194), - [sym__str_back_ticks] = ACTIONS(4194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), + [1587] = { + [sym_comment] = STATE(1587), + [anon_sym_export] = ACTIONS(4201), + [anon_sym_alias] = ACTIONS(4201), + [anon_sym_let] = ACTIONS(4201), + [anon_sym_let_DASHenv] = ACTIONS(4201), + [anon_sym_mut] = ACTIONS(4201), + [anon_sym_const] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [sym_cmd_identifier] = ACTIONS(4201), + [anon_sym_LF] = ACTIONS(4203), + [anon_sym_def] = ACTIONS(4201), + [anon_sym_export_DASHenv] = ACTIONS(4201), + [anon_sym_extern] = ACTIONS(4201), + [anon_sym_module] = ACTIONS(4201), + [anon_sym_use] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_error] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [anon_sym_break] = ACTIONS(4201), + [anon_sym_continue] = ACTIONS(4201), + [anon_sym_for] = ACTIONS(4201), + [anon_sym_loop] = ACTIONS(4201), + [anon_sym_while] = ACTIONS(4201), + [anon_sym_do] = ACTIONS(4201), + [anon_sym_if] = ACTIONS(4201), + [anon_sym_match] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_RBRACE] = ACTIONS(4201), + [anon_sym_DOT] = ACTIONS(4201), + [anon_sym_try] = ACTIONS(4201), + [anon_sym_return] = ACTIONS(4201), + [anon_sym_source] = ACTIONS(4201), + [anon_sym_source_DASHenv] = ACTIONS(4201), + [anon_sym_register] = ACTIONS(4201), + [anon_sym_hide] = ACTIONS(4201), + [anon_sym_hide_DASHenv] = ACTIONS(4201), + [anon_sym_overlay] = ACTIONS(4201), + [anon_sym_as] = ACTIONS(4201), + [anon_sym_where] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_not] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4201), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [aux_sym__val_number_decimal_token1] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(4201), + [aux_sym__val_number_token2] = ACTIONS(4201), + [aux_sym__val_number_token3] = ACTIONS(4201), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(4201), + [anon_sym_0o] = ACTIONS(4201), + [anon_sym_0x] = ACTIONS(4201), + [sym_val_date] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym__str_single_quotes] = ACTIONS(4201), + [sym__str_back_ticks] = ACTIONS(4201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4201), + [anon_sym_CARET] = ACTIONS(4201), [anon_sym_POUND] = ACTIONS(105), }, - [1612] = { - [sym_comment] = STATE(1612), - [ts_builtin_sym_end] = ACTIONS(3911), - [anon_sym_export] = ACTIONS(3909), - [anon_sym_alias] = ACTIONS(3909), - [anon_sym_let] = ACTIONS(3909), - [anon_sym_let_DASHenv] = ACTIONS(3909), - [anon_sym_mut] = ACTIONS(3909), - [anon_sym_const] = ACTIONS(3909), - [anon_sym_SEMI] = ACTIONS(3909), - [sym_cmd_identifier] = ACTIONS(3909), - [anon_sym_LF] = ACTIONS(3911), - [anon_sym_def] = ACTIONS(3909), - [anon_sym_export_DASHenv] = ACTIONS(3909), - [anon_sym_extern] = ACTIONS(3909), - [anon_sym_module] = ACTIONS(3909), - [anon_sym_use] = ACTIONS(3909), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_LPAREN] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3909), - [anon_sym_error] = ACTIONS(3909), - [anon_sym_DASH_DASH] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_break] = ACTIONS(3909), - [anon_sym_continue] = ACTIONS(3909), - [anon_sym_for] = ACTIONS(3909), - [anon_sym_loop] = ACTIONS(3909), - [anon_sym_while] = ACTIONS(3909), - [anon_sym_do] = ACTIONS(3909), - [anon_sym_if] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(3909), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_DOT2] = ACTIONS(4198), - [anon_sym_try] = ACTIONS(3909), - [anon_sym_return] = ACTIONS(3909), - [anon_sym_source] = ACTIONS(3909), - [anon_sym_source_DASHenv] = ACTIONS(3909), - [anon_sym_register] = ACTIONS(3909), - [anon_sym_hide] = ACTIONS(3909), - [anon_sym_hide_DASHenv] = ACTIONS(3909), - [anon_sym_overlay] = ACTIONS(3909), - [anon_sym_as] = ACTIONS(3909), - [anon_sym_where] = ACTIONS(3909), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_not] = ACTIONS(3909), - [anon_sym_null] = ACTIONS(3909), - [anon_sym_true] = ACTIONS(3909), - [anon_sym_false] = ACTIONS(3909), - [aux_sym__val_number_decimal_token1] = ACTIONS(3909), - [aux_sym__val_number_token1] = ACTIONS(3909), - [aux_sym__val_number_token2] = ACTIONS(3909), - [aux_sym__val_number_token3] = ACTIONS(3909), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(3909), - [anon_sym_0o] = ACTIONS(3909), - [anon_sym_0x] = ACTIONS(3909), - [sym_val_date] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [sym__str_single_quotes] = ACTIONS(3909), - [sym__str_back_ticks] = ACTIONS(3909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3909), - [anon_sym_CARET] = ACTIONS(3909), + [1588] = { + [sym_comment] = STATE(1588), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, - [1613] = { - [sym_comment] = STATE(1613), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_alias] = ACTIONS(4200), - [anon_sym_let] = ACTIONS(4200), - [anon_sym_let_DASHenv] = ACTIONS(4200), - [anon_sym_mut] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4200), - [sym_cmd_identifier] = ACTIONS(4200), - [anon_sym_LF] = ACTIONS(4202), - [anon_sym_def] = ACTIONS(4200), - [anon_sym_export_DASHenv] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym_module] = ACTIONS(4200), - [anon_sym_use] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_LPAREN] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(4200), - [anon_sym_DOLLAR] = ACTIONS(4200), - [anon_sym_error] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_loop] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_match] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4200), - [anon_sym_RBRACE] = ACTIONS(4200), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_source] = ACTIONS(4200), - [anon_sym_source_DASHenv] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_hide] = ACTIONS(4200), - [anon_sym_hide_DASHenv] = ACTIONS(4200), - [anon_sym_overlay] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [aux_sym__val_number_decimal_token1] = ACTIONS(4200), - [aux_sym__val_number_token1] = ACTIONS(4200), - [aux_sym__val_number_token2] = ACTIONS(4200), - [aux_sym__val_number_token3] = ACTIONS(4200), - [aux_sym__val_number_token4] = ACTIONS(4200), - [aux_sym__val_number_token5] = ACTIONS(4200), - [aux_sym__val_number_token6] = ACTIONS(4200), - [anon_sym_0b] = ACTIONS(4200), - [anon_sym_0o] = ACTIONS(4200), - [anon_sym_0x] = ACTIONS(4200), - [sym_val_date] = ACTIONS(4200), - [anon_sym_DQUOTE] = ACTIONS(4200), - [sym__str_single_quotes] = ACTIONS(4200), - [sym__str_back_ticks] = ACTIONS(4200), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4200), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4200), - [anon_sym_CARET] = ACTIONS(4200), + [1589] = { + [sym_comment] = STATE(1589), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(4205), + [aux_sym__immediate_decimal_token2] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, - [1614] = { - [sym_comment] = STATE(1614), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1590] = { + [sym_comment] = STATE(1590), + [ts_builtin_sym_end] = ACTIONS(4038), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_alias] = ACTIONS(4036), + [anon_sym_let] = ACTIONS(4036), + [anon_sym_let_DASHenv] = ACTIONS(4036), + [anon_sym_mut] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4036), + [sym_cmd_identifier] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4038), + [anon_sym_def] = ACTIONS(4036), + [anon_sym_export_DASHenv] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_use] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4036), + [anon_sym_error] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_loop] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_match] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_DOT2] = ACTIONS(4209), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_source] = ACTIONS(4036), + [anon_sym_source_DASHenv] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_hide] = ACTIONS(4036), + [anon_sym_hide_DASHenv] = ACTIONS(4036), + [anon_sym_overlay] = ACTIONS(4036), + [anon_sym_as] = ACTIONS(4036), + [anon_sym_where] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_null] = ACTIONS(4036), + [anon_sym_true] = ACTIONS(4036), + [anon_sym_false] = ACTIONS(4036), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_token1] = ACTIONS(4036), + [aux_sym__val_number_token2] = ACTIONS(4036), + [aux_sym__val_number_token3] = ACTIONS(4036), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(4036), + [anon_sym_0o] = ACTIONS(4036), + [anon_sym_0x] = ACTIONS(4036), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym__str_single_quotes] = ACTIONS(4036), + [sym__str_back_ticks] = ACTIONS(4036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), [anon_sym_POUND] = ACTIONS(105), }, - [1615] = { - [sym_expr_parenthesized] = STATE(2962), - [sym__immediate_decimal] = STATE(2963), - [sym_val_variable] = STATE(2962), - [sym__var] = STATE(2697), - [sym_comment] = STATE(1615), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(4210), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(4212), - [aux_sym__immediate_decimal_token1] = ACTIONS(4214), - [anon_sym_DASH2] = ACTIONS(4216), - [anon_sym_PLUS2] = ACTIONS(4218), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [sym__entry_separator] = ACTIONS(1841), - [aux_sym__record_key_token2] = ACTIONS(1839), + [1591] = { + [sym_comment] = STATE(1591), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, - [1616] = { - [sym_comment] = STATE(1616), - [anon_sym_export] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_let_DASHenv] = ACTIONS(4220), - [anon_sym_mut] = ACTIONS(4220), - [anon_sym_const] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4220), - [sym_cmd_identifier] = ACTIONS(4220), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_def] = ACTIONS(4220), - [anon_sym_export_DASHenv] = ACTIONS(4220), - [anon_sym_extern] = ACTIONS(4220), - [anon_sym_module] = ACTIONS(4220), - [anon_sym_use] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4220), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4220), - [anon_sym_error] = ACTIONS(4220), - [anon_sym_DASH_DASH] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_loop] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_do] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_match] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4220), - [anon_sym_RBRACE] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_source] = ACTIONS(4220), - [anon_sym_source_DASHenv] = ACTIONS(4220), - [anon_sym_register] = ACTIONS(4220), - [anon_sym_hide] = ACTIONS(4220), - [anon_sym_hide_DASHenv] = ACTIONS(4220), - [anon_sym_overlay] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_not] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [aux_sym__val_number_decimal_token1] = ACTIONS(4220), - [aux_sym__val_number_token1] = ACTIONS(4220), - [aux_sym__val_number_token2] = ACTIONS(4220), - [aux_sym__val_number_token3] = ACTIONS(4220), - [aux_sym__val_number_token4] = ACTIONS(4220), - [aux_sym__val_number_token5] = ACTIONS(4220), - [aux_sym__val_number_token6] = ACTIONS(4220), - [anon_sym_0b] = ACTIONS(4220), - [anon_sym_0o] = ACTIONS(4220), - [anon_sym_0x] = ACTIONS(4220), - [sym_val_date] = ACTIONS(4220), - [anon_sym_DQUOTE] = ACTIONS(4220), - [sym__str_single_quotes] = ACTIONS(4220), - [sym__str_back_ticks] = ACTIONS(4220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4220), - [anon_sym_CARET] = ACTIONS(4220), + [1592] = { + [sym_comment] = STATE(1592), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, - [1617] = { - [sym_comment] = STATE(1617), - [anon_sym_export] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_let_DASHenv] = ACTIONS(4224), - [anon_sym_mut] = ACTIONS(4224), - [anon_sym_const] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4224), - [sym_cmd_identifier] = ACTIONS(4224), - [anon_sym_LF] = ACTIONS(4226), - [anon_sym_def] = ACTIONS(4224), - [anon_sym_export_DASHenv] = ACTIONS(4224), - [anon_sym_extern] = ACTIONS(4224), - [anon_sym_module] = ACTIONS(4224), - [anon_sym_use] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_RPAREN] = ACTIONS(4224), - [anon_sym_DOLLAR] = ACTIONS(4224), - [anon_sym_error] = ACTIONS(4224), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_loop] = ACTIONS(4224), - [anon_sym_while] = ACTIONS(4224), - [anon_sym_do] = ACTIONS(4224), - [anon_sym_if] = ACTIONS(4224), - [anon_sym_match] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4224), - [anon_sym_RBRACE] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_try] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_source] = ACTIONS(4224), - [anon_sym_source_DASHenv] = ACTIONS(4224), - [anon_sym_register] = ACTIONS(4224), - [anon_sym_hide] = ACTIONS(4224), - [anon_sym_hide_DASHenv] = ACTIONS(4224), - [anon_sym_overlay] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_not] = ACTIONS(4224), - [anon_sym_null] = ACTIONS(4224), - [anon_sym_true] = ACTIONS(4224), - [anon_sym_false] = ACTIONS(4224), - [aux_sym__val_number_decimal_token1] = ACTIONS(4224), - [aux_sym__val_number_token1] = ACTIONS(4224), - [aux_sym__val_number_token2] = ACTIONS(4224), - [aux_sym__val_number_token3] = ACTIONS(4224), - [aux_sym__val_number_token4] = ACTIONS(4224), - [aux_sym__val_number_token5] = ACTIONS(4224), - [aux_sym__val_number_token6] = ACTIONS(4224), - [anon_sym_0b] = ACTIONS(4224), - [anon_sym_0o] = ACTIONS(4224), - [anon_sym_0x] = ACTIONS(4224), - [sym_val_date] = ACTIONS(4224), - [anon_sym_DQUOTE] = ACTIONS(4224), - [sym__str_single_quotes] = ACTIONS(4224), - [sym__str_back_ticks] = ACTIONS(4224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4224), - [anon_sym_CARET] = ACTIONS(4224), + [1593] = { + [sym_comment] = STATE(1593), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, - [1618] = { - [sym_comment] = STATE(1618), - [anon_sym_export] = ACTIONS(4228), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_let_DASHenv] = ACTIONS(4228), - [anon_sym_mut] = ACTIONS(4228), - [anon_sym_const] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4228), - [sym_cmd_identifier] = ACTIONS(4228), - [anon_sym_LF] = ACTIONS(4230), - [anon_sym_def] = ACTIONS(4228), - [anon_sym_export_DASHenv] = ACTIONS(4228), - [anon_sym_extern] = ACTIONS(4228), - [anon_sym_module] = ACTIONS(4228), - [anon_sym_use] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym_RPAREN] = ACTIONS(4228), - [anon_sym_DOLLAR] = ACTIONS(4228), - [anon_sym_error] = ACTIONS(4228), - [anon_sym_DASH_DASH] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_loop] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_do] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_RBRACE] = ACTIONS(4228), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_source] = ACTIONS(4228), - [anon_sym_source_DASHenv] = ACTIONS(4228), - [anon_sym_register] = ACTIONS(4228), - [anon_sym_hide] = ACTIONS(4228), - [anon_sym_hide_DASHenv] = ACTIONS(4228), - [anon_sym_overlay] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_not] = ACTIONS(4228), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [aux_sym__val_number_decimal_token1] = ACTIONS(4228), - [aux_sym__val_number_token1] = ACTIONS(4228), - [aux_sym__val_number_token2] = ACTIONS(4228), - [aux_sym__val_number_token3] = ACTIONS(4228), - [aux_sym__val_number_token4] = ACTIONS(4228), - [aux_sym__val_number_token5] = ACTIONS(4228), - [aux_sym__val_number_token6] = ACTIONS(4228), - [anon_sym_0b] = ACTIONS(4228), - [anon_sym_0o] = ACTIONS(4228), - [anon_sym_0x] = ACTIONS(4228), - [sym_val_date] = ACTIONS(4228), - [anon_sym_DQUOTE] = ACTIONS(4228), - [sym__str_single_quotes] = ACTIONS(4228), - [sym__str_back_ticks] = ACTIONS(4228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4228), - [anon_sym_CARET] = ACTIONS(4228), + [1594] = { + [sym__expression] = STATE(7540), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1660), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1594), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4211), + [anon_sym_PIPE] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4211), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1619] = { - [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(4232), - [aux_sym__immediate_decimal_token2] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [1595] = { + [sym_comment] = STATE(1595), + [anon_sym_export] = ACTIONS(4215), + [anon_sym_alias] = ACTIONS(4215), + [anon_sym_let] = ACTIONS(4215), + [anon_sym_let_DASHenv] = ACTIONS(4215), + [anon_sym_mut] = ACTIONS(4215), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_SEMI] = ACTIONS(4215), + [sym_cmd_identifier] = ACTIONS(4215), + [anon_sym_LF] = ACTIONS(4217), + [anon_sym_def] = ACTIONS(4215), + [anon_sym_export_DASHenv] = ACTIONS(4215), + [anon_sym_extern] = ACTIONS(4215), + [anon_sym_module] = ACTIONS(4215), + [anon_sym_use] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_DOLLAR] = ACTIONS(4215), + [anon_sym_error] = ACTIONS(4215), + [anon_sym_DASH_DASH] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_break] = ACTIONS(4215), + [anon_sym_continue] = ACTIONS(4215), + [anon_sym_for] = ACTIONS(4215), + [anon_sym_loop] = ACTIONS(4215), + [anon_sym_while] = ACTIONS(4215), + [anon_sym_do] = ACTIONS(4215), + [anon_sym_if] = ACTIONS(4215), + [anon_sym_match] = ACTIONS(4215), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_RBRACE] = ACTIONS(4215), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_try] = ACTIONS(4215), + [anon_sym_return] = ACTIONS(4215), + [anon_sym_source] = ACTIONS(4215), + [anon_sym_source_DASHenv] = ACTIONS(4215), + [anon_sym_register] = ACTIONS(4215), + [anon_sym_hide] = ACTIONS(4215), + [anon_sym_hide_DASHenv] = ACTIONS(4215), + [anon_sym_overlay] = ACTIONS(4215), + [anon_sym_as] = ACTIONS(4215), + [anon_sym_where] = ACTIONS(4215), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_not] = ACTIONS(4215), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4215), + [anon_sym_false] = ACTIONS(4215), + [aux_sym__val_number_decimal_token1] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(4215), + [aux_sym__val_number_token2] = ACTIONS(4215), + [aux_sym__val_number_token3] = ACTIONS(4215), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(4215), + [anon_sym_0o] = ACTIONS(4215), + [anon_sym_0x] = ACTIONS(4215), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4215), + [sym__str_single_quotes] = ACTIONS(4215), + [sym__str_back_ticks] = ACTIONS(4215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), [anon_sym_POUND] = ACTIONS(105), }, - [1620] = { - [sym_comment] = STATE(1620), - [anon_sym_export] = ACTIONS(4236), - [anon_sym_alias] = ACTIONS(4236), - [anon_sym_let] = ACTIONS(4236), - [anon_sym_let_DASHenv] = ACTIONS(4236), - [anon_sym_mut] = ACTIONS(4236), - [anon_sym_const] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4236), - [sym_cmd_identifier] = ACTIONS(4236), - [anon_sym_LF] = ACTIONS(4238), - [anon_sym_def] = ACTIONS(4236), - [anon_sym_export_DASHenv] = ACTIONS(4236), - [anon_sym_extern] = ACTIONS(4236), - [anon_sym_module] = ACTIONS(4236), - [anon_sym_use] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_RPAREN] = ACTIONS(4236), - [anon_sym_DOLLAR] = ACTIONS(4236), - [anon_sym_error] = ACTIONS(4236), - [anon_sym_DASH_DASH] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_for] = ACTIONS(4236), - [anon_sym_loop] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_do] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_match] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4236), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_source] = ACTIONS(4236), - [anon_sym_source_DASHenv] = ACTIONS(4236), - [anon_sym_register] = ACTIONS(4236), - [anon_sym_hide] = ACTIONS(4236), - [anon_sym_hide_DASHenv] = ACTIONS(4236), - [anon_sym_overlay] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_not] = ACTIONS(4236), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_token1] = ACTIONS(4236), - [aux_sym__val_number_token2] = ACTIONS(4236), - [aux_sym__val_number_token3] = ACTIONS(4236), - [aux_sym__val_number_token4] = ACTIONS(4236), - [aux_sym__val_number_token5] = ACTIONS(4236), - [aux_sym__val_number_token6] = ACTIONS(4236), - [anon_sym_0b] = ACTIONS(4236), - [anon_sym_0o] = ACTIONS(4236), - [anon_sym_0x] = ACTIONS(4236), - [sym_val_date] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [sym__str_single_quotes] = ACTIONS(4236), - [sym__str_back_ticks] = ACTIONS(4236), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4236), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_CARET] = ACTIONS(4236), + [1596] = { + [sym_comment] = STATE(1596), + [ts_builtin_sym_end] = ACTIONS(3946), + [anon_sym_export] = ACTIONS(3942), + [anon_sym_alias] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_let] = ACTIONS(3942), + [anon_sym_let_DASHenv] = ACTIONS(3942), + [anon_sym_mut] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3942), + [sym_cmd_identifier] = ACTIONS(3942), + [anon_sym_LF] = ACTIONS(3946), + [anon_sym_def] = ACTIONS(3942), + [anon_sym_export_DASHenv] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_use] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3942), + [anon_sym_error] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_loop] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_match] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3942), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_source] = ACTIONS(3942), + [anon_sym_source_DASHenv] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_hide] = ACTIONS(3942), + [anon_sym_hide_DASHenv] = ACTIONS(3942), + [anon_sym_overlay] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_null] = ACTIONS(3942), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(3942), + [aux_sym__val_number_token2] = ACTIONS(3942), + [aux_sym__val_number_token3] = ACTIONS(3942), + [aux_sym__val_number_token4] = ACTIONS(3942), + [aux_sym__val_number_token5] = ACTIONS(3942), + [aux_sym__val_number_token6] = ACTIONS(3942), + [anon_sym_0b] = ACTIONS(3942), + [anon_sym_0o] = ACTIONS(3942), + [anon_sym_0x] = ACTIONS(3942), + [sym_val_date] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [sym__str_single_quotes] = ACTIONS(3942), + [sym__str_back_ticks] = ACTIONS(3942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3942), + [anon_sym_CARET] = ACTIONS(3942), [anon_sym_POUND] = ACTIONS(105), }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DOT2] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [1597] = { + [sym_comment] = STATE(1597), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_alias] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_let_DASHenv] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4032), + [sym_cmd_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_def] = ACTIONS(4032), + [anon_sym_export_DASHenv] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_use] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_error] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_loop] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_source] = ACTIONS(4032), + [anon_sym_source_DASHenv] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_hide_DASHenv] = ACTIONS(4032), + [anon_sym_overlay] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [aux_sym__val_number_decimal_token1] = ACTIONS(4032), + [aux_sym__val_number_token1] = ACTIONS(4032), + [aux_sym__val_number_token2] = ACTIONS(4032), + [aux_sym__val_number_token3] = ACTIONS(4032), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(4032), + [anon_sym_0o] = ACTIONS(4032), + [anon_sym_0x] = ACTIONS(4032), + [sym_val_date] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [sym__str_single_quotes] = ACTIONS(4032), + [sym__str_back_ticks] = ACTIONS(4032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), [anon_sym_POUND] = ACTIONS(105), }, - [1622] = { - [sym_comment] = STATE(1622), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [1598] = { + [sym_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3840), + [anon_sym_alias] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_DASHenv] = ACTIONS(3840), + [anon_sym_mut] = ACTIONS(3840), + [anon_sym_const] = ACTIONS(3840), + [anon_sym_SEMI] = ACTIONS(3840), + [sym_cmd_identifier] = ACTIONS(3840), + [anon_sym_LF] = ACTIONS(3842), + [anon_sym_def] = ACTIONS(3840), + [anon_sym_export_DASHenv] = ACTIONS(3840), + [anon_sym_extern] = ACTIONS(3840), + [anon_sym_module] = ACTIONS(3840), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_error] = ACTIONS(3840), + [anon_sym_DASH_DASH] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_break] = ACTIONS(3840), + [anon_sym_continue] = ACTIONS(3840), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_loop] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_DOT2] = ACTIONS(4221), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_source] = ACTIONS(3840), + [anon_sym_source_DASHenv] = ACTIONS(3840), + [anon_sym_register] = ACTIONS(3840), + [anon_sym_hide] = ACTIONS(3840), + [anon_sym_hide_DASHenv] = ACTIONS(3840), + [anon_sym_overlay] = ACTIONS(3840), + [anon_sym_as] = ACTIONS(3840), + [anon_sym_where] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_not] = ACTIONS(3840), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_true] = ACTIONS(3840), + [anon_sym_false] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3840), + [aux_sym__val_number_token1] = ACTIONS(3840), + [aux_sym__val_number_token2] = ACTIONS(3840), + [aux_sym__val_number_token3] = ACTIONS(3840), + [aux_sym__val_number_token4] = ACTIONS(3840), + [aux_sym__val_number_token5] = ACTIONS(3840), + [aux_sym__val_number_token6] = ACTIONS(3840), + [anon_sym_0b] = ACTIONS(3840), + [anon_sym_0o] = ACTIONS(3840), + [anon_sym_0x] = ACTIONS(3840), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_CARET] = ACTIONS(3840), [anon_sym_POUND] = ACTIONS(105), }, - [1623] = { - [sym_comment] = STATE(1623), - [anon_sym_export] = ACTIONS(4240), - [anon_sym_alias] = ACTIONS(4240), - [anon_sym_let] = ACTIONS(4240), - [anon_sym_let_DASHenv] = ACTIONS(4240), - [anon_sym_mut] = ACTIONS(4240), - [anon_sym_const] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [sym_cmd_identifier] = ACTIONS(4240), - [anon_sym_LF] = ACTIONS(4242), - [anon_sym_def] = ACTIONS(4240), - [anon_sym_export_DASHenv] = ACTIONS(4240), - [anon_sym_extern] = ACTIONS(4240), - [anon_sym_module] = ACTIONS(4240), - [anon_sym_use] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_DOLLAR] = ACTIONS(4240), - [anon_sym_error] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_continue] = ACTIONS(4240), - [anon_sym_for] = ACTIONS(4240), - [anon_sym_loop] = ACTIONS(4240), - [anon_sym_while] = ACTIONS(4240), - [anon_sym_do] = ACTIONS(4240), - [anon_sym_if] = ACTIONS(4240), - [anon_sym_match] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_try] = ACTIONS(4240), - [anon_sym_return] = ACTIONS(4240), - [anon_sym_source] = ACTIONS(4240), - [anon_sym_source_DASHenv] = ACTIONS(4240), - [anon_sym_register] = ACTIONS(4240), - [anon_sym_hide] = ACTIONS(4240), - [anon_sym_hide_DASHenv] = ACTIONS(4240), - [anon_sym_overlay] = ACTIONS(4240), - [anon_sym_as] = ACTIONS(4240), - [anon_sym_where] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4240), - [anon_sym_not] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4240), - [anon_sym_false] = ACTIONS(4240), - [aux_sym__val_number_decimal_token1] = ACTIONS(4240), - [aux_sym__val_number_token1] = ACTIONS(4240), - [aux_sym__val_number_token2] = ACTIONS(4240), - [aux_sym__val_number_token3] = ACTIONS(4240), - [aux_sym__val_number_token4] = ACTIONS(4240), - [aux_sym__val_number_token5] = ACTIONS(4240), - [aux_sym__val_number_token6] = ACTIONS(4240), - [anon_sym_0b] = ACTIONS(4240), - [anon_sym_0o] = ACTIONS(4240), - [anon_sym_0x] = ACTIONS(4240), - [sym_val_date] = ACTIONS(4240), - [anon_sym_DQUOTE] = ACTIONS(4240), - [sym__str_single_quotes] = ACTIONS(4240), - [sym__str_back_ticks] = ACTIONS(4240), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4240), - [anon_sym_CARET] = ACTIONS(4240), + [1599] = { + [sym_comment] = STATE(1599), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(4225), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(4223), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(4227), + [aux_sym_unquoted_token6] = ACTIONS(4229), [anon_sym_POUND] = ACTIONS(105), }, - [1624] = { - [sym_comment] = STATE(1624), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), + [1600] = { + [sym_comment] = STATE(1600), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_alias] = ACTIONS(4231), + [anon_sym_let] = ACTIONS(4231), + [anon_sym_let_DASHenv] = ACTIONS(4231), + [anon_sym_mut] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [sym_cmd_identifier] = ACTIONS(4231), + [anon_sym_LF] = ACTIONS(4233), + [anon_sym_def] = ACTIONS(4231), + [anon_sym_export_DASHenv] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym_module] = ACTIONS(4231), + [anon_sym_use] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_error] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_loop] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_match] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4231), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_DOT] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_source] = ACTIONS(4231), + [anon_sym_source_DASHenv] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_hide] = ACTIONS(4231), + [anon_sym_hide_DASHenv] = ACTIONS(4231), + [anon_sym_overlay] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4231), + [anon_sym_where] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4231), + [anon_sym_false] = ACTIONS(4231), + [aux_sym__val_number_decimal_token1] = ACTIONS(4231), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4231), + [aux_sym__val_number_token5] = ACTIONS(4231), + [aux_sym__val_number_token6] = ACTIONS(4231), + [anon_sym_0b] = ACTIONS(4231), + [anon_sym_0o] = ACTIONS(4231), + [anon_sym_0x] = ACTIONS(4231), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4231), + [sym__str_back_ticks] = ACTIONS(4231), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4231), + [anon_sym_CARET] = ACTIONS(4231), [anon_sym_POUND] = ACTIONS(105), }, - [1625] = { - [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_as] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(1785), + [1601] = { + [sym_comment] = STATE(1601), + [ts_builtin_sym_end] = ACTIONS(3905), + [anon_sym_export] = ACTIONS(3903), + [anon_sym_alias] = ACTIONS(3903), + [anon_sym_let] = ACTIONS(3903), + [anon_sym_let_DASHenv] = ACTIONS(3903), + [anon_sym_mut] = ACTIONS(3903), + [anon_sym_const] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3903), + [sym_cmd_identifier] = ACTIONS(3903), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_def] = ACTIONS(3903), + [anon_sym_export_DASHenv] = ACTIONS(3903), + [anon_sym_extern] = ACTIONS(3903), + [anon_sym_module] = ACTIONS(3903), + [anon_sym_use] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3903), + [anon_sym_error] = ACTIONS(3903), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_loop] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_do] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_DOT] = ACTIONS(3903), + [anon_sym_DOT2] = ACTIONS(4235), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_source] = ACTIONS(3903), + [anon_sym_source_DASHenv] = ACTIONS(3903), + [anon_sym_register] = ACTIONS(3903), + [anon_sym_hide] = ACTIONS(3903), + [anon_sym_hide_DASHenv] = ACTIONS(3903), + [anon_sym_overlay] = ACTIONS(3903), + [anon_sym_as] = ACTIONS(3903), + [anon_sym_where] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_not] = ACTIONS(3903), + [anon_sym_null] = ACTIONS(3903), + [anon_sym_true] = ACTIONS(3903), + [anon_sym_false] = ACTIONS(3903), + [aux_sym__val_number_decimal_token1] = ACTIONS(3903), + [aux_sym__val_number_token1] = ACTIONS(3903), + [aux_sym__val_number_token2] = ACTIONS(3903), + [aux_sym__val_number_token3] = ACTIONS(3903), + [aux_sym__val_number_token4] = ACTIONS(3903), + [aux_sym__val_number_token5] = ACTIONS(3903), + [aux_sym__val_number_token6] = ACTIONS(3903), + [anon_sym_0b] = ACTIONS(3903), + [anon_sym_0o] = ACTIONS(3903), + [anon_sym_0x] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [sym__str_single_quotes] = ACTIONS(3903), + [sym__str_back_ticks] = ACTIONS(3903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3903), + [anon_sym_CARET] = ACTIONS(3903), [anon_sym_POUND] = ACTIONS(105), }, - [1626] = { - [sym_comment] = STATE(1626), - [anon_sym_export] = ACTIONS(4244), - [anon_sym_alias] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_let_DASHenv] = ACTIONS(4244), - [anon_sym_mut] = ACTIONS(4244), - [anon_sym_const] = ACTIONS(4244), + [1602] = { + [sym_comment] = STATE(1602), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [1603] = { + [sym_comment] = STATE(1603), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [sym_cmd_identifier] = ACTIONS(1274), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_DOT] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(1274), + [anon_sym_where] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_not] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1274), + [anon_sym_0x] = ACTIONS(1274), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(105), + }, + [1604] = { + [sym__expression] = STATE(7472), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(7471), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), + [sym_comment] = STATE(1604), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4237), + [anon_sym_PIPE] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1605] = { + [sym__expression] = STATE(7472), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1608), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1605), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4237), + [anon_sym_PIPE] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1606] = { + [sym_comment] = STATE(1606), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(105), + }, + [1607] = { + [sym_cell_path] = STATE(1974), + [sym_path] = STATE(1576), + [sym_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_export] = ACTIONS(933), + [anon_sym_alias] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_let_DASHenv] = ACTIONS(933), + [anon_sym_mut] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [sym_cmd_identifier] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_def] = ACTIONS(933), + [anon_sym_export_DASHenv] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_error] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_source] = ACTIONS(933), + [anon_sym_source_DASHenv] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_hide] = ACTIONS(933), + [anon_sym_hide_DASHenv] = ACTIONS(933), + [anon_sym_overlay] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_not] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(933), + [anon_sym_0o] = ACTIONS(933), + [anon_sym_0x] = ACTIONS(933), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(105), + }, + [1608] = { + [sym__expression] = STATE(7476), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(7475), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), + [sym_comment] = STATE(1608), [anon_sym_SEMI] = ACTIONS(4244), - [sym_cmd_identifier] = ACTIONS(4244), [anon_sym_LF] = ACTIONS(4246), - [anon_sym_def] = ACTIONS(4244), - [anon_sym_export_DASHenv] = ACTIONS(4244), - [anon_sym_extern] = ACTIONS(4244), - [anon_sym_module] = ACTIONS(4244), - [anon_sym_use] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_DOLLAR] = ACTIONS(4244), - [anon_sym_error] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_for] = ACTIONS(4244), - [anon_sym_loop] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_do] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_match] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), + [anon_sym_PIPE] = ACTIONS(4244), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4108), [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_source] = ACTIONS(4244), - [anon_sym_source_DASHenv] = ACTIONS(4244), - [anon_sym_register] = ACTIONS(4244), - [anon_sym_hide] = ACTIONS(4244), - [anon_sym_hide_DASHenv] = ACTIONS(4244), - [anon_sym_overlay] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_not] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [aux_sym__val_number_decimal_token1] = ACTIONS(4244), - [aux_sym__val_number_token1] = ACTIONS(4244), - [aux_sym__val_number_token2] = ACTIONS(4244), - [aux_sym__val_number_token3] = ACTIONS(4244), - [aux_sym__val_number_token4] = ACTIONS(4244), - [aux_sym__val_number_token5] = ACTIONS(4244), - [aux_sym__val_number_token6] = ACTIONS(4244), - [anon_sym_0b] = ACTIONS(4244), - [anon_sym_0o] = ACTIONS(4244), - [anon_sym_0x] = ACTIONS(4244), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4244), - [sym__str_single_quotes] = ACTIONS(4244), - [sym__str_back_ticks] = ACTIONS(4244), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4244), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_CARET] = ACTIONS(4244), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1627] = { - [sym_comment] = STATE(1627), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(4248), - [aux_sym__immediate_decimal_token2] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1609] = { + [sym_comment] = STATE(1609), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_alias] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_let_DASHenv] = ACTIONS(1278), + [anon_sym_mut] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [sym_cmd_identifier] = ACTIONS(1278), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_def] = ACTIONS(1278), + [anon_sym_export_DASHenv] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1278), + [anon_sym_error] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_source] = ACTIONS(1278), + [anon_sym_source_DASHenv] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_hide] = ACTIONS(1278), + [anon_sym_hide_DASHenv] = ACTIONS(1278), + [anon_sym_overlay] = ACTIONS(1278), + [anon_sym_as] = ACTIONS(1278), + [anon_sym_where] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_not] = ACTIONS(1278), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1278), + [aux_sym__val_number_token2] = ACTIONS(1278), + [aux_sym__val_number_token3] = ACTIONS(1278), + [aux_sym__val_number_token4] = ACTIONS(1278), + [aux_sym__val_number_token5] = ACTIONS(1278), + [aux_sym__val_number_token6] = ACTIONS(1278), + [anon_sym_0b] = ACTIONS(1278), + [anon_sym_0o] = ACTIONS(1278), + [anon_sym_0x] = ACTIONS(1278), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym__str_single_quotes] = ACTIONS(1278), + [sym__str_back_ticks] = ACTIONS(1278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, - [1628] = { - [sym_comment] = STATE(1628), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), + [1610] = { + [sym__expression] = STATE(7540), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1667), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1610), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4211), + [anon_sym_PIPE] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4211), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1629] = { - [sym_comment] = STATE(1629), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [1611] = { + [sym_comment] = STATE(1611), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_DOT2] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_QMARK2] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, - [1630] = { - [sym_comment] = STATE(1630), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [1612] = { + [sym_comment] = STATE(1612), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, - [1631] = { - [sym__expression] = STATE(7442), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1647), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1631), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4254), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1613] = { + [sym_comment] = STATE(1613), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT2] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_QMARK2] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, - [1632] = { - [sym__expression] = STATE(7442), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1646), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4254), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1614] = { + [sym_comment] = STATE(1614), + [anon_sym_export] = ACTIONS(3929), + [anon_sym_alias] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_DASHenv] = ACTIONS(3929), + [anon_sym_mut] = ACTIONS(3929), + [anon_sym_const] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3929), + [sym_cmd_identifier] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3931), + [anon_sym_def] = ACTIONS(3929), + [anon_sym_export_DASHenv] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_error] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_break] = ACTIONS(3929), + [anon_sym_continue] = ACTIONS(3929), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_loop] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_source] = ACTIONS(3929), + [anon_sym_source_DASHenv] = ACTIONS(3929), + [anon_sym_register] = ACTIONS(3929), + [anon_sym_hide] = ACTIONS(3929), + [anon_sym_hide_DASHenv] = ACTIONS(3929), + [anon_sym_overlay] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3929), + [anon_sym_false] = ACTIONS(3929), + [aux_sym__val_number_decimal_token1] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3929), + [aux_sym__val_number_token2] = ACTIONS(3929), + [aux_sym__val_number_token3] = ACTIONS(3929), + [aux_sym__val_number_token4] = ACTIONS(3929), + [aux_sym__val_number_token5] = ACTIONS(3929), + [aux_sym__val_number_token6] = ACTIONS(3929), + [anon_sym_0b] = ACTIONS(3929), + [anon_sym_0o] = ACTIONS(3929), + [anon_sym_0x] = ACTIONS(3929), + [sym_val_date] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3929), + [sym__str_back_ticks] = ACTIONS(3929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), [anon_sym_POUND] = ACTIONS(105), }, - [1633] = { - [sym__expression] = STATE(7442), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1644), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1633), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4254), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1615] = { + [sym_comment] = STATE(1615), + [anon_sym_export] = ACTIONS(4248), + [anon_sym_alias] = ACTIONS(4248), + [anon_sym_let] = ACTIONS(4248), + [anon_sym_let_DASHenv] = ACTIONS(4248), + [anon_sym_mut] = ACTIONS(4248), + [anon_sym_const] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4248), + [sym_cmd_identifier] = ACTIONS(4248), + [anon_sym_LF] = ACTIONS(4250), + [anon_sym_def] = ACTIONS(4248), + [anon_sym_export_DASHenv] = ACTIONS(4248), + [anon_sym_extern] = ACTIONS(4248), + [anon_sym_module] = ACTIONS(4248), + [anon_sym_use] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4248), + [anon_sym_RPAREN] = ACTIONS(4248), + [anon_sym_DOLLAR] = ACTIONS(4248), + [anon_sym_error] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_for] = ACTIONS(4248), + [anon_sym_loop] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_do] = ACTIONS(4248), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_match] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_source] = ACTIONS(4248), + [anon_sym_source_DASHenv] = ACTIONS(4248), + [anon_sym_register] = ACTIONS(4248), + [anon_sym_hide] = ACTIONS(4248), + [anon_sym_hide_DASHenv] = ACTIONS(4248), + [anon_sym_overlay] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_not] = ACTIONS(4248), + [anon_sym_null] = ACTIONS(4248), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [aux_sym__val_number_decimal_token1] = ACTIONS(4248), + [aux_sym__val_number_token1] = ACTIONS(4248), + [aux_sym__val_number_token2] = ACTIONS(4248), + [aux_sym__val_number_token3] = ACTIONS(4248), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4248), + [anon_sym_0o] = ACTIONS(4248), + [anon_sym_0x] = ACTIONS(4248), + [sym_val_date] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym__str_single_quotes] = ACTIONS(4248), + [sym__str_back_ticks] = ACTIONS(4248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4248), + [anon_sym_CARET] = ACTIONS(4248), [anon_sym_POUND] = ACTIONS(105), }, - [1634] = { - [sym_comment] = STATE(1634), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(3955), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [1616] = { + [sym_cell_path] = STATE(2084), + [sym_path] = STATE(1576), + [sym_comment] = STATE(1616), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(4252), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(105), }, - [1635] = { - [sym_comment] = STATE(1635), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_alias] = ACTIONS(4258), - [anon_sym_let] = ACTIONS(4258), - [anon_sym_let_DASHenv] = ACTIONS(4258), - [anon_sym_mut] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4258), - [sym_cmd_identifier] = ACTIONS(4258), - [anon_sym_LF] = ACTIONS(4260), - [anon_sym_def] = ACTIONS(4258), - [anon_sym_export_DASHenv] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym_module] = ACTIONS(4258), - [anon_sym_use] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_DOLLAR] = ACTIONS(4258), - [anon_sym_error] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_loop] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_match] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_source] = ACTIONS(4258), - [anon_sym_source_DASHenv] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_hide] = ACTIONS(4258), - [anon_sym_hide_DASHenv] = ACTIONS(4258), - [anon_sym_overlay] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_token1] = ACTIONS(4258), - [aux_sym__val_number_token2] = ACTIONS(4258), - [aux_sym__val_number_token3] = ACTIONS(4258), - [aux_sym__val_number_token4] = ACTIONS(4258), - [aux_sym__val_number_token5] = ACTIONS(4258), - [aux_sym__val_number_token6] = ACTIONS(4258), - [anon_sym_0b] = ACTIONS(4258), - [anon_sym_0o] = ACTIONS(4258), - [anon_sym_0x] = ACTIONS(4258), - [sym_val_date] = ACTIONS(4258), - [anon_sym_DQUOTE] = ACTIONS(4258), - [sym__str_single_quotes] = ACTIONS(4258), - [sym__str_back_ticks] = ACTIONS(4258), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4258), - [anon_sym_CARET] = ACTIONS(4258), + [1617] = { + [sym_comment] = STATE(1617), + [anon_sym_export] = ACTIONS(4255), + [anon_sym_alias] = ACTIONS(4255), + [anon_sym_let] = ACTIONS(4255), + [anon_sym_let_DASHenv] = ACTIONS(4255), + [anon_sym_mut] = ACTIONS(4255), + [anon_sym_const] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [sym_cmd_identifier] = ACTIONS(4255), + [anon_sym_LF] = ACTIONS(4257), + [anon_sym_def] = ACTIONS(4255), + [anon_sym_export_DASHenv] = ACTIONS(4255), + [anon_sym_extern] = ACTIONS(4255), + [anon_sym_module] = ACTIONS(4255), + [anon_sym_use] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_error] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_for] = ACTIONS(4255), + [anon_sym_loop] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_do] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_match] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_source] = ACTIONS(4255), + [anon_sym_source_DASHenv] = ACTIONS(4255), + [anon_sym_register] = ACTIONS(4255), + [anon_sym_hide] = ACTIONS(4255), + [anon_sym_hide_DASHenv] = ACTIONS(4255), + [anon_sym_overlay] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_not] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [aux_sym__val_number_decimal_token1] = ACTIONS(4255), + [aux_sym__val_number_token1] = ACTIONS(4255), + [aux_sym__val_number_token2] = ACTIONS(4255), + [aux_sym__val_number_token3] = ACTIONS(4255), + [aux_sym__val_number_token4] = ACTIONS(4255), + [aux_sym__val_number_token5] = ACTIONS(4255), + [aux_sym__val_number_token6] = ACTIONS(4255), + [anon_sym_0b] = ACTIONS(4255), + [anon_sym_0o] = ACTIONS(4255), + [anon_sym_0x] = ACTIONS(4255), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4255), + [sym__str_back_ticks] = ACTIONS(4255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4255), + [anon_sym_CARET] = ACTIONS(4255), [anon_sym_POUND] = ACTIONS(105), }, - [1636] = { - [sym_comment] = STATE(1636), + [1618] = { + [sym_path] = STATE(1766), + [sym_comment] = STATE(1618), + [aux_sym_cell_path_repeat1] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_export] = ACTIONS(973), + [anon_sym_alias] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_let_DASHenv] = ACTIONS(973), + [anon_sym_mut] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [sym_cmd_identifier] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_def] = ACTIONS(973), + [anon_sym_export_DASHenv] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym_module] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT2] = ACTIONS(975), + [anon_sym_try] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_source] = ACTIONS(973), + [anon_sym_source_DASHenv] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_hide_DASHenv] = ACTIONS(973), + [anon_sym_overlay] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_not] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(973), + [anon_sym_0o] = ACTIONS(973), + [anon_sym_0x] = ACTIONS(973), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(105), + }, + [1619] = { + [sym_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1620] = { + [sym_comment] = STATE(1620), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [1621] = { + [sym_comment] = STATE(1621), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(105), + }, + [1622] = { + [sym_comment] = STATE(1622), + [anon_sym_export] = ACTIONS(4259), + [anon_sym_alias] = ACTIONS(4259), + [anon_sym_let] = ACTIONS(4259), + [anon_sym_let_DASHenv] = ACTIONS(4259), + [anon_sym_mut] = ACTIONS(4259), + [anon_sym_const] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [sym_cmd_identifier] = ACTIONS(4259), + [anon_sym_LF] = ACTIONS(4261), + [anon_sym_def] = ACTIONS(4259), + [anon_sym_export_DASHenv] = ACTIONS(4259), + [anon_sym_extern] = ACTIONS(4259), + [anon_sym_module] = ACTIONS(4259), + [anon_sym_use] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_error] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_for] = ACTIONS(4259), + [anon_sym_loop] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_do] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_match] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_RBRACE] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_source] = ACTIONS(4259), + [anon_sym_source_DASHenv] = ACTIONS(4259), + [anon_sym_register] = ACTIONS(4259), + [anon_sym_hide] = ACTIONS(4259), + [anon_sym_hide_DASHenv] = ACTIONS(4259), + [anon_sym_overlay] = ACTIONS(4259), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_not] = ACTIONS(4259), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [aux_sym__val_number_decimal_token1] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4259), + [aux_sym__val_number_token2] = ACTIONS(4259), + [aux_sym__val_number_token3] = ACTIONS(4259), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(4259), + [anon_sym_0o] = ACTIONS(4259), + [anon_sym_0x] = ACTIONS(4259), + [sym_val_date] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4259), + [anon_sym_CARET] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(105), + }, + [1623] = { + [sym_comment] = STATE(1623), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), + }, + [1624] = { + [sym_comment] = STATE(1624), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(105), + }, + [1625] = { + [sym_comment] = STATE(1625), + [anon_sym_export] = ACTIONS(4263), + [anon_sym_alias] = ACTIONS(4263), + [anon_sym_let] = ACTIONS(4263), + [anon_sym_let_DASHenv] = ACTIONS(4263), + [anon_sym_mut] = ACTIONS(4263), + [anon_sym_const] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [sym_cmd_identifier] = ACTIONS(4263), + [anon_sym_LF] = ACTIONS(4265), + [anon_sym_def] = ACTIONS(4263), + [anon_sym_export_DASHenv] = ACTIONS(4263), + [anon_sym_extern] = ACTIONS(4263), + [anon_sym_module] = ACTIONS(4263), + [anon_sym_use] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_error] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_for] = ACTIONS(4263), + [anon_sym_loop] = ACTIONS(4263), + [anon_sym_while] = ACTIONS(4263), + [anon_sym_do] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_match] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_RBRACE] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_source] = ACTIONS(4263), + [anon_sym_source_DASHenv] = ACTIONS(4263), + [anon_sym_register] = ACTIONS(4263), + [anon_sym_hide] = ACTIONS(4263), + [anon_sym_hide_DASHenv] = ACTIONS(4263), + [anon_sym_overlay] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_not] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4263), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_token1] = ACTIONS(4263), + [aux_sym__val_number_token2] = ACTIONS(4263), + [aux_sym__val_number_token3] = ACTIONS(4263), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(4263), + [anon_sym_0o] = ACTIONS(4263), + [anon_sym_0x] = ACTIONS(4263), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [sym__str_single_quotes] = ACTIONS(4263), + [sym__str_back_ticks] = ACTIONS(4263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(105), + }, + [1626] = { + [sym_comment] = STATE(1626), [ts_builtin_sym_end] = ACTIONS(817), [anon_sym_SEMI] = ACTIONS(815), [anon_sym_LF] = ACTIONS(817), @@ -222183,8 +221530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(815), [anon_sym_or] = ACTIONS(815), [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token1] = ACTIONS(4262), - [aux_sym__immediate_decimal_token2] = ACTIONS(4264), + [aux_sym__immediate_decimal_token1] = ACTIONS(4267), + [aux_sym__immediate_decimal_token2] = ACTIONS(4269), [anon_sym_null] = ACTIONS(815), [anon_sym_true] = ACTIONS(815), [anon_sym_false] = ACTIONS(815), @@ -222209,280 +221556,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1637] = { - [sym_comment] = STATE(1637), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1638] = { - [sym_comment] = STATE(1638), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [1639] = { - [sym_comment] = STATE(1639), - [anon_sym_export] = ACTIONS(4269), - [anon_sym_alias] = ACTIONS(4269), - [anon_sym_let] = ACTIONS(4269), - [anon_sym_let_DASHenv] = ACTIONS(4269), - [anon_sym_mut] = ACTIONS(4269), - [anon_sym_const] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4269), - [sym_cmd_identifier] = ACTIONS(4269), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_def] = ACTIONS(4269), - [anon_sym_export_DASHenv] = ACTIONS(4269), - [anon_sym_extern] = ACTIONS(4269), - [anon_sym_module] = ACTIONS(4269), - [anon_sym_use] = ACTIONS(4269), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4269), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4269), - [anon_sym_error] = ACTIONS(4269), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_for] = ACTIONS(4269), - [anon_sym_loop] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_do] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_match] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4269), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_source] = ACTIONS(4269), - [anon_sym_source_DASHenv] = ACTIONS(4269), - [anon_sym_register] = ACTIONS(4269), - [anon_sym_hide] = ACTIONS(4269), - [anon_sym_hide_DASHenv] = ACTIONS(4269), - [anon_sym_overlay] = ACTIONS(4269), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_not] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4269), - [aux_sym__val_number_token2] = ACTIONS(4269), - [aux_sym__val_number_token3] = ACTIONS(4269), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), - [anon_sym_0b] = ACTIONS(4269), - [anon_sym_0o] = ACTIONS(4269), - [anon_sym_0x] = ACTIONS(4269), - [sym_val_date] = ACTIONS(4269), - [anon_sym_DQUOTE] = ACTIONS(4269), - [sym__str_single_quotes] = ACTIONS(4269), - [sym__str_back_ticks] = ACTIONS(4269), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), + [1627] = { + [sym_expr_parenthesized] = STATE(3082), + [sym__immediate_decimal] = STATE(2976), + [sym_val_variable] = STATE(3082), + [sym__var] = STATE(2708), + [sym_comment] = STATE(1627), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_list] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_make] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_catch] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_as] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(4273), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [anon_sym_DASH2] = ACTIONS(4146), + [anon_sym_PLUS2] = ACTIONS(4148), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [sym__entry_separator] = ACTIONS(1876), + [aux_sym__record_key_token2] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(105), }, - [1640] = { - [sym_comment] = STATE(1640), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(4273), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(4277), - [aux_sym_unquoted_token6] = ACTIONS(4279), + [1628] = { + [sym_comment] = STATE(1628), + [anon_sym_export] = ACTIONS(3887), + [anon_sym_alias] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_let_DASHenv] = ACTIONS(3887), + [anon_sym_mut] = ACTIONS(3887), + [anon_sym_const] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3887), + [sym_cmd_identifier] = ACTIONS(3887), + [anon_sym_LF] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_export_DASHenv] = ACTIONS(3887), + [anon_sym_extern] = ACTIONS(3887), + [anon_sym_module] = ACTIONS(3887), + [anon_sym_use] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3887), + [anon_sym_RPAREN] = ACTIONS(3887), + [anon_sym_DOLLAR] = ACTIONS(3887), + [anon_sym_error] = ACTIONS(3887), + [anon_sym_DASH_DASH] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_loop] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_do] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_RBRACE] = ACTIONS(3887), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_source] = ACTIONS(3887), + [anon_sym_source_DASHenv] = ACTIONS(3887), + [anon_sym_register] = ACTIONS(3887), + [anon_sym_hide] = ACTIONS(3887), + [anon_sym_hide_DASHenv] = ACTIONS(3887), + [anon_sym_overlay] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_null] = ACTIONS(3887), + [anon_sym_true] = ACTIONS(3887), + [anon_sym_false] = ACTIONS(3887), + [aux_sym__val_number_decimal_token1] = ACTIONS(3887), + [aux_sym__val_number_token1] = ACTIONS(3887), + [aux_sym__val_number_token2] = ACTIONS(3887), + [aux_sym__val_number_token3] = ACTIONS(3887), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3887), + [anon_sym_0o] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3887), + [sym_val_date] = ACTIONS(3887), + [anon_sym_DQUOTE] = ACTIONS(3887), + [sym__str_single_quotes] = ACTIONS(3887), + [sym__str_back_ticks] = ACTIONS(3887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3887), [anon_sym_POUND] = ACTIONS(105), }, - [1641] = { - [sym_comment] = STATE(1641), + [1629] = { + [sym_comment] = STATE(1629), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), @@ -222523,8 +221734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token1] = ACTIONS(4281), - [aux_sym__immediate_decimal_token2] = ACTIONS(4283), + [aux_sym__immediate_decimal_token1] = ACTIONS(4275), + [aux_sym__immediate_decimal_token2] = ACTIONS(4277), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -222549,484 +221760,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1642] = { - [sym_comment] = STATE(1642), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), + [1630] = { + [sym_comment] = STATE(1630), + [anon_sym_export] = ACTIONS(4279), + [anon_sym_alias] = ACTIONS(4279), + [anon_sym_let] = ACTIONS(4279), + [anon_sym_let_DASHenv] = ACTIONS(4279), + [anon_sym_mut] = ACTIONS(4279), + [anon_sym_const] = ACTIONS(4279), + [anon_sym_SEMI] = ACTIONS(4279), + [sym_cmd_identifier] = ACTIONS(4279), + [anon_sym_LF] = ACTIONS(4281), + [anon_sym_def] = ACTIONS(4279), + [anon_sym_export_DASHenv] = ACTIONS(4279), + [anon_sym_extern] = ACTIONS(4279), + [anon_sym_module] = ACTIONS(4279), + [anon_sym_use] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4279), + [anon_sym_RPAREN] = ACTIONS(4279), + [anon_sym_DOLLAR] = ACTIONS(4279), + [anon_sym_error] = ACTIONS(4279), + [anon_sym_DASH_DASH] = ACTIONS(4279), + [anon_sym_DASH] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_loop] = ACTIONS(4279), + [anon_sym_while] = ACTIONS(4279), + [anon_sym_do] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_RBRACE] = ACTIONS(4279), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_try] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_source] = ACTIONS(4279), + [anon_sym_source_DASHenv] = ACTIONS(4279), + [anon_sym_register] = ACTIONS(4279), + [anon_sym_hide] = ACTIONS(4279), + [anon_sym_hide_DASHenv] = ACTIONS(4279), + [anon_sym_overlay] = ACTIONS(4279), + [anon_sym_as] = ACTIONS(4279), + [anon_sym_where] = ACTIONS(4279), + [anon_sym_PLUS] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4279), + [anon_sym_true] = ACTIONS(4279), + [anon_sym_false] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4279), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(4279), + [anon_sym_0o] = ACTIONS(4279), + [anon_sym_0x] = ACTIONS(4279), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4279), + [sym__str_single_quotes] = ACTIONS(4279), + [sym__str_back_ticks] = ACTIONS(4279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4279), + [anon_sym_CARET] = ACTIONS(4279), [anon_sym_POUND] = ACTIONS(105), }, - [1643] = { - [sym__expression] = STATE(7470), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1548), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1643), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1631] = { + [sym_comment] = STATE(1631), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, - [1644] = { - [sym__expression] = STATE(7470), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1549), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1644), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1632] = { + [sym_comment] = STATE(1632), + [anon_sym_export] = ACTIONS(4283), + [anon_sym_alias] = ACTIONS(4283), + [anon_sym_let] = ACTIONS(4283), + [anon_sym_let_DASHenv] = ACTIONS(4283), + [anon_sym_mut] = ACTIONS(4283), + [anon_sym_const] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4283), + [sym_cmd_identifier] = ACTIONS(4283), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_def] = ACTIONS(4283), + [anon_sym_export_DASHenv] = ACTIONS(4283), + [anon_sym_extern] = ACTIONS(4283), + [anon_sym_module] = ACTIONS(4283), + [anon_sym_use] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_error] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_for] = ACTIONS(4283), + [anon_sym_loop] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_do] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_match] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_source] = ACTIONS(4283), + [anon_sym_source_DASHenv] = ACTIONS(4283), + [anon_sym_register] = ACTIONS(4283), + [anon_sym_hide] = ACTIONS(4283), + [anon_sym_hide_DASHenv] = ACTIONS(4283), + [anon_sym_overlay] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4283), + [aux_sym__val_number_token2] = ACTIONS(4283), + [aux_sym__val_number_token3] = ACTIONS(4283), + [aux_sym__val_number_token4] = ACTIONS(4283), + [aux_sym__val_number_token5] = ACTIONS(4283), + [aux_sym__val_number_token6] = ACTIONS(4283), + [anon_sym_0b] = ACTIONS(4283), + [anon_sym_0o] = ACTIONS(4283), + [anon_sym_0x] = ACTIONS(4283), + [sym_val_date] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4283), + [sym__str_back_ticks] = ACTIONS(4283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), [anon_sym_POUND] = ACTIONS(105), }, - [1645] = { - [sym_comment] = STATE(1645), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(4289), - [aux_sym__immediate_decimal_token2] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [1633] = { + [sym_comment] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(3911), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_let_DASHenv] = ACTIONS(3909), + [anon_sym_mut] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3909), + [sym_cmd_identifier] = ACTIONS(3909), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_def] = ACTIONS(3909), + [anon_sym_export_DASHenv] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym_module] = ACTIONS(3909), + [anon_sym_use] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3909), + [anon_sym_error] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_loop] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_DOT2] = ACTIONS(4287), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_source] = ACTIONS(3909), + [anon_sym_source_DASHenv] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_hide] = ACTIONS(3909), + [anon_sym_hide_DASHenv] = ACTIONS(3909), + [anon_sym_overlay] = ACTIONS(3909), + [anon_sym_as] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_null] = ACTIONS(3909), + [anon_sym_true] = ACTIONS(3909), + [anon_sym_false] = ACTIONS(3909), + [aux_sym__val_number_decimal_token1] = ACTIONS(3909), + [aux_sym__val_number_token1] = ACTIONS(3909), + [aux_sym__val_number_token2] = ACTIONS(3909), + [aux_sym__val_number_token3] = ACTIONS(3909), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(3909), + [anon_sym_0o] = ACTIONS(3909), + [anon_sym_0x] = ACTIONS(3909), + [sym_val_date] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [sym__str_single_quotes] = ACTIONS(3909), + [sym__str_back_ticks] = ACTIONS(3909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3909), [anon_sym_POUND] = ACTIONS(105), }, - [1646] = { - [sym__expression] = STATE(7470), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1550), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1646), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1634] = { + [sym__expression] = STATE(7461), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1714), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1634), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1647] = { - [sym__expression] = STATE(7470), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1552), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1647), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4285), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1635] = { + [sym_comment] = STATE(1635), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_alias] = ACTIONS(4289), + [anon_sym_let] = ACTIONS(4289), + [anon_sym_let_DASHenv] = ACTIONS(4289), + [anon_sym_mut] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4289), + [sym_cmd_identifier] = ACTIONS(4289), + [anon_sym_LF] = ACTIONS(4291), + [anon_sym_def] = ACTIONS(4289), + [anon_sym_export_DASHenv] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_use] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_RPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(4289), + [anon_sym_error] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_loop] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_match] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_source] = ACTIONS(4289), + [anon_sym_source_DASHenv] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_hide] = ACTIONS(4289), + [anon_sym_hide_DASHenv] = ACTIONS(4289), + [anon_sym_overlay] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [aux_sym__val_number_token4] = ACTIONS(4289), + [aux_sym__val_number_token5] = ACTIONS(4289), + [aux_sym__val_number_token6] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(4289), + [anon_sym_0o] = ACTIONS(4289), + [anon_sym_0x] = ACTIONS(4289), + [sym_val_date] = ACTIONS(4289), + [anon_sym_DQUOTE] = ACTIONS(4289), + [sym__str_single_quotes] = ACTIONS(4289), + [sym__str_back_ticks] = ACTIONS(4289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_CARET] = ACTIONS(4289), [anon_sym_POUND] = ACTIONS(105), }, - [1648] = { - [sym_comment] = STATE(1648), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [1636] = { + [sym_comment] = STATE(1636), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), [aux_sym_unquoted_token5] = ACTIONS(4293), [anon_sym_POUND] = ACTIONS(105), }, - [1649] = { - [sym_comment] = STATE(1649), + [1637] = { + [sym_comment] = STATE(1637), [anon_sym_export] = ACTIONS(4295), [anon_sym_alias] = ACTIONS(4295), [anon_sym_let] = ACTIONS(4295), @@ -223093,76 +222304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4295), [anon_sym_POUND] = ACTIONS(105), }, - [1650] = { - [sym_comment] = STATE(1650), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_POUND] = ACTIONS(105), - }, - [1651] = { - [sym_comment] = STATE(1651), + [1638] = { + [sym_comment] = STATE(1638), [anon_sym_export] = ACTIONS(4299), [anon_sym_alias] = ACTIONS(4299), [anon_sym_let] = ACTIONS(4299), @@ -223229,144 +222372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4299), [anon_sym_POUND] = ACTIONS(105), }, - [1652] = { - [sym_comment] = STATE(1652), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(105), - }, - [1653] = { - [sym_comment] = STATE(1653), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [1639] = { + [sym__expression] = STATE(7461), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1719), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1639), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1654] = { - [sym_comment] = STATE(1654), + [1640] = { + [sym_comment] = STATE(1640), [anon_sym_export] = ACTIONS(4303), [anon_sym_alias] = ACTIONS(4303), [anon_sym_let] = ACTIONS(4303), @@ -223433,144 +222508,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4303), [anon_sym_POUND] = ACTIONS(105), }, - [1655] = { - [sym_comment] = STATE(1655), - [anon_sym_export] = ACTIONS(4307), - [anon_sym_alias] = ACTIONS(4307), - [anon_sym_let] = ACTIONS(4307), - [anon_sym_let_DASHenv] = ACTIONS(4307), - [anon_sym_mut] = ACTIONS(4307), - [anon_sym_const] = ACTIONS(4307), + [1641] = { + [sym_comment] = STATE(1641), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT2] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(105), + }, + [1642] = { + [sym_comment] = STATE(1642), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(105), + }, + [1643] = { + [sym__expression] = STATE(7447), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1594), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1643), [anon_sym_SEMI] = ACTIONS(4307), - [sym_cmd_identifier] = ACTIONS(4307), [anon_sym_LF] = ACTIONS(4309), - [anon_sym_def] = ACTIONS(4307), - [anon_sym_export_DASHenv] = ACTIONS(4307), - [anon_sym_extern] = ACTIONS(4307), - [anon_sym_module] = ACTIONS(4307), - [anon_sym_use] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_DOLLAR] = ACTIONS(4307), - [anon_sym_error] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_break] = ACTIONS(4307), - [anon_sym_continue] = ACTIONS(4307), - [anon_sym_for] = ACTIONS(4307), - [anon_sym_loop] = ACTIONS(4307), - [anon_sym_while] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4307), - [anon_sym_if] = ACTIONS(4307), - [anon_sym_match] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4307), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_try] = ACTIONS(4307), - [anon_sym_return] = ACTIONS(4307), - [anon_sym_source] = ACTIONS(4307), - [anon_sym_source_DASHenv] = ACTIONS(4307), - [anon_sym_register] = ACTIONS(4307), - [anon_sym_hide] = ACTIONS(4307), - [anon_sym_hide_DASHenv] = ACTIONS(4307), - [anon_sym_overlay] = ACTIONS(4307), - [anon_sym_as] = ACTIONS(4307), - [anon_sym_where] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4307), - [anon_sym_not] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4307), - [anon_sym_false] = ACTIONS(4307), - [aux_sym__val_number_decimal_token1] = ACTIONS(4307), - [aux_sym__val_number_token1] = ACTIONS(4307), - [aux_sym__val_number_token2] = ACTIONS(4307), - [aux_sym__val_number_token3] = ACTIONS(4307), - [aux_sym__val_number_token4] = ACTIONS(4307), - [aux_sym__val_number_token5] = ACTIONS(4307), - [aux_sym__val_number_token6] = ACTIONS(4307), - [anon_sym_0b] = ACTIONS(4307), - [anon_sym_0o] = ACTIONS(4307), - [anon_sym_0x] = ACTIONS(4307), - [sym_val_date] = ACTIONS(4307), - [anon_sym_DQUOTE] = ACTIONS(4307), - [sym__str_single_quotes] = ACTIONS(4307), - [sym__str_back_ticks] = ACTIONS(4307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, - [1656] = { - [sym_comment] = STATE(1656), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [1644] = { + [sym_comment] = STATE(1644), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [sym_cmd_identifier] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1284), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1282), + [anon_sym_where] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_not] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, - [1657] = { - [sym_comment] = STATE(1657), + [1645] = { + [sym_comment] = STATE(1645), [anon_sym_export] = ACTIONS(4311), [anon_sym_alias] = ACTIONS(4311), [anon_sym_let] = ACTIONS(4311), @@ -223637,2116 +222848,2388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4311), [anon_sym_POUND] = ACTIONS(105), }, + [1646] = { + [sym_comment] = STATE(1646), + [anon_sym_export] = ACTIONS(4315), + [anon_sym_alias] = ACTIONS(4315), + [anon_sym_let] = ACTIONS(4315), + [anon_sym_let_DASHenv] = ACTIONS(4315), + [anon_sym_mut] = ACTIONS(4315), + [anon_sym_const] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4315), + [sym_cmd_identifier] = ACTIONS(4315), + [anon_sym_LF] = ACTIONS(4317), + [anon_sym_def] = ACTIONS(4315), + [anon_sym_export_DASHenv] = ACTIONS(4315), + [anon_sym_extern] = ACTIONS(4315), + [anon_sym_module] = ACTIONS(4315), + [anon_sym_use] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_RPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4315), + [anon_sym_error] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_break] = ACTIONS(4315), + [anon_sym_continue] = ACTIONS(4315), + [anon_sym_for] = ACTIONS(4315), + [anon_sym_loop] = ACTIONS(4315), + [anon_sym_while] = ACTIONS(4315), + [anon_sym_do] = ACTIONS(4315), + [anon_sym_if] = ACTIONS(4315), + [anon_sym_match] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_try] = ACTIONS(4315), + [anon_sym_return] = ACTIONS(4315), + [anon_sym_source] = ACTIONS(4315), + [anon_sym_source_DASHenv] = ACTIONS(4315), + [anon_sym_register] = ACTIONS(4315), + [anon_sym_hide] = ACTIONS(4315), + [anon_sym_hide_DASHenv] = ACTIONS(4315), + [anon_sym_overlay] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4315), + [anon_sym_not] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(4315), + [aux_sym__val_number_token1] = ACTIONS(4315), + [aux_sym__val_number_token2] = ACTIONS(4315), + [aux_sym__val_number_token3] = ACTIONS(4315), + [aux_sym__val_number_token4] = ACTIONS(4315), + [aux_sym__val_number_token5] = ACTIONS(4315), + [aux_sym__val_number_token6] = ACTIONS(4315), + [anon_sym_0b] = ACTIONS(4315), + [anon_sym_0o] = ACTIONS(4315), + [anon_sym_0x] = ACTIONS(4315), + [sym_val_date] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym__str_single_quotes] = ACTIONS(4315), + [sym__str_back_ticks] = ACTIONS(4315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_POUND] = ACTIONS(105), + }, + [1647] = { + [sym__expression] = STATE(7461), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1722), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1647), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1648] = { + [sym__expression] = STATE(7455), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(7454), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), + [sym_comment] = STATE(1648), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1649] = { + [sym_cell_path] = STATE(2291), + [sym_path] = STATE(1479), + [sym_comment] = STATE(1649), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [sym_cmd_identifier] = ACTIONS(966), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_where] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_not] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(105), + }, + [1650] = { + [sym__expression] = STATE(7455), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1566), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1650), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4096), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1651] = { + [sym_comment] = STATE(1651), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(4319), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1652] = { + [sym_comment] = STATE(1652), + [anon_sym_export] = ACTIONS(4322), + [anon_sym_alias] = ACTIONS(4322), + [anon_sym_let] = ACTIONS(4322), + [anon_sym_let_DASHenv] = ACTIONS(4322), + [anon_sym_mut] = ACTIONS(4322), + [anon_sym_const] = ACTIONS(4322), + [anon_sym_SEMI] = ACTIONS(4322), + [sym_cmd_identifier] = ACTIONS(4322), + [anon_sym_LF] = ACTIONS(4324), + [anon_sym_def] = ACTIONS(4322), + [anon_sym_export_DASHenv] = ACTIONS(4322), + [anon_sym_extern] = ACTIONS(4322), + [anon_sym_module] = ACTIONS(4322), + [anon_sym_use] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(4322), + [anon_sym_RPAREN] = ACTIONS(4322), + [anon_sym_DOLLAR] = ACTIONS(4322), + [anon_sym_error] = ACTIONS(4322), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_DASH] = ACTIONS(4322), + [anon_sym_break] = ACTIONS(4322), + [anon_sym_continue] = ACTIONS(4322), + [anon_sym_for] = ACTIONS(4322), + [anon_sym_loop] = ACTIONS(4322), + [anon_sym_while] = ACTIONS(4322), + [anon_sym_do] = ACTIONS(4322), + [anon_sym_if] = ACTIONS(4322), + [anon_sym_match] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_try] = ACTIONS(4322), + [anon_sym_return] = ACTIONS(4322), + [anon_sym_source] = ACTIONS(4322), + [anon_sym_source_DASHenv] = ACTIONS(4322), + [anon_sym_register] = ACTIONS(4322), + [anon_sym_hide] = ACTIONS(4322), + [anon_sym_hide_DASHenv] = ACTIONS(4322), + [anon_sym_overlay] = ACTIONS(4322), + [anon_sym_as] = ACTIONS(4322), + [anon_sym_where] = ACTIONS(4322), + [anon_sym_PLUS] = ACTIONS(4322), + [anon_sym_not] = ACTIONS(4322), + [anon_sym_null] = ACTIONS(4322), + [anon_sym_true] = ACTIONS(4322), + [anon_sym_false] = ACTIONS(4322), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4322), + [aux_sym__val_number_token5] = ACTIONS(4322), + [aux_sym__val_number_token6] = ACTIONS(4322), + [anon_sym_0b] = ACTIONS(4322), + [anon_sym_0o] = ACTIONS(4322), + [anon_sym_0x] = ACTIONS(4322), + [sym_val_date] = ACTIONS(4322), + [anon_sym_DQUOTE] = ACTIONS(4322), + [sym__str_single_quotes] = ACTIONS(4322), + [sym__str_back_ticks] = ACTIONS(4322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4322), + [anon_sym_CARET] = ACTIONS(4322), + [anon_sym_POUND] = ACTIONS(105), + }, + [1653] = { + [sym_comment] = STATE(1653), + [anon_sym_export] = ACTIONS(4326), + [anon_sym_alias] = ACTIONS(4326), + [anon_sym_let] = ACTIONS(4326), + [anon_sym_let_DASHenv] = ACTIONS(4326), + [anon_sym_mut] = ACTIONS(4326), + [anon_sym_const] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4326), + [sym_cmd_identifier] = ACTIONS(4326), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_def] = ACTIONS(4326), + [anon_sym_export_DASHenv] = ACTIONS(4326), + [anon_sym_extern] = ACTIONS(4326), + [anon_sym_module] = ACTIONS(4326), + [anon_sym_use] = ACTIONS(4326), + [anon_sym_LBRACK] = ACTIONS(4326), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4326), + [anon_sym_error] = ACTIONS(4326), + [anon_sym_DASH_DASH] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_for] = ACTIONS(4326), + [anon_sym_loop] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_do] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_match] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4326), + [anon_sym_RBRACE] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_source] = ACTIONS(4326), + [anon_sym_source_DASHenv] = ACTIONS(4326), + [anon_sym_register] = ACTIONS(4326), + [anon_sym_hide] = ACTIONS(4326), + [anon_sym_hide_DASHenv] = ACTIONS(4326), + [anon_sym_overlay] = ACTIONS(4326), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_not] = ACTIONS(4326), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [aux_sym__val_number_decimal_token1] = ACTIONS(4326), + [aux_sym__val_number_token1] = ACTIONS(4326), + [aux_sym__val_number_token2] = ACTIONS(4326), + [aux_sym__val_number_token3] = ACTIONS(4326), + [aux_sym__val_number_token4] = ACTIONS(4326), + [aux_sym__val_number_token5] = ACTIONS(4326), + [aux_sym__val_number_token6] = ACTIONS(4326), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4326), + [anon_sym_0x] = ACTIONS(4326), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4326), + [sym__str_single_quotes] = ACTIONS(4326), + [sym__str_back_ticks] = ACTIONS(4326), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4326), + [anon_sym_CARET] = ACTIONS(4326), + [anon_sym_POUND] = ACTIONS(105), + }, + [1654] = { + [sym_comment] = STATE(1654), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(105), + }, + [1655] = { + [sym_comment] = STATE(1655), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(105), + }, + [1656] = { + [sym_comment] = STATE(1656), + [anon_sym_export] = ACTIONS(4330), + [anon_sym_alias] = ACTIONS(4330), + [anon_sym_let] = ACTIONS(4330), + [anon_sym_let_DASHenv] = ACTIONS(4330), + [anon_sym_mut] = ACTIONS(4330), + [anon_sym_const] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4330), + [sym_cmd_identifier] = ACTIONS(4330), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_def] = ACTIONS(4330), + [anon_sym_export_DASHenv] = ACTIONS(4330), + [anon_sym_extern] = ACTIONS(4330), + [anon_sym_module] = ACTIONS(4330), + [anon_sym_use] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4330), + [anon_sym_DOLLAR] = ACTIONS(4330), + [anon_sym_error] = ACTIONS(4330), + [anon_sym_DASH_DASH] = ACTIONS(4330), + [anon_sym_DASH] = ACTIONS(4330), + [anon_sym_break] = ACTIONS(4330), + [anon_sym_continue] = ACTIONS(4330), + [anon_sym_for] = ACTIONS(4330), + [anon_sym_loop] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_if] = ACTIONS(4330), + [anon_sym_match] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_RBRACE] = ACTIONS(4330), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4330), + [anon_sym_return] = ACTIONS(4330), + [anon_sym_source] = ACTIONS(4330), + [anon_sym_source_DASHenv] = ACTIONS(4330), + [anon_sym_register] = ACTIONS(4330), + [anon_sym_hide] = ACTIONS(4330), + [anon_sym_hide_DASHenv] = ACTIONS(4330), + [anon_sym_overlay] = ACTIONS(4330), + [anon_sym_as] = ACTIONS(4330), + [anon_sym_where] = ACTIONS(4330), + [anon_sym_PLUS] = ACTIONS(4330), + [anon_sym_not] = ACTIONS(4330), + [anon_sym_null] = ACTIONS(4330), + [anon_sym_true] = ACTIONS(4330), + [anon_sym_false] = ACTIONS(4330), + [aux_sym__val_number_decimal_token1] = ACTIONS(4330), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4330), + [aux_sym__val_number_token5] = ACTIONS(4330), + [aux_sym__val_number_token6] = ACTIONS(4330), + [anon_sym_0b] = ACTIONS(4330), + [anon_sym_0o] = ACTIONS(4330), + [anon_sym_0x] = ACTIONS(4330), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4330), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4330), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4330), + [anon_sym_POUND] = ACTIONS(105), + }, + [1657] = { + [sym_comment] = STATE(1657), + [anon_sym_export] = ACTIONS(4334), + [anon_sym_alias] = ACTIONS(4334), + [anon_sym_let] = ACTIONS(4334), + [anon_sym_let_DASHenv] = ACTIONS(4334), + [anon_sym_mut] = ACTIONS(4334), + [anon_sym_const] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4334), + [sym_cmd_identifier] = ACTIONS(4334), + [anon_sym_LF] = ACTIONS(4336), + [anon_sym_def] = ACTIONS(4334), + [anon_sym_export_DASHenv] = ACTIONS(4334), + [anon_sym_extern] = ACTIONS(4334), + [anon_sym_module] = ACTIONS(4334), + [anon_sym_use] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4334), + [anon_sym_error] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_DASH] = ACTIONS(4334), + [anon_sym_break] = ACTIONS(4334), + [anon_sym_continue] = ACTIONS(4334), + [anon_sym_for] = ACTIONS(4334), + [anon_sym_loop] = ACTIONS(4334), + [anon_sym_while] = ACTIONS(4334), + [anon_sym_do] = ACTIONS(4334), + [anon_sym_if] = ACTIONS(4334), + [anon_sym_match] = ACTIONS(4334), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_RBRACE] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4334), + [anon_sym_try] = ACTIONS(4334), + [anon_sym_return] = ACTIONS(4334), + [anon_sym_source] = ACTIONS(4334), + [anon_sym_source_DASHenv] = ACTIONS(4334), + [anon_sym_register] = ACTIONS(4334), + [anon_sym_hide] = ACTIONS(4334), + [anon_sym_hide_DASHenv] = ACTIONS(4334), + [anon_sym_overlay] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4334), + [anon_sym_where] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4334), + [anon_sym_not] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4334), + [anon_sym_false] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4334), + [aux_sym__val_number_token1] = ACTIONS(4334), + [aux_sym__val_number_token2] = ACTIONS(4334), + [aux_sym__val_number_token3] = ACTIONS(4334), + [aux_sym__val_number_token4] = ACTIONS(4334), + [aux_sym__val_number_token5] = ACTIONS(4334), + [aux_sym__val_number_token6] = ACTIONS(4334), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4334), + [anon_sym_0x] = ACTIONS(4334), + [sym_val_date] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_CARET] = ACTIONS(4334), + [anon_sym_POUND] = ACTIONS(105), + }, [1658] = { - [sym_cell_path] = STATE(2030), - [sym_path] = STATE(1542), [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [sym_cmd_identifier] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_where] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_not] = ACTIONS(979), - [anon_sym_null] = ACTIONS(979), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(979), - [anon_sym_CARET] = ACTIONS(979), + [anon_sym_export] = ACTIONS(4338), + [anon_sym_alias] = ACTIONS(4338), + [anon_sym_let] = ACTIONS(4338), + [anon_sym_let_DASHenv] = ACTIONS(4338), + [anon_sym_mut] = ACTIONS(4338), + [anon_sym_const] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4338), + [sym_cmd_identifier] = ACTIONS(4338), + [anon_sym_LF] = ACTIONS(4340), + [anon_sym_def] = ACTIONS(4338), + [anon_sym_export_DASHenv] = ACTIONS(4338), + [anon_sym_extern] = ACTIONS(4338), + [anon_sym_module] = ACTIONS(4338), + [anon_sym_use] = ACTIONS(4338), + [anon_sym_LBRACK] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym_RPAREN] = ACTIONS(4338), + [anon_sym_DOLLAR] = ACTIONS(4338), + [anon_sym_error] = ACTIONS(4338), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_DASH] = ACTIONS(4338), + [anon_sym_break] = ACTIONS(4338), + [anon_sym_continue] = ACTIONS(4338), + [anon_sym_for] = ACTIONS(4338), + [anon_sym_loop] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_if] = ACTIONS(4338), + [anon_sym_match] = ACTIONS(4338), + [anon_sym_LBRACE] = ACTIONS(4338), + [anon_sym_RBRACE] = ACTIONS(4338), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_try] = ACTIONS(4338), + [anon_sym_return] = ACTIONS(4338), + [anon_sym_source] = ACTIONS(4338), + [anon_sym_source_DASHenv] = ACTIONS(4338), + [anon_sym_register] = ACTIONS(4338), + [anon_sym_hide] = ACTIONS(4338), + [anon_sym_hide_DASHenv] = ACTIONS(4338), + [anon_sym_overlay] = ACTIONS(4338), + [anon_sym_as] = ACTIONS(4338), + [anon_sym_where] = ACTIONS(4338), + [anon_sym_PLUS] = ACTIONS(4338), + [anon_sym_not] = ACTIONS(4338), + [anon_sym_null] = ACTIONS(4338), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(4338), + [aux_sym__val_number_token1] = ACTIONS(4338), + [aux_sym__val_number_token2] = ACTIONS(4338), + [aux_sym__val_number_token3] = ACTIONS(4338), + [aux_sym__val_number_token4] = ACTIONS(4338), + [aux_sym__val_number_token5] = ACTIONS(4338), + [aux_sym__val_number_token6] = ACTIONS(4338), + [anon_sym_0b] = ACTIONS(4338), + [anon_sym_0o] = ACTIONS(4338), + [anon_sym_0x] = ACTIONS(4338), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4338), + [sym__str_single_quotes] = ACTIONS(4338), + [sym__str_back_ticks] = ACTIONS(4338), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4338), [anon_sym_POUND] = ACTIONS(105), }, [1659] = { [sym_comment] = STATE(1659), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_as] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(4342), + [anon_sym_alias] = ACTIONS(4342), + [anon_sym_let] = ACTIONS(4342), + [anon_sym_let_DASHenv] = ACTIONS(4342), + [anon_sym_mut] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4342), + [sym_cmd_identifier] = ACTIONS(4342), + [anon_sym_LF] = ACTIONS(4344), + [anon_sym_def] = ACTIONS(4342), + [anon_sym_export_DASHenv] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym_module] = ACTIONS(4342), + [anon_sym_use] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_RPAREN] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(4342), + [anon_sym_error] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_loop] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_match] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_source] = ACTIONS(4342), + [anon_sym_source_DASHenv] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_hide] = ACTIONS(4342), + [anon_sym_hide_DASHenv] = ACTIONS(4342), + [anon_sym_overlay] = ACTIONS(4342), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [aux_sym__val_number_decimal_token1] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4342), + [aux_sym__val_number_token2] = ACTIONS(4342), + [aux_sym__val_number_token3] = ACTIONS(4342), + [aux_sym__val_number_token4] = ACTIONS(4342), + [aux_sym__val_number_token5] = ACTIONS(4342), + [aux_sym__val_number_token6] = ACTIONS(4342), + [anon_sym_0b] = ACTIONS(4342), + [anon_sym_0o] = ACTIONS(4342), + [anon_sym_0x] = ACTIONS(4342), + [sym_val_date] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4342), [anon_sym_POUND] = ACTIONS(105), }, [1660] = { + [sym__expression] = STATE(7490), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1582), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1660), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4346), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1661] = { [sym_comment] = STATE(1661), - [anon_sym_export] = ACTIONS(4320), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4320), - [anon_sym_let_DASHenv] = ACTIONS(4320), - [anon_sym_mut] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4320), - [sym_cmd_identifier] = ACTIONS(4320), - [anon_sym_LF] = ACTIONS(4322), - [anon_sym_def] = ACTIONS(4320), - [anon_sym_export_DASHenv] = ACTIONS(4320), - [anon_sym_extern] = ACTIONS(4320), - [anon_sym_module] = ACTIONS(4320), - [anon_sym_use] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym_DOLLAR] = ACTIONS(4320), - [anon_sym_error] = ACTIONS(4320), - [anon_sym_DASH_DASH] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_for] = ACTIONS(4320), - [anon_sym_loop] = ACTIONS(4320), - [anon_sym_while] = ACTIONS(4320), - [anon_sym_do] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_match] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_try] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_source] = ACTIONS(4320), - [anon_sym_source_DASHenv] = ACTIONS(4320), - [anon_sym_register] = ACTIONS(4320), - [anon_sym_hide] = ACTIONS(4320), - [anon_sym_hide_DASHenv] = ACTIONS(4320), - [anon_sym_overlay] = ACTIONS(4320), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_not] = ACTIONS(4320), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(4320), - [aux_sym__val_number_token2] = ACTIONS(4320), - [aux_sym__val_number_token3] = ACTIONS(4320), - [aux_sym__val_number_token4] = ACTIONS(4320), - [aux_sym__val_number_token5] = ACTIONS(4320), - [aux_sym__val_number_token6] = ACTIONS(4320), - [anon_sym_0b] = ACTIONS(4320), - [anon_sym_0o] = ACTIONS(4320), - [anon_sym_0x] = ACTIONS(4320), - [sym_val_date] = ACTIONS(4320), - [anon_sym_DQUOTE] = ACTIONS(4320), - [sym__str_single_quotes] = ACTIONS(4320), - [sym__str_back_ticks] = ACTIONS(4320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4320), - [anon_sym_CARET] = ACTIONS(4320), + [ts_builtin_sym_end] = ACTIONS(3891), + [anon_sym_export] = ACTIONS(3887), + [anon_sym_alias] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_let_DASHenv] = ACTIONS(3887), + [anon_sym_mut] = ACTIONS(3887), + [anon_sym_const] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3887), + [sym_cmd_identifier] = ACTIONS(3887), + [sym_long_flag_identifier] = ACTIONS(4350), + [anon_sym_LF] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_export_DASHenv] = ACTIONS(3887), + [anon_sym_extern] = ACTIONS(3887), + [anon_sym_module] = ACTIONS(3887), + [anon_sym_use] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3887), + [anon_sym_DOLLAR] = ACTIONS(3887), + [anon_sym_error] = ACTIONS(3887), + [anon_sym_DASH_DASH] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_loop] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_do] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_source] = ACTIONS(3887), + [anon_sym_source_DASHenv] = ACTIONS(3887), + [anon_sym_register] = ACTIONS(3887), + [anon_sym_hide] = ACTIONS(3887), + [anon_sym_hide_DASHenv] = ACTIONS(3887), + [anon_sym_overlay] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_null] = ACTIONS(3887), + [anon_sym_true] = ACTIONS(3887), + [anon_sym_false] = ACTIONS(3887), + [aux_sym__val_number_decimal_token1] = ACTIONS(3887), + [aux_sym__val_number_token1] = ACTIONS(3887), + [aux_sym__val_number_token2] = ACTIONS(3887), + [aux_sym__val_number_token3] = ACTIONS(3887), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3887), + [anon_sym_0o] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3887), + [sym_val_date] = ACTIONS(3887), + [anon_sym_DQUOTE] = ACTIONS(3887), + [sym__str_single_quotes] = ACTIONS(3887), + [sym__str_back_ticks] = ACTIONS(3887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3887), [anon_sym_POUND] = ACTIONS(105), }, [1662] = { [sym_comment] = STATE(1662), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_let_DASHenv] = ACTIONS(4013), - [anon_sym_mut] = ACTIONS(4013), - [anon_sym_const] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4013), - [sym_cmd_identifier] = ACTIONS(4013), - [anon_sym_LF] = ACTIONS(4015), - [anon_sym_def] = ACTIONS(4013), - [anon_sym_export_DASHenv] = ACTIONS(4013), - [anon_sym_extern] = ACTIONS(4013), - [anon_sym_module] = ACTIONS(4013), - [anon_sym_use] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_RPAREN] = ACTIONS(4013), - [anon_sym_DOLLAR] = ACTIONS(4013), - [anon_sym_error] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_break] = ACTIONS(4013), - [anon_sym_continue] = ACTIONS(4013), - [anon_sym_for] = ACTIONS(4013), - [anon_sym_loop] = ACTIONS(4013), - [anon_sym_while] = ACTIONS(4013), - [anon_sym_do] = ACTIONS(4013), - [anon_sym_if] = ACTIONS(4013), - [anon_sym_match] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_try] = ACTIONS(4013), - [anon_sym_return] = ACTIONS(4013), - [anon_sym_source] = ACTIONS(4013), - [anon_sym_source_DASHenv] = ACTIONS(4013), - [anon_sym_register] = ACTIONS(4013), - [anon_sym_hide] = ACTIONS(4013), - [anon_sym_hide_DASHenv] = ACTIONS(4013), - [anon_sym_overlay] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_not] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4013), - [anon_sym_false] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(4013), - [aux_sym__val_number_token1] = ACTIONS(4013), - [aux_sym__val_number_token2] = ACTIONS(4013), - [aux_sym__val_number_token3] = ACTIONS(4013), - [aux_sym__val_number_token4] = ACTIONS(4013), - [aux_sym__val_number_token5] = ACTIONS(4013), - [aux_sym__val_number_token6] = ACTIONS(4013), - [anon_sym_0b] = ACTIONS(4013), - [anon_sym_0o] = ACTIONS(4013), - [anon_sym_0x] = ACTIONS(4013), - [sym_val_date] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym__str_single_quotes] = ACTIONS(4013), - [sym__str_back_ticks] = ACTIONS(4013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4013), - [anon_sym_CARET] = ACTIONS(4013), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(105), }, [1663] = { [sym_comment] = STATE(1663), - [anon_sym_export] = ACTIONS(4324), - [anon_sym_alias] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_let_DASHenv] = ACTIONS(4324), - [anon_sym_mut] = ACTIONS(4324), - [anon_sym_const] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4324), - [sym_cmd_identifier] = ACTIONS(4324), - [anon_sym_LF] = ACTIONS(4326), - [anon_sym_def] = ACTIONS(4324), - [anon_sym_export_DASHenv] = ACTIONS(4324), - [anon_sym_extern] = ACTIONS(4324), - [anon_sym_module] = ACTIONS(4324), - [anon_sym_use] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_DOLLAR] = ACTIONS(4324), - [anon_sym_error] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_for] = ACTIONS(4324), - [anon_sym_loop] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_do] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_match] = ACTIONS(4324), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_source] = ACTIONS(4324), - [anon_sym_source_DASHenv] = ACTIONS(4324), - [anon_sym_register] = ACTIONS(4324), - [anon_sym_hide] = ACTIONS(4324), - [anon_sym_hide_DASHenv] = ACTIONS(4324), - [anon_sym_overlay] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_not] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [aux_sym__val_number_decimal_token1] = ACTIONS(4324), - [aux_sym__val_number_token1] = ACTIONS(4324), - [aux_sym__val_number_token2] = ACTIONS(4324), - [aux_sym__val_number_token3] = ACTIONS(4324), - [aux_sym__val_number_token4] = ACTIONS(4324), - [aux_sym__val_number_token5] = ACTIONS(4324), - [aux_sym__val_number_token6] = ACTIONS(4324), - [anon_sym_0b] = ACTIONS(4324), - [anon_sym_0o] = ACTIONS(4324), - [anon_sym_0x] = ACTIONS(4324), - [sym_val_date] = ACTIONS(4324), - [anon_sym_DQUOTE] = ACTIONS(4324), - [sym__str_single_quotes] = ACTIONS(4324), - [sym__str_back_ticks] = ACTIONS(4324), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4324), - [anon_sym_CARET] = ACTIONS(4324), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1664] = { [sym_comment] = STATE(1664), - [anon_sym_export] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4328), - [anon_sym_let] = ACTIONS(4328), - [anon_sym_let_DASHenv] = ACTIONS(4328), - [anon_sym_mut] = ACTIONS(4328), - [anon_sym_const] = ACTIONS(4328), - [anon_sym_SEMI] = ACTIONS(4328), - [sym_cmd_identifier] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4330), - [anon_sym_def] = ACTIONS(4328), - [anon_sym_export_DASHenv] = ACTIONS(4328), - [anon_sym_extern] = ACTIONS(4328), - [anon_sym_module] = ACTIONS(4328), - [anon_sym_use] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4328), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym_RPAREN] = ACTIONS(4328), - [anon_sym_DOLLAR] = ACTIONS(4328), - [anon_sym_error] = ACTIONS(4328), - [anon_sym_DASH_DASH] = ACTIONS(4328), - [anon_sym_DASH] = ACTIONS(4328), - [anon_sym_break] = ACTIONS(4328), - [anon_sym_continue] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4328), - [anon_sym_loop] = ACTIONS(4328), - [anon_sym_while] = ACTIONS(4328), - [anon_sym_do] = ACTIONS(4328), - [anon_sym_if] = ACTIONS(4328), - [anon_sym_match] = ACTIONS(4328), - [anon_sym_LBRACE] = ACTIONS(4328), - [anon_sym_RBRACE] = ACTIONS(4328), - [anon_sym_DOT] = ACTIONS(4328), - [anon_sym_try] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4328), - [anon_sym_source] = ACTIONS(4328), - [anon_sym_source_DASHenv] = ACTIONS(4328), - [anon_sym_register] = ACTIONS(4328), - [anon_sym_hide] = ACTIONS(4328), - [anon_sym_hide_DASHenv] = ACTIONS(4328), - [anon_sym_overlay] = ACTIONS(4328), - [anon_sym_as] = ACTIONS(4328), - [anon_sym_where] = ACTIONS(4328), - [anon_sym_PLUS] = ACTIONS(4328), - [anon_sym_not] = ACTIONS(4328), - [anon_sym_null] = ACTIONS(4328), - [anon_sym_true] = ACTIONS(4328), - [anon_sym_false] = ACTIONS(4328), - [aux_sym__val_number_decimal_token1] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4328), - [aux_sym__val_number_token2] = ACTIONS(4328), - [aux_sym__val_number_token3] = ACTIONS(4328), - [aux_sym__val_number_token4] = ACTIONS(4328), - [aux_sym__val_number_token5] = ACTIONS(4328), - [aux_sym__val_number_token6] = ACTIONS(4328), - [anon_sym_0b] = ACTIONS(4328), - [anon_sym_0o] = ACTIONS(4328), - [anon_sym_0x] = ACTIONS(4328), - [sym_val_date] = ACTIONS(4328), - [anon_sym_DQUOTE] = ACTIONS(4328), - [sym__str_single_quotes] = ACTIONS(4328), - [sym__str_back_ticks] = ACTIONS(4328), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4328), - [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_export] = ACTIONS(4352), + [anon_sym_alias] = ACTIONS(4352), + [anon_sym_let] = ACTIONS(4352), + [anon_sym_let_DASHenv] = ACTIONS(4352), + [anon_sym_mut] = ACTIONS(4352), + [anon_sym_const] = ACTIONS(4352), + [anon_sym_SEMI] = ACTIONS(4352), + [sym_cmd_identifier] = ACTIONS(4352), + [anon_sym_LF] = ACTIONS(4354), + [anon_sym_def] = ACTIONS(4352), + [anon_sym_export_DASHenv] = ACTIONS(4352), + [anon_sym_extern] = ACTIONS(4352), + [anon_sym_module] = ACTIONS(4352), + [anon_sym_use] = ACTIONS(4352), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_RPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4352), + [anon_sym_error] = ACTIONS(4352), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_break] = ACTIONS(4352), + [anon_sym_continue] = ACTIONS(4352), + [anon_sym_for] = ACTIONS(4352), + [anon_sym_loop] = ACTIONS(4352), + [anon_sym_while] = ACTIONS(4352), + [anon_sym_do] = ACTIONS(4352), + [anon_sym_if] = ACTIONS(4352), + [anon_sym_match] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4352), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(4352), + [anon_sym_try] = ACTIONS(4352), + [anon_sym_return] = ACTIONS(4352), + [anon_sym_source] = ACTIONS(4352), + [anon_sym_source_DASHenv] = ACTIONS(4352), + [anon_sym_register] = ACTIONS(4352), + [anon_sym_hide] = ACTIONS(4352), + [anon_sym_hide_DASHenv] = ACTIONS(4352), + [anon_sym_overlay] = ACTIONS(4352), + [anon_sym_as] = ACTIONS(4352), + [anon_sym_where] = ACTIONS(4352), + [anon_sym_PLUS] = ACTIONS(4352), + [anon_sym_not] = ACTIONS(4352), + [anon_sym_null] = ACTIONS(4352), + [anon_sym_true] = ACTIONS(4352), + [anon_sym_false] = ACTIONS(4352), + [aux_sym__val_number_decimal_token1] = ACTIONS(4352), + [aux_sym__val_number_token1] = ACTIONS(4352), + [aux_sym__val_number_token2] = ACTIONS(4352), + [aux_sym__val_number_token3] = ACTIONS(4352), + [aux_sym__val_number_token4] = ACTIONS(4352), + [aux_sym__val_number_token5] = ACTIONS(4352), + [aux_sym__val_number_token6] = ACTIONS(4352), + [anon_sym_0b] = ACTIONS(4352), + [anon_sym_0o] = ACTIONS(4352), + [anon_sym_0x] = ACTIONS(4352), + [sym_val_date] = ACTIONS(4352), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4352), + [sym__str_back_ticks] = ACTIONS(4352), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4352), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(4352), [anon_sym_POUND] = ACTIONS(105), }, [1665] = { + [sym__terminator] = STATE(2071), [sym_comment] = STATE(1665), - [anon_sym_export] = ACTIONS(4332), - [anon_sym_alias] = ACTIONS(4332), - [anon_sym_let] = ACTIONS(4332), - [anon_sym_let_DASHenv] = ACTIONS(4332), - [anon_sym_mut] = ACTIONS(4332), - [anon_sym_const] = ACTIONS(4332), - [anon_sym_SEMI] = ACTIONS(4332), - [sym_cmd_identifier] = ACTIONS(4332), - [anon_sym_LF] = ACTIONS(4334), - [anon_sym_def] = ACTIONS(4332), - [anon_sym_export_DASHenv] = ACTIONS(4332), - [anon_sym_extern] = ACTIONS(4332), - [anon_sym_module] = ACTIONS(4332), - [anon_sym_use] = ACTIONS(4332), - [anon_sym_LBRACK] = ACTIONS(4332), - [anon_sym_LPAREN] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(4332), - [anon_sym_DOLLAR] = ACTIONS(4332), - [anon_sym_error] = ACTIONS(4332), - [anon_sym_DASH_DASH] = ACTIONS(4332), - [anon_sym_DASH] = ACTIONS(4332), - [anon_sym_break] = ACTIONS(4332), - [anon_sym_continue] = ACTIONS(4332), - [anon_sym_for] = ACTIONS(4332), - [anon_sym_loop] = ACTIONS(4332), - [anon_sym_while] = ACTIONS(4332), - [anon_sym_do] = ACTIONS(4332), - [anon_sym_if] = ACTIONS(4332), - [anon_sym_match] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(4332), - [anon_sym_RBRACE] = ACTIONS(4332), - [anon_sym_DOT] = ACTIONS(4332), - [anon_sym_try] = ACTIONS(4332), - [anon_sym_return] = ACTIONS(4332), - [anon_sym_source] = ACTIONS(4332), - [anon_sym_source_DASHenv] = ACTIONS(4332), - [anon_sym_register] = ACTIONS(4332), - [anon_sym_hide] = ACTIONS(4332), - [anon_sym_hide_DASHenv] = ACTIONS(4332), - [anon_sym_overlay] = ACTIONS(4332), - [anon_sym_as] = ACTIONS(4332), - [anon_sym_where] = ACTIONS(4332), - [anon_sym_PLUS] = ACTIONS(4332), - [anon_sym_not] = ACTIONS(4332), - [anon_sym_null] = ACTIONS(4332), - [anon_sym_true] = ACTIONS(4332), - [anon_sym_false] = ACTIONS(4332), - [aux_sym__val_number_decimal_token1] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4332), - [aux_sym__val_number_token2] = ACTIONS(4332), - [aux_sym__val_number_token3] = ACTIONS(4332), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4332), - [anon_sym_0o] = ACTIONS(4332), - [anon_sym_0x] = ACTIONS(4332), - [sym_val_date] = ACTIONS(4332), - [anon_sym_DQUOTE] = ACTIONS(4332), - [sym__str_single_quotes] = ACTIONS(4332), - [sym__str_back_ticks] = ACTIONS(4332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4332), - [anon_sym_CARET] = ACTIONS(4332), + [aux_sym__block_body_repeat1] = STATE(1665), + [anon_sym_export] = ACTIONS(4356), + [anon_sym_alias] = ACTIONS(4356), + [anon_sym_let] = ACTIONS(4356), + [anon_sym_let_DASHenv] = ACTIONS(4356), + [anon_sym_mut] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4356), + [anon_sym_SEMI] = ACTIONS(4358), + [sym_cmd_identifier] = ACTIONS(4356), + [anon_sym_LF] = ACTIONS(4361), + [anon_sym_def] = ACTIONS(4356), + [anon_sym_export_DASHenv] = ACTIONS(4356), + [anon_sym_extern] = ACTIONS(4356), + [anon_sym_module] = ACTIONS(4356), + [anon_sym_use] = ACTIONS(4356), + [anon_sym_LBRACK] = ACTIONS(4356), + [anon_sym_LPAREN] = ACTIONS(4356), + [anon_sym_RPAREN] = ACTIONS(4356), + [anon_sym_DOLLAR] = ACTIONS(4356), + [anon_sym_error] = ACTIONS(4356), + [anon_sym_DASH] = ACTIONS(4356), + [anon_sym_break] = ACTIONS(4356), + [anon_sym_continue] = ACTIONS(4356), + [anon_sym_for] = ACTIONS(4356), + [anon_sym_loop] = ACTIONS(4356), + [anon_sym_while] = ACTIONS(4356), + [anon_sym_do] = ACTIONS(4356), + [anon_sym_if] = ACTIONS(4356), + [anon_sym_match] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_RBRACE] = ACTIONS(4356), + [anon_sym_DOT] = ACTIONS(4356), + [anon_sym_try] = ACTIONS(4356), + [anon_sym_return] = ACTIONS(4356), + [anon_sym_source] = ACTIONS(4356), + [anon_sym_source_DASHenv] = ACTIONS(4356), + [anon_sym_register] = ACTIONS(4356), + [anon_sym_hide] = ACTIONS(4356), + [anon_sym_hide_DASHenv] = ACTIONS(4356), + [anon_sym_overlay] = ACTIONS(4356), + [anon_sym_where] = ACTIONS(4356), + [anon_sym_PLUS] = ACTIONS(4356), + [anon_sym_not] = ACTIONS(4356), + [anon_sym_null] = ACTIONS(4356), + [anon_sym_true] = ACTIONS(4356), + [anon_sym_false] = ACTIONS(4356), + [aux_sym__val_number_decimal_token1] = ACTIONS(4356), + [aux_sym__val_number_token1] = ACTIONS(4356), + [aux_sym__val_number_token2] = ACTIONS(4356), + [aux_sym__val_number_token3] = ACTIONS(4356), + [aux_sym__val_number_token4] = ACTIONS(4356), + [aux_sym__val_number_token5] = ACTIONS(4356), + [aux_sym__val_number_token6] = ACTIONS(4356), + [anon_sym_0b] = ACTIONS(4356), + [anon_sym_0o] = ACTIONS(4356), + [anon_sym_0x] = ACTIONS(4356), + [sym_val_date] = ACTIONS(4356), + [anon_sym_DQUOTE] = ACTIONS(4356), + [sym__str_single_quotes] = ACTIONS(4356), + [sym__str_back_ticks] = ACTIONS(4356), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4356), + [anon_sym_CARET] = ACTIONS(4356), [anon_sym_POUND] = ACTIONS(105), }, [1666] = { [sym_comment] = STATE(1666), - [anon_sym_export] = ACTIONS(4336), - [anon_sym_alias] = ACTIONS(4336), - [anon_sym_let] = ACTIONS(4336), - [anon_sym_let_DASHenv] = ACTIONS(4336), - [anon_sym_mut] = ACTIONS(4336), - [anon_sym_const] = ACTIONS(4336), - [anon_sym_SEMI] = ACTIONS(4336), - [sym_cmd_identifier] = ACTIONS(4336), - [anon_sym_LF] = ACTIONS(4338), - [anon_sym_def] = ACTIONS(4336), - [anon_sym_export_DASHenv] = ACTIONS(4336), - [anon_sym_extern] = ACTIONS(4336), - [anon_sym_module] = ACTIONS(4336), - [anon_sym_use] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4336), - [anon_sym_LPAREN] = ACTIONS(4336), - [anon_sym_RPAREN] = ACTIONS(4336), - [anon_sym_DOLLAR] = ACTIONS(4336), - [anon_sym_error] = ACTIONS(4336), - [anon_sym_DASH_DASH] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_break] = ACTIONS(4336), - [anon_sym_continue] = ACTIONS(4336), - [anon_sym_for] = ACTIONS(4336), - [anon_sym_loop] = ACTIONS(4336), - [anon_sym_while] = ACTIONS(4336), - [anon_sym_do] = ACTIONS(4336), - [anon_sym_if] = ACTIONS(4336), - [anon_sym_match] = ACTIONS(4336), - [anon_sym_LBRACE] = ACTIONS(4336), - [anon_sym_RBRACE] = ACTIONS(4336), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_try] = ACTIONS(4336), - [anon_sym_return] = ACTIONS(4336), - [anon_sym_source] = ACTIONS(4336), - [anon_sym_source_DASHenv] = ACTIONS(4336), - [anon_sym_register] = ACTIONS(4336), - [anon_sym_hide] = ACTIONS(4336), - [anon_sym_hide_DASHenv] = ACTIONS(4336), - [anon_sym_overlay] = ACTIONS(4336), - [anon_sym_as] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4336), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_not] = ACTIONS(4336), - [anon_sym_null] = ACTIONS(4336), - [anon_sym_true] = ACTIONS(4336), - [anon_sym_false] = ACTIONS(4336), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_token1] = ACTIONS(4336), - [aux_sym__val_number_token2] = ACTIONS(4336), - [aux_sym__val_number_token3] = ACTIONS(4336), - [aux_sym__val_number_token4] = ACTIONS(4336), - [aux_sym__val_number_token5] = ACTIONS(4336), - [aux_sym__val_number_token6] = ACTIONS(4336), - [anon_sym_0b] = ACTIONS(4336), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4336), - [sym__str_single_quotes] = ACTIONS(4336), - [sym__str_back_ticks] = ACTIONS(4336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4336), - [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_export] = ACTIONS(4364), + [anon_sym_alias] = ACTIONS(4364), + [anon_sym_let] = ACTIONS(4364), + [anon_sym_let_DASHenv] = ACTIONS(4364), + [anon_sym_mut] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [sym_cmd_identifier] = ACTIONS(4364), + [anon_sym_LF] = ACTIONS(4366), + [anon_sym_def] = ACTIONS(4364), + [anon_sym_export_DASHenv] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym_module] = ACTIONS(4364), + [anon_sym_use] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_DOLLAR] = ACTIONS(4364), + [anon_sym_error] = ACTIONS(4364), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4364), + [anon_sym_continue] = ACTIONS(4364), + [anon_sym_for] = ACTIONS(4364), + [anon_sym_loop] = ACTIONS(4364), + [anon_sym_while] = ACTIONS(4364), + [anon_sym_do] = ACTIONS(4364), + [anon_sym_if] = ACTIONS(4364), + [anon_sym_match] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4364), + [anon_sym_source] = ACTIONS(4364), + [anon_sym_source_DASHenv] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_hide] = ACTIONS(4364), + [anon_sym_hide_DASHenv] = ACTIONS(4364), + [anon_sym_overlay] = ACTIONS(4364), + [anon_sym_as] = ACTIONS(4364), + [anon_sym_where] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_not] = ACTIONS(4364), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4364), + [aux_sym__val_number_token1] = ACTIONS(4364), + [aux_sym__val_number_token2] = ACTIONS(4364), + [aux_sym__val_number_token3] = ACTIONS(4364), + [aux_sym__val_number_token4] = ACTIONS(4364), + [aux_sym__val_number_token5] = ACTIONS(4364), + [aux_sym__val_number_token6] = ACTIONS(4364), + [anon_sym_0b] = ACTIONS(4364), + [anon_sym_0o] = ACTIONS(4364), + [anon_sym_0x] = ACTIONS(4364), + [sym_val_date] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym__str_single_quotes] = ACTIONS(4364), + [sym__str_back_ticks] = ACTIONS(4364), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4364), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4364), + [anon_sym_CARET] = ACTIONS(4364), [anon_sym_POUND] = ACTIONS(105), }, [1667] = { + [sym__expression] = STATE(7490), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1634), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1667), - [anon_sym_export] = ACTIONS(3947), - [anon_sym_alias] = ACTIONS(3947), - [anon_sym_let] = ACTIONS(3947), - [anon_sym_let_DASHenv] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [sym_cmd_identifier] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3947), - [anon_sym_export_DASHenv] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym_module] = ACTIONS(3947), - [anon_sym_use] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [anon_sym_error] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_loop] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_RBRACE] = ACTIONS(3947), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_source] = ACTIONS(3947), - [anon_sym_source_DASHenv] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_hide] = ACTIONS(3947), - [anon_sym_hide_DASHenv] = ACTIONS(3947), - [anon_sym_overlay] = ACTIONS(3947), - [anon_sym_as] = ACTIONS(3947), - [anon_sym_where] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(3947), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3947), - [aux_sym__val_number_token5] = ACTIONS(3947), - [aux_sym__val_number_token6] = ACTIONS(3947), - [anon_sym_0b] = ACTIONS(3947), - [anon_sym_0o] = ACTIONS(3947), - [anon_sym_0x] = ACTIONS(3947), - [sym_val_date] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4346), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1668] = { [sym_comment] = STATE(1668), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [1669] = { [sym_comment] = STATE(1669), - [anon_sym_export] = ACTIONS(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_let_DASHenv] = ACTIONS(4340), - [anon_sym_mut] = ACTIONS(4340), - [anon_sym_const] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4340), - [sym_cmd_identifier] = ACTIONS(4340), - [anon_sym_LF] = ACTIONS(4342), - [anon_sym_def] = ACTIONS(4340), - [anon_sym_export_DASHenv] = ACTIONS(4340), - [anon_sym_extern] = ACTIONS(4340), - [anon_sym_module] = ACTIONS(4340), - [anon_sym_use] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4340), - [anon_sym_LPAREN] = ACTIONS(4340), - [anon_sym_RPAREN] = ACTIONS(4340), - [anon_sym_DOLLAR] = ACTIONS(4340), - [anon_sym_error] = ACTIONS(4340), - [anon_sym_DASH_DASH] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_for] = ACTIONS(4340), - [anon_sym_loop] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_do] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_match] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4340), - [anon_sym_RBRACE] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_source] = ACTIONS(4340), - [anon_sym_source_DASHenv] = ACTIONS(4340), - [anon_sym_register] = ACTIONS(4340), - [anon_sym_hide] = ACTIONS(4340), - [anon_sym_hide_DASHenv] = ACTIONS(4340), - [anon_sym_overlay] = ACTIONS(4340), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_not] = ACTIONS(4340), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [aux_sym__val_number_decimal_token1] = ACTIONS(4340), - [aux_sym__val_number_token1] = ACTIONS(4340), - [aux_sym__val_number_token2] = ACTIONS(4340), - [aux_sym__val_number_token3] = ACTIONS(4340), - [aux_sym__val_number_token4] = ACTIONS(4340), - [aux_sym__val_number_token5] = ACTIONS(4340), - [aux_sym__val_number_token6] = ACTIONS(4340), - [anon_sym_0b] = ACTIONS(4340), - [anon_sym_0o] = ACTIONS(4340), - [anon_sym_0x] = ACTIONS(4340), - [sym_val_date] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4340), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4340), - [anon_sym_CARET] = ACTIONS(4340), + [ts_builtin_sym_end] = ACTIONS(1187), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), [anon_sym_POUND] = ACTIONS(105), }, [1670] = { [sym_comment] = STATE(1670), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(3907), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, [1671] = { [sym_comment] = STATE(1671), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(4350), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [anon_sym_export] = ACTIONS(4368), + [anon_sym_alias] = ACTIONS(4368), + [anon_sym_let] = ACTIONS(4368), + [anon_sym_let_DASHenv] = ACTIONS(4368), + [anon_sym_mut] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4368), + [sym_cmd_identifier] = ACTIONS(4368), + [anon_sym_LF] = ACTIONS(4370), + [anon_sym_def] = ACTIONS(4368), + [anon_sym_export_DASHenv] = ACTIONS(4368), + [anon_sym_extern] = ACTIONS(4368), + [anon_sym_module] = ACTIONS(4368), + [anon_sym_use] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_RPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(4368), + [anon_sym_error] = ACTIONS(4368), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4368), + [anon_sym_continue] = ACTIONS(4368), + [anon_sym_for] = ACTIONS(4368), + [anon_sym_loop] = ACTIONS(4368), + [anon_sym_while] = ACTIONS(4368), + [anon_sym_do] = ACTIONS(4368), + [anon_sym_if] = ACTIONS(4368), + [anon_sym_match] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_DOT] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4368), + [anon_sym_source] = ACTIONS(4368), + [anon_sym_source_DASHenv] = ACTIONS(4368), + [anon_sym_register] = ACTIONS(4368), + [anon_sym_hide] = ACTIONS(4368), + [anon_sym_hide_DASHenv] = ACTIONS(4368), + [anon_sym_overlay] = ACTIONS(4368), + [anon_sym_as] = ACTIONS(4368), + [anon_sym_where] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(4368), + [anon_sym_not] = ACTIONS(4368), + [anon_sym_null] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4368), + [anon_sym_false] = ACTIONS(4368), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_token1] = ACTIONS(4368), + [aux_sym__val_number_token2] = ACTIONS(4368), + [aux_sym__val_number_token3] = ACTIONS(4368), + [aux_sym__val_number_token4] = ACTIONS(4368), + [aux_sym__val_number_token5] = ACTIONS(4368), + [aux_sym__val_number_token6] = ACTIONS(4368), + [anon_sym_0b] = ACTIONS(4368), + [anon_sym_0o] = ACTIONS(4368), + [anon_sym_0x] = ACTIONS(4368), + [sym_val_date] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym__str_single_quotes] = ACTIONS(4368), + [sym__str_back_ticks] = ACTIONS(4368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), + [anon_sym_CARET] = ACTIONS(4368), [anon_sym_POUND] = ACTIONS(105), }, [1672] = { [sym_comment] = STATE(1672), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(4372), + [anon_sym_alias] = ACTIONS(4372), + [anon_sym_let] = ACTIONS(4372), + [anon_sym_let_DASHenv] = ACTIONS(4372), + [anon_sym_mut] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4372), + [sym_cmd_identifier] = ACTIONS(4372), + [anon_sym_LF] = ACTIONS(4374), + [anon_sym_def] = ACTIONS(4372), + [anon_sym_export_DASHenv] = ACTIONS(4372), + [anon_sym_extern] = ACTIONS(4372), + [anon_sym_module] = ACTIONS(4372), + [anon_sym_use] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_RPAREN] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(4372), + [anon_sym_error] = ACTIONS(4372), + [anon_sym_DASH_DASH] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4372), + [anon_sym_continue] = ACTIONS(4372), + [anon_sym_for] = ACTIONS(4372), + [anon_sym_loop] = ACTIONS(4372), + [anon_sym_while] = ACTIONS(4372), + [anon_sym_do] = ACTIONS(4372), + [anon_sym_if] = ACTIONS(4372), + [anon_sym_match] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_DOT] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4372), + [anon_sym_source] = ACTIONS(4372), + [anon_sym_source_DASHenv] = ACTIONS(4372), + [anon_sym_register] = ACTIONS(4372), + [anon_sym_hide] = ACTIONS(4372), + [anon_sym_hide_DASHenv] = ACTIONS(4372), + [anon_sym_overlay] = ACTIONS(4372), + [anon_sym_as] = ACTIONS(4372), + [anon_sym_where] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(4372), + [anon_sym_not] = ACTIONS(4372), + [anon_sym_null] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4372), + [anon_sym_false] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4372), + [aux_sym__val_number_token2] = ACTIONS(4372), + [aux_sym__val_number_token3] = ACTIONS(4372), + [aux_sym__val_number_token4] = ACTIONS(4372), + [aux_sym__val_number_token5] = ACTIONS(4372), + [aux_sym__val_number_token6] = ACTIONS(4372), + [anon_sym_0b] = ACTIONS(4372), + [anon_sym_0o] = ACTIONS(4372), + [anon_sym_0x] = ACTIONS(4372), + [sym_val_date] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym__str_single_quotes] = ACTIONS(4372), + [sym__str_back_ticks] = ACTIONS(4372), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4372), + [anon_sym_CARET] = ACTIONS(4372), [anon_sym_POUND] = ACTIONS(105), }, [1673] = { [sym_comment] = STATE(1673), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(4376), + [anon_sym_alias] = ACTIONS(4376), + [anon_sym_let] = ACTIONS(4376), + [anon_sym_let_DASHenv] = ACTIONS(4376), + [anon_sym_mut] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_SEMI] = ACTIONS(4376), + [sym_cmd_identifier] = ACTIONS(4376), + [anon_sym_LF] = ACTIONS(4378), + [anon_sym_def] = ACTIONS(4376), + [anon_sym_export_DASHenv] = ACTIONS(4376), + [anon_sym_extern] = ACTIONS(4376), + [anon_sym_module] = ACTIONS(4376), + [anon_sym_use] = ACTIONS(4376), + [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LPAREN] = ACTIONS(4376), + [anon_sym_RPAREN] = ACTIONS(4376), + [anon_sym_DOLLAR] = ACTIONS(4376), + [anon_sym_error] = ACTIONS(4376), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_DASH] = ACTIONS(4376), + [anon_sym_break] = ACTIONS(4376), + [anon_sym_continue] = ACTIONS(4376), + [anon_sym_for] = ACTIONS(4376), + [anon_sym_loop] = ACTIONS(4376), + [anon_sym_while] = ACTIONS(4376), + [anon_sym_do] = ACTIONS(4376), + [anon_sym_if] = ACTIONS(4376), + [anon_sym_match] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4376), + [anon_sym_RBRACE] = ACTIONS(4376), + [anon_sym_DOT] = ACTIONS(4376), + [anon_sym_try] = ACTIONS(4376), + [anon_sym_return] = ACTIONS(4376), + [anon_sym_source] = ACTIONS(4376), + [anon_sym_source_DASHenv] = ACTIONS(4376), + [anon_sym_register] = ACTIONS(4376), + [anon_sym_hide] = ACTIONS(4376), + [anon_sym_hide_DASHenv] = ACTIONS(4376), + [anon_sym_overlay] = ACTIONS(4376), + [anon_sym_as] = ACTIONS(4376), + [anon_sym_where] = ACTIONS(4376), + [anon_sym_PLUS] = ACTIONS(4376), + [anon_sym_not] = ACTIONS(4376), + [anon_sym_null] = ACTIONS(4376), + [anon_sym_true] = ACTIONS(4376), + [anon_sym_false] = ACTIONS(4376), + [aux_sym__val_number_decimal_token1] = ACTIONS(4376), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4376), + [anon_sym_0o] = ACTIONS(4376), + [anon_sym_0x] = ACTIONS(4376), + [sym_val_date] = ACTIONS(4376), + [anon_sym_DQUOTE] = ACTIONS(4376), + [sym__str_single_quotes] = ACTIONS(4376), + [sym__str_back_ticks] = ACTIONS(4376), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4376), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4376), + [anon_sym_CARET] = ACTIONS(4376), [anon_sym_POUND] = ACTIONS(105), }, [1674] = { - [sym_cell_path] = STATE(2225), - [sym_path] = STATE(1537), [sym_comment] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(911), - [anon_sym_export] = ACTIONS(909), - [anon_sym_alias] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_let_DASHenv] = ACTIONS(909), - [anon_sym_mut] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(909), - [sym_cmd_identifier] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(911), - [anon_sym_def] = ACTIONS(909), - [anon_sym_export_DASHenv] = ACTIONS(909), - [anon_sym_extern] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_error] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_source] = ACTIONS(909), - [anon_sym_source_DASHenv] = ACTIONS(909), - [anon_sym_register] = ACTIONS(909), - [anon_sym_hide] = ACTIONS(909), - [anon_sym_hide_DASHenv] = ACTIONS(909), - [anon_sym_overlay] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_not] = ACTIONS(909), - [anon_sym_null] = ACTIONS(909), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [aux_sym__val_number_decimal_token1] = ACTIONS(909), - [aux_sym__val_number_token1] = ACTIONS(909), - [aux_sym__val_number_token2] = ACTIONS(909), - [aux_sym__val_number_token3] = ACTIONS(909), - [aux_sym__val_number_token4] = ACTIONS(909), - [aux_sym__val_number_token5] = ACTIONS(909), - [aux_sym__val_number_token6] = ACTIONS(909), - [anon_sym_0b] = ACTIONS(909), - [anon_sym_0o] = ACTIONS(909), - [anon_sym_0x] = ACTIONS(909), - [sym_val_date] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__str_single_quotes] = ACTIONS(909), - [sym__str_back_ticks] = ACTIONS(909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1675] = { + [sym__expression] = STATE(7490), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1639), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1675), - [anon_sym_export] = ACTIONS(4352), - [anon_sym_alias] = ACTIONS(4352), - [anon_sym_let] = ACTIONS(4352), - [anon_sym_let_DASHenv] = ACTIONS(4352), - [anon_sym_mut] = ACTIONS(4352), - [anon_sym_const] = ACTIONS(4352), - [anon_sym_SEMI] = ACTIONS(4352), - [sym_cmd_identifier] = ACTIONS(4352), - [anon_sym_LF] = ACTIONS(4354), - [anon_sym_def] = ACTIONS(4352), - [anon_sym_export_DASHenv] = ACTIONS(4352), - [anon_sym_extern] = ACTIONS(4352), - [anon_sym_module] = ACTIONS(4352), - [anon_sym_use] = ACTIONS(4352), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4352), - [anon_sym_RPAREN] = ACTIONS(4352), - [anon_sym_DOLLAR] = ACTIONS(4352), - [anon_sym_error] = ACTIONS(4352), - [anon_sym_DASH_DASH] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_break] = ACTIONS(4352), - [anon_sym_continue] = ACTIONS(4352), - [anon_sym_for] = ACTIONS(4352), - [anon_sym_loop] = ACTIONS(4352), - [anon_sym_while] = ACTIONS(4352), - [anon_sym_do] = ACTIONS(4352), - [anon_sym_if] = ACTIONS(4352), - [anon_sym_match] = ACTIONS(4352), - [anon_sym_LBRACE] = ACTIONS(4352), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_DOT] = ACTIONS(4352), - [anon_sym_try] = ACTIONS(4352), - [anon_sym_return] = ACTIONS(4352), - [anon_sym_source] = ACTIONS(4352), - [anon_sym_source_DASHenv] = ACTIONS(4352), - [anon_sym_register] = ACTIONS(4352), - [anon_sym_hide] = ACTIONS(4352), - [anon_sym_hide_DASHenv] = ACTIONS(4352), - [anon_sym_overlay] = ACTIONS(4352), - [anon_sym_as] = ACTIONS(4352), - [anon_sym_where] = ACTIONS(4352), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_not] = ACTIONS(4352), - [anon_sym_null] = ACTIONS(4352), - [anon_sym_true] = ACTIONS(4352), - [anon_sym_false] = ACTIONS(4352), - [aux_sym__val_number_decimal_token1] = ACTIONS(4352), - [aux_sym__val_number_token1] = ACTIONS(4352), - [aux_sym__val_number_token2] = ACTIONS(4352), - [aux_sym__val_number_token3] = ACTIONS(4352), - [aux_sym__val_number_token4] = ACTIONS(4352), - [aux_sym__val_number_token5] = ACTIONS(4352), - [aux_sym__val_number_token6] = ACTIONS(4352), - [anon_sym_0b] = ACTIONS(4352), - [anon_sym_0o] = ACTIONS(4352), - [anon_sym_0x] = ACTIONS(4352), - [sym_val_date] = ACTIONS(4352), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4352), - [sym__str_back_ticks] = ACTIONS(4352), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4352), - [anon_sym_CARET] = ACTIONS(4352), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4346), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1676] = { + [sym_cell_path] = STATE(2286), + [sym_path] = STATE(1479), [sym_comment] = STATE(1676), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(4356), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [sym_cmd_identifier] = ACTIONS(925), + [anon_sym_LF] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_register] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_not] = ACTIONS(925), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(105), }, [1677] = { [sym_comment] = STATE(1677), - [anon_sym_export] = ACTIONS(4358), - [anon_sym_alias] = ACTIONS(4358), - [anon_sym_let] = ACTIONS(4358), - [anon_sym_let_DASHenv] = ACTIONS(4358), - [anon_sym_mut] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [sym_cmd_identifier] = ACTIONS(4358), - [anon_sym_LF] = ACTIONS(4360), - [anon_sym_def] = ACTIONS(4358), - [anon_sym_export_DASHenv] = ACTIONS(4358), - [anon_sym_extern] = ACTIONS(4358), - [anon_sym_module] = ACTIONS(4358), - [anon_sym_use] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(4358), - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_RPAREN] = ACTIONS(4358), - [anon_sym_DOLLAR] = ACTIONS(4358), - [anon_sym_error] = ACTIONS(4358), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_for] = ACTIONS(4358), - [anon_sym_loop] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_do] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_match] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_source] = ACTIONS(4358), - [anon_sym_source_DASHenv] = ACTIONS(4358), - [anon_sym_register] = ACTIONS(4358), - [anon_sym_hide] = ACTIONS(4358), - [anon_sym_hide_DASHenv] = ACTIONS(4358), - [anon_sym_overlay] = ACTIONS(4358), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_not] = ACTIONS(4358), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [aux_sym__val_number_decimal_token1] = ACTIONS(4358), - [aux_sym__val_number_token1] = ACTIONS(4358), - [aux_sym__val_number_token2] = ACTIONS(4358), - [aux_sym__val_number_token3] = ACTIONS(4358), - [aux_sym__val_number_token4] = ACTIONS(4358), - [aux_sym__val_number_token5] = ACTIONS(4358), - [aux_sym__val_number_token6] = ACTIONS(4358), - [anon_sym_0b] = ACTIONS(4358), - [anon_sym_0o] = ACTIONS(4358), - [anon_sym_0x] = ACTIONS(4358), - [sym_val_date] = ACTIONS(4358), - [anon_sym_DQUOTE] = ACTIONS(4358), - [sym__str_single_quotes] = ACTIONS(4358), - [sym__str_back_ticks] = ACTIONS(4358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_CARET] = ACTIONS(4358), + [anon_sym_export] = ACTIONS(4380), + [anon_sym_alias] = ACTIONS(4380), + [anon_sym_let] = ACTIONS(4380), + [anon_sym_let_DASHenv] = ACTIONS(4380), + [anon_sym_mut] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4380), + [sym_cmd_identifier] = ACTIONS(4380), + [anon_sym_LF] = ACTIONS(4382), + [anon_sym_def] = ACTIONS(4380), + [anon_sym_export_DASHenv] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym_module] = ACTIONS(4380), + [anon_sym_use] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(4380), + [anon_sym_error] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4380), + [anon_sym_continue] = ACTIONS(4380), + [anon_sym_for] = ACTIONS(4380), + [anon_sym_loop] = ACTIONS(4380), + [anon_sym_while] = ACTIONS(4380), + [anon_sym_do] = ACTIONS(4380), + [anon_sym_if] = ACTIONS(4380), + [anon_sym_match] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_DOT] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4380), + [anon_sym_source] = ACTIONS(4380), + [anon_sym_source_DASHenv] = ACTIONS(4380), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_hide] = ACTIONS(4380), + [anon_sym_hide_DASHenv] = ACTIONS(4380), + [anon_sym_overlay] = ACTIONS(4380), + [anon_sym_as] = ACTIONS(4380), + [anon_sym_where] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_not] = ACTIONS(4380), + [anon_sym_null] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4380), + [anon_sym_false] = ACTIONS(4380), + [aux_sym__val_number_decimal_token1] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(4380), + [aux_sym__val_number_token2] = ACTIONS(4380), + [aux_sym__val_number_token3] = ACTIONS(4380), + [aux_sym__val_number_token4] = ACTIONS(4380), + [aux_sym__val_number_token5] = ACTIONS(4380), + [aux_sym__val_number_token6] = ACTIONS(4380), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym__str_single_quotes] = ACTIONS(4380), + [sym__str_back_ticks] = ACTIONS(4380), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4380), [anon_sym_POUND] = ACTIONS(105), }, [1678] = { + [sym__expression] = STATE(7441), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(7440), + [sym_short_flag] = STATE(8176), + [sym_long_flag] = STATE(8176), + [sym_long_flag_equals_value] = STATE(8198), [sym_comment] = STATE(1678), - [anon_sym_export] = ACTIONS(4362), - [anon_sym_alias] = ACTIONS(4362), - [anon_sym_let] = ACTIONS(4362), - [anon_sym_let_DASHenv] = ACTIONS(4362), - [anon_sym_mut] = ACTIONS(4362), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_SEMI] = ACTIONS(4362), - [sym_cmd_identifier] = ACTIONS(4362), - [anon_sym_LF] = ACTIONS(4364), - [anon_sym_def] = ACTIONS(4362), - [anon_sym_export_DASHenv] = ACTIONS(4362), - [anon_sym_extern] = ACTIONS(4362), - [anon_sym_module] = ACTIONS(4362), - [anon_sym_use] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_RPAREN] = ACTIONS(4362), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_error] = ACTIONS(4362), - [anon_sym_DASH_DASH] = ACTIONS(4362), - [anon_sym_DASH] = ACTIONS(4362), - [anon_sym_break] = ACTIONS(4362), - [anon_sym_continue] = ACTIONS(4362), - [anon_sym_for] = ACTIONS(4362), - [anon_sym_loop] = ACTIONS(4362), - [anon_sym_while] = ACTIONS(4362), - [anon_sym_do] = ACTIONS(4362), - [anon_sym_if] = ACTIONS(4362), - [anon_sym_match] = ACTIONS(4362), - [anon_sym_LBRACE] = ACTIONS(4362), - [anon_sym_RBRACE] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(4362), - [anon_sym_try] = ACTIONS(4362), - [anon_sym_return] = ACTIONS(4362), - [anon_sym_source] = ACTIONS(4362), - [anon_sym_source_DASHenv] = ACTIONS(4362), - [anon_sym_register] = ACTIONS(4362), - [anon_sym_hide] = ACTIONS(4362), - [anon_sym_hide_DASHenv] = ACTIONS(4362), - [anon_sym_overlay] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_where] = ACTIONS(4362), - [anon_sym_PLUS] = ACTIONS(4362), - [anon_sym_not] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4362), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4362), - [aux_sym__val_number_token1] = ACTIONS(4362), - [aux_sym__val_number_token2] = ACTIONS(4362), - [aux_sym__val_number_token3] = ACTIONS(4362), - [aux_sym__val_number_token4] = ACTIONS(4362), - [aux_sym__val_number_token5] = ACTIONS(4362), - [aux_sym__val_number_token6] = ACTIONS(4362), - [anon_sym_0b] = ACTIONS(4362), - [anon_sym_0o] = ACTIONS(4362), - [anon_sym_0x] = ACTIONS(4362), - [sym_val_date] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [sym__str_single_quotes] = ACTIONS(4362), - [sym__str_back_ticks] = ACTIONS(4362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1679] = { [sym_comment] = STATE(1679), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(3806), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1680] = { [sym_comment] = STATE(1680), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(3979), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_alias] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_DASHenv] = ACTIONS(3977), + [anon_sym_mut] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [sym_cmd_identifier] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3979), + [anon_sym_def] = ACTIONS(3977), + [anon_sym_export_DASHenv] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_error] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_loop] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DOT2] = ACTIONS(4384), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_source] = ACTIONS(3977), + [anon_sym_source_DASHenv] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_hide] = ACTIONS(3977), + [anon_sym_hide_DASHenv] = ACTIONS(3977), + [anon_sym_overlay] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3977), + [anon_sym_where] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_true] = ACTIONS(3977), + [anon_sym_false] = ACTIONS(3977), + [aux_sym__val_number_decimal_token1] = ACTIONS(3977), + [aux_sym__val_number_token1] = ACTIONS(3977), + [aux_sym__val_number_token2] = ACTIONS(3977), + [aux_sym__val_number_token3] = ACTIONS(3977), + [aux_sym__val_number_token4] = ACTIONS(3977), + [aux_sym__val_number_token5] = ACTIONS(3977), + [aux_sym__val_number_token6] = ACTIONS(3977), + [anon_sym_0b] = ACTIONS(3977), + [anon_sym_0o] = ACTIONS(3977), + [anon_sym_0x] = ACTIONS(3977), + [sym_val_date] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [sym__str_single_quotes] = ACTIONS(3977), + [sym__str_back_ticks] = ACTIONS(3977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), [anon_sym_POUND] = ACTIONS(105), }, [1681] = { [sym_comment] = STATE(1681), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(105), - }, - [1682] = { - [sym_comment] = STATE(1682), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4366), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4368), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(105), - }, - [1683] = { - [sym_comment] = STATE(1683), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(105), - }, - [1684] = { - [sym_comment] = STATE(1684), - [anon_sym_export] = ACTIONS(4370), - [anon_sym_alias] = ACTIONS(4370), - [anon_sym_let] = ACTIONS(4370), - [anon_sym_let_DASHenv] = ACTIONS(4370), - [anon_sym_mut] = ACTIONS(4370), - [anon_sym_const] = ACTIONS(4370), - [anon_sym_SEMI] = ACTIONS(4370), - [sym_cmd_identifier] = ACTIONS(4370), - [anon_sym_LF] = ACTIONS(4372), - [anon_sym_def] = ACTIONS(4370), - [anon_sym_export_DASHenv] = ACTIONS(4370), - [anon_sym_extern] = ACTIONS(4370), - [anon_sym_module] = ACTIONS(4370), - [anon_sym_use] = ACTIONS(4370), - [anon_sym_LBRACK] = ACTIONS(4370), - [anon_sym_LPAREN] = ACTIONS(4370), - [anon_sym_RPAREN] = ACTIONS(4370), - [anon_sym_DOLLAR] = ACTIONS(4370), - [anon_sym_error] = ACTIONS(4370), - [anon_sym_DASH_DASH] = ACTIONS(4370), - [anon_sym_DASH] = ACTIONS(4370), - [anon_sym_break] = ACTIONS(4370), - [anon_sym_continue] = ACTIONS(4370), - [anon_sym_for] = ACTIONS(4370), - [anon_sym_loop] = ACTIONS(4370), - [anon_sym_while] = ACTIONS(4370), - [anon_sym_do] = ACTIONS(4370), - [anon_sym_if] = ACTIONS(4370), - [anon_sym_match] = ACTIONS(4370), - [anon_sym_LBRACE] = ACTIONS(4370), - [anon_sym_RBRACE] = ACTIONS(4370), - [anon_sym_DOT] = ACTIONS(4370), - [anon_sym_try] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(4370), - [anon_sym_source] = ACTIONS(4370), - [anon_sym_source_DASHenv] = ACTIONS(4370), - [anon_sym_register] = ACTIONS(4370), - [anon_sym_hide] = ACTIONS(4370), - [anon_sym_hide_DASHenv] = ACTIONS(4370), - [anon_sym_overlay] = ACTIONS(4370), - [anon_sym_as] = ACTIONS(4370), - [anon_sym_where] = ACTIONS(4370), - [anon_sym_PLUS] = ACTIONS(4370), - [anon_sym_not] = ACTIONS(4370), - [anon_sym_null] = ACTIONS(4370), - [anon_sym_true] = ACTIONS(4370), - [anon_sym_false] = ACTIONS(4370), - [aux_sym__val_number_decimal_token1] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4370), - [aux_sym__val_number_token2] = ACTIONS(4370), - [aux_sym__val_number_token3] = ACTIONS(4370), - [aux_sym__val_number_token4] = ACTIONS(4370), - [aux_sym__val_number_token5] = ACTIONS(4370), - [aux_sym__val_number_token6] = ACTIONS(4370), - [anon_sym_0b] = ACTIONS(4370), - [anon_sym_0o] = ACTIONS(4370), - [anon_sym_0x] = ACTIONS(4370), - [sym_val_date] = ACTIONS(4370), - [anon_sym_DQUOTE] = ACTIONS(4370), - [sym__str_single_quotes] = ACTIONS(4370), - [sym__str_back_ticks] = ACTIONS(4370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), - [anon_sym_CARET] = ACTIONS(4370), - [anon_sym_POUND] = ACTIONS(105), - }, - [1685] = { - [sym_comment] = STATE(1685), - [anon_sym_export] = ACTIONS(4374), - [anon_sym_alias] = ACTIONS(4374), - [anon_sym_let] = ACTIONS(4374), - [anon_sym_let_DASHenv] = ACTIONS(4374), - [anon_sym_mut] = ACTIONS(4374), - [anon_sym_const] = ACTIONS(4374), - [anon_sym_SEMI] = ACTIONS(4374), - [sym_cmd_identifier] = ACTIONS(4374), - [anon_sym_LF] = ACTIONS(4376), - [anon_sym_def] = ACTIONS(4374), - [anon_sym_export_DASHenv] = ACTIONS(4374), - [anon_sym_extern] = ACTIONS(4374), - [anon_sym_module] = ACTIONS(4374), - [anon_sym_use] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_LPAREN] = ACTIONS(4374), - [anon_sym_RPAREN] = ACTIONS(4374), - [anon_sym_DOLLAR] = ACTIONS(4374), - [anon_sym_error] = ACTIONS(4374), - [anon_sym_DASH_DASH] = ACTIONS(4374), - [anon_sym_DASH] = ACTIONS(4374), - [anon_sym_break] = ACTIONS(4374), - [anon_sym_continue] = ACTIONS(4374), - [anon_sym_for] = ACTIONS(4374), - [anon_sym_loop] = ACTIONS(4374), - [anon_sym_while] = ACTIONS(4374), - [anon_sym_do] = ACTIONS(4374), - [anon_sym_if] = ACTIONS(4374), - [anon_sym_match] = ACTIONS(4374), - [anon_sym_LBRACE] = ACTIONS(4374), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_DOT] = ACTIONS(4374), - [anon_sym_try] = ACTIONS(4374), - [anon_sym_return] = ACTIONS(4374), - [anon_sym_source] = ACTIONS(4374), - [anon_sym_source_DASHenv] = ACTIONS(4374), - [anon_sym_register] = ACTIONS(4374), - [anon_sym_hide] = ACTIONS(4374), - [anon_sym_hide_DASHenv] = ACTIONS(4374), - [anon_sym_overlay] = ACTIONS(4374), - [anon_sym_as] = ACTIONS(4374), - [anon_sym_where] = ACTIONS(4374), - [anon_sym_PLUS] = ACTIONS(4374), - [anon_sym_not] = ACTIONS(4374), - [anon_sym_null] = ACTIONS(4374), - [anon_sym_true] = ACTIONS(4374), - [anon_sym_false] = ACTIONS(4374), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4374), - [aux_sym__val_number_token2] = ACTIONS(4374), - [aux_sym__val_number_token3] = ACTIONS(4374), - [aux_sym__val_number_token4] = ACTIONS(4374), - [aux_sym__val_number_token5] = ACTIONS(4374), - [aux_sym__val_number_token6] = ACTIONS(4374), - [anon_sym_0b] = ACTIONS(4374), - [anon_sym_0o] = ACTIONS(4374), - [anon_sym_0x] = ACTIONS(4374), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4374), - [sym__str_single_quotes] = ACTIONS(4374), - [sym__str_back_ticks] = ACTIONS(4374), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4374), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4374), - [anon_sym_CARET] = ACTIONS(4374), - [anon_sym_POUND] = ACTIONS(105), - }, - [1686] = { - [sym_comment] = STATE(1686), - [anon_sym_export] = ACTIONS(4378), - [anon_sym_alias] = ACTIONS(4378), - [anon_sym_let] = ACTIONS(4378), - [anon_sym_let_DASHenv] = ACTIONS(4378), - [anon_sym_mut] = ACTIONS(4378), - [anon_sym_const] = ACTIONS(4378), - [anon_sym_SEMI] = ACTIONS(4378), - [sym_cmd_identifier] = ACTIONS(4378), - [anon_sym_LF] = ACTIONS(4380), - [anon_sym_def] = ACTIONS(4378), - [anon_sym_export_DASHenv] = ACTIONS(4378), - [anon_sym_extern] = ACTIONS(4378), - [anon_sym_module] = ACTIONS(4378), - [anon_sym_use] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_LPAREN] = ACTIONS(4378), - [anon_sym_RPAREN] = ACTIONS(4378), - [anon_sym_DOLLAR] = ACTIONS(4378), - [anon_sym_error] = ACTIONS(4378), - [anon_sym_DASH_DASH] = ACTIONS(4378), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_break] = ACTIONS(4378), - [anon_sym_continue] = ACTIONS(4378), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_loop] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_match] = ACTIONS(4378), - [anon_sym_LBRACE] = ACTIONS(4378), - [anon_sym_RBRACE] = ACTIONS(4378), - [anon_sym_DOT] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_source] = ACTIONS(4378), - [anon_sym_source_DASHenv] = ACTIONS(4378), - [anon_sym_register] = ACTIONS(4378), - [anon_sym_hide] = ACTIONS(4378), - [anon_sym_hide_DASHenv] = ACTIONS(4378), - [anon_sym_overlay] = ACTIONS(4378), - [anon_sym_as] = ACTIONS(4378), - [anon_sym_where] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_not] = ACTIONS(4378), - [anon_sym_null] = ACTIONS(4378), - [anon_sym_true] = ACTIONS(4378), - [anon_sym_false] = ACTIONS(4378), - [aux_sym__val_number_decimal_token1] = ACTIONS(4378), - [aux_sym__val_number_token1] = ACTIONS(4378), - [aux_sym__val_number_token2] = ACTIONS(4378), - [aux_sym__val_number_token3] = ACTIONS(4378), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4378), - [anon_sym_0o] = ACTIONS(4378), - [anon_sym_0x] = ACTIONS(4378), - [sym_val_date] = ACTIONS(4378), - [anon_sym_DQUOTE] = ACTIONS(4378), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4378), - [anon_sym_CARET] = ACTIONS(4378), - [anon_sym_POUND] = ACTIONS(105), - }, - [1687] = { - [sym_cell_path] = STATE(2329), - [sym_path] = STATE(1537), - [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT2] = ACTIONS(4023), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(105), - }, - [1688] = { - [sym_comment] = STATE(1688), - [anon_sym_export] = ACTIONS(4382), - [anon_sym_alias] = ACTIONS(4382), - [anon_sym_let] = ACTIONS(4382), - [anon_sym_let_DASHenv] = ACTIONS(4382), - [anon_sym_mut] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4382), - [sym_cmd_identifier] = ACTIONS(4382), - [anon_sym_LF] = ACTIONS(4384), - [anon_sym_def] = ACTIONS(4382), - [anon_sym_export_DASHenv] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym_module] = ACTIONS(4382), - [anon_sym_use] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_LPAREN] = ACTIONS(4382), - [anon_sym_RPAREN] = ACTIONS(4382), - [anon_sym_DOLLAR] = ACTIONS(4382), - [anon_sym_error] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4382), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_loop] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_match] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(4382), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_DOT] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_source] = ACTIONS(4382), - [anon_sym_source_DASHenv] = ACTIONS(4382), - [anon_sym_register] = ACTIONS(4382), - [anon_sym_hide] = ACTIONS(4382), - [anon_sym_hide_DASHenv] = ACTIONS(4382), - [anon_sym_overlay] = ACTIONS(4382), - [anon_sym_as] = ACTIONS(4382), - [anon_sym_where] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_null] = ACTIONS(4382), - [anon_sym_true] = ACTIONS(4382), - [anon_sym_false] = ACTIONS(4382), - [aux_sym__val_number_decimal_token1] = ACTIONS(4382), - [aux_sym__val_number_token1] = ACTIONS(4382), - [aux_sym__val_number_token2] = ACTIONS(4382), - [aux_sym__val_number_token3] = ACTIONS(4382), - [aux_sym__val_number_token4] = ACTIONS(4382), - [aux_sym__val_number_token5] = ACTIONS(4382), - [aux_sym__val_number_token6] = ACTIONS(4382), - [anon_sym_0b] = ACTIONS(4382), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(4382), - [sym__str_single_quotes] = ACTIONS(4382), - [sym__str_back_ticks] = ACTIONS(4382), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4382), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_CARET] = ACTIONS(4382), - [anon_sym_POUND] = ACTIONS(105), - }, - [1689] = { - [sym_comment] = STATE(1689), [anon_sym_export] = ACTIONS(4386), [anon_sym_alias] = ACTIONS(4386), [anon_sym_let] = ACTIONS(4386), @@ -225813,76 +225296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4386), [anon_sym_POUND] = ACTIONS(105), }, - [1690] = { - [sym_comment] = STATE(1690), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(105), - }, - [1691] = { - [sym_comment] = STATE(1691), + [1682] = { + [sym_comment] = STATE(1682), [anon_sym_export] = ACTIONS(4390), [anon_sym_alias] = ACTIONS(4390), [anon_sym_let] = ACTIONS(4390), @@ -225949,212 +225364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4390), [anon_sym_POUND] = ACTIONS(105), }, - [1692] = { - [sym_comment] = STATE(1692), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(105), - }, - [1693] = { - [sym_comment] = STATE(1693), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(3903), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(105), - }, - [1694] = { - [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(105), - }, - [1695] = { - [sym_comment] = STATE(1695), + [1683] = { + [sym_comment] = STATE(1683), [anon_sym_export] = ACTIONS(4394), [anon_sym_alias] = ACTIONS(4394), [anon_sym_let] = ACTIONS(4394), @@ -226221,8 +225432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(105), }, - [1696] = { - [sym_comment] = STATE(1696), + [1684] = { + [sym_comment] = STATE(1684), [anon_sym_export] = ACTIONS(4398), [anon_sym_alias] = ACTIONS(4398), [anon_sym_let] = ACTIONS(4398), @@ -226289,76 +225500,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4398), [anon_sym_POUND] = ACTIONS(105), }, - [1697] = { - [sym_expr_parenthesized] = STATE(3019), - [sym__immediate_decimal] = STATE(2960), - [sym_val_variable] = STATE(3019), - [sym__var] = STATE(2697), - [sym_comment] = STATE(1697), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_list] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(4402), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_in] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_make] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(4210), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(4404), - [aux_sym__immediate_decimal_token1] = ACTIONS(4214), - [anon_sym_DASH2] = ACTIONS(4216), - [anon_sym_PLUS2] = ACTIONS(4218), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [sym__entry_separator] = ACTIONS(1831), - [aux_sym__record_key_token2] = ACTIONS(1829), + [1685] = { + [sym_cell_path] = STATE(2296), + [sym_path] = STATE(1479), + [sym_comment] = STATE(1685), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(3915), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(105), }, - [1698] = { - [sym_comment] = STATE(1698), + [1686] = { + [sym_comment] = STATE(1686), + [anon_sym_export] = ACTIONS(4402), + [anon_sym_alias] = ACTIONS(4402), + [anon_sym_let] = ACTIONS(4402), + [anon_sym_let_DASHenv] = ACTIONS(4402), + [anon_sym_mut] = ACTIONS(4402), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4402), + [sym_cmd_identifier] = ACTIONS(4402), + [anon_sym_LF] = ACTIONS(4404), + [anon_sym_def] = ACTIONS(4402), + [anon_sym_export_DASHenv] = ACTIONS(4402), + [anon_sym_extern] = ACTIONS(4402), + [anon_sym_module] = ACTIONS(4402), + [anon_sym_use] = ACTIONS(4402), + [anon_sym_LBRACK] = ACTIONS(4402), + [anon_sym_LPAREN] = ACTIONS(4402), + [anon_sym_RPAREN] = ACTIONS(4402), + [anon_sym_DOLLAR] = ACTIONS(4402), + [anon_sym_error] = ACTIONS(4402), + [anon_sym_DASH_DASH] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_for] = ACTIONS(4402), + [anon_sym_loop] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_do] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_match] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4402), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_source] = ACTIONS(4402), + [anon_sym_source_DASHenv] = ACTIONS(4402), + [anon_sym_register] = ACTIONS(4402), + [anon_sym_hide] = ACTIONS(4402), + [anon_sym_hide_DASHenv] = ACTIONS(4402), + [anon_sym_overlay] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [aux_sym__val_number_decimal_token1] = ACTIONS(4402), + [aux_sym__val_number_token1] = ACTIONS(4402), + [aux_sym__val_number_token2] = ACTIONS(4402), + [aux_sym__val_number_token3] = ACTIONS(4402), + [aux_sym__val_number_token4] = ACTIONS(4402), + [aux_sym__val_number_token5] = ACTIONS(4402), + [aux_sym__val_number_token6] = ACTIONS(4402), + [anon_sym_0b] = ACTIONS(4402), + [anon_sym_0o] = ACTIONS(4402), + [anon_sym_0x] = ACTIONS(4402), + [sym_val_date] = ACTIONS(4402), + [anon_sym_DQUOTE] = ACTIONS(4402), + [sym__str_single_quotes] = ACTIONS(4402), + [sym__str_back_ticks] = ACTIONS(4402), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4402), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4402), + [anon_sym_CARET] = ACTIONS(4402), + [anon_sym_POUND] = ACTIONS(105), + }, + [1687] = { + [sym_comment] = STATE(1687), [anon_sym_export] = ACTIONS(4406), [anon_sym_alias] = ACTIONS(4406), [anon_sym_let] = ACTIONS(4406), @@ -226425,348 +225704,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4406), [anon_sym_POUND] = ACTIONS(105), }, - [1699] = { - [sym_comment] = STATE(1699), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), + [1688] = { + [sym_comment] = STATE(1688), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, - [1700] = { - [sym_comment] = STATE(1700), - [anon_sym_export] = ACTIONS(4410), - [anon_sym_alias] = ACTIONS(4410), - [anon_sym_let] = ACTIONS(4410), - [anon_sym_let_DASHenv] = ACTIONS(4410), - [anon_sym_mut] = ACTIONS(4410), - [anon_sym_const] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4410), - [sym_cmd_identifier] = ACTIONS(4410), - [anon_sym_LF] = ACTIONS(4412), - [anon_sym_def] = ACTIONS(4410), - [anon_sym_export_DASHenv] = ACTIONS(4410), - [anon_sym_extern] = ACTIONS(4410), - [anon_sym_module] = ACTIONS(4410), - [anon_sym_use] = ACTIONS(4410), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_RPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4410), - [anon_sym_error] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_for] = ACTIONS(4410), - [anon_sym_loop] = ACTIONS(4410), - [anon_sym_while] = ACTIONS(4410), - [anon_sym_do] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_match] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4410), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_source] = ACTIONS(4410), - [anon_sym_source_DASHenv] = ACTIONS(4410), - [anon_sym_register] = ACTIONS(4410), - [anon_sym_hide] = ACTIONS(4410), - [anon_sym_hide_DASHenv] = ACTIONS(4410), - [anon_sym_overlay] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_not] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [aux_sym__val_number_decimal_token1] = ACTIONS(4410), - [aux_sym__val_number_token1] = ACTIONS(4410), - [aux_sym__val_number_token2] = ACTIONS(4410), - [aux_sym__val_number_token3] = ACTIONS(4410), - [aux_sym__val_number_token4] = ACTIONS(4410), - [aux_sym__val_number_token5] = ACTIONS(4410), - [aux_sym__val_number_token6] = ACTIONS(4410), - [anon_sym_0b] = ACTIONS(4410), - [anon_sym_0o] = ACTIONS(4410), - [anon_sym_0x] = ACTIONS(4410), - [sym_val_date] = ACTIONS(4410), - [anon_sym_DQUOTE] = ACTIONS(4410), - [sym__str_single_quotes] = ACTIONS(4410), - [sym__str_back_ticks] = ACTIONS(4410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4410), - [anon_sym_CARET] = ACTIONS(4410), + [1689] = { + [sym_comment] = STATE(1689), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(4410), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(105), }, - [1701] = { - [sym_comment] = STATE(1701), - [anon_sym_export] = ACTIONS(4414), - [anon_sym_alias] = ACTIONS(4414), - [anon_sym_let] = ACTIONS(4414), - [anon_sym_let_DASHenv] = ACTIONS(4414), - [anon_sym_mut] = ACTIONS(4414), - [anon_sym_const] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4414), - [sym_cmd_identifier] = ACTIONS(4414), - [anon_sym_LF] = ACTIONS(4416), - [anon_sym_def] = ACTIONS(4414), - [anon_sym_export_DASHenv] = ACTIONS(4414), - [anon_sym_extern] = ACTIONS(4414), - [anon_sym_module] = ACTIONS(4414), - [anon_sym_use] = ACTIONS(4414), - [anon_sym_LBRACK] = ACTIONS(4414), - [anon_sym_LPAREN] = ACTIONS(4414), - [anon_sym_RPAREN] = ACTIONS(4414), - [anon_sym_DOLLAR] = ACTIONS(4414), - [anon_sym_error] = ACTIONS(4414), - [anon_sym_DASH_DASH] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_for] = ACTIONS(4414), - [anon_sym_loop] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_do] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_match] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4414), - [anon_sym_RBRACE] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_source] = ACTIONS(4414), - [anon_sym_source_DASHenv] = ACTIONS(4414), - [anon_sym_register] = ACTIONS(4414), - [anon_sym_hide] = ACTIONS(4414), - [anon_sym_hide_DASHenv] = ACTIONS(4414), - [anon_sym_overlay] = ACTIONS(4414), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_not] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [aux_sym__val_number_decimal_token1] = ACTIONS(4414), - [aux_sym__val_number_token1] = ACTIONS(4414), - [aux_sym__val_number_token2] = ACTIONS(4414), - [aux_sym__val_number_token3] = ACTIONS(4414), - [aux_sym__val_number_token4] = ACTIONS(4414), - [aux_sym__val_number_token5] = ACTIONS(4414), - [aux_sym__val_number_token6] = ACTIONS(4414), - [anon_sym_0b] = ACTIONS(4414), - [anon_sym_0o] = ACTIONS(4414), - [anon_sym_0x] = ACTIONS(4414), - [sym_val_date] = ACTIONS(4414), - [anon_sym_DQUOTE] = ACTIONS(4414), - [sym__str_single_quotes] = ACTIONS(4414), - [sym__str_back_ticks] = ACTIONS(4414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4414), - [anon_sym_CARET] = ACTIONS(4414), + [1690] = { + [sym_comment] = STATE(1690), + [anon_sym_export] = ACTIONS(4412), + [anon_sym_alias] = ACTIONS(4412), + [anon_sym_let] = ACTIONS(4412), + [anon_sym_let_DASHenv] = ACTIONS(4412), + [anon_sym_mut] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [sym_cmd_identifier] = ACTIONS(4412), + [anon_sym_LF] = ACTIONS(4414), + [anon_sym_def] = ACTIONS(4412), + [anon_sym_export_DASHenv] = ACTIONS(4412), + [anon_sym_extern] = ACTIONS(4412), + [anon_sym_module] = ACTIONS(4412), + [anon_sym_use] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_RPAREN] = ACTIONS(4412), + [anon_sym_DOLLAR] = ACTIONS(4412), + [anon_sym_error] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_for] = ACTIONS(4412), + [anon_sym_loop] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_match] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_source] = ACTIONS(4412), + [anon_sym_source_DASHenv] = ACTIONS(4412), + [anon_sym_register] = ACTIONS(4412), + [anon_sym_hide] = ACTIONS(4412), + [anon_sym_hide_DASHenv] = ACTIONS(4412), + [anon_sym_overlay] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_not] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [aux_sym__val_number_decimal_token1] = ACTIONS(4412), + [aux_sym__val_number_token1] = ACTIONS(4412), + [aux_sym__val_number_token2] = ACTIONS(4412), + [aux_sym__val_number_token3] = ACTIONS(4412), + [aux_sym__val_number_token4] = ACTIONS(4412), + [aux_sym__val_number_token5] = ACTIONS(4412), + [aux_sym__val_number_token6] = ACTIONS(4412), + [anon_sym_0b] = ACTIONS(4412), + [anon_sym_0o] = ACTIONS(4412), + [anon_sym_0x] = ACTIONS(4412), + [sym_val_date] = ACTIONS(4412), + [anon_sym_DQUOTE] = ACTIONS(4412), + [sym__str_single_quotes] = ACTIONS(4412), + [sym__str_back_ticks] = ACTIONS(4412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4412), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4412), + [anon_sym_CARET] = ACTIONS(4412), [anon_sym_POUND] = ACTIONS(105), }, - [1702] = { - [sym_comment] = STATE(1702), - [anon_sym_export] = ACTIONS(4418), - [anon_sym_alias] = ACTIONS(4418), - [anon_sym_let] = ACTIONS(4418), - [anon_sym_let_DASHenv] = ACTIONS(4418), - [anon_sym_mut] = ACTIONS(4418), - [anon_sym_const] = ACTIONS(4418), - [anon_sym_SEMI] = ACTIONS(4418), - [sym_cmd_identifier] = ACTIONS(4418), - [anon_sym_LF] = ACTIONS(4420), - [anon_sym_def] = ACTIONS(4418), - [anon_sym_export_DASHenv] = ACTIONS(4418), - [anon_sym_extern] = ACTIONS(4418), - [anon_sym_module] = ACTIONS(4418), - [anon_sym_use] = ACTIONS(4418), - [anon_sym_LBRACK] = ACTIONS(4418), - [anon_sym_LPAREN] = ACTIONS(4418), - [anon_sym_RPAREN] = ACTIONS(4418), - [anon_sym_DOLLAR] = ACTIONS(4418), - [anon_sym_error] = ACTIONS(4418), - [anon_sym_DASH_DASH] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_break] = ACTIONS(4418), - [anon_sym_continue] = ACTIONS(4418), - [anon_sym_for] = ACTIONS(4418), - [anon_sym_loop] = ACTIONS(4418), - [anon_sym_while] = ACTIONS(4418), - [anon_sym_do] = ACTIONS(4418), - [anon_sym_if] = ACTIONS(4418), - [anon_sym_match] = ACTIONS(4418), - [anon_sym_LBRACE] = ACTIONS(4418), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_try] = ACTIONS(4418), - [anon_sym_return] = ACTIONS(4418), - [anon_sym_source] = ACTIONS(4418), - [anon_sym_source_DASHenv] = ACTIONS(4418), - [anon_sym_register] = ACTIONS(4418), - [anon_sym_hide] = ACTIONS(4418), - [anon_sym_hide_DASHenv] = ACTIONS(4418), - [anon_sym_overlay] = ACTIONS(4418), - [anon_sym_as] = ACTIONS(4418), - [anon_sym_where] = ACTIONS(4418), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_not] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4418), - [anon_sym_true] = ACTIONS(4418), - [anon_sym_false] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4418), - [aux_sym__val_number_token1] = ACTIONS(4418), - [aux_sym__val_number_token2] = ACTIONS(4418), - [aux_sym__val_number_token3] = ACTIONS(4418), - [aux_sym__val_number_token4] = ACTIONS(4418), - [aux_sym__val_number_token5] = ACTIONS(4418), - [aux_sym__val_number_token6] = ACTIONS(4418), - [anon_sym_0b] = ACTIONS(4418), - [anon_sym_0o] = ACTIONS(4418), - [anon_sym_0x] = ACTIONS(4418), - [sym_val_date] = ACTIONS(4418), - [anon_sym_DQUOTE] = ACTIONS(4418), - [sym__str_single_quotes] = ACTIONS(4418), - [sym__str_back_ticks] = ACTIONS(4418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4418), - [anon_sym_CARET] = ACTIONS(4418), + [1691] = { + [sym_comment] = STATE(1691), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1703] = { - [sym_comment] = STATE(1703), - [anon_sym_export] = ACTIONS(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_let] = ACTIONS(4422), - [anon_sym_let_DASHenv] = ACTIONS(4422), - [anon_sym_mut] = ACTIONS(4422), - [anon_sym_const] = ACTIONS(4422), - [anon_sym_SEMI] = ACTIONS(4422), - [sym_cmd_identifier] = ACTIONS(4422), - [anon_sym_LF] = ACTIONS(4424), - [anon_sym_def] = ACTIONS(4422), - [anon_sym_export_DASHenv] = ACTIONS(4422), - [anon_sym_extern] = ACTIONS(4422), - [anon_sym_module] = ACTIONS(4422), - [anon_sym_use] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_RPAREN] = ACTIONS(4422), - [anon_sym_DOLLAR] = ACTIONS(4422), - [anon_sym_error] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_break] = ACTIONS(4422), - [anon_sym_continue] = ACTIONS(4422), - [anon_sym_for] = ACTIONS(4422), - [anon_sym_loop] = ACTIONS(4422), - [anon_sym_while] = ACTIONS(4422), - [anon_sym_do] = ACTIONS(4422), - [anon_sym_if] = ACTIONS(4422), - [anon_sym_match] = ACTIONS(4422), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_try] = ACTIONS(4422), - [anon_sym_return] = ACTIONS(4422), - [anon_sym_source] = ACTIONS(4422), - [anon_sym_source_DASHenv] = ACTIONS(4422), - [anon_sym_register] = ACTIONS(4422), - [anon_sym_hide] = ACTIONS(4422), - [anon_sym_hide_DASHenv] = ACTIONS(4422), - [anon_sym_overlay] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4422), - [anon_sym_where] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_not] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4422), - [anon_sym_false] = ACTIONS(4422), - [aux_sym__val_number_decimal_token1] = ACTIONS(4422), - [aux_sym__val_number_token1] = ACTIONS(4422), - [aux_sym__val_number_token2] = ACTIONS(4422), - [aux_sym__val_number_token3] = ACTIONS(4422), - [aux_sym__val_number_token4] = ACTIONS(4422), - [aux_sym__val_number_token5] = ACTIONS(4422), - [aux_sym__val_number_token6] = ACTIONS(4422), - [anon_sym_0b] = ACTIONS(4422), - [anon_sym_0o] = ACTIONS(4422), - [anon_sym_0x] = ACTIONS(4422), - [sym_val_date] = ACTIONS(4422), - [anon_sym_DQUOTE] = ACTIONS(4422), - [sym__str_single_quotes] = ACTIONS(4422), - [sym__str_back_ticks] = ACTIONS(4422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4422), - [anon_sym_CARET] = ACTIONS(4422), + [1692] = { + [sym_comment] = STATE(1692), + [anon_sym_export] = ACTIONS(4416), + [anon_sym_alias] = ACTIONS(4416), + [anon_sym_let] = ACTIONS(4416), + [anon_sym_let_DASHenv] = ACTIONS(4416), + [anon_sym_mut] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4416), + [sym_cmd_identifier] = ACTIONS(4416), + [anon_sym_LF] = ACTIONS(4418), + [anon_sym_def] = ACTIONS(4416), + [anon_sym_export_DASHenv] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym_module] = ACTIONS(4416), + [anon_sym_use] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_RPAREN] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(4416), + [anon_sym_error] = ACTIONS(4416), + [anon_sym_DASH_DASH] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_for] = ACTIONS(4416), + [anon_sym_loop] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_do] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_match] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4416), + [anon_sym_RBRACE] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_source] = ACTIONS(4416), + [anon_sym_source_DASHenv] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_hide] = ACTIONS(4416), + [anon_sym_hide_DASHenv] = ACTIONS(4416), + [anon_sym_overlay] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_not] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [aux_sym__val_number_decimal_token1] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(4416), + [aux_sym__val_number_token2] = ACTIONS(4416), + [aux_sym__val_number_token3] = ACTIONS(4416), + [aux_sym__val_number_token4] = ACTIONS(4416), + [aux_sym__val_number_token5] = ACTIONS(4416), + [aux_sym__val_number_token6] = ACTIONS(4416), + [anon_sym_0b] = ACTIONS(4416), + [anon_sym_0o] = ACTIONS(4416), + [anon_sym_0x] = ACTIONS(4416), + [sym_val_date] = ACTIONS(4416), + [anon_sym_DQUOTE] = ACTIONS(4416), + [sym__str_single_quotes] = ACTIONS(4416), + [sym__str_back_ticks] = ACTIONS(4416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4416), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4416), [anon_sym_POUND] = ACTIONS(105), }, - [1704] = { - [sym_comment] = STATE(1704), + [1693] = { + [sym_comment] = STATE(1693), + [anon_sym_export] = ACTIONS(4420), + [anon_sym_alias] = ACTIONS(4420), + [anon_sym_let] = ACTIONS(4420), + [anon_sym_let_DASHenv] = ACTIONS(4420), + [anon_sym_mut] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4420), + [sym_cmd_identifier] = ACTIONS(4420), + [anon_sym_LF] = ACTIONS(4422), + [anon_sym_def] = ACTIONS(4420), + [anon_sym_export_DASHenv] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym_module] = ACTIONS(4420), + [anon_sym_use] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_RPAREN] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4420), + [anon_sym_error] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_break] = ACTIONS(4420), + [anon_sym_continue] = ACTIONS(4420), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_loop] = ACTIONS(4420), + [anon_sym_while] = ACTIONS(4420), + [anon_sym_do] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_source] = ACTIONS(4420), + [anon_sym_source_DASHenv] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_hide] = ACTIONS(4420), + [anon_sym_hide_DASHenv] = ACTIONS(4420), + [anon_sym_overlay] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_where] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_not] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [aux_sym__val_number_decimal_token1] = ACTIONS(4420), + [aux_sym__val_number_token1] = ACTIONS(4420), + [aux_sym__val_number_token2] = ACTIONS(4420), + [aux_sym__val_number_token3] = ACTIONS(4420), + [aux_sym__val_number_token4] = ACTIONS(4420), + [aux_sym__val_number_token5] = ACTIONS(4420), + [aux_sym__val_number_token6] = ACTIONS(4420), + [anon_sym_0b] = ACTIONS(4420), + [anon_sym_0o] = ACTIONS(4420), + [anon_sym_0x] = ACTIONS(4420), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(4420), + [sym__str_single_quotes] = ACTIONS(4420), + [sym__str_back_ticks] = ACTIONS(4420), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4420), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4420), + [anon_sym_POUND] = ACTIONS(105), + }, + [1694] = { + [sym_comment] = STATE(1694), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(807), @@ -226808,7 +226155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(3907), + [aux_sym__immediate_decimal_token2] = ACTIONS(4022), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -226833,824 +226180,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1705] = { - [sym_comment] = STATE(1705), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [1695] = { + [sym_comment] = STATE(1695), + [anon_sym_export] = ACTIONS(4424), + [anon_sym_alias] = ACTIONS(4424), + [anon_sym_let] = ACTIONS(4424), + [anon_sym_let_DASHenv] = ACTIONS(4424), + [anon_sym_mut] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4424), + [sym_cmd_identifier] = ACTIONS(4424), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_def] = ACTIONS(4424), + [anon_sym_export_DASHenv] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym_module] = ACTIONS(4424), + [anon_sym_use] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym_RPAREN] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4424), + [anon_sym_error] = ACTIONS(4424), + [anon_sym_DASH_DASH] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_loop] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_do] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4424), + [anon_sym_RBRACE] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_source] = ACTIONS(4424), + [anon_sym_source_DASHenv] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_hide] = ACTIONS(4424), + [anon_sym_hide_DASHenv] = ACTIONS(4424), + [anon_sym_overlay] = ACTIONS(4424), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_not] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [aux_sym__val_number_decimal_token1] = ACTIONS(4424), + [aux_sym__val_number_token1] = ACTIONS(4424), + [aux_sym__val_number_token2] = ACTIONS(4424), + [aux_sym__val_number_token3] = ACTIONS(4424), + [aux_sym__val_number_token4] = ACTIONS(4424), + [aux_sym__val_number_token5] = ACTIONS(4424), + [aux_sym__val_number_token6] = ACTIONS(4424), + [anon_sym_0b] = ACTIONS(4424), + [anon_sym_0o] = ACTIONS(4424), + [anon_sym_0x] = ACTIONS(4424), + [sym_val_date] = ACTIONS(4424), + [anon_sym_DQUOTE] = ACTIONS(4424), + [sym__str_single_quotes] = ACTIONS(4424), + [sym__str_back_ticks] = ACTIONS(4424), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4424), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4424), [anon_sym_POUND] = ACTIONS(105), }, - [1706] = { - [sym_comment] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3943), - [anon_sym_export] = ACTIONS(3941), - [anon_sym_alias] = ACTIONS(3941), - [anon_sym_let] = ACTIONS(3941), - [anon_sym_let_DASHenv] = ACTIONS(3941), - [anon_sym_mut] = ACTIONS(3941), - [anon_sym_const] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [sym_cmd_identifier] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3943), - [anon_sym_def] = ACTIONS(3941), - [anon_sym_export_DASHenv] = ACTIONS(3941), - [anon_sym_extern] = ACTIONS(3941), - [anon_sym_module] = ACTIONS(3941), - [anon_sym_use] = ACTIONS(3941), - [anon_sym_LBRACK] = ACTIONS(3941), - [anon_sym_LPAREN] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_error] = ACTIONS(3941), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_break] = ACTIONS(3941), - [anon_sym_continue] = ACTIONS(3941), - [anon_sym_for] = ACTIONS(3941), - [anon_sym_loop] = ACTIONS(3941), - [anon_sym_while] = ACTIONS(3941), - [anon_sym_do] = ACTIONS(3941), - [anon_sym_if] = ACTIONS(3941), - [anon_sym_match] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_DOT2] = ACTIONS(4426), - [anon_sym_try] = ACTIONS(3941), - [anon_sym_return] = ACTIONS(3941), - [anon_sym_source] = ACTIONS(3941), - [anon_sym_source_DASHenv] = ACTIONS(3941), - [anon_sym_register] = ACTIONS(3941), - [anon_sym_hide] = ACTIONS(3941), - [anon_sym_hide_DASHenv] = ACTIONS(3941), - [anon_sym_overlay] = ACTIONS(3941), - [anon_sym_as] = ACTIONS(3941), - [anon_sym_where] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3941), - [anon_sym_not] = ACTIONS(3941), - [anon_sym_null] = ACTIONS(3941), - [anon_sym_true] = ACTIONS(3941), - [anon_sym_false] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(3941), - [aux_sym__val_number_token1] = ACTIONS(3941), - [aux_sym__val_number_token2] = ACTIONS(3941), - [aux_sym__val_number_token3] = ACTIONS(3941), - [aux_sym__val_number_token4] = ACTIONS(3941), - [aux_sym__val_number_token5] = ACTIONS(3941), - [aux_sym__val_number_token6] = ACTIONS(3941), - [anon_sym_0b] = ACTIONS(3941), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym__str_single_quotes] = ACTIONS(3941), - [sym__str_back_ticks] = ACTIONS(3941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), - [anon_sym_CARET] = ACTIONS(3941), + [1696] = { + [sym_comment] = STATE(1696), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(4428), + [aux_sym__immediate_decimal_token2] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, - [1707] = { - [sym_comment] = STATE(1707), - [anon_sym_export] = ACTIONS(4428), - [anon_sym_alias] = ACTIONS(4428), - [anon_sym_let] = ACTIONS(4428), - [anon_sym_let_DASHenv] = ACTIONS(4428), - [anon_sym_mut] = ACTIONS(4428), - [anon_sym_const] = ACTIONS(4428), - [anon_sym_SEMI] = ACTIONS(4428), - [sym_cmd_identifier] = ACTIONS(4428), - [anon_sym_LF] = ACTIONS(4430), - [anon_sym_def] = ACTIONS(4428), - [anon_sym_export_DASHenv] = ACTIONS(4428), - [anon_sym_extern] = ACTIONS(4428), - [anon_sym_module] = ACTIONS(4428), - [anon_sym_use] = ACTIONS(4428), - [anon_sym_LBRACK] = ACTIONS(4428), - [anon_sym_LPAREN] = ACTIONS(4428), - [anon_sym_RPAREN] = ACTIONS(4428), - [anon_sym_DOLLAR] = ACTIONS(4428), - [anon_sym_error] = ACTIONS(4428), - [anon_sym_DASH_DASH] = ACTIONS(4428), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_break] = ACTIONS(4428), - [anon_sym_continue] = ACTIONS(4428), - [anon_sym_for] = ACTIONS(4428), - [anon_sym_loop] = ACTIONS(4428), - [anon_sym_while] = ACTIONS(4428), - [anon_sym_do] = ACTIONS(4428), - [anon_sym_if] = ACTIONS(4428), - [anon_sym_match] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(4428), - [anon_sym_RBRACE] = ACTIONS(4428), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_try] = ACTIONS(4428), - [anon_sym_return] = ACTIONS(4428), - [anon_sym_source] = ACTIONS(4428), - [anon_sym_source_DASHenv] = ACTIONS(4428), - [anon_sym_register] = ACTIONS(4428), - [anon_sym_hide] = ACTIONS(4428), - [anon_sym_hide_DASHenv] = ACTIONS(4428), - [anon_sym_overlay] = ACTIONS(4428), - [anon_sym_as] = ACTIONS(4428), - [anon_sym_where] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_not] = ACTIONS(4428), - [anon_sym_null] = ACTIONS(4428), - [anon_sym_true] = ACTIONS(4428), - [anon_sym_false] = ACTIONS(4428), - [aux_sym__val_number_decimal_token1] = ACTIONS(4428), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [aux_sym__val_number_token4] = ACTIONS(4428), - [aux_sym__val_number_token5] = ACTIONS(4428), - [aux_sym__val_number_token6] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4428), - [anon_sym_0o] = ACTIONS(4428), - [anon_sym_0x] = ACTIONS(4428), - [sym_val_date] = ACTIONS(4428), - [anon_sym_DQUOTE] = ACTIONS(4428), - [sym__str_single_quotes] = ACTIONS(4428), - [sym__str_back_ticks] = ACTIONS(4428), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4428), - [anon_sym_CARET] = ACTIONS(4428), + [1697] = { + [sym_expr_parenthesized] = STATE(3221), + [sym__immediate_decimal] = STATE(3223), + [sym_val_variable] = STATE(3221), + [sym__var] = STATE(2661), + [sym_comment] = STATE(1697), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_DOT2] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_EQ2] = ACTIONS(4434), + [aux_sym__immediate_decimal_token1] = ACTIONS(4054), + [anon_sym_DASH2] = ACTIONS(4056), + [anon_sym_PLUS2] = ACTIONS(4058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [sym__entry_separator] = ACTIONS(1983), + [aux_sym__record_key_token2] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(105), }, - [1708] = { - [sym__expression] = STATE(7520), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(7521), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), - [sym_comment] = STATE(1708), - [anon_sym_SEMI] = ACTIONS(4432), - [anon_sym_LF] = ACTIONS(4434), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4432), - [anon_sym_PIPE] = ACTIONS(4432), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4432), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1698] = { + [sym_expr_parenthesized] = STATE(3224), + [sym__immediate_decimal] = STATE(3225), + [sym_val_variable] = STATE(3224), + [sym__var] = STATE(2661), + [sym_comment] = STATE(1698), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_EQ2] = ACTIONS(4438), + [aux_sym__immediate_decimal_token1] = ACTIONS(4054), + [anon_sym_DASH2] = ACTIONS(4056), + [anon_sym_PLUS2] = ACTIONS(4058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [sym__entry_separator] = ACTIONS(2001), + [aux_sym__record_key_token2] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(105), }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(4436), - [aux_sym__immediate_decimal_token2] = ACTIONS(4438), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [1699] = { + [sym_expr_parenthesized] = STATE(3226), + [sym__immediate_decimal] = STATE(3227), + [sym_val_variable] = STATE(3226), + [sym__var] = STATE(2661), + [sym_comment] = STATE(1699), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_DOLLAR] = ACTIONS(4046), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_EQ2] = ACTIONS(4442), + [aux_sym__immediate_decimal_token1] = ACTIONS(4054), + [anon_sym_DASH2] = ACTIONS(4056), + [anon_sym_PLUS2] = ACTIONS(4058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [sym__entry_separator] = ACTIONS(2009), + [aux_sym__record_key_token2] = ACTIONS(2007), [anon_sym_POUND] = ACTIONS(105), }, - [1710] = { - [sym_comment] = STATE(1710), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [1700] = { + [sym_comment] = STATE(1700), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT2] = ACTIONS(4444), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [aux_sym__immediate_decimal_token1] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [aux_sym_unquoted_token2] = ACTIONS(4446), [anon_sym_POUND] = ACTIONS(105), }, - [1711] = { - [sym__expression] = STATE(7539), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1708), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1711), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LF] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4440), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1701] = { + [sym_comment] = STATE(1701), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(105), }, - [1712] = { - [sym__expression] = STATE(7539), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(7537), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), - [sym_comment] = STATE(1712), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LF] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4440), - [anon_sym_PIPE] = ACTIONS(4440), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [1702] = { + [sym_comment] = STATE(1702), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [1713] = { - [sym_expr_parenthesized] = STATE(3575), - [sym__immediate_decimal] = STATE(3576), - [sym_val_variable] = STATE(3575), - [sym__var] = STATE(2673), - [sym_comment] = STATE(1713), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_list] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_make] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DOT2] = ACTIONS(4448), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_catch] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_EQ2] = ACTIONS(4450), - [aux_sym__immediate_decimal_token1] = ACTIONS(4452), - [anon_sym_DASH2] = ACTIONS(4454), - [anon_sym_PLUS2] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [sym__entry_separator] = ACTIONS(1789), - [aux_sym__record_key_token2] = ACTIONS(1787), + [1703] = { + [sym_comment] = STATE(1703), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, - [1714] = { - [sym_comment] = STATE(1714), - [anon_sym_export] = ACTIONS(4458), - [anon_sym_alias] = ACTIONS(4458), - [anon_sym_let] = ACTIONS(4458), - [anon_sym_let_DASHenv] = ACTIONS(4458), - [anon_sym_mut] = ACTIONS(4458), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4458), - [sym_cmd_identifier] = ACTIONS(4458), - [anon_sym_LF] = ACTIONS(4460), - [anon_sym_def] = ACTIONS(4458), - [anon_sym_export_DASHenv] = ACTIONS(4458), - [anon_sym_extern] = ACTIONS(4458), - [anon_sym_module] = ACTIONS(4458), - [anon_sym_use] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_RPAREN] = ACTIONS(4458), - [anon_sym_DOLLAR] = ACTIONS(4458), - [anon_sym_error] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_loop] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_do] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_match] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_source] = ACTIONS(4458), - [anon_sym_source_DASHenv] = ACTIONS(4458), - [anon_sym_register] = ACTIONS(4458), - [anon_sym_hide] = ACTIONS(4458), - [anon_sym_hide_DASHenv] = ACTIONS(4458), - [anon_sym_overlay] = ACTIONS(4458), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_not] = ACTIONS(4458), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_token1] = ACTIONS(4458), - [aux_sym__val_number_token2] = ACTIONS(4458), - [aux_sym__val_number_token3] = ACTIONS(4458), - [aux_sym__val_number_token4] = ACTIONS(4458), - [aux_sym__val_number_token5] = ACTIONS(4458), - [aux_sym__val_number_token6] = ACTIONS(4458), - [anon_sym_0b] = ACTIONS(4458), - [anon_sym_0o] = ACTIONS(4458), - [anon_sym_0x] = ACTIONS(4458), - [sym_val_date] = ACTIONS(4458), - [anon_sym_DQUOTE] = ACTIONS(4458), - [sym__str_single_quotes] = ACTIONS(4458), - [sym__str_back_ticks] = ACTIONS(4458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4458), + [1704] = { + [sym_comment] = STATE(1704), + [anon_sym_export] = ACTIONS(4455), + [anon_sym_alias] = ACTIONS(4455), + [anon_sym_let] = ACTIONS(4455), + [anon_sym_let_DASHenv] = ACTIONS(4455), + [anon_sym_mut] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4455), + [sym_cmd_identifier] = ACTIONS(4455), + [anon_sym_LF] = ACTIONS(4457), + [anon_sym_def] = ACTIONS(4455), + [anon_sym_export_DASHenv] = ACTIONS(4455), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym_module] = ACTIONS(4455), + [anon_sym_use] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_error] = ACTIONS(4455), + [anon_sym_DASH_DASH] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_for] = ACTIONS(4455), + [anon_sym_loop] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_do] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_match] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_source] = ACTIONS(4455), + [anon_sym_source_DASHenv] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_hide] = ACTIONS(4455), + [anon_sym_hide_DASHenv] = ACTIONS(4455), + [anon_sym_overlay] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_not] = ACTIONS(4455), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4455), + [aux_sym__val_number_token1] = ACTIONS(4455), + [aux_sym__val_number_token2] = ACTIONS(4455), + [aux_sym__val_number_token3] = ACTIONS(4455), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(4455), + [anon_sym_0o] = ACTIONS(4455), + [anon_sym_0x] = ACTIONS(4455), + [sym_val_date] = ACTIONS(4455), + [anon_sym_DQUOTE] = ACTIONS(4455), + [sym__str_single_quotes] = ACTIONS(4455), + [sym__str_back_ticks] = ACTIONS(4455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4455), + [anon_sym_CARET] = ACTIONS(4455), [anon_sym_POUND] = ACTIONS(105), }, - [1715] = { - [sym_expr_parenthesized] = STATE(3579), - [sym__immediate_decimal] = STATE(3580), - [sym_val_variable] = STATE(3579), - [sym__var] = STATE(2673), - [sym_comment] = STATE(1715), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1805), - [anon_sym_list] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_make] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT2] = ACTIONS(4448), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_catch] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_EQ2] = ACTIONS(4464), - [aux_sym__immediate_decimal_token1] = ACTIONS(4452), - [anon_sym_DASH2] = ACTIONS(4454), - [anon_sym_PLUS2] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1805), - [aux_sym__val_number_token2] = ACTIONS(1805), - [aux_sym__val_number_token3] = ACTIONS(1805), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1805), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [sym__str_single_quotes] = ACTIONS(1805), - [sym__str_back_ticks] = ACTIONS(1805), - [sym__entry_separator] = ACTIONS(1807), - [aux_sym__record_key_token2] = ACTIONS(1805), + [1705] = { + [sym_comment] = STATE(1705), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(4459), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1716] = { - [sym_comment] = STATE(1716), - [anon_sym_export] = ACTIONS(4466), - [anon_sym_alias] = ACTIONS(4466), - [anon_sym_let] = ACTIONS(4466), - [anon_sym_let_DASHenv] = ACTIONS(4466), - [anon_sym_mut] = ACTIONS(4466), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4466), - [sym_cmd_identifier] = ACTIONS(4466), - [anon_sym_LF] = ACTIONS(4468), - [anon_sym_def] = ACTIONS(4466), - [anon_sym_export_DASHenv] = ACTIONS(4466), - [anon_sym_extern] = ACTIONS(4466), - [anon_sym_module] = ACTIONS(4466), - [anon_sym_use] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_RPAREN] = ACTIONS(4466), - [anon_sym_DOLLAR] = ACTIONS(4466), - [anon_sym_error] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_loop] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_do] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_match] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_source] = ACTIONS(4466), - [anon_sym_source_DASHenv] = ACTIONS(4466), - [anon_sym_register] = ACTIONS(4466), - [anon_sym_hide] = ACTIONS(4466), - [anon_sym_hide_DASHenv] = ACTIONS(4466), - [anon_sym_overlay] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_not] = ACTIONS(4466), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [aux_sym__val_number_decimal_token1] = ACTIONS(4466), - [aux_sym__val_number_token1] = ACTIONS(4466), - [aux_sym__val_number_token2] = ACTIONS(4466), - [aux_sym__val_number_token3] = ACTIONS(4466), - [aux_sym__val_number_token4] = ACTIONS(4466), - [aux_sym__val_number_token5] = ACTIONS(4466), - [aux_sym__val_number_token6] = ACTIONS(4466), - [anon_sym_0b] = ACTIONS(4466), - [anon_sym_0o] = ACTIONS(4466), - [anon_sym_0x] = ACTIONS(4466), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(4466), - [sym__str_single_quotes] = ACTIONS(4466), - [sym__str_back_ticks] = ACTIONS(4466), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4466), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), + [1706] = { + [sym_comment] = STATE(1706), + [anon_sym_export] = ACTIONS(4462), + [anon_sym_alias] = ACTIONS(4462), + [anon_sym_let] = ACTIONS(4462), + [anon_sym_let_DASHenv] = ACTIONS(4462), + [anon_sym_mut] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4462), + [sym_cmd_identifier] = ACTIONS(4462), + [anon_sym_LF] = ACTIONS(4464), + [anon_sym_def] = ACTIONS(4462), + [anon_sym_export_DASHenv] = ACTIONS(4462), + [anon_sym_extern] = ACTIONS(4462), + [anon_sym_module] = ACTIONS(4462), + [anon_sym_use] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_DOLLAR] = ACTIONS(4462), + [anon_sym_error] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_loop] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_do] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_match] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_source] = ACTIONS(4462), + [anon_sym_source_DASHenv] = ACTIONS(4462), + [anon_sym_register] = ACTIONS(4462), + [anon_sym_hide] = ACTIONS(4462), + [anon_sym_hide_DASHenv] = ACTIONS(4462), + [anon_sym_overlay] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_not] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [aux_sym__val_number_decimal_token1] = ACTIONS(4462), + [aux_sym__val_number_token1] = ACTIONS(4462), + [aux_sym__val_number_token2] = ACTIONS(4462), + [aux_sym__val_number_token3] = ACTIONS(4462), + [aux_sym__val_number_token4] = ACTIONS(4462), + [aux_sym__val_number_token5] = ACTIONS(4462), + [aux_sym__val_number_token6] = ACTIONS(4462), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4462), + [anon_sym_0x] = ACTIONS(4462), + [sym_val_date] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym__str_single_quotes] = ACTIONS(4462), + [sym__str_back_ticks] = ACTIONS(4462), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4462), + [anon_sym_CARET] = ACTIONS(4462), [anon_sym_POUND] = ACTIONS(105), }, - [1717] = { - [sym_comment] = STATE(1717), + [1707] = { + [sym_comment] = STATE(1707), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [sym_cmd_identifier] = ACTIONS(1070), + [anon_sym_LF] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT2] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_where] = ACTIONS(1070), + [anon_sym_QMARK2] = ACTIONS(4410), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_not] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_token4] = ACTIONS(1070), + [aux_sym__val_number_token5] = ACTIONS(1070), + [aux_sym__val_number_token6] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(105), + }, + [1708] = { + [sym_comment] = STATE(1708), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(105), + }, + [1709] = { + [sym_comment] = STATE(1709), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(4466), + [aux_sym__immediate_decimal_token2] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), + }, + [1710] = { + [sym_comment] = STATE(1710), [anon_sym_export] = ACTIONS(4470), [anon_sym_alias] = ACTIONS(4470), [anon_sym_let] = ACTIONS(4470), @@ -227717,8 +227268,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4470), [anon_sym_POUND] = ACTIONS(105), }, - [1718] = { - [sym_comment] = STATE(1718), + [1711] = { + [sym_comment] = STATE(1711), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3952), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1712] = { + [sym_comment] = STATE(1712), [anon_sym_export] = ACTIONS(4474), [anon_sym_alias] = ACTIONS(4474), [anon_sym_let] = ACTIONS(4474), @@ -227785,212 +227404,756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4474), [anon_sym_POUND] = ACTIONS(105), }, + [1713] = { + [sym_comment] = STATE(1713), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(105), + }, + [1714] = { + [sym__expression] = STATE(7441), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1648), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), + [sym_comment] = STATE(1714), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1715] = { + [sym_comment] = STATE(1715), + [ts_builtin_sym_end] = ACTIONS(4034), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_alias] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_let_DASHenv] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4032), + [sym_cmd_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_def] = ACTIONS(4032), + [anon_sym_export_DASHenv] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_use] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_error] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_loop] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_DOT2] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_source] = ACTIONS(4032), + [anon_sym_source_DASHenv] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_hide_DASHenv] = ACTIONS(4032), + [anon_sym_overlay] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [aux_sym__val_number_decimal_token1] = ACTIONS(4032), + [aux_sym__val_number_token1] = ACTIONS(4032), + [aux_sym__val_number_token2] = ACTIONS(4032), + [aux_sym__val_number_token3] = ACTIONS(4032), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(4032), + [anon_sym_0o] = ACTIONS(4032), + [anon_sym_0x] = ACTIONS(4032), + [sym_val_date] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [sym__str_single_quotes] = ACTIONS(4032), + [sym__str_back_ticks] = ACTIONS(4032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_POUND] = ACTIONS(105), + }, + [1716] = { + [sym_comment] = STATE(1716), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(105), + }, + [1717] = { + [sym_comment] = STATE(1717), + [anon_sym_export] = ACTIONS(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_let_DASHenv] = ACTIONS(4478), + [anon_sym_mut] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [sym_cmd_identifier] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4480), + [anon_sym_def] = ACTIONS(4478), + [anon_sym_export_DASHenv] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym_module] = ACTIONS(4478), + [anon_sym_use] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_error] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_loop] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4478), + [anon_sym_do] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_match] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_source] = ACTIONS(4478), + [anon_sym_source_DASHenv] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_hide] = ACTIONS(4478), + [anon_sym_hide_DASHenv] = ACTIONS(4478), + [anon_sym_overlay] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_not] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4478), + [anon_sym_false] = ACTIONS(4478), + [aux_sym__val_number_decimal_token1] = ACTIONS(4478), + [aux_sym__val_number_token1] = ACTIONS(4478), + [aux_sym__val_number_token2] = ACTIONS(4478), + [aux_sym__val_number_token3] = ACTIONS(4478), + [aux_sym__val_number_token4] = ACTIONS(4478), + [aux_sym__val_number_token5] = ACTIONS(4478), + [aux_sym__val_number_token6] = ACTIONS(4478), + [anon_sym_0b] = ACTIONS(4478), + [anon_sym_0o] = ACTIONS(4478), + [anon_sym_0x] = ACTIONS(4478), + [sym_val_date] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym__str_single_quotes] = ACTIONS(4478), + [sym__str_back_ticks] = ACTIONS(4478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4478), + [anon_sym_POUND] = ACTIONS(105), + }, + [1718] = { + [sym_comment] = STATE(1718), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(3922), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, [1719] = { - [sym_expr_parenthesized] = STATE(3583), - [sym__immediate_decimal] = STATE(3584), - [sym_val_variable] = STATE(3583), - [sym__var] = STATE(2673), + [sym__expression] = STATE(7441), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1650), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1719), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_list] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_make] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT2] = ACTIONS(4448), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_catch] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_EQ2] = ACTIONS(4480), - [aux_sym__immediate_decimal_token1] = ACTIONS(4452), - [anon_sym_DASH2] = ACTIONS(4454), - [anon_sym_PLUS2] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1813), - [aux_sym__val_number_token2] = ACTIONS(1813), - [aux_sym__val_number_token3] = ACTIONS(1813), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1813), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [sym__str_single_quotes] = ACTIONS(1813), - [sym__str_back_ticks] = ACTIONS(1813), - [sym__entry_separator] = ACTIONS(1815), - [aux_sym__record_key_token2] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), [anon_sym_POUND] = ACTIONS(105), }, [1720] = { [sym_comment] = STATE(1720), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [1721] = { - [sym_expr_parenthesized] = STATE(3587), - [sym__immediate_decimal] = STATE(3588), - [sym_val_variable] = STATE(3587), - [sym__var] = STATE(2673), [sym_comment] = STATE(1721), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(4206), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_list] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_in] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_make] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(4448), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_catch] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1821), - [anon_sym_as] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(4484), - [aux_sym__immediate_decimal_token1] = ACTIONS(4452), - [anon_sym_DASH2] = ACTIONS(4454), - [anon_sym_PLUS2] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1821), - [aux_sym__val_number_token2] = ACTIONS(1821), - [aux_sym__val_number_token3] = ACTIONS(1821), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1821), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__str_single_quotes] = ACTIONS(1821), - [sym__str_back_ticks] = ACTIONS(1821), - [sym__entry_separator] = ACTIONS(1823), - [aux_sym__record_key_token2] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(4482), + [anon_sym_alias] = ACTIONS(4482), + [anon_sym_let] = ACTIONS(4482), + [anon_sym_let_DASHenv] = ACTIONS(4482), + [anon_sym_mut] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [sym_cmd_identifier] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4484), + [anon_sym_def] = ACTIONS(4482), + [anon_sym_export_DASHenv] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym_module] = ACTIONS(4482), + [anon_sym_use] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(4482), + [anon_sym_LPAREN] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_error] = ACTIONS(4482), + [anon_sym_DASH_DASH] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_for] = ACTIONS(4482), + [anon_sym_loop] = ACTIONS(4482), + [anon_sym_while] = ACTIONS(4482), + [anon_sym_do] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_match] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_source] = ACTIONS(4482), + [anon_sym_source_DASHenv] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_hide] = ACTIONS(4482), + [anon_sym_hide_DASHenv] = ACTIONS(4482), + [anon_sym_overlay] = ACTIONS(4482), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [aux_sym__val_number_decimal_token1] = ACTIONS(4482), + [aux_sym__val_number_token1] = ACTIONS(4482), + [aux_sym__val_number_token2] = ACTIONS(4482), + [aux_sym__val_number_token3] = ACTIONS(4482), + [aux_sym__val_number_token4] = ACTIONS(4482), + [aux_sym__val_number_token5] = ACTIONS(4482), + [aux_sym__val_number_token6] = ACTIONS(4482), + [anon_sym_0b] = ACTIONS(4482), + [anon_sym_0o] = ACTIONS(4482), + [anon_sym_0x] = ACTIONS(4482), + [sym_val_date] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym__str_single_quotes] = ACTIONS(4482), + [sym__str_back_ticks] = ACTIONS(4482), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4482), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4482), + [anon_sym_CARET] = ACTIONS(4482), [anon_sym_POUND] = ACTIONS(105), }, [1722] = { + [sym__expression] = STATE(7441), + [sym_expr_unary] = STATE(5182), + [sym__expr_unary_minus] = STATE(5198), + [sym_expr_binary] = STATE(5182), + [sym__expr_binary_expression] = STATE(6687), + [sym_expr_parenthesized] = STATE(4993), + [sym_val_range] = STATE(8282), + [sym__value] = STATE(5182), + [sym_val_nothing] = STATE(5304), + [sym_val_bool] = STATE(5304), + [sym_val_variable] = STATE(4959), + [sym__var] = STATE(4588), + [sym_val_number] = STATE(4732), + [sym__val_number_decimal] = STATE(4715), + [sym__val_number] = STATE(4741), + [sym_val_duration] = STATE(5304), + [sym_val_filesize] = STATE(5304), + [sym_val_binary] = STATE(5304), + [sym_val_string] = STATE(5304), + [sym__str_double_quotes] = STATE(5363), + [sym_val_interpolated] = STATE(5304), + [sym__inter_single_quotes] = STATE(5368), + [sym__inter_double_quotes] = STATE(5260), + [sym_val_list] = STATE(5304), + [sym_val_record] = STATE(5304), + [sym_val_table] = STATE(5304), + [sym_val_closure] = STATE(5304), + [sym__flag] = STATE(1558), + [sym_short_flag] = STATE(5799), + [sym_long_flag] = STATE(5799), + [sym_long_flag_equals_value] = STATE(5582), [sym_comment] = STATE(1722), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_null] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4118), + [anon_sym_false] = ACTIONS(4118), + [aux_sym__val_number_decimal_token1] = ACTIONS(4120), + [aux_sym__val_number_token1] = ACTIONS(4122), + [aux_sym__val_number_token2] = ACTIONS(4122), + [aux_sym__val_number_token3] = ACTIONS(4122), + [aux_sym__val_number_token4] = ACTIONS(4122), + [aux_sym__val_number_token5] = ACTIONS(4122), + [aux_sym__val_number_token6] = ACTIONS(4122), + [anon_sym_0b] = ACTIONS(3146), + [anon_sym_0o] = ACTIONS(3146), + [anon_sym_0x] = ACTIONS(3146), + [sym_val_date] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym__str_single_quotes] = ACTIONS(4128), + [sym__str_back_ticks] = ACTIONS(4128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(105), + }, + [1723] = { + [sym_comment] = STATE(1723), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(105), + }, + [1724] = { + [sym_comment] = STATE(1724), [anon_sym_export] = ACTIONS(4486), [anon_sym_alias] = ACTIONS(4486), [anon_sym_let] = ACTIONS(4486), @@ -228057,3294 +228220,3628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4486), [anon_sym_POUND] = ACTIONS(105), }, - [1723] = { - [sym__expression] = STATE(7532), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1711), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1723), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4490), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(105), - }, - [1724] = { - [sym__expression] = STATE(7532), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(1712), - [sym_short_flag] = STATE(5769), - [sym_long_flag] = STATE(5769), - [sym_long_flag_equals_value] = STATE(5544), - [sym_comment] = STATE(1724), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_RPAREN] = ACTIONS(4490), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(105), - }, [1725] = { - [sym__expression] = STATE(7532), - [sym_expr_unary] = STATE(5142), - [sym__expr_unary_minus] = STATE(5122), - [sym_expr_binary] = STATE(5142), - [sym__expr_binary_expression] = STATE(6856), - [sym_expr_parenthesized] = STATE(5121), - [sym_val_range] = STATE(8189), - [sym__value] = STATE(5142), - [sym_val_nothing] = STATE(5262), - [sym_val_bool] = STATE(5262), - [sym_val_variable] = STATE(5017), - [sym__var] = STATE(4658), - [sym_val_number] = STATE(4866), - [sym__val_number_decimal] = STATE(4599), - [sym__val_number] = STATE(4862), - [sym_val_duration] = STATE(5262), - [sym_val_filesize] = STATE(5262), - [sym_val_binary] = STATE(5262), - [sym_val_string] = STATE(5262), - [sym__str_double_quotes] = STATE(5354), - [sym_val_interpolated] = STATE(5262), - [sym__inter_single_quotes] = STATE(5320), - [sym__inter_double_quotes] = STATE(5322), - [sym_val_list] = STATE(5262), - [sym_val_record] = STATE(5262), - [sym_val_table] = STATE(5262), - [sym_val_closure] = STATE(5262), - [sym__flag] = STATE(7531), - [sym_short_flag] = STATE(8166), - [sym_long_flag] = STATE(8166), - [sym_long_flag_equals_value] = STATE(8165), [sym_comment] = STATE(1725), + [anon_sym_export] = ACTIONS(4490), + [anon_sym_alias] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_let_DASHenv] = ACTIONS(4490), + [anon_sym_mut] = ACTIONS(4490), + [anon_sym_const] = ACTIONS(4490), [anon_sym_SEMI] = ACTIONS(4490), + [sym_cmd_identifier] = ACTIONS(4490), [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym_def] = ACTIONS(4490), + [anon_sym_export_DASHenv] = ACTIONS(4490), + [anon_sym_extern] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + [anon_sym_use] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), [anon_sym_RPAREN] = ACTIONS(4490), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4490), + [anon_sym_error] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_loop] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), [anon_sym_RBRACE] = ACTIONS(4490), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_token1] = ACTIONS(4078), - [aux_sym__val_number_token2] = ACTIONS(4078), - [aux_sym__val_number_token3] = ACTIONS(4078), - [aux_sym__val_number_token4] = ACTIONS(4078), - [aux_sym__val_number_token5] = ACTIONS(4078), - [aux_sym__val_number_token6] = ACTIONS(4078), - [anon_sym_0b] = ACTIONS(3527), - [anon_sym_0o] = ACTIONS(3527), - [anon_sym_0x] = ACTIONS(3527), - [sym_val_date] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym__str_single_quotes] = ACTIONS(4084), - [sym__str_back_ticks] = ACTIONS(4084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_source] = ACTIONS(4490), + [anon_sym_source_DASHenv] = ACTIONS(4490), + [anon_sym_register] = ACTIONS(4490), + [anon_sym_hide] = ACTIONS(4490), + [anon_sym_hide_DASHenv] = ACTIONS(4490), + [anon_sym_overlay] = ACTIONS(4490), + [anon_sym_as] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_not] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_token1] = ACTIONS(4490), + [aux_sym__val_number_token2] = ACTIONS(4490), + [aux_sym__val_number_token3] = ACTIONS(4490), + [aux_sym__val_number_token4] = ACTIONS(4490), + [aux_sym__val_number_token5] = ACTIONS(4490), + [aux_sym__val_number_token6] = ACTIONS(4490), + [anon_sym_0b] = ACTIONS(4490), + [anon_sym_0o] = ACTIONS(4490), + [anon_sym_0x] = ACTIONS(4490), + [sym_val_date] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym__str_single_quotes] = ACTIONS(4490), + [sym__str_back_ticks] = ACTIONS(4490), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4490), [anon_sym_POUND] = ACTIONS(105), }, [1726] = { [sym_comment] = STATE(1726), - [ts_builtin_sym_end] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(3806), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH_DASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1727] = { - [sym__expression] = STATE(7739), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1779), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1727), - [ts_builtin_sym_end] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LF] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4440), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4422), + [anon_sym_export] = ACTIONS(4420), + [anon_sym_alias] = ACTIONS(4420), + [anon_sym_let] = ACTIONS(4420), + [anon_sym_let_DASHenv] = ACTIONS(4420), + [anon_sym_mut] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_SEMI] = ACTIONS(4420), + [sym_cmd_identifier] = ACTIONS(4420), + [anon_sym_LF] = ACTIONS(4422), + [anon_sym_def] = ACTIONS(4420), + [anon_sym_export_DASHenv] = ACTIONS(4420), + [anon_sym_extern] = ACTIONS(4420), + [anon_sym_module] = ACTIONS(4420), + [anon_sym_use] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(4420), + [anon_sym_error] = ACTIONS(4420), + [anon_sym_DASH_DASH] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_break] = ACTIONS(4420), + [anon_sym_continue] = ACTIONS(4420), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_loop] = ACTIONS(4420), + [anon_sym_while] = ACTIONS(4420), + [anon_sym_do] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_source] = ACTIONS(4420), + [anon_sym_source_DASHenv] = ACTIONS(4420), + [anon_sym_register] = ACTIONS(4420), + [anon_sym_hide] = ACTIONS(4420), + [anon_sym_hide_DASHenv] = ACTIONS(4420), + [anon_sym_overlay] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_where] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_not] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_true] = ACTIONS(4420), + [anon_sym_false] = ACTIONS(4420), + [aux_sym__val_number_decimal_token1] = ACTIONS(4420), + [aux_sym__val_number_token1] = ACTIONS(4420), + [aux_sym__val_number_token2] = ACTIONS(4420), + [aux_sym__val_number_token3] = ACTIONS(4420), + [aux_sym__val_number_token4] = ACTIONS(4420), + [aux_sym__val_number_token5] = ACTIONS(4420), + [aux_sym__val_number_token6] = ACTIONS(4420), + [anon_sym_0b] = ACTIONS(4420), + [anon_sym_0o] = ACTIONS(4420), + [anon_sym_0x] = ACTIONS(4420), + [sym_val_date] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(4420), + [sym__str_single_quotes] = ACTIONS(4420), + [sym__str_back_ticks] = ACTIONS(4420), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4420), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4420), [anon_sym_POUND] = ACTIONS(105), }, [1728] = { - [sym__expression] = STATE(7795), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1924), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(4182), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4424), + [anon_sym_alias] = ACTIONS(4424), + [anon_sym_let] = ACTIONS(4424), + [anon_sym_let_DASHenv] = ACTIONS(4424), + [anon_sym_mut] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_SEMI] = ACTIONS(4424), + [sym_cmd_identifier] = ACTIONS(4424), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_def] = ACTIONS(4424), + [anon_sym_export_DASHenv] = ACTIONS(4424), + [anon_sym_extern] = ACTIONS(4424), + [anon_sym_module] = ACTIONS(4424), + [anon_sym_use] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4424), + [anon_sym_error] = ACTIONS(4424), + [anon_sym_DASH_DASH] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_loop] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_do] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4424), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_source] = ACTIONS(4424), + [anon_sym_source_DASHenv] = ACTIONS(4424), + [anon_sym_register] = ACTIONS(4424), + [anon_sym_hide] = ACTIONS(4424), + [anon_sym_hide_DASHenv] = ACTIONS(4424), + [anon_sym_overlay] = ACTIONS(4424), + [anon_sym_as] = ACTIONS(4424), + [anon_sym_where] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_not] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_true] = ACTIONS(4424), + [anon_sym_false] = ACTIONS(4424), + [aux_sym__val_number_decimal_token1] = ACTIONS(4424), + [aux_sym__val_number_token1] = ACTIONS(4424), + [aux_sym__val_number_token2] = ACTIONS(4424), + [aux_sym__val_number_token3] = ACTIONS(4424), + [aux_sym__val_number_token4] = ACTIONS(4424), + [aux_sym__val_number_token5] = ACTIONS(4424), + [aux_sym__val_number_token6] = ACTIONS(4424), + [anon_sym_0b] = ACTIONS(4424), + [anon_sym_0o] = ACTIONS(4424), + [anon_sym_0x] = ACTIONS(4424), + [sym_val_date] = ACTIONS(4424), + [anon_sym_DQUOTE] = ACTIONS(4424), + [sym__str_single_quotes] = ACTIONS(4424), + [sym__str_back_ticks] = ACTIONS(4424), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4424), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4424), [anon_sym_POUND] = ACTIONS(105), }, [1729] = { [sym_comment] = STATE(1729), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(4472), + [anon_sym_export] = ACTIONS(4470), + [anon_sym_alias] = ACTIONS(4470), + [anon_sym_let] = ACTIONS(4470), + [anon_sym_let_DASHenv] = ACTIONS(4470), + [anon_sym_mut] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [sym_cmd_identifier] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4472), + [anon_sym_def] = ACTIONS(4470), + [anon_sym_export_DASHenv] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym_module] = ACTIONS(4470), + [anon_sym_use] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_error] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_loop] = ACTIONS(4470), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_do] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_match] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_source] = ACTIONS(4470), + [anon_sym_source_DASHenv] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_hide] = ACTIONS(4470), + [anon_sym_hide_DASHenv] = ACTIONS(4470), + [anon_sym_overlay] = ACTIONS(4470), + [anon_sym_as] = ACTIONS(4470), + [anon_sym_where] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_not] = ACTIONS(4470), + [anon_sym_null] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4470), + [anon_sym_false] = ACTIONS(4470), + [aux_sym__val_number_decimal_token1] = ACTIONS(4470), + [aux_sym__val_number_token1] = ACTIONS(4470), + [aux_sym__val_number_token2] = ACTIONS(4470), + [aux_sym__val_number_token3] = ACTIONS(4470), + [aux_sym__val_number_token4] = ACTIONS(4470), + [aux_sym__val_number_token5] = ACTIONS(4470), + [aux_sym__val_number_token6] = ACTIONS(4470), + [anon_sym_0b] = ACTIONS(4470), + [anon_sym_0o] = ACTIONS(4470), + [anon_sym_0x] = ACTIONS(4470), + [sym_val_date] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym__str_single_quotes] = ACTIONS(4470), + [sym__str_back_ticks] = ACTIONS(4470), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4470), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4470), [anon_sym_POUND] = ACTIONS(105), }, [1730] = { - [sym__expression] = STATE(7795), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(7798), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), [sym_comment] = STATE(1730), - [ts_builtin_sym_end] = ACTIONS(4182), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), - }, - [1731] = { - [sym_comment] = STATE(1731), - [anon_sym_export] = ACTIONS(4532), - [anon_sym_alias] = ACTIONS(4532), - [anon_sym_let] = ACTIONS(4532), - [anon_sym_let_DASHenv] = ACTIONS(4532), - [anon_sym_mut] = ACTIONS(4532), - [anon_sym_const] = ACTIONS(4532), - [anon_sym_SEMI] = ACTIONS(4532), - [sym_cmd_identifier] = ACTIONS(4532), - [anon_sym_LF] = ACTIONS(4534), - [anon_sym_def] = ACTIONS(4532), - [anon_sym_export_DASHenv] = ACTIONS(4532), - [anon_sym_extern] = ACTIONS(4532), - [anon_sym_module] = ACTIONS(4532), - [anon_sym_use] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_DOLLAR] = ACTIONS(4532), - [anon_sym_error] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_break] = ACTIONS(4532), - [anon_sym_continue] = ACTIONS(4532), - [anon_sym_for] = ACTIONS(4532), - [anon_sym_loop] = ACTIONS(4532), - [anon_sym_while] = ACTIONS(4532), - [anon_sym_do] = ACTIONS(4532), - [anon_sym_if] = ACTIONS(4532), - [anon_sym_match] = ACTIONS(4532), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_try] = ACTIONS(4532), - [anon_sym_return] = ACTIONS(4532), - [anon_sym_source] = ACTIONS(4532), - [anon_sym_source_DASHenv] = ACTIONS(4532), - [anon_sym_register] = ACTIONS(4532), - [anon_sym_hide] = ACTIONS(4532), - [anon_sym_hide_DASHenv] = ACTIONS(4532), - [anon_sym_overlay] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_where] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_not] = ACTIONS(4532), - [anon_sym_null] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4532), - [anon_sym_false] = ACTIONS(4532), - [aux_sym__val_number_decimal_token1] = ACTIONS(4532), - [aux_sym__val_number_token1] = ACTIONS(4532), - [aux_sym__val_number_token2] = ACTIONS(4532), - [aux_sym__val_number_token3] = ACTIONS(4532), - [aux_sym__val_number_token4] = ACTIONS(4532), - [aux_sym__val_number_token5] = ACTIONS(4532), - [aux_sym__val_number_token6] = ACTIONS(4532), - [anon_sym_0b] = ACTIONS(4532), - [anon_sym_0o] = ACTIONS(4532), - [anon_sym_0x] = ACTIONS(4532), - [sym_val_date] = ACTIONS(4532), - [anon_sym_DQUOTE] = ACTIONS(4532), - [sym__str_single_quotes] = ACTIONS(4532), - [sym__str_back_ticks] = ACTIONS(4532), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4532), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_POUND] = ACTIONS(105), - }, - [1732] = { - [sym_comment] = STATE(1732), - [ts_builtin_sym_end] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(1305), - [anon_sym_alias] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_let_DASHenv] = ACTIONS(1305), - [anon_sym_mut] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [sym_cmd_identifier] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1305), - [anon_sym_export_DASHenv] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [anon_sym_error] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_source] = ACTIONS(1305), - [anon_sym_source_DASHenv] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_hide] = ACTIONS(1305), - [anon_sym_hide_DASHenv] = ACTIONS(1305), - [anon_sym_overlay] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_where] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_not] = ACTIONS(1305), - [anon_sym_null] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [aux_sym__val_number_decimal_token1] = ACTIONS(1305), - [aux_sym__val_number_token1] = ACTIONS(1305), - [aux_sym__val_number_token2] = ACTIONS(1305), - [aux_sym__val_number_token3] = ACTIONS(1305), - [aux_sym__val_number_token4] = ACTIONS(1305), - [aux_sym__val_number_token5] = ACTIONS(1305), - [aux_sym__val_number_token6] = ACTIONS(1305), - [anon_sym_0b] = ACTIONS(1305), - [anon_sym_0o] = ACTIONS(1305), - [anon_sym_0x] = ACTIONS(1305), - [sym_val_date] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym__str_single_quotes] = ACTIONS(1305), - [sym__str_back_ticks] = ACTIONS(1305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1305), - [anon_sym_CARET] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(105), - }, - [1733] = { - [sym_comment] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(105), - }, - [1734] = { - [sym_comment] = STATE(1734), - [anon_sym_export] = ACTIONS(4536), - [anon_sym_alias] = ACTIONS(4536), - [anon_sym_let] = ACTIONS(4536), - [anon_sym_let_DASHenv] = ACTIONS(4536), - [anon_sym_mut] = ACTIONS(4536), - [anon_sym_const] = ACTIONS(4536), - [anon_sym_SEMI] = ACTIONS(4536), - [sym_cmd_identifier] = ACTIONS(4536), - [anon_sym_LF] = ACTIONS(4538), - [anon_sym_def] = ACTIONS(4536), - [anon_sym_export_DASHenv] = ACTIONS(4536), - [anon_sym_extern] = ACTIONS(4536), - [anon_sym_module] = ACTIONS(4536), - [anon_sym_use] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_DOLLAR] = ACTIONS(4536), - [anon_sym_error] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4536), - [anon_sym_break] = ACTIONS(4536), - [anon_sym_continue] = ACTIONS(4536), - [anon_sym_for] = ACTIONS(4536), - [anon_sym_loop] = ACTIONS(4536), - [anon_sym_while] = ACTIONS(4536), - [anon_sym_do] = ACTIONS(4536), - [anon_sym_if] = ACTIONS(4536), - [anon_sym_match] = ACTIONS(4536), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4536), - [anon_sym_try] = ACTIONS(4536), - [anon_sym_return] = ACTIONS(4536), - [anon_sym_source] = ACTIONS(4536), - [anon_sym_source_DASHenv] = ACTIONS(4536), - [anon_sym_register] = ACTIONS(4536), - [anon_sym_hide] = ACTIONS(4536), - [anon_sym_hide_DASHenv] = ACTIONS(4536), - [anon_sym_overlay] = ACTIONS(4536), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_where] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4536), - [anon_sym_not] = ACTIONS(4536), - [anon_sym_null] = ACTIONS(4536), - [anon_sym_true] = ACTIONS(4536), - [anon_sym_false] = ACTIONS(4536), - [aux_sym__val_number_decimal_token1] = ACTIONS(4536), - [aux_sym__val_number_token1] = ACTIONS(4536), - [aux_sym__val_number_token2] = ACTIONS(4536), - [aux_sym__val_number_token3] = ACTIONS(4536), - [aux_sym__val_number_token4] = ACTIONS(4536), - [aux_sym__val_number_token5] = ACTIONS(4536), - [aux_sym__val_number_token6] = ACTIONS(4536), - [anon_sym_0b] = ACTIONS(4536), - [anon_sym_0o] = ACTIONS(4536), - [anon_sym_0x] = ACTIONS(4536), - [sym_val_date] = ACTIONS(4536), - [anon_sym_DQUOTE] = ACTIONS(4536), - [sym__str_single_quotes] = ACTIONS(4536), - [sym__str_back_ticks] = ACTIONS(4536), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4536), - [anon_sym_CARET] = ACTIONS(4536), - [anon_sym_POUND] = ACTIONS(105), - }, - [1735] = { - [sym_comment] = STATE(1735), - [ts_builtin_sym_end] = ACTIONS(4372), - [anon_sym_export] = ACTIONS(4370), - [anon_sym_alias] = ACTIONS(4370), - [anon_sym_let] = ACTIONS(4370), - [anon_sym_let_DASHenv] = ACTIONS(4370), - [anon_sym_mut] = ACTIONS(4370), - [anon_sym_const] = ACTIONS(4370), - [anon_sym_SEMI] = ACTIONS(4370), - [sym_cmd_identifier] = ACTIONS(4370), - [anon_sym_LF] = ACTIONS(4372), - [anon_sym_def] = ACTIONS(4370), - [anon_sym_export_DASHenv] = ACTIONS(4370), - [anon_sym_extern] = ACTIONS(4370), - [anon_sym_module] = ACTIONS(4370), - [anon_sym_use] = ACTIONS(4370), - [anon_sym_LBRACK] = ACTIONS(4370), - [anon_sym_LPAREN] = ACTIONS(4370), - [anon_sym_DOLLAR] = ACTIONS(4370), - [anon_sym_error] = ACTIONS(4370), - [anon_sym_DASH_DASH] = ACTIONS(4370), - [anon_sym_DASH] = ACTIONS(4370), - [anon_sym_break] = ACTIONS(4370), - [anon_sym_continue] = ACTIONS(4370), - [anon_sym_for] = ACTIONS(4370), - [anon_sym_loop] = ACTIONS(4370), - [anon_sym_while] = ACTIONS(4370), - [anon_sym_do] = ACTIONS(4370), - [anon_sym_if] = ACTIONS(4370), - [anon_sym_match] = ACTIONS(4370), - [anon_sym_LBRACE] = ACTIONS(4370), - [anon_sym_DOT] = ACTIONS(4370), - [anon_sym_try] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(4370), - [anon_sym_source] = ACTIONS(4370), - [anon_sym_source_DASHenv] = ACTIONS(4370), - [anon_sym_register] = ACTIONS(4370), - [anon_sym_hide] = ACTIONS(4370), - [anon_sym_hide_DASHenv] = ACTIONS(4370), - [anon_sym_overlay] = ACTIONS(4370), - [anon_sym_as] = ACTIONS(4370), - [anon_sym_where] = ACTIONS(4370), - [anon_sym_PLUS] = ACTIONS(4370), - [anon_sym_not] = ACTIONS(4370), - [anon_sym_null] = ACTIONS(4370), - [anon_sym_true] = ACTIONS(4370), - [anon_sym_false] = ACTIONS(4370), - [aux_sym__val_number_decimal_token1] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4370), - [aux_sym__val_number_token2] = ACTIONS(4370), - [aux_sym__val_number_token3] = ACTIONS(4370), - [aux_sym__val_number_token4] = ACTIONS(4370), - [aux_sym__val_number_token5] = ACTIONS(4370), - [aux_sym__val_number_token6] = ACTIONS(4370), - [anon_sym_0b] = ACTIONS(4370), - [anon_sym_0o] = ACTIONS(4370), - [anon_sym_0x] = ACTIONS(4370), - [sym_val_date] = ACTIONS(4370), - [anon_sym_DQUOTE] = ACTIONS(4370), - [sym__str_single_quotes] = ACTIONS(4370), - [sym__str_back_ticks] = ACTIONS(4370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), - [anon_sym_CARET] = ACTIONS(4370), - [anon_sym_POUND] = ACTIONS(105), - }, - [1736] = { + [ts_builtin_sym_end] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4486), + [anon_sym_alias] = ACTIONS(4486), + [anon_sym_let] = ACTIONS(4486), + [anon_sym_let_DASHenv] = ACTIONS(4486), + [anon_sym_mut] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [sym_cmd_identifier] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4488), + [anon_sym_def] = ACTIONS(4486), + [anon_sym_export_DASHenv] = ACTIONS(4486), + [anon_sym_extern] = ACTIONS(4486), + [anon_sym_module] = ACTIONS(4486), + [anon_sym_use] = ACTIONS(4486), + [anon_sym_LBRACK] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_error] = ACTIONS(4486), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_loop] = ACTIONS(4486), + [anon_sym_while] = ACTIONS(4486), + [anon_sym_do] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_try] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_source] = ACTIONS(4486), + [anon_sym_source_DASHenv] = ACTIONS(4486), + [anon_sym_register] = ACTIONS(4486), + [anon_sym_hide] = ACTIONS(4486), + [anon_sym_hide_DASHenv] = ACTIONS(4486), + [anon_sym_overlay] = ACTIONS(4486), + [anon_sym_as] = ACTIONS(4486), + [anon_sym_where] = ACTIONS(4486), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_not] = ACTIONS(4486), + [anon_sym_null] = ACTIONS(4486), + [anon_sym_true] = ACTIONS(4486), + [anon_sym_false] = ACTIONS(4486), + [aux_sym__val_number_decimal_token1] = ACTIONS(4486), + [aux_sym__val_number_token1] = ACTIONS(4486), + [aux_sym__val_number_token2] = ACTIONS(4486), + [aux_sym__val_number_token3] = ACTIONS(4486), + [aux_sym__val_number_token4] = ACTIONS(4486), + [aux_sym__val_number_token5] = ACTIONS(4486), + [aux_sym__val_number_token6] = ACTIONS(4486), + [anon_sym_0b] = ACTIONS(4486), + [anon_sym_0o] = ACTIONS(4486), + [anon_sym_0x] = ACTIONS(4486), + [sym_val_date] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym__str_single_quotes] = ACTIONS(4486), + [sym__str_back_ticks] = ACTIONS(4486), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4486), + [anon_sym_POUND] = ACTIONS(105), + }, + [1731] = { + [sym_comment] = STATE(1731), + [ts_builtin_sym_end] = ACTIONS(4301), + [anon_sym_export] = ACTIONS(4299), + [anon_sym_alias] = ACTIONS(4299), + [anon_sym_let] = ACTIONS(4299), + [anon_sym_let_DASHenv] = ACTIONS(4299), + [anon_sym_mut] = ACTIONS(4299), + [anon_sym_const] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4299), + [sym_cmd_identifier] = ACTIONS(4299), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_def] = ACTIONS(4299), + [anon_sym_export_DASHenv] = ACTIONS(4299), + [anon_sym_extern] = ACTIONS(4299), + [anon_sym_module] = ACTIONS(4299), + [anon_sym_use] = ACTIONS(4299), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_LPAREN] = ACTIONS(4299), + [anon_sym_DOLLAR] = ACTIONS(4299), + [anon_sym_error] = ACTIONS(4299), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_for] = ACTIONS(4299), + [anon_sym_loop] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_do] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_match] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_source] = ACTIONS(4299), + [anon_sym_source_DASHenv] = ACTIONS(4299), + [anon_sym_register] = ACTIONS(4299), + [anon_sym_hide] = ACTIONS(4299), + [anon_sym_hide_DASHenv] = ACTIONS(4299), + [anon_sym_overlay] = ACTIONS(4299), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_not] = ACTIONS(4299), + [anon_sym_null] = ACTIONS(4299), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [aux_sym__val_number_token4] = ACTIONS(4299), + [aux_sym__val_number_token5] = ACTIONS(4299), + [aux_sym__val_number_token6] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(4299), + [anon_sym_0o] = ACTIONS(4299), + [anon_sym_0x] = ACTIONS(4299), + [sym_val_date] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4299), + [sym__str_single_quotes] = ACTIONS(4299), + [sym__str_back_ticks] = ACTIONS(4299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4299), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_POUND] = ACTIONS(105), + }, + [1732] = { + [sym_comment] = STATE(1732), + [ts_builtin_sym_end] = ACTIONS(4062), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_alias] = ACTIONS(4060), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_let_DASHenv] = ACTIONS(4060), + [anon_sym_mut] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4060), + [sym_cmd_identifier] = ACTIONS(4060), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_def] = ACTIONS(4060), + [anon_sym_export_DASHenv] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_use] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_error] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_loop] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_source] = ACTIONS(4060), + [anon_sym_source_DASHenv] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_hide] = ACTIONS(4060), + [anon_sym_hide_DASHenv] = ACTIONS(4060), + [anon_sym_overlay] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_where] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_null] = ACTIONS(4060), + [anon_sym_true] = ACTIONS(4060), + [anon_sym_false] = ACTIONS(4060), + [aux_sym__val_number_decimal_token1] = ACTIONS(4060), + [aux_sym__val_number_token1] = ACTIONS(4060), + [aux_sym__val_number_token2] = ACTIONS(4060), + [aux_sym__val_number_token3] = ACTIONS(4060), + [aux_sym__val_number_token4] = ACTIONS(4060), + [aux_sym__val_number_token5] = ACTIONS(4060), + [aux_sym__val_number_token6] = ACTIONS(4060), + [anon_sym_0b] = ACTIONS(4060), + [anon_sym_0o] = ACTIONS(4060), + [anon_sym_0x] = ACTIONS(4060), + [sym_val_date] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym__str_single_quotes] = ACTIONS(4060), + [sym__str_back_ticks] = ACTIONS(4060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_POUND] = ACTIONS(105), + }, + [1733] = { + [sym_comment] = STATE(1733), + [ts_builtin_sym_end] = ACTIONS(4070), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_alias] = ACTIONS(4068), + [anon_sym_let] = ACTIONS(4068), + [anon_sym_let_DASHenv] = ACTIONS(4068), + [anon_sym_mut] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4068), + [sym_cmd_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_def] = ACTIONS(4068), + [anon_sym_export_DASHenv] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_use] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_error] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_loop] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_source] = ACTIONS(4068), + [anon_sym_source_DASHenv] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_hide] = ACTIONS(4068), + [anon_sym_hide_DASHenv] = ACTIONS(4068), + [anon_sym_overlay] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4068), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4068), + [aux_sym__val_number_token1] = ACTIONS(4068), + [aux_sym__val_number_token2] = ACTIONS(4068), + [aux_sym__val_number_token3] = ACTIONS(4068), + [aux_sym__val_number_token4] = ACTIONS(4068), + [aux_sym__val_number_token5] = ACTIONS(4068), + [aux_sym__val_number_token6] = ACTIONS(4068), + [anon_sym_0b] = ACTIONS(4068), + [anon_sym_0o] = ACTIONS(4068), + [anon_sym_0x] = ACTIONS(4068), + [sym_val_date] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym__str_single_quotes] = ACTIONS(4068), + [sym__str_back_ticks] = ACTIONS(4068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4068), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_POUND] = ACTIONS(105), + }, + [1734] = { + [sym_comment] = STATE(1734), + [ts_builtin_sym_end] = ACTIONS(4074), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_alias] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_let_DASHenv] = ACTIONS(4072), + [anon_sym_mut] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4072), + [sym_cmd_identifier] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_def] = ACTIONS(4072), + [anon_sym_export_DASHenv] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_use] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_DOLLAR] = ACTIONS(4072), + [anon_sym_error] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_loop] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_source] = ACTIONS(4072), + [anon_sym_source_DASHenv] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_hide] = ACTIONS(4072), + [anon_sym_hide_DASHenv] = ACTIONS(4072), + [anon_sym_overlay] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_where] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), + [anon_sym_null] = ACTIONS(4072), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4072), + [aux_sym__val_number_token1] = ACTIONS(4072), + [aux_sym__val_number_token2] = ACTIONS(4072), + [aux_sym__val_number_token3] = ACTIONS(4072), + [aux_sym__val_number_token4] = ACTIONS(4072), + [aux_sym__val_number_token5] = ACTIONS(4072), + [aux_sym__val_number_token6] = ACTIONS(4072), + [anon_sym_0b] = ACTIONS(4072), + [anon_sym_0o] = ACTIONS(4072), + [anon_sym_0x] = ACTIONS(4072), + [sym_val_date] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym__str_single_quotes] = ACTIONS(4072), + [sym__str_back_ticks] = ACTIONS(4072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_POUND] = ACTIONS(105), + }, + [1735] = { + [sym_comment] = STATE(1735), + [ts_builtin_sym_end] = ACTIONS(4078), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_alias] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_let_DASHenv] = ACTIONS(4076), + [anon_sym_mut] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [sym_cmd_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4078), + [anon_sym_def] = ACTIONS(4076), + [anon_sym_export_DASHenv] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_use] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_DOLLAR] = ACTIONS(4076), + [anon_sym_error] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_loop] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_source] = ACTIONS(4076), + [anon_sym_source_DASHenv] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_hide] = ACTIONS(4076), + [anon_sym_hide_DASHenv] = ACTIONS(4076), + [anon_sym_overlay] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_where] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4076), + [anon_sym_false] = ACTIONS(4076), + [aux_sym__val_number_decimal_token1] = ACTIONS(4076), + [aux_sym__val_number_token1] = ACTIONS(4076), + [aux_sym__val_number_token2] = ACTIONS(4076), + [aux_sym__val_number_token3] = ACTIONS(4076), + [aux_sym__val_number_token4] = ACTIONS(4076), + [aux_sym__val_number_token5] = ACTIONS(4076), + [aux_sym__val_number_token6] = ACTIONS(4076), + [anon_sym_0b] = ACTIONS(4076), + [anon_sym_0o] = ACTIONS(4076), + [anon_sym_0x] = ACTIONS(4076), + [sym_val_date] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym__str_single_quotes] = ACTIONS(4076), + [sym__str_back_ticks] = ACTIONS(4076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_POUND] = ACTIONS(105), + }, + [1736] = { + [sym_block] = STATE(2028), [sym_comment] = STATE(1736), - [ts_builtin_sym_end] = ACTIONS(4376), - [anon_sym_export] = ACTIONS(4374), - [anon_sym_alias] = ACTIONS(4374), - [anon_sym_let] = ACTIONS(4374), - [anon_sym_let_DASHenv] = ACTIONS(4374), - [anon_sym_mut] = ACTIONS(4374), - [anon_sym_const] = ACTIONS(4374), - [anon_sym_SEMI] = ACTIONS(4374), - [sym_cmd_identifier] = ACTIONS(4374), - [anon_sym_LF] = ACTIONS(4376), - [anon_sym_def] = ACTIONS(4374), - [anon_sym_export_DASHenv] = ACTIONS(4374), - [anon_sym_extern] = ACTIONS(4374), - [anon_sym_module] = ACTIONS(4374), - [anon_sym_use] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_LPAREN] = ACTIONS(4374), - [anon_sym_DOLLAR] = ACTIONS(4374), - [anon_sym_error] = ACTIONS(4374), - [anon_sym_DASH_DASH] = ACTIONS(4374), - [anon_sym_DASH] = ACTIONS(4374), - [anon_sym_break] = ACTIONS(4374), - [anon_sym_continue] = ACTIONS(4374), - [anon_sym_for] = ACTIONS(4374), - [anon_sym_loop] = ACTIONS(4374), - [anon_sym_while] = ACTIONS(4374), - [anon_sym_do] = ACTIONS(4374), - [anon_sym_if] = ACTIONS(4374), - [anon_sym_match] = ACTIONS(4374), - [anon_sym_LBRACE] = ACTIONS(4374), - [anon_sym_DOT] = ACTIONS(4374), - [anon_sym_try] = ACTIONS(4374), - [anon_sym_return] = ACTIONS(4374), - [anon_sym_source] = ACTIONS(4374), - [anon_sym_source_DASHenv] = ACTIONS(4374), - [anon_sym_register] = ACTIONS(4374), - [anon_sym_hide] = ACTIONS(4374), - [anon_sym_hide_DASHenv] = ACTIONS(4374), - [anon_sym_overlay] = ACTIONS(4374), - [anon_sym_as] = ACTIONS(4374), - [anon_sym_where] = ACTIONS(4374), - [anon_sym_PLUS] = ACTIONS(4374), - [anon_sym_not] = ACTIONS(4374), - [anon_sym_null] = ACTIONS(4374), - [anon_sym_true] = ACTIONS(4374), - [anon_sym_false] = ACTIONS(4374), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4374), - [aux_sym__val_number_token2] = ACTIONS(4374), - [aux_sym__val_number_token3] = ACTIONS(4374), - [aux_sym__val_number_token4] = ACTIONS(4374), - [aux_sym__val_number_token5] = ACTIONS(4374), - [aux_sym__val_number_token6] = ACTIONS(4374), - [anon_sym_0b] = ACTIONS(4374), - [anon_sym_0o] = ACTIONS(4374), - [anon_sym_0x] = ACTIONS(4374), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4374), - [sym__str_single_quotes] = ACTIONS(4374), - [sym__str_back_ticks] = ACTIONS(4374), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4374), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4374), - [anon_sym_CARET] = ACTIONS(4374), + [anon_sym_export] = ACTIONS(4494), + [anon_sym_alias] = ACTIONS(4494), + [anon_sym_let] = ACTIONS(4494), + [anon_sym_let_DASHenv] = ACTIONS(4494), + [anon_sym_mut] = ACTIONS(4494), + [anon_sym_const] = ACTIONS(4494), + [anon_sym_SEMI] = ACTIONS(4494), + [sym_cmd_identifier] = ACTIONS(4494), + [anon_sym_LF] = ACTIONS(4496), + [anon_sym_def] = ACTIONS(4494), + [anon_sym_export_DASHenv] = ACTIONS(4494), + [anon_sym_extern] = ACTIONS(4494), + [anon_sym_module] = ACTIONS(4494), + [anon_sym_use] = ACTIONS(4494), + [anon_sym_LBRACK] = ACTIONS(4494), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym_RPAREN] = ACTIONS(4494), + [anon_sym_DOLLAR] = ACTIONS(4494), + [anon_sym_error] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_for] = ACTIONS(4494), + [anon_sym_loop] = ACTIONS(4494), + [anon_sym_while] = ACTIONS(4494), + [anon_sym_do] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_match] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_try] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_source] = ACTIONS(4494), + [anon_sym_source_DASHenv] = ACTIONS(4494), + [anon_sym_register] = ACTIONS(4494), + [anon_sym_hide] = ACTIONS(4494), + [anon_sym_hide_DASHenv] = ACTIONS(4494), + [anon_sym_overlay] = ACTIONS(4494), + [anon_sym_where] = ACTIONS(4494), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_not] = ACTIONS(4494), + [anon_sym_null] = ACTIONS(4494), + [anon_sym_true] = ACTIONS(4494), + [anon_sym_false] = ACTIONS(4494), + [aux_sym__val_number_decimal_token1] = ACTIONS(4494), + [aux_sym__val_number_token1] = ACTIONS(4494), + [aux_sym__val_number_token2] = ACTIONS(4494), + [aux_sym__val_number_token3] = ACTIONS(4494), + [aux_sym__val_number_token4] = ACTIONS(4494), + [aux_sym__val_number_token5] = ACTIONS(4494), + [aux_sym__val_number_token6] = ACTIONS(4494), + [anon_sym_0b] = ACTIONS(4494), + [anon_sym_0o] = ACTIONS(4494), + [anon_sym_0x] = ACTIONS(4494), + [sym_val_date] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym__str_single_quotes] = ACTIONS(4494), + [sym__str_back_ticks] = ACTIONS(4494), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4494), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4494), + [anon_sym_CARET] = ACTIONS(4494), [anon_sym_POUND] = ACTIONS(105), }, [1737] = { [sym_comment] = STATE(1737), - [ts_builtin_sym_end] = ACTIONS(4380), - [anon_sym_export] = ACTIONS(4378), - [anon_sym_alias] = ACTIONS(4378), - [anon_sym_let] = ACTIONS(4378), - [anon_sym_let_DASHenv] = ACTIONS(4378), - [anon_sym_mut] = ACTIONS(4378), - [anon_sym_const] = ACTIONS(4378), - [anon_sym_SEMI] = ACTIONS(4378), - [sym_cmd_identifier] = ACTIONS(4378), - [anon_sym_LF] = ACTIONS(4380), - [anon_sym_def] = ACTIONS(4378), - [anon_sym_export_DASHenv] = ACTIONS(4378), - [anon_sym_extern] = ACTIONS(4378), - [anon_sym_module] = ACTIONS(4378), - [anon_sym_use] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_LPAREN] = ACTIONS(4378), - [anon_sym_DOLLAR] = ACTIONS(4378), - [anon_sym_error] = ACTIONS(4378), - [anon_sym_DASH_DASH] = ACTIONS(4378), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_break] = ACTIONS(4378), - [anon_sym_continue] = ACTIONS(4378), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_loop] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_match] = ACTIONS(4378), - [anon_sym_LBRACE] = ACTIONS(4378), - [anon_sym_DOT] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_source] = ACTIONS(4378), - [anon_sym_source_DASHenv] = ACTIONS(4378), - [anon_sym_register] = ACTIONS(4378), - [anon_sym_hide] = ACTIONS(4378), - [anon_sym_hide_DASHenv] = ACTIONS(4378), - [anon_sym_overlay] = ACTIONS(4378), - [anon_sym_as] = ACTIONS(4378), - [anon_sym_where] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_not] = ACTIONS(4378), - [anon_sym_null] = ACTIONS(4378), - [anon_sym_true] = ACTIONS(4378), - [anon_sym_false] = ACTIONS(4378), - [aux_sym__val_number_decimal_token1] = ACTIONS(4378), - [aux_sym__val_number_token1] = ACTIONS(4378), - [aux_sym__val_number_token2] = ACTIONS(4378), - [aux_sym__val_number_token3] = ACTIONS(4378), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4378), - [anon_sym_0o] = ACTIONS(4378), - [anon_sym_0x] = ACTIONS(4378), - [sym_val_date] = ACTIONS(4378), - [anon_sym_DQUOTE] = ACTIONS(4378), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4378), - [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [1738] = { [sym_comment] = STATE(1738), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [1739] = { [sym_comment] = STATE(1739), - [ts_builtin_sym_end] = ACTIONS(4384), - [anon_sym_export] = ACTIONS(4382), - [anon_sym_alias] = ACTIONS(4382), - [anon_sym_let] = ACTIONS(4382), - [anon_sym_let_DASHenv] = ACTIONS(4382), - [anon_sym_mut] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4382), - [sym_cmd_identifier] = ACTIONS(4382), - [anon_sym_LF] = ACTIONS(4384), - [anon_sym_def] = ACTIONS(4382), - [anon_sym_export_DASHenv] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym_module] = ACTIONS(4382), - [anon_sym_use] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_LPAREN] = ACTIONS(4382), - [anon_sym_DOLLAR] = ACTIONS(4382), - [anon_sym_error] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4382), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_loop] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_match] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(4382), - [anon_sym_DOT] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_source] = ACTIONS(4382), - [anon_sym_source_DASHenv] = ACTIONS(4382), - [anon_sym_register] = ACTIONS(4382), - [anon_sym_hide] = ACTIONS(4382), - [anon_sym_hide_DASHenv] = ACTIONS(4382), - [anon_sym_overlay] = ACTIONS(4382), - [anon_sym_as] = ACTIONS(4382), - [anon_sym_where] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_null] = ACTIONS(4382), - [anon_sym_true] = ACTIONS(4382), - [anon_sym_false] = ACTIONS(4382), - [aux_sym__val_number_decimal_token1] = ACTIONS(4382), - [aux_sym__val_number_token1] = ACTIONS(4382), - [aux_sym__val_number_token2] = ACTIONS(4382), - [aux_sym__val_number_token3] = ACTIONS(4382), - [aux_sym__val_number_token4] = ACTIONS(4382), - [aux_sym__val_number_token5] = ACTIONS(4382), - [aux_sym__val_number_token6] = ACTIONS(4382), - [anon_sym_0b] = ACTIONS(4382), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(4382), - [sym__str_single_quotes] = ACTIONS(4382), - [sym__str_back_ticks] = ACTIONS(4382), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4382), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_CARET] = ACTIONS(4382), + [ts_builtin_sym_end] = ACTIONS(4265), + [anon_sym_export] = ACTIONS(4263), + [anon_sym_alias] = ACTIONS(4263), + [anon_sym_let] = ACTIONS(4263), + [anon_sym_let_DASHenv] = ACTIONS(4263), + [anon_sym_mut] = ACTIONS(4263), + [anon_sym_const] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [sym_cmd_identifier] = ACTIONS(4263), + [anon_sym_LF] = ACTIONS(4265), + [anon_sym_def] = ACTIONS(4263), + [anon_sym_export_DASHenv] = ACTIONS(4263), + [anon_sym_extern] = ACTIONS(4263), + [anon_sym_module] = ACTIONS(4263), + [anon_sym_use] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_error] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_for] = ACTIONS(4263), + [anon_sym_loop] = ACTIONS(4263), + [anon_sym_while] = ACTIONS(4263), + [anon_sym_do] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_match] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_source] = ACTIONS(4263), + [anon_sym_source_DASHenv] = ACTIONS(4263), + [anon_sym_register] = ACTIONS(4263), + [anon_sym_hide] = ACTIONS(4263), + [anon_sym_hide_DASHenv] = ACTIONS(4263), + [anon_sym_overlay] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_not] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4263), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_token1] = ACTIONS(4263), + [aux_sym__val_number_token2] = ACTIONS(4263), + [aux_sym__val_number_token3] = ACTIONS(4263), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(4263), + [anon_sym_0o] = ACTIONS(4263), + [anon_sym_0x] = ACTIONS(4263), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [sym__str_single_quotes] = ACTIONS(4263), + [sym__str_back_ticks] = ACTIONS(4263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4263), [anon_sym_POUND] = ACTIONS(105), }, [1740] = { + [sym_val_record] = STATE(2085), [sym_comment] = STATE(1740), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_DOT2] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_export] = ACTIONS(4501), + [anon_sym_alias] = ACTIONS(4501), + [anon_sym_let] = ACTIONS(4501), + [anon_sym_let_DASHenv] = ACTIONS(4501), + [anon_sym_mut] = ACTIONS(4501), + [anon_sym_const] = ACTIONS(4501), + [anon_sym_SEMI] = ACTIONS(4501), + [sym_cmd_identifier] = ACTIONS(4501), + [anon_sym_LF] = ACTIONS(4503), + [anon_sym_def] = ACTIONS(4501), + [anon_sym_export_DASHenv] = ACTIONS(4501), + [anon_sym_extern] = ACTIONS(4501), + [anon_sym_module] = ACTIONS(4501), + [anon_sym_use] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym_RPAREN] = ACTIONS(4501), + [anon_sym_DOLLAR] = ACTIONS(4501), + [anon_sym_error] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_break] = ACTIONS(4501), + [anon_sym_continue] = ACTIONS(4501), + [anon_sym_for] = ACTIONS(4501), + [anon_sym_loop] = ACTIONS(4501), + [anon_sym_while] = ACTIONS(4501), + [anon_sym_do] = ACTIONS(4501), + [anon_sym_if] = ACTIONS(4501), + [anon_sym_match] = ACTIONS(4501), + [anon_sym_LBRACE] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_try] = ACTIONS(4501), + [anon_sym_return] = ACTIONS(4501), + [anon_sym_source] = ACTIONS(4501), + [anon_sym_source_DASHenv] = ACTIONS(4501), + [anon_sym_register] = ACTIONS(4501), + [anon_sym_hide] = ACTIONS(4501), + [anon_sym_hide_DASHenv] = ACTIONS(4501), + [anon_sym_overlay] = ACTIONS(4501), + [anon_sym_where] = ACTIONS(4501), + [anon_sym_PLUS] = ACTIONS(4501), + [anon_sym_not] = ACTIONS(4501), + [anon_sym_null] = ACTIONS(4501), + [anon_sym_true] = ACTIONS(4501), + [anon_sym_false] = ACTIONS(4501), + [aux_sym__val_number_decimal_token1] = ACTIONS(4501), + [aux_sym__val_number_token1] = ACTIONS(4501), + [aux_sym__val_number_token2] = ACTIONS(4501), + [aux_sym__val_number_token3] = ACTIONS(4501), + [aux_sym__val_number_token4] = ACTIONS(4501), + [aux_sym__val_number_token5] = ACTIONS(4501), + [aux_sym__val_number_token6] = ACTIONS(4501), + [anon_sym_0b] = ACTIONS(4501), + [anon_sym_0o] = ACTIONS(4501), + [anon_sym_0x] = ACTIONS(4501), + [sym_val_date] = ACTIONS(4501), + [anon_sym_DQUOTE] = ACTIONS(4501), + [sym__str_single_quotes] = ACTIONS(4501), + [sym__str_back_ticks] = ACTIONS(4501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), [anon_sym_POUND] = ACTIONS(105), }, [1741] = { + [sym_val_record] = STATE(2086), [sym_comment] = STATE(1741), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_as] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(4505), + [anon_sym_alias] = ACTIONS(4505), + [anon_sym_let] = ACTIONS(4505), + [anon_sym_let_DASHenv] = ACTIONS(4505), + [anon_sym_mut] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4505), + [sym_cmd_identifier] = ACTIONS(4505), + [anon_sym_LF] = ACTIONS(4507), + [anon_sym_def] = ACTIONS(4505), + [anon_sym_export_DASHenv] = ACTIONS(4505), + [anon_sym_extern] = ACTIONS(4505), + [anon_sym_module] = ACTIONS(4505), + [anon_sym_use] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_RPAREN] = ACTIONS(4505), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_error] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_break] = ACTIONS(4505), + [anon_sym_continue] = ACTIONS(4505), + [anon_sym_for] = ACTIONS(4505), + [anon_sym_loop] = ACTIONS(4505), + [anon_sym_while] = ACTIONS(4505), + [anon_sym_do] = ACTIONS(4505), + [anon_sym_if] = ACTIONS(4505), + [anon_sym_match] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_try] = ACTIONS(4505), + [anon_sym_return] = ACTIONS(4505), + [anon_sym_source] = ACTIONS(4505), + [anon_sym_source_DASHenv] = ACTIONS(4505), + [anon_sym_register] = ACTIONS(4505), + [anon_sym_hide] = ACTIONS(4505), + [anon_sym_hide_DASHenv] = ACTIONS(4505), + [anon_sym_overlay] = ACTIONS(4505), + [anon_sym_where] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_not] = ACTIONS(4505), + [anon_sym_null] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4505), + [anon_sym_false] = ACTIONS(4505), + [aux_sym__val_number_decimal_token1] = ACTIONS(4505), + [aux_sym__val_number_token1] = ACTIONS(4505), + [aux_sym__val_number_token2] = ACTIONS(4505), + [aux_sym__val_number_token3] = ACTIONS(4505), + [aux_sym__val_number_token4] = ACTIONS(4505), + [aux_sym__val_number_token5] = ACTIONS(4505), + [aux_sym__val_number_token6] = ACTIONS(4505), + [anon_sym_0b] = ACTIONS(4505), + [anon_sym_0o] = ACTIONS(4505), + [anon_sym_0x] = ACTIONS(4505), + [sym_val_date] = ACTIONS(4505), + [anon_sym_DQUOTE] = ACTIONS(4505), + [sym__str_single_quotes] = ACTIONS(4505), + [sym__str_back_ticks] = ACTIONS(4505), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), [anon_sym_POUND] = ACTIONS(105), }, [1742] = { - [sym__expression] = STATE(7795), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1921), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1742), - [ts_builtin_sym_end] = ACTIONS(4182), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), [anon_sym_POUND] = ACTIONS(105), }, [1743] = { [sym_comment] = STATE(1743), - [ts_builtin_sym_end] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), [anon_sym_POUND] = ACTIONS(105), }, [1744] = { [sym_comment] = STATE(1744), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_alias] = ACTIONS(3888), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_let_DASHenv] = ACTIONS(3888), - [anon_sym_mut] = ACTIONS(3888), - [anon_sym_const] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3888), - [sym_cmd_identifier] = ACTIONS(3888), - [anon_sym_LF] = ACTIONS(3890), - [anon_sym_def] = ACTIONS(3888), - [anon_sym_export_DASHenv] = ACTIONS(3888), - [anon_sym_extern] = ACTIONS(3888), - [anon_sym_module] = ACTIONS(3888), - [anon_sym_use] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3888), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_RPAREN] = ACTIONS(3888), - [anon_sym_DOLLAR] = ACTIONS(3888), - [anon_sym_error] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_break] = ACTIONS(3888), - [anon_sym_continue] = ACTIONS(3888), - [anon_sym_for] = ACTIONS(3888), - [anon_sym_loop] = ACTIONS(3888), - [anon_sym_while] = ACTIONS(3888), - [anon_sym_do] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3888), - [anon_sym_match] = ACTIONS(3888), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_RBRACE] = ACTIONS(3888), - [anon_sym_DOT] = ACTIONS(3888), - [anon_sym_DOT2] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3888), - [anon_sym_return] = ACTIONS(3888), - [anon_sym_source] = ACTIONS(3888), - [anon_sym_source_DASHenv] = ACTIONS(3888), - [anon_sym_register] = ACTIONS(3888), - [anon_sym_hide] = ACTIONS(3888), - [anon_sym_hide_DASHenv] = ACTIONS(3888), - [anon_sym_overlay] = ACTIONS(3888), - [anon_sym_where] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3888), - [anon_sym_null] = ACTIONS(3888), - [anon_sym_true] = ACTIONS(3888), - [anon_sym_false] = ACTIONS(3888), - [aux_sym__val_number_decimal_token1] = ACTIONS(3888), - [aux_sym__val_number_token1] = ACTIONS(3888), - [aux_sym__val_number_token2] = ACTIONS(3888), - [aux_sym__val_number_token3] = ACTIONS(3888), - [aux_sym__val_number_token4] = ACTIONS(3888), - [aux_sym__val_number_token5] = ACTIONS(3888), - [aux_sym__val_number_token6] = ACTIONS(3888), - [anon_sym_0b] = ACTIONS(3888), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3888), - [anon_sym_DQUOTE] = ACTIONS(3888), - [sym__str_single_quotes] = ACTIONS(3888), - [sym__str_back_ticks] = ACTIONS(3888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_export] = ACTIONS(1341), + [anon_sym_alias] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_let_DASHenv] = ACTIONS(1341), + [anon_sym_mut] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [sym_cmd_identifier] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1341), + [anon_sym_export_DASHenv] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_module] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_error] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_source] = ACTIONS(1341), + [anon_sym_source_DASHenv] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_hide] = ACTIONS(1341), + [anon_sym_hide_DASHenv] = ACTIONS(1341), + [anon_sym_overlay] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_not] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_token1] = ACTIONS(1341), + [aux_sym__val_number_token2] = ACTIONS(1341), + [aux_sym__val_number_token3] = ACTIONS(1341), + [aux_sym__val_number_token4] = ACTIONS(1341), + [aux_sym__val_number_token5] = ACTIONS(1341), + [aux_sym__val_number_token6] = ACTIONS(1341), + [anon_sym_0b] = ACTIONS(1341), + [anon_sym_0o] = ACTIONS(1341), + [anon_sym_0x] = ACTIONS(1341), + [sym_val_date] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym__str_single_quotes] = ACTIONS(1341), + [sym__str_back_ticks] = ACTIONS(1341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), [anon_sym_POUND] = ACTIONS(105), }, [1745] = { - [sym_val_record] = STATE(1945), + [sym_block] = STATE(2031), [sym_comment] = STATE(1745), - [anon_sym_export] = ACTIONS(4540), - [anon_sym_alias] = ACTIONS(4540), - [anon_sym_let] = ACTIONS(4540), - [anon_sym_let_DASHenv] = ACTIONS(4540), - [anon_sym_mut] = ACTIONS(4540), - [anon_sym_const] = ACTIONS(4540), - [anon_sym_SEMI] = ACTIONS(4540), - [sym_cmd_identifier] = ACTIONS(4540), - [anon_sym_LF] = ACTIONS(4542), - [anon_sym_def] = ACTIONS(4540), - [anon_sym_export_DASHenv] = ACTIONS(4540), - [anon_sym_extern] = ACTIONS(4540), - [anon_sym_module] = ACTIONS(4540), - [anon_sym_use] = ACTIONS(4540), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_DOLLAR] = ACTIONS(4540), - [anon_sym_error] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_break] = ACTIONS(4540), - [anon_sym_continue] = ACTIONS(4540), - [anon_sym_for] = ACTIONS(4540), - [anon_sym_loop] = ACTIONS(4540), - [anon_sym_while] = ACTIONS(4540), - [anon_sym_do] = ACTIONS(4540), - [anon_sym_if] = ACTIONS(4540), - [anon_sym_match] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4540), - [anon_sym_try] = ACTIONS(4540), - [anon_sym_return] = ACTIONS(4540), - [anon_sym_source] = ACTIONS(4540), - [anon_sym_source_DASHenv] = ACTIONS(4540), - [anon_sym_register] = ACTIONS(4540), - [anon_sym_hide] = ACTIONS(4540), - [anon_sym_hide_DASHenv] = ACTIONS(4540), - [anon_sym_overlay] = ACTIONS(4540), - [anon_sym_where] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4540), - [anon_sym_not] = ACTIONS(4540), - [anon_sym_null] = ACTIONS(4540), - [anon_sym_true] = ACTIONS(4540), - [anon_sym_false] = ACTIONS(4540), - [aux_sym__val_number_decimal_token1] = ACTIONS(4540), - [aux_sym__val_number_token1] = ACTIONS(4540), - [aux_sym__val_number_token2] = ACTIONS(4540), - [aux_sym__val_number_token3] = ACTIONS(4540), - [aux_sym__val_number_token4] = ACTIONS(4540), - [aux_sym__val_number_token5] = ACTIONS(4540), - [aux_sym__val_number_token6] = ACTIONS(4540), - [anon_sym_0b] = ACTIONS(4540), - [anon_sym_0o] = ACTIONS(4540), - [anon_sym_0x] = ACTIONS(4540), - [sym_val_date] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [sym__str_single_quotes] = ACTIONS(4540), - [sym__str_back_ticks] = ACTIONS(4540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4540), - [anon_sym_CARET] = ACTIONS(4540), + [anon_sym_export] = ACTIONS(4509), + [anon_sym_alias] = ACTIONS(4509), + [anon_sym_let] = ACTIONS(4509), + [anon_sym_let_DASHenv] = ACTIONS(4509), + [anon_sym_mut] = ACTIONS(4509), + [anon_sym_const] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4509), + [sym_cmd_identifier] = ACTIONS(4509), + [anon_sym_LF] = ACTIONS(4511), + [anon_sym_def] = ACTIONS(4509), + [anon_sym_export_DASHenv] = ACTIONS(4509), + [anon_sym_extern] = ACTIONS(4509), + [anon_sym_module] = ACTIONS(4509), + [anon_sym_use] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_DOLLAR] = ACTIONS(4509), + [anon_sym_error] = ACTIONS(4509), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_break] = ACTIONS(4509), + [anon_sym_continue] = ACTIONS(4509), + [anon_sym_for] = ACTIONS(4509), + [anon_sym_loop] = ACTIONS(4509), + [anon_sym_while] = ACTIONS(4509), + [anon_sym_do] = ACTIONS(4509), + [anon_sym_if] = ACTIONS(4509), + [anon_sym_match] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_try] = ACTIONS(4509), + [anon_sym_return] = ACTIONS(4509), + [anon_sym_source] = ACTIONS(4509), + [anon_sym_source_DASHenv] = ACTIONS(4509), + [anon_sym_register] = ACTIONS(4509), + [anon_sym_hide] = ACTIONS(4509), + [anon_sym_hide_DASHenv] = ACTIONS(4509), + [anon_sym_overlay] = ACTIONS(4509), + [anon_sym_where] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4509), + [anon_sym_not] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4509), + [anon_sym_false] = ACTIONS(4509), + [aux_sym__val_number_decimal_token1] = ACTIONS(4509), + [aux_sym__val_number_token1] = ACTIONS(4509), + [aux_sym__val_number_token2] = ACTIONS(4509), + [aux_sym__val_number_token3] = ACTIONS(4509), + [aux_sym__val_number_token4] = ACTIONS(4509), + [aux_sym__val_number_token5] = ACTIONS(4509), + [aux_sym__val_number_token6] = ACTIONS(4509), + [anon_sym_0b] = ACTIONS(4509), + [anon_sym_0o] = ACTIONS(4509), + [anon_sym_0x] = ACTIONS(4509), + [sym_val_date] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4509), + [sym__str_single_quotes] = ACTIONS(4509), + [sym__str_back_ticks] = ACTIONS(4509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), [anon_sym_POUND] = ACTIONS(105), }, [1746] = { [sym_comment] = STATE(1746), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [sym_cmd_identifier] = ACTIONS(1054), + [anon_sym_LF] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_not] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(105), }, [1747] = { [sym_comment] = STATE(1747), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(4544), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(2946), [anon_sym_POUND] = ACTIONS(105), }, [1748] = { - [sym__expression] = STATE(7795), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1920), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1748), - [ts_builtin_sym_end] = ACTIONS(4182), - [anon_sym_SEMI] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4182), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [sym_cmd_identifier] = ACTIONS(1274), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_DOT] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_where] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_not] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1274), + [anon_sym_0x] = ACTIONS(1274), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(105), }, [1749] = { - [sym_val_record] = STATE(1946), [sym_comment] = STATE(1749), - [anon_sym_export] = ACTIONS(4546), - [anon_sym_alias] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(4546), - [anon_sym_let_DASHenv] = ACTIONS(4546), - [anon_sym_mut] = ACTIONS(4546), - [anon_sym_const] = ACTIONS(4546), - [anon_sym_SEMI] = ACTIONS(4546), - [sym_cmd_identifier] = ACTIONS(4546), - [anon_sym_LF] = ACTIONS(4548), - [anon_sym_def] = ACTIONS(4546), - [anon_sym_export_DASHenv] = ACTIONS(4546), - [anon_sym_extern] = ACTIONS(4546), - [anon_sym_module] = ACTIONS(4546), - [anon_sym_use] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4546), - [anon_sym_RPAREN] = ACTIONS(4546), - [anon_sym_DOLLAR] = ACTIONS(4546), - [anon_sym_error] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_break] = ACTIONS(4546), - [anon_sym_continue] = ACTIONS(4546), - [anon_sym_for] = ACTIONS(4546), - [anon_sym_loop] = ACTIONS(4546), - [anon_sym_while] = ACTIONS(4546), - [anon_sym_do] = ACTIONS(4546), - [anon_sym_if] = ACTIONS(4546), - [anon_sym_match] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4546), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_try] = ACTIONS(4546), - [anon_sym_return] = ACTIONS(4546), - [anon_sym_source] = ACTIONS(4546), - [anon_sym_source_DASHenv] = ACTIONS(4546), - [anon_sym_register] = ACTIONS(4546), - [anon_sym_hide] = ACTIONS(4546), - [anon_sym_hide_DASHenv] = ACTIONS(4546), - [anon_sym_overlay] = ACTIONS(4546), - [anon_sym_where] = ACTIONS(4546), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_not] = ACTIONS(4546), - [anon_sym_null] = ACTIONS(4546), - [anon_sym_true] = ACTIONS(4546), - [anon_sym_false] = ACTIONS(4546), - [aux_sym__val_number_decimal_token1] = ACTIONS(4546), - [aux_sym__val_number_token1] = ACTIONS(4546), - [aux_sym__val_number_token2] = ACTIONS(4546), - [aux_sym__val_number_token3] = ACTIONS(4546), - [aux_sym__val_number_token4] = ACTIONS(4546), - [aux_sym__val_number_token5] = ACTIONS(4546), - [aux_sym__val_number_token6] = ACTIONS(4546), - [anon_sym_0b] = ACTIONS(4546), - [anon_sym_0o] = ACTIONS(4546), - [anon_sym_0x] = ACTIONS(4546), - [sym_val_date] = ACTIONS(4546), - [anon_sym_DQUOTE] = ACTIONS(4546), - [sym__str_single_quotes] = ACTIONS(4546), - [sym__str_back_ticks] = ACTIONS(4546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4546), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_alias] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_let_DASHenv] = ACTIONS(1278), + [anon_sym_mut] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [sym_cmd_identifier] = ACTIONS(1278), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_def] = ACTIONS(1278), + [anon_sym_export_DASHenv] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1278), + [anon_sym_error] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_source] = ACTIONS(1278), + [anon_sym_source_DASHenv] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_hide] = ACTIONS(1278), + [anon_sym_hide_DASHenv] = ACTIONS(1278), + [anon_sym_overlay] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_where] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_not] = ACTIONS(1278), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1278), + [aux_sym__val_number_token2] = ACTIONS(1278), + [aux_sym__val_number_token3] = ACTIONS(1278), + [aux_sym__val_number_token4] = ACTIONS(1278), + [aux_sym__val_number_token5] = ACTIONS(1278), + [aux_sym__val_number_token6] = ACTIONS(1278), + [anon_sym_0b] = ACTIONS(1278), + [anon_sym_0o] = ACTIONS(1278), + [anon_sym_0x] = ACTIONS(1278), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym__str_single_quotes] = ACTIONS(1278), + [sym__str_back_ticks] = ACTIONS(1278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), [anon_sym_POUND] = ACTIONS(105), }, [1750] = { + [sym_block] = STATE(2044), [sym_comment] = STATE(1750), - [ts_builtin_sym_end] = ACTIONS(3491), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4550), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4553), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), + [anon_sym_export] = ACTIONS(4516), + [anon_sym_alias] = ACTIONS(4516), + [anon_sym_let] = ACTIONS(4516), + [anon_sym_let_DASHenv] = ACTIONS(4516), + [anon_sym_mut] = ACTIONS(4516), + [anon_sym_const] = ACTIONS(4516), + [anon_sym_SEMI] = ACTIONS(4516), + [sym_cmd_identifier] = ACTIONS(4516), + [anon_sym_LF] = ACTIONS(4518), + [anon_sym_def] = ACTIONS(4516), + [anon_sym_export_DASHenv] = ACTIONS(4516), + [anon_sym_extern] = ACTIONS(4516), + [anon_sym_module] = ACTIONS(4516), + [anon_sym_use] = ACTIONS(4516), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_RPAREN] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_error] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_break] = ACTIONS(4516), + [anon_sym_continue] = ACTIONS(4516), + [anon_sym_for] = ACTIONS(4516), + [anon_sym_loop] = ACTIONS(4516), + [anon_sym_while] = ACTIONS(4516), + [anon_sym_do] = ACTIONS(4516), + [anon_sym_if] = ACTIONS(4516), + [anon_sym_match] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DOT] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4516), + [anon_sym_source] = ACTIONS(4516), + [anon_sym_source_DASHenv] = ACTIONS(4516), + [anon_sym_register] = ACTIONS(4516), + [anon_sym_hide] = ACTIONS(4516), + [anon_sym_hide_DASHenv] = ACTIONS(4516), + [anon_sym_overlay] = ACTIONS(4516), + [anon_sym_where] = ACTIONS(4516), + [anon_sym_PLUS] = ACTIONS(4516), + [anon_sym_not] = ACTIONS(4516), + [anon_sym_null] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4516), + [anon_sym_false] = ACTIONS(4516), + [aux_sym__val_number_decimal_token1] = ACTIONS(4516), + [aux_sym__val_number_token1] = ACTIONS(4516), + [aux_sym__val_number_token2] = ACTIONS(4516), + [aux_sym__val_number_token3] = ACTIONS(4516), + [aux_sym__val_number_token4] = ACTIONS(4516), + [aux_sym__val_number_token5] = ACTIONS(4516), + [aux_sym__val_number_token6] = ACTIONS(4516), + [anon_sym_0b] = ACTIONS(4516), + [anon_sym_0o] = ACTIONS(4516), + [anon_sym_0x] = ACTIONS(4516), + [sym_val_date] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym__str_single_quotes] = ACTIONS(4516), + [sym__str_back_ticks] = ACTIONS(4516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4516), + [anon_sym_CARET] = ACTIONS(4516), [anon_sym_POUND] = ACTIONS(105), }, [1751] = { + [sym_block] = STATE(2049), [sym_comment] = STATE(1751), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(4516), + [anon_sym_alias] = ACTIONS(4516), + [anon_sym_let] = ACTIONS(4516), + [anon_sym_let_DASHenv] = ACTIONS(4516), + [anon_sym_mut] = ACTIONS(4516), + [anon_sym_const] = ACTIONS(4516), + [anon_sym_SEMI] = ACTIONS(4516), + [sym_cmd_identifier] = ACTIONS(4516), + [anon_sym_LF] = ACTIONS(4518), + [anon_sym_def] = ACTIONS(4516), + [anon_sym_export_DASHenv] = ACTIONS(4516), + [anon_sym_extern] = ACTIONS(4516), + [anon_sym_module] = ACTIONS(4516), + [anon_sym_use] = ACTIONS(4516), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym_RPAREN] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_error] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_break] = ACTIONS(4516), + [anon_sym_continue] = ACTIONS(4516), + [anon_sym_for] = ACTIONS(4516), + [anon_sym_loop] = ACTIONS(4516), + [anon_sym_while] = ACTIONS(4516), + [anon_sym_do] = ACTIONS(4516), + [anon_sym_if] = ACTIONS(4516), + [anon_sym_match] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4516), + [anon_sym_DOT] = ACTIONS(4516), + [anon_sym_try] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4516), + [anon_sym_source] = ACTIONS(4516), + [anon_sym_source_DASHenv] = ACTIONS(4516), + [anon_sym_register] = ACTIONS(4516), + [anon_sym_hide] = ACTIONS(4516), + [anon_sym_hide_DASHenv] = ACTIONS(4516), + [anon_sym_overlay] = ACTIONS(4516), + [anon_sym_where] = ACTIONS(4516), + [anon_sym_PLUS] = ACTIONS(4516), + [anon_sym_not] = ACTIONS(4516), + [anon_sym_null] = ACTIONS(4516), + [anon_sym_true] = ACTIONS(4516), + [anon_sym_false] = ACTIONS(4516), + [aux_sym__val_number_decimal_token1] = ACTIONS(4516), + [aux_sym__val_number_token1] = ACTIONS(4516), + [aux_sym__val_number_token2] = ACTIONS(4516), + [aux_sym__val_number_token3] = ACTIONS(4516), + [aux_sym__val_number_token4] = ACTIONS(4516), + [aux_sym__val_number_token5] = ACTIONS(4516), + [aux_sym__val_number_token6] = ACTIONS(4516), + [anon_sym_0b] = ACTIONS(4516), + [anon_sym_0o] = ACTIONS(4516), + [anon_sym_0x] = ACTIONS(4516), + [sym_val_date] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym__str_single_quotes] = ACTIONS(4516), + [sym__str_back_ticks] = ACTIONS(4516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4516), + [anon_sym_CARET] = ACTIONS(4516), [anon_sym_POUND] = ACTIONS(105), }, [1752] = { [sym_comment] = STATE(1752), - [ts_builtin_sym_end] = ACTIONS(1387), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_null] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym__val_number_decimal_token1] = ACTIONS(909), + [aux_sym__val_number_token1] = ACTIONS(909), + [aux_sym__val_number_token2] = ACTIONS(909), + [aux_sym__val_number_token3] = ACTIONS(909), + [aux_sym__val_number_token4] = ACTIONS(909), + [aux_sym__val_number_token5] = ACTIONS(909), + [aux_sym__val_number_token6] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(105), }, [1753] = { [sym_comment] = STATE(1753), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_DOT2] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(4524), [anon_sym_POUND] = ACTIONS(105), }, [1754] = { - [sym_expr_parenthesized] = STATE(11481), - [sym_val_variable] = STATE(11481), - [sym__var] = STATE(7529), - [sym_val_number] = STATE(11481), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(11481), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(11355), - [sym__record_key] = STATE(10706), [sym_comment] = STATE(1754), - [aux_sym_record_body_repeat1] = STATE(1754), - [anon_sym_export] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4555), - [anon_sym_let] = ACTIONS(4555), - [anon_sym_let_DASHenv] = ACTIONS(4555), - [anon_sym_mut] = ACTIONS(4555), - [anon_sym_const] = ACTIONS(4555), - [sym_cmd_identifier] = ACTIONS(4555), - [anon_sym_def] = ACTIONS(4555), - [anon_sym_export_DASHenv] = ACTIONS(4555), - [anon_sym_extern] = ACTIONS(4555), - [anon_sym_module] = ACTIONS(4555), - [anon_sym_use] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4558), - [anon_sym_DOLLAR] = ACTIONS(4561), - [anon_sym_error] = ACTIONS(4555), - [anon_sym_list] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4564), - [anon_sym_break] = ACTIONS(4555), - [anon_sym_continue] = ACTIONS(4555), - [anon_sym_for] = ACTIONS(4555), - [anon_sym_in] = ACTIONS(4555), - [anon_sym_loop] = ACTIONS(4555), - [anon_sym_make] = ACTIONS(4555), - [anon_sym_while] = ACTIONS(4555), - [anon_sym_do] = ACTIONS(4555), - [anon_sym_if] = ACTIONS(4555), - [anon_sym_else] = ACTIONS(4555), - [anon_sym_match] = ACTIONS(4555), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_try] = ACTIONS(4555), - [anon_sym_catch] = ACTIONS(4555), - [anon_sym_return] = ACTIONS(4555), - [anon_sym_source] = ACTIONS(4555), - [anon_sym_source_DASHenv] = ACTIONS(4555), - [anon_sym_register] = ACTIONS(4555), - [anon_sym_hide] = ACTIONS(4555), - [anon_sym_hide_DASHenv] = ACTIONS(4555), - [anon_sym_overlay] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_as] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4570), - [aux_sym__val_number_decimal_token1] = ACTIONS(4573), - [aux_sym__val_number_token1] = ACTIONS(4576), - [aux_sym__val_number_token2] = ACTIONS(4576), - [aux_sym__val_number_token3] = ACTIONS(4576), - [aux_sym__val_number_token4] = ACTIONS(4579), - [aux_sym__val_number_token5] = ACTIONS(4576), - [aux_sym__val_number_token6] = ACTIONS(4579), - [anon_sym_DQUOTE] = ACTIONS(4582), - [sym__str_single_quotes] = ACTIONS(4585), - [sym__str_back_ticks] = ACTIONS(4585), - [aux_sym__record_key_token2] = ACTIONS(4588), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [sym_cmd_identifier] = ACTIONS(1349), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [aux_sym__val_number_token4] = ACTIONS(1349), + [aux_sym__val_number_token5] = ACTIONS(1349), + [aux_sym__val_number_token6] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(105), }, [1755] = { [sym_comment] = STATE(1755), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token2] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(1355), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_alias] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_let_DASHenv] = ACTIONS(1353), + [anon_sym_mut] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [sym_cmd_identifier] = ACTIONS(1353), + [anon_sym_LF] = ACTIONS(1355), + [anon_sym_def] = ACTIONS(1353), + [anon_sym_export_DASHenv] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_use] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_loop] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_source] = ACTIONS(1353), + [anon_sym_source_DASHenv] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_hide] = ACTIONS(1353), + [anon_sym_hide_DASHenv] = ACTIONS(1353), + [anon_sym_overlay] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1353), + [anon_sym_where] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_not] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1353), + [anon_sym_false] = ACTIONS(1353), + [aux_sym__val_number_decimal_token1] = ACTIONS(1353), + [aux_sym__val_number_token1] = ACTIONS(1353), + [aux_sym__val_number_token2] = ACTIONS(1353), + [aux_sym__val_number_token3] = ACTIONS(1353), + [aux_sym__val_number_token4] = ACTIONS(1353), + [aux_sym__val_number_token5] = ACTIONS(1353), + [aux_sym__val_number_token6] = ACTIONS(1353), + [anon_sym_0b] = ACTIONS(1353), + [anon_sym_0o] = ACTIONS(1353), + [anon_sym_0x] = ACTIONS(1353), + [sym_val_date] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1353), + [anon_sym_CARET] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(105), }, [1756] = { [sym_comment] = STATE(1756), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_let_DASHenv] = ACTIONS(1102), - [anon_sym_mut] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [sym_cmd_identifier] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1102), - [anon_sym_export_DASHenv] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_module] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [anon_sym_error] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_source] = ACTIONS(1102), - [anon_sym_source_DASHenv] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_hide] = ACTIONS(1102), - [anon_sym_hide_DASHenv] = ACTIONS(1102), - [anon_sym_overlay] = ACTIONS(1102), - [anon_sym_as] = ACTIONS(1102), - [anon_sym_where] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_not] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [aux_sym__val_number_decimal_token1] = ACTIONS(1102), - [aux_sym__val_number_token1] = ACTIONS(1102), - [aux_sym__val_number_token2] = ACTIONS(1102), - [aux_sym__val_number_token3] = ACTIONS(1102), - [aux_sym__val_number_token4] = ACTIONS(1102), - [aux_sym__val_number_token5] = ACTIONS(1102), - [aux_sym__val_number_token6] = ACTIONS(1102), - [anon_sym_0b] = ACTIONS(1102), - [anon_sym_0o] = ACTIONS(1102), - [anon_sym_0x] = ACTIONS(1102), - [sym_val_date] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym__str_single_quotes] = ACTIONS(1102), - [sym__str_back_ticks] = ACTIONS(1102), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1305), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_cmd_identifier] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_not] = ACTIONS(1303), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [aux_sym__val_number_decimal_token1] = ACTIONS(1303), + [aux_sym__val_number_token1] = ACTIONS(1303), + [aux_sym__val_number_token2] = ACTIONS(1303), + [aux_sym__val_number_token3] = ACTIONS(1303), + [aux_sym__val_number_token4] = ACTIONS(1303), + [aux_sym__val_number_token5] = ACTIONS(1303), + [aux_sym__val_number_token6] = ACTIONS(1303), + [anon_sym_0b] = ACTIONS(1303), + [anon_sym_0o] = ACTIONS(1303), + [anon_sym_0x] = ACTIONS(1303), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym__str_single_quotes] = ACTIONS(1303), + [sym__str_back_ticks] = ACTIONS(1303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), [anon_sym_POUND] = ACTIONS(105), }, [1757] = { [sym_comment] = STATE(1757), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(4250), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [aux_sym__val_number_token4] = ACTIONS(1307), + [aux_sym__val_number_token5] = ACTIONS(1307), + [aux_sym__val_number_token6] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(105), }, [1758] = { - [sym_block] = STATE(2096), [sym_comment] = STATE(1758), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_alias] = ACTIONS(4591), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_let_DASHenv] = ACTIONS(4591), - [anon_sym_mut] = ACTIONS(4591), - [anon_sym_const] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [sym_cmd_identifier] = ACTIONS(4591), - [anon_sym_LF] = ACTIONS(4593), - [anon_sym_def] = ACTIONS(4591), - [anon_sym_export_DASHenv] = ACTIONS(4591), - [anon_sym_extern] = ACTIONS(4591), - [anon_sym_module] = ACTIONS(4591), - [anon_sym_use] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_error] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_for] = ACTIONS(4591), - [anon_sym_loop] = ACTIONS(4591), - [anon_sym_while] = ACTIONS(4591), - [anon_sym_do] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_match] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_source] = ACTIONS(4591), - [anon_sym_source_DASHenv] = ACTIONS(4591), - [anon_sym_register] = ACTIONS(4591), - [anon_sym_hide] = ACTIONS(4591), - [anon_sym_hide_DASHenv] = ACTIONS(4591), - [anon_sym_overlay] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_true] = ACTIONS(4591), - [anon_sym_false] = ACTIONS(4591), - [aux_sym__val_number_decimal_token1] = ACTIONS(4591), - [aux_sym__val_number_token1] = ACTIONS(4591), - [aux_sym__val_number_token2] = ACTIONS(4591), - [aux_sym__val_number_token3] = ACTIONS(4591), - [aux_sym__val_number_token4] = ACTIONS(4591), - [aux_sym__val_number_token5] = ACTIONS(4591), - [aux_sym__val_number_token6] = ACTIONS(4591), - [anon_sym_0b] = ACTIONS(4591), - [anon_sym_0o] = ACTIONS(4591), - [anon_sym_0x] = ACTIONS(4591), - [sym_val_date] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [sym__str_single_quotes] = ACTIONS(4591), - [sym__str_back_ticks] = ACTIONS(4591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4591), - [anon_sym_CARET] = ACTIONS(4591), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), [anon_sym_POUND] = ACTIONS(105), }, [1759] = { [sym_comment] = STATE(1759), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(4285), + [anon_sym_export] = ACTIONS(4283), + [anon_sym_alias] = ACTIONS(4283), + [anon_sym_let] = ACTIONS(4283), + [anon_sym_let_DASHenv] = ACTIONS(4283), + [anon_sym_mut] = ACTIONS(4283), + [anon_sym_const] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4283), + [sym_cmd_identifier] = ACTIONS(4283), + [anon_sym_LF] = ACTIONS(4285), + [anon_sym_def] = ACTIONS(4283), + [anon_sym_export_DASHenv] = ACTIONS(4283), + [anon_sym_extern] = ACTIONS(4283), + [anon_sym_module] = ACTIONS(4283), + [anon_sym_use] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_error] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_for] = ACTIONS(4283), + [anon_sym_loop] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_do] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_match] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_source] = ACTIONS(4283), + [anon_sym_source_DASHenv] = ACTIONS(4283), + [anon_sym_register] = ACTIONS(4283), + [anon_sym_hide] = ACTIONS(4283), + [anon_sym_hide_DASHenv] = ACTIONS(4283), + [anon_sym_overlay] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_not] = ACTIONS(4283), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4283), + [aux_sym__val_number_token2] = ACTIONS(4283), + [aux_sym__val_number_token3] = ACTIONS(4283), + [aux_sym__val_number_token4] = ACTIONS(4283), + [aux_sym__val_number_token5] = ACTIONS(4283), + [aux_sym__val_number_token6] = ACTIONS(4283), + [anon_sym_0b] = ACTIONS(4283), + [anon_sym_0o] = ACTIONS(4283), + [anon_sym_0x] = ACTIONS(4283), + [sym_val_date] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4283), + [sym__str_back_ticks] = ACTIONS(4283), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), [anon_sym_POUND] = ACTIONS(105), }, [1760] = { [sym_comment] = STATE(1760), - [anon_sym_export] = ACTIONS(4597), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_let] = ACTIONS(4597), - [anon_sym_let_DASHenv] = ACTIONS(4597), - [anon_sym_mut] = ACTIONS(4597), - [anon_sym_const] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4597), - [sym_cmd_identifier] = ACTIONS(4597), - [anon_sym_LF] = ACTIONS(4599), - [anon_sym_def] = ACTIONS(4597), - [anon_sym_export_DASHenv] = ACTIONS(4597), - [anon_sym_extern] = ACTIONS(4597), - [anon_sym_module] = ACTIONS(4597), - [anon_sym_use] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym_RPAREN] = ACTIONS(4597), - [anon_sym_PIPE] = ACTIONS(4597), - [anon_sym_DOLLAR] = ACTIONS(4597), - [anon_sym_error] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_continue] = ACTIONS(4597), - [anon_sym_for] = ACTIONS(4597), - [anon_sym_loop] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_do] = ACTIONS(4597), - [anon_sym_if] = ACTIONS(4597), - [anon_sym_match] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_try] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_source] = ACTIONS(4597), - [anon_sym_source_DASHenv] = ACTIONS(4597), - [anon_sym_register] = ACTIONS(4597), - [anon_sym_hide] = ACTIONS(4597), - [anon_sym_hide_DASHenv] = ACTIONS(4597), - [anon_sym_overlay] = ACTIONS(4597), - [anon_sym_where] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_not] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4597), - [anon_sym_true] = ACTIONS(4597), - [anon_sym_false] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(4597), - [aux_sym__val_number_token1] = ACTIONS(4597), - [aux_sym__val_number_token2] = ACTIONS(4597), - [aux_sym__val_number_token3] = ACTIONS(4597), - [aux_sym__val_number_token4] = ACTIONS(4597), - [aux_sym__val_number_token5] = ACTIONS(4597), - [aux_sym__val_number_token6] = ACTIONS(4597), - [anon_sym_0b] = ACTIONS(4597), - [anon_sym_0o] = ACTIONS(4597), - [anon_sym_0x] = ACTIONS(4597), - [sym_val_date] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(4597), - [sym__str_single_quotes] = ACTIONS(4597), - [sym__str_back_ticks] = ACTIONS(4597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT2] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_null] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_token1] = ACTIONS(877), + [aux_sym__val_number_token2] = ACTIONS(877), + [aux_sym__val_number_token3] = ACTIONS(877), + [aux_sym__val_number_token4] = ACTIONS(877), + [aux_sym__val_number_token5] = ACTIONS(877), + [aux_sym__val_number_token6] = ACTIONS(877), + [sym_filesize_unit] = ACTIONS(877), + [sym_duration_unit] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [aux_sym_unquoted_token6] = ACTIONS(4528), [anon_sym_POUND] = ACTIONS(105), }, [1761] = { [sym_comment] = STATE(1761), - [ts_builtin_sym_end] = ACTIONS(3836), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_DOT2] = ACTIONS(3836), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [aux_sym__immediate_decimal_token2] = ACTIONS(4601), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [ts_builtin_sym_end] = ACTIONS(1331), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_alias] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_let_DASHenv] = ACTIONS(1329), + [anon_sym_mut] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [sym_cmd_identifier] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_def] = ACTIONS(1329), + [anon_sym_export_DASHenv] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1329), + [anon_sym_error] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_source] = ACTIONS(1329), + [anon_sym_source_DASHenv] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_hide] = ACTIONS(1329), + [anon_sym_hide_DASHenv] = ACTIONS(1329), + [anon_sym_overlay] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_where] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [aux_sym__val_number_decimal_token1] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1329), + [aux_sym__val_number_token5] = ACTIONS(1329), + [aux_sym__val_number_token6] = ACTIONS(1329), + [anon_sym_0b] = ACTIONS(1329), + [anon_sym_0o] = ACTIONS(1329), + [anon_sym_0x] = ACTIONS(1329), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), [anon_sym_POUND] = ACTIONS(105), }, [1762] = { [sym_comment] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [aux_sym__immediate_decimal_token1] = ACTIONS(4603), - [aux_sym__immediate_decimal_token2] = ACTIONS(4605), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(1335), + [anon_sym_export] = ACTIONS(1333), + [anon_sym_alias] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_let_DASHenv] = ACTIONS(1333), + [anon_sym_mut] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [sym_cmd_identifier] = ACTIONS(1333), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(1333), + [anon_sym_export_DASHenv] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_module] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1333), + [anon_sym_error] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_source] = ACTIONS(1333), + [anon_sym_source_DASHenv] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_hide] = ACTIONS(1333), + [anon_sym_hide_DASHenv] = ACTIONS(1333), + [anon_sym_overlay] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_where] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_not] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1333), + [aux_sym__val_number_token5] = ACTIONS(1333), + [aux_sym__val_number_token6] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1333), + [anon_sym_0o] = ACTIONS(1333), + [anon_sym_0x] = ACTIONS(1333), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), [anon_sym_POUND] = ACTIONS(105), }, [1763] = { [sym_comment] = STATE(1763), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(1339), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [sym_cmd_identifier] = ACTIONS(1337), + [anon_sym_LF] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_token1] = ACTIONS(1337), + [aux_sym__val_number_token2] = ACTIONS(1337), + [aux_sym__val_number_token3] = ACTIONS(1337), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1337), + [sym__str_back_ticks] = ACTIONS(1337), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), [anon_sym_POUND] = ACTIONS(105), }, [1764] = { [sym_comment] = STATE(1764), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(4438), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(4530), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_DASH_DASH] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_in] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_DOT2] = ACTIONS(4532), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_STAR_STAR] = ACTIONS(827), + [anon_sym_PLUS_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_mod] = ACTIONS(827), + [anon_sym_SLASH_SLASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_bit_DASHshl] = ACTIONS(827), + [anon_sym_bit_DASHshr] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT2] = ACTIONS(827), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_not_DASHin] = ACTIONS(827), + [anon_sym_starts_DASHwith] = ACTIONS(827), + [anon_sym_ends_DASHwith] = ACTIONS(827), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_BANG_TILDE] = ACTIONS(827), + [anon_sym_bit_DASHand] = ACTIONS(827), + [anon_sym_bit_DASHxor] = ACTIONS(827), + [anon_sym_bit_DASHor] = ACTIONS(827), + [anon_sym_and] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_EQ2] = ACTIONS(4530), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [aux_sym_unquoted_token4] = ACTIONS(4534), + [aux_sym_unquoted_token6] = ACTIONS(4536), [anon_sym_POUND] = ACTIONS(105), }, [1765] = { [sym_comment] = STATE(1765), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_RPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(1347), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [sym_cmd_identifier] = ACTIONS(1345), + [anon_sym_LF] = ACTIONS(1347), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_not] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1345), + [aux_sym__val_number_token5] = ACTIONS(1345), + [aux_sym__val_number_token6] = ACTIONS(1345), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1345), + [sym__str_back_ticks] = ACTIONS(1345), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1345), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), [anon_sym_POUND] = ACTIONS(105), }, [1766] = { [sym_comment] = STATE(1766), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_STAR_STAR] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(889), - [anon_sym_bit_DASHshr] = ACTIONS(889), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_not_DASHin] = ACTIONS(889), - [anon_sym_starts_DASHwith] = ACTIONS(889), - [anon_sym_ends_DASHwith] = ACTIONS(889), - [anon_sym_EQ_TILDE] = ACTIONS(889), - [anon_sym_BANG_TILDE] = ACTIONS(889), - [anon_sym_bit_DASHand] = ACTIONS(889), - [anon_sym_bit_DASHxor] = ACTIONS(889), - [anon_sym_bit_DASHor] = ACTIONS(889), - [anon_sym_and] = ACTIONS(889), - [anon_sym_xor] = ACTIONS(889), - [anon_sym_or] = ACTIONS(889), - [anon_sym_not] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(889), - [aux_sym__val_number_token5] = ACTIONS(889), - [aux_sym__val_number_token6] = ACTIONS(889), - [sym_filesize_unit] = ACTIONS(889), - [sym_duration_unit] = ACTIONS(889), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), - [aux_sym_unquoted_token6] = ACTIONS(889), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1209), + [anon_sym_alias] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_let_DASHenv] = ACTIONS(1209), + [anon_sym_mut] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [sym_cmd_identifier] = ACTIONS(1209), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_def] = ACTIONS(1209), + [anon_sym_export_DASHenv] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym_module] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_error] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_loop] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_DOT] = ACTIONS(1209), + [anon_sym_DOT2] = ACTIONS(1211), + [anon_sym_try] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_source] = ACTIONS(1209), + [anon_sym_source_DASHenv] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_hide] = ACTIONS(1209), + [anon_sym_hide_DASHenv] = ACTIONS(1209), + [anon_sym_overlay] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_where] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1209), + [anon_sym_null] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), + [aux_sym__val_number_decimal_token1] = ACTIONS(1209), + [aux_sym__val_number_token1] = ACTIONS(1209), + [aux_sym__val_number_token2] = ACTIONS(1209), + [aux_sym__val_number_token3] = ACTIONS(1209), + [aux_sym__val_number_token4] = ACTIONS(1209), + [aux_sym__val_number_token5] = ACTIONS(1209), + [aux_sym__val_number_token6] = ACTIONS(1209), + [anon_sym_0b] = ACTIONS(1209), + [anon_sym_0o] = ACTIONS(1209), + [anon_sym_0x] = ACTIONS(1209), + [sym_val_date] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym__str_single_quotes] = ACTIONS(1209), + [sym__str_back_ticks] = ACTIONS(1209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1209), + [anon_sym_CARET] = ACTIONS(1209), [anon_sym_POUND] = ACTIONS(105), }, [1767] = { [sym_comment] = STATE(1767), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1359), + [anon_sym_export] = ACTIONS(1357), + [anon_sym_alias] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_let_DASHenv] = ACTIONS(1357), + [anon_sym_mut] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [sym_cmd_identifier] = ACTIONS(1357), + [anon_sym_LF] = ACTIONS(1359), + [anon_sym_def] = ACTIONS(1357), + [anon_sym_export_DASHenv] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_module] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_error] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_source] = ACTIONS(1357), + [anon_sym_source_DASHenv] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_hide] = ACTIONS(1357), + [anon_sym_hide_DASHenv] = ACTIONS(1357), + [anon_sym_overlay] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_where] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [aux_sym__val_number_decimal_token1] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1357), + [aux_sym__val_number_token5] = ACTIONS(1357), + [aux_sym__val_number_token6] = ACTIONS(1357), + [anon_sym_0b] = ACTIONS(1357), + [anon_sym_0o] = ACTIONS(1357), + [anon_sym_0x] = ACTIONS(1357), + [sym_val_date] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym__str_single_quotes] = ACTIONS(1357), + [sym__str_back_ticks] = ACTIONS(1357), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(105), }, [1768] = { [sym_comment] = STATE(1768), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), + [ts_builtin_sym_end] = ACTIONS(1363), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1361), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_let_DASHenv] = ACTIONS(1361), + [anon_sym_mut] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [sym_cmd_identifier] = ACTIONS(1361), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1361), + [anon_sym_export_DASHenv] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_use] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1361), + [anon_sym_error] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_loop] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_try] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_source] = ACTIONS(1361), + [anon_sym_source_DASHenv] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_hide] = ACTIONS(1361), + [anon_sym_hide_DASHenv] = ACTIONS(1361), + [anon_sym_overlay] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1361), + [anon_sym_where] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_not] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1361), + [anon_sym_false] = ACTIONS(1361), + [aux_sym__val_number_decimal_token1] = ACTIONS(1361), + [aux_sym__val_number_token1] = ACTIONS(1361), + [aux_sym__val_number_token2] = ACTIONS(1361), + [aux_sym__val_number_token3] = ACTIONS(1361), + [aux_sym__val_number_token4] = ACTIONS(1361), + [aux_sym__val_number_token5] = ACTIONS(1361), + [aux_sym__val_number_token6] = ACTIONS(1361), + [anon_sym_0b] = ACTIONS(1361), + [anon_sym_0o] = ACTIONS(1361), + [anon_sym_0x] = ACTIONS(1361), + [sym_val_date] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym__str_single_quotes] = ACTIONS(1361), + [sym__str_back_ticks] = ACTIONS(1361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(105), }, [1769] = { [sym_comment] = STATE(1769), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1368), + [anon_sym_alias] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_let_DASHenv] = ACTIONS(1368), + [anon_sym_mut] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [sym_cmd_identifier] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1368), + [anon_sym_export_DASHenv] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_module] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_error] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_source] = ACTIONS(1368), + [anon_sym_source_DASHenv] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_hide] = ACTIONS(1368), + [anon_sym_hide_DASHenv] = ACTIONS(1368), + [anon_sym_overlay] = ACTIONS(1368), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_where] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_not] = ACTIONS(1368), + [anon_sym_null] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [aux_sym__val_number_decimal_token1] = ACTIONS(1368), + [aux_sym__val_number_token1] = ACTIONS(1368), + [aux_sym__val_number_token2] = ACTIONS(1368), + [aux_sym__val_number_token3] = ACTIONS(1368), + [aux_sym__val_number_token4] = ACTIONS(1368), + [aux_sym__val_number_token5] = ACTIONS(1368), + [aux_sym__val_number_token6] = ACTIONS(1368), + [anon_sym_0b] = ACTIONS(1368), + [anon_sym_0o] = ACTIONS(1368), + [anon_sym_0x] = ACTIONS(1368), + [sym_val_date] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym__str_single_quotes] = ACTIONS(1368), + [sym__str_back_ticks] = ACTIONS(1368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_POUND] = ACTIONS(105), }, [1770] = { [sym_comment] = STATE(1770), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1215), + [anon_sym_export] = ACTIONS(1213), + [anon_sym_alias] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_let_DASHenv] = ACTIONS(1213), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [sym_cmd_identifier] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1215), + [anon_sym_def] = ACTIONS(1213), + [anon_sym_export_DASHenv] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_error] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_loop] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_DOT2] = ACTIONS(1215), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_source] = ACTIONS(1213), + [anon_sym_source_DASHenv] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_hide] = ACTIONS(1213), + [anon_sym_hide_DASHenv] = ACTIONS(1213), + [anon_sym_overlay] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_where] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_not] = ACTIONS(1213), + [anon_sym_null] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1213), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [aux_sym__val_number_token4] = ACTIONS(1213), + [aux_sym__val_number_token5] = ACTIONS(1213), + [aux_sym__val_number_token6] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1213), + [anon_sym_0o] = ACTIONS(1213), + [anon_sym_0x] = ACTIONS(1213), + [sym_val_date] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym__str_single_quotes] = ACTIONS(1213), + [sym__str_back_ticks] = ACTIONS(1213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), [anon_sym_POUND] = ACTIONS(105), }, [1771] = { [sym_comment] = STATE(1771), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), [anon_sym_POUND] = ACTIONS(105), }, [1772] = { [sym_comment] = STATE(1772), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1266), + [anon_sym_alias] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_let_DASHenv] = ACTIONS(1266), + [anon_sym_mut] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [sym_cmd_identifier] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_export_DASHenv] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_module] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_error] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_source] = ACTIONS(1266), + [anon_sym_source_DASHenv] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_hide] = ACTIONS(1266), + [anon_sym_hide_DASHenv] = ACTIONS(1266), + [anon_sym_overlay] = ACTIONS(1266), + [anon_sym_as] = ACTIONS(1266), + [anon_sym_where] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym__val_number_decimal_token1] = ACTIONS(1266), + [aux_sym__val_number_token1] = ACTIONS(1266), + [aux_sym__val_number_token2] = ACTIONS(1266), + [aux_sym__val_number_token3] = ACTIONS(1266), + [aux_sym__val_number_token4] = ACTIONS(1266), + [aux_sym__val_number_token5] = ACTIONS(1266), + [aux_sym__val_number_token6] = ACTIONS(1266), + [anon_sym_0b] = ACTIONS(1266), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym__str_single_quotes] = ACTIONS(1266), + [sym__str_back_ticks] = ACTIONS(1266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(105), + }, + [1773] = { + [sym_comment] = STATE(1773), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [sym_cmd_identifier] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_not] = ACTIONS(1270), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(1270), + [aux_sym__val_number_token2] = ACTIONS(1270), + [aux_sym__val_number_token3] = ACTIONS(1270), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym__str_single_quotes] = ACTIONS(1270), + [sym__str_back_ticks] = ACTIONS(1270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(105), + }, + [1774] = { + [sym_comment] = STATE(1774), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_alias] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_let_DASHenv] = ACTIONS(1437), + [anon_sym_mut] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [sym_cmd_identifier] = ACTIONS(1437), + [anon_sym_LF] = ACTIONS(1439), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_export_DASHenv] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_error] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_source] = ACTIONS(1437), + [anon_sym_source_DASHenv] = ACTIONS(1437), + [anon_sym_register] = ACTIONS(1437), + [anon_sym_hide] = ACTIONS(1437), + [anon_sym_hide_DASHenv] = ACTIONS(1437), + [anon_sym_overlay] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_where] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(105), + }, + [1775] = { + [sym_comment] = STATE(1775), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [sym_cmd_identifier] = ACTIONS(929), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_register] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_not] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(105), + }, + [1776] = { + [sym_comment] = STATE(1776), + [ts_builtin_sym_end] = ACTIONS(1276), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [sym_cmd_identifier] = ACTIONS(1274), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_DOT] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(1274), + [anon_sym_where] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_not] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1274), + [anon_sym_0x] = ACTIONS(1274), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(105), + }, + [1777] = { + [sym_comment] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(1280), + [anon_sym_export] = ACTIONS(1278), + [anon_sym_alias] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_let_DASHenv] = ACTIONS(1278), + [anon_sym_mut] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [sym_cmd_identifier] = ACTIONS(1278), + [anon_sym_LF] = ACTIONS(1280), + [anon_sym_def] = ACTIONS(1278), + [anon_sym_export_DASHenv] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1278), + [anon_sym_error] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_DOT] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_source] = ACTIONS(1278), + [anon_sym_source_DASHenv] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_hide] = ACTIONS(1278), + [anon_sym_hide_DASHenv] = ACTIONS(1278), + [anon_sym_overlay] = ACTIONS(1278), + [anon_sym_as] = ACTIONS(1278), + [anon_sym_where] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_not] = ACTIONS(1278), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1278), + [aux_sym__val_number_token2] = ACTIONS(1278), + [aux_sym__val_number_token3] = ACTIONS(1278), + [aux_sym__val_number_token4] = ACTIONS(1278), + [aux_sym__val_number_token5] = ACTIONS(1278), + [aux_sym__val_number_token6] = ACTIONS(1278), + [anon_sym_0b] = ACTIONS(1278), + [anon_sym_0o] = ACTIONS(1278), + [anon_sym_0x] = ACTIONS(1278), + [sym_val_date] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym__str_single_quotes] = ACTIONS(1278), + [sym__str_back_ticks] = ACTIONS(1278), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(105), + }, + [1778] = { + [sym_comment] = STATE(1778), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [sym_cmd_identifier] = ACTIONS(1319), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_where] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_not] = ACTIONS(1319), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1319), + [aux_sym__val_number_token1] = ACTIONS(1319), + [aux_sym__val_number_token2] = ACTIONS(1319), + [aux_sym__val_number_token3] = ACTIONS(1319), + [aux_sym__val_number_token4] = ACTIONS(1319), + [aux_sym__val_number_token5] = ACTIONS(1319), + [aux_sym__val_number_token6] = ACTIONS(1319), + [anon_sym_0b] = ACTIONS(1319), + [anon_sym_0o] = ACTIONS(1319), + [anon_sym_0x] = ACTIONS(1319), + [sym_val_date] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym__str_single_quotes] = ACTIONS(1319), + [sym__str_back_ticks] = ACTIONS(1319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(105), + }, + [1779] = { + [sym_comment] = STATE(1779), + [ts_builtin_sym_end] = ACTIONS(1284), [anon_sym_export] = ACTIONS(1282), [anon_sym_alias] = ACTIONS(1282), [anon_sym_let] = ACTIONS(1282), @@ -231361,9 +231858,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1282), [anon_sym_LBRACK] = ACTIONS(1282), [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), [anon_sym_DOLLAR] = ACTIONS(1282), [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), [anon_sym_DASH] = ACTIONS(1282), [anon_sym_break] = ACTIONS(1282), [anon_sym_continue] = ACTIONS(1282), @@ -231374,7 +231871,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1282), [anon_sym_match] = ACTIONS(1282), [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), [anon_sym_DOT] = ACTIONS(1282), [anon_sym_try] = ACTIONS(1282), [anon_sym_return] = ACTIONS(1282), @@ -231384,7 +231880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1282), [anon_sym_hide_DASHenv] = ACTIONS(1282), [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1282), [anon_sym_where] = ACTIONS(1282), [anon_sym_PLUS] = ACTIONS(1282), [anon_sym_not] = ACTIONS(1282), @@ -231410,1683 +231906,2018 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1282), [anon_sym_POUND] = ACTIONS(105), }, - [1773] = { - [sym_comment] = STATE(1773), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(105), - }, - [1774] = { - [sym_comment] = STATE(1774), - [anon_sym_export] = ACTIONS(1397), - [anon_sym_alias] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_let_DASHenv] = ACTIONS(1397), - [anon_sym_mut] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [sym_cmd_identifier] = ACTIONS(1397), - [anon_sym_LF] = ACTIONS(1399), - [anon_sym_def] = ACTIONS(1397), - [anon_sym_export_DASHenv] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_source] = ACTIONS(1397), - [anon_sym_source_DASHenv] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_hide] = ACTIONS(1397), - [anon_sym_hide_DASHenv] = ACTIONS(1397), - [anon_sym_overlay] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_not] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [aux_sym__val_number_decimal_token1] = ACTIONS(1397), - [aux_sym__val_number_token1] = ACTIONS(1397), - [aux_sym__val_number_token2] = ACTIONS(1397), - [aux_sym__val_number_token3] = ACTIONS(1397), - [aux_sym__val_number_token4] = ACTIONS(1397), - [aux_sym__val_number_token5] = ACTIONS(1397), - [aux_sym__val_number_token6] = ACTIONS(1397), - [anon_sym_0b] = ACTIONS(1397), - [anon_sym_0o] = ACTIONS(1397), - [anon_sym_0x] = ACTIONS(1397), - [sym_val_date] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym__str_single_quotes] = ACTIONS(1397), - [sym__str_back_ticks] = ACTIONS(1397), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1397), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(105), - }, - [1775] = { - [sym_comment] = STATE(1775), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(105), - }, - [1776] = { - [sym_comment] = STATE(1776), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1005), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [aux_sym__val_number_token4] = ACTIONS(1005), - [aux_sym__val_number_token5] = ACTIONS(1005), - [aux_sym__val_number_token6] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(105), - }, - [1777] = { - [sym_comment] = STATE(1777), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1778] = { - [sym_comment] = STATE(1778), - [ts_builtin_sym_end] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_alias] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_DASHenv] = ACTIONS(2986), - [anon_sym_mut] = ACTIONS(2986), - [anon_sym_const] = ACTIONS(2986), - [anon_sym_SEMI] = ACTIONS(2986), - [sym_cmd_identifier] = ACTIONS(2986), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_def] = ACTIONS(2986), - [anon_sym_export_DASHenv] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_error] = ACTIONS(2986), - [anon_sym_DASH_DASH] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_loop] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_source] = ACTIONS(2986), - [anon_sym_source_DASHenv] = ACTIONS(2986), - [anon_sym_register] = ACTIONS(2986), - [anon_sym_hide] = ACTIONS(2986), - [anon_sym_hide_DASHenv] = ACTIONS(2986), - [anon_sym_overlay] = ACTIONS(2986), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_where] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_not] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym__val_number_decimal_token1] = ACTIONS(2986), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2986), - [aux_sym__val_number_token5] = ACTIONS(2986), - [aux_sym__val_number_token6] = ACTIONS(2986), - [anon_sym_0b] = ACTIONS(2986), - [anon_sym_0o] = ACTIONS(2986), - [anon_sym_0x] = ACTIONS(2986), - [sym_val_date] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [sym__str_single_quotes] = ACTIONS(2986), - [sym__str_back_ticks] = ACTIONS(2986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(105), - }, - [1779] = { - [sym__expression] = STATE(7730), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(7731), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), - [sym_comment] = STATE(1779), - [ts_builtin_sym_end] = ACTIONS(4434), - [anon_sym_SEMI] = ACTIONS(4432), - [anon_sym_LF] = ACTIONS(4434), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4432), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), - }, [1780] = { + [sym_block] = STATE(2095), [sym_comment] = STATE(1780), - [ts_builtin_sym_end] = ACTIONS(3836), - [anon_sym_export] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3834), - [anon_sym_let] = ACTIONS(3834), - [anon_sym_let_DASHenv] = ACTIONS(3834), - [anon_sym_mut] = ACTIONS(3834), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_SEMI] = ACTIONS(3834), - [sym_cmd_identifier] = ACTIONS(3834), - [anon_sym_LF] = ACTIONS(3836), - [anon_sym_def] = ACTIONS(3834), - [anon_sym_export_DASHenv] = ACTIONS(3834), - [anon_sym_extern] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3834), - [anon_sym_use] = ACTIONS(3834), - [anon_sym_LBRACK] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_error] = ACTIONS(3834), - [anon_sym_DASH_DASH] = ACTIONS(3834), - [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_break] = ACTIONS(3834), - [anon_sym_continue] = ACTIONS(3834), - [anon_sym_for] = ACTIONS(3834), - [anon_sym_loop] = ACTIONS(3834), - [anon_sym_while] = ACTIONS(3834), - [anon_sym_do] = ACTIONS(3834), - [anon_sym_if] = ACTIONS(3834), - [anon_sym_match] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3834), - [anon_sym_try] = ACTIONS(3834), - [anon_sym_return] = ACTIONS(3834), - [anon_sym_source] = ACTIONS(3834), - [anon_sym_source_DASHenv] = ACTIONS(3834), - [anon_sym_register] = ACTIONS(3834), - [anon_sym_hide] = ACTIONS(3834), - [anon_sym_hide_DASHenv] = ACTIONS(3834), - [anon_sym_overlay] = ACTIONS(3834), - [anon_sym_as] = ACTIONS(3834), - [anon_sym_where] = ACTIONS(3834), - [anon_sym_PLUS] = ACTIONS(3834), - [anon_sym_not] = ACTIONS(3834), - [anon_sym_null] = ACTIONS(3834), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [aux_sym__val_number_decimal_token1] = ACTIONS(3834), - [aux_sym__val_number_token1] = ACTIONS(3834), - [aux_sym__val_number_token2] = ACTIONS(3834), - [aux_sym__val_number_token3] = ACTIONS(3834), - [aux_sym__val_number_token4] = ACTIONS(3834), - [aux_sym__val_number_token5] = ACTIONS(3834), - [aux_sym__val_number_token6] = ACTIONS(3834), - [anon_sym_0b] = ACTIONS(3834), - [anon_sym_0o] = ACTIONS(3834), - [anon_sym_0x] = ACTIONS(3834), - [sym_val_date] = ACTIONS(3834), - [anon_sym_DQUOTE] = ACTIONS(3834), - [sym__str_single_quotes] = ACTIONS(3834), - [sym__str_back_ticks] = ACTIONS(3834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3834), - [anon_sym_CARET] = ACTIONS(3834), + [anon_sym_export] = ACTIONS(4538), + [anon_sym_alias] = ACTIONS(4538), + [anon_sym_let] = ACTIONS(4538), + [anon_sym_let_DASHenv] = ACTIONS(4538), + [anon_sym_mut] = ACTIONS(4538), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4538), + [sym_cmd_identifier] = ACTIONS(4538), + [anon_sym_LF] = ACTIONS(4540), + [anon_sym_def] = ACTIONS(4538), + [anon_sym_export_DASHenv] = ACTIONS(4538), + [anon_sym_extern] = ACTIONS(4538), + [anon_sym_module] = ACTIONS(4538), + [anon_sym_use] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4538), + [anon_sym_error] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_loop] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_do] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_source] = ACTIONS(4538), + [anon_sym_source_DASHenv] = ACTIONS(4538), + [anon_sym_register] = ACTIONS(4538), + [anon_sym_hide] = ACTIONS(4538), + [anon_sym_hide_DASHenv] = ACTIONS(4538), + [anon_sym_overlay] = ACTIONS(4538), + [anon_sym_where] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [aux_sym__val_number_decimal_token1] = ACTIONS(4538), + [aux_sym__val_number_token1] = ACTIONS(4538), + [aux_sym__val_number_token2] = ACTIONS(4538), + [aux_sym__val_number_token3] = ACTIONS(4538), + [aux_sym__val_number_token4] = ACTIONS(4538), + [aux_sym__val_number_token5] = ACTIONS(4538), + [aux_sym__val_number_token6] = ACTIONS(4538), + [anon_sym_0b] = ACTIONS(4538), + [anon_sym_0o] = ACTIONS(4538), + [anon_sym_0x] = ACTIONS(4538), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4538), + [sym__str_single_quotes] = ACTIONS(4538), + [sym__str_back_ticks] = ACTIONS(4538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4538), [anon_sym_POUND] = ACTIONS(105), }, [1781] = { + [sym_block] = STATE(2104), [sym_comment] = STATE(1781), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4609), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(4438), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(4538), + [anon_sym_alias] = ACTIONS(4538), + [anon_sym_let] = ACTIONS(4538), + [anon_sym_let_DASHenv] = ACTIONS(4538), + [anon_sym_mut] = ACTIONS(4538), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4538), + [sym_cmd_identifier] = ACTIONS(4538), + [anon_sym_LF] = ACTIONS(4540), + [anon_sym_def] = ACTIONS(4538), + [anon_sym_export_DASHenv] = ACTIONS(4538), + [anon_sym_extern] = ACTIONS(4538), + [anon_sym_module] = ACTIONS(4538), + [anon_sym_use] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_LPAREN] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(4538), + [anon_sym_error] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_loop] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_do] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_match] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_DOT] = ACTIONS(4538), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_source] = ACTIONS(4538), + [anon_sym_source_DASHenv] = ACTIONS(4538), + [anon_sym_register] = ACTIONS(4538), + [anon_sym_hide] = ACTIONS(4538), + [anon_sym_hide_DASHenv] = ACTIONS(4538), + [anon_sym_overlay] = ACTIONS(4538), + [anon_sym_where] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4538), + [anon_sym_true] = ACTIONS(4538), + [anon_sym_false] = ACTIONS(4538), + [aux_sym__val_number_decimal_token1] = ACTIONS(4538), + [aux_sym__val_number_token1] = ACTIONS(4538), + [aux_sym__val_number_token2] = ACTIONS(4538), + [aux_sym__val_number_token3] = ACTIONS(4538), + [aux_sym__val_number_token4] = ACTIONS(4538), + [aux_sym__val_number_token5] = ACTIONS(4538), + [aux_sym__val_number_token6] = ACTIONS(4538), + [anon_sym_0b] = ACTIONS(4538), + [anon_sym_0o] = ACTIONS(4538), + [anon_sym_0x] = ACTIONS(4538), + [sym_val_date] = ACTIONS(4538), + [anon_sym_DQUOTE] = ACTIONS(4538), + [sym__str_single_quotes] = ACTIONS(4538), + [sym__str_back_ticks] = ACTIONS(4538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4538), + [anon_sym_CARET] = ACTIONS(4538), [anon_sym_POUND] = ACTIONS(105), }, [1782] = { - [sym_expr_parenthesized] = STATE(3843), - [sym__immediate_decimal] = STATE(3844), - [sym_val_variable] = STATE(3843), - [sym__var] = STATE(2585), [sym_comment] = STATE(1782), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(4612), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_list] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_make] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(1787), - [anon_sym_DOT2] = ACTIONS(4616), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_catch] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_EQ2] = ACTIONS(4618), - [aux_sym__immediate_decimal_token1] = ACTIONS(4620), - [anon_sym_DASH2] = ACTIONS(4622), - [anon_sym_PLUS2] = ACTIONS(4624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1789), - [aux_sym__val_number_token2] = ACTIONS(1789), - [aux_sym__val_number_token3] = ACTIONS(1789), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1789), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1789), - [sym__str_single_quotes] = ACTIONS(1789), - [sym__str_back_ticks] = ACTIONS(1789), - [aux_sym__record_key_token2] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(105), }, [1783] = { - [sym_expr_parenthesized] = STATE(3845), - [sym__immediate_decimal] = STATE(3851), - [sym_val_variable] = STATE(3845), - [sym__var] = STATE(2585), [sym_comment] = STATE(1783), - [anon_sym_export] = ACTIONS(1805), - [anon_sym_alias] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_let_DASHenv] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [sym_cmd_identifier] = ACTIONS(1805), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_export_DASHenv] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_module] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(4612), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1805), - [anon_sym_list] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_make] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_do] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT2] = ACTIONS(4616), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_catch] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_source] = ACTIONS(1805), - [anon_sym_source_DASHenv] = ACTIONS(1805), - [anon_sym_register] = ACTIONS(1805), - [anon_sym_hide] = ACTIONS(1805), - [anon_sym_hide_DASHenv] = ACTIONS(1805), - [anon_sym_overlay] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_EQ2] = ACTIONS(4628), - [aux_sym__immediate_decimal_token1] = ACTIONS(4620), - [anon_sym_DASH2] = ACTIONS(4622), - [anon_sym_PLUS2] = ACTIONS(4624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1805), - [aux_sym__val_number_token1] = ACTIONS(1807), - [aux_sym__val_number_token2] = ACTIONS(1807), - [aux_sym__val_number_token3] = ACTIONS(1807), - [aux_sym__val_number_token4] = ACTIONS(1805), - [aux_sym__val_number_token5] = ACTIONS(1807), - [aux_sym__val_number_token6] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1807), - [sym__str_single_quotes] = ACTIONS(1807), - [sym__str_back_ticks] = ACTIONS(1807), - [aux_sym__record_key_token2] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(4297), + [anon_sym_export] = ACTIONS(4295), + [anon_sym_alias] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4295), + [anon_sym_let_DASHenv] = ACTIONS(4295), + [anon_sym_mut] = ACTIONS(4295), + [anon_sym_const] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4295), + [sym_cmd_identifier] = ACTIONS(4295), + [anon_sym_LF] = ACTIONS(4297), + [anon_sym_def] = ACTIONS(4295), + [anon_sym_export_DASHenv] = ACTIONS(4295), + [anon_sym_extern] = ACTIONS(4295), + [anon_sym_module] = ACTIONS(4295), + [anon_sym_use] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4295), + [anon_sym_error] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_for] = ACTIONS(4295), + [anon_sym_loop] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_do] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_match] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_source] = ACTIONS(4295), + [anon_sym_source_DASHenv] = ACTIONS(4295), + [anon_sym_register] = ACTIONS(4295), + [anon_sym_hide] = ACTIONS(4295), + [anon_sym_hide_DASHenv] = ACTIONS(4295), + [anon_sym_overlay] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_not] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [aux_sym__val_number_decimal_token1] = ACTIONS(4295), + [aux_sym__val_number_token1] = ACTIONS(4295), + [aux_sym__val_number_token2] = ACTIONS(4295), + [aux_sym__val_number_token3] = ACTIONS(4295), + [aux_sym__val_number_token4] = ACTIONS(4295), + [aux_sym__val_number_token5] = ACTIONS(4295), + [aux_sym__val_number_token6] = ACTIONS(4295), + [anon_sym_0b] = ACTIONS(4295), + [anon_sym_0o] = ACTIONS(4295), + [anon_sym_0x] = ACTIONS(4295), + [sym_val_date] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4295), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_POUND] = ACTIONS(105), }, [1784] = { - [sym_expr_parenthesized] = STATE(3858), - [sym__immediate_decimal] = STATE(3823), - [sym_val_variable] = STATE(3858), - [sym__var] = STATE(2585), [sym_comment] = STATE(1784), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1813), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(4612), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_list] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_make] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT2] = ACTIONS(4616), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_catch] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_EQ2] = ACTIONS(4632), - [aux_sym__immediate_decimal_token1] = ACTIONS(4620), - [anon_sym_DASH2] = ACTIONS(4622), - [anon_sym_PLUS2] = ACTIONS(4624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1813), - [aux_sym__val_number_token1] = ACTIONS(1815), - [aux_sym__val_number_token2] = ACTIONS(1815), - [aux_sym__val_number_token3] = ACTIONS(1815), - [aux_sym__val_number_token4] = ACTIONS(1813), - [aux_sym__val_number_token5] = ACTIONS(1815), - [aux_sym__val_number_token6] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1815), - [sym__str_single_quotes] = ACTIONS(1815), - [sym__str_back_ticks] = ACTIONS(1815), - [aux_sym__record_key_token2] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(4542), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), + [anon_sym_POUND] = ACTIONS(105), }, [1785] = { [sym_comment] = STATE(1785), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_DOT2] = ACTIONS(4634), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token2] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1786] = { [sym_comment] = STATE(1786), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(807), - [anon_sym_mod] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_LT2] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_not_DASHin] = ACTIONS(807), - [anon_sym_starts_DASHwith] = ACTIONS(807), - [anon_sym_ends_DASHwith] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(807), - [anon_sym_bit_DASHand] = ACTIONS(807), - [anon_sym_bit_DASHxor] = ACTIONS(807), - [anon_sym_bit_DASHor] = ACTIONS(807), - [anon_sym_and] = ACTIONS(807), - [anon_sym_xor] = ACTIONS(807), - [anon_sym_or] = ACTIONS(807), - [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(4283), - [anon_sym_null] = ACTIONS(807), - [anon_sym_true] = ACTIONS(807), - [anon_sym_false] = ACTIONS(807), - [aux_sym__val_number_decimal_token1] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(807), - [aux_sym__val_number_token2] = ACTIONS(807), - [aux_sym__val_number_token3] = ACTIONS(807), - [aux_sym__val_number_token4] = ACTIONS(807), - [aux_sym__val_number_token5] = ACTIONS(807), - [aux_sym__val_number_token6] = ACTIONS(807), - [sym_filesize_unit] = ACTIONS(807), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_0b] = ACTIONS(807), - [anon_sym_0o] = ACTIONS(807), - [anon_sym_0x] = ACTIONS(807), - [sym_val_date] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [sym__str_single_quotes] = ACTIONS(807), - [sym__str_back_ticks] = ACTIONS(807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), - [aux_sym_unquoted_token6] = ACTIONS(807), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT2] = ACTIONS(1219), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1787] = { + [sym__expression] = STATE(7669), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1835), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1787), - [ts_builtin_sym_end] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1113), - [anon_sym_alias] = ACTIONS(1113), - [anon_sym_let] = ACTIONS(1113), - [anon_sym_let_DASHenv] = ACTIONS(1113), - [anon_sym_mut] = ACTIONS(1113), - [anon_sym_const] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_def] = ACTIONS(1113), - [anon_sym_export_DASHenv] = ACTIONS(1113), - [anon_sym_extern] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_use] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_error] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_loop] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_source] = ACTIONS(1113), - [anon_sym_source_DASHenv] = ACTIONS(1113), - [anon_sym_register] = ACTIONS(1113), - [anon_sym_hide] = ACTIONS(1113), - [anon_sym_hide_DASHenv] = ACTIONS(1113), - [anon_sym_overlay] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_where] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_not] = ACTIONS(1113), - [anon_sym_null] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1113), - [aux_sym__val_number_decimal_token1] = ACTIONS(1113), - [aux_sym__val_number_token1] = ACTIONS(1113), - [aux_sym__val_number_token2] = ACTIONS(1113), - [aux_sym__val_number_token3] = ACTIONS(1113), - [aux_sym__val_number_token4] = ACTIONS(1113), - [aux_sym__val_number_token5] = ACTIONS(1113), - [aux_sym__val_number_token6] = ACTIONS(1113), - [anon_sym_0b] = ACTIONS(1113), - [anon_sym_0o] = ACTIONS(1113), - [anon_sym_0x] = ACTIONS(1113), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym__str_single_quotes] = ACTIONS(1113), - [sym__str_back_ticks] = ACTIONS(1113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1788] = { - [sym_expr_parenthesized] = STATE(3736), - [sym__immediate_decimal] = STATE(3748), - [sym_val_variable] = STATE(3736), - [sym__var] = STATE(2585), [sym_comment] = STATE(1788), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [sym_cmd_identifier] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(4612), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_list] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(4638), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_in] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_make] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1821), - [anon_sym_DOT2] = ACTIONS(4616), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_catch] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1821), - [anon_sym_as] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_EQ2] = ACTIONS(4640), - [aux_sym__immediate_decimal_token1] = ACTIONS(4620), - [anon_sym_DASH2] = ACTIONS(4622), - [anon_sym_PLUS2] = ACTIONS(4624), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_token1] = ACTIONS(1823), - [aux_sym__val_number_token2] = ACTIONS(1823), - [aux_sym__val_number_token3] = ACTIONS(1823), - [aux_sym__val_number_token4] = ACTIONS(1821), - [aux_sym__val_number_token5] = ACTIONS(1823), - [aux_sym__val_number_token6] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym__str_single_quotes] = ACTIONS(1823), - [sym__str_back_ticks] = ACTIONS(1823), - [aux_sym__record_key_token2] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(105), }, [1789] = { + [sym__expression] = STATE(7669), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1836), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1789), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_in] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_DOT] = ACTIONS(815), - [anon_sym_DOT2] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_mod] = ACTIONS(815), - [anon_sym_SLASH_SLASH] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_bit_DASHshl] = ACTIONS(815), - [anon_sym_bit_DASHshr] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_not_DASHin] = ACTIONS(815), - [anon_sym_starts_DASHwith] = ACTIONS(815), - [anon_sym_ends_DASHwith] = ACTIONS(815), - [anon_sym_EQ_TILDE] = ACTIONS(815), - [anon_sym_BANG_TILDE] = ACTIONS(815), - [anon_sym_bit_DASHand] = ACTIONS(815), - [anon_sym_bit_DASHxor] = ACTIONS(815), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(815), - [anon_sym_xor] = ACTIONS(815), - [anon_sym_or] = ACTIONS(815), - [anon_sym_not] = ACTIONS(815), - [aux_sym__immediate_decimal_token2] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(815), - [anon_sym_true] = ACTIONS(815), - [anon_sym_false] = ACTIONS(815), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_token1] = ACTIONS(815), - [aux_sym__val_number_token2] = ACTIONS(815), - [aux_sym__val_number_token3] = ACTIONS(815), - [aux_sym__val_number_token4] = ACTIONS(815), - [aux_sym__val_number_token5] = ACTIONS(815), - [aux_sym__val_number_token6] = ACTIONS(815), - [sym_filesize_unit] = ACTIONS(815), - [sym_duration_unit] = ACTIONS(815), - [anon_sym_0b] = ACTIONS(815), - [anon_sym_0o] = ACTIONS(815), - [anon_sym_0x] = ACTIONS(815), - [sym_val_date] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(815), - [sym__str_single_quotes] = ACTIONS(815), - [sym__str_back_ticks] = ACTIONS(815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), - [aux_sym_unquoted_token6] = ACTIONS(815), + [ts_builtin_sym_end] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1790] = { [sym_comment] = STATE(1790), - [ts_builtin_sym_end] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_alias] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_DASHenv] = ACTIONS(2996), - [anon_sym_mut] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [sym_cmd_identifier] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_export_DASHenv] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_error] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_source] = ACTIONS(2996), - [anon_sym_source_DASHenv] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_hide] = ACTIONS(2996), - [anon_sym_hide_DASHenv] = ACTIONS(2996), - [anon_sym_overlay] = ACTIONS(2996), - [anon_sym_where] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [aux_sym__immediate_decimal_token1] = ACTIONS(4642), - [aux_sym__immediate_decimal_token2] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [aux_sym__val_number_decimal_token1] = ACTIONS(2996), - [aux_sym__val_number_token1] = ACTIONS(2996), - [aux_sym__val_number_token2] = ACTIONS(2996), - [aux_sym__val_number_token3] = ACTIONS(2996), - [aux_sym__val_number_token4] = ACTIONS(2996), - [aux_sym__val_number_token5] = ACTIONS(2996), - [aux_sym__val_number_token6] = ACTIONS(2996), - [anon_sym_0b] = ACTIONS(2996), - [anon_sym_0o] = ACTIONS(2996), - [anon_sym_0x] = ACTIONS(2996), - [sym_val_date] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [sym__str_single_quotes] = ACTIONS(2996), - [sym__str_back_ticks] = ACTIONS(2996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_CARET] = ACTIONS(2996), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(4581), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1791] = { [sym_comment] = STATE(1791), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_alias] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_let_DASHenv] = ACTIONS(1098), - [anon_sym_mut] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [sym_cmd_identifier] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1100), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_export_DASHenv] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [anon_sym_error] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_source] = ACTIONS(1098), - [anon_sym_source_DASHenv] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_hide] = ACTIONS(1098), - [anon_sym_hide_DASHenv] = ACTIONS(1098), - [anon_sym_overlay] = ACTIONS(1098), - [anon_sym_as] = ACTIONS(1098), - [anon_sym_where] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [aux_sym__val_number_decimal_token1] = ACTIONS(1098), - [aux_sym__val_number_token1] = ACTIONS(1098), - [aux_sym__val_number_token2] = ACTIONS(1098), - [aux_sym__val_number_token3] = ACTIONS(1098), - [aux_sym__val_number_token4] = ACTIONS(1098), - [aux_sym__val_number_token5] = ACTIONS(1098), - [aux_sym__val_number_token6] = ACTIONS(1098), - [anon_sym_0b] = ACTIONS(1098), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym__str_single_quotes] = ACTIONS(1098), - [sym__str_back_ticks] = ACTIONS(1098), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3929), + [anon_sym_alias] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_DASHenv] = ACTIONS(3929), + [anon_sym_mut] = ACTIONS(3929), + [anon_sym_const] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3929), + [sym_cmd_identifier] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3931), + [anon_sym_def] = ACTIONS(3929), + [anon_sym_export_DASHenv] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_error] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_break] = ACTIONS(3929), + [anon_sym_continue] = ACTIONS(3929), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_loop] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_source] = ACTIONS(3929), + [anon_sym_source_DASHenv] = ACTIONS(3929), + [anon_sym_register] = ACTIONS(3929), + [anon_sym_hide] = ACTIONS(3929), + [anon_sym_hide_DASHenv] = ACTIONS(3929), + [anon_sym_overlay] = ACTIONS(3929), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_where] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_not] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3929), + [anon_sym_false] = ACTIONS(3929), + [aux_sym__val_number_decimal_token1] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3929), + [aux_sym__val_number_token2] = ACTIONS(3929), + [aux_sym__val_number_token3] = ACTIONS(3929), + [aux_sym__val_number_token4] = ACTIONS(3929), + [aux_sym__val_number_token5] = ACTIONS(3929), + [aux_sym__val_number_token6] = ACTIONS(3929), + [anon_sym_0b] = ACTIONS(3929), + [anon_sym_0o] = ACTIONS(3929), + [anon_sym_0x] = ACTIONS(3929), + [sym_val_date] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3929), + [sym__str_back_ticks] = ACTIONS(3929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), [anon_sym_POUND] = ACTIONS(105), }, [1792] = { [sym_comment] = STATE(1792), - [ts_builtin_sym_end] = ACTIONS(3890), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_alias] = ACTIONS(3888), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_let_DASHenv] = ACTIONS(3888), - [anon_sym_mut] = ACTIONS(3888), - [anon_sym_const] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3888), - [sym_cmd_identifier] = ACTIONS(3888), - [anon_sym_LF] = ACTIONS(3890), - [anon_sym_def] = ACTIONS(3888), - [anon_sym_export_DASHenv] = ACTIONS(3888), - [anon_sym_extern] = ACTIONS(3888), - [anon_sym_module] = ACTIONS(3888), - [anon_sym_use] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3888), - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_DOLLAR] = ACTIONS(3888), - [anon_sym_error] = ACTIONS(3888), - [anon_sym_DASH_DASH] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_break] = ACTIONS(3888), - [anon_sym_continue] = ACTIONS(3888), - [anon_sym_for] = ACTIONS(3888), - [anon_sym_loop] = ACTIONS(3888), - [anon_sym_while] = ACTIONS(3888), - [anon_sym_do] = ACTIONS(3888), - [anon_sym_if] = ACTIONS(3888), - [anon_sym_match] = ACTIONS(3888), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_DOT] = ACTIONS(3888), - [anon_sym_try] = ACTIONS(3888), - [anon_sym_return] = ACTIONS(3888), - [anon_sym_source] = ACTIONS(3888), - [anon_sym_source_DASHenv] = ACTIONS(3888), - [anon_sym_register] = ACTIONS(3888), - [anon_sym_hide] = ACTIONS(3888), - [anon_sym_hide_DASHenv] = ACTIONS(3888), - [anon_sym_overlay] = ACTIONS(3888), - [anon_sym_as] = ACTIONS(3888), - [anon_sym_where] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_not] = ACTIONS(3888), - [anon_sym_null] = ACTIONS(3888), - [anon_sym_true] = ACTIONS(3888), - [anon_sym_false] = ACTIONS(3888), - [aux_sym__val_number_decimal_token1] = ACTIONS(3888), - [aux_sym__val_number_token1] = ACTIONS(3888), - [aux_sym__val_number_token2] = ACTIONS(3888), - [aux_sym__val_number_token3] = ACTIONS(3888), - [aux_sym__val_number_token4] = ACTIONS(3888), - [aux_sym__val_number_token5] = ACTIONS(3888), - [aux_sym__val_number_token6] = ACTIONS(3888), - [anon_sym_0b] = ACTIONS(3888), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3888), - [anon_sym_DQUOTE] = ACTIONS(3888), - [sym__str_single_quotes] = ACTIONS(3888), - [sym__str_back_ticks] = ACTIONS(3888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), + [ts_builtin_sym_end] = ACTIONS(4250), + [anon_sym_export] = ACTIONS(4248), + [anon_sym_alias] = ACTIONS(4248), + [anon_sym_let] = ACTIONS(4248), + [anon_sym_let_DASHenv] = ACTIONS(4248), + [anon_sym_mut] = ACTIONS(4248), + [anon_sym_const] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4248), + [sym_cmd_identifier] = ACTIONS(4248), + [anon_sym_LF] = ACTIONS(4250), + [anon_sym_def] = ACTIONS(4248), + [anon_sym_export_DASHenv] = ACTIONS(4248), + [anon_sym_extern] = ACTIONS(4248), + [anon_sym_module] = ACTIONS(4248), + [anon_sym_use] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4248), + [anon_sym_DOLLAR] = ACTIONS(4248), + [anon_sym_error] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_for] = ACTIONS(4248), + [anon_sym_loop] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_do] = ACTIONS(4248), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_match] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_source] = ACTIONS(4248), + [anon_sym_source_DASHenv] = ACTIONS(4248), + [anon_sym_register] = ACTIONS(4248), + [anon_sym_hide] = ACTIONS(4248), + [anon_sym_hide_DASHenv] = ACTIONS(4248), + [anon_sym_overlay] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_not] = ACTIONS(4248), + [anon_sym_null] = ACTIONS(4248), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [aux_sym__val_number_decimal_token1] = ACTIONS(4248), + [aux_sym__val_number_token1] = ACTIONS(4248), + [aux_sym__val_number_token2] = ACTIONS(4248), + [aux_sym__val_number_token3] = ACTIONS(4248), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4248), + [anon_sym_0o] = ACTIONS(4248), + [anon_sym_0x] = ACTIONS(4248), + [sym_val_date] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym__str_single_quotes] = ACTIONS(4248), + [sym__str_back_ticks] = ACTIONS(4248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4248), + [anon_sym_CARET] = ACTIONS(4248), [anon_sym_POUND] = ACTIONS(105), }, [1793] = { [sym_comment] = STATE(1793), - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(4257), + [anon_sym_export] = ACTIONS(4255), + [anon_sym_alias] = ACTIONS(4255), + [anon_sym_let] = ACTIONS(4255), + [anon_sym_let_DASHenv] = ACTIONS(4255), + [anon_sym_mut] = ACTIONS(4255), + [anon_sym_const] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [sym_cmd_identifier] = ACTIONS(4255), + [anon_sym_LF] = ACTIONS(4257), + [anon_sym_def] = ACTIONS(4255), + [anon_sym_export_DASHenv] = ACTIONS(4255), + [anon_sym_extern] = ACTIONS(4255), + [anon_sym_module] = ACTIONS(4255), + [anon_sym_use] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_error] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_for] = ACTIONS(4255), + [anon_sym_loop] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_do] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_match] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_source] = ACTIONS(4255), + [anon_sym_source_DASHenv] = ACTIONS(4255), + [anon_sym_register] = ACTIONS(4255), + [anon_sym_hide] = ACTIONS(4255), + [anon_sym_hide_DASHenv] = ACTIONS(4255), + [anon_sym_overlay] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_not] = ACTIONS(4255), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [aux_sym__val_number_decimal_token1] = ACTIONS(4255), + [aux_sym__val_number_token1] = ACTIONS(4255), + [aux_sym__val_number_token2] = ACTIONS(4255), + [aux_sym__val_number_token3] = ACTIONS(4255), + [aux_sym__val_number_token4] = ACTIONS(4255), + [aux_sym__val_number_token5] = ACTIONS(4255), + [aux_sym__val_number_token6] = ACTIONS(4255), + [anon_sym_0b] = ACTIONS(4255), + [anon_sym_0o] = ACTIONS(4255), + [anon_sym_0x] = ACTIONS(4255), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4255), + [sym__str_back_ticks] = ACTIONS(4255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4255), + [anon_sym_CARET] = ACTIONS(4255), [anon_sym_POUND] = ACTIONS(105), }, [1794] = { - [sym__expression] = STATE(7750), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1794), - [ts_builtin_sym_end] = ACTIONS(4103), - [anon_sym_SEMI] = ACTIONS(4101), - [anon_sym_LF] = ACTIONS(4103), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4101), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(3891), + [anon_sym_export] = ACTIONS(3887), + [anon_sym_alias] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_let_DASHenv] = ACTIONS(3887), + [anon_sym_mut] = ACTIONS(3887), + [anon_sym_const] = ACTIONS(3887), + [anon_sym_SEMI] = ACTIONS(3887), + [sym_cmd_identifier] = ACTIONS(3887), + [anon_sym_LF] = ACTIONS(3891), + [anon_sym_def] = ACTIONS(3887), + [anon_sym_export_DASHenv] = ACTIONS(3887), + [anon_sym_extern] = ACTIONS(3887), + [anon_sym_module] = ACTIONS(3887), + [anon_sym_use] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3887), + [anon_sym_DOLLAR] = ACTIONS(3887), + [anon_sym_error] = ACTIONS(3887), + [anon_sym_DASH_DASH] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_loop] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_do] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_source] = ACTIONS(3887), + [anon_sym_source_DASHenv] = ACTIONS(3887), + [anon_sym_register] = ACTIONS(3887), + [anon_sym_hide] = ACTIONS(3887), + [anon_sym_hide_DASHenv] = ACTIONS(3887), + [anon_sym_overlay] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_not] = ACTIONS(3887), + [anon_sym_null] = ACTIONS(3887), + [anon_sym_true] = ACTIONS(3887), + [anon_sym_false] = ACTIONS(3887), + [aux_sym__val_number_decimal_token1] = ACTIONS(3887), + [aux_sym__val_number_token1] = ACTIONS(3887), + [aux_sym__val_number_token2] = ACTIONS(3887), + [aux_sym__val_number_token3] = ACTIONS(3887), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3887), + [anon_sym_0o] = ACTIONS(3887), + [anon_sym_0x] = ACTIONS(3887), + [sym_val_date] = ACTIONS(3887), + [anon_sym_DQUOTE] = ACTIONS(3887), + [sym__str_single_quotes] = ACTIONS(3887), + [sym__str_back_ticks] = ACTIONS(3887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3887), [anon_sym_POUND] = ACTIONS(105), }, [1795] = { [sym_comment] = STATE(1795), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_cmd_identifier] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_not] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__str_single_quotes] = ACTIONS(1294), - [sym__str_back_ticks] = ACTIONS(1294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(4281), + [anon_sym_export] = ACTIONS(4279), + [anon_sym_alias] = ACTIONS(4279), + [anon_sym_let] = ACTIONS(4279), + [anon_sym_let_DASHenv] = ACTIONS(4279), + [anon_sym_mut] = ACTIONS(4279), + [anon_sym_const] = ACTIONS(4279), + [anon_sym_SEMI] = ACTIONS(4279), + [sym_cmd_identifier] = ACTIONS(4279), + [anon_sym_LF] = ACTIONS(4281), + [anon_sym_def] = ACTIONS(4279), + [anon_sym_export_DASHenv] = ACTIONS(4279), + [anon_sym_extern] = ACTIONS(4279), + [anon_sym_module] = ACTIONS(4279), + [anon_sym_use] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4279), + [anon_sym_DOLLAR] = ACTIONS(4279), + [anon_sym_error] = ACTIONS(4279), + [anon_sym_DASH_DASH] = ACTIONS(4279), + [anon_sym_DASH] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_loop] = ACTIONS(4279), + [anon_sym_while] = ACTIONS(4279), + [anon_sym_do] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_try] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_source] = ACTIONS(4279), + [anon_sym_source_DASHenv] = ACTIONS(4279), + [anon_sym_register] = ACTIONS(4279), + [anon_sym_hide] = ACTIONS(4279), + [anon_sym_hide_DASHenv] = ACTIONS(4279), + [anon_sym_overlay] = ACTIONS(4279), + [anon_sym_as] = ACTIONS(4279), + [anon_sym_where] = ACTIONS(4279), + [anon_sym_PLUS] = ACTIONS(4279), + [anon_sym_not] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4279), + [anon_sym_true] = ACTIONS(4279), + [anon_sym_false] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4279), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(4279), + [anon_sym_0o] = ACTIONS(4279), + [anon_sym_0x] = ACTIONS(4279), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4279), + [sym__str_single_quotes] = ACTIONS(4279), + [sym__str_back_ticks] = ACTIONS(4279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4279), + [anon_sym_CARET] = ACTIONS(4279), [anon_sym_POUND] = ACTIONS(105), }, [1796] = { [sym_comment] = STATE(1796), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT2] = ACTIONS(1261), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4490), + [anon_sym_alias] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_let_DASHenv] = ACTIONS(4490), + [anon_sym_mut] = ACTIONS(4490), + [anon_sym_const] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4490), + [sym_cmd_identifier] = ACTIONS(4490), + [anon_sym_LF] = ACTIONS(4492), + [anon_sym_def] = ACTIONS(4490), + [anon_sym_export_DASHenv] = ACTIONS(4490), + [anon_sym_extern] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + [anon_sym_use] = ACTIONS(4490), + [anon_sym_LBRACK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(4490), + [anon_sym_error] = ACTIONS(4490), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_loop] = ACTIONS(4490), + [anon_sym_while] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_try] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_source] = ACTIONS(4490), + [anon_sym_source_DASHenv] = ACTIONS(4490), + [anon_sym_register] = ACTIONS(4490), + [anon_sym_hide] = ACTIONS(4490), + [anon_sym_hide_DASHenv] = ACTIONS(4490), + [anon_sym_overlay] = ACTIONS(4490), + [anon_sym_as] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_not] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4490), + [anon_sym_true] = ACTIONS(4490), + [anon_sym_false] = ACTIONS(4490), + [aux_sym__val_number_decimal_token1] = ACTIONS(4490), + [aux_sym__val_number_token1] = ACTIONS(4490), + [aux_sym__val_number_token2] = ACTIONS(4490), + [aux_sym__val_number_token3] = ACTIONS(4490), + [aux_sym__val_number_token4] = ACTIONS(4490), + [aux_sym__val_number_token5] = ACTIONS(4490), + [aux_sym__val_number_token6] = ACTIONS(4490), + [anon_sym_0b] = ACTIONS(4490), + [anon_sym_0o] = ACTIONS(4490), + [anon_sym_0x] = ACTIONS(4490), + [sym_val_date] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym__str_single_quotes] = ACTIONS(4490), + [sym__str_back_ticks] = ACTIONS(4490), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4490), [anon_sym_POUND] = ACTIONS(105), }, [1797] = { [sym_comment] = STATE(1797), - [ts_builtin_sym_end] = ACTIONS(4396), - [anon_sym_export] = ACTIONS(4394), - [anon_sym_alias] = ACTIONS(4394), - [anon_sym_let] = ACTIONS(4394), - [anon_sym_let_DASHenv] = ACTIONS(4394), - [anon_sym_mut] = ACTIONS(4394), - [anon_sym_const] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4394), - [sym_cmd_identifier] = ACTIONS(4394), - [anon_sym_LF] = ACTIONS(4396), - [anon_sym_def] = ACTIONS(4394), - [anon_sym_export_DASHenv] = ACTIONS(4394), - [anon_sym_extern] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_use] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_DOLLAR] = ACTIONS(4394), - [anon_sym_error] = ACTIONS(4394), - [anon_sym_DASH_DASH] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_loop] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_match] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4394), - [anon_sym_DOT] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_source] = ACTIONS(4394), - [anon_sym_source_DASHenv] = ACTIONS(4394), - [anon_sym_register] = ACTIONS(4394), - [anon_sym_hide] = ACTIONS(4394), - [anon_sym_hide_DASHenv] = ACTIONS(4394), - [anon_sym_overlay] = ACTIONS(4394), - [anon_sym_as] = ACTIONS(4394), - [anon_sym_where] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_not] = ACTIONS(4394), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_true] = ACTIONS(4394), - [anon_sym_false] = ACTIONS(4394), - [aux_sym__val_number_decimal_token1] = ACTIONS(4394), - [aux_sym__val_number_token1] = ACTIONS(4394), - [aux_sym__val_number_token2] = ACTIONS(4394), - [aux_sym__val_number_token3] = ACTIONS(4394), - [aux_sym__val_number_token4] = ACTIONS(4394), - [aux_sym__val_number_token5] = ACTIONS(4394), - [aux_sym__val_number_token6] = ACTIONS(4394), - [anon_sym_0b] = ACTIONS(4394), - [anon_sym_0o] = ACTIONS(4394), - [anon_sym_0x] = ACTIONS(4394), - [sym_val_date] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(4394), - [sym__str_single_quotes] = ACTIONS(4394), - [sym__str_back_ticks] = ACTIONS(4394), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4394), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), - [anon_sym_CARET] = ACTIONS(4394), + [ts_builtin_sym_end] = ACTIONS(4305), + [anon_sym_export] = ACTIONS(4303), + [anon_sym_alias] = ACTIONS(4303), + [anon_sym_let] = ACTIONS(4303), + [anon_sym_let_DASHenv] = ACTIONS(4303), + [anon_sym_mut] = ACTIONS(4303), + [anon_sym_const] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [sym_cmd_identifier] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_def] = ACTIONS(4303), + [anon_sym_export_DASHenv] = ACTIONS(4303), + [anon_sym_extern] = ACTIONS(4303), + [anon_sym_module] = ACTIONS(4303), + [anon_sym_use] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_error] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_for] = ACTIONS(4303), + [anon_sym_loop] = ACTIONS(4303), + [anon_sym_while] = ACTIONS(4303), + [anon_sym_do] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_source] = ACTIONS(4303), + [anon_sym_source_DASHenv] = ACTIONS(4303), + [anon_sym_register] = ACTIONS(4303), + [anon_sym_hide] = ACTIONS(4303), + [anon_sym_hide_DASHenv] = ACTIONS(4303), + [anon_sym_overlay] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_not] = ACTIONS(4303), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [aux_sym__val_number_decimal_token1] = ACTIONS(4303), + [aux_sym__val_number_token1] = ACTIONS(4303), + [aux_sym__val_number_token2] = ACTIONS(4303), + [aux_sym__val_number_token3] = ACTIONS(4303), + [aux_sym__val_number_token4] = ACTIONS(4303), + [aux_sym__val_number_token5] = ACTIONS(4303), + [aux_sym__val_number_token6] = ACTIONS(4303), + [anon_sym_0b] = ACTIONS(4303), + [anon_sym_0o] = ACTIONS(4303), + [anon_sym_0x] = ACTIONS(4303), + [sym_val_date] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4303), + [sym__str_back_ticks] = ACTIONS(4303), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4303), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4303), [anon_sym_POUND] = ACTIONS(105), }, [1798] = { + [sym_expr_parenthesized] = STATE(3107), + [sym__immediate_decimal] = STATE(3108), + [sym_val_variable] = STATE(3107), + [sym__var] = STATE(2898), [sym_comment] = STATE(1798), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_alias] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_let_DASHenv] = ACTIONS(1971), + [anon_sym_mut] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [sym_cmd_identifier] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_export_DASHenv] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(1971), + [anon_sym_list] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_in] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_make] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_do] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_else] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_catch] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_source] = ACTIONS(1971), + [anon_sym_source_DASHenv] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1971), + [anon_sym_hide] = ACTIONS(1971), + [anon_sym_hide_DASHenv] = ACTIONS(1971), + [anon_sym_overlay] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_as] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_EQ2] = ACTIONS(4590), + [aux_sym__immediate_decimal_token1] = ACTIONS(4592), + [anon_sym_DASH2] = ACTIONS(4594), + [anon_sym_PLUS2] = ACTIONS(4596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1973), + [aux_sym__val_number_token2] = ACTIONS(1973), + [aux_sym__val_number_token3] = ACTIONS(1973), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [aux_sym__record_key_token2] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(3), + }, + [1799] = { + [sym_comment] = STATE(1799), + [ts_builtin_sym_end] = ACTIONS(4354), + [anon_sym_export] = ACTIONS(4352), + [anon_sym_alias] = ACTIONS(4352), + [anon_sym_let] = ACTIONS(4352), + [anon_sym_let_DASHenv] = ACTIONS(4352), + [anon_sym_mut] = ACTIONS(4352), + [anon_sym_const] = ACTIONS(4352), + [anon_sym_SEMI] = ACTIONS(4352), + [sym_cmd_identifier] = ACTIONS(4352), + [anon_sym_LF] = ACTIONS(4354), + [anon_sym_def] = ACTIONS(4352), + [anon_sym_export_DASHenv] = ACTIONS(4352), + [anon_sym_extern] = ACTIONS(4352), + [anon_sym_module] = ACTIONS(4352), + [anon_sym_use] = ACTIONS(4352), + [anon_sym_LBRACK] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4352), + [anon_sym_error] = ACTIONS(4352), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_break] = ACTIONS(4352), + [anon_sym_continue] = ACTIONS(4352), + [anon_sym_for] = ACTIONS(4352), + [anon_sym_loop] = ACTIONS(4352), + [anon_sym_while] = ACTIONS(4352), + [anon_sym_do] = ACTIONS(4352), + [anon_sym_if] = ACTIONS(4352), + [anon_sym_match] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(4352), + [anon_sym_try] = ACTIONS(4352), + [anon_sym_return] = ACTIONS(4352), + [anon_sym_source] = ACTIONS(4352), + [anon_sym_source_DASHenv] = ACTIONS(4352), + [anon_sym_register] = ACTIONS(4352), + [anon_sym_hide] = ACTIONS(4352), + [anon_sym_hide_DASHenv] = ACTIONS(4352), + [anon_sym_overlay] = ACTIONS(4352), + [anon_sym_as] = ACTIONS(4352), + [anon_sym_where] = ACTIONS(4352), + [anon_sym_PLUS] = ACTIONS(4352), + [anon_sym_not] = ACTIONS(4352), + [anon_sym_null] = ACTIONS(4352), + [anon_sym_true] = ACTIONS(4352), + [anon_sym_false] = ACTIONS(4352), + [aux_sym__val_number_decimal_token1] = ACTIONS(4352), + [aux_sym__val_number_token1] = ACTIONS(4352), + [aux_sym__val_number_token2] = ACTIONS(4352), + [aux_sym__val_number_token3] = ACTIONS(4352), + [aux_sym__val_number_token4] = ACTIONS(4352), + [aux_sym__val_number_token5] = ACTIONS(4352), + [aux_sym__val_number_token6] = ACTIONS(4352), + [anon_sym_0b] = ACTIONS(4352), + [anon_sym_0o] = ACTIONS(4352), + [anon_sym_0x] = ACTIONS(4352), + [sym_val_date] = ACTIONS(4352), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4352), + [sym__str_back_ticks] = ACTIONS(4352), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4352), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(4352), + [anon_sym_POUND] = ACTIONS(105), + }, + [1800] = { + [sym_comment] = STATE(1800), + [ts_builtin_sym_end] = ACTIONS(4366), + [anon_sym_export] = ACTIONS(4364), + [anon_sym_alias] = ACTIONS(4364), + [anon_sym_let] = ACTIONS(4364), + [anon_sym_let_DASHenv] = ACTIONS(4364), + [anon_sym_mut] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [sym_cmd_identifier] = ACTIONS(4364), + [anon_sym_LF] = ACTIONS(4366), + [anon_sym_def] = ACTIONS(4364), + [anon_sym_export_DASHenv] = ACTIONS(4364), + [anon_sym_extern] = ACTIONS(4364), + [anon_sym_module] = ACTIONS(4364), + [anon_sym_use] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(4364), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_DOLLAR] = ACTIONS(4364), + [anon_sym_error] = ACTIONS(4364), + [anon_sym_DASH_DASH] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4364), + [anon_sym_continue] = ACTIONS(4364), + [anon_sym_for] = ACTIONS(4364), + [anon_sym_loop] = ACTIONS(4364), + [anon_sym_while] = ACTIONS(4364), + [anon_sym_do] = ACTIONS(4364), + [anon_sym_if] = ACTIONS(4364), + [anon_sym_match] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4364), + [anon_sym_try] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4364), + [anon_sym_source] = ACTIONS(4364), + [anon_sym_source_DASHenv] = ACTIONS(4364), + [anon_sym_register] = ACTIONS(4364), + [anon_sym_hide] = ACTIONS(4364), + [anon_sym_hide_DASHenv] = ACTIONS(4364), + [anon_sym_overlay] = ACTIONS(4364), + [anon_sym_as] = ACTIONS(4364), + [anon_sym_where] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_not] = ACTIONS(4364), + [anon_sym_null] = ACTIONS(4364), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4364), + [aux_sym__val_number_token1] = ACTIONS(4364), + [aux_sym__val_number_token2] = ACTIONS(4364), + [aux_sym__val_number_token3] = ACTIONS(4364), + [aux_sym__val_number_token4] = ACTIONS(4364), + [aux_sym__val_number_token5] = ACTIONS(4364), + [aux_sym__val_number_token6] = ACTIONS(4364), + [anon_sym_0b] = ACTIONS(4364), + [anon_sym_0o] = ACTIONS(4364), + [anon_sym_0x] = ACTIONS(4364), + [sym_val_date] = ACTIONS(4364), + [anon_sym_DQUOTE] = ACTIONS(4364), + [sym__str_single_quotes] = ACTIONS(4364), + [sym__str_back_ticks] = ACTIONS(4364), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4364), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4364), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(105), + }, + [1801] = { + [sym_comment] = STATE(1801), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT2] = ACTIONS(1223), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(105), + }, + [1802] = { + [sym_expr_parenthesized] = STATE(10599), + [sym_val_variable] = STATE(10599), + [sym__var] = STATE(7451), + [sym_val_number] = STATE(10599), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10599), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(10832), + [sym__record_key] = STATE(10885), + [sym_comment] = STATE(1802), + [aux_sym_record_body_repeat1] = STATE(1802), + [anon_sym_export] = ACTIONS(4598), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_let] = ACTIONS(4598), + [anon_sym_let_DASHenv] = ACTIONS(4598), + [anon_sym_mut] = ACTIONS(4598), + [anon_sym_const] = ACTIONS(4598), + [sym_cmd_identifier] = ACTIONS(4598), + [anon_sym_def] = ACTIONS(4598), + [anon_sym_export_DASHenv] = ACTIONS(4598), + [anon_sym_extern] = ACTIONS(4598), + [anon_sym_module] = ACTIONS(4598), + [anon_sym_use] = ACTIONS(4598), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_DOLLAR] = ACTIONS(4604), + [anon_sym_error] = ACTIONS(4598), + [anon_sym_list] = ACTIONS(4598), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_continue] = ACTIONS(4598), + [anon_sym_for] = ACTIONS(4598), + [anon_sym_in] = ACTIONS(4598), + [anon_sym_loop] = ACTIONS(4598), + [anon_sym_make] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_do] = ACTIONS(4598), + [anon_sym_if] = ACTIONS(4598), + [anon_sym_else] = ACTIONS(4598), + [anon_sym_match] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4610), + [anon_sym_try] = ACTIONS(4598), + [anon_sym_catch] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_source] = ACTIONS(4598), + [anon_sym_source_DASHenv] = ACTIONS(4598), + [anon_sym_register] = ACTIONS(4598), + [anon_sym_hide] = ACTIONS(4598), + [anon_sym_hide_DASHenv] = ACTIONS(4598), + [anon_sym_overlay] = ACTIONS(4598), + [anon_sym_new] = ACTIONS(4598), + [anon_sym_as] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4613), + [aux_sym__val_number_decimal_token1] = ACTIONS(4616), + [aux_sym__val_number_token1] = ACTIONS(4619), + [aux_sym__val_number_token2] = ACTIONS(4619), + [aux_sym__val_number_token3] = ACTIONS(4619), + [aux_sym__val_number_token4] = ACTIONS(4622), + [aux_sym__val_number_token5] = ACTIONS(4619), + [aux_sym__val_number_token6] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(4625), + [sym__str_single_quotes] = ACTIONS(4628), + [sym__str_back_ticks] = ACTIONS(4628), + [aux_sym__record_key_token2] = ACTIONS(4631), + [anon_sym_POUND] = ACTIONS(3), + }, + [1803] = { + [sym_comment] = STATE(1803), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_alias] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_DASHenv] = ACTIONS(3977), + [anon_sym_mut] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [sym_cmd_identifier] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3979), + [anon_sym_def] = ACTIONS(3977), + [anon_sym_export_DASHenv] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_error] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_loop] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DOT2] = ACTIONS(4634), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_source] = ACTIONS(3977), + [anon_sym_source_DASHenv] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_hide] = ACTIONS(3977), + [anon_sym_hide_DASHenv] = ACTIONS(3977), + [anon_sym_overlay] = ACTIONS(3977), + [anon_sym_where] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_true] = ACTIONS(3977), + [anon_sym_false] = ACTIONS(3977), + [aux_sym__val_number_decimal_token1] = ACTIONS(3977), + [aux_sym__val_number_token1] = ACTIONS(3977), + [aux_sym__val_number_token2] = ACTIONS(3977), + [aux_sym__val_number_token3] = ACTIONS(3977), + [aux_sym__val_number_token4] = ACTIONS(3977), + [aux_sym__val_number_token5] = ACTIONS(3977), + [aux_sym__val_number_token6] = ACTIONS(3977), + [anon_sym_0b] = ACTIONS(3977), + [anon_sym_0o] = ACTIONS(3977), + [anon_sym_0x] = ACTIONS(3977), + [sym_val_date] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [sym__str_single_quotes] = ACTIONS(3977), + [sym__str_back_ticks] = ACTIONS(3977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_CARET] = ACTIONS(3977), + [anon_sym_POUND] = ACTIONS(105), + }, + [1804] = { + [sym_comment] = STATE(1804), + [anon_sym_export] = ACTIONS(4026), + [anon_sym_alias] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_let_DASHenv] = ACTIONS(4026), + [anon_sym_mut] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4026), + [sym_cmd_identifier] = ACTIONS(4026), + [anon_sym_LF] = ACTIONS(4028), + [anon_sym_def] = ACTIONS(4026), + [anon_sym_export_DASHenv] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_use] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_DOLLAR] = ACTIONS(4026), + [anon_sym_error] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_loop] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(4026), + [anon_sym_DOT2] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_source] = ACTIONS(4026), + [anon_sym_source_DASHenv] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_hide] = ACTIONS(4026), + [anon_sym_hide_DASHenv] = ACTIONS(4026), + [anon_sym_overlay] = ACTIONS(4026), + [anon_sym_where] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_null] = ACTIONS(4026), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4026), + [aux_sym__val_number_token1] = ACTIONS(4026), + [aux_sym__val_number_token2] = ACTIONS(4026), + [aux_sym__val_number_token3] = ACTIONS(4026), + [aux_sym__val_number_token4] = ACTIONS(4026), + [aux_sym__val_number_token5] = ACTIONS(4026), + [aux_sym__val_number_token6] = ACTIONS(4026), + [anon_sym_0b] = ACTIONS(4026), + [anon_sym_0o] = ACTIONS(4026), + [anon_sym_0x] = ACTIONS(4026), + [sym_val_date] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym__str_single_quotes] = ACTIONS(4026), + [sym__str_back_ticks] = ACTIONS(4026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4026), + [anon_sym_CARET] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(105), + }, + [1805] = { + [sym_comment] = STATE(1805), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(105), + }, + [1806] = { + [sym_comment] = STATE(1806), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_alias] = ACTIONS(4036), + [anon_sym_let] = ACTIONS(4036), + [anon_sym_let_DASHenv] = ACTIONS(4036), + [anon_sym_mut] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4036), + [sym_cmd_identifier] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4038), + [anon_sym_def] = ACTIONS(4036), + [anon_sym_export_DASHenv] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_use] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(4036), + [anon_sym_error] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_loop] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_match] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_DOT2] = ACTIONS(4638), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_source] = ACTIONS(4036), + [anon_sym_source_DASHenv] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_hide] = ACTIONS(4036), + [anon_sym_hide_DASHenv] = ACTIONS(4036), + [anon_sym_overlay] = ACTIONS(4036), + [anon_sym_where] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_null] = ACTIONS(4036), + [anon_sym_true] = ACTIONS(4036), + [anon_sym_false] = ACTIONS(4036), + [aux_sym__val_number_decimal_token1] = ACTIONS(4036), + [aux_sym__val_number_token1] = ACTIONS(4036), + [aux_sym__val_number_token2] = ACTIONS(4036), + [aux_sym__val_number_token3] = ACTIONS(4036), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(4036), + [anon_sym_0o] = ACTIONS(4036), + [anon_sym_0x] = ACTIONS(4036), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym__str_single_quotes] = ACTIONS(4036), + [sym__str_back_ticks] = ACTIONS(4036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(105), + }, + [1807] = { + [sym_comment] = STATE(1807), + [anon_sym_export] = ACTIONS(3840), + [anon_sym_alias] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_DASHenv] = ACTIONS(3840), + [anon_sym_mut] = ACTIONS(3840), + [anon_sym_const] = ACTIONS(3840), + [anon_sym_SEMI] = ACTIONS(3840), + [sym_cmd_identifier] = ACTIONS(3840), + [anon_sym_LF] = ACTIONS(3842), + [anon_sym_def] = ACTIONS(3840), + [anon_sym_export_DASHenv] = ACTIONS(3840), + [anon_sym_extern] = ACTIONS(3840), + [anon_sym_module] = ACTIONS(3840), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_RPAREN] = ACTIONS(3840), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_error] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_break] = ACTIONS(3840), + [anon_sym_continue] = ACTIONS(3840), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_loop] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_RBRACE] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_DOT2] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_source] = ACTIONS(3840), + [anon_sym_source_DASHenv] = ACTIONS(3840), + [anon_sym_register] = ACTIONS(3840), + [anon_sym_hide] = ACTIONS(3840), + [anon_sym_hide_DASHenv] = ACTIONS(3840), + [anon_sym_overlay] = ACTIONS(3840), + [anon_sym_where] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_not] = ACTIONS(3840), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_true] = ACTIONS(3840), + [anon_sym_false] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3840), + [aux_sym__val_number_token1] = ACTIONS(3840), + [aux_sym__val_number_token2] = ACTIONS(3840), + [aux_sym__val_number_token3] = ACTIONS(3840), + [aux_sym__val_number_token4] = ACTIONS(3840), + [aux_sym__val_number_token5] = ACTIONS(3840), + [aux_sym__val_number_token6] = ACTIONS(3840), + [anon_sym_0b] = ACTIONS(3840), + [anon_sym_0o] = ACTIONS(3840), + [anon_sym_0x] = ACTIONS(3840), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_CARET] = ACTIONS(3840), + [anon_sym_POUND] = ACTIONS(105), + }, + [1808] = { + [sym_comment] = STATE(1808), + [anon_sym_export] = ACTIONS(3903), + [anon_sym_alias] = ACTIONS(3903), + [anon_sym_let] = ACTIONS(3903), + [anon_sym_let_DASHenv] = ACTIONS(3903), + [anon_sym_mut] = ACTIONS(3903), + [anon_sym_const] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3903), + [sym_cmd_identifier] = ACTIONS(3903), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_def] = ACTIONS(3903), + [anon_sym_export_DASHenv] = ACTIONS(3903), + [anon_sym_extern] = ACTIONS(3903), + [anon_sym_module] = ACTIONS(3903), + [anon_sym_use] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3903), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3903), + [anon_sym_error] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_loop] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_do] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3903), + [anon_sym_DOT] = ACTIONS(3903), + [anon_sym_DOT2] = ACTIONS(4642), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_source] = ACTIONS(3903), + [anon_sym_source_DASHenv] = ACTIONS(3903), + [anon_sym_register] = ACTIONS(3903), + [anon_sym_hide] = ACTIONS(3903), + [anon_sym_hide_DASHenv] = ACTIONS(3903), + [anon_sym_overlay] = ACTIONS(3903), + [anon_sym_where] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_not] = ACTIONS(3903), + [anon_sym_null] = ACTIONS(3903), + [anon_sym_true] = ACTIONS(3903), + [anon_sym_false] = ACTIONS(3903), + [aux_sym__val_number_decimal_token1] = ACTIONS(3903), + [aux_sym__val_number_token1] = ACTIONS(3903), + [aux_sym__val_number_token2] = ACTIONS(3903), + [aux_sym__val_number_token3] = ACTIONS(3903), + [aux_sym__val_number_token4] = ACTIONS(3903), + [aux_sym__val_number_token5] = ACTIONS(3903), + [aux_sym__val_number_token6] = ACTIONS(3903), + [anon_sym_0b] = ACTIONS(3903), + [anon_sym_0o] = ACTIONS(3903), + [anon_sym_0x] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [sym__str_single_quotes] = ACTIONS(3903), + [sym__str_back_ticks] = ACTIONS(3903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3903), + [anon_sym_CARET] = ACTIONS(3903), + [anon_sym_POUND] = ACTIONS(105), + }, + [1809] = { + [sym_comment] = STATE(1809), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(105), + }, + [1810] = { + [sym_comment] = STATE(1810), [anon_sym_export] = ACTIONS(3909), [anon_sym_alias] = ACTIONS(3909), [anon_sym_let] = ACTIONS(3909), @@ -233152,1951 +233983,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(3909), [anon_sym_POUND] = ACTIONS(105), }, - [1799] = { - [sym_comment] = STATE(1799), - [ts_builtin_sym_end] = ACTIONS(4400), - [anon_sym_export] = ACTIONS(4398), - [anon_sym_alias] = ACTIONS(4398), - [anon_sym_let] = ACTIONS(4398), - [anon_sym_let_DASHenv] = ACTIONS(4398), - [anon_sym_mut] = ACTIONS(4398), - [anon_sym_const] = ACTIONS(4398), - [anon_sym_SEMI] = ACTIONS(4398), - [sym_cmd_identifier] = ACTIONS(4398), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_def] = ACTIONS(4398), - [anon_sym_export_DASHenv] = ACTIONS(4398), - [anon_sym_extern] = ACTIONS(4398), - [anon_sym_module] = ACTIONS(4398), - [anon_sym_use] = ACTIONS(4398), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_LPAREN] = ACTIONS(4398), - [anon_sym_DOLLAR] = ACTIONS(4398), - [anon_sym_error] = ACTIONS(4398), - [anon_sym_DASH_DASH] = ACTIONS(4398), - [anon_sym_DASH] = ACTIONS(4398), - [anon_sym_break] = ACTIONS(4398), - [anon_sym_continue] = ACTIONS(4398), - [anon_sym_for] = ACTIONS(4398), - [anon_sym_loop] = ACTIONS(4398), - [anon_sym_while] = ACTIONS(4398), - [anon_sym_do] = ACTIONS(4398), - [anon_sym_if] = ACTIONS(4398), - [anon_sym_match] = ACTIONS(4398), - [anon_sym_LBRACE] = ACTIONS(4398), - [anon_sym_DOT] = ACTIONS(4398), - [anon_sym_try] = ACTIONS(4398), - [anon_sym_return] = ACTIONS(4398), - [anon_sym_source] = ACTIONS(4398), - [anon_sym_source_DASHenv] = ACTIONS(4398), - [anon_sym_register] = ACTIONS(4398), - [anon_sym_hide] = ACTIONS(4398), - [anon_sym_hide_DASHenv] = ACTIONS(4398), - [anon_sym_overlay] = ACTIONS(4398), - [anon_sym_as] = ACTIONS(4398), - [anon_sym_where] = ACTIONS(4398), - [anon_sym_PLUS] = ACTIONS(4398), - [anon_sym_not] = ACTIONS(4398), - [anon_sym_null] = ACTIONS(4398), - [anon_sym_true] = ACTIONS(4398), - [anon_sym_false] = ACTIONS(4398), - [aux_sym__val_number_decimal_token1] = ACTIONS(4398), - [aux_sym__val_number_token1] = ACTIONS(4398), - [aux_sym__val_number_token2] = ACTIONS(4398), - [aux_sym__val_number_token3] = ACTIONS(4398), - [aux_sym__val_number_token4] = ACTIONS(4398), - [aux_sym__val_number_token5] = ACTIONS(4398), - [aux_sym__val_number_token6] = ACTIONS(4398), - [anon_sym_0b] = ACTIONS(4398), - [anon_sym_0o] = ACTIONS(4398), - [anon_sym_0x] = ACTIONS(4398), - [sym_val_date] = ACTIONS(4398), - [anon_sym_DQUOTE] = ACTIONS(4398), - [sym__str_single_quotes] = ACTIONS(4398), - [sym__str_back_ticks] = ACTIONS(4398), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4398), - [anon_sym_CARET] = ACTIONS(4398), - [anon_sym_POUND] = ACTIONS(105), - }, - [1800] = { - [sym_comment] = STATE(1800), - [anon_sym_export] = ACTIONS(3915), - [anon_sym_alias] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_let_DASHenv] = ACTIONS(3915), - [anon_sym_mut] = ACTIONS(3915), - [anon_sym_const] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3915), - [sym_cmd_identifier] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_def] = ACTIONS(3915), - [anon_sym_export_DASHenv] = ACTIONS(3915), - [anon_sym_extern] = ACTIONS(3915), - [anon_sym_module] = ACTIONS(3915), - [anon_sym_use] = ACTIONS(3915), - [anon_sym_LBRACK] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_error] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_loop] = ACTIONS(3915), - [anon_sym_while] = ACTIONS(3915), - [anon_sym_do] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3915), - [anon_sym_RBRACE] = ACTIONS(3915), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_DOT2] = ACTIONS(4646), - [anon_sym_try] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_source] = ACTIONS(3915), - [anon_sym_source_DASHenv] = ACTIONS(3915), - [anon_sym_register] = ACTIONS(3915), - [anon_sym_hide] = ACTIONS(3915), - [anon_sym_hide_DASHenv] = ACTIONS(3915), - [anon_sym_overlay] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_not] = ACTIONS(3915), - [anon_sym_null] = ACTIONS(3915), - [anon_sym_true] = ACTIONS(3915), - [anon_sym_false] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(3915), - [aux_sym__val_number_token1] = ACTIONS(3915), - [aux_sym__val_number_token2] = ACTIONS(3915), - [aux_sym__val_number_token3] = ACTIONS(3915), - [aux_sym__val_number_token4] = ACTIONS(3915), - [aux_sym__val_number_token5] = ACTIONS(3915), - [aux_sym__val_number_token6] = ACTIONS(3915), - [anon_sym_0b] = ACTIONS(3915), - [anon_sym_0o] = ACTIONS(3915), - [anon_sym_0x] = ACTIONS(3915), - [sym_val_date] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(105), - }, - [1801] = { - [sym_comment] = STATE(1801), - [anon_sym_export] = ACTIONS(3921), - [anon_sym_alias] = ACTIONS(3921), - [anon_sym_let] = ACTIONS(3921), - [anon_sym_let_DASHenv] = ACTIONS(3921), - [anon_sym_mut] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3921), - [sym_cmd_identifier] = ACTIONS(3921), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_def] = ACTIONS(3921), - [anon_sym_export_DASHenv] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym_module] = ACTIONS(3921), - [anon_sym_use] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_DOLLAR] = ACTIONS(3921), - [anon_sym_error] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_loop] = ACTIONS(3921), - [anon_sym_while] = ACTIONS(3921), - [anon_sym_do] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_match] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_DOT2] = ACTIONS(4648), - [anon_sym_try] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_source] = ACTIONS(3921), - [anon_sym_source_DASHenv] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_hide] = ACTIONS(3921), - [anon_sym_hide_DASHenv] = ACTIONS(3921), - [anon_sym_overlay] = ACTIONS(3921), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3921), - [anon_sym_true] = ACTIONS(3921), - [anon_sym_false] = ACTIONS(3921), - [aux_sym__val_number_decimal_token1] = ACTIONS(3921), - [aux_sym__val_number_token1] = ACTIONS(3921), - [aux_sym__val_number_token2] = ACTIONS(3921), - [aux_sym__val_number_token3] = ACTIONS(3921), - [aux_sym__val_number_token4] = ACTIONS(3921), - [aux_sym__val_number_token5] = ACTIONS(3921), - [aux_sym__val_number_token6] = ACTIONS(3921), - [anon_sym_0b] = ACTIONS(3921), - [anon_sym_0o] = ACTIONS(3921), - [anon_sym_0x] = ACTIONS(3921), - [sym_val_date] = ACTIONS(3921), - [anon_sym_DQUOTE] = ACTIONS(3921), - [sym__str_single_quotes] = ACTIONS(3921), - [sym__str_back_ticks] = ACTIONS(3921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_POUND] = ACTIONS(105), - }, - [1802] = { - [sym_comment] = STATE(1802), - [anon_sym_export] = ACTIONS(3927), - [anon_sym_alias] = ACTIONS(3927), - [anon_sym_let] = ACTIONS(3927), - [anon_sym_let_DASHenv] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_const] = ACTIONS(3927), - [anon_sym_SEMI] = ACTIONS(3927), - [sym_cmd_identifier] = ACTIONS(3927), - [anon_sym_LF] = ACTIONS(3929), - [anon_sym_def] = ACTIONS(3927), - [anon_sym_export_DASHenv] = ACTIONS(3927), - [anon_sym_extern] = ACTIONS(3927), - [anon_sym_module] = ACTIONS(3927), - [anon_sym_use] = ACTIONS(3927), - [anon_sym_LBRACK] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_error] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_loop] = ACTIONS(3927), - [anon_sym_while] = ACTIONS(3927), - [anon_sym_do] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_RBRACE] = ACTIONS(3927), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT2] = ACTIONS(4650), - [anon_sym_try] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_source] = ACTIONS(3927), - [anon_sym_source_DASHenv] = ACTIONS(3927), - [anon_sym_register] = ACTIONS(3927), - [anon_sym_hide] = ACTIONS(3927), - [anon_sym_hide_DASHenv] = ACTIONS(3927), - [anon_sym_overlay] = ACTIONS(3927), - [anon_sym_where] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3927), - [anon_sym_not] = ACTIONS(3927), - [anon_sym_null] = ACTIONS(3927), - [anon_sym_true] = ACTIONS(3927), - [anon_sym_false] = ACTIONS(3927), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_token1] = ACTIONS(3927), - [aux_sym__val_number_token2] = ACTIONS(3927), - [aux_sym__val_number_token3] = ACTIONS(3927), - [aux_sym__val_number_token4] = ACTIONS(3927), - [aux_sym__val_number_token5] = ACTIONS(3927), - [aux_sym__val_number_token6] = ACTIONS(3927), - [anon_sym_0b] = ACTIONS(3927), - [anon_sym_0o] = ACTIONS(3927), - [anon_sym_0x] = ACTIONS(3927), - [sym_val_date] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(3927), - [sym__str_single_quotes] = ACTIONS(3927), - [sym__str_back_ticks] = ACTIONS(3927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3927), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_POUND] = ACTIONS(105), - }, - [1803] = { - [sym_comment] = STATE(1803), - [ts_builtin_sym_end] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_DASH_DASH] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_DOT2] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_mod] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_bit_DASHshl] = ACTIONS(844), - [anon_sym_bit_DASHshr] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_LT2] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_not_DASHin] = ACTIONS(844), - [anon_sym_starts_DASHwith] = ACTIONS(844), - [anon_sym_ends_DASHwith] = ACTIONS(844), - [anon_sym_EQ_TILDE] = ACTIONS(844), - [anon_sym_BANG_TILDE] = ACTIONS(844), - [anon_sym_bit_DASHand] = ACTIONS(844), - [anon_sym_bit_DASHxor] = ACTIONS(844), - [anon_sym_bit_DASHor] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_xor] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [aux_sym__immediate_decimal_token2] = ACTIONS(4652), - [anon_sym_null] = ACTIONS(844), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [aux_sym__val_number_token4] = ACTIONS(844), - [aux_sym__val_number_token5] = ACTIONS(844), - [aux_sym__val_number_token6] = ACTIONS(844), - [sym_filesize_unit] = ACTIONS(844), - [sym_duration_unit] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(844), - [anon_sym_0o] = ACTIONS(844), - [anon_sym_0x] = ACTIONS(844), - [sym_val_date] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(844), - [sym__str_single_quotes] = ACTIONS(844), - [sym__str_back_ticks] = ACTIONS(844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(844), - [aux_sym_unquoted_token6] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(105), - }, - [1804] = { - [sym_comment] = STATE(1804), - [ts_builtin_sym_end] = ACTIONS(4408), - [anon_sym_export] = ACTIONS(4406), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_let_DASHenv] = ACTIONS(4406), - [anon_sym_mut] = ACTIONS(4406), - [anon_sym_const] = ACTIONS(4406), - [anon_sym_SEMI] = ACTIONS(4406), - [sym_cmd_identifier] = ACTIONS(4406), - [anon_sym_LF] = ACTIONS(4408), - [anon_sym_def] = ACTIONS(4406), - [anon_sym_export_DASHenv] = ACTIONS(4406), - [anon_sym_extern] = ACTIONS(4406), - [anon_sym_module] = ACTIONS(4406), - [anon_sym_use] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_LPAREN] = ACTIONS(4406), - [anon_sym_DOLLAR] = ACTIONS(4406), - [anon_sym_error] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4406), - [anon_sym_DASH] = ACTIONS(4406), - [anon_sym_break] = ACTIONS(4406), - [anon_sym_continue] = ACTIONS(4406), - [anon_sym_for] = ACTIONS(4406), - [anon_sym_loop] = ACTIONS(4406), - [anon_sym_while] = ACTIONS(4406), - [anon_sym_do] = ACTIONS(4406), - [anon_sym_if] = ACTIONS(4406), - [anon_sym_match] = ACTIONS(4406), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_DOT] = ACTIONS(4406), - [anon_sym_try] = ACTIONS(4406), - [anon_sym_return] = ACTIONS(4406), - [anon_sym_source] = ACTIONS(4406), - [anon_sym_source_DASHenv] = ACTIONS(4406), - [anon_sym_register] = ACTIONS(4406), - [anon_sym_hide] = ACTIONS(4406), - [anon_sym_hide_DASHenv] = ACTIONS(4406), - [anon_sym_overlay] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4406), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4406), - [anon_sym_not] = ACTIONS(4406), - [anon_sym_null] = ACTIONS(4406), - [anon_sym_true] = ACTIONS(4406), - [anon_sym_false] = ACTIONS(4406), - [aux_sym__val_number_decimal_token1] = ACTIONS(4406), - [aux_sym__val_number_token1] = ACTIONS(4406), - [aux_sym__val_number_token2] = ACTIONS(4406), - [aux_sym__val_number_token3] = ACTIONS(4406), - [aux_sym__val_number_token4] = ACTIONS(4406), - [aux_sym__val_number_token5] = ACTIONS(4406), - [aux_sym__val_number_token6] = ACTIONS(4406), - [anon_sym_0b] = ACTIONS(4406), - [anon_sym_0o] = ACTIONS(4406), - [anon_sym_0x] = ACTIONS(4406), - [sym_val_date] = ACTIONS(4406), - [anon_sym_DQUOTE] = ACTIONS(4406), - [sym__str_single_quotes] = ACTIONS(4406), - [sym__str_back_ticks] = ACTIONS(4406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4406), - [anon_sym_CARET] = ACTIONS(4406), - [anon_sym_POUND] = ACTIONS(105), - }, - [1805] = { - [sym_comment] = STATE(1805), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_alias] = ACTIONS(3935), - [anon_sym_let] = ACTIONS(3935), - [anon_sym_let_DASHenv] = ACTIONS(3935), - [anon_sym_mut] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3935), - [sym_cmd_identifier] = ACTIONS(3935), - [anon_sym_LF] = ACTIONS(3937), - [anon_sym_def] = ACTIONS(3935), - [anon_sym_export_DASHenv] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_use] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_RPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3935), - [anon_sym_error] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_loop] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_match] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3935), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_DOT2] = ACTIONS(4654), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_source] = ACTIONS(3935), - [anon_sym_source_DASHenv] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_hide] = ACTIONS(3935), - [anon_sym_hide_DASHenv] = ACTIONS(3935), - [anon_sym_overlay] = ACTIONS(3935), - [anon_sym_where] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3935), - [anon_sym_false] = ACTIONS(3935), - [aux_sym__val_number_decimal_token1] = ACTIONS(3935), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3935), - [aux_sym__val_number_token5] = ACTIONS(3935), - [aux_sym__val_number_token6] = ACTIONS(3935), - [anon_sym_0b] = ACTIONS(3935), - [anon_sym_0o] = ACTIONS(3935), - [anon_sym_0x] = ACTIONS(3935), - [sym_val_date] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(3935), - [sym__str_single_quotes] = ACTIONS(3935), - [sym__str_back_ticks] = ACTIONS(3935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3935), - [anon_sym_POUND] = ACTIONS(105), - }, - [1806] = { - [sym_comment] = STATE(1806), - [anon_sym_export] = ACTIONS(3941), - [anon_sym_alias] = ACTIONS(3941), - [anon_sym_let] = ACTIONS(3941), - [anon_sym_let_DASHenv] = ACTIONS(3941), - [anon_sym_mut] = ACTIONS(3941), - [anon_sym_const] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [sym_cmd_identifier] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3943), - [anon_sym_def] = ACTIONS(3941), - [anon_sym_export_DASHenv] = ACTIONS(3941), - [anon_sym_extern] = ACTIONS(3941), - [anon_sym_module] = ACTIONS(3941), - [anon_sym_use] = ACTIONS(3941), - [anon_sym_LBRACK] = ACTIONS(3941), - [anon_sym_LPAREN] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_error] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_break] = ACTIONS(3941), - [anon_sym_continue] = ACTIONS(3941), - [anon_sym_for] = ACTIONS(3941), - [anon_sym_loop] = ACTIONS(3941), - [anon_sym_while] = ACTIONS(3941), - [anon_sym_do] = ACTIONS(3941), - [anon_sym_if] = ACTIONS(3941), - [anon_sym_match] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_DOT2] = ACTIONS(4656), - [anon_sym_try] = ACTIONS(3941), - [anon_sym_return] = ACTIONS(3941), - [anon_sym_source] = ACTIONS(3941), - [anon_sym_source_DASHenv] = ACTIONS(3941), - [anon_sym_register] = ACTIONS(3941), - [anon_sym_hide] = ACTIONS(3941), - [anon_sym_hide_DASHenv] = ACTIONS(3941), - [anon_sym_overlay] = ACTIONS(3941), - [anon_sym_where] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3941), - [anon_sym_not] = ACTIONS(3941), - [anon_sym_null] = ACTIONS(3941), - [anon_sym_true] = ACTIONS(3941), - [anon_sym_false] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(3941), - [aux_sym__val_number_token1] = ACTIONS(3941), - [aux_sym__val_number_token2] = ACTIONS(3941), - [aux_sym__val_number_token3] = ACTIONS(3941), - [aux_sym__val_number_token4] = ACTIONS(3941), - [aux_sym__val_number_token5] = ACTIONS(3941), - [aux_sym__val_number_token6] = ACTIONS(3941), - [anon_sym_0b] = ACTIONS(3941), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym__str_single_quotes] = ACTIONS(3941), - [sym__str_back_ticks] = ACTIONS(3941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), - [anon_sym_CARET] = ACTIONS(3941), - [anon_sym_POUND] = ACTIONS(105), - }, - [1807] = { - [sym_comment] = STATE(1807), - [ts_builtin_sym_end] = ACTIONS(4015), - [anon_sym_export] = ACTIONS(4013), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_let_DASHenv] = ACTIONS(4013), - [anon_sym_mut] = ACTIONS(4013), - [anon_sym_const] = ACTIONS(4013), - [anon_sym_SEMI] = ACTIONS(4013), - [sym_cmd_identifier] = ACTIONS(4013), - [anon_sym_LF] = ACTIONS(4015), - [anon_sym_def] = ACTIONS(4013), - [anon_sym_export_DASHenv] = ACTIONS(4013), - [anon_sym_extern] = ACTIONS(4013), - [anon_sym_module] = ACTIONS(4013), - [anon_sym_use] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym_DOLLAR] = ACTIONS(4013), - [anon_sym_error] = ACTIONS(4013), - [anon_sym_DASH_DASH] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_break] = ACTIONS(4013), - [anon_sym_continue] = ACTIONS(4013), - [anon_sym_for] = ACTIONS(4013), - [anon_sym_loop] = ACTIONS(4013), - [anon_sym_while] = ACTIONS(4013), - [anon_sym_do] = ACTIONS(4013), - [anon_sym_if] = ACTIONS(4013), - [anon_sym_match] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_try] = ACTIONS(4013), - [anon_sym_return] = ACTIONS(4013), - [anon_sym_source] = ACTIONS(4013), - [anon_sym_source_DASHenv] = ACTIONS(4013), - [anon_sym_register] = ACTIONS(4013), - [anon_sym_hide] = ACTIONS(4013), - [anon_sym_hide_DASHenv] = ACTIONS(4013), - [anon_sym_overlay] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_not] = ACTIONS(4013), - [anon_sym_null] = ACTIONS(4013), - [anon_sym_true] = ACTIONS(4013), - [anon_sym_false] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(4013), - [aux_sym__val_number_token1] = ACTIONS(4013), - [aux_sym__val_number_token2] = ACTIONS(4013), - [aux_sym__val_number_token3] = ACTIONS(4013), - [aux_sym__val_number_token4] = ACTIONS(4013), - [aux_sym__val_number_token5] = ACTIONS(4013), - [aux_sym__val_number_token6] = ACTIONS(4013), - [anon_sym_0b] = ACTIONS(4013), - [anon_sym_0o] = ACTIONS(4013), - [anon_sym_0x] = ACTIONS(4013), - [sym_val_date] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym__str_single_quotes] = ACTIONS(4013), - [sym__str_back_ticks] = ACTIONS(4013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4013), - [anon_sym_CARET] = ACTIONS(4013), - [anon_sym_POUND] = ACTIONS(105), - }, - [1808] = { - [sym_comment] = STATE(1808), - [ts_builtin_sym_end] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1243), - [anon_sym_alias] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_let_DASHenv] = ACTIONS(1243), - [anon_sym_mut] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [sym_cmd_identifier] = ACTIONS(1243), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_def] = ACTIONS(1243), - [anon_sym_export_DASHenv] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_module] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_error] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_try] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_source] = ACTIONS(1243), - [anon_sym_source_DASHenv] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_hide] = ACTIONS(1243), - [anon_sym_hide_DASHenv] = ACTIONS(1243), - [anon_sym_overlay] = ACTIONS(1243), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_not] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [aux_sym__val_number_decimal_token1] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1243), - [aux_sym__val_number_token2] = ACTIONS(1243), - [aux_sym__val_number_token3] = ACTIONS(1243), - [aux_sym__val_number_token4] = ACTIONS(1243), - [aux_sym__val_number_token5] = ACTIONS(1243), - [aux_sym__val_number_token6] = ACTIONS(1243), - [anon_sym_0b] = ACTIONS(1243), - [anon_sym_0o] = ACTIONS(1243), - [anon_sym_0x] = ACTIONS(1243), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym__str_single_quotes] = ACTIONS(1243), - [sym__str_back_ticks] = ACTIONS(1243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(105), - }, - [1809] = { - [sym_comment] = STATE(1809), - [ts_builtin_sym_end] = ACTIONS(4412), - [anon_sym_export] = ACTIONS(4410), - [anon_sym_alias] = ACTIONS(4410), - [anon_sym_let] = ACTIONS(4410), - [anon_sym_let_DASHenv] = ACTIONS(4410), - [anon_sym_mut] = ACTIONS(4410), - [anon_sym_const] = ACTIONS(4410), - [anon_sym_SEMI] = ACTIONS(4410), - [sym_cmd_identifier] = ACTIONS(4410), - [anon_sym_LF] = ACTIONS(4412), - [anon_sym_def] = ACTIONS(4410), - [anon_sym_export_DASHenv] = ACTIONS(4410), - [anon_sym_extern] = ACTIONS(4410), - [anon_sym_module] = ACTIONS(4410), - [anon_sym_use] = ACTIONS(4410), - [anon_sym_LBRACK] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4410), - [anon_sym_error] = ACTIONS(4410), - [anon_sym_DASH_DASH] = ACTIONS(4410), - [anon_sym_DASH] = ACTIONS(4410), - [anon_sym_break] = ACTIONS(4410), - [anon_sym_continue] = ACTIONS(4410), - [anon_sym_for] = ACTIONS(4410), - [anon_sym_loop] = ACTIONS(4410), - [anon_sym_while] = ACTIONS(4410), - [anon_sym_do] = ACTIONS(4410), - [anon_sym_if] = ACTIONS(4410), - [anon_sym_match] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4410), - [anon_sym_DOT] = ACTIONS(4410), - [anon_sym_try] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4410), - [anon_sym_source] = ACTIONS(4410), - [anon_sym_source_DASHenv] = ACTIONS(4410), - [anon_sym_register] = ACTIONS(4410), - [anon_sym_hide] = ACTIONS(4410), - [anon_sym_hide_DASHenv] = ACTIONS(4410), - [anon_sym_overlay] = ACTIONS(4410), - [anon_sym_as] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_PLUS] = ACTIONS(4410), - [anon_sym_not] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4410), - [anon_sym_true] = ACTIONS(4410), - [anon_sym_false] = ACTIONS(4410), - [aux_sym__val_number_decimal_token1] = ACTIONS(4410), - [aux_sym__val_number_token1] = ACTIONS(4410), - [aux_sym__val_number_token2] = ACTIONS(4410), - [aux_sym__val_number_token3] = ACTIONS(4410), - [aux_sym__val_number_token4] = ACTIONS(4410), - [aux_sym__val_number_token5] = ACTIONS(4410), - [aux_sym__val_number_token6] = ACTIONS(4410), - [anon_sym_0b] = ACTIONS(4410), - [anon_sym_0o] = ACTIONS(4410), - [anon_sym_0x] = ACTIONS(4410), - [sym_val_date] = ACTIONS(4410), - [anon_sym_DQUOTE] = ACTIONS(4410), - [sym__str_single_quotes] = ACTIONS(4410), - [sym__str_back_ticks] = ACTIONS(4410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4410), - [anon_sym_CARET] = ACTIONS(4410), - [anon_sym_POUND] = ACTIONS(105), - }, - [1810] = { - [sym_comment] = STATE(1810), - [ts_builtin_sym_end] = ACTIONS(1191), - [anon_sym_export] = ACTIONS(1189), - [anon_sym_alias] = ACTIONS(1189), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_let_DASHenv] = ACTIONS(1189), - [anon_sym_mut] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [sym_cmd_identifier] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_export_DASHenv] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym_module] = ACTIONS(1189), - [anon_sym_use] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [anon_sym_error] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_loop] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_DOT2] = ACTIONS(1191), - [anon_sym_try] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_source] = ACTIONS(1189), - [anon_sym_source_DASHenv] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_hide] = ACTIONS(1189), - [anon_sym_hide_DASHenv] = ACTIONS(1189), - [anon_sym_overlay] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_where] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_not] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_token1] = ACTIONS(1189), - [aux_sym__val_number_token2] = ACTIONS(1189), - [aux_sym__val_number_token3] = ACTIONS(1189), - [aux_sym__val_number_token4] = ACTIONS(1189), - [aux_sym__val_number_token5] = ACTIONS(1189), - [aux_sym__val_number_token6] = ACTIONS(1189), - [anon_sym_0b] = ACTIONS(1189), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym__str_single_quotes] = ACTIONS(1189), - [sym__str_back_ticks] = ACTIONS(1189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1189), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_POUND] = ACTIONS(105), - }, [1811] = { [sym_comment] = STATE(1811), - [ts_builtin_sym_end] = ACTIONS(4416), - [anon_sym_export] = ACTIONS(4414), - [anon_sym_alias] = ACTIONS(4414), - [anon_sym_let] = ACTIONS(4414), - [anon_sym_let_DASHenv] = ACTIONS(4414), - [anon_sym_mut] = ACTIONS(4414), - [anon_sym_const] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4414), - [sym_cmd_identifier] = ACTIONS(4414), - [anon_sym_LF] = ACTIONS(4416), - [anon_sym_def] = ACTIONS(4414), - [anon_sym_export_DASHenv] = ACTIONS(4414), - [anon_sym_extern] = ACTIONS(4414), - [anon_sym_module] = ACTIONS(4414), - [anon_sym_use] = ACTIONS(4414), - [anon_sym_LBRACK] = ACTIONS(4414), - [anon_sym_LPAREN] = ACTIONS(4414), - [anon_sym_DOLLAR] = ACTIONS(4414), - [anon_sym_error] = ACTIONS(4414), - [anon_sym_DASH_DASH] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_break] = ACTIONS(4414), - [anon_sym_continue] = ACTIONS(4414), - [anon_sym_for] = ACTIONS(4414), - [anon_sym_loop] = ACTIONS(4414), - [anon_sym_while] = ACTIONS(4414), - [anon_sym_do] = ACTIONS(4414), - [anon_sym_if] = ACTIONS(4414), - [anon_sym_match] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4414), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_try] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4414), - [anon_sym_source] = ACTIONS(4414), - [anon_sym_source_DASHenv] = ACTIONS(4414), - [anon_sym_register] = ACTIONS(4414), - [anon_sym_hide] = ACTIONS(4414), - [anon_sym_hide_DASHenv] = ACTIONS(4414), - [anon_sym_overlay] = ACTIONS(4414), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_not] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4414), - [anon_sym_true] = ACTIONS(4414), - [anon_sym_false] = ACTIONS(4414), - [aux_sym__val_number_decimal_token1] = ACTIONS(4414), - [aux_sym__val_number_token1] = ACTIONS(4414), - [aux_sym__val_number_token2] = ACTIONS(4414), - [aux_sym__val_number_token3] = ACTIONS(4414), - [aux_sym__val_number_token4] = ACTIONS(4414), - [aux_sym__val_number_token5] = ACTIONS(4414), - [aux_sym__val_number_token6] = ACTIONS(4414), - [anon_sym_0b] = ACTIONS(4414), - [anon_sym_0o] = ACTIONS(4414), - [anon_sym_0x] = ACTIONS(4414), - [sym_val_date] = ACTIONS(4414), - [anon_sym_DQUOTE] = ACTIONS(4414), - [sym__str_single_quotes] = ACTIONS(4414), - [sym__str_back_ticks] = ACTIONS(4414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4414), - [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1812] = { [sym_comment] = STATE(1812), - [ts_builtin_sym_end] = ACTIONS(4330), - [anon_sym_export] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4328), - [anon_sym_let] = ACTIONS(4328), - [anon_sym_let_DASHenv] = ACTIONS(4328), - [anon_sym_mut] = ACTIONS(4328), - [anon_sym_const] = ACTIONS(4328), - [anon_sym_SEMI] = ACTIONS(4328), - [sym_cmd_identifier] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4330), - [anon_sym_def] = ACTIONS(4328), - [anon_sym_export_DASHenv] = ACTIONS(4328), - [anon_sym_extern] = ACTIONS(4328), - [anon_sym_module] = ACTIONS(4328), - [anon_sym_use] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4328), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym_DOLLAR] = ACTIONS(4328), - [anon_sym_error] = ACTIONS(4328), - [anon_sym_DASH_DASH] = ACTIONS(4328), - [anon_sym_DASH] = ACTIONS(4328), - [anon_sym_break] = ACTIONS(4328), - [anon_sym_continue] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4328), - [anon_sym_loop] = ACTIONS(4328), - [anon_sym_while] = ACTIONS(4328), - [anon_sym_do] = ACTIONS(4328), - [anon_sym_if] = ACTIONS(4328), - [anon_sym_match] = ACTIONS(4328), - [anon_sym_LBRACE] = ACTIONS(4328), - [anon_sym_DOT] = ACTIONS(4328), - [anon_sym_try] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4328), - [anon_sym_source] = ACTIONS(4328), - [anon_sym_source_DASHenv] = ACTIONS(4328), - [anon_sym_register] = ACTIONS(4328), - [anon_sym_hide] = ACTIONS(4328), - [anon_sym_hide_DASHenv] = ACTIONS(4328), - [anon_sym_overlay] = ACTIONS(4328), - [anon_sym_as] = ACTIONS(4328), - [anon_sym_where] = ACTIONS(4328), - [anon_sym_PLUS] = ACTIONS(4328), - [anon_sym_not] = ACTIONS(4328), - [anon_sym_null] = ACTIONS(4328), - [anon_sym_true] = ACTIONS(4328), - [anon_sym_false] = ACTIONS(4328), - [aux_sym__val_number_decimal_token1] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4328), - [aux_sym__val_number_token2] = ACTIONS(4328), - [aux_sym__val_number_token3] = ACTIONS(4328), - [aux_sym__val_number_token4] = ACTIONS(4328), - [aux_sym__val_number_token5] = ACTIONS(4328), - [aux_sym__val_number_token6] = ACTIONS(4328), - [anon_sym_0b] = ACTIONS(4328), - [anon_sym_0o] = ACTIONS(4328), - [anon_sym_0x] = ACTIONS(4328), - [sym_val_date] = ACTIONS(4328), - [anon_sym_DQUOTE] = ACTIONS(4328), - [sym__str_single_quotes] = ACTIONS(4328), - [sym__str_back_ticks] = ACTIONS(4328), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4328), - [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_alias] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_let_DASHenv] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4032), + [sym_cmd_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_def] = ACTIONS(4032), + [anon_sym_export_DASHenv] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_use] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_error] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_loop] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_DOT2] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_source] = ACTIONS(4032), + [anon_sym_source_DASHenv] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_hide_DASHenv] = ACTIONS(4032), + [anon_sym_overlay] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [aux_sym__val_number_decimal_token1] = ACTIONS(4032), + [aux_sym__val_number_token1] = ACTIONS(4032), + [aux_sym__val_number_token2] = ACTIONS(4032), + [aux_sym__val_number_token3] = ACTIONS(4032), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(4032), + [anon_sym_0o] = ACTIONS(4032), + [anon_sym_0x] = ACTIONS(4032), + [sym_val_date] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [sym__str_single_quotes] = ACTIONS(4032), + [sym__str_back_ticks] = ACTIONS(4032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), [anon_sym_POUND] = ACTIONS(105), }, [1813] = { [sym_comment] = STATE(1813), - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_export] = ACTIONS(1259), - [anon_sym_alias] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_let_DASHenv] = ACTIONS(1259), - [anon_sym_mut] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [sym_cmd_identifier] = ACTIONS(1259), - [anon_sym_LF] = ACTIONS(1261), - [anon_sym_def] = ACTIONS(1259), - [anon_sym_export_DASHenv] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_module] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_error] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_source] = ACTIONS(1259), - [anon_sym_source_DASHenv] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_hide] = ACTIONS(1259), - [anon_sym_hide_DASHenv] = ACTIONS(1259), - [anon_sym_overlay] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_where] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1259), - [anon_sym_null] = ACTIONS(1259), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_token1] = ACTIONS(1259), - [aux_sym__val_number_token2] = ACTIONS(1259), - [aux_sym__val_number_token3] = ACTIONS(1259), - [aux_sym__val_number_token4] = ACTIONS(1259), - [aux_sym__val_number_token5] = ACTIONS(1259), - [aux_sym__val_number_token6] = ACTIONS(1259), - [anon_sym_0b] = ACTIONS(1259), - [anon_sym_0o] = ACTIONS(1259), - [anon_sym_0x] = ACTIONS(1259), - [sym_val_date] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym__str_single_quotes] = ACTIONS(1259), - [sym__str_back_ticks] = ACTIONS(1259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_export] = ACTIONS(4646), + [anon_sym_alias] = ACTIONS(4646), + [anon_sym_let] = ACTIONS(4646), + [anon_sym_let_DASHenv] = ACTIONS(4646), + [anon_sym_mut] = ACTIONS(4646), + [anon_sym_const] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4646), + [sym_cmd_identifier] = ACTIONS(4646), + [anon_sym_LF] = ACTIONS(4648), + [anon_sym_def] = ACTIONS(4646), + [anon_sym_export_DASHenv] = ACTIONS(4646), + [anon_sym_extern] = ACTIONS(4646), + [anon_sym_module] = ACTIONS(4646), + [anon_sym_use] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_error] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_break] = ACTIONS(4646), + [anon_sym_continue] = ACTIONS(4646), + [anon_sym_for] = ACTIONS(4646), + [anon_sym_loop] = ACTIONS(4646), + [anon_sym_while] = ACTIONS(4646), + [anon_sym_do] = ACTIONS(4646), + [anon_sym_if] = ACTIONS(4646), + [anon_sym_match] = ACTIONS(4646), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_try] = ACTIONS(4646), + [anon_sym_return] = ACTIONS(4646), + [anon_sym_source] = ACTIONS(4646), + [anon_sym_source_DASHenv] = ACTIONS(4646), + [anon_sym_register] = ACTIONS(4646), + [anon_sym_hide] = ACTIONS(4646), + [anon_sym_hide_DASHenv] = ACTIONS(4646), + [anon_sym_overlay] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4646), + [anon_sym_not] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(4646), + [anon_sym_true] = ACTIONS(4646), + [anon_sym_false] = ACTIONS(4646), + [aux_sym__val_number_decimal_token1] = ACTIONS(4646), + [aux_sym__val_number_token1] = ACTIONS(4646), + [aux_sym__val_number_token2] = ACTIONS(4646), + [aux_sym__val_number_token3] = ACTIONS(4646), + [aux_sym__val_number_token4] = ACTIONS(4646), + [aux_sym__val_number_token5] = ACTIONS(4646), + [aux_sym__val_number_token6] = ACTIONS(4646), + [anon_sym_0b] = ACTIONS(4646), + [anon_sym_0o] = ACTIONS(4646), + [anon_sym_0x] = ACTIONS(4646), + [sym_val_date] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym__str_single_quotes] = ACTIONS(4646), + [sym__str_back_ticks] = ACTIONS(4646), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4646), + [anon_sym_CARET] = ACTIONS(4646), [anon_sym_POUND] = ACTIONS(105), }, [1814] = { [sym_comment] = STATE(1814), - [ts_builtin_sym_end] = ACTIONS(4420), - [anon_sym_export] = ACTIONS(4418), - [anon_sym_alias] = ACTIONS(4418), - [anon_sym_let] = ACTIONS(4418), - [anon_sym_let_DASHenv] = ACTIONS(4418), - [anon_sym_mut] = ACTIONS(4418), - [anon_sym_const] = ACTIONS(4418), - [anon_sym_SEMI] = ACTIONS(4418), - [sym_cmd_identifier] = ACTIONS(4418), - [anon_sym_LF] = ACTIONS(4420), - [anon_sym_def] = ACTIONS(4418), - [anon_sym_export_DASHenv] = ACTIONS(4418), - [anon_sym_extern] = ACTIONS(4418), - [anon_sym_module] = ACTIONS(4418), - [anon_sym_use] = ACTIONS(4418), - [anon_sym_LBRACK] = ACTIONS(4418), - [anon_sym_LPAREN] = ACTIONS(4418), - [anon_sym_DOLLAR] = ACTIONS(4418), - [anon_sym_error] = ACTIONS(4418), - [anon_sym_DASH_DASH] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_break] = ACTIONS(4418), - [anon_sym_continue] = ACTIONS(4418), - [anon_sym_for] = ACTIONS(4418), - [anon_sym_loop] = ACTIONS(4418), - [anon_sym_while] = ACTIONS(4418), - [anon_sym_do] = ACTIONS(4418), - [anon_sym_if] = ACTIONS(4418), - [anon_sym_match] = ACTIONS(4418), - [anon_sym_LBRACE] = ACTIONS(4418), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_try] = ACTIONS(4418), - [anon_sym_return] = ACTIONS(4418), - [anon_sym_source] = ACTIONS(4418), - [anon_sym_source_DASHenv] = ACTIONS(4418), - [anon_sym_register] = ACTIONS(4418), - [anon_sym_hide] = ACTIONS(4418), - [anon_sym_hide_DASHenv] = ACTIONS(4418), - [anon_sym_overlay] = ACTIONS(4418), - [anon_sym_as] = ACTIONS(4418), - [anon_sym_where] = ACTIONS(4418), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_not] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4418), - [anon_sym_true] = ACTIONS(4418), - [anon_sym_false] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4418), - [aux_sym__val_number_token1] = ACTIONS(4418), - [aux_sym__val_number_token2] = ACTIONS(4418), - [aux_sym__val_number_token3] = ACTIONS(4418), - [aux_sym__val_number_token4] = ACTIONS(4418), - [aux_sym__val_number_token5] = ACTIONS(4418), - [aux_sym__val_number_token6] = ACTIONS(4418), - [anon_sym_0b] = ACTIONS(4418), - [anon_sym_0o] = ACTIONS(4418), - [anon_sym_0x] = ACTIONS(4418), - [sym_val_date] = ACTIONS(4418), - [anon_sym_DQUOTE] = ACTIONS(4418), - [sym__str_single_quotes] = ACTIONS(4418), - [sym__str_back_ticks] = ACTIONS(4418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4418), - [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_export] = ACTIONS(4650), + [anon_sym_alias] = ACTIONS(4650), + [anon_sym_let] = ACTIONS(4650), + [anon_sym_let_DASHenv] = ACTIONS(4650), + [anon_sym_mut] = ACTIONS(4650), + [anon_sym_const] = ACTIONS(4650), + [anon_sym_SEMI] = ACTIONS(4650), + [sym_cmd_identifier] = ACTIONS(4650), + [anon_sym_LF] = ACTIONS(4652), + [anon_sym_def] = ACTIONS(4650), + [anon_sym_export_DASHenv] = ACTIONS(4650), + [anon_sym_extern] = ACTIONS(4650), + [anon_sym_module] = ACTIONS(4650), + [anon_sym_use] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_RPAREN] = ACTIONS(4650), + [anon_sym_DOLLAR] = ACTIONS(4650), + [anon_sym_error] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_break] = ACTIONS(4650), + [anon_sym_continue] = ACTIONS(4650), + [anon_sym_for] = ACTIONS(4650), + [anon_sym_loop] = ACTIONS(4650), + [anon_sym_while] = ACTIONS(4650), + [anon_sym_do] = ACTIONS(4650), + [anon_sym_if] = ACTIONS(4650), + [anon_sym_match] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_try] = ACTIONS(4650), + [anon_sym_return] = ACTIONS(4650), + [anon_sym_source] = ACTIONS(4650), + [anon_sym_source_DASHenv] = ACTIONS(4650), + [anon_sym_register] = ACTIONS(4650), + [anon_sym_hide] = ACTIONS(4650), + [anon_sym_hide_DASHenv] = ACTIONS(4650), + [anon_sym_overlay] = ACTIONS(4650), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_where] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4650), + [anon_sym_not] = ACTIONS(4650), + [anon_sym_null] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4650), + [anon_sym_false] = ACTIONS(4650), + [aux_sym__val_number_decimal_token1] = ACTIONS(4650), + [aux_sym__val_number_token1] = ACTIONS(4650), + [aux_sym__val_number_token2] = ACTIONS(4650), + [aux_sym__val_number_token3] = ACTIONS(4650), + [aux_sym__val_number_token4] = ACTIONS(4650), + [aux_sym__val_number_token5] = ACTIONS(4650), + [aux_sym__val_number_token6] = ACTIONS(4650), + [anon_sym_0b] = ACTIONS(4650), + [anon_sym_0o] = ACTIONS(4650), + [anon_sym_0x] = ACTIONS(4650), + [sym_val_date] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym__str_single_quotes] = ACTIONS(4650), + [sym__str_back_ticks] = ACTIONS(4650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4650), + [anon_sym_CARET] = ACTIONS(4650), [anon_sym_POUND] = ACTIONS(105), }, [1815] = { [sym_comment] = STATE(1815), - [ts_builtin_sym_end] = ACTIONS(4424), - [anon_sym_export] = ACTIONS(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_let] = ACTIONS(4422), - [anon_sym_let_DASHenv] = ACTIONS(4422), - [anon_sym_mut] = ACTIONS(4422), - [anon_sym_const] = ACTIONS(4422), - [anon_sym_SEMI] = ACTIONS(4422), - [sym_cmd_identifier] = ACTIONS(4422), - [anon_sym_LF] = ACTIONS(4424), - [anon_sym_def] = ACTIONS(4422), - [anon_sym_export_DASHenv] = ACTIONS(4422), - [anon_sym_extern] = ACTIONS(4422), - [anon_sym_module] = ACTIONS(4422), - [anon_sym_use] = ACTIONS(4422), - [anon_sym_LBRACK] = ACTIONS(4422), - [anon_sym_LPAREN] = ACTIONS(4422), - [anon_sym_DOLLAR] = ACTIONS(4422), - [anon_sym_error] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4422), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_break] = ACTIONS(4422), - [anon_sym_continue] = ACTIONS(4422), - [anon_sym_for] = ACTIONS(4422), - [anon_sym_loop] = ACTIONS(4422), - [anon_sym_while] = ACTIONS(4422), - [anon_sym_do] = ACTIONS(4422), - [anon_sym_if] = ACTIONS(4422), - [anon_sym_match] = ACTIONS(4422), - [anon_sym_LBRACE] = ACTIONS(4422), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_try] = ACTIONS(4422), - [anon_sym_return] = ACTIONS(4422), - [anon_sym_source] = ACTIONS(4422), - [anon_sym_source_DASHenv] = ACTIONS(4422), - [anon_sym_register] = ACTIONS(4422), - [anon_sym_hide] = ACTIONS(4422), - [anon_sym_hide_DASHenv] = ACTIONS(4422), - [anon_sym_overlay] = ACTIONS(4422), - [anon_sym_as] = ACTIONS(4422), - [anon_sym_where] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_not] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4422), - [anon_sym_true] = ACTIONS(4422), - [anon_sym_false] = ACTIONS(4422), - [aux_sym__val_number_decimal_token1] = ACTIONS(4422), - [aux_sym__val_number_token1] = ACTIONS(4422), - [aux_sym__val_number_token2] = ACTIONS(4422), - [aux_sym__val_number_token3] = ACTIONS(4422), - [aux_sym__val_number_token4] = ACTIONS(4422), - [aux_sym__val_number_token5] = ACTIONS(4422), - [aux_sym__val_number_token6] = ACTIONS(4422), - [anon_sym_0b] = ACTIONS(4422), - [anon_sym_0o] = ACTIONS(4422), - [anon_sym_0x] = ACTIONS(4422), - [sym_val_date] = ACTIONS(4422), - [anon_sym_DQUOTE] = ACTIONS(4422), - [sym__str_single_quotes] = ACTIONS(4422), - [sym__str_back_ticks] = ACTIONS(4422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4422), - [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(4082), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1816] = { [sym_comment] = STATE(1816), - [ts_builtin_sym_end] = ACTIONS(4430), - [anon_sym_export] = ACTIONS(4428), - [anon_sym_alias] = ACTIONS(4428), - [anon_sym_let] = ACTIONS(4428), - [anon_sym_let_DASHenv] = ACTIONS(4428), - [anon_sym_mut] = ACTIONS(4428), - [anon_sym_const] = ACTIONS(4428), - [anon_sym_SEMI] = ACTIONS(4428), - [sym_cmd_identifier] = ACTIONS(4428), - [anon_sym_LF] = ACTIONS(4430), - [anon_sym_def] = ACTIONS(4428), - [anon_sym_export_DASHenv] = ACTIONS(4428), - [anon_sym_extern] = ACTIONS(4428), - [anon_sym_module] = ACTIONS(4428), - [anon_sym_use] = ACTIONS(4428), - [anon_sym_LBRACK] = ACTIONS(4428), - [anon_sym_LPAREN] = ACTIONS(4428), - [anon_sym_DOLLAR] = ACTIONS(4428), - [anon_sym_error] = ACTIONS(4428), - [anon_sym_DASH_DASH] = ACTIONS(4428), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_break] = ACTIONS(4428), - [anon_sym_continue] = ACTIONS(4428), - [anon_sym_for] = ACTIONS(4428), - [anon_sym_loop] = ACTIONS(4428), - [anon_sym_while] = ACTIONS(4428), - [anon_sym_do] = ACTIONS(4428), - [anon_sym_if] = ACTIONS(4428), - [anon_sym_match] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(4428), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_try] = ACTIONS(4428), - [anon_sym_return] = ACTIONS(4428), - [anon_sym_source] = ACTIONS(4428), - [anon_sym_source_DASHenv] = ACTIONS(4428), - [anon_sym_register] = ACTIONS(4428), - [anon_sym_hide] = ACTIONS(4428), - [anon_sym_hide_DASHenv] = ACTIONS(4428), - [anon_sym_overlay] = ACTIONS(4428), - [anon_sym_as] = ACTIONS(4428), - [anon_sym_where] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_not] = ACTIONS(4428), - [anon_sym_null] = ACTIONS(4428), - [anon_sym_true] = ACTIONS(4428), - [anon_sym_false] = ACTIONS(4428), - [aux_sym__val_number_decimal_token1] = ACTIONS(4428), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [aux_sym__val_number_token4] = ACTIONS(4428), - [aux_sym__val_number_token5] = ACTIONS(4428), - [aux_sym__val_number_token6] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4428), - [anon_sym_0o] = ACTIONS(4428), - [anon_sym_0x] = ACTIONS(4428), - [sym_val_date] = ACTIONS(4428), - [anon_sym_DQUOTE] = ACTIONS(4428), - [sym__str_single_quotes] = ACTIONS(4428), - [sym__str_back_ticks] = ACTIONS(4428), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4428), - [anon_sym_CARET] = ACTIONS(4428), + [anon_sym_export] = ACTIONS(4654), + [anon_sym_alias] = ACTIONS(4654), + [anon_sym_let] = ACTIONS(4654), + [anon_sym_let_DASHenv] = ACTIONS(4654), + [anon_sym_mut] = ACTIONS(4654), + [anon_sym_const] = ACTIONS(4654), + [anon_sym_SEMI] = ACTIONS(4654), + [sym_cmd_identifier] = ACTIONS(4654), + [anon_sym_LF] = ACTIONS(4656), + [anon_sym_def] = ACTIONS(4654), + [anon_sym_export_DASHenv] = ACTIONS(4654), + [anon_sym_extern] = ACTIONS(4654), + [anon_sym_module] = ACTIONS(4654), + [anon_sym_use] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_DOLLAR] = ACTIONS(4654), + [anon_sym_error] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4654), + [anon_sym_break] = ACTIONS(4654), + [anon_sym_continue] = ACTIONS(4654), + [anon_sym_for] = ACTIONS(4654), + [anon_sym_loop] = ACTIONS(4654), + [anon_sym_while] = ACTIONS(4654), + [anon_sym_do] = ACTIONS(4654), + [anon_sym_if] = ACTIONS(4654), + [anon_sym_match] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_try] = ACTIONS(4654), + [anon_sym_return] = ACTIONS(4654), + [anon_sym_source] = ACTIONS(4654), + [anon_sym_source_DASHenv] = ACTIONS(4654), + [anon_sym_register] = ACTIONS(4654), + [anon_sym_hide] = ACTIONS(4654), + [anon_sym_hide_DASHenv] = ACTIONS(4654), + [anon_sym_overlay] = ACTIONS(4654), + [anon_sym_where] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4654), + [anon_sym_not] = ACTIONS(4654), + [anon_sym_null] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4654), + [anon_sym_false] = ACTIONS(4654), + [aux_sym__val_number_decimal_token1] = ACTIONS(4654), + [aux_sym__val_number_token1] = ACTIONS(4654), + [aux_sym__val_number_token2] = ACTIONS(4654), + [aux_sym__val_number_token3] = ACTIONS(4654), + [aux_sym__val_number_token4] = ACTIONS(4654), + [aux_sym__val_number_token5] = ACTIONS(4654), + [aux_sym__val_number_token6] = ACTIONS(4654), + [anon_sym_0b] = ACTIONS(4654), + [anon_sym_0o] = ACTIONS(4654), + [anon_sym_0x] = ACTIONS(4654), + [sym_val_date] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym__str_single_quotes] = ACTIONS(4654), + [sym__str_back_ticks] = ACTIONS(4654), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4654), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4654), [anon_sym_POUND] = ACTIONS(105), }, [1817] = { [sym_comment] = STATE(1817), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [sym_cmd_identifier] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_not] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1818] = { [sym_comment] = STATE(1818), - [ts_builtin_sym_end] = ACTIONS(4334), - [anon_sym_export] = ACTIONS(4332), - [anon_sym_alias] = ACTIONS(4332), - [anon_sym_let] = ACTIONS(4332), - [anon_sym_let_DASHenv] = ACTIONS(4332), - [anon_sym_mut] = ACTIONS(4332), - [anon_sym_const] = ACTIONS(4332), - [anon_sym_SEMI] = ACTIONS(4332), - [sym_cmd_identifier] = ACTIONS(4332), - [anon_sym_LF] = ACTIONS(4334), - [anon_sym_def] = ACTIONS(4332), - [anon_sym_export_DASHenv] = ACTIONS(4332), - [anon_sym_extern] = ACTIONS(4332), - [anon_sym_module] = ACTIONS(4332), - [anon_sym_use] = ACTIONS(4332), - [anon_sym_LBRACK] = ACTIONS(4332), - [anon_sym_LPAREN] = ACTIONS(4332), - [anon_sym_DOLLAR] = ACTIONS(4332), - [anon_sym_error] = ACTIONS(4332), - [anon_sym_DASH_DASH] = ACTIONS(4332), - [anon_sym_DASH] = ACTIONS(4332), - [anon_sym_break] = ACTIONS(4332), - [anon_sym_continue] = ACTIONS(4332), - [anon_sym_for] = ACTIONS(4332), - [anon_sym_loop] = ACTIONS(4332), - [anon_sym_while] = ACTIONS(4332), - [anon_sym_do] = ACTIONS(4332), - [anon_sym_if] = ACTIONS(4332), - [anon_sym_match] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(4332), - [anon_sym_DOT] = ACTIONS(4332), - [anon_sym_try] = ACTIONS(4332), - [anon_sym_return] = ACTIONS(4332), - [anon_sym_source] = ACTIONS(4332), - [anon_sym_source_DASHenv] = ACTIONS(4332), - [anon_sym_register] = ACTIONS(4332), - [anon_sym_hide] = ACTIONS(4332), - [anon_sym_hide_DASHenv] = ACTIONS(4332), - [anon_sym_overlay] = ACTIONS(4332), - [anon_sym_as] = ACTIONS(4332), - [anon_sym_where] = ACTIONS(4332), - [anon_sym_PLUS] = ACTIONS(4332), - [anon_sym_not] = ACTIONS(4332), - [anon_sym_null] = ACTIONS(4332), - [anon_sym_true] = ACTIONS(4332), - [anon_sym_false] = ACTIONS(4332), - [aux_sym__val_number_decimal_token1] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4332), - [aux_sym__val_number_token2] = ACTIONS(4332), - [aux_sym__val_number_token3] = ACTIONS(4332), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4332), - [anon_sym_0o] = ACTIONS(4332), - [anon_sym_0x] = ACTIONS(4332), - [sym_val_date] = ACTIONS(4332), - [anon_sym_DQUOTE] = ACTIONS(4332), - [sym__str_single_quotes] = ACTIONS(4332), - [sym__str_back_ticks] = ACTIONS(4332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4332), - [anon_sym_CARET] = ACTIONS(4332), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_RPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(4658), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1819] = { [sym_comment] = STATE(1819), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LF] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_in] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT2] = ACTIONS(4658), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_bit_DASHshl] = ACTIONS(835), - [anon_sym_bit_DASHshr] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT2] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_not_DASHin] = ACTIONS(835), - [anon_sym_starts_DASHwith] = ACTIONS(835), - [anon_sym_ends_DASHwith] = ACTIONS(835), - [anon_sym_EQ_TILDE] = ACTIONS(835), - [anon_sym_BANG_TILDE] = ACTIONS(835), - [anon_sym_bit_DASHand] = ACTIONS(835), - [anon_sym_bit_DASHxor] = ACTIONS(835), - [anon_sym_bit_DASHor] = ACTIONS(835), - [anon_sym_and] = ACTIONS(835), - [anon_sym_xor] = ACTIONS(835), - [anon_sym_or] = ACTIONS(835), - [anon_sym_not] = ACTIONS(835), - [aux_sym__immediate_decimal_token2] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(835), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym__val_number_decimal_token1] = ACTIONS(835), - [aux_sym__val_number_token1] = ACTIONS(835), - [aux_sym__val_number_token2] = ACTIONS(835), - [aux_sym__val_number_token3] = ACTIONS(835), - [aux_sym__val_number_token4] = ACTIONS(835), - [aux_sym__val_number_token5] = ACTIONS(835), - [aux_sym__val_number_token6] = ACTIONS(835), - [sym_filesize_unit] = ACTIONS(835), - [sym_duration_unit] = ACTIONS(835), - [anon_sym_0b] = ACTIONS(835), - [anon_sym_0o] = ACTIONS(835), - [anon_sym_0x] = ACTIONS(835), - [sym_val_date] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [aux_sym_unquoted_token6] = ACTIONS(835), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [sym_cmd_identifier] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_DOT] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1082), + [anon_sym_null] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1082), + [anon_sym_false] = ACTIONS(1082), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_token1] = ACTIONS(1082), + [aux_sym__val_number_token2] = ACTIONS(1082), + [aux_sym__val_number_token3] = ACTIONS(1082), + [aux_sym__val_number_token4] = ACTIONS(1082), + [aux_sym__val_number_token5] = ACTIONS(1082), + [aux_sym__val_number_token6] = ACTIONS(1082), + [anon_sym_0b] = ACTIONS(1082), + [anon_sym_0o] = ACTIONS(1082), + [anon_sym_0x] = ACTIONS(1082), + [sym_val_date] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym__str_single_quotes] = ACTIONS(1082), + [sym__str_back_ticks] = ACTIONS(1082), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(105), }, [1820] = { [sym_comment] = STATE(1820), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_let_DASHenv] = ACTIONS(1389), - [anon_sym_mut] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_cmd_identifier] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1389), - [anon_sym_export_DASHenv] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1389), - [anon_sym_error] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_source] = ACTIONS(1389), - [anon_sym_source_DASHenv] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_hide] = ACTIONS(1389), - [anon_sym_hide_DASHenv] = ACTIONS(1389), - [anon_sym_overlay] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1389), - [aux_sym__val_number_token5] = ACTIONS(1389), - [aux_sym__val_number_token6] = ACTIONS(1389), - [anon_sym_0b] = ACTIONS(1389), - [anon_sym_0o] = ACTIONS(1389), - [anon_sym_0x] = ACTIONS(1389), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_export] = ACTIONS(1086), + [anon_sym_alias] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_let_DASHenv] = ACTIONS(1086), + [anon_sym_mut] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_cmd_identifier] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1086), + [anon_sym_export_DASHenv] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_error] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_source] = ACTIONS(1086), + [anon_sym_source_DASHenv] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_hide] = ACTIONS(1086), + [anon_sym_hide_DASHenv] = ACTIONS(1086), + [anon_sym_overlay] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_where] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_not] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [aux_sym__val_number_decimal_token1] = ACTIONS(1086), + [aux_sym__val_number_token1] = ACTIONS(1086), + [aux_sym__val_number_token2] = ACTIONS(1086), + [aux_sym__val_number_token3] = ACTIONS(1086), + [aux_sym__val_number_token4] = ACTIONS(1086), + [aux_sym__val_number_token5] = ACTIONS(1086), + [aux_sym__val_number_token6] = ACTIONS(1086), + [anon_sym_0b] = ACTIONS(1086), + [anon_sym_0o] = ACTIONS(1086), + [anon_sym_0x] = ACTIONS(1086), + [sym_val_date] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym__str_single_quotes] = ACTIONS(1086), + [sym__str_back_ticks] = ACTIONS(1086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(105), }, [1821] = { [sym_comment] = STATE(1821), - [ts_builtin_sym_end] = ACTIONS(4460), - [anon_sym_export] = ACTIONS(4458), - [anon_sym_alias] = ACTIONS(4458), - [anon_sym_let] = ACTIONS(4458), - [anon_sym_let_DASHenv] = ACTIONS(4458), - [anon_sym_mut] = ACTIONS(4458), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4458), - [sym_cmd_identifier] = ACTIONS(4458), - [anon_sym_LF] = ACTIONS(4460), - [anon_sym_def] = ACTIONS(4458), - [anon_sym_export_DASHenv] = ACTIONS(4458), - [anon_sym_extern] = ACTIONS(4458), - [anon_sym_module] = ACTIONS(4458), - [anon_sym_use] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_DOLLAR] = ACTIONS(4458), - [anon_sym_error] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_loop] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_do] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_match] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_source] = ACTIONS(4458), - [anon_sym_source_DASHenv] = ACTIONS(4458), - [anon_sym_register] = ACTIONS(4458), - [anon_sym_hide] = ACTIONS(4458), - [anon_sym_hide_DASHenv] = ACTIONS(4458), - [anon_sym_overlay] = ACTIONS(4458), - [anon_sym_as] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_not] = ACTIONS(4458), - [anon_sym_null] = ACTIONS(4458), - [anon_sym_true] = ACTIONS(4458), - [anon_sym_false] = ACTIONS(4458), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_token1] = ACTIONS(4458), - [aux_sym__val_number_token2] = ACTIONS(4458), - [aux_sym__val_number_token3] = ACTIONS(4458), - [aux_sym__val_number_token4] = ACTIONS(4458), - [aux_sym__val_number_token5] = ACTIONS(4458), - [aux_sym__val_number_token6] = ACTIONS(4458), - [anon_sym_0b] = ACTIONS(4458), - [anon_sym_0o] = ACTIONS(4458), - [anon_sym_0x] = ACTIONS(4458), - [sym_val_date] = ACTIONS(4458), - [anon_sym_DQUOTE] = ACTIONS(4458), - [sym__str_single_quotes] = ACTIONS(4458), - [sym__str_back_ticks] = ACTIONS(4458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4458), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(4269), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1822] = { [sym_comment] = STATE(1822), - [ts_builtin_sym_end] = ACTIONS(4468), - [anon_sym_export] = ACTIONS(4466), - [anon_sym_alias] = ACTIONS(4466), - [anon_sym_let] = ACTIONS(4466), - [anon_sym_let_DASHenv] = ACTIONS(4466), - [anon_sym_mut] = ACTIONS(4466), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4466), - [sym_cmd_identifier] = ACTIONS(4466), - [anon_sym_LF] = ACTIONS(4468), - [anon_sym_def] = ACTIONS(4466), - [anon_sym_export_DASHenv] = ACTIONS(4466), - [anon_sym_extern] = ACTIONS(4466), - [anon_sym_module] = ACTIONS(4466), - [anon_sym_use] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_LPAREN] = ACTIONS(4466), - [anon_sym_DOLLAR] = ACTIONS(4466), - [anon_sym_error] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_loop] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_do] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_match] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_source] = ACTIONS(4466), - [anon_sym_source_DASHenv] = ACTIONS(4466), - [anon_sym_register] = ACTIONS(4466), - [anon_sym_hide] = ACTIONS(4466), - [anon_sym_hide_DASHenv] = ACTIONS(4466), - [anon_sym_overlay] = ACTIONS(4466), - [anon_sym_as] = ACTIONS(4466), - [anon_sym_where] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_not] = ACTIONS(4466), - [anon_sym_null] = ACTIONS(4466), - [anon_sym_true] = ACTIONS(4466), - [anon_sym_false] = ACTIONS(4466), - [aux_sym__val_number_decimal_token1] = ACTIONS(4466), - [aux_sym__val_number_token1] = ACTIONS(4466), - [aux_sym__val_number_token2] = ACTIONS(4466), - [aux_sym__val_number_token3] = ACTIONS(4466), - [aux_sym__val_number_token4] = ACTIONS(4466), - [aux_sym__val_number_token5] = ACTIONS(4466), - [aux_sym__val_number_token6] = ACTIONS(4466), - [anon_sym_0b] = ACTIONS(4466), - [anon_sym_0o] = ACTIONS(4466), - [anon_sym_0x] = ACTIONS(4466), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(4466), - [sym__str_single_quotes] = ACTIONS(4466), - [sym__str_back_ticks] = ACTIONS(4466), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4466), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4466), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_POUND] = ACTIONS(105), - }, - [1823] = { - [sym_comment] = STATE(1823), - [ts_builtin_sym_end] = ACTIONS(4472), - [anon_sym_export] = ACTIONS(4470), - [anon_sym_alias] = ACTIONS(4470), - [anon_sym_let] = ACTIONS(4470), - [anon_sym_let_DASHenv] = ACTIONS(4470), - [anon_sym_mut] = ACTIONS(4470), - [anon_sym_const] = ACTIONS(4470), - [anon_sym_SEMI] = ACTIONS(4470), - [sym_cmd_identifier] = ACTIONS(4470), - [anon_sym_LF] = ACTIONS(4472), - [anon_sym_def] = ACTIONS(4470), - [anon_sym_export_DASHenv] = ACTIONS(4470), - [anon_sym_extern] = ACTIONS(4470), - [anon_sym_module] = ACTIONS(4470), - [anon_sym_use] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_DOLLAR] = ACTIONS(4470), - [anon_sym_error] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4470), - [anon_sym_break] = ACTIONS(4470), - [anon_sym_continue] = ACTIONS(4470), - [anon_sym_for] = ACTIONS(4470), - [anon_sym_loop] = ACTIONS(4470), - [anon_sym_while] = ACTIONS(4470), - [anon_sym_do] = ACTIONS(4470), - [anon_sym_if] = ACTIONS(4470), - [anon_sym_match] = ACTIONS(4470), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_try] = ACTIONS(4470), - [anon_sym_return] = ACTIONS(4470), - [anon_sym_source] = ACTIONS(4470), - [anon_sym_source_DASHenv] = ACTIONS(4470), - [anon_sym_register] = ACTIONS(4470), - [anon_sym_hide] = ACTIONS(4470), - [anon_sym_hide_DASHenv] = ACTIONS(4470), - [anon_sym_overlay] = ACTIONS(4470), - [anon_sym_as] = ACTIONS(4470), - [anon_sym_where] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4470), - [anon_sym_not] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [aux_sym__val_number_decimal_token1] = ACTIONS(4470), - [aux_sym__val_number_token1] = ACTIONS(4470), - [aux_sym__val_number_token2] = ACTIONS(4470), - [aux_sym__val_number_token3] = ACTIONS(4470), - [aux_sym__val_number_token4] = ACTIONS(4470), - [aux_sym__val_number_token5] = ACTIONS(4470), - [aux_sym__val_number_token6] = ACTIONS(4470), - [anon_sym_0b] = ACTIONS(4470), - [anon_sym_0o] = ACTIONS(4470), - [anon_sym_0x] = ACTIONS(4470), - [sym_val_date] = ACTIONS(4470), - [anon_sym_DQUOTE] = ACTIONS(4470), - [sym__str_single_quotes] = ACTIONS(4470), - [sym__str_back_ticks] = ACTIONS(4470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4470), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4470), - [anon_sym_CARET] = ACTIONS(4470), - [anon_sym_POUND] = ACTIONS(105), - }, - [1824] = { - [sym_comment] = STATE(1824), - [ts_builtin_sym_end] = ACTIONS(4476), - [anon_sym_export] = ACTIONS(4474), - [anon_sym_alias] = ACTIONS(4474), - [anon_sym_let] = ACTIONS(4474), - [anon_sym_let_DASHenv] = ACTIONS(4474), - [anon_sym_mut] = ACTIONS(4474), - [anon_sym_const] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4474), - [sym_cmd_identifier] = ACTIONS(4474), - [anon_sym_LF] = ACTIONS(4476), - [anon_sym_def] = ACTIONS(4474), - [anon_sym_export_DASHenv] = ACTIONS(4474), - [anon_sym_extern] = ACTIONS(4474), - [anon_sym_module] = ACTIONS(4474), - [anon_sym_use] = ACTIONS(4474), - [anon_sym_LBRACK] = ACTIONS(4474), - [anon_sym_LPAREN] = ACTIONS(4474), - [anon_sym_DOLLAR] = ACTIONS(4474), - [anon_sym_error] = ACTIONS(4474), - [anon_sym_DASH_DASH] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4474), - [anon_sym_break] = ACTIONS(4474), - [anon_sym_continue] = ACTIONS(4474), - [anon_sym_for] = ACTIONS(4474), - [anon_sym_loop] = ACTIONS(4474), - [anon_sym_while] = ACTIONS(4474), - [anon_sym_do] = ACTIONS(4474), - [anon_sym_if] = ACTIONS(4474), - [anon_sym_match] = ACTIONS(4474), - [anon_sym_LBRACE] = ACTIONS(4474), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_try] = ACTIONS(4474), - [anon_sym_return] = ACTIONS(4474), - [anon_sym_source] = ACTIONS(4474), - [anon_sym_source_DASHenv] = ACTIONS(4474), - [anon_sym_register] = ACTIONS(4474), - [anon_sym_hide] = ACTIONS(4474), - [anon_sym_hide_DASHenv] = ACTIONS(4474), - [anon_sym_overlay] = ACTIONS(4474), - [anon_sym_as] = ACTIONS(4474), - [anon_sym_where] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4474), - [anon_sym_not] = ACTIONS(4474), - [anon_sym_null] = ACTIONS(4474), - [anon_sym_true] = ACTIONS(4474), - [anon_sym_false] = ACTIONS(4474), - [aux_sym__val_number_decimal_token1] = ACTIONS(4474), - [aux_sym__val_number_token1] = ACTIONS(4474), - [aux_sym__val_number_token2] = ACTIONS(4474), - [aux_sym__val_number_token3] = ACTIONS(4474), - [aux_sym__val_number_token4] = ACTIONS(4474), - [aux_sym__val_number_token5] = ACTIONS(4474), - [aux_sym__val_number_token6] = ACTIONS(4474), - [anon_sym_0b] = ACTIONS(4474), - [anon_sym_0o] = ACTIONS(4474), - [anon_sym_0x] = ACTIONS(4474), - [sym_val_date] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(4474), - [sym__str_single_quotes] = ACTIONS(4474), - [sym__str_back_ticks] = ACTIONS(4474), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4474), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), - [anon_sym_CARET] = ACTIONS(4474), - [anon_sym_POUND] = ACTIONS(105), - }, - [1825] = { - [sym_comment] = STATE(1825), - [ts_builtin_sym_end] = ACTIONS(4354), - [anon_sym_export] = ACTIONS(4352), - [anon_sym_alias] = ACTIONS(4352), - [anon_sym_let] = ACTIONS(4352), - [anon_sym_let_DASHenv] = ACTIONS(4352), - [anon_sym_mut] = ACTIONS(4352), - [anon_sym_const] = ACTIONS(4352), - [anon_sym_SEMI] = ACTIONS(4352), - [sym_cmd_identifier] = ACTIONS(4352), - [anon_sym_LF] = ACTIONS(4354), - [anon_sym_def] = ACTIONS(4352), - [anon_sym_export_DASHenv] = ACTIONS(4352), - [anon_sym_extern] = ACTIONS(4352), - [anon_sym_module] = ACTIONS(4352), - [anon_sym_use] = ACTIONS(4352), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4352), - [anon_sym_DOLLAR] = ACTIONS(4352), - [anon_sym_error] = ACTIONS(4352), - [anon_sym_DASH_DASH] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_break] = ACTIONS(4352), - [anon_sym_continue] = ACTIONS(4352), - [anon_sym_for] = ACTIONS(4352), - [anon_sym_loop] = ACTIONS(4352), - [anon_sym_while] = ACTIONS(4352), - [anon_sym_do] = ACTIONS(4352), - [anon_sym_if] = ACTIONS(4352), - [anon_sym_match] = ACTIONS(4352), - [anon_sym_LBRACE] = ACTIONS(4352), - [anon_sym_DOT] = ACTIONS(4352), - [anon_sym_try] = ACTIONS(4352), - [anon_sym_return] = ACTIONS(4352), - [anon_sym_source] = ACTIONS(4352), - [anon_sym_source_DASHenv] = ACTIONS(4352), - [anon_sym_register] = ACTIONS(4352), - [anon_sym_hide] = ACTIONS(4352), - [anon_sym_hide_DASHenv] = ACTIONS(4352), - [anon_sym_overlay] = ACTIONS(4352), - [anon_sym_as] = ACTIONS(4352), - [anon_sym_where] = ACTIONS(4352), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_not] = ACTIONS(4352), - [anon_sym_null] = ACTIONS(4352), - [anon_sym_true] = ACTIONS(4352), - [anon_sym_false] = ACTIONS(4352), - [aux_sym__val_number_decimal_token1] = ACTIONS(4352), - [aux_sym__val_number_token1] = ACTIONS(4352), - [aux_sym__val_number_token2] = ACTIONS(4352), - [aux_sym__val_number_token3] = ACTIONS(4352), - [aux_sym__val_number_token4] = ACTIONS(4352), - [aux_sym__val_number_token5] = ACTIONS(4352), - [aux_sym__val_number_token6] = ACTIONS(4352), - [anon_sym_0b] = ACTIONS(4352), - [anon_sym_0o] = ACTIONS(4352), - [anon_sym_0x] = ACTIONS(4352), - [sym_val_date] = ACTIONS(4352), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4352), - [sym__str_back_ticks] = ACTIONS(4352), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4352), - [anon_sym_CARET] = ACTIONS(4352), - [anon_sym_POUND] = ACTIONS(105), - }, - [1826] = { - [sym__expression] = STATE(7739), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(7741), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), - [sym_comment] = STATE(1826), - [ts_builtin_sym_end] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_LF] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4440), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), - }, - [1827] = { - [sym_comment] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(4488), - [anon_sym_export] = ACTIONS(4486), - [anon_sym_alias] = ACTIONS(4486), - [anon_sym_let] = ACTIONS(4486), - [anon_sym_let_DASHenv] = ACTIONS(4486), - [anon_sym_mut] = ACTIONS(4486), - [anon_sym_const] = ACTIONS(4486), - [anon_sym_SEMI] = ACTIONS(4486), - [sym_cmd_identifier] = ACTIONS(4486), - [anon_sym_LF] = ACTIONS(4488), - [anon_sym_def] = ACTIONS(4486), - [anon_sym_export_DASHenv] = ACTIONS(4486), - [anon_sym_extern] = ACTIONS(4486), - [anon_sym_module] = ACTIONS(4486), - [anon_sym_use] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(4486), - [anon_sym_LPAREN] = ACTIONS(4486), - [anon_sym_DOLLAR] = ACTIONS(4486), - [anon_sym_error] = ACTIONS(4486), - [anon_sym_DASH_DASH] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4486), - [anon_sym_break] = ACTIONS(4486), - [anon_sym_continue] = ACTIONS(4486), - [anon_sym_for] = ACTIONS(4486), - [anon_sym_loop] = ACTIONS(4486), - [anon_sym_while] = ACTIONS(4486), - [anon_sym_do] = ACTIONS(4486), - [anon_sym_if] = ACTIONS(4486), - [anon_sym_match] = ACTIONS(4486), - [anon_sym_LBRACE] = ACTIONS(4486), - [anon_sym_DOT] = ACTIONS(4486), - [anon_sym_try] = ACTIONS(4486), - [anon_sym_return] = ACTIONS(4486), - [anon_sym_source] = ACTIONS(4486), - [anon_sym_source_DASHenv] = ACTIONS(4486), - [anon_sym_register] = ACTIONS(4486), - [anon_sym_hide] = ACTIONS(4486), - [anon_sym_hide_DASHenv] = ACTIONS(4486), - [anon_sym_overlay] = ACTIONS(4486), - [anon_sym_as] = ACTIONS(4486), - [anon_sym_where] = ACTIONS(4486), - [anon_sym_PLUS] = ACTIONS(4486), - [anon_sym_not] = ACTIONS(4486), - [anon_sym_null] = ACTIONS(4486), - [anon_sym_true] = ACTIONS(4486), - [anon_sym_false] = ACTIONS(4486), - [aux_sym__val_number_decimal_token1] = ACTIONS(4486), - [aux_sym__val_number_token1] = ACTIONS(4486), - [aux_sym__val_number_token2] = ACTIONS(4486), - [aux_sym__val_number_token3] = ACTIONS(4486), - [aux_sym__val_number_token4] = ACTIONS(4486), - [aux_sym__val_number_token5] = ACTIONS(4486), - [aux_sym__val_number_token6] = ACTIONS(4486), - [anon_sym_0b] = ACTIONS(4486), - [anon_sym_0o] = ACTIONS(4486), - [anon_sym_0x] = ACTIONS(4486), - [sym_val_date] = ACTIONS(4486), - [anon_sym_DQUOTE] = ACTIONS(4486), - [sym__str_single_quotes] = ACTIONS(4486), - [sym__str_back_ticks] = ACTIONS(4486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4486), - [anon_sym_CARET] = ACTIONS(4486), - [anon_sym_POUND] = ACTIONS(105), - }, - [1828] = { - [sym_comment] = STATE(1828), [ts_builtin_sym_end] = ACTIONS(809), [anon_sym_SEMI] = ACTIONS(807), [anon_sym_LF] = ACTIONS(809), @@ -235110,7 +234735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_DOT2] = ACTIONS(4663), + [anon_sym_DOT2] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(807), [anon_sym_STAR_STAR] = ACTIONS(807), [anon_sym_PLUS_PLUS] = ACTIONS(807), @@ -235137,7 +234762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(807), [anon_sym_or] = ACTIONS(807), [anon_sym_not] = ACTIONS(807), - [aux_sym__immediate_decimal_token2] = ACTIONS(4283), + [aux_sym__immediate_decimal_token2] = ACTIONS(4277), [anon_sym_null] = ACTIONS(807), [anon_sym_true] = ACTIONS(807), [anon_sym_false] = ACTIONS(807), @@ -235162,5301 +234787,6641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, - [1829] = { - [sym_comment] = STATE(1829), - [ts_builtin_sym_end] = ACTIONS(4046), - [anon_sym_export] = ACTIONS(4044), - [anon_sym_alias] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4044), - [anon_sym_let_DASHenv] = ACTIONS(4044), - [anon_sym_mut] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4044), - [sym_cmd_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_def] = ACTIONS(4044), - [anon_sym_export_DASHenv] = ACTIONS(4044), - [anon_sym_extern] = ACTIONS(4044), - [anon_sym_module] = ACTIONS(4044), - [anon_sym_use] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(4044), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym_DOLLAR] = ACTIONS(4044), - [anon_sym_error] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_loop] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(4044), - [anon_sym_do] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_match] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_DOT] = ACTIONS(4044), - [anon_sym_try] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_source] = ACTIONS(4044), - [anon_sym_source_DASHenv] = ACTIONS(4044), - [anon_sym_register] = ACTIONS(4044), - [anon_sym_hide] = ACTIONS(4044), - [anon_sym_hide_DASHenv] = ACTIONS(4044), - [anon_sym_overlay] = ACTIONS(4044), - [anon_sym_as] = ACTIONS(4044), - [anon_sym_where] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_not] = ACTIONS(4044), - [anon_sym_null] = ACTIONS(4044), - [anon_sym_true] = ACTIONS(4044), - [anon_sym_false] = ACTIONS(4044), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_token1] = ACTIONS(4044), - [aux_sym__val_number_token2] = ACTIONS(4044), - [aux_sym__val_number_token3] = ACTIONS(4044), - [aux_sym__val_number_token4] = ACTIONS(4044), - [aux_sym__val_number_token5] = ACTIONS(4044), - [aux_sym__val_number_token6] = ACTIONS(4044), - [anon_sym_0b] = ACTIONS(4044), - [anon_sym_0o] = ACTIONS(4044), - [anon_sym_0x] = ACTIONS(4044), - [sym_val_date] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym__str_single_quotes] = ACTIONS(4044), - [sym__str_back_ticks] = ACTIONS(4044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4044), - [anon_sym_CARET] = ACTIONS(4044), + [1823] = { + [sym_comment] = STATE(1823), + [ts_builtin_sym_end] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [aux_sym__immediate_decimal_token2] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, - [1830] = { - [sym_comment] = STATE(1830), - [ts_builtin_sym_end] = ACTIONS(4322), - [anon_sym_export] = ACTIONS(4320), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4320), - [anon_sym_let_DASHenv] = ACTIONS(4320), - [anon_sym_mut] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4320), - [sym_cmd_identifier] = ACTIONS(4320), - [anon_sym_LF] = ACTIONS(4322), - [anon_sym_def] = ACTIONS(4320), - [anon_sym_export_DASHenv] = ACTIONS(4320), - [anon_sym_extern] = ACTIONS(4320), - [anon_sym_module] = ACTIONS(4320), - [anon_sym_use] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym_DOLLAR] = ACTIONS(4320), - [anon_sym_error] = ACTIONS(4320), - [anon_sym_DASH_DASH] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_for] = ACTIONS(4320), - [anon_sym_loop] = ACTIONS(4320), - [anon_sym_while] = ACTIONS(4320), - [anon_sym_do] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_match] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_try] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_source] = ACTIONS(4320), - [anon_sym_source_DASHenv] = ACTIONS(4320), - [anon_sym_register] = ACTIONS(4320), - [anon_sym_hide] = ACTIONS(4320), - [anon_sym_hide_DASHenv] = ACTIONS(4320), - [anon_sym_overlay] = ACTIONS(4320), - [anon_sym_as] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_not] = ACTIONS(4320), - [anon_sym_null] = ACTIONS(4320), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(4320), - [aux_sym__val_number_token2] = ACTIONS(4320), - [aux_sym__val_number_token3] = ACTIONS(4320), - [aux_sym__val_number_token4] = ACTIONS(4320), - [aux_sym__val_number_token5] = ACTIONS(4320), - [aux_sym__val_number_token6] = ACTIONS(4320), - [anon_sym_0b] = ACTIONS(4320), - [anon_sym_0o] = ACTIONS(4320), - [anon_sym_0x] = ACTIONS(4320), - [sym_val_date] = ACTIONS(4320), - [anon_sym_DQUOTE] = ACTIONS(4320), - [sym__str_single_quotes] = ACTIONS(4320), - [sym__str_back_ticks] = ACTIONS(4320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4320), - [anon_sym_CARET] = ACTIONS(4320), + [1824] = { + [sym_comment] = STATE(1824), + [ts_builtin_sym_end] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_LF] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_PIPE] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(846), + [anon_sym_DOT2] = ACTIONS(4662), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_STAR_STAR] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(846), + [anon_sym_mod] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_bit_DASHshl] = ACTIONS(846), + [anon_sym_bit_DASHshr] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(846), + [anon_sym_LT2] = ACTIONS(846), + [anon_sym_LT_EQ] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(846), + [anon_sym_not_DASHin] = ACTIONS(846), + [anon_sym_starts_DASHwith] = ACTIONS(846), + [anon_sym_ends_DASHwith] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(846), + [anon_sym_BANG_TILDE] = ACTIONS(846), + [anon_sym_bit_DASHand] = ACTIONS(846), + [anon_sym_bit_DASHxor] = ACTIONS(846), + [anon_sym_bit_DASHor] = ACTIONS(846), + [anon_sym_and] = ACTIONS(846), + [anon_sym_xor] = ACTIONS(846), + [anon_sym_or] = ACTIONS(846), + [anon_sym_not] = ACTIONS(846), + [aux_sym__immediate_decimal_token2] = ACTIONS(4665), + [anon_sym_null] = ACTIONS(846), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym__val_number_decimal_token1] = ACTIONS(846), + [aux_sym__val_number_token1] = ACTIONS(846), + [aux_sym__val_number_token2] = ACTIONS(846), + [aux_sym__val_number_token3] = ACTIONS(846), + [aux_sym__val_number_token4] = ACTIONS(846), + [aux_sym__val_number_token5] = ACTIONS(846), + [aux_sym__val_number_token6] = ACTIONS(846), + [sym_filesize_unit] = ACTIONS(846), + [sym_duration_unit] = ACTIONS(846), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(846), + [anon_sym_0x] = ACTIONS(846), + [sym_val_date] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(846), + [sym__str_single_quotes] = ACTIONS(846), + [sym__str_back_ticks] = ACTIONS(846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [aux_sym_unquoted_token6] = ACTIONS(846), [anon_sym_POUND] = ACTIONS(105), }, - [1831] = { - [sym_comment] = STATE(1831), - [ts_builtin_sym_end] = ACTIONS(4313), - [anon_sym_export] = ACTIONS(4311), - [anon_sym_alias] = ACTIONS(4311), - [anon_sym_let] = ACTIONS(4311), - [anon_sym_let_DASHenv] = ACTIONS(4311), - [anon_sym_mut] = ACTIONS(4311), - [anon_sym_const] = ACTIONS(4311), - [anon_sym_SEMI] = ACTIONS(4311), - [sym_cmd_identifier] = ACTIONS(4311), - [anon_sym_LF] = ACTIONS(4313), - [anon_sym_def] = ACTIONS(4311), - [anon_sym_export_DASHenv] = ACTIONS(4311), - [anon_sym_extern] = ACTIONS(4311), - [anon_sym_module] = ACTIONS(4311), - [anon_sym_use] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4311), - [anon_sym_error] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_for] = ACTIONS(4311), - [anon_sym_loop] = ACTIONS(4311), - [anon_sym_while] = ACTIONS(4311), - [anon_sym_do] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_match] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_try] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_source] = ACTIONS(4311), - [anon_sym_source_DASHenv] = ACTIONS(4311), - [anon_sym_register] = ACTIONS(4311), - [anon_sym_hide] = ACTIONS(4311), - [anon_sym_hide_DASHenv] = ACTIONS(4311), - [anon_sym_overlay] = ACTIONS(4311), - [anon_sym_as] = ACTIONS(4311), - [anon_sym_where] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_not] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4311), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [aux_sym__val_number_decimal_token1] = ACTIONS(4311), - [aux_sym__val_number_token1] = ACTIONS(4311), - [aux_sym__val_number_token2] = ACTIONS(4311), - [aux_sym__val_number_token3] = ACTIONS(4311), - [aux_sym__val_number_token4] = ACTIONS(4311), - [aux_sym__val_number_token5] = ACTIONS(4311), - [aux_sym__val_number_token6] = ACTIONS(4311), - [anon_sym_0b] = ACTIONS(4311), - [anon_sym_0o] = ACTIONS(4311), - [anon_sym_0x] = ACTIONS(4311), - [sym_val_date] = ACTIONS(4311), - [anon_sym_DQUOTE] = ACTIONS(4311), - [sym__str_single_quotes] = ACTIONS(4311), - [sym__str_back_ticks] = ACTIONS(4311), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4311), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), + [1825] = { + [sym_comment] = STATE(1825), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(4667), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [aux_sym__immediate_decimal_token2] = ACTIONS(4269), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, - [1832] = { - [sym_comment] = STATE(1832), + [1826] = { + [sym_comment] = STATE(1826), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(4670), + [anon_sym_POUND] = ACTIONS(105), + }, + [1827] = { + [sym__expression] = STATE(7701), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1787), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), + [sym_comment] = STATE(1827), [ts_builtin_sym_end] = ACTIONS(4309), - [anon_sym_export] = ACTIONS(4307), - [anon_sym_alias] = ACTIONS(4307), - [anon_sym_let] = ACTIONS(4307), - [anon_sym_let_DASHenv] = ACTIONS(4307), - [anon_sym_mut] = ACTIONS(4307), - [anon_sym_const] = ACTIONS(4307), [anon_sym_SEMI] = ACTIONS(4307), - [sym_cmd_identifier] = ACTIONS(4307), [anon_sym_LF] = ACTIONS(4309), - [anon_sym_def] = ACTIONS(4307), - [anon_sym_export_DASHenv] = ACTIONS(4307), - [anon_sym_extern] = ACTIONS(4307), - [anon_sym_module] = ACTIONS(4307), - [anon_sym_use] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_DOLLAR] = ACTIONS(4307), - [anon_sym_error] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_break] = ACTIONS(4307), - [anon_sym_continue] = ACTIONS(4307), - [anon_sym_for] = ACTIONS(4307), - [anon_sym_loop] = ACTIONS(4307), - [anon_sym_while] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4307), - [anon_sym_if] = ACTIONS(4307), - [anon_sym_match] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_try] = ACTIONS(4307), - [anon_sym_return] = ACTIONS(4307), - [anon_sym_source] = ACTIONS(4307), - [anon_sym_source_DASHenv] = ACTIONS(4307), - [anon_sym_register] = ACTIONS(4307), - [anon_sym_hide] = ACTIONS(4307), - [anon_sym_hide_DASHenv] = ACTIONS(4307), - [anon_sym_overlay] = ACTIONS(4307), - [anon_sym_as] = ACTIONS(4307), - [anon_sym_where] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4307), - [anon_sym_not] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4307), - [anon_sym_false] = ACTIONS(4307), - [aux_sym__val_number_decimal_token1] = ACTIONS(4307), - [aux_sym__val_number_token1] = ACTIONS(4307), - [aux_sym__val_number_token2] = ACTIONS(4307), - [aux_sym__val_number_token3] = ACTIONS(4307), - [aux_sym__val_number_token4] = ACTIONS(4307), - [aux_sym__val_number_token5] = ACTIONS(4307), - [aux_sym__val_number_token6] = ACTIONS(4307), - [anon_sym_0b] = ACTIONS(4307), - [anon_sym_0o] = ACTIONS(4307), - [anon_sym_0x] = ACTIONS(4307), - [sym_val_date] = ACTIONS(4307), - [anon_sym_DQUOTE] = ACTIONS(4307), - [sym__str_single_quotes] = ACTIONS(4307), - [sym__str_back_ticks] = ACTIONS(4307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4307), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, - [1833] = { - [sym_comment] = STATE(1833), - [ts_builtin_sym_end] = ACTIONS(4305), - [anon_sym_export] = ACTIONS(4303), - [anon_sym_alias] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4303), - [anon_sym_let_DASHenv] = ACTIONS(4303), - [anon_sym_mut] = ACTIONS(4303), - [anon_sym_const] = ACTIONS(4303), - [anon_sym_SEMI] = ACTIONS(4303), - [sym_cmd_identifier] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4305), - [anon_sym_def] = ACTIONS(4303), - [anon_sym_export_DASHenv] = ACTIONS(4303), - [anon_sym_extern] = ACTIONS(4303), - [anon_sym_module] = ACTIONS(4303), - [anon_sym_use] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4303), - [anon_sym_error] = ACTIONS(4303), - [anon_sym_DASH_DASH] = ACTIONS(4303), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_break] = ACTIONS(4303), - [anon_sym_continue] = ACTIONS(4303), - [anon_sym_for] = ACTIONS(4303), - [anon_sym_loop] = ACTIONS(4303), - [anon_sym_while] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4303), - [anon_sym_if] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(4303), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_try] = ACTIONS(4303), - [anon_sym_return] = ACTIONS(4303), - [anon_sym_source] = ACTIONS(4303), - [anon_sym_source_DASHenv] = ACTIONS(4303), - [anon_sym_register] = ACTIONS(4303), - [anon_sym_hide] = ACTIONS(4303), - [anon_sym_hide_DASHenv] = ACTIONS(4303), - [anon_sym_overlay] = ACTIONS(4303), - [anon_sym_as] = ACTIONS(4303), - [anon_sym_where] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4303), - [anon_sym_not] = ACTIONS(4303), - [anon_sym_null] = ACTIONS(4303), - [anon_sym_true] = ACTIONS(4303), - [anon_sym_false] = ACTIONS(4303), - [aux_sym__val_number_decimal_token1] = ACTIONS(4303), - [aux_sym__val_number_token1] = ACTIONS(4303), - [aux_sym__val_number_token2] = ACTIONS(4303), - [aux_sym__val_number_token3] = ACTIONS(4303), - [aux_sym__val_number_token4] = ACTIONS(4303), - [aux_sym__val_number_token5] = ACTIONS(4303), - [aux_sym__val_number_token6] = ACTIONS(4303), - [anon_sym_0b] = ACTIONS(4303), - [anon_sym_0o] = ACTIONS(4303), - [anon_sym_0x] = ACTIONS(4303), - [sym_val_date] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4303), - [sym__str_back_ticks] = ACTIONS(4303), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4303), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), - [anon_sym_CARET] = ACTIONS(4303), + [1828] = { + [sym_comment] = STATE(1828), + [anon_sym_export] = ACTIONS(1185), + [anon_sym_alias] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_let_DASHenv] = ACTIONS(1185), + [anon_sym_mut] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [sym_cmd_identifier] = ACTIONS(1185), + [anon_sym_LF] = ACTIONS(1187), + [anon_sym_def] = ACTIONS(1185), + [anon_sym_export_DASHenv] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_error] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_loop] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_DOT2] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_source] = ACTIONS(1185), + [anon_sym_source_DASHenv] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_hide] = ACTIONS(1185), + [anon_sym_hide_DASHenv] = ACTIONS(1185), + [anon_sym_overlay] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1185), + [anon_sym_null] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), + [aux_sym__val_number_decimal_token1] = ACTIONS(1185), + [aux_sym__val_number_token1] = ACTIONS(1185), + [aux_sym__val_number_token2] = ACTIONS(1185), + [aux_sym__val_number_token3] = ACTIONS(1185), + [aux_sym__val_number_token4] = ACTIONS(1185), + [aux_sym__val_number_token5] = ACTIONS(1185), + [aux_sym__val_number_token6] = ACTIONS(1185), + [anon_sym_0b] = ACTIONS(1185), + [anon_sym_0o] = ACTIONS(1185), + [anon_sym_0x] = ACTIONS(1185), + [sym_val_date] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym__str_single_quotes] = ACTIONS(1185), + [sym__str_back_ticks] = ACTIONS(1185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(105), + }, + [1829] = { + [sym_comment] = STATE(1829), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [aux_sym_unquoted_token5] = ACTIONS(4293), + [anon_sym_POUND] = ACTIONS(105), + }, + [1830] = { + [sym_comment] = STATE(1830), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(105), + }, + [1831] = { + [sym_comment] = STATE(1831), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(105), + }, + [1832] = { + [sym_comment] = STATE(1832), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(105), + }, + [1833] = { + [sym_comment] = STATE(1833), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [1834] = { [sym_comment] = STATE(1834), - [ts_builtin_sym_end] = ACTIONS(4301), - [anon_sym_export] = ACTIONS(4299), - [anon_sym_alias] = ACTIONS(4299), - [anon_sym_let] = ACTIONS(4299), - [anon_sym_let_DASHenv] = ACTIONS(4299), - [anon_sym_mut] = ACTIONS(4299), - [anon_sym_const] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4299), - [sym_cmd_identifier] = ACTIONS(4299), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_def] = ACTIONS(4299), - [anon_sym_export_DASHenv] = ACTIONS(4299), - [anon_sym_extern] = ACTIONS(4299), - [anon_sym_module] = ACTIONS(4299), - [anon_sym_use] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(4299), - [anon_sym_error] = ACTIONS(4299), - [anon_sym_DASH_DASH] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_for] = ACTIONS(4299), - [anon_sym_loop] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_match] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_source] = ACTIONS(4299), - [anon_sym_source_DASHenv] = ACTIONS(4299), - [anon_sym_register] = ACTIONS(4299), - [anon_sym_hide] = ACTIONS(4299), - [anon_sym_hide_DASHenv] = ACTIONS(4299), - [anon_sym_overlay] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_not] = ACTIONS(4299), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [aux_sym__val_number_decimal_token1] = ACTIONS(4299), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [aux_sym__val_number_token4] = ACTIONS(4299), - [aux_sym__val_number_token5] = ACTIONS(4299), - [aux_sym__val_number_token6] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(4299), - [anon_sym_0o] = ACTIONS(4299), - [anon_sym_0x] = ACTIONS(4299), - [sym_val_date] = ACTIONS(4299), - [anon_sym_DQUOTE] = ACTIONS(4299), - [sym__str_single_quotes] = ACTIONS(4299), - [sym__str_back_ticks] = ACTIONS(4299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [1835] = { + [sym__expression] = STATE(7691), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1851), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1835), - [ts_builtin_sym_end] = ACTIONS(4297), - [anon_sym_export] = ACTIONS(4295), - [anon_sym_alias] = ACTIONS(4295), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_let_DASHenv] = ACTIONS(4295), - [anon_sym_mut] = ACTIONS(4295), - [anon_sym_const] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4295), - [sym_cmd_identifier] = ACTIONS(4295), - [anon_sym_LF] = ACTIONS(4297), - [anon_sym_def] = ACTIONS(4295), - [anon_sym_export_DASHenv] = ACTIONS(4295), - [anon_sym_extern] = ACTIONS(4295), - [anon_sym_module] = ACTIONS(4295), - [anon_sym_use] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_DOLLAR] = ACTIONS(4295), - [anon_sym_error] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_for] = ACTIONS(4295), - [anon_sym_loop] = ACTIONS(4295), - [anon_sym_while] = ACTIONS(4295), - [anon_sym_do] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_match] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_try] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_source] = ACTIONS(4295), - [anon_sym_source_DASHenv] = ACTIONS(4295), - [anon_sym_register] = ACTIONS(4295), - [anon_sym_hide] = ACTIONS(4295), - [anon_sym_hide_DASHenv] = ACTIONS(4295), - [anon_sym_overlay] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_not] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4295), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [aux_sym__val_number_decimal_token1] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(4295), - [aux_sym__val_number_token2] = ACTIONS(4295), - [aux_sym__val_number_token3] = ACTIONS(4295), - [aux_sym__val_number_token4] = ACTIONS(4295), - [aux_sym__val_number_token5] = ACTIONS(4295), - [aux_sym__val_number_token6] = ACTIONS(4295), - [anon_sym_0b] = ACTIONS(4295), - [anon_sym_0o] = ACTIONS(4295), - [anon_sym_0x] = ACTIONS(4295), - [sym_val_date] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4295), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4295), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4295), - [anon_sym_CARET] = ACTIONS(4295), + [ts_builtin_sym_end] = ACTIONS(4348), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1836] = { + [sym__expression] = STATE(7691), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1852), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1836), - [ts_builtin_sym_end] = ACTIONS(4271), - [anon_sym_export] = ACTIONS(4269), - [anon_sym_alias] = ACTIONS(4269), - [anon_sym_let] = ACTIONS(4269), - [anon_sym_let_DASHenv] = ACTIONS(4269), - [anon_sym_mut] = ACTIONS(4269), - [anon_sym_const] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4269), - [sym_cmd_identifier] = ACTIONS(4269), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_def] = ACTIONS(4269), - [anon_sym_export_DASHenv] = ACTIONS(4269), - [anon_sym_extern] = ACTIONS(4269), - [anon_sym_module] = ACTIONS(4269), - [anon_sym_use] = ACTIONS(4269), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4269), - [anon_sym_error] = ACTIONS(4269), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_for] = ACTIONS(4269), - [anon_sym_loop] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_do] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_match] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_source] = ACTIONS(4269), - [anon_sym_source_DASHenv] = ACTIONS(4269), - [anon_sym_register] = ACTIONS(4269), - [anon_sym_hide] = ACTIONS(4269), - [anon_sym_hide_DASHenv] = ACTIONS(4269), - [anon_sym_overlay] = ACTIONS(4269), - [anon_sym_as] = ACTIONS(4269), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_not] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4269), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(4269), - [aux_sym__val_number_token2] = ACTIONS(4269), - [aux_sym__val_number_token3] = ACTIONS(4269), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), - [anon_sym_0b] = ACTIONS(4269), - [anon_sym_0o] = ACTIONS(4269), - [anon_sym_0x] = ACTIONS(4269), - [sym_val_date] = ACTIONS(4269), - [anon_sym_DQUOTE] = ACTIONS(4269), - [sym__str_single_quotes] = ACTIONS(4269), - [sym__str_back_ticks] = ACTIONS(4269), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), + [ts_builtin_sym_end] = ACTIONS(4348), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1837] = { + [sym__expression] = STATE(7691), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1855), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1837), - [ts_builtin_sym_end] = ACTIONS(4260), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_alias] = ACTIONS(4258), - [anon_sym_let] = ACTIONS(4258), - [anon_sym_let_DASHenv] = ACTIONS(4258), - [anon_sym_mut] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4258), - [sym_cmd_identifier] = ACTIONS(4258), - [anon_sym_LF] = ACTIONS(4260), - [anon_sym_def] = ACTIONS(4258), - [anon_sym_export_DASHenv] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym_module] = ACTIONS(4258), - [anon_sym_use] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_DOLLAR] = ACTIONS(4258), - [anon_sym_error] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_loop] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_match] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_source] = ACTIONS(4258), - [anon_sym_source_DASHenv] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_hide] = ACTIONS(4258), - [anon_sym_hide_DASHenv] = ACTIONS(4258), - [anon_sym_overlay] = ACTIONS(4258), - [anon_sym_as] = ACTIONS(4258), - [anon_sym_where] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4258), - [anon_sym_false] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_token1] = ACTIONS(4258), - [aux_sym__val_number_token2] = ACTIONS(4258), - [aux_sym__val_number_token3] = ACTIONS(4258), - [aux_sym__val_number_token4] = ACTIONS(4258), - [aux_sym__val_number_token5] = ACTIONS(4258), - [aux_sym__val_number_token6] = ACTIONS(4258), - [anon_sym_0b] = ACTIONS(4258), - [anon_sym_0o] = ACTIONS(4258), - [anon_sym_0x] = ACTIONS(4258), - [sym_val_date] = ACTIONS(4258), - [anon_sym_DQUOTE] = ACTIONS(4258), - [sym__str_single_quotes] = ACTIONS(4258), - [sym__str_back_ticks] = ACTIONS(4258), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4258), - [anon_sym_CARET] = ACTIONS(4258), + [ts_builtin_sym_end] = ACTIONS(4348), + [anon_sym_SEMI] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1838] = { [sym_comment] = STATE(1838), - [ts_builtin_sym_end] = ACTIONS(3951), - [anon_sym_export] = ACTIONS(3947), - [anon_sym_alias] = ACTIONS(3947), - [anon_sym_let] = ACTIONS(3947), - [anon_sym_let_DASHenv] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [sym_cmd_identifier] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_def] = ACTIONS(3947), - [anon_sym_export_DASHenv] = ACTIONS(3947), - [anon_sym_extern] = ACTIONS(3947), - [anon_sym_module] = ACTIONS(3947), - [anon_sym_use] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [anon_sym_error] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_loop] = ACTIONS(3947), - [anon_sym_while] = ACTIONS(3947), - [anon_sym_do] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_try] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_source] = ACTIONS(3947), - [anon_sym_source_DASHenv] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(3947), - [anon_sym_hide] = ACTIONS(3947), - [anon_sym_hide_DASHenv] = ACTIONS(3947), - [anon_sym_overlay] = ACTIONS(3947), - [anon_sym_as] = ACTIONS(3947), - [anon_sym_where] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(3947), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3947), - [aux_sym__val_number_token5] = ACTIONS(3947), - [aux_sym__val_number_token6] = ACTIONS(3947), - [anon_sym_0b] = ACTIONS(3947), - [anon_sym_0o] = ACTIONS(3947), - [anon_sym_0x] = ACTIONS(3947), - [sym_val_date] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token1] = ACTIONS(4672), + [aux_sym__immediate_decimal_token2] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1839] = { - [sym_block] = STATE(2054), [sym_comment] = STATE(1839), - [anon_sym_export] = ACTIONS(4666), - [anon_sym_alias] = ACTIONS(4666), - [anon_sym_let] = ACTIONS(4666), - [anon_sym_let_DASHenv] = ACTIONS(4666), - [anon_sym_mut] = ACTIONS(4666), - [anon_sym_const] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4666), - [sym_cmd_identifier] = ACTIONS(4666), - [anon_sym_LF] = ACTIONS(4668), - [anon_sym_def] = ACTIONS(4666), - [anon_sym_export_DASHenv] = ACTIONS(4666), - [anon_sym_extern] = ACTIONS(4666), - [anon_sym_module] = ACTIONS(4666), - [anon_sym_use] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4666), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_RPAREN] = ACTIONS(4666), - [anon_sym_DOLLAR] = ACTIONS(4666), - [anon_sym_error] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_break] = ACTIONS(4666), - [anon_sym_continue] = ACTIONS(4666), - [anon_sym_for] = ACTIONS(4666), - [anon_sym_loop] = ACTIONS(4666), - [anon_sym_while] = ACTIONS(4666), - [anon_sym_do] = ACTIONS(4666), - [anon_sym_if] = ACTIONS(4666), - [anon_sym_match] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_try] = ACTIONS(4666), - [anon_sym_return] = ACTIONS(4666), - [anon_sym_source] = ACTIONS(4666), - [anon_sym_source_DASHenv] = ACTIONS(4666), - [anon_sym_register] = ACTIONS(4666), - [anon_sym_hide] = ACTIONS(4666), - [anon_sym_hide_DASHenv] = ACTIONS(4666), - [anon_sym_overlay] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_not] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4666), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [aux_sym__val_number_decimal_token1] = ACTIONS(4666), - [aux_sym__val_number_token1] = ACTIONS(4666), - [aux_sym__val_number_token2] = ACTIONS(4666), - [aux_sym__val_number_token3] = ACTIONS(4666), - [aux_sym__val_number_token4] = ACTIONS(4666), - [aux_sym__val_number_token5] = ACTIONS(4666), - [aux_sym__val_number_token6] = ACTIONS(4666), - [anon_sym_0b] = ACTIONS(4666), - [anon_sym_0o] = ACTIONS(4666), - [anon_sym_0x] = ACTIONS(4666), - [sym_val_date] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(4666), - [sym__str_single_quotes] = ACTIONS(4666), - [sym__str_back_ticks] = ACTIONS(4666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4666), - [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_in] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_DOT2] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_mod] = ACTIONS(815), + [anon_sym_SLASH_SLASH] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_not_DASHin] = ACTIONS(815), + [anon_sym_starts_DASHwith] = ACTIONS(815), + [anon_sym_ends_DASHwith] = ACTIONS(815), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(815), + [anon_sym_bit_DASHand] = ACTIONS(815), + [anon_sym_bit_DASHxor] = ACTIONS(815), + [anon_sym_bit_DASHor] = ACTIONS(815), + [anon_sym_and] = ACTIONS(815), + [anon_sym_xor] = ACTIONS(815), + [anon_sym_or] = ACTIONS(815), + [anon_sym_not] = ACTIONS(815), + [anon_sym_null] = ACTIONS(815), + [anon_sym_true] = ACTIONS(815), + [anon_sym_false] = ACTIONS(815), + [aux_sym__val_number_decimal_token1] = ACTIONS(815), + [aux_sym__val_number_token1] = ACTIONS(815), + [aux_sym__val_number_token2] = ACTIONS(815), + [aux_sym__val_number_token3] = ACTIONS(815), + [aux_sym__val_number_token4] = ACTIONS(815), + [aux_sym__val_number_token5] = ACTIONS(815), + [aux_sym__val_number_token6] = ACTIONS(815), + [sym_filesize_unit] = ACTIONS(815), + [sym_duration_unit] = ACTIONS(815), + [anon_sym_0b] = ACTIONS(815), + [anon_sym_0o] = ACTIONS(815), + [anon_sym_0x] = ACTIONS(815), + [sym_val_date] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [sym__str_single_quotes] = ACTIONS(815), + [sym__str_back_ticks] = ACTIONS(815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(815), + [aux_sym_unquoted_token6] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(105), }, [1840] = { + [sym_expr_parenthesized] = STATE(10599), + [sym_val_variable] = STATE(10599), + [sym__var] = STATE(7451), + [sym_val_number] = STATE(10599), + [sym__val_number_decimal] = STATE(4724), + [sym__val_number] = STATE(4725), + [sym_val_string] = STATE(10599), + [sym__str_double_quotes] = STATE(7148), + [sym_record_entry] = STATE(10176), + [sym__record_key] = STATE(10885), [sym_comment] = STATE(1840), - [ts_builtin_sym_end] = ACTIONS(4246), - [anon_sym_export] = ACTIONS(4244), - [anon_sym_alias] = ACTIONS(4244), - [anon_sym_let] = ACTIONS(4244), - [anon_sym_let_DASHenv] = ACTIONS(4244), - [anon_sym_mut] = ACTIONS(4244), - [anon_sym_const] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4244), - [sym_cmd_identifier] = ACTIONS(4244), - [anon_sym_LF] = ACTIONS(4246), - [anon_sym_def] = ACTIONS(4244), - [anon_sym_export_DASHenv] = ACTIONS(4244), - [anon_sym_extern] = ACTIONS(4244), - [anon_sym_module] = ACTIONS(4244), - [anon_sym_use] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_DOLLAR] = ACTIONS(4244), - [anon_sym_error] = ACTIONS(4244), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_for] = ACTIONS(4244), - [anon_sym_loop] = ACTIONS(4244), - [anon_sym_while] = ACTIONS(4244), - [anon_sym_do] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_match] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_try] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_source] = ACTIONS(4244), - [anon_sym_source_DASHenv] = ACTIONS(4244), - [anon_sym_register] = ACTIONS(4244), - [anon_sym_hide] = ACTIONS(4244), - [anon_sym_hide_DASHenv] = ACTIONS(4244), - [anon_sym_overlay] = ACTIONS(4244), - [anon_sym_as] = ACTIONS(4244), - [anon_sym_where] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_not] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4244), - [anon_sym_true] = ACTIONS(4244), - [anon_sym_false] = ACTIONS(4244), - [aux_sym__val_number_decimal_token1] = ACTIONS(4244), - [aux_sym__val_number_token1] = ACTIONS(4244), - [aux_sym__val_number_token2] = ACTIONS(4244), - [aux_sym__val_number_token3] = ACTIONS(4244), - [aux_sym__val_number_token4] = ACTIONS(4244), - [aux_sym__val_number_token5] = ACTIONS(4244), - [aux_sym__val_number_token6] = ACTIONS(4244), - [anon_sym_0b] = ACTIONS(4244), - [anon_sym_0o] = ACTIONS(4244), - [anon_sym_0x] = ACTIONS(4244), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4244), - [sym__str_single_quotes] = ACTIONS(4244), - [sym__str_back_ticks] = ACTIONS(4244), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4244), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_CARET] = ACTIONS(4244), - [anon_sym_POUND] = ACTIONS(105), + [aux_sym_record_body_repeat1] = STATE(1802), + [anon_sym_export] = ACTIONS(237), + [anon_sym_alias] = ACTIONS(237), + [anon_sym_let] = ACTIONS(237), + [anon_sym_let_DASHenv] = ACTIONS(237), + [anon_sym_mut] = ACTIONS(237), + [anon_sym_const] = ACTIONS(237), + [sym_cmd_identifier] = ACTIONS(237), + [anon_sym_def] = ACTIONS(237), + [anon_sym_export_DASHenv] = ACTIONS(237), + [anon_sym_extern] = ACTIONS(237), + [anon_sym_module] = ACTIONS(237), + [anon_sym_use] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3983), + [anon_sym_error] = ACTIONS(237), + [anon_sym_list] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_break] = ACTIONS(237), + [anon_sym_continue] = ACTIONS(237), + [anon_sym_for] = ACTIONS(237), + [anon_sym_in] = ACTIONS(237), + [anon_sym_loop] = ACTIONS(237), + [anon_sym_make] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [anon_sym_do] = ACTIONS(237), + [anon_sym_if] = ACTIONS(237), + [anon_sym_else] = ACTIONS(237), + [anon_sym_match] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(237), + [anon_sym_catch] = ACTIONS(237), + [anon_sym_return] = ACTIONS(237), + [anon_sym_source] = ACTIONS(237), + [anon_sym_source_DASHenv] = ACTIONS(237), + [anon_sym_register] = ACTIONS(237), + [anon_sym_hide] = ACTIONS(237), + [anon_sym_hide_DASHenv] = ACTIONS(237), + [anon_sym_overlay] = ACTIONS(237), + [anon_sym_new] = ACTIONS(237), + [anon_sym_as] = ACTIONS(237), + [anon_sym_PLUS] = ACTIONS(3967), + [aux_sym__val_number_decimal_token1] = ACTIONS(3969), + [aux_sym__val_number_token1] = ACTIONS(3971), + [aux_sym__val_number_token2] = ACTIONS(3971), + [aux_sym__val_number_token3] = ACTIONS(3971), + [aux_sym__val_number_token4] = ACTIONS(3973), + [aux_sym__val_number_token5] = ACTIONS(3971), + [aux_sym__val_number_token6] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym__str_single_quotes] = ACTIONS(3043), + [sym__str_back_ticks] = ACTIONS(3043), + [aux_sym__record_key_token2] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), }, [1841] = { [sym_comment] = STATE(1841), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_alias] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_let_DASHenv] = ACTIONS(1033), - [anon_sym_mut] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_cmd_identifier] = ACTIONS(1033), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1033), - [anon_sym_export_DASHenv] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_source] = ACTIONS(1033), - [anon_sym_source_DASHenv] = ACTIONS(1033), - [anon_sym_register] = ACTIONS(1033), - [anon_sym_hide] = ACTIONS(1033), - [anon_sym_hide_DASHenv] = ACTIONS(1033), - [anon_sym_overlay] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_not] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [aux_sym__val_number_token4] = ACTIONS(1033), - [aux_sym__val_number_token5] = ACTIONS(1033), - [aux_sym__val_number_token6] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1033), - [anon_sym_0o] = ACTIONS(1033), - [anon_sym_0x] = ACTIONS(1033), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_in] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_DOT2] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_mod] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(807), + [anon_sym_bit_DASHshr] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_LT2] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_not_DASHin] = ACTIONS(807), + [anon_sym_starts_DASHwith] = ACTIONS(807), + [anon_sym_ends_DASHwith] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_BANG_TILDE] = ACTIONS(807), + [anon_sym_bit_DASHand] = ACTIONS(807), + [anon_sym_bit_DASHxor] = ACTIONS(807), + [anon_sym_bit_DASHor] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_not] = ACTIONS(807), + [anon_sym_null] = ACTIONS(807), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [aux_sym__val_number_decimal_token1] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(807), + [aux_sym__val_number_token2] = ACTIONS(807), + [aux_sym__val_number_token3] = ACTIONS(807), + [aux_sym__val_number_token4] = ACTIONS(807), + [aux_sym__val_number_token5] = ACTIONS(807), + [aux_sym__val_number_token6] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(807), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_0b] = ACTIONS(807), + [anon_sym_0o] = ACTIONS(807), + [anon_sym_0x] = ACTIONS(807), + [sym_val_date] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [sym__str_single_quotes] = ACTIONS(807), + [sym__str_back_ticks] = ACTIONS(807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(807), + [aux_sym_unquoted_token6] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(105), }, [1842] = { - [sym_block] = STATE(2055), [sym_comment] = STATE(1842), - [anon_sym_export] = ACTIONS(4666), - [anon_sym_alias] = ACTIONS(4666), - [anon_sym_let] = ACTIONS(4666), - [anon_sym_let_DASHenv] = ACTIONS(4666), - [anon_sym_mut] = ACTIONS(4666), - [anon_sym_const] = ACTIONS(4666), - [anon_sym_SEMI] = ACTIONS(4666), - [sym_cmd_identifier] = ACTIONS(4666), - [anon_sym_LF] = ACTIONS(4668), - [anon_sym_def] = ACTIONS(4666), - [anon_sym_export_DASHenv] = ACTIONS(4666), - [anon_sym_extern] = ACTIONS(4666), - [anon_sym_module] = ACTIONS(4666), - [anon_sym_use] = ACTIONS(4666), - [anon_sym_LBRACK] = ACTIONS(4666), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_RPAREN] = ACTIONS(4666), - [anon_sym_DOLLAR] = ACTIONS(4666), - [anon_sym_error] = ACTIONS(4666), - [anon_sym_DASH] = ACTIONS(4666), - [anon_sym_break] = ACTIONS(4666), - [anon_sym_continue] = ACTIONS(4666), - [anon_sym_for] = ACTIONS(4666), - [anon_sym_loop] = ACTIONS(4666), - [anon_sym_while] = ACTIONS(4666), - [anon_sym_do] = ACTIONS(4666), - [anon_sym_if] = ACTIONS(4666), - [anon_sym_match] = ACTIONS(4666), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_try] = ACTIONS(4666), - [anon_sym_return] = ACTIONS(4666), - [anon_sym_source] = ACTIONS(4666), - [anon_sym_source_DASHenv] = ACTIONS(4666), - [anon_sym_register] = ACTIONS(4666), - [anon_sym_hide] = ACTIONS(4666), - [anon_sym_hide_DASHenv] = ACTIONS(4666), - [anon_sym_overlay] = ACTIONS(4666), - [anon_sym_where] = ACTIONS(4666), - [anon_sym_PLUS] = ACTIONS(4666), - [anon_sym_not] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4666), - [anon_sym_true] = ACTIONS(4666), - [anon_sym_false] = ACTIONS(4666), - [aux_sym__val_number_decimal_token1] = ACTIONS(4666), - [aux_sym__val_number_token1] = ACTIONS(4666), - [aux_sym__val_number_token2] = ACTIONS(4666), - [aux_sym__val_number_token3] = ACTIONS(4666), - [aux_sym__val_number_token4] = ACTIONS(4666), - [aux_sym__val_number_token5] = ACTIONS(4666), - [aux_sym__val_number_token6] = ACTIONS(4666), - [anon_sym_0b] = ACTIONS(4666), - [anon_sym_0o] = ACTIONS(4666), - [anon_sym_0x] = ACTIONS(4666), - [sym_val_date] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(4666), - [sym__str_single_quotes] = ACTIONS(4666), - [sym__str_back_ticks] = ACTIONS(4666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4666), - [anon_sym_CARET] = ACTIONS(4666), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_in] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_STAR_STAR] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_mod] = ACTIONS(855), + [anon_sym_SLASH_SLASH] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_bit_DASHshl] = ACTIONS(855), + [anon_sym_bit_DASHshr] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_not_DASHin] = ACTIONS(855), + [anon_sym_starts_DASHwith] = ACTIONS(855), + [anon_sym_ends_DASHwith] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [anon_sym_bit_DASHand] = ACTIONS(855), + [anon_sym_bit_DASHxor] = ACTIONS(855), + [anon_sym_bit_DASHor] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_not] = ACTIONS(855), + [anon_sym_null] = ACTIONS(855), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [aux_sym__val_number_decimal_token1] = ACTIONS(855), + [aux_sym__val_number_token1] = ACTIONS(855), + [aux_sym__val_number_token2] = ACTIONS(855), + [aux_sym__val_number_token3] = ACTIONS(855), + [aux_sym__val_number_token4] = ACTIONS(855), + [aux_sym__val_number_token5] = ACTIONS(855), + [aux_sym__val_number_token6] = ACTIONS(855), + [sym_filesize_unit] = ACTIONS(855), + [sym_duration_unit] = ACTIONS(855), + [anon_sym_0b] = ACTIONS(855), + [anon_sym_0o] = ACTIONS(855), + [anon_sym_0x] = ACTIONS(855), + [sym_val_date] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [sym__str_single_quotes] = ACTIONS(855), + [sym__str_back_ticks] = ACTIONS(855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), + [aux_sym_unquoted_token6] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(105), }, [1843] = { [sym_comment] = STATE(1843), - [ts_builtin_sym_end] = ACTIONS(4242), - [anon_sym_export] = ACTIONS(4240), - [anon_sym_alias] = ACTIONS(4240), - [anon_sym_let] = ACTIONS(4240), - [anon_sym_let_DASHenv] = ACTIONS(4240), - [anon_sym_mut] = ACTIONS(4240), - [anon_sym_const] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [sym_cmd_identifier] = ACTIONS(4240), - [anon_sym_LF] = ACTIONS(4242), - [anon_sym_def] = ACTIONS(4240), - [anon_sym_export_DASHenv] = ACTIONS(4240), - [anon_sym_extern] = ACTIONS(4240), - [anon_sym_module] = ACTIONS(4240), - [anon_sym_use] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym_DOLLAR] = ACTIONS(4240), - [anon_sym_error] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_continue] = ACTIONS(4240), - [anon_sym_for] = ACTIONS(4240), - [anon_sym_loop] = ACTIONS(4240), - [anon_sym_while] = ACTIONS(4240), - [anon_sym_do] = ACTIONS(4240), - [anon_sym_if] = ACTIONS(4240), - [anon_sym_match] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_try] = ACTIONS(4240), - [anon_sym_return] = ACTIONS(4240), - [anon_sym_source] = ACTIONS(4240), - [anon_sym_source_DASHenv] = ACTIONS(4240), - [anon_sym_register] = ACTIONS(4240), - [anon_sym_hide] = ACTIONS(4240), - [anon_sym_hide_DASHenv] = ACTIONS(4240), - [anon_sym_overlay] = ACTIONS(4240), - [anon_sym_as] = ACTIONS(4240), - [anon_sym_where] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4240), - [anon_sym_not] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4240), - [anon_sym_false] = ACTIONS(4240), - [aux_sym__val_number_decimal_token1] = ACTIONS(4240), - [aux_sym__val_number_token1] = ACTIONS(4240), - [aux_sym__val_number_token2] = ACTIONS(4240), - [aux_sym__val_number_token3] = ACTIONS(4240), - [aux_sym__val_number_token4] = ACTIONS(4240), - [aux_sym__val_number_token5] = ACTIONS(4240), - [aux_sym__val_number_token6] = ACTIONS(4240), - [anon_sym_0b] = ACTIONS(4240), - [anon_sym_0o] = ACTIONS(4240), - [anon_sym_0x] = ACTIONS(4240), - [sym_val_date] = ACTIONS(4240), - [anon_sym_DQUOTE] = ACTIONS(4240), - [sym__str_single_quotes] = ACTIONS(4240), - [sym__str_back_ticks] = ACTIONS(4240), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4240), - [anon_sym_CARET] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_LF] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_in] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT2] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_bit_DASHshl] = ACTIONS(894), + [anon_sym_bit_DASHshr] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_not_DASHin] = ACTIONS(894), + [anon_sym_starts_DASHwith] = ACTIONS(894), + [anon_sym_ends_DASHwith] = ACTIONS(894), + [anon_sym_EQ_TILDE] = ACTIONS(894), + [anon_sym_BANG_TILDE] = ACTIONS(894), + [anon_sym_bit_DASHand] = ACTIONS(894), + [anon_sym_bit_DASHxor] = ACTIONS(894), + [anon_sym_bit_DASHor] = ACTIONS(894), + [anon_sym_and] = ACTIONS(894), + [anon_sym_xor] = ACTIONS(894), + [anon_sym_or] = ACTIONS(894), + [anon_sym_not] = ACTIONS(894), + [anon_sym_null] = ACTIONS(894), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym__val_number_decimal_token1] = ACTIONS(894), + [aux_sym__val_number_token1] = ACTIONS(894), + [aux_sym__val_number_token2] = ACTIONS(894), + [aux_sym__val_number_token3] = ACTIONS(894), + [aux_sym__val_number_token4] = ACTIONS(894), + [aux_sym__val_number_token5] = ACTIONS(894), + [aux_sym__val_number_token6] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(894), + [anon_sym_0b] = ACTIONS(894), + [anon_sym_0o] = ACTIONS(894), + [anon_sym_0x] = ACTIONS(894), + [sym_val_date] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [sym__str_single_quotes] = ACTIONS(894), + [sym__str_back_ticks] = ACTIONS(894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(894), + [aux_sym_unquoted_token6] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(105), }, [1844] = { [sym_comment] = STATE(1844), - [ts_builtin_sym_end] = ACTIONS(4238), - [anon_sym_export] = ACTIONS(4236), - [anon_sym_alias] = ACTIONS(4236), - [anon_sym_let] = ACTIONS(4236), - [anon_sym_let_DASHenv] = ACTIONS(4236), - [anon_sym_mut] = ACTIONS(4236), - [anon_sym_const] = ACTIONS(4236), - [anon_sym_SEMI] = ACTIONS(4236), - [sym_cmd_identifier] = ACTIONS(4236), - [anon_sym_LF] = ACTIONS(4238), - [anon_sym_def] = ACTIONS(4236), - [anon_sym_export_DASHenv] = ACTIONS(4236), - [anon_sym_extern] = ACTIONS(4236), - [anon_sym_module] = ACTIONS(4236), - [anon_sym_use] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_DOLLAR] = ACTIONS(4236), - [anon_sym_error] = ACTIONS(4236), - [anon_sym_DASH_DASH] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_for] = ACTIONS(4236), - [anon_sym_loop] = ACTIONS(4236), - [anon_sym_while] = ACTIONS(4236), - [anon_sym_do] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_match] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4236), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_try] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_source] = ACTIONS(4236), - [anon_sym_source_DASHenv] = ACTIONS(4236), - [anon_sym_register] = ACTIONS(4236), - [anon_sym_hide] = ACTIONS(4236), - [anon_sym_hide_DASHenv] = ACTIONS(4236), - [anon_sym_overlay] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_where] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_not] = ACTIONS(4236), - [anon_sym_null] = ACTIONS(4236), - [anon_sym_true] = ACTIONS(4236), - [anon_sym_false] = ACTIONS(4236), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_token1] = ACTIONS(4236), - [aux_sym__val_number_token2] = ACTIONS(4236), - [aux_sym__val_number_token3] = ACTIONS(4236), - [aux_sym__val_number_token4] = ACTIONS(4236), - [aux_sym__val_number_token5] = ACTIONS(4236), - [aux_sym__val_number_token6] = ACTIONS(4236), - [anon_sym_0b] = ACTIONS(4236), - [anon_sym_0o] = ACTIONS(4236), - [anon_sym_0x] = ACTIONS(4236), - [sym_val_date] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [sym__str_single_quotes] = ACTIONS(4236), - [sym__str_back_ticks] = ACTIONS(4236), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4236), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_CARET] = ACTIONS(4236), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token1] = ACTIONS(4676), + [aux_sym__immediate_decimal_token2] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1845] = { [sym_comment] = STATE(1845), - [ts_builtin_sym_end] = ACTIONS(4230), - [anon_sym_export] = ACTIONS(4228), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_let_DASHenv] = ACTIONS(4228), - [anon_sym_mut] = ACTIONS(4228), - [anon_sym_const] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4228), - [sym_cmd_identifier] = ACTIONS(4228), - [anon_sym_LF] = ACTIONS(4230), - [anon_sym_def] = ACTIONS(4228), - [anon_sym_export_DASHenv] = ACTIONS(4228), - [anon_sym_extern] = ACTIONS(4228), - [anon_sym_module] = ACTIONS(4228), - [anon_sym_use] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym_DOLLAR] = ACTIONS(4228), - [anon_sym_error] = ACTIONS(4228), - [anon_sym_DASH_DASH] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_loop] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_do] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_source] = ACTIONS(4228), - [anon_sym_source_DASHenv] = ACTIONS(4228), - [anon_sym_register] = ACTIONS(4228), - [anon_sym_hide] = ACTIONS(4228), - [anon_sym_hide_DASHenv] = ACTIONS(4228), - [anon_sym_overlay] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_not] = ACTIONS(4228), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [aux_sym__val_number_decimal_token1] = ACTIONS(4228), - [aux_sym__val_number_token1] = ACTIONS(4228), - [aux_sym__val_number_token2] = ACTIONS(4228), - [aux_sym__val_number_token3] = ACTIONS(4228), - [aux_sym__val_number_token4] = ACTIONS(4228), - [aux_sym__val_number_token5] = ACTIONS(4228), - [aux_sym__val_number_token6] = ACTIONS(4228), - [anon_sym_0b] = ACTIONS(4228), - [anon_sym_0o] = ACTIONS(4228), - [anon_sym_0x] = ACTIONS(4228), - [sym_val_date] = ACTIONS(4228), - [anon_sym_DQUOTE] = ACTIONS(4228), - [sym__str_single_quotes] = ACTIONS(4228), - [sym__str_back_ticks] = ACTIONS(4228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4228), - [anon_sym_CARET] = ACTIONS(4228), + [ts_builtin_sym_end] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_alias] = ACTIONS(3165), + [anon_sym_let] = ACTIONS(3165), + [anon_sym_let_DASHenv] = ACTIONS(3165), + [anon_sym_mut] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [sym_cmd_identifier] = ACTIONS(3165), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3165), + [anon_sym_export_DASHenv] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3165), + [anon_sym_error] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_loop] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3165), + [anon_sym_DOT2] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_source] = ACTIONS(3165), + [anon_sym_source_DASHenv] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_hide] = ACTIONS(3165), + [anon_sym_hide_DASHenv] = ACTIONS(3165), + [anon_sym_overlay] = ACTIONS(3165), + [anon_sym_where] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym__val_number_decimal_token1] = ACTIONS(3165), + [aux_sym__val_number_token1] = ACTIONS(3165), + [aux_sym__val_number_token2] = ACTIONS(3165), + [aux_sym__val_number_token3] = ACTIONS(3165), + [aux_sym__val_number_token4] = ACTIONS(3165), + [aux_sym__val_number_token5] = ACTIONS(3165), + [aux_sym__val_number_token6] = ACTIONS(3165), + [anon_sym_0b] = ACTIONS(3165), + [anon_sym_0o] = ACTIONS(3165), + [anon_sym_0x] = ACTIONS(3165), + [sym_val_date] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym__str_single_quotes] = ACTIONS(3165), + [sym__str_back_ticks] = ACTIONS(3165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), [anon_sym_POUND] = ACTIONS(105), }, [1846] = { [sym_comment] = STATE(1846), - [ts_builtin_sym_end] = ACTIONS(4226), - [anon_sym_export] = ACTIONS(4224), - [anon_sym_alias] = ACTIONS(4224), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_let_DASHenv] = ACTIONS(4224), - [anon_sym_mut] = ACTIONS(4224), - [anon_sym_const] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4224), - [sym_cmd_identifier] = ACTIONS(4224), - [anon_sym_LF] = ACTIONS(4226), - [anon_sym_def] = ACTIONS(4224), - [anon_sym_export_DASHenv] = ACTIONS(4224), - [anon_sym_extern] = ACTIONS(4224), - [anon_sym_module] = ACTIONS(4224), - [anon_sym_use] = ACTIONS(4224), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_DOLLAR] = ACTIONS(4224), - [anon_sym_error] = ACTIONS(4224), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_loop] = ACTIONS(4224), - [anon_sym_while] = ACTIONS(4224), - [anon_sym_do] = ACTIONS(4224), - [anon_sym_if] = ACTIONS(4224), - [anon_sym_match] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_try] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_source] = ACTIONS(4224), - [anon_sym_source_DASHenv] = ACTIONS(4224), - [anon_sym_register] = ACTIONS(4224), - [anon_sym_hide] = ACTIONS(4224), - [anon_sym_hide_DASHenv] = ACTIONS(4224), - [anon_sym_overlay] = ACTIONS(4224), - [anon_sym_as] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_not] = ACTIONS(4224), - [anon_sym_null] = ACTIONS(4224), - [anon_sym_true] = ACTIONS(4224), - [anon_sym_false] = ACTIONS(4224), - [aux_sym__val_number_decimal_token1] = ACTIONS(4224), - [aux_sym__val_number_token1] = ACTIONS(4224), - [aux_sym__val_number_token2] = ACTIONS(4224), - [aux_sym__val_number_token3] = ACTIONS(4224), - [aux_sym__val_number_token4] = ACTIONS(4224), - [aux_sym__val_number_token5] = ACTIONS(4224), - [aux_sym__val_number_token6] = ACTIONS(4224), - [anon_sym_0b] = ACTIONS(4224), - [anon_sym_0o] = ACTIONS(4224), - [anon_sym_0x] = ACTIONS(4224), - [sym_val_date] = ACTIONS(4224), - [anon_sym_DQUOTE] = ACTIONS(4224), - [sym__str_single_quotes] = ACTIONS(4224), - [sym__str_back_ticks] = ACTIONS(4224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4224), - [anon_sym_CARET] = ACTIONS(4224), + [ts_builtin_sym_end] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1221), + [anon_sym_alias] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_let_DASHenv] = ACTIONS(1221), + [anon_sym_mut] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [sym_cmd_identifier] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_def] = ACTIONS(1221), + [anon_sym_export_DASHenv] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_module] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_error] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_source] = ACTIONS(1221), + [anon_sym_source_DASHenv] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_hide] = ACTIONS(1221), + [anon_sym_hide_DASHenv] = ACTIONS(1221), + [anon_sym_overlay] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_not] = ACTIONS(1221), + [anon_sym_null] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [aux_sym__val_number_decimal_token1] = ACTIONS(1221), + [aux_sym__val_number_token1] = ACTIONS(1221), + [aux_sym__val_number_token2] = ACTIONS(1221), + [aux_sym__val_number_token3] = ACTIONS(1221), + [aux_sym__val_number_token4] = ACTIONS(1221), + [aux_sym__val_number_token5] = ACTIONS(1221), + [aux_sym__val_number_token6] = ACTIONS(1221), + [anon_sym_0b] = ACTIONS(1221), + [anon_sym_0o] = ACTIONS(1221), + [anon_sym_0x] = ACTIONS(1221), + [sym_val_date] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym__str_single_quotes] = ACTIONS(1221), + [sym__str_back_ticks] = ACTIONS(1221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_POUND] = ACTIONS(105), }, [1847] = { [sym_comment] = STATE(1847), - [ts_builtin_sym_end] = ACTIONS(4222), - [anon_sym_export] = ACTIONS(4220), - [anon_sym_alias] = ACTIONS(4220), - [anon_sym_let] = ACTIONS(4220), - [anon_sym_let_DASHenv] = ACTIONS(4220), - [anon_sym_mut] = ACTIONS(4220), - [anon_sym_const] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4220), - [sym_cmd_identifier] = ACTIONS(4220), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_def] = ACTIONS(4220), - [anon_sym_export_DASHenv] = ACTIONS(4220), - [anon_sym_extern] = ACTIONS(4220), - [anon_sym_module] = ACTIONS(4220), - [anon_sym_use] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4220), - [anon_sym_error] = ACTIONS(4220), - [anon_sym_DASH_DASH] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_loop] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_do] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_match] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4220), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_try] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_source] = ACTIONS(4220), - [anon_sym_source_DASHenv] = ACTIONS(4220), - [anon_sym_register] = ACTIONS(4220), - [anon_sym_hide] = ACTIONS(4220), - [anon_sym_hide_DASHenv] = ACTIONS(4220), - [anon_sym_overlay] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_not] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [aux_sym__val_number_decimal_token1] = ACTIONS(4220), - [aux_sym__val_number_token1] = ACTIONS(4220), - [aux_sym__val_number_token2] = ACTIONS(4220), - [aux_sym__val_number_token3] = ACTIONS(4220), - [aux_sym__val_number_token4] = ACTIONS(4220), - [aux_sym__val_number_token5] = ACTIONS(4220), - [aux_sym__val_number_token6] = ACTIONS(4220), - [anon_sym_0b] = ACTIONS(4220), - [anon_sym_0o] = ACTIONS(4220), - [anon_sym_0x] = ACTIONS(4220), - [sym_val_date] = ACTIONS(4220), - [anon_sym_DQUOTE] = ACTIONS(4220), - [sym__str_single_quotes] = ACTIONS(4220), - [sym__str_back_ticks] = ACTIONS(4220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4220), - [anon_sym_CARET] = ACTIONS(4220), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(4684), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1848] = { [sym_comment] = STATE(1848), - [ts_builtin_sym_end] = ACTIONS(4202), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_alias] = ACTIONS(4200), - [anon_sym_let] = ACTIONS(4200), - [anon_sym_let_DASHenv] = ACTIONS(4200), - [anon_sym_mut] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4200), - [sym_cmd_identifier] = ACTIONS(4200), - [anon_sym_LF] = ACTIONS(4202), - [anon_sym_def] = ACTIONS(4200), - [anon_sym_export_DASHenv] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym_module] = ACTIONS(4200), - [anon_sym_use] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_LPAREN] = ACTIONS(4200), - [anon_sym_DOLLAR] = ACTIONS(4200), - [anon_sym_error] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_loop] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_match] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4200), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_source] = ACTIONS(4200), - [anon_sym_source_DASHenv] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_hide] = ACTIONS(4200), - [anon_sym_hide_DASHenv] = ACTIONS(4200), - [anon_sym_overlay] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [aux_sym__val_number_decimal_token1] = ACTIONS(4200), - [aux_sym__val_number_token1] = ACTIONS(4200), - [aux_sym__val_number_token2] = ACTIONS(4200), - [aux_sym__val_number_token3] = ACTIONS(4200), - [aux_sym__val_number_token4] = ACTIONS(4200), - [aux_sym__val_number_token5] = ACTIONS(4200), - [aux_sym__val_number_token6] = ACTIONS(4200), - [anon_sym_0b] = ACTIONS(4200), - [anon_sym_0o] = ACTIONS(4200), - [anon_sym_0x] = ACTIONS(4200), - [sym_val_date] = ACTIONS(4200), - [anon_sym_DQUOTE] = ACTIONS(4200), - [sym__str_single_quotes] = ACTIONS(4200), - [sym__str_back_ticks] = ACTIONS(4200), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4200), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4200), - [anon_sym_CARET] = ACTIONS(4200), + [ts_builtin_sym_end] = ACTIONS(1219), + [anon_sym_export] = ACTIONS(1217), + [anon_sym_alias] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_let_DASHenv] = ACTIONS(1217), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [sym_cmd_identifier] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_def] = ACTIONS(1217), + [anon_sym_export_DASHenv] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym_module] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_error] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_source] = ACTIONS(1217), + [anon_sym_source_DASHenv] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_hide] = ACTIONS(1217), + [anon_sym_hide_DASHenv] = ACTIONS(1217), + [anon_sym_overlay] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_not] = ACTIONS(1217), + [anon_sym_null] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1217), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1217), + [aux_sym__val_number_token5] = ACTIONS(1217), + [aux_sym__val_number_token6] = ACTIONS(1217), + [anon_sym_0b] = ACTIONS(1217), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym__str_single_quotes] = ACTIONS(1217), + [sym__str_back_ticks] = ACTIONS(1217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), [anon_sym_POUND] = ACTIONS(105), }, [1849] = { [sym_comment] = STATE(1849), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(951), + [anon_sym_export] = ACTIONS(949), + [anon_sym_alias] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_let_DASHenv] = ACTIONS(949), + [anon_sym_mut] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [sym_cmd_identifier] = ACTIONS(949), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_def] = ACTIONS(949), + [anon_sym_export_DASHenv] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym_module] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_error] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(949), + [anon_sym_source_DASHenv] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_hide_DASHenv] = ACTIONS(949), + [anon_sym_overlay] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_not] = ACTIONS(949), + [anon_sym_null] = ACTIONS(949), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [aux_sym__val_number_decimal_token1] = ACTIONS(949), + [aux_sym__val_number_token1] = ACTIONS(949), + [aux_sym__val_number_token2] = ACTIONS(949), + [aux_sym__val_number_token3] = ACTIONS(949), + [aux_sym__val_number_token4] = ACTIONS(949), + [aux_sym__val_number_token5] = ACTIONS(949), + [aux_sym__val_number_token6] = ACTIONS(949), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(949), + [anon_sym_0x] = ACTIONS(949), + [sym_val_date] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym__str_single_quotes] = ACTIONS(949), + [sym__str_back_ticks] = ACTIONS(949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(105), }, [1850] = { [sym_comment] = STATE(1850), - [ts_builtin_sym_end] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4194), - [anon_sym_alias] = ACTIONS(4194), - [anon_sym_let] = ACTIONS(4194), - [anon_sym_let_DASHenv] = ACTIONS(4194), - [anon_sym_mut] = ACTIONS(4194), - [anon_sym_const] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4194), - [sym_cmd_identifier] = ACTIONS(4194), - [anon_sym_LF] = ACTIONS(4196), - [anon_sym_def] = ACTIONS(4194), - [anon_sym_export_DASHenv] = ACTIONS(4194), - [anon_sym_extern] = ACTIONS(4194), - [anon_sym_module] = ACTIONS(4194), - [anon_sym_use] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4194), - [anon_sym_LPAREN] = ACTIONS(4194), - [anon_sym_DOLLAR] = ACTIONS(4194), - [anon_sym_error] = ACTIONS(4194), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_for] = ACTIONS(4194), - [anon_sym_loop] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_do] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_match] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_source] = ACTIONS(4194), - [anon_sym_source_DASHenv] = ACTIONS(4194), - [anon_sym_register] = ACTIONS(4194), - [anon_sym_hide] = ACTIONS(4194), - [anon_sym_hide_DASHenv] = ACTIONS(4194), - [anon_sym_overlay] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_not] = ACTIONS(4194), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [aux_sym__val_number_decimal_token1] = ACTIONS(4194), - [aux_sym__val_number_token1] = ACTIONS(4194), - [aux_sym__val_number_token2] = ACTIONS(4194), - [aux_sym__val_number_token3] = ACTIONS(4194), - [aux_sym__val_number_token4] = ACTIONS(4194), - [aux_sym__val_number_token5] = ACTIONS(4194), - [aux_sym__val_number_token6] = ACTIONS(4194), - [anon_sym_0b] = ACTIONS(4194), - [anon_sym_0o] = ACTIONS(4194), - [anon_sym_0x] = ACTIONS(4194), - [sym_val_date] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym__str_single_quotes] = ACTIONS(4194), - [sym__str_back_ticks] = ACTIONS(4194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4194), - [anon_sym_CARET] = ACTIONS(4194), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT2] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [aux_sym__immediate_decimal_token2] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1851] = { + [sym__expression] = STATE(7778), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1869), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1851), - [ts_builtin_sym_end] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4190), - [anon_sym_alias] = ACTIONS(4190), - [anon_sym_let] = ACTIONS(4190), - [anon_sym_let_DASHenv] = ACTIONS(4190), - [anon_sym_mut] = ACTIONS(4190), - [anon_sym_const] = ACTIONS(4190), - [anon_sym_SEMI] = ACTIONS(4190), - [sym_cmd_identifier] = ACTIONS(4190), - [anon_sym_LF] = ACTIONS(4192), - [anon_sym_def] = ACTIONS(4190), - [anon_sym_export_DASHenv] = ACTIONS(4190), - [anon_sym_extern] = ACTIONS(4190), - [anon_sym_module] = ACTIONS(4190), - [anon_sym_use] = ACTIONS(4190), - [anon_sym_LBRACK] = ACTIONS(4190), - [anon_sym_LPAREN] = ACTIONS(4190), - [anon_sym_DOLLAR] = ACTIONS(4190), - [anon_sym_error] = ACTIONS(4190), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_break] = ACTIONS(4190), - [anon_sym_continue] = ACTIONS(4190), - [anon_sym_for] = ACTIONS(4190), - [anon_sym_loop] = ACTIONS(4190), - [anon_sym_while] = ACTIONS(4190), - [anon_sym_do] = ACTIONS(4190), - [anon_sym_if] = ACTIONS(4190), - [anon_sym_match] = ACTIONS(4190), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_try] = ACTIONS(4190), - [anon_sym_return] = ACTIONS(4190), - [anon_sym_source] = ACTIONS(4190), - [anon_sym_source_DASHenv] = ACTIONS(4190), - [anon_sym_register] = ACTIONS(4190), - [anon_sym_hide] = ACTIONS(4190), - [anon_sym_hide_DASHenv] = ACTIONS(4190), - [anon_sym_overlay] = ACTIONS(4190), - [anon_sym_as] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4190), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_not] = ACTIONS(4190), - [anon_sym_null] = ACTIONS(4190), - [anon_sym_true] = ACTIONS(4190), - [anon_sym_false] = ACTIONS(4190), - [aux_sym__val_number_decimal_token1] = ACTIONS(4190), - [aux_sym__val_number_token1] = ACTIONS(4190), - [aux_sym__val_number_token2] = ACTIONS(4190), - [aux_sym__val_number_token3] = ACTIONS(4190), - [aux_sym__val_number_token4] = ACTIONS(4190), - [aux_sym__val_number_token5] = ACTIONS(4190), - [aux_sym__val_number_token6] = ACTIONS(4190), - [anon_sym_0b] = ACTIONS(4190), - [anon_sym_0o] = ACTIONS(4190), - [anon_sym_0x] = ACTIONS(4190), - [sym_val_date] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym__str_single_quotes] = ACTIONS(4190), - [sym__str_back_ticks] = ACTIONS(4190), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4190), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4190), - [anon_sym_CARET] = ACTIONS(4190), + [ts_builtin_sym_end] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1852] = { + [sym__expression] = STATE(7778), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1870), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1852), - [ts_builtin_sym_end] = ACTIONS(4178), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_alias] = ACTIONS(4176), - [anon_sym_let] = ACTIONS(4176), - [anon_sym_let_DASHenv] = ACTIONS(4176), - [anon_sym_mut] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4176), - [sym_cmd_identifier] = ACTIONS(4176), - [anon_sym_LF] = ACTIONS(4178), - [anon_sym_def] = ACTIONS(4176), - [anon_sym_export_DASHenv] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym_module] = ACTIONS(4176), - [anon_sym_use] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_LPAREN] = ACTIONS(4176), - [anon_sym_DOLLAR] = ACTIONS(4176), - [anon_sym_error] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4176), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_loop] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_match] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4176), - [anon_sym_DOT] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_source] = ACTIONS(4176), - [anon_sym_source_DASHenv] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_hide] = ACTIONS(4176), - [anon_sym_hide_DASHenv] = ACTIONS(4176), - [anon_sym_overlay] = ACTIONS(4176), - [anon_sym_as] = ACTIONS(4176), - [anon_sym_where] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_null] = ACTIONS(4176), - [anon_sym_true] = ACTIONS(4176), - [anon_sym_false] = ACTIONS(4176), - [aux_sym__val_number_decimal_token1] = ACTIONS(4176), - [aux_sym__val_number_token1] = ACTIONS(4176), - [aux_sym__val_number_token2] = ACTIONS(4176), - [aux_sym__val_number_token3] = ACTIONS(4176), - [aux_sym__val_number_token4] = ACTIONS(4176), - [aux_sym__val_number_token5] = ACTIONS(4176), - [aux_sym__val_number_token6] = ACTIONS(4176), - [anon_sym_0b] = ACTIONS(4176), - [anon_sym_0o] = ACTIONS(4176), - [anon_sym_0x] = ACTIONS(4176), - [sym_val_date] = ACTIONS(4176), - [anon_sym_DQUOTE] = ACTIONS(4176), - [sym__str_single_quotes] = ACTIONS(4176), - [sym__str_back_ticks] = ACTIONS(4176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4176), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4176), - [anon_sym_CARET] = ACTIONS(4176), + [ts_builtin_sym_end] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1853] = { [sym_comment] = STATE(1853), - [ts_builtin_sym_end] = ACTIONS(4174), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_alias] = ACTIONS(4172), - [anon_sym_let] = ACTIONS(4172), - [anon_sym_let_DASHenv] = ACTIONS(4172), - [anon_sym_mut] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4172), - [sym_cmd_identifier] = ACTIONS(4172), - [anon_sym_LF] = ACTIONS(4174), - [anon_sym_def] = ACTIONS(4172), - [anon_sym_export_DASHenv] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4172), - [anon_sym_use] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym_DOLLAR] = ACTIONS(4172), - [anon_sym_error] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4172), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_loop] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_match] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_DOT] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_source] = ACTIONS(4172), - [anon_sym_source_DASHenv] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_hide] = ACTIONS(4172), - [anon_sym_hide_DASHenv] = ACTIONS(4172), - [anon_sym_overlay] = ACTIONS(4172), - [anon_sym_as] = ACTIONS(4172), - [anon_sym_where] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_null] = ACTIONS(4172), - [anon_sym_true] = ACTIONS(4172), - [anon_sym_false] = ACTIONS(4172), - [aux_sym__val_number_decimal_token1] = ACTIONS(4172), - [aux_sym__val_number_token1] = ACTIONS(4172), - [aux_sym__val_number_token2] = ACTIONS(4172), - [aux_sym__val_number_token3] = ACTIONS(4172), - [aux_sym__val_number_token4] = ACTIONS(4172), - [aux_sym__val_number_token5] = ACTIONS(4172), - [aux_sym__val_number_token6] = ACTIONS(4172), - [anon_sym_0b] = ACTIONS(4172), - [anon_sym_0o] = ACTIONS(4172), - [anon_sym_0x] = ACTIONS(4172), - [sym_val_date] = ACTIONS(4172), - [anon_sym_DQUOTE] = ACTIONS(4172), - [sym__str_single_quotes] = ACTIONS(4172), - [sym__str_back_ticks] = ACTIONS(4172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_DOT2] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [aux_sym__immediate_decimal_token2] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1854] = { [sym_comment] = STATE(1854), - [ts_builtin_sym_end] = ACTIONS(4170), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_alias] = ACTIONS(4168), - [anon_sym_let] = ACTIONS(4168), - [anon_sym_let_DASHenv] = ACTIONS(4168), - [anon_sym_mut] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4168), - [sym_cmd_identifier] = ACTIONS(4168), - [anon_sym_LF] = ACTIONS(4170), - [anon_sym_def] = ACTIONS(4168), - [anon_sym_export_DASHenv] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4168), - [anon_sym_use] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym_DOLLAR] = ACTIONS(4168), - [anon_sym_error] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_loop] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_match] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_source] = ACTIONS(4168), - [anon_sym_source_DASHenv] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_hide] = ACTIONS(4168), - [anon_sym_hide_DASHenv] = ACTIONS(4168), - [anon_sym_overlay] = ACTIONS(4168), - [anon_sym_as] = ACTIONS(4168), - [anon_sym_where] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_null] = ACTIONS(4168), - [anon_sym_true] = ACTIONS(4168), - [anon_sym_false] = ACTIONS(4168), - [aux_sym__val_number_decimal_token1] = ACTIONS(4168), - [aux_sym__val_number_token1] = ACTIONS(4168), - [aux_sym__val_number_token2] = ACTIONS(4168), - [aux_sym__val_number_token3] = ACTIONS(4168), - [aux_sym__val_number_token4] = ACTIONS(4168), - [aux_sym__val_number_token5] = ACTIONS(4168), - [aux_sym__val_number_token6] = ACTIONS(4168), - [anon_sym_0b] = ACTIONS(4168), - [anon_sym_0o] = ACTIONS(4168), - [anon_sym_0x] = ACTIONS(4168), - [sym_val_date] = ACTIONS(4168), - [anon_sym_DQUOTE] = ACTIONS(4168), - [sym__str_single_quotes] = ACTIONS(4168), - [sym__str_back_ticks] = ACTIONS(4168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4168), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), + [ts_builtin_sym_end] = ACTIONS(1193), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_alias] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_let_DASHenv] = ACTIONS(1191), + [anon_sym_mut] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [sym_cmd_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_def] = ACTIONS(1191), + [anon_sym_export_DASHenv] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_error] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_source] = ACTIONS(1191), + [anon_sym_source_DASHenv] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_hide_DASHenv] = ACTIONS(1191), + [anon_sym_overlay] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_not] = ACTIONS(1191), + [anon_sym_null] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [aux_sym__val_number_decimal_token1] = ACTIONS(1191), + [aux_sym__val_number_token1] = ACTIONS(1191), + [aux_sym__val_number_token2] = ACTIONS(1191), + [aux_sym__val_number_token3] = ACTIONS(1191), + [aux_sym__val_number_token4] = ACTIONS(1191), + [aux_sym__val_number_token5] = ACTIONS(1191), + [aux_sym__val_number_token6] = ACTIONS(1191), + [anon_sym_0b] = ACTIONS(1191), + [anon_sym_0o] = ACTIONS(1191), + [anon_sym_0x] = ACTIONS(1191), + [sym_val_date] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym__str_single_quotes] = ACTIONS(1191), + [sym__str_back_ticks] = ACTIONS(1191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), [anon_sym_POUND] = ACTIONS(105), }, [1855] = { + [sym__expression] = STATE(7778), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1871), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1855), - [ts_builtin_sym_end] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4158), - [anon_sym_alias] = ACTIONS(4158), - [anon_sym_let] = ACTIONS(4158), - [anon_sym_let_DASHenv] = ACTIONS(4158), - [anon_sym_mut] = ACTIONS(4158), - [anon_sym_const] = ACTIONS(4158), - [anon_sym_SEMI] = ACTIONS(4158), - [sym_cmd_identifier] = ACTIONS(4158), - [anon_sym_LF] = ACTIONS(4160), - [anon_sym_def] = ACTIONS(4158), - [anon_sym_export_DASHenv] = ACTIONS(4158), - [anon_sym_extern] = ACTIONS(4158), - [anon_sym_module] = ACTIONS(4158), - [anon_sym_use] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_DOLLAR] = ACTIONS(4158), - [anon_sym_error] = ACTIONS(4158), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4158), - [anon_sym_break] = ACTIONS(4158), - [anon_sym_continue] = ACTIONS(4158), - [anon_sym_for] = ACTIONS(4158), - [anon_sym_loop] = ACTIONS(4158), - [anon_sym_while] = ACTIONS(4158), - [anon_sym_do] = ACTIONS(4158), - [anon_sym_if] = ACTIONS(4158), - [anon_sym_match] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4158), - [anon_sym_try] = ACTIONS(4158), - [anon_sym_return] = ACTIONS(4158), - [anon_sym_source] = ACTIONS(4158), - [anon_sym_source_DASHenv] = ACTIONS(4158), - [anon_sym_register] = ACTIONS(4158), - [anon_sym_hide] = ACTIONS(4158), - [anon_sym_hide_DASHenv] = ACTIONS(4158), - [anon_sym_overlay] = ACTIONS(4158), - [anon_sym_as] = ACTIONS(4158), - [anon_sym_where] = ACTIONS(4158), - [anon_sym_PLUS] = ACTIONS(4158), - [anon_sym_not] = ACTIONS(4158), - [anon_sym_null] = ACTIONS(4158), - [anon_sym_true] = ACTIONS(4158), - [anon_sym_false] = ACTIONS(4158), - [aux_sym__val_number_decimal_token1] = ACTIONS(4158), - [aux_sym__val_number_token1] = ACTIONS(4158), - [aux_sym__val_number_token2] = ACTIONS(4158), - [aux_sym__val_number_token3] = ACTIONS(4158), - [aux_sym__val_number_token4] = ACTIONS(4158), - [aux_sym__val_number_token5] = ACTIONS(4158), - [aux_sym__val_number_token6] = ACTIONS(4158), - [anon_sym_0b] = ACTIONS(4158), - [anon_sym_0o] = ACTIONS(4158), - [anon_sym_0x] = ACTIONS(4158), - [sym_val_date] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym__str_single_quotes] = ACTIONS(4158), - [sym__str_back_ticks] = ACTIONS(4158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), - [anon_sym_CARET] = ACTIONS(4158), + [ts_builtin_sym_end] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1856] = { [sym_comment] = STATE(1856), - [ts_builtin_sym_end] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4146), - [anon_sym_alias] = ACTIONS(4146), - [anon_sym_let] = ACTIONS(4146), - [anon_sym_let_DASHenv] = ACTIONS(4146), - [anon_sym_mut] = ACTIONS(4146), - [anon_sym_const] = ACTIONS(4146), - [anon_sym_SEMI] = ACTIONS(4146), - [sym_cmd_identifier] = ACTIONS(4146), - [anon_sym_LF] = ACTIONS(4148), - [anon_sym_def] = ACTIONS(4146), - [anon_sym_export_DASHenv] = ACTIONS(4146), - [anon_sym_extern] = ACTIONS(4146), - [anon_sym_module] = ACTIONS(4146), - [anon_sym_use] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4146), - [anon_sym_LPAREN] = ACTIONS(4146), - [anon_sym_DOLLAR] = ACTIONS(4146), - [anon_sym_error] = ACTIONS(4146), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_for] = ACTIONS(4146), - [anon_sym_loop] = ACTIONS(4146), - [anon_sym_while] = ACTIONS(4146), - [anon_sym_do] = ACTIONS(4146), - [anon_sym_if] = ACTIONS(4146), - [anon_sym_match] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_try] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_source] = ACTIONS(4146), - [anon_sym_source_DASHenv] = ACTIONS(4146), - [anon_sym_register] = ACTIONS(4146), - [anon_sym_hide] = ACTIONS(4146), - [anon_sym_hide_DASHenv] = ACTIONS(4146), - [anon_sym_overlay] = ACTIONS(4146), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4146), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_not] = ACTIONS(4146), - [anon_sym_null] = ACTIONS(4146), - [anon_sym_true] = ACTIONS(4146), - [anon_sym_false] = ACTIONS(4146), - [aux_sym__val_number_decimal_token1] = ACTIONS(4146), - [aux_sym__val_number_token1] = ACTIONS(4146), - [aux_sym__val_number_token2] = ACTIONS(4146), - [aux_sym__val_number_token3] = ACTIONS(4146), - [aux_sym__val_number_token4] = ACTIONS(4146), - [aux_sym__val_number_token5] = ACTIONS(4146), - [aux_sym__val_number_token6] = ACTIONS(4146), - [anon_sym_0b] = ACTIONS(4146), - [anon_sym_0o] = ACTIONS(4146), - [anon_sym_0x] = ACTIONS(4146), - [sym_val_date] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym__str_single_quotes] = ACTIONS(4146), - [sym__str_back_ticks] = ACTIONS(4146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), + [ts_builtin_sym_end] = ACTIONS(3806), + [anon_sym_export] = ACTIONS(3804), + [anon_sym_alias] = ACTIONS(3804), + [anon_sym_let] = ACTIONS(3804), + [anon_sym_let_DASHenv] = ACTIONS(3804), + [anon_sym_mut] = ACTIONS(3804), + [anon_sym_const] = ACTIONS(3804), + [anon_sym_SEMI] = ACTIONS(3804), + [sym_cmd_identifier] = ACTIONS(3804), + [anon_sym_LF] = ACTIONS(3806), + [anon_sym_def] = ACTIONS(3804), + [anon_sym_export_DASHenv] = ACTIONS(3804), + [anon_sym_extern] = ACTIONS(3804), + [anon_sym_module] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3804), + [anon_sym_error] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [anon_sym_break] = ACTIONS(3804), + [anon_sym_continue] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3804), + [anon_sym_loop] = ACTIONS(3804), + [anon_sym_while] = ACTIONS(3804), + [anon_sym_do] = ACTIONS(3804), + [anon_sym_if] = ACTIONS(3804), + [anon_sym_match] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3804), + [anon_sym_DOT] = ACTIONS(3804), + [anon_sym_DOT2] = ACTIONS(3806), + [anon_sym_try] = ACTIONS(3804), + [anon_sym_return] = ACTIONS(3804), + [anon_sym_source] = ACTIONS(3804), + [anon_sym_source_DASHenv] = ACTIONS(3804), + [anon_sym_register] = ACTIONS(3804), + [anon_sym_hide] = ACTIONS(3804), + [anon_sym_hide_DASHenv] = ACTIONS(3804), + [anon_sym_overlay] = ACTIONS(3804), + [anon_sym_where] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3804), + [anon_sym_not] = ACTIONS(3804), + [aux_sym__immediate_decimal_token2] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(3804), + [anon_sym_true] = ACTIONS(3804), + [anon_sym_false] = ACTIONS(3804), + [aux_sym__val_number_decimal_token1] = ACTIONS(3804), + [aux_sym__val_number_token1] = ACTIONS(3804), + [aux_sym__val_number_token2] = ACTIONS(3804), + [aux_sym__val_number_token3] = ACTIONS(3804), + [aux_sym__val_number_token4] = ACTIONS(3804), + [aux_sym__val_number_token5] = ACTIONS(3804), + [aux_sym__val_number_token6] = ACTIONS(3804), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3804), + [anon_sym_0x] = ACTIONS(3804), + [sym_val_date] = ACTIONS(3804), + [anon_sym_DQUOTE] = ACTIONS(3804), + [sym__str_single_quotes] = ACTIONS(3804), + [sym__str_back_ticks] = ACTIONS(3804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3804), + [anon_sym_CARET] = ACTIONS(3804), [anon_sym_POUND] = ACTIONS(105), }, [1857] = { [sym_comment] = STATE(1857), - [ts_builtin_sym_end] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4142), - [anon_sym_alias] = ACTIONS(4142), - [anon_sym_let] = ACTIONS(4142), - [anon_sym_let_DASHenv] = ACTIONS(4142), - [anon_sym_mut] = ACTIONS(4142), - [anon_sym_const] = ACTIONS(4142), - [anon_sym_SEMI] = ACTIONS(4142), - [sym_cmd_identifier] = ACTIONS(4142), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_def] = ACTIONS(4142), - [anon_sym_export_DASHenv] = ACTIONS(4142), - [anon_sym_extern] = ACTIONS(4142), - [anon_sym_module] = ACTIONS(4142), - [anon_sym_use] = ACTIONS(4142), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_DOLLAR] = ACTIONS(4142), - [anon_sym_error] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4142), - [anon_sym_break] = ACTIONS(4142), - [anon_sym_continue] = ACTIONS(4142), - [anon_sym_for] = ACTIONS(4142), - [anon_sym_loop] = ACTIONS(4142), - [anon_sym_while] = ACTIONS(4142), - [anon_sym_do] = ACTIONS(4142), - [anon_sym_if] = ACTIONS(4142), - [anon_sym_match] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_try] = ACTIONS(4142), - [anon_sym_return] = ACTIONS(4142), - [anon_sym_source] = ACTIONS(4142), - [anon_sym_source_DASHenv] = ACTIONS(4142), - [anon_sym_register] = ACTIONS(4142), - [anon_sym_hide] = ACTIONS(4142), - [anon_sym_hide_DASHenv] = ACTIONS(4142), - [anon_sym_overlay] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(4142), - [anon_sym_where] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4142), - [anon_sym_not] = ACTIONS(4142), - [anon_sym_null] = ACTIONS(4142), - [anon_sym_true] = ACTIONS(4142), - [anon_sym_false] = ACTIONS(4142), - [aux_sym__val_number_decimal_token1] = ACTIONS(4142), - [aux_sym__val_number_token1] = ACTIONS(4142), - [aux_sym__val_number_token2] = ACTIONS(4142), - [aux_sym__val_number_token3] = ACTIONS(4142), - [aux_sym__val_number_token4] = ACTIONS(4142), - [aux_sym__val_number_token5] = ACTIONS(4142), - [aux_sym__val_number_token6] = ACTIONS(4142), - [anon_sym_0b] = ACTIONS(4142), - [anon_sym_0o] = ACTIONS(4142), - [anon_sym_0x] = ACTIONS(4142), - [sym_val_date] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym__str_single_quotes] = ACTIONS(4142), - [sym__str_back_ticks] = ACTIONS(4142), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4142), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4142), - [anon_sym_CARET] = ACTIONS(4142), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [sym_cmd_identifier] = ACTIONS(1425), + [anon_sym_LF] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(105), }, [1858] = { [sym_comment] = STATE(1858), - [ts_builtin_sym_end] = ACTIONS(4140), - [anon_sym_export] = ACTIONS(4138), - [anon_sym_alias] = ACTIONS(4138), - [anon_sym_let] = ACTIONS(4138), - [anon_sym_let_DASHenv] = ACTIONS(4138), - [anon_sym_mut] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4138), - [sym_cmd_identifier] = ACTIONS(4138), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_def] = ACTIONS(4138), - [anon_sym_export_DASHenv] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym_module] = ACTIONS(4138), - [anon_sym_use] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_LPAREN] = ACTIONS(4138), - [anon_sym_DOLLAR] = ACTIONS(4138), - [anon_sym_error] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_loop] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_match] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_source] = ACTIONS(4138), - [anon_sym_source_DASHenv] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_hide] = ACTIONS(4138), - [anon_sym_hide_DASHenv] = ACTIONS(4138), - [anon_sym_overlay] = ACTIONS(4138), - [anon_sym_as] = ACTIONS(4138), - [anon_sym_where] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_true] = ACTIONS(4138), - [anon_sym_false] = ACTIONS(4138), - [aux_sym__val_number_decimal_token1] = ACTIONS(4138), - [aux_sym__val_number_token1] = ACTIONS(4138), - [aux_sym__val_number_token2] = ACTIONS(4138), - [aux_sym__val_number_token3] = ACTIONS(4138), - [aux_sym__val_number_token4] = ACTIONS(4138), - [aux_sym__val_number_token5] = ACTIONS(4138), - [aux_sym__val_number_token6] = ACTIONS(4138), - [anon_sym_0b] = ACTIONS(4138), - [anon_sym_0o] = ACTIONS(4138), - [anon_sym_0x] = ACTIONS(4138), - [sym_val_date] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym__str_single_quotes] = ACTIONS(4138), - [sym__str_back_ticks] = ACTIONS(4138), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4138), - [anon_sym_CARET] = ACTIONS(4138), + [ts_builtin_sym_end] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1429), + [anon_sym_alias] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_let_DASHenv] = ACTIONS(1429), + [anon_sym_mut] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [sym_cmd_identifier] = ACTIONS(1429), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_export_DASHenv] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_module] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_error] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_source] = ACTIONS(1429), + [anon_sym_source_DASHenv] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_hide_DASHenv] = ACTIONS(1429), + [anon_sym_overlay] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_where] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1429), + [aux_sym__val_number_token1] = ACTIONS(1429), + [aux_sym__val_number_token2] = ACTIONS(1429), + [aux_sym__val_number_token3] = ACTIONS(1429), + [aux_sym__val_number_token4] = ACTIONS(1429), + [aux_sym__val_number_token5] = ACTIONS(1429), + [aux_sym__val_number_token6] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1429), + [anon_sym_0o] = ACTIONS(1429), + [anon_sym_0x] = ACTIONS(1429), + [sym_val_date] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [sym__str_single_quotes] = ACTIONS(1429), + [sym__str_back_ticks] = ACTIONS(1429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(105), }, [1859] = { [sym_comment] = STATE(1859), - [ts_builtin_sym_end] = ACTIONS(4136), - [anon_sym_export] = ACTIONS(4134), - [anon_sym_alias] = ACTIONS(4134), - [anon_sym_let] = ACTIONS(4134), - [anon_sym_let_DASHenv] = ACTIONS(4134), - [anon_sym_mut] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4134), - [sym_cmd_identifier] = ACTIONS(4134), - [anon_sym_LF] = ACTIONS(4136), - [anon_sym_def] = ACTIONS(4134), - [anon_sym_export_DASHenv] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym_module] = ACTIONS(4134), - [anon_sym_use] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_DOLLAR] = ACTIONS(4134), - [anon_sym_error] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_loop] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_match] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_source] = ACTIONS(4134), - [anon_sym_source_DASHenv] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_hide] = ACTIONS(4134), - [anon_sym_hide_DASHenv] = ACTIONS(4134), - [anon_sym_overlay] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_where] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_null] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_false] = ACTIONS(4134), - [aux_sym__val_number_decimal_token1] = ACTIONS(4134), - [aux_sym__val_number_token1] = ACTIONS(4134), - [aux_sym__val_number_token2] = ACTIONS(4134), - [aux_sym__val_number_token3] = ACTIONS(4134), - [aux_sym__val_number_token4] = ACTIONS(4134), - [aux_sym__val_number_token5] = ACTIONS(4134), - [aux_sym__val_number_token6] = ACTIONS(4134), - [anon_sym_0b] = ACTIONS(4134), - [anon_sym_0o] = ACTIONS(4134), - [anon_sym_0x] = ACTIONS(4134), - [sym_val_date] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym__str_single_quotes] = ACTIONS(4134), - [sym__str_back_ticks] = ACTIONS(4134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4134), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4134), - [anon_sym_CARET] = ACTIONS(4134), + [ts_builtin_sym_end] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1433), + [anon_sym_alias] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_let_DASHenv] = ACTIONS(1433), + [anon_sym_mut] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [sym_cmd_identifier] = ACTIONS(1433), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_export_DASHenv] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_module] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_error] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_source] = ACTIONS(1433), + [anon_sym_source_DASHenv] = ACTIONS(1433), + [anon_sym_register] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_hide_DASHenv] = ACTIONS(1433), + [anon_sym_overlay] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_where] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), [anon_sym_POUND] = ACTIONS(105), }, [1860] = { + [sym__expression] = STATE(7778), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1872), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1860), - [ts_builtin_sym_end] = ACTIONS(4128), - [anon_sym_export] = ACTIONS(4126), - [anon_sym_alias] = ACTIONS(4126), - [anon_sym_let] = ACTIONS(4126), - [anon_sym_let_DASHenv] = ACTIONS(4126), - [anon_sym_mut] = ACTIONS(4126), - [anon_sym_const] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4126), - [sym_cmd_identifier] = ACTIONS(4126), - [anon_sym_LF] = ACTIONS(4128), - [anon_sym_def] = ACTIONS(4126), - [anon_sym_export_DASHenv] = ACTIONS(4126), - [anon_sym_extern] = ACTIONS(4126), - [anon_sym_module] = ACTIONS(4126), - [anon_sym_use] = ACTIONS(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_DOLLAR] = ACTIONS(4126), - [anon_sym_error] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_break] = ACTIONS(4126), - [anon_sym_continue] = ACTIONS(4126), - [anon_sym_for] = ACTIONS(4126), - [anon_sym_loop] = ACTIONS(4126), - [anon_sym_while] = ACTIONS(4126), - [anon_sym_do] = ACTIONS(4126), - [anon_sym_if] = ACTIONS(4126), - [anon_sym_match] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_try] = ACTIONS(4126), - [anon_sym_return] = ACTIONS(4126), - [anon_sym_source] = ACTIONS(4126), - [anon_sym_source_DASHenv] = ACTIONS(4126), - [anon_sym_register] = ACTIONS(4126), - [anon_sym_hide] = ACTIONS(4126), - [anon_sym_hide_DASHenv] = ACTIONS(4126), - [anon_sym_overlay] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_not] = ACTIONS(4126), - [anon_sym_null] = ACTIONS(4126), - [anon_sym_true] = ACTIONS(4126), - [anon_sym_false] = ACTIONS(4126), - [aux_sym__val_number_decimal_token1] = ACTIONS(4126), - [aux_sym__val_number_token1] = ACTIONS(4126), - [aux_sym__val_number_token2] = ACTIONS(4126), - [aux_sym__val_number_token3] = ACTIONS(4126), - [aux_sym__val_number_token4] = ACTIONS(4126), - [aux_sym__val_number_token5] = ACTIONS(4126), - [aux_sym__val_number_token6] = ACTIONS(4126), - [anon_sym_0b] = ACTIONS(4126), - [anon_sym_0o] = ACTIONS(4126), - [anon_sym_0x] = ACTIONS(4126), - [sym_val_date] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(4126), - [sym__str_single_quotes] = ACTIONS(4126), - [sym__str_back_ticks] = ACTIONS(4126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), + [ts_builtin_sym_end] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4188), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1861] = { [sym_comment] = STATE(1861), - [ts_builtin_sym_end] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_alias] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_let_DASHenv] = ACTIONS(1332), - [anon_sym_mut] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [sym_cmd_identifier] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_def] = ACTIONS(1332), - [anon_sym_export_DASHenv] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_source] = ACTIONS(1332), - [anon_sym_source_DASHenv] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_hide] = ACTIONS(1332), - [anon_sym_hide_DASHenv] = ACTIONS(1332), - [anon_sym_overlay] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_where] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(1332), - [aux_sym__val_number_token2] = ACTIONS(1332), - [aux_sym__val_number_token3] = ACTIONS(1332), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_0b] = ACTIONS(1332), - [anon_sym_0o] = ACTIONS(1332), - [anon_sym_0x] = ACTIONS(1332), - [sym_val_date] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym__str_single_quotes] = ACTIONS(1332), - [sym__str_back_ticks] = ACTIONS(1332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_alias] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_let_DASHenv] = ACTIONS(2998), + [anon_sym_mut] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_cmd_identifier] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_export_DASHenv] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_error] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_source] = ACTIONS(2998), + [anon_sym_source_DASHenv] = ACTIONS(2998), + [anon_sym_register] = ACTIONS(2998), + [anon_sym_hide] = ACTIONS(2998), + [anon_sym_hide_DASHenv] = ACTIONS(2998), + [anon_sym_overlay] = ACTIONS(2998), + [anon_sym_as] = ACTIONS(2998), + [anon_sym_where] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_token1] = ACTIONS(2998), + [aux_sym__val_number_token2] = ACTIONS(2998), + [aux_sym__val_number_token3] = ACTIONS(2998), + [aux_sym__val_number_token4] = ACTIONS(2998), + [aux_sym__val_number_token5] = ACTIONS(2998), + [aux_sym__val_number_token6] = ACTIONS(2998), + [anon_sym_0b] = ACTIONS(2998), + [anon_sym_0o] = ACTIONS(2998), + [anon_sym_0x] = ACTIONS(2998), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym__str_single_quotes] = ACTIONS(2998), + [sym__str_back_ticks] = ACTIONS(2998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), [anon_sym_POUND] = ACTIONS(105), }, [1862] = { [sym_comment] = STATE(1862), - [ts_builtin_sym_end] = ACTIONS(4124), - [anon_sym_export] = ACTIONS(4122), - [anon_sym_alias] = ACTIONS(4122), - [anon_sym_let] = ACTIONS(4122), - [anon_sym_let_DASHenv] = ACTIONS(4122), - [anon_sym_mut] = ACTIONS(4122), - [anon_sym_const] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4122), - [sym_cmd_identifier] = ACTIONS(4122), - [anon_sym_LF] = ACTIONS(4124), - [anon_sym_def] = ACTIONS(4122), - [anon_sym_export_DASHenv] = ACTIONS(4122), - [anon_sym_extern] = ACTIONS(4122), - [anon_sym_module] = ACTIONS(4122), - [anon_sym_use] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_DOLLAR] = ACTIONS(4122), - [anon_sym_error] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_for] = ACTIONS(4122), - [anon_sym_loop] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_do] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_match] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_source] = ACTIONS(4122), - [anon_sym_source_DASHenv] = ACTIONS(4122), - [anon_sym_register] = ACTIONS(4122), - [anon_sym_hide] = ACTIONS(4122), - [anon_sym_hide_DASHenv] = ACTIONS(4122), - [anon_sym_overlay] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [aux_sym__val_number_decimal_token1] = ACTIONS(4122), - [aux_sym__val_number_token1] = ACTIONS(4122), - [aux_sym__val_number_token2] = ACTIONS(4122), - [aux_sym__val_number_token3] = ACTIONS(4122), - [aux_sym__val_number_token4] = ACTIONS(4122), - [aux_sym__val_number_token5] = ACTIONS(4122), - [aux_sym__val_number_token6] = ACTIONS(4122), - [anon_sym_0b] = ACTIONS(4122), - [anon_sym_0o] = ACTIONS(4122), - [anon_sym_0x] = ACTIONS(4122), - [sym_val_date] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym__str_single_quotes] = ACTIONS(4122), - [sym__str_back_ticks] = ACTIONS(4122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_export] = ACTIONS(827), + [anon_sym_alias] = ACTIONS(827), + [anon_sym_let] = ACTIONS(827), + [anon_sym_let_DASHenv] = ACTIONS(827), + [anon_sym_mut] = ACTIONS(827), + [anon_sym_const] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(827), + [sym_cmd_identifier] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_def] = ACTIONS(827), + [anon_sym_export_DASHenv] = ACTIONS(827), + [anon_sym_extern] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_use] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_error] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_match] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_source] = ACTIONS(827), + [anon_sym_source_DASHenv] = ACTIONS(827), + [anon_sym_register] = ACTIONS(827), + [anon_sym_hide] = ACTIONS(827), + [anon_sym_hide_DASHenv] = ACTIONS(827), + [anon_sym_overlay] = ACTIONS(827), + [anon_sym_where] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_not] = ACTIONS(827), + [anon_sym_null] = ACTIONS(827), + [anon_sym_true] = ACTIONS(827), + [anon_sym_false] = ACTIONS(827), + [aux_sym__val_number_decimal_token1] = ACTIONS(827), + [aux_sym__val_number_token1] = ACTIONS(827), + [aux_sym__val_number_token2] = ACTIONS(827), + [aux_sym__val_number_token3] = ACTIONS(827), + [aux_sym__val_number_token4] = ACTIONS(827), + [aux_sym__val_number_token5] = ACTIONS(827), + [aux_sym__val_number_token6] = ACTIONS(827), + [anon_sym_0b] = ACTIONS(827), + [anon_sym_0o] = ACTIONS(827), + [anon_sym_0x] = ACTIONS(827), + [sym_val_date] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym__str_single_quotes] = ACTIONS(827), + [sym__str_back_ticks] = ACTIONS(827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(827), + [anon_sym_CARET] = ACTIONS(827), + [aux_sym_unquoted_token3] = ACTIONS(2829), [anon_sym_POUND] = ACTIONS(105), }, [1863] = { [sym_comment] = STATE(1863), - [ts_builtin_sym_end] = ACTIONS(4120), - [anon_sym_export] = ACTIONS(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_let_DASHenv] = ACTIONS(4118), - [anon_sym_mut] = ACTIONS(4118), - [anon_sym_const] = ACTIONS(4118), - [anon_sym_SEMI] = ACTIONS(4118), - [sym_cmd_identifier] = ACTIONS(4118), - [anon_sym_LF] = ACTIONS(4120), - [anon_sym_def] = ACTIONS(4118), - [anon_sym_export_DASHenv] = ACTIONS(4118), - [anon_sym_extern] = ACTIONS(4118), - [anon_sym_module] = ACTIONS(4118), - [anon_sym_use] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_DOLLAR] = ACTIONS(4118), - [anon_sym_error] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_break] = ACTIONS(4118), - [anon_sym_continue] = ACTIONS(4118), - [anon_sym_for] = ACTIONS(4118), - [anon_sym_loop] = ACTIONS(4118), - [anon_sym_while] = ACTIONS(4118), - [anon_sym_do] = ACTIONS(4118), - [anon_sym_if] = ACTIONS(4118), - [anon_sym_match] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_try] = ACTIONS(4118), - [anon_sym_return] = ACTIONS(4118), - [anon_sym_source] = ACTIONS(4118), - [anon_sym_source_DASHenv] = ACTIONS(4118), - [anon_sym_register] = ACTIONS(4118), - [anon_sym_hide] = ACTIONS(4118), - [anon_sym_hide_DASHenv] = ACTIONS(4118), - [anon_sym_overlay] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_not] = ACTIONS(4118), - [anon_sym_null] = ACTIONS(4118), - [anon_sym_true] = ACTIONS(4118), - [anon_sym_false] = ACTIONS(4118), - [aux_sym__val_number_decimal_token1] = ACTIONS(4118), - [aux_sym__val_number_token1] = ACTIONS(4118), - [aux_sym__val_number_token2] = ACTIONS(4118), - [aux_sym__val_number_token3] = ACTIONS(4118), - [aux_sym__val_number_token4] = ACTIONS(4118), - [aux_sym__val_number_token5] = ACTIONS(4118), - [aux_sym__val_number_token6] = ACTIONS(4118), - [anon_sym_0b] = ACTIONS(4118), - [anon_sym_0o] = ACTIONS(4118), - [anon_sym_0x] = ACTIONS(4118), - [sym_val_date] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym__str_single_quotes] = ACTIONS(4118), - [sym__str_back_ticks] = ACTIONS(4118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_CARET] = ACTIONS(4118), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_let_DASHenv] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [sym_cmd_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_export_DASHenv] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_error] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_source] = ACTIONS(2957), + [anon_sym_source_DASHenv] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_hide] = ACTIONS(2957), + [anon_sym_hide_DASHenv] = ACTIONS(2957), + [anon_sym_overlay] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2957), + [aux_sym__val_number_token2] = ACTIONS(2957), + [aux_sym__val_number_token3] = ACTIONS(2957), + [aux_sym__val_number_token4] = ACTIONS(2957), + [aux_sym__val_number_token5] = ACTIONS(2957), + [aux_sym__val_number_token6] = ACTIONS(2957), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [sym__str_single_quotes] = ACTIONS(2957), + [sym__str_back_ticks] = ACTIONS(2957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), [anon_sym_POUND] = ACTIONS(105), }, [1864] = { + [sym_expr_parenthesized] = STATE(3781), + [sym__immediate_decimal] = STATE(3782), + [sym_val_variable] = STATE(3781), + [sym__var] = STATE(2634), [sym_comment] = STATE(1864), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_DOT2] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_EQ2] = ACTIONS(4694), + [aux_sym__immediate_decimal_token1] = ACTIONS(4696), + [anon_sym_DASH2] = ACTIONS(4698), + [anon_sym_PLUS2] = ACTIONS(4700), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1983), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [aux_sym__record_key_token2] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(3), }, [1865] = { + [sym_expr_parenthesized] = STATE(3783), + [sym__immediate_decimal] = STATE(3784), + [sym_val_variable] = STATE(3783), + [sym__var] = STATE(2634), [sym_comment] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(4116), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_alias] = ACTIONS(4114), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_let_DASHenv] = ACTIONS(4114), - [anon_sym_mut] = ACTIONS(4114), - [anon_sym_const] = ACTIONS(4114), - [anon_sym_SEMI] = ACTIONS(4114), - [sym_cmd_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(4116), - [anon_sym_def] = ACTIONS(4114), - [anon_sym_export_DASHenv] = ACTIONS(4114), - [anon_sym_extern] = ACTIONS(4114), - [anon_sym_module] = ACTIONS(4114), - [anon_sym_use] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_DOLLAR] = ACTIONS(4114), - [anon_sym_error] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_break] = ACTIONS(4114), - [anon_sym_continue] = ACTIONS(4114), - [anon_sym_for] = ACTIONS(4114), - [anon_sym_loop] = ACTIONS(4114), - [anon_sym_while] = ACTIONS(4114), - [anon_sym_do] = ACTIONS(4114), - [anon_sym_if] = ACTIONS(4114), - [anon_sym_match] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_try] = ACTIONS(4114), - [anon_sym_return] = ACTIONS(4114), - [anon_sym_source] = ACTIONS(4114), - [anon_sym_source_DASHenv] = ACTIONS(4114), - [anon_sym_register] = ACTIONS(4114), - [anon_sym_hide] = ACTIONS(4114), - [anon_sym_hide_DASHenv] = ACTIONS(4114), - [anon_sym_overlay] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_where] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_null] = ACTIONS(4114), - [anon_sym_true] = ACTIONS(4114), - [anon_sym_false] = ACTIONS(4114), - [aux_sym__val_number_decimal_token1] = ACTIONS(4114), - [aux_sym__val_number_token1] = ACTIONS(4114), - [aux_sym__val_number_token2] = ACTIONS(4114), - [aux_sym__val_number_token3] = ACTIONS(4114), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(4114), - [anon_sym_0o] = ACTIONS(4114), - [anon_sym_0x] = ACTIONS(4114), - [sym_val_date] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym__str_single_quotes] = ACTIONS(4114), - [sym__str_back_ticks] = ACTIONS(4114), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4114), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(4702), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_EQ2] = ACTIONS(4704), + [aux_sym__immediate_decimal_token1] = ACTIONS(4696), + [anon_sym_DASH2] = ACTIONS(4698), + [anon_sym_PLUS2] = ACTIONS(4700), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [aux_sym__record_key_token2] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(3), }, [1866] = { + [sym_expr_parenthesized] = STATE(3785), + [sym__immediate_decimal] = STATE(3786), + [sym_val_variable] = STATE(3785), + [sym__var] = STATE(2634), [sym_comment] = STATE(1866), - [ts_builtin_sym_end] = ACTIONS(4107), - [anon_sym_export] = ACTIONS(4105), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_let] = ACTIONS(4105), - [anon_sym_let_DASHenv] = ACTIONS(4105), - [anon_sym_mut] = ACTIONS(4105), - [anon_sym_const] = ACTIONS(4105), - [anon_sym_SEMI] = ACTIONS(4105), - [sym_cmd_identifier] = ACTIONS(4105), - [anon_sym_LF] = ACTIONS(4107), - [anon_sym_def] = ACTIONS(4105), - [anon_sym_export_DASHenv] = ACTIONS(4105), - [anon_sym_extern] = ACTIONS(4105), - [anon_sym_module] = ACTIONS(4105), - [anon_sym_use] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(4105), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_error] = ACTIONS(4105), - [anon_sym_DASH_DASH] = ACTIONS(4105), - [anon_sym_DASH] = ACTIONS(4105), - [anon_sym_break] = ACTIONS(4105), - [anon_sym_continue] = ACTIONS(4105), - [anon_sym_for] = ACTIONS(4105), - [anon_sym_loop] = ACTIONS(4105), - [anon_sym_while] = ACTIONS(4105), - [anon_sym_do] = ACTIONS(4105), - [anon_sym_if] = ACTIONS(4105), - [anon_sym_match] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_DOT] = ACTIONS(4105), - [anon_sym_try] = ACTIONS(4105), - [anon_sym_return] = ACTIONS(4105), - [anon_sym_source] = ACTIONS(4105), - [anon_sym_source_DASHenv] = ACTIONS(4105), - [anon_sym_register] = ACTIONS(4105), - [anon_sym_hide] = ACTIONS(4105), - [anon_sym_hide_DASHenv] = ACTIONS(4105), - [anon_sym_overlay] = ACTIONS(4105), - [anon_sym_as] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_PLUS] = ACTIONS(4105), - [anon_sym_not] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4105), - [anon_sym_false] = ACTIONS(4105), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(4105), - [aux_sym__val_number_token2] = ACTIONS(4105), - [aux_sym__val_number_token3] = ACTIONS(4105), - [aux_sym__val_number_token4] = ACTIONS(4105), - [aux_sym__val_number_token5] = ACTIONS(4105), - [aux_sym__val_number_token6] = ACTIONS(4105), - [anon_sym_0b] = ACTIONS(4105), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4105), - [anon_sym_DQUOTE] = ACTIONS(4105), - [sym__str_single_quotes] = ACTIONS(4105), - [sym__str_back_ticks] = ACTIONS(4105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4105), - [anon_sym_CARET] = ACTIONS(4105), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [sym_cmd_identifier] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_EQ2] = ACTIONS(4708), + [aux_sym__immediate_decimal_token1] = ACTIONS(4696), + [anon_sym_DASH2] = ACTIONS(4698), + [anon_sym_PLUS2] = ACTIONS(4700), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2009), + [aux_sym__val_number_token2] = ACTIONS(2009), + [aux_sym__val_number_token3] = ACTIONS(2009), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2009), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2009), + [sym__str_single_quotes] = ACTIONS(2009), + [sym__str_back_ticks] = ACTIONS(2009), + [aux_sym__record_key_token2] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(3), }, [1867] = { + [sym_expr_parenthesized] = STATE(3787), + [sym__immediate_decimal] = STATE(3788), + [sym_val_variable] = STATE(3787), + [sym__var] = STATE(2634), [sym_comment] = STATE(1867), - [ts_builtin_sym_end] = ACTIONS(3491), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_DASHenv] = ACTIONS(3489), - [anon_sym_mut] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [sym_cmd_identifier] = ACTIONS(3489), - [anon_sym_LF] = ACTIONS(3491), - [anon_sym_def] = ACTIONS(3489), - [anon_sym_export_DASHenv] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_error] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_loop] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_DOT2] = ACTIONS(4670), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_source] = ACTIONS(3489), - [anon_sym_source_DASHenv] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_hide] = ACTIONS(3489), - [anon_sym_hide_DASHenv] = ACTIONS(3489), - [anon_sym_overlay] = ACTIONS(3489), - [anon_sym_where] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [aux_sym__immediate_decimal_token2] = ACTIONS(4672), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [aux_sym__val_number_decimal_token1] = ACTIONS(3489), - [aux_sym__val_number_token1] = ACTIONS(3489), - [aux_sym__val_number_token2] = ACTIONS(3489), - [aux_sym__val_number_token3] = ACTIONS(3489), - [aux_sym__val_number_token4] = ACTIONS(3489), - [aux_sym__val_number_token5] = ACTIONS(3489), - [aux_sym__val_number_token6] = ACTIONS(3489), - [anon_sym_0b] = ACTIONS(3489), - [anon_sym_0o] = ACTIONS(3489), - [anon_sym_0x] = ACTIONS(3489), - [sym_val_date] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym__str_single_quotes] = ACTIONS(3489), - [sym__str_back_ticks] = ACTIONS(3489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [sym_cmd_identifier] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_DOT] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(4692), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_EQ2] = ACTIONS(4712), + [aux_sym__immediate_decimal_token1] = ACTIONS(4696), + [anon_sym_DASH2] = ACTIONS(4698), + [anon_sym_PLUS2] = ACTIONS(4700), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2017), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [aux_sym__record_key_token2] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(3), }, [1868] = { - [sym_expr_parenthesized] = STATE(11481), - [sym_val_variable] = STATE(11481), - [sym__var] = STATE(7529), - [sym_val_number] = STATE(11481), - [sym__val_number_decimal] = STATE(4848), - [sym__val_number] = STATE(4844), - [sym_val_string] = STATE(11481), - [sym__str_double_quotes] = STATE(7146), - [sym_record_entry] = STATE(10270), - [sym__record_key] = STATE(10706), [sym_comment] = STATE(1868), - [aux_sym_record_body_repeat1] = STATE(1754), - [anon_sym_export] = ACTIONS(237), - [anon_sym_alias] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_DASHenv] = ACTIONS(237), - [anon_sym_mut] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [sym_cmd_identifier] = ACTIONS(237), - [anon_sym_def] = ACTIONS(237), - [anon_sym_export_DASHenv] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_module] = ACTIONS(237), - [anon_sym_use] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3897), - [anon_sym_error] = ACTIONS(237), - [anon_sym_list] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_break] = ACTIONS(237), - [anon_sym_continue] = ACTIONS(237), - [anon_sym_for] = ACTIONS(237), - [anon_sym_in] = ACTIONS(237), - [anon_sym_loop] = ACTIONS(237), - [anon_sym_make] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_else] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_try] = ACTIONS(237), - [anon_sym_catch] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_source] = ACTIONS(237), - [anon_sym_source_DASHenv] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_hide] = ACTIONS(237), - [anon_sym_hide_DASHenv] = ACTIONS(237), - [anon_sym_overlay] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_as] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(3880), - [aux_sym__val_number_decimal_token1] = ACTIONS(3882), - [aux_sym__val_number_token1] = ACTIONS(3884), - [aux_sym__val_number_token2] = ACTIONS(3884), - [aux_sym__val_number_token3] = ACTIONS(3884), - [aux_sym__val_number_token4] = ACTIONS(3886), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym__str_single_quotes] = ACTIONS(3152), - [sym__str_back_ticks] = ACTIONS(3152), - [aux_sym__record_key_token2] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(4034), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_alias] = ACTIONS(4032), + [anon_sym_let] = ACTIONS(4032), + [anon_sym_let_DASHenv] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4032), + [sym_cmd_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_def] = ACTIONS(4032), + [anon_sym_export_DASHenv] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_use] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_error] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_loop] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_source] = ACTIONS(4032), + [anon_sym_source_DASHenv] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_hide] = ACTIONS(4032), + [anon_sym_hide_DASHenv] = ACTIONS(4032), + [anon_sym_overlay] = ACTIONS(4032), + [anon_sym_as] = ACTIONS(4032), + [anon_sym_where] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_null] = ACTIONS(4032), + [anon_sym_true] = ACTIONS(4032), + [anon_sym_false] = ACTIONS(4032), + [aux_sym__val_number_decimal_token1] = ACTIONS(4032), + [aux_sym__val_number_token1] = ACTIONS(4032), + [aux_sym__val_number_token2] = ACTIONS(4032), + [aux_sym__val_number_token3] = ACTIONS(4032), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(4032), + [anon_sym_0o] = ACTIONS(4032), + [anon_sym_0x] = ACTIONS(4032), + [sym_val_date] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [sym__str_single_quotes] = ACTIONS(4032), + [sym__str_back_ticks] = ACTIONS(4032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_POUND] = ACTIONS(105), }, [1869] = { + [sym__expression] = STATE(7652), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(7813), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), [sym_comment] = STATE(1869), - [ts_builtin_sym_end] = ACTIONS(1327), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [sym_cmd_identifier] = ACTIONS(1325), - [anon_sym_LF] = ACTIONS(1327), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_where] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_not] = ACTIONS(1325), - [anon_sym_null] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [aux_sym__val_number_decimal_token1] = ACTIONS(1325), - [aux_sym__val_number_token1] = ACTIONS(1325), - [aux_sym__val_number_token2] = ACTIONS(1325), - [aux_sym__val_number_token3] = ACTIONS(1325), - [aux_sym__val_number_token4] = ACTIONS(1325), - [aux_sym__val_number_token5] = ACTIONS(1325), - [aux_sym__val_number_token6] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1325), - [anon_sym_0o] = ACTIONS(1325), - [anon_sym_0x] = ACTIONS(1325), - [sym_val_date] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym__str_single_quotes] = ACTIONS(1325), - [sym__str_back_ticks] = ACTIONS(1325), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1870] = { + [sym__expression] = STATE(7652), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1875), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1870), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1871] = { + [sym__expression] = STATE(7652), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1876), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1871), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(4674), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(4676), + [ts_builtin_sym_end] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1872] = { + [sym__expression] = STATE(7652), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1877), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1872), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_alias] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_let_DASHenv] = ACTIONS(1338), - [anon_sym_mut] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [sym_cmd_identifier] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_def] = ACTIONS(1338), - [anon_sym_export_DASHenv] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [anon_sym_error] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_source] = ACTIONS(1338), - [anon_sym_source_DASHenv] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_hide_DASHenv] = ACTIONS(1338), - [anon_sym_overlay] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_where] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [aux_sym__val_number_decimal_token1] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [aux_sym__val_number_token4] = ACTIONS(1338), - [aux_sym__val_number_token5] = ACTIONS(1338), - [aux_sym__val_number_token6] = ACTIONS(1338), - [anon_sym_0b] = ACTIONS(1338), - [anon_sym_0o] = ACTIONS(1338), - [anon_sym_0x] = ACTIONS(1338), - [sym_val_date] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1873] = { + [sym__expression] = STATE(7652), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1878), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1873), - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1321), - [anon_sym_alias] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_let_DASHenv] = ACTIONS(1321), - [anon_sym_mut] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [sym_cmd_identifier] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(1321), - [anon_sym_export_DASHenv] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_source] = ACTIONS(1321), - [anon_sym_source_DASHenv] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_hide] = ACTIONS(1321), - [anon_sym_hide_DASHenv] = ACTIONS(1321), - [anon_sym_overlay] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1321), - [anon_sym_where] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_null] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_token1] = ACTIONS(1321), - [aux_sym__val_number_token2] = ACTIONS(1321), - [aux_sym__val_number_token3] = ACTIONS(1321), - [aux_sym__val_number_token4] = ACTIONS(1321), - [aux_sym__val_number_token5] = ACTIONS(1321), - [aux_sym__val_number_token6] = ACTIONS(1321), - [anon_sym_0b] = ACTIONS(1321), - [anon_sym_0o] = ACTIONS(1321), - [anon_sym_0x] = ACTIONS(1321), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__str_single_quotes] = ACTIONS(1321), - [sym__str_back_ticks] = ACTIONS(1321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1874] = { [sym_comment] = STATE(1874), - [ts_builtin_sym_end] = ACTIONS(4342), - [anon_sym_export] = ACTIONS(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_let_DASHenv] = ACTIONS(4340), - [anon_sym_mut] = ACTIONS(4340), - [anon_sym_const] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4340), - [sym_cmd_identifier] = ACTIONS(4340), - [anon_sym_LF] = ACTIONS(4342), - [anon_sym_def] = ACTIONS(4340), - [anon_sym_export_DASHenv] = ACTIONS(4340), - [anon_sym_extern] = ACTIONS(4340), - [anon_sym_module] = ACTIONS(4340), - [anon_sym_use] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4340), - [anon_sym_LPAREN] = ACTIONS(4340), - [anon_sym_DOLLAR] = ACTIONS(4340), - [anon_sym_error] = ACTIONS(4340), - [anon_sym_DASH_DASH] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_for] = ACTIONS(4340), - [anon_sym_loop] = ACTIONS(4340), - [anon_sym_while] = ACTIONS(4340), - [anon_sym_do] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_match] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_try] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_source] = ACTIONS(4340), - [anon_sym_source_DASHenv] = ACTIONS(4340), - [anon_sym_register] = ACTIONS(4340), - [anon_sym_hide] = ACTIONS(4340), - [anon_sym_hide_DASHenv] = ACTIONS(4340), - [anon_sym_overlay] = ACTIONS(4340), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_not] = ACTIONS(4340), - [anon_sym_null] = ACTIONS(4340), - [anon_sym_true] = ACTIONS(4340), - [anon_sym_false] = ACTIONS(4340), - [aux_sym__val_number_decimal_token1] = ACTIONS(4340), - [aux_sym__val_number_token1] = ACTIONS(4340), - [aux_sym__val_number_token2] = ACTIONS(4340), - [aux_sym__val_number_token3] = ACTIONS(4340), - [aux_sym__val_number_token4] = ACTIONS(4340), - [aux_sym__val_number_token5] = ACTIONS(4340), - [aux_sym__val_number_token6] = ACTIONS(4340), - [anon_sym_0b] = ACTIONS(4340), - [anon_sym_0o] = ACTIONS(4340), - [anon_sym_0x] = ACTIONS(4340), - [sym_val_date] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4340), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4340), - [anon_sym_CARET] = ACTIONS(4340), + [ts_builtin_sym_end] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1251), + [anon_sym_alias] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_let_DASHenv] = ACTIONS(1251), + [anon_sym_mut] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [sym_cmd_identifier] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_def] = ACTIONS(1251), + [anon_sym_export_DASHenv] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_module] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [anon_sym_error] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_source] = ACTIONS(1251), + [anon_sym_source_DASHenv] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_hide_DASHenv] = ACTIONS(1251), + [anon_sym_overlay] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_where] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_not] = ACTIONS(1251), + [anon_sym_null] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [aux_sym__val_number_decimal_token1] = ACTIONS(1251), + [aux_sym__val_number_token1] = ACTIONS(1251), + [aux_sym__val_number_token2] = ACTIONS(1251), + [aux_sym__val_number_token3] = ACTIONS(1251), + [aux_sym__val_number_token4] = ACTIONS(1251), + [aux_sym__val_number_token5] = ACTIONS(1251), + [aux_sym__val_number_token6] = ACTIONS(1251), + [anon_sym_0b] = ACTIONS(1251), + [anon_sym_0o] = ACTIONS(1251), + [anon_sym_0x] = ACTIONS(1251), + [sym_val_date] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym__str_single_quotes] = ACTIONS(1251), + [sym__str_back_ticks] = ACTIONS(1251), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), [anon_sym_POUND] = ACTIONS(105), }, [1875] = { + [sym__expression] = STATE(7634), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(7590), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), [sym_comment] = STATE(1875), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(2837), + [ts_builtin_sym_end] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1876] = { + [sym__expression] = STATE(7634), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1884), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1876), - [ts_builtin_sym_end] = ACTIONS(4360), - [anon_sym_export] = ACTIONS(4358), - [anon_sym_alias] = ACTIONS(4358), - [anon_sym_let] = ACTIONS(4358), - [anon_sym_let_DASHenv] = ACTIONS(4358), - [anon_sym_mut] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [sym_cmd_identifier] = ACTIONS(4358), - [anon_sym_LF] = ACTIONS(4360), - [anon_sym_def] = ACTIONS(4358), - [anon_sym_export_DASHenv] = ACTIONS(4358), - [anon_sym_extern] = ACTIONS(4358), - [anon_sym_module] = ACTIONS(4358), - [anon_sym_use] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(4358), - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_DOLLAR] = ACTIONS(4358), - [anon_sym_error] = ACTIONS(4358), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_break] = ACTIONS(4358), - [anon_sym_continue] = ACTIONS(4358), - [anon_sym_for] = ACTIONS(4358), - [anon_sym_loop] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_do] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_match] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_DOT] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_source] = ACTIONS(4358), - [anon_sym_source_DASHenv] = ACTIONS(4358), - [anon_sym_register] = ACTIONS(4358), - [anon_sym_hide] = ACTIONS(4358), - [anon_sym_hide_DASHenv] = ACTIONS(4358), - [anon_sym_overlay] = ACTIONS(4358), - [anon_sym_as] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_not] = ACTIONS(4358), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_true] = ACTIONS(4358), - [anon_sym_false] = ACTIONS(4358), - [aux_sym__val_number_decimal_token1] = ACTIONS(4358), - [aux_sym__val_number_token1] = ACTIONS(4358), - [aux_sym__val_number_token2] = ACTIONS(4358), - [aux_sym__val_number_token3] = ACTIONS(4358), - [aux_sym__val_number_token4] = ACTIONS(4358), - [aux_sym__val_number_token5] = ACTIONS(4358), - [aux_sym__val_number_token6] = ACTIONS(4358), - [anon_sym_0b] = ACTIONS(4358), - [anon_sym_0o] = ACTIONS(4358), - [anon_sym_0x] = ACTIONS(4358), - [sym_val_date] = ACTIONS(4358), - [anon_sym_DQUOTE] = ACTIONS(4358), - [sym__str_single_quotes] = ACTIONS(4358), - [sym__str_back_ticks] = ACTIONS(4358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_CARET] = ACTIONS(4358), + [ts_builtin_sym_end] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1877] = { - [sym_block] = STATE(2081), + [sym__expression] = STATE(7634), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1885), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1877), - [anon_sym_export] = ACTIONS(4678), - [anon_sym_alias] = ACTIONS(4678), - [anon_sym_let] = ACTIONS(4678), - [anon_sym_let_DASHenv] = ACTIONS(4678), - [anon_sym_mut] = ACTIONS(4678), - [anon_sym_const] = ACTIONS(4678), - [anon_sym_SEMI] = ACTIONS(4678), - [sym_cmd_identifier] = ACTIONS(4678), - [anon_sym_LF] = ACTIONS(4680), - [anon_sym_def] = ACTIONS(4678), - [anon_sym_export_DASHenv] = ACTIONS(4678), - [anon_sym_extern] = ACTIONS(4678), - [anon_sym_module] = ACTIONS(4678), - [anon_sym_use] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(4678), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_error] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [anon_sym_break] = ACTIONS(4678), - [anon_sym_continue] = ACTIONS(4678), - [anon_sym_for] = ACTIONS(4678), - [anon_sym_loop] = ACTIONS(4678), - [anon_sym_while] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_if] = ACTIONS(4678), - [anon_sym_match] = ACTIONS(4678), - [anon_sym_LBRACE] = ACTIONS(4682), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_DOT] = ACTIONS(4678), - [anon_sym_try] = ACTIONS(4678), - [anon_sym_return] = ACTIONS(4678), - [anon_sym_source] = ACTIONS(4678), - [anon_sym_source_DASHenv] = ACTIONS(4678), - [anon_sym_register] = ACTIONS(4678), - [anon_sym_hide] = ACTIONS(4678), - [anon_sym_hide_DASHenv] = ACTIONS(4678), - [anon_sym_overlay] = ACTIONS(4678), - [anon_sym_where] = ACTIONS(4678), - [anon_sym_PLUS] = ACTIONS(4678), - [anon_sym_not] = ACTIONS(4678), - [anon_sym_null] = ACTIONS(4678), - [anon_sym_true] = ACTIONS(4678), - [anon_sym_false] = ACTIONS(4678), - [aux_sym__val_number_decimal_token1] = ACTIONS(4678), - [aux_sym__val_number_token1] = ACTIONS(4678), - [aux_sym__val_number_token2] = ACTIONS(4678), - [aux_sym__val_number_token3] = ACTIONS(4678), - [aux_sym__val_number_token4] = ACTIONS(4678), - [aux_sym__val_number_token5] = ACTIONS(4678), - [aux_sym__val_number_token6] = ACTIONS(4678), - [anon_sym_0b] = ACTIONS(4678), - [anon_sym_0o] = ACTIONS(4678), - [anon_sym_0x] = ACTIONS(4678), - [sym_val_date] = ACTIONS(4678), - [anon_sym_DQUOTE] = ACTIONS(4678), - [sym__str_single_quotes] = ACTIONS(4678), - [sym__str_back_ticks] = ACTIONS(4678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4678), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4678), - [anon_sym_CARET] = ACTIONS(4678), + [ts_builtin_sym_end] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1878] = { + [sym__expression] = STATE(7634), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1886), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1878), - [ts_builtin_sym_end] = ACTIONS(4364), - [anon_sym_export] = ACTIONS(4362), - [anon_sym_alias] = ACTIONS(4362), - [anon_sym_let] = ACTIONS(4362), - [anon_sym_let_DASHenv] = ACTIONS(4362), - [anon_sym_mut] = ACTIONS(4362), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_SEMI] = ACTIONS(4362), - [sym_cmd_identifier] = ACTIONS(4362), - [anon_sym_LF] = ACTIONS(4364), - [anon_sym_def] = ACTIONS(4362), - [anon_sym_export_DASHenv] = ACTIONS(4362), - [anon_sym_extern] = ACTIONS(4362), - [anon_sym_module] = ACTIONS(4362), - [anon_sym_use] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_error] = ACTIONS(4362), - [anon_sym_DASH_DASH] = ACTIONS(4362), - [anon_sym_DASH] = ACTIONS(4362), - [anon_sym_break] = ACTIONS(4362), - [anon_sym_continue] = ACTIONS(4362), - [anon_sym_for] = ACTIONS(4362), - [anon_sym_loop] = ACTIONS(4362), - [anon_sym_while] = ACTIONS(4362), - [anon_sym_do] = ACTIONS(4362), - [anon_sym_if] = ACTIONS(4362), - [anon_sym_match] = ACTIONS(4362), - [anon_sym_LBRACE] = ACTIONS(4362), - [anon_sym_DOT] = ACTIONS(4362), - [anon_sym_try] = ACTIONS(4362), - [anon_sym_return] = ACTIONS(4362), - [anon_sym_source] = ACTIONS(4362), - [anon_sym_source_DASHenv] = ACTIONS(4362), - [anon_sym_register] = ACTIONS(4362), - [anon_sym_hide] = ACTIONS(4362), - [anon_sym_hide_DASHenv] = ACTIONS(4362), - [anon_sym_overlay] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_where] = ACTIONS(4362), - [anon_sym_PLUS] = ACTIONS(4362), - [anon_sym_not] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4362), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4362), - [aux_sym__val_number_token1] = ACTIONS(4362), - [aux_sym__val_number_token2] = ACTIONS(4362), - [aux_sym__val_number_token3] = ACTIONS(4362), - [aux_sym__val_number_token4] = ACTIONS(4362), - [aux_sym__val_number_token5] = ACTIONS(4362), - [aux_sym__val_number_token6] = ACTIONS(4362), - [anon_sym_0b] = ACTIONS(4362), - [anon_sym_0o] = ACTIONS(4362), - [anon_sym_0x] = ACTIONS(4362), - [sym_val_date] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [sym__str_single_quotes] = ACTIONS(4362), - [sym__str_back_ticks] = ACTIONS(4362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_CARET] = ACTIONS(4362), + [ts_builtin_sym_end] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1879] = { - [sym_expr_parenthesized] = STATE(3537), - [sym__immediate_decimal] = STATE(3559), - [sym_val_variable] = STATE(3537), - [sym__var] = STATE(2742), [sym_comment] = STATE(1879), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [sym_cmd_identifier] = ACTIONS(1829), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_list] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_in] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_make] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(4689), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_EQ2] = ACTIONS(4691), - [aux_sym__immediate_decimal_token1] = ACTIONS(4693), - [anon_sym_DASH2] = ACTIONS(4695), - [anon_sym_PLUS2] = ACTIONS(4697), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1831), - [aux_sym__val_number_token2] = ACTIONS(1831), - [aux_sym__val_number_token3] = ACTIONS(1831), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1831), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym__str_single_quotes] = ACTIONS(1831), - [sym__str_back_ticks] = ACTIONS(1831), - [aux_sym__record_key_token2] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(4332), + [anon_sym_export] = ACTIONS(4330), + [anon_sym_alias] = ACTIONS(4330), + [anon_sym_let] = ACTIONS(4330), + [anon_sym_let_DASHenv] = ACTIONS(4330), + [anon_sym_mut] = ACTIONS(4330), + [anon_sym_const] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4330), + [sym_cmd_identifier] = ACTIONS(4330), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_def] = ACTIONS(4330), + [anon_sym_export_DASHenv] = ACTIONS(4330), + [anon_sym_extern] = ACTIONS(4330), + [anon_sym_module] = ACTIONS(4330), + [anon_sym_use] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_DOLLAR] = ACTIONS(4330), + [anon_sym_error] = ACTIONS(4330), + [anon_sym_DASH_DASH] = ACTIONS(4330), + [anon_sym_DASH] = ACTIONS(4330), + [anon_sym_break] = ACTIONS(4330), + [anon_sym_continue] = ACTIONS(4330), + [anon_sym_for] = ACTIONS(4330), + [anon_sym_loop] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_if] = ACTIONS(4330), + [anon_sym_match] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_try] = ACTIONS(4330), + [anon_sym_return] = ACTIONS(4330), + [anon_sym_source] = ACTIONS(4330), + [anon_sym_source_DASHenv] = ACTIONS(4330), + [anon_sym_register] = ACTIONS(4330), + [anon_sym_hide] = ACTIONS(4330), + [anon_sym_hide_DASHenv] = ACTIONS(4330), + [anon_sym_overlay] = ACTIONS(4330), + [anon_sym_as] = ACTIONS(4330), + [anon_sym_where] = ACTIONS(4330), + [anon_sym_PLUS] = ACTIONS(4330), + [anon_sym_not] = ACTIONS(4330), + [anon_sym_null] = ACTIONS(4330), + [anon_sym_true] = ACTIONS(4330), + [anon_sym_false] = ACTIONS(4330), + [aux_sym__val_number_decimal_token1] = ACTIONS(4330), + [aux_sym__val_number_token1] = ACTIONS(4330), + [aux_sym__val_number_token2] = ACTIONS(4330), + [aux_sym__val_number_token3] = ACTIONS(4330), + [aux_sym__val_number_token4] = ACTIONS(4330), + [aux_sym__val_number_token5] = ACTIONS(4330), + [aux_sym__val_number_token6] = ACTIONS(4330), + [anon_sym_0b] = ACTIONS(4330), + [anon_sym_0o] = ACTIONS(4330), + [anon_sym_0x] = ACTIONS(4330), + [sym_val_date] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4330), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4330), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4330), + [anon_sym_POUND] = ACTIONS(105), }, [1880] = { - [sym__expression] = STATE(7708), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1881), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), + [sym_expr_parenthesized] = STATE(3105), + [sym__immediate_decimal] = STATE(3106), + [sym_val_variable] = STATE(3105), + [sym__var] = STATE(2898), [sym_comment] = STATE(1880), - [ts_builtin_sym_end] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_alias] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_let_DASHenv] = ACTIONS(1874), + [anon_sym_mut] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [sym_cmd_identifier] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1874), + [anon_sym_export_DASHenv] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(3959), + [anon_sym_error] = ACTIONS(1874), + [anon_sym_list] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_make] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT2] = ACTIONS(4588), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_catch] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_source] = ACTIONS(1874), + [anon_sym_source_DASHenv] = ACTIONS(1874), + [anon_sym_register] = ACTIONS(1874), + [anon_sym_hide] = ACTIONS(1874), + [anon_sym_hide_DASHenv] = ACTIONS(1874), + [anon_sym_overlay] = ACTIONS(1874), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_as] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_EQ2] = ACTIONS(4720), + [aux_sym__immediate_decimal_token1] = ACTIONS(4592), + [anon_sym_DASH2] = ACTIONS(4594), + [anon_sym_PLUS2] = ACTIONS(4596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1876), + [aux_sym__val_number_token2] = ACTIONS(1876), + [aux_sym__val_number_token3] = ACTIONS(1876), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1876), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1876), + [sym__str_single_quotes] = ACTIONS(1876), + [sym__str_back_ticks] = ACTIONS(1876), + [aux_sym__record_key_token2] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(3), }, [1881] = { - [sym__expression] = STATE(7827), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(7828), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), [sym_comment] = STATE(1881), - [ts_builtin_sym_end] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4336), + [anon_sym_export] = ACTIONS(4334), + [anon_sym_alias] = ACTIONS(4334), + [anon_sym_let] = ACTIONS(4334), + [anon_sym_let_DASHenv] = ACTIONS(4334), + [anon_sym_mut] = ACTIONS(4334), + [anon_sym_const] = ACTIONS(4334), + [anon_sym_SEMI] = ACTIONS(4334), + [sym_cmd_identifier] = ACTIONS(4334), + [anon_sym_LF] = ACTIONS(4336), + [anon_sym_def] = ACTIONS(4334), + [anon_sym_export_DASHenv] = ACTIONS(4334), + [anon_sym_extern] = ACTIONS(4334), + [anon_sym_module] = ACTIONS(4334), + [anon_sym_use] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(4334), + [anon_sym_error] = ACTIONS(4334), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_DASH] = ACTIONS(4334), + [anon_sym_break] = ACTIONS(4334), + [anon_sym_continue] = ACTIONS(4334), + [anon_sym_for] = ACTIONS(4334), + [anon_sym_loop] = ACTIONS(4334), + [anon_sym_while] = ACTIONS(4334), + [anon_sym_do] = ACTIONS(4334), + [anon_sym_if] = ACTIONS(4334), + [anon_sym_match] = ACTIONS(4334), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4334), + [anon_sym_try] = ACTIONS(4334), + [anon_sym_return] = ACTIONS(4334), + [anon_sym_source] = ACTIONS(4334), + [anon_sym_source_DASHenv] = ACTIONS(4334), + [anon_sym_register] = ACTIONS(4334), + [anon_sym_hide] = ACTIONS(4334), + [anon_sym_hide_DASHenv] = ACTIONS(4334), + [anon_sym_overlay] = ACTIONS(4334), + [anon_sym_as] = ACTIONS(4334), + [anon_sym_where] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4334), + [anon_sym_not] = ACTIONS(4334), + [anon_sym_null] = ACTIONS(4334), + [anon_sym_true] = ACTIONS(4334), + [anon_sym_false] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4334), + [aux_sym__val_number_token1] = ACTIONS(4334), + [aux_sym__val_number_token2] = ACTIONS(4334), + [aux_sym__val_number_token3] = ACTIONS(4334), + [aux_sym__val_number_token4] = ACTIONS(4334), + [aux_sym__val_number_token5] = ACTIONS(4334), + [aux_sym__val_number_token6] = ACTIONS(4334), + [anon_sym_0b] = ACTIONS(4334), + [anon_sym_0o] = ACTIONS(4334), + [anon_sym_0x] = ACTIONS(4334), + [sym_val_date] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [sym__str_single_quotes] = ACTIONS(4334), + [sym__str_back_ticks] = ACTIONS(4334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_CARET] = ACTIONS(4334), [anon_sym_POUND] = ACTIONS(105), }, [1882] = { - [sym__expression] = STATE(7708), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1887), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1882), - [ts_builtin_sym_end] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4340), + [anon_sym_export] = ACTIONS(4338), + [anon_sym_alias] = ACTIONS(4338), + [anon_sym_let] = ACTIONS(4338), + [anon_sym_let_DASHenv] = ACTIONS(4338), + [anon_sym_mut] = ACTIONS(4338), + [anon_sym_const] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4338), + [sym_cmd_identifier] = ACTIONS(4338), + [anon_sym_LF] = ACTIONS(4340), + [anon_sym_def] = ACTIONS(4338), + [anon_sym_export_DASHenv] = ACTIONS(4338), + [anon_sym_extern] = ACTIONS(4338), + [anon_sym_module] = ACTIONS(4338), + [anon_sym_use] = ACTIONS(4338), + [anon_sym_LBRACK] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym_DOLLAR] = ACTIONS(4338), + [anon_sym_error] = ACTIONS(4338), + [anon_sym_DASH_DASH] = ACTIONS(4338), + [anon_sym_DASH] = ACTIONS(4338), + [anon_sym_break] = ACTIONS(4338), + [anon_sym_continue] = ACTIONS(4338), + [anon_sym_for] = ACTIONS(4338), + [anon_sym_loop] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_if] = ACTIONS(4338), + [anon_sym_match] = ACTIONS(4338), + [anon_sym_LBRACE] = ACTIONS(4338), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_try] = ACTIONS(4338), + [anon_sym_return] = ACTIONS(4338), + [anon_sym_source] = ACTIONS(4338), + [anon_sym_source_DASHenv] = ACTIONS(4338), + [anon_sym_register] = ACTIONS(4338), + [anon_sym_hide] = ACTIONS(4338), + [anon_sym_hide_DASHenv] = ACTIONS(4338), + [anon_sym_overlay] = ACTIONS(4338), + [anon_sym_as] = ACTIONS(4338), + [anon_sym_where] = ACTIONS(4338), + [anon_sym_PLUS] = ACTIONS(4338), + [anon_sym_not] = ACTIONS(4338), + [anon_sym_null] = ACTIONS(4338), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(4338), + [aux_sym__val_number_token1] = ACTIONS(4338), + [aux_sym__val_number_token2] = ACTIONS(4338), + [aux_sym__val_number_token3] = ACTIONS(4338), + [aux_sym__val_number_token4] = ACTIONS(4338), + [aux_sym__val_number_token5] = ACTIONS(4338), + [aux_sym__val_number_token6] = ACTIONS(4338), + [anon_sym_0b] = ACTIONS(4338), + [anon_sym_0o] = ACTIONS(4338), + [anon_sym_0x] = ACTIONS(4338), + [sym_val_date] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4338), + [sym__str_single_quotes] = ACTIONS(4338), + [sym__str_back_ticks] = ACTIONS(4338), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4338), [anon_sym_POUND] = ACTIONS(105), }, [1883] = { [sym_comment] = STATE(1883), - [ts_builtin_sym_end] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_cmd_identifier] = ACTIONS(1313), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_not] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1313), - [aux_sym__val_number_token5] = ACTIONS(1313), - [aux_sym__val_number_token6] = ACTIONS(1313), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(4344), + [anon_sym_export] = ACTIONS(4342), + [anon_sym_alias] = ACTIONS(4342), + [anon_sym_let] = ACTIONS(4342), + [anon_sym_let_DASHenv] = ACTIONS(4342), + [anon_sym_mut] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4342), + [sym_cmd_identifier] = ACTIONS(4342), + [anon_sym_LF] = ACTIONS(4344), + [anon_sym_def] = ACTIONS(4342), + [anon_sym_export_DASHenv] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym_module] = ACTIONS(4342), + [anon_sym_use] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(4342), + [anon_sym_error] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_loop] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_match] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_source] = ACTIONS(4342), + [anon_sym_source_DASHenv] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_hide] = ACTIONS(4342), + [anon_sym_hide_DASHenv] = ACTIONS(4342), + [anon_sym_overlay] = ACTIONS(4342), + [anon_sym_as] = ACTIONS(4342), + [anon_sym_where] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_null] = ACTIONS(4342), + [anon_sym_true] = ACTIONS(4342), + [anon_sym_false] = ACTIONS(4342), + [aux_sym__val_number_decimal_token1] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4342), + [aux_sym__val_number_token2] = ACTIONS(4342), + [aux_sym__val_number_token3] = ACTIONS(4342), + [aux_sym__val_number_token4] = ACTIONS(4342), + [aux_sym__val_number_token5] = ACTIONS(4342), + [aux_sym__val_number_token6] = ACTIONS(4342), + [anon_sym_0b] = ACTIONS(4342), + [anon_sym_0o] = ACTIONS(4342), + [anon_sym_0x] = ACTIONS(4342), + [sym_val_date] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [sym__str_single_quotes] = ACTIONS(4342), + [sym__str_back_ticks] = ACTIONS(4342), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4342), [anon_sym_POUND] = ACTIONS(105), }, [1884] = { + [sym__expression] = STATE(7824), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(7801), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), [sym_comment] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1317), - [anon_sym_alias] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_let_DASHenv] = ACTIONS(1317), - [anon_sym_mut] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [sym_cmd_identifier] = ACTIONS(1317), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_def] = ACTIONS(1317), - [anon_sym_export_DASHenv] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(1317), - [anon_sym_try] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_source] = ACTIONS(1317), - [anon_sym_source_DASHenv] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_hide] = ACTIONS(1317), - [anon_sym_hide_DASHenv] = ACTIONS(1317), - [anon_sym_overlay] = ACTIONS(1317), - [anon_sym_as] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_not] = ACTIONS(1317), - [anon_sym_null] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_token1] = ACTIONS(1317), - [aux_sym__val_number_token2] = ACTIONS(1317), - [aux_sym__val_number_token3] = ACTIONS(1317), - [aux_sym__val_number_token4] = ACTIONS(1317), - [aux_sym__val_number_token5] = ACTIONS(1317), - [aux_sym__val_number_token6] = ACTIONS(1317), - [anon_sym_0b] = ACTIONS(1317), - [anon_sym_0o] = ACTIONS(1317), - [anon_sym_0x] = ACTIONS(1317), - [sym_val_date] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__str_single_quotes] = ACTIONS(1317), - [sym__str_back_ticks] = ACTIONS(1317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1885] = { - [sym_block] = STATE(2084), + [sym__expression] = STATE(7824), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1887), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1885), - [anon_sym_export] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_let_DASHenv] = ACTIONS(4699), - [anon_sym_mut] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4699), - [sym_cmd_identifier] = ACTIONS(4699), - [anon_sym_LF] = ACTIONS(4701), - [anon_sym_def] = ACTIONS(4699), - [anon_sym_export_DASHenv] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_module] = ACTIONS(4699), - [anon_sym_use] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4699), - [anon_sym_RPAREN] = ACTIONS(4699), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_error] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_break] = ACTIONS(4699), - [anon_sym_continue] = ACTIONS(4699), - [anon_sym_for] = ACTIONS(4699), - [anon_sym_loop] = ACTIONS(4699), - [anon_sym_while] = ACTIONS(4699), - [anon_sym_do] = ACTIONS(4699), - [anon_sym_if] = ACTIONS(4699), - [anon_sym_match] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_try] = ACTIONS(4699), - [anon_sym_return] = ACTIONS(4699), - [anon_sym_source] = ACTIONS(4699), - [anon_sym_source_DASHenv] = ACTIONS(4699), - [anon_sym_register] = ACTIONS(4699), - [anon_sym_hide] = ACTIONS(4699), - [anon_sym_hide_DASHenv] = ACTIONS(4699), - [anon_sym_overlay] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_not] = ACTIONS(4699), - [anon_sym_null] = ACTIONS(4699), - [anon_sym_true] = ACTIONS(4699), - [anon_sym_false] = ACTIONS(4699), - [aux_sym__val_number_decimal_token1] = ACTIONS(4699), - [aux_sym__val_number_token1] = ACTIONS(4699), - [aux_sym__val_number_token2] = ACTIONS(4699), - [aux_sym__val_number_token3] = ACTIONS(4699), - [aux_sym__val_number_token4] = ACTIONS(4699), - [aux_sym__val_number_token5] = ACTIONS(4699), - [aux_sym__val_number_token6] = ACTIONS(4699), - [anon_sym_0b] = ACTIONS(4699), - [anon_sym_0o] = ACTIONS(4699), - [anon_sym_0x] = ACTIONS(4699), - [sym_val_date] = ACTIONS(4699), - [anon_sym_DQUOTE] = ACTIONS(4699), - [sym__str_single_quotes] = ACTIONS(4699), - [sym__str_back_ticks] = ACTIONS(4699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), + [ts_builtin_sym_end] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1886] = { - [sym__expression] = STATE(7778), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1880), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), + [sym__expression] = STATE(7824), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1896), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1886), - [ts_builtin_sym_end] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1887] = { - [sym__expression] = STATE(7827), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1730), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), + [sym__expression] = STATE(7631), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(7629), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), [sym_comment] = STATE(1887), - [ts_builtin_sym_end] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1888] = { [sym_comment] = STATE(1888), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_export] = ACTIONS(823), - [anon_sym_alias] = ACTIONS(823), - [anon_sym_let] = ACTIONS(823), - [anon_sym_let_DASHenv] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(823), - [sym_cmd_identifier] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_def] = ACTIONS(823), - [anon_sym_export_DASHenv] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_use] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_error] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_match] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_source] = ACTIONS(823), - [anon_sym_source_DASHenv] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(823), - [anon_sym_hide_DASHenv] = ACTIONS(823), - [anon_sym_overlay] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_where] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [aux_sym_unquoted_token3] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(4392), + [anon_sym_export] = ACTIONS(4390), + [anon_sym_alias] = ACTIONS(4390), + [anon_sym_let] = ACTIONS(4390), + [anon_sym_let_DASHenv] = ACTIONS(4390), + [anon_sym_mut] = ACTIONS(4390), + [anon_sym_const] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4390), + [sym_cmd_identifier] = ACTIONS(4390), + [anon_sym_LF] = ACTIONS(4392), + [anon_sym_def] = ACTIONS(4390), + [anon_sym_export_DASHenv] = ACTIONS(4390), + [anon_sym_extern] = ACTIONS(4390), + [anon_sym_module] = ACTIONS(4390), + [anon_sym_use] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_DOLLAR] = ACTIONS(4390), + [anon_sym_error] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_loop] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_source] = ACTIONS(4390), + [anon_sym_source_DASHenv] = ACTIONS(4390), + [anon_sym_register] = ACTIONS(4390), + [anon_sym_hide] = ACTIONS(4390), + [anon_sym_hide_DASHenv] = ACTIONS(4390), + [anon_sym_overlay] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_not] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [aux_sym__val_number_decimal_token1] = ACTIONS(4390), + [aux_sym__val_number_token1] = ACTIONS(4390), + [aux_sym__val_number_token2] = ACTIONS(4390), + [aux_sym__val_number_token3] = ACTIONS(4390), + [aux_sym__val_number_token4] = ACTIONS(4390), + [aux_sym__val_number_token5] = ACTIONS(4390), + [aux_sym__val_number_token6] = ACTIONS(4390), + [anon_sym_0b] = ACTIONS(4390), + [anon_sym_0o] = ACTIONS(4390), + [anon_sym_0x] = ACTIONS(4390), + [sym_val_date] = ACTIONS(4390), + [anon_sym_DQUOTE] = ACTIONS(4390), + [sym__str_single_quotes] = ACTIONS(4390), + [sym__str_back_ticks] = ACTIONS(4390), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4390), [anon_sym_POUND] = ACTIONS(105), }, [1889] = { - [sym__expression] = STATE(7708), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1890), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1889), - [ts_builtin_sym_end] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4396), + [anon_sym_export] = ACTIONS(4394), + [anon_sym_alias] = ACTIONS(4394), + [anon_sym_let] = ACTIONS(4394), + [anon_sym_let_DASHenv] = ACTIONS(4394), + [anon_sym_mut] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4394), + [sym_cmd_identifier] = ACTIONS(4394), + [anon_sym_LF] = ACTIONS(4396), + [anon_sym_def] = ACTIONS(4394), + [anon_sym_export_DASHenv] = ACTIONS(4394), + [anon_sym_extern] = ACTIONS(4394), + [anon_sym_module] = ACTIONS(4394), + [anon_sym_use] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym_DOLLAR] = ACTIONS(4394), + [anon_sym_error] = ACTIONS(4394), + [anon_sym_DASH_DASH] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_loop] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_do] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4394), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_source] = ACTIONS(4394), + [anon_sym_source_DASHenv] = ACTIONS(4394), + [anon_sym_register] = ACTIONS(4394), + [anon_sym_hide] = ACTIONS(4394), + [anon_sym_hide_DASHenv] = ACTIONS(4394), + [anon_sym_overlay] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_not] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [aux_sym__val_number_decimal_token1] = ACTIONS(4394), + [aux_sym__val_number_token1] = ACTIONS(4394), + [aux_sym__val_number_token2] = ACTIONS(4394), + [aux_sym__val_number_token3] = ACTIONS(4394), + [aux_sym__val_number_token4] = ACTIONS(4394), + [aux_sym__val_number_token5] = ACTIONS(4394), + [aux_sym__val_number_token6] = ACTIONS(4394), + [anon_sym_0b] = ACTIONS(4394), + [anon_sym_0o] = ACTIONS(4394), + [anon_sym_0x] = ACTIONS(4394), + [sym_val_date] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(4394), + [sym__str_single_quotes] = ACTIONS(4394), + [sym__str_back_ticks] = ACTIONS(4394), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4394), [anon_sym_POUND] = ACTIONS(105), }, [1890] = { - [sym__expression] = STATE(7827), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1728), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1890), - [ts_builtin_sym_end] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4400), + [anon_sym_export] = ACTIONS(4398), + [anon_sym_alias] = ACTIONS(4398), + [anon_sym_let] = ACTIONS(4398), + [anon_sym_let_DASHenv] = ACTIONS(4398), + [anon_sym_mut] = ACTIONS(4398), + [anon_sym_const] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4398), + [sym_cmd_identifier] = ACTIONS(4398), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_def] = ACTIONS(4398), + [anon_sym_export_DASHenv] = ACTIONS(4398), + [anon_sym_extern] = ACTIONS(4398), + [anon_sym_module] = ACTIONS(4398), + [anon_sym_use] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(4398), + [anon_sym_error] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_break] = ACTIONS(4398), + [anon_sym_continue] = ACTIONS(4398), + [anon_sym_for] = ACTIONS(4398), + [anon_sym_loop] = ACTIONS(4398), + [anon_sym_while] = ACTIONS(4398), + [anon_sym_do] = ACTIONS(4398), + [anon_sym_if] = ACTIONS(4398), + [anon_sym_match] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_try] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4398), + [anon_sym_source] = ACTIONS(4398), + [anon_sym_source_DASHenv] = ACTIONS(4398), + [anon_sym_register] = ACTIONS(4398), + [anon_sym_hide] = ACTIONS(4398), + [anon_sym_hide_DASHenv] = ACTIONS(4398), + [anon_sym_overlay] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4398), + [anon_sym_where] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_not] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4398), + [anon_sym_true] = ACTIONS(4398), + [anon_sym_false] = ACTIONS(4398), + [aux_sym__val_number_decimal_token1] = ACTIONS(4398), + [aux_sym__val_number_token1] = ACTIONS(4398), + [aux_sym__val_number_token2] = ACTIONS(4398), + [aux_sym__val_number_token3] = ACTIONS(4398), + [aux_sym__val_number_token4] = ACTIONS(4398), + [aux_sym__val_number_token5] = ACTIONS(4398), + [aux_sym__val_number_token6] = ACTIONS(4398), + [anon_sym_0b] = ACTIONS(4398), + [anon_sym_0o] = ACTIONS(4398), + [anon_sym_0x] = ACTIONS(4398), + [sym_val_date] = ACTIONS(4398), + [anon_sym_DQUOTE] = ACTIONS(4398), + [sym__str_single_quotes] = ACTIONS(4398), + [sym__str_back_ticks] = ACTIONS(4398), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4398), [anon_sym_POUND] = ACTIONS(105), }, [1891] = { - [sym__expression] = STATE(7778), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1882), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1891), - [ts_builtin_sym_end] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4408), + [anon_sym_export] = ACTIONS(4406), + [anon_sym_alias] = ACTIONS(4406), + [anon_sym_let] = ACTIONS(4406), + [anon_sym_let_DASHenv] = ACTIONS(4406), + [anon_sym_mut] = ACTIONS(4406), + [anon_sym_const] = ACTIONS(4406), + [anon_sym_SEMI] = ACTIONS(4406), + [sym_cmd_identifier] = ACTIONS(4406), + [anon_sym_LF] = ACTIONS(4408), + [anon_sym_def] = ACTIONS(4406), + [anon_sym_export_DASHenv] = ACTIONS(4406), + [anon_sym_extern] = ACTIONS(4406), + [anon_sym_module] = ACTIONS(4406), + [anon_sym_use] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4406), + [anon_sym_DOLLAR] = ACTIONS(4406), + [anon_sym_error] = ACTIONS(4406), + [anon_sym_DASH_DASH] = ACTIONS(4406), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_loop] = ACTIONS(4406), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_do] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_source] = ACTIONS(4406), + [anon_sym_source_DASHenv] = ACTIONS(4406), + [anon_sym_register] = ACTIONS(4406), + [anon_sym_hide] = ACTIONS(4406), + [anon_sym_hide_DASHenv] = ACTIONS(4406), + [anon_sym_overlay] = ACTIONS(4406), + [anon_sym_as] = ACTIONS(4406), + [anon_sym_where] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_not] = ACTIONS(4406), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_true] = ACTIONS(4406), + [anon_sym_false] = ACTIONS(4406), + [aux_sym__val_number_decimal_token1] = ACTIONS(4406), + [aux_sym__val_number_token1] = ACTIONS(4406), + [aux_sym__val_number_token2] = ACTIONS(4406), + [aux_sym__val_number_token3] = ACTIONS(4406), + [aux_sym__val_number_token4] = ACTIONS(4406), + [aux_sym__val_number_token5] = ACTIONS(4406), + [aux_sym__val_number_token6] = ACTIONS(4406), + [anon_sym_0b] = ACTIONS(4406), + [anon_sym_0o] = ACTIONS(4406), + [anon_sym_0x] = ACTIONS(4406), + [sym_val_date] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(4406), + [sym__str_single_quotes] = ACTIONS(4406), + [sym__str_back_ticks] = ACTIONS(4406), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4406), [anon_sym_POUND] = ACTIONS(105), }, [1892] = { - [sym__expression] = STATE(7778), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1889), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1892), - [ts_builtin_sym_end] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4414), + [anon_sym_export] = ACTIONS(4412), + [anon_sym_alias] = ACTIONS(4412), + [anon_sym_let] = ACTIONS(4412), + [anon_sym_let_DASHenv] = ACTIONS(4412), + [anon_sym_mut] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [sym_cmd_identifier] = ACTIONS(4412), + [anon_sym_LF] = ACTIONS(4414), + [anon_sym_def] = ACTIONS(4412), + [anon_sym_export_DASHenv] = ACTIONS(4412), + [anon_sym_extern] = ACTIONS(4412), + [anon_sym_module] = ACTIONS(4412), + [anon_sym_use] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym_DOLLAR] = ACTIONS(4412), + [anon_sym_error] = ACTIONS(4412), + [anon_sym_DASH_DASH] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_for] = ACTIONS(4412), + [anon_sym_loop] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_match] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_source] = ACTIONS(4412), + [anon_sym_source_DASHenv] = ACTIONS(4412), + [anon_sym_register] = ACTIONS(4412), + [anon_sym_hide] = ACTIONS(4412), + [anon_sym_hide_DASHenv] = ACTIONS(4412), + [anon_sym_overlay] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_not] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [aux_sym__val_number_decimal_token1] = ACTIONS(4412), + [aux_sym__val_number_token1] = ACTIONS(4412), + [aux_sym__val_number_token2] = ACTIONS(4412), + [aux_sym__val_number_token3] = ACTIONS(4412), + [aux_sym__val_number_token4] = ACTIONS(4412), + [aux_sym__val_number_token5] = ACTIONS(4412), + [aux_sym__val_number_token6] = ACTIONS(4412), + [anon_sym_0b] = ACTIONS(4412), + [anon_sym_0o] = ACTIONS(4412), + [anon_sym_0x] = ACTIONS(4412), + [sym_val_date] = ACTIONS(4412), + [anon_sym_DQUOTE] = ACTIONS(4412), + [sym__str_single_quotes] = ACTIONS(4412), + [sym__str_back_ticks] = ACTIONS(4412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4412), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4412), + [anon_sym_CARET] = ACTIONS(4412), [anon_sym_POUND] = ACTIONS(105), }, [1893] = { - [sym__expression] = STATE(7708), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1893), - [ts_builtin_sym_end] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4285), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4457), + [anon_sym_export] = ACTIONS(4455), + [anon_sym_alias] = ACTIONS(4455), + [anon_sym_let] = ACTIONS(4455), + [anon_sym_let_DASHenv] = ACTIONS(4455), + [anon_sym_mut] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4455), + [sym_cmd_identifier] = ACTIONS(4455), + [anon_sym_LF] = ACTIONS(4457), + [anon_sym_def] = ACTIONS(4455), + [anon_sym_export_DASHenv] = ACTIONS(4455), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym_module] = ACTIONS(4455), + [anon_sym_use] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_error] = ACTIONS(4455), + [anon_sym_DASH_DASH] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_for] = ACTIONS(4455), + [anon_sym_loop] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_do] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_match] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_source] = ACTIONS(4455), + [anon_sym_source_DASHenv] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_hide] = ACTIONS(4455), + [anon_sym_hide_DASHenv] = ACTIONS(4455), + [anon_sym_overlay] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_not] = ACTIONS(4455), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4455), + [aux_sym__val_number_token1] = ACTIONS(4455), + [aux_sym__val_number_token2] = ACTIONS(4455), + [aux_sym__val_number_token3] = ACTIONS(4455), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(4455), + [anon_sym_0o] = ACTIONS(4455), + [anon_sym_0x] = ACTIONS(4455), + [sym_val_date] = ACTIONS(4455), + [anon_sym_DQUOTE] = ACTIONS(4455), + [sym__str_single_quotes] = ACTIONS(4455), + [sym__str_back_ticks] = ACTIONS(4455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4455), + [anon_sym_CARET] = ACTIONS(4455), [anon_sym_POUND] = ACTIONS(105), }, [1894] = { [sym_comment] = STATE(1894), - [ts_builtin_sym_end] = ACTIONS(1311), - [anon_sym_export] = ACTIONS(1309), - [anon_sym_alias] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_let_DASHenv] = ACTIONS(1309), - [anon_sym_mut] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [sym_cmd_identifier] = ACTIONS(1309), - [anon_sym_LF] = ACTIONS(1311), - [anon_sym_def] = ACTIONS(1309), - [anon_sym_export_DASHenv] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_module] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_try] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_source] = ACTIONS(1309), - [anon_sym_source_DASHenv] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_hide] = ACTIONS(1309), - [anon_sym_hide_DASHenv] = ACTIONS(1309), - [anon_sym_overlay] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1309), - [anon_sym_where] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1309), - [aux_sym__val_number_token5] = ACTIONS(1309), - [aux_sym__val_number_token6] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1309), - [anon_sym_0o] = ACTIONS(1309), - [anon_sym_0x] = ACTIONS(1309), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(4464), + [anon_sym_export] = ACTIONS(4462), + [anon_sym_alias] = ACTIONS(4462), + [anon_sym_let] = ACTIONS(4462), + [anon_sym_let_DASHenv] = ACTIONS(4462), + [anon_sym_mut] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4462), + [sym_cmd_identifier] = ACTIONS(4462), + [anon_sym_LF] = ACTIONS(4464), + [anon_sym_def] = ACTIONS(4462), + [anon_sym_export_DASHenv] = ACTIONS(4462), + [anon_sym_extern] = ACTIONS(4462), + [anon_sym_module] = ACTIONS(4462), + [anon_sym_use] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym_DOLLAR] = ACTIONS(4462), + [anon_sym_error] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_loop] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_do] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_match] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_source] = ACTIONS(4462), + [anon_sym_source_DASHenv] = ACTIONS(4462), + [anon_sym_register] = ACTIONS(4462), + [anon_sym_hide] = ACTIONS(4462), + [anon_sym_hide_DASHenv] = ACTIONS(4462), + [anon_sym_overlay] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_not] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [aux_sym__val_number_decimal_token1] = ACTIONS(4462), + [aux_sym__val_number_token1] = ACTIONS(4462), + [aux_sym__val_number_token2] = ACTIONS(4462), + [aux_sym__val_number_token3] = ACTIONS(4462), + [aux_sym__val_number_token4] = ACTIONS(4462), + [aux_sym__val_number_token5] = ACTIONS(4462), + [aux_sym__val_number_token6] = ACTIONS(4462), + [anon_sym_0b] = ACTIONS(4462), + [anon_sym_0o] = ACTIONS(4462), + [anon_sym_0x] = ACTIONS(4462), + [sym_val_date] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym__str_single_quotes] = ACTIONS(4462), + [sym__str_back_ticks] = ACTIONS(4462), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4462), + [anon_sym_CARET] = ACTIONS(4462), [anon_sym_POUND] = ACTIONS(105), }, [1895] = { - [sym__expression] = STATE(7827), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1742), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1895), - [ts_builtin_sym_end] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4476), + [anon_sym_export] = ACTIONS(4474), + [anon_sym_alias] = ACTIONS(4474), + [anon_sym_let] = ACTIONS(4474), + [anon_sym_let_DASHenv] = ACTIONS(4474), + [anon_sym_mut] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [sym_cmd_identifier] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4476), + [anon_sym_def] = ACTIONS(4474), + [anon_sym_export_DASHenv] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym_module] = ACTIONS(4474), + [anon_sym_use] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_error] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4474), + [anon_sym_continue] = ACTIONS(4474), + [anon_sym_for] = ACTIONS(4474), + [anon_sym_loop] = ACTIONS(4474), + [anon_sym_while] = ACTIONS(4474), + [anon_sym_do] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4474), + [anon_sym_match] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4474), + [anon_sym_source] = ACTIONS(4474), + [anon_sym_source_DASHenv] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_hide] = ACTIONS(4474), + [anon_sym_hide_DASHenv] = ACTIONS(4474), + [anon_sym_overlay] = ACTIONS(4474), + [anon_sym_as] = ACTIONS(4474), + [anon_sym_where] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_not] = ACTIONS(4474), + [anon_sym_null] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4474), + [anon_sym_false] = ACTIONS(4474), + [aux_sym__val_number_decimal_token1] = ACTIONS(4474), + [aux_sym__val_number_token1] = ACTIONS(4474), + [aux_sym__val_number_token2] = ACTIONS(4474), + [aux_sym__val_number_token3] = ACTIONS(4474), + [aux_sym__val_number_token4] = ACTIONS(4474), + [aux_sym__val_number_token5] = ACTIONS(4474), + [aux_sym__val_number_token6] = ACTIONS(4474), + [anon_sym_0b] = ACTIONS(4474), + [anon_sym_0o] = ACTIONS(4474), + [anon_sym_0x] = ACTIONS(4474), + [sym_val_date] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym__str_single_quotes] = ACTIONS(4474), + [sym__str_back_ticks] = ACTIONS(4474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4474), + [anon_sym_CARET] = ACTIONS(4474), [anon_sym_POUND] = ACTIONS(105), }, [1896] = { + [sym__expression] = STATE(7631), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(1897), + [sym_short_flag] = STATE(5869), + [sym_long_flag] = STATE(5869), + [sym_long_flag_equals_value] = STATE(5818), [sym_comment] = STATE(1896), - [ts_builtin_sym_end] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_alias] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_let_DASHenv] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [sym_cmd_identifier] = ACTIONS(1274), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_def] = ACTIONS(1274), - [anon_sym_export_DASHenv] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_source] = ACTIONS(1274), - [anon_sym_source_DASHenv] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_hide_DASHenv] = ACTIONS(1274), - [anon_sym_overlay] = ACTIONS(1274), - [anon_sym_as] = ACTIONS(1274), - [anon_sym_where] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_not] = ACTIONS(1274), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(1274), - [aux_sym__val_number_token2] = ACTIONS(1274), - [aux_sym__val_number_token3] = ACTIONS(1274), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1274), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_0b] = ACTIONS(1274), - [anon_sym_0o] = ACTIONS(1274), - [anon_sym_0x] = ACTIONS(1274), - [sym_val_date] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym__str_single_quotes] = ACTIONS(1274), - [sym__str_back_ticks] = ACTIONS(1274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1897] = { + [sym__expression] = STATE(7765), + [sym_expr_unary] = STATE(5382), + [sym__expr_unary_minus] = STATE(5383), + [sym_expr_binary] = STATE(5382), + [sym__expr_binary_expression] = STATE(6682), + [sym_expr_parenthesized] = STATE(5195), + [sym_val_range] = STATE(8533), + [sym__value] = STATE(5382), + [sym_val_nothing] = STATE(5732), + [sym_val_bool] = STATE(5732), + [sym_val_variable] = STATE(5261), + [sym__var] = STATE(4852), + [sym_val_number] = STATE(5009), + [sym__val_number_decimal] = STATE(4773), + [sym__val_number] = STATE(5039), + [sym_val_duration] = STATE(5732), + [sym_val_filesize] = STATE(5732), + [sym_val_binary] = STATE(5732), + [sym_val_string] = STATE(5732), + [sym__str_double_quotes] = STATE(5726), + [sym_val_interpolated] = STATE(5732), + [sym__inter_single_quotes] = STATE(5664), + [sym__inter_double_quotes] = STATE(5665), + [sym_val_list] = STATE(5732), + [sym_val_record] = STATE(5732), + [sym_val_table] = STATE(5732), + [sym_val_closure] = STATE(5732), + [sym__flag] = STATE(7752), + [sym_short_flag] = STATE(8440), + [sym_long_flag] = STATE(8440), + [sym_long_flag_equals_value] = STATE(8374), [sym_comment] = STATE(1897), - [ts_builtin_sym_end] = ACTIONS(1224), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [sym_cmd_identifier] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_DOT2] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_where] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [aux_sym__val_number_decimal_token1] = ACTIONS(1222), - [aux_sym__val_number_token1] = ACTIONS(1222), - [aux_sym__val_number_token2] = ACTIONS(1222), - [aux_sym__val_number_token3] = ACTIONS(1222), - [aux_sym__val_number_token4] = ACTIONS(1222), - [aux_sym__val_number_token5] = ACTIONS(1222), - [aux_sym__val_number_token6] = ACTIONS(1222), - [anon_sym_0b] = ACTIONS(1222), - [anon_sym_0o] = ACTIONS(1222), - [anon_sym_0x] = ACTIONS(1222), - [sym_val_date] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym__str_single_quotes] = ACTIONS(1222), - [sym__str_back_ticks] = ACTIONS(1222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), + [ts_builtin_sym_end] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4244), + [anon_sym_LF] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4244), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_not] = ACTIONS(4561), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_true] = ACTIONS(4565), + [anon_sym_false] = ACTIONS(4565), + [aux_sym__val_number_decimal_token1] = ACTIONS(4567), + [aux_sym__val_number_token1] = ACTIONS(4569), + [aux_sym__val_number_token2] = ACTIONS(4569), + [aux_sym__val_number_token3] = ACTIONS(4569), + [aux_sym__val_number_token4] = ACTIONS(4569), + [aux_sym__val_number_token5] = ACTIONS(4569), + [aux_sym__val_number_token6] = ACTIONS(4569), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4573), + [sym__str_single_quotes] = ACTIONS(4575), + [sym__str_back_ticks] = ACTIONS(4575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4579), [anon_sym_POUND] = ACTIONS(105), }, [1898] = { [sym_comment] = STATE(1898), - [anon_sym_export] = ACTIONS(1385), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_let_DASHenv] = ACTIONS(1385), - [anon_sym_mut] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [sym_cmd_identifier] = ACTIONS(1385), - [anon_sym_LF] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1385), - [anon_sym_export_DASHenv] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_module] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_source] = ACTIONS(1385), - [anon_sym_source_DASHenv] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_hide] = ACTIONS(1385), - [anon_sym_hide_DASHenv] = ACTIONS(1385), - [anon_sym_overlay] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [aux_sym__val_number_decimal_token1] = ACTIONS(1385), - [aux_sym__val_number_token1] = ACTIONS(1385), - [aux_sym__val_number_token2] = ACTIONS(1385), - [aux_sym__val_number_token3] = ACTIONS(1385), - [aux_sym__val_number_token4] = ACTIONS(1385), - [aux_sym__val_number_token5] = ACTIONS(1385), - [aux_sym__val_number_token6] = ACTIONS(1385), - [anon_sym_0b] = ACTIONS(1385), - [anon_sym_0o] = ACTIONS(1385), - [anon_sym_0x] = ACTIONS(1385), - [sym_val_date] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym__str_single_quotes] = ACTIONS(1385), - [sym__str_back_ticks] = ACTIONS(1385), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(4480), + [anon_sym_export] = ACTIONS(4478), + [anon_sym_alias] = ACTIONS(4478), + [anon_sym_let] = ACTIONS(4478), + [anon_sym_let_DASHenv] = ACTIONS(4478), + [anon_sym_mut] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [sym_cmd_identifier] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4480), + [anon_sym_def] = ACTIONS(4478), + [anon_sym_export_DASHenv] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym_module] = ACTIONS(4478), + [anon_sym_use] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_error] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_loop] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4478), + [anon_sym_do] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_match] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_source] = ACTIONS(4478), + [anon_sym_source_DASHenv] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_hide] = ACTIONS(4478), + [anon_sym_hide_DASHenv] = ACTIONS(4478), + [anon_sym_overlay] = ACTIONS(4478), + [anon_sym_as] = ACTIONS(4478), + [anon_sym_where] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_not] = ACTIONS(4478), + [anon_sym_null] = ACTIONS(4478), + [anon_sym_true] = ACTIONS(4478), + [anon_sym_false] = ACTIONS(4478), + [aux_sym__val_number_decimal_token1] = ACTIONS(4478), + [aux_sym__val_number_token1] = ACTIONS(4478), + [aux_sym__val_number_token2] = ACTIONS(4478), + [aux_sym__val_number_token3] = ACTIONS(4478), + [aux_sym__val_number_token4] = ACTIONS(4478), + [aux_sym__val_number_token5] = ACTIONS(4478), + [aux_sym__val_number_token6] = ACTIONS(4478), + [anon_sym_0b] = ACTIONS(4478), + [anon_sym_0o] = ACTIONS(4478), + [anon_sym_0x] = ACTIONS(4478), + [sym_val_date] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym__str_single_quotes] = ACTIONS(4478), + [sym__str_back_ticks] = ACTIONS(4478), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4478), [anon_sym_POUND] = ACTIONS(105), }, [1899] = { [sym_comment] = STATE(1899), - [ts_builtin_sym_end] = ACTIONS(1280), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [sym_cmd_identifier] = ACTIONS(1278), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1278), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_where] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_not] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1278), - [aux_sym__val_number_token5] = ACTIONS(1278), - [aux_sym__val_number_token6] = ACTIONS(1278), - [anon_sym_0b] = ACTIONS(1278), - [anon_sym_0o] = ACTIONS(1278), - [anon_sym_0x] = ACTIONS(1278), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4482), + [anon_sym_alias] = ACTIONS(4482), + [anon_sym_let] = ACTIONS(4482), + [anon_sym_let_DASHenv] = ACTIONS(4482), + [anon_sym_mut] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [sym_cmd_identifier] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4484), + [anon_sym_def] = ACTIONS(4482), + [anon_sym_export_DASHenv] = ACTIONS(4482), + [anon_sym_extern] = ACTIONS(4482), + [anon_sym_module] = ACTIONS(4482), + [anon_sym_use] = ACTIONS(4482), + [anon_sym_LBRACK] = ACTIONS(4482), + [anon_sym_LPAREN] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_error] = ACTIONS(4482), + [anon_sym_DASH_DASH] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_for] = ACTIONS(4482), + [anon_sym_loop] = ACTIONS(4482), + [anon_sym_while] = ACTIONS(4482), + [anon_sym_do] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_match] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_try] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_source] = ACTIONS(4482), + [anon_sym_source_DASHenv] = ACTIONS(4482), + [anon_sym_register] = ACTIONS(4482), + [anon_sym_hide] = ACTIONS(4482), + [anon_sym_hide_DASHenv] = ACTIONS(4482), + [anon_sym_overlay] = ACTIONS(4482), + [anon_sym_as] = ACTIONS(4482), + [anon_sym_where] = ACTIONS(4482), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_not] = ACTIONS(4482), + [anon_sym_null] = ACTIONS(4482), + [anon_sym_true] = ACTIONS(4482), + [anon_sym_false] = ACTIONS(4482), + [aux_sym__val_number_decimal_token1] = ACTIONS(4482), + [aux_sym__val_number_token1] = ACTIONS(4482), + [aux_sym__val_number_token2] = ACTIONS(4482), + [aux_sym__val_number_token3] = ACTIONS(4482), + [aux_sym__val_number_token4] = ACTIONS(4482), + [aux_sym__val_number_token5] = ACTIONS(4482), + [aux_sym__val_number_token6] = ACTIONS(4482), + [anon_sym_0b] = ACTIONS(4482), + [anon_sym_0o] = ACTIONS(4482), + [anon_sym_0x] = ACTIONS(4482), + [sym_val_date] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym__str_single_quotes] = ACTIONS(4482), + [sym__str_back_ticks] = ACTIONS(4482), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4482), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4482), + [anon_sym_CARET] = ACTIONS(4482), [anon_sym_POUND] = ACTIONS(105), }, [1900] = { [sym_comment] = STATE(1900), - [anon_sym_export] = ACTIONS(1193), - [anon_sym_alias] = ACTIONS(1193), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_let_DASHenv] = ACTIONS(1193), - [anon_sym_mut] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [sym_cmd_identifier] = ACTIONS(1193), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_def] = ACTIONS(1193), - [anon_sym_export_DASHenv] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_use] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1193), - [anon_sym_error] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_loop] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_source] = ACTIONS(1193), - [anon_sym_source_DASHenv] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_hide] = ACTIONS(1193), - [anon_sym_hide_DASHenv] = ACTIONS(1193), - [anon_sym_overlay] = ACTIONS(1193), - [anon_sym_where] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_not] = ACTIONS(1193), - [anon_sym_null] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1193), - [anon_sym_false] = ACTIONS(1193), - [aux_sym__val_number_decimal_token1] = ACTIONS(1193), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [aux_sym__val_number_token4] = ACTIONS(1193), - [aux_sym__val_number_token5] = ACTIONS(1193), - [aux_sym__val_number_token6] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1193), - [anon_sym_0o] = ACTIONS(1193), - [anon_sym_0x] = ACTIONS(1193), - [sym_val_date] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym__str_single_quotes] = ACTIONS(1193), - [sym__str_back_ticks] = ACTIONS(1193), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1193), - [aux_sym_unquoted_token5] = ACTIONS(4293), + [ts_builtin_sym_end] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4086), + [anon_sym_alias] = ACTIONS(4086), + [anon_sym_let] = ACTIONS(4086), + [anon_sym_let_DASHenv] = ACTIONS(4086), + [anon_sym_mut] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4086), + [sym_cmd_identifier] = ACTIONS(4086), + [anon_sym_LF] = ACTIONS(4088), + [anon_sym_def] = ACTIONS(4086), + [anon_sym_export_DASHenv] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym_module] = ACTIONS(4086), + [anon_sym_use] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4086), + [anon_sym_DOLLAR] = ACTIONS(4086), + [anon_sym_error] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_loop] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_match] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_DOT] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_source] = ACTIONS(4086), + [anon_sym_source_DASHenv] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_hide] = ACTIONS(4086), + [anon_sym_hide_DASHenv] = ACTIONS(4086), + [anon_sym_overlay] = ACTIONS(4086), + [anon_sym_as] = ACTIONS(4086), + [anon_sym_where] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_null] = ACTIONS(4086), + [anon_sym_true] = ACTIONS(4086), + [anon_sym_false] = ACTIONS(4086), + [aux_sym__val_number_decimal_token1] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(4086), + [aux_sym__val_number_token2] = ACTIONS(4086), + [aux_sym__val_number_token3] = ACTIONS(4086), + [aux_sym__val_number_token4] = ACTIONS(4086), + [aux_sym__val_number_token5] = ACTIONS(4086), + [aux_sym__val_number_token6] = ACTIONS(4086), + [anon_sym_0b] = ACTIONS(4086), + [anon_sym_0o] = ACTIONS(4086), + [anon_sym_0x] = ACTIONS(4086), + [sym_val_date] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym__str_single_quotes] = ACTIONS(4086), + [sym__str_back_ticks] = ACTIONS(4086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4086), + [anon_sym_CARET] = ACTIONS(4086), [anon_sym_POUND] = ACTIONS(105), }, [1901] = { - [sym_block] = STATE(2093), [sym_comment] = STATE(1901), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_alias] = ACTIONS(4591), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_let_DASHenv] = ACTIONS(4591), - [anon_sym_mut] = ACTIONS(4591), - [anon_sym_const] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [sym_cmd_identifier] = ACTIONS(4591), - [anon_sym_LF] = ACTIONS(4593), - [anon_sym_def] = ACTIONS(4591), - [anon_sym_export_DASHenv] = ACTIONS(4591), - [anon_sym_extern] = ACTIONS(4591), - [anon_sym_module] = ACTIONS(4591), - [anon_sym_use] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_error] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_break] = ACTIONS(4591), - [anon_sym_continue] = ACTIONS(4591), - [anon_sym_for] = ACTIONS(4591), - [anon_sym_loop] = ACTIONS(4591), - [anon_sym_while] = ACTIONS(4591), - [anon_sym_do] = ACTIONS(4591), - [anon_sym_if] = ACTIONS(4591), - [anon_sym_match] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_try] = ACTIONS(4591), - [anon_sym_return] = ACTIONS(4591), - [anon_sym_source] = ACTIONS(4591), - [anon_sym_source_DASHenv] = ACTIONS(4591), - [anon_sym_register] = ACTIONS(4591), - [anon_sym_hide] = ACTIONS(4591), - [anon_sym_hide_DASHenv] = ACTIONS(4591), - [anon_sym_overlay] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_not] = ACTIONS(4591), - [anon_sym_null] = ACTIONS(4591), - [anon_sym_true] = ACTIONS(4591), - [anon_sym_false] = ACTIONS(4591), - [aux_sym__val_number_decimal_token1] = ACTIONS(4591), - [aux_sym__val_number_token1] = ACTIONS(4591), - [aux_sym__val_number_token2] = ACTIONS(4591), - [aux_sym__val_number_token3] = ACTIONS(4591), - [aux_sym__val_number_token4] = ACTIONS(4591), - [aux_sym__val_number_token5] = ACTIONS(4591), - [aux_sym__val_number_token6] = ACTIONS(4591), - [anon_sym_0b] = ACTIONS(4591), - [anon_sym_0o] = ACTIONS(4591), - [anon_sym_0x] = ACTIONS(4591), - [sym_val_date] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [sym__str_single_quotes] = ACTIONS(4591), - [sym__str_back_ticks] = ACTIONS(4591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4591), - [anon_sym_CARET] = ACTIONS(4591), + [ts_builtin_sym_end] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4090), + [anon_sym_alias] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_let_DASHenv] = ACTIONS(4090), + [anon_sym_mut] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4090), + [sym_cmd_identifier] = ACTIONS(4090), + [anon_sym_LF] = ACTIONS(4092), + [anon_sym_def] = ACTIONS(4090), + [anon_sym_export_DASHenv] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym_module] = ACTIONS(4090), + [anon_sym_use] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_DOLLAR] = ACTIONS(4090), + [anon_sym_error] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_loop] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_match] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_source] = ACTIONS(4090), + [anon_sym_source_DASHenv] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_hide] = ACTIONS(4090), + [anon_sym_hide_DASHenv] = ACTIONS(4090), + [anon_sym_overlay] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_null] = ACTIONS(4090), + [anon_sym_true] = ACTIONS(4090), + [anon_sym_false] = ACTIONS(4090), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_token1] = ACTIONS(4090), + [aux_sym__val_number_token2] = ACTIONS(4090), + [aux_sym__val_number_token3] = ACTIONS(4090), + [aux_sym__val_number_token4] = ACTIONS(4090), + [aux_sym__val_number_token5] = ACTIONS(4090), + [aux_sym__val_number_token6] = ACTIONS(4090), + [anon_sym_0b] = ACTIONS(4090), + [anon_sym_0o] = ACTIONS(4090), + [anon_sym_0x] = ACTIONS(4090), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym__str_single_quotes] = ACTIONS(4090), + [sym__str_back_ticks] = ACTIONS(4090), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), [anon_sym_POUND] = ACTIONS(105), }, [1902] = { - [sym__expression] = STATE(7662), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1891), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1902), - [ts_builtin_sym_end] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4150), + [anon_sym_alias] = ACTIONS(4150), + [anon_sym_let] = ACTIONS(4150), + [anon_sym_let_DASHenv] = ACTIONS(4150), + [anon_sym_mut] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4150), + [sym_cmd_identifier] = ACTIONS(4150), + [anon_sym_LF] = ACTIONS(4152), + [anon_sym_def] = ACTIONS(4150), + [anon_sym_export_DASHenv] = ACTIONS(4150), + [anon_sym_extern] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_use] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_DOLLAR] = ACTIONS(4150), + [anon_sym_error] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_loop] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_match] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_source] = ACTIONS(4150), + [anon_sym_source_DASHenv] = ACTIONS(4150), + [anon_sym_register] = ACTIONS(4150), + [anon_sym_hide] = ACTIONS(4150), + [anon_sym_hide_DASHenv] = ACTIONS(4150), + [anon_sym_overlay] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_not] = ACTIONS(4150), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [aux_sym__val_number_decimal_token1] = ACTIONS(4150), + [aux_sym__val_number_token1] = ACTIONS(4150), + [aux_sym__val_number_token2] = ACTIONS(4150), + [aux_sym__val_number_token3] = ACTIONS(4150), + [aux_sym__val_number_token4] = ACTIONS(4150), + [aux_sym__val_number_token5] = ACTIONS(4150), + [aux_sym__val_number_token6] = ACTIONS(4150), + [anon_sym_0b] = ACTIONS(4150), + [anon_sym_0o] = ACTIONS(4150), + [anon_sym_0x] = ACTIONS(4150), + [sym_val_date] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym__str_single_quotes] = ACTIONS(4150), + [sym__str_back_ticks] = ACTIONS(4150), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4150), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), [anon_sym_POUND] = ACTIONS(105), }, [1903] = { - [sym__expression] = STATE(7827), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1748), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1903), - [ts_builtin_sym_end] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4166), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_alias] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_let_DASHenv] = ACTIONS(4164), + [anon_sym_mut] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4164), + [sym_cmd_identifier] = ACTIONS(4164), + [anon_sym_LF] = ACTIONS(4166), + [anon_sym_def] = ACTIONS(4164), + [anon_sym_export_DASHenv] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_use] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(4164), + [anon_sym_error] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_loop] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_match] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_source] = ACTIONS(4164), + [anon_sym_source_DASHenv] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_hide] = ACTIONS(4164), + [anon_sym_hide_DASHenv] = ACTIONS(4164), + [anon_sym_overlay] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [aux_sym__val_number_decimal_token1] = ACTIONS(4164), + [aux_sym__val_number_token1] = ACTIONS(4164), + [aux_sym__val_number_token2] = ACTIONS(4164), + [aux_sym__val_number_token3] = ACTIONS(4164), + [aux_sym__val_number_token4] = ACTIONS(4164), + [aux_sym__val_number_token5] = ACTIONS(4164), + [aux_sym__val_number_token6] = ACTIONS(4164), + [anon_sym_0b] = ACTIONS(4164), + [anon_sym_0o] = ACTIONS(4164), + [anon_sym_0x] = ACTIONS(4164), + [sym_val_date] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym__str_single_quotes] = ACTIONS(4164), + [sym__str_back_ticks] = ACTIONS(4164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4164), + [anon_sym_CARET] = ACTIONS(4164), [anon_sym_POUND] = ACTIONS(105), }, [1904] = { - [sym__expression] = STATE(7662), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1886), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), [sym_comment] = STATE(1904), - [ts_builtin_sym_end] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4170), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_alias] = ACTIONS(4168), + [anon_sym_let] = ACTIONS(4168), + [anon_sym_let_DASHenv] = ACTIONS(4168), + [anon_sym_mut] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4168), + [sym_cmd_identifier] = ACTIONS(4168), + [anon_sym_LF] = ACTIONS(4170), + [anon_sym_def] = ACTIONS(4168), + [anon_sym_export_DASHenv] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym_module] = ACTIONS(4168), + [anon_sym_use] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_DOLLAR] = ACTIONS(4168), + [anon_sym_error] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_loop] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_match] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_source] = ACTIONS(4168), + [anon_sym_source_DASHenv] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_hide] = ACTIONS(4168), + [anon_sym_hide_DASHenv] = ACTIONS(4168), + [anon_sym_overlay] = ACTIONS(4168), + [anon_sym_as] = ACTIONS(4168), + [anon_sym_where] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4168), + [anon_sym_true] = ACTIONS(4168), + [anon_sym_false] = ACTIONS(4168), + [aux_sym__val_number_decimal_token1] = ACTIONS(4168), + [aux_sym__val_number_token1] = ACTIONS(4168), + [aux_sym__val_number_token2] = ACTIONS(4168), + [aux_sym__val_number_token3] = ACTIONS(4168), + [aux_sym__val_number_token4] = ACTIONS(4168), + [aux_sym__val_number_token5] = ACTIONS(4168), + [aux_sym__val_number_token6] = ACTIONS(4168), + [anon_sym_0b] = ACTIONS(4168), + [anon_sym_0o] = ACTIONS(4168), + [anon_sym_0x] = ACTIONS(4168), + [sym_val_date] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [sym__str_single_quotes] = ACTIONS(4168), + [sym__str_back_ticks] = ACTIONS(4168), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4168), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), [anon_sym_POUND] = ACTIONS(105), }, [1905] = { [sym_comment] = STATE(1905), - [ts_builtin_sym_end] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [sym_cmd_identifier] = ACTIONS(1282), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1282), - [anon_sym_where] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_not] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(4174), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_alias] = ACTIONS(4172), + [anon_sym_let] = ACTIONS(4172), + [anon_sym_let_DASHenv] = ACTIONS(4172), + [anon_sym_mut] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4172), + [sym_cmd_identifier] = ACTIONS(4172), + [anon_sym_LF] = ACTIONS(4174), + [anon_sym_def] = ACTIONS(4172), + [anon_sym_export_DASHenv] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4172), + [anon_sym_use] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(4172), + [anon_sym_error] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_loop] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_match] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_source] = ACTIONS(4172), + [anon_sym_source_DASHenv] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_hide] = ACTIONS(4172), + [anon_sym_hide_DASHenv] = ACTIONS(4172), + [anon_sym_overlay] = ACTIONS(4172), + [anon_sym_as] = ACTIONS(4172), + [anon_sym_where] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_null] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4172), + [anon_sym_false] = ACTIONS(4172), + [aux_sym__val_number_decimal_token1] = ACTIONS(4172), + [aux_sym__val_number_token1] = ACTIONS(4172), + [aux_sym__val_number_token2] = ACTIONS(4172), + [aux_sym__val_number_token3] = ACTIONS(4172), + [aux_sym__val_number_token4] = ACTIONS(4172), + [aux_sym__val_number_token5] = ACTIONS(4172), + [aux_sym__val_number_token6] = ACTIONS(4172), + [anon_sym_0b] = ACTIONS(4172), + [anon_sym_0o] = ACTIONS(4172), + [anon_sym_0x] = ACTIONS(4172), + [sym_val_date] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [sym__str_single_quotes] = ACTIONS(4172), + [sym__str_back_ticks] = ACTIONS(4172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4172), + [anon_sym_CARET] = ACTIONS(4172), [anon_sym_POUND] = ACTIONS(105), }, [1906] = { [sym_comment] = STATE(1906), - [ts_builtin_sym_end] = ACTIONS(4326), - [anon_sym_export] = ACTIONS(4324), - [anon_sym_alias] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_let_DASHenv] = ACTIONS(4324), - [anon_sym_mut] = ACTIONS(4324), - [anon_sym_const] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4324), - [sym_cmd_identifier] = ACTIONS(4324), - [anon_sym_LF] = ACTIONS(4326), - [anon_sym_def] = ACTIONS(4324), - [anon_sym_export_DASHenv] = ACTIONS(4324), - [anon_sym_extern] = ACTIONS(4324), - [anon_sym_module] = ACTIONS(4324), - [anon_sym_use] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_DOLLAR] = ACTIONS(4324), - [anon_sym_error] = ACTIONS(4324), - [anon_sym_DASH_DASH] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_for] = ACTIONS(4324), - [anon_sym_loop] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_do] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_match] = ACTIONS(4324), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_source] = ACTIONS(4324), - [anon_sym_source_DASHenv] = ACTIONS(4324), - [anon_sym_register] = ACTIONS(4324), - [anon_sym_hide] = ACTIONS(4324), - [anon_sym_hide_DASHenv] = ACTIONS(4324), - [anon_sym_overlay] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_not] = ACTIONS(4324), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_true] = ACTIONS(4324), - [anon_sym_false] = ACTIONS(4324), - [aux_sym__val_number_decimal_token1] = ACTIONS(4324), - [aux_sym__val_number_token1] = ACTIONS(4324), - [aux_sym__val_number_token2] = ACTIONS(4324), - [aux_sym__val_number_token3] = ACTIONS(4324), - [aux_sym__val_number_token4] = ACTIONS(4324), - [aux_sym__val_number_token5] = ACTIONS(4324), - [aux_sym__val_number_token6] = ACTIONS(4324), - [anon_sym_0b] = ACTIONS(4324), - [anon_sym_0o] = ACTIONS(4324), - [anon_sym_0x] = ACTIONS(4324), - [sym_val_date] = ACTIONS(4324), - [anon_sym_DQUOTE] = ACTIONS(4324), - [sym__str_single_quotes] = ACTIONS(4324), - [sym__str_back_ticks] = ACTIONS(4324), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4324), - [anon_sym_CARET] = ACTIONS(4324), + [ts_builtin_sym_end] = ACTIONS(4178), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_alias] = ACTIONS(4176), + [anon_sym_let] = ACTIONS(4176), + [anon_sym_let_DASHenv] = ACTIONS(4176), + [anon_sym_mut] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4176), + [sym_cmd_identifier] = ACTIONS(4176), + [anon_sym_LF] = ACTIONS(4178), + [anon_sym_def] = ACTIONS(4176), + [anon_sym_export_DASHenv] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym_module] = ACTIONS(4176), + [anon_sym_use] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4176), + [anon_sym_DOLLAR] = ACTIONS(4176), + [anon_sym_error] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_loop] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_match] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4176), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_source] = ACTIONS(4176), + [anon_sym_source_DASHenv] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_hide] = ACTIONS(4176), + [anon_sym_hide_DASHenv] = ACTIONS(4176), + [anon_sym_overlay] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_null] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [aux_sym__val_number_decimal_token1] = ACTIONS(4176), + [aux_sym__val_number_token1] = ACTIONS(4176), + [aux_sym__val_number_token2] = ACTIONS(4176), + [aux_sym__val_number_token3] = ACTIONS(4176), + [aux_sym__val_number_token4] = ACTIONS(4176), + [aux_sym__val_number_token5] = ACTIONS(4176), + [aux_sym__val_number_token6] = ACTIONS(4176), + [anon_sym_0b] = ACTIONS(4176), + [anon_sym_0o] = ACTIONS(4176), + [anon_sym_0x] = ACTIONS(4176), + [sym_val_date] = ACTIONS(4176), + [anon_sym_DQUOTE] = ACTIONS(4176), + [sym__str_single_quotes] = ACTIONS(4176), + [sym__str_back_ticks] = ACTIONS(4176), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4176), + [anon_sym_CARET] = ACTIONS(4176), [anon_sym_POUND] = ACTIONS(105), }, [1907] = { [sym_comment] = STATE(1907), - [ts_builtin_sym_end] = ACTIONS(4392), - [anon_sym_export] = ACTIONS(4390), - [anon_sym_alias] = ACTIONS(4390), - [anon_sym_let] = ACTIONS(4390), - [anon_sym_let_DASHenv] = ACTIONS(4390), - [anon_sym_mut] = ACTIONS(4390), - [anon_sym_const] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4390), - [sym_cmd_identifier] = ACTIONS(4390), - [anon_sym_LF] = ACTIONS(4392), - [anon_sym_def] = ACTIONS(4390), - [anon_sym_export_DASHenv] = ACTIONS(4390), - [anon_sym_extern] = ACTIONS(4390), - [anon_sym_module] = ACTIONS(4390), - [anon_sym_use] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4390), - [anon_sym_LPAREN] = ACTIONS(4390), - [anon_sym_DOLLAR] = ACTIONS(4390), - [anon_sym_error] = ACTIONS(4390), - [anon_sym_DASH_DASH] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_break] = ACTIONS(4390), - [anon_sym_continue] = ACTIONS(4390), - [anon_sym_for] = ACTIONS(4390), - [anon_sym_loop] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_do] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_match] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4390), - [anon_sym_DOT] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_source] = ACTIONS(4390), - [anon_sym_source_DASHenv] = ACTIONS(4390), - [anon_sym_register] = ACTIONS(4390), - [anon_sym_hide] = ACTIONS(4390), - [anon_sym_hide_DASHenv] = ACTIONS(4390), - [anon_sym_overlay] = ACTIONS(4390), - [anon_sym_as] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_not] = ACTIONS(4390), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_true] = ACTIONS(4390), - [anon_sym_false] = ACTIONS(4390), - [aux_sym__val_number_decimal_token1] = ACTIONS(4390), - [aux_sym__val_number_token1] = ACTIONS(4390), - [aux_sym__val_number_token2] = ACTIONS(4390), - [aux_sym__val_number_token3] = ACTIONS(4390), - [aux_sym__val_number_token4] = ACTIONS(4390), - [aux_sym__val_number_token5] = ACTIONS(4390), - [aux_sym__val_number_token6] = ACTIONS(4390), - [anon_sym_0b] = ACTIONS(4390), - [anon_sym_0o] = ACTIONS(4390), - [anon_sym_0x] = ACTIONS(4390), - [sym_val_date] = ACTIONS(4390), - [anon_sym_DQUOTE] = ACTIONS(4390), - [sym__str_single_quotes] = ACTIONS(4390), - [sym__str_back_ticks] = ACTIONS(4390), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), - [anon_sym_CARET] = ACTIONS(4390), + [ts_builtin_sym_end] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_alias] = ACTIONS(4184), + [anon_sym_let] = ACTIONS(4184), + [anon_sym_let_DASHenv] = ACTIONS(4184), + [anon_sym_mut] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4184), + [sym_cmd_identifier] = ACTIONS(4184), + [anon_sym_LF] = ACTIONS(4186), + [anon_sym_def] = ACTIONS(4184), + [anon_sym_export_DASHenv] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_use] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_LPAREN] = ACTIONS(4184), + [anon_sym_DOLLAR] = ACTIONS(4184), + [anon_sym_error] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_loop] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_match] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_source] = ACTIONS(4184), + [anon_sym_source_DASHenv] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_hide] = ACTIONS(4184), + [anon_sym_hide_DASHenv] = ACTIONS(4184), + [anon_sym_overlay] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4184), + [aux_sym__val_number_token1] = ACTIONS(4184), + [aux_sym__val_number_token2] = ACTIONS(4184), + [aux_sym__val_number_token3] = ACTIONS(4184), + [aux_sym__val_number_token4] = ACTIONS(4184), + [aux_sym__val_number_token5] = ACTIONS(4184), + [aux_sym__val_number_token6] = ACTIONS(4184), + [anon_sym_0b] = ACTIONS(4184), + [anon_sym_0o] = ACTIONS(4184), + [anon_sym_0x] = ACTIONS(4184), + [sym_val_date] = ACTIONS(4184), + [anon_sym_DQUOTE] = ACTIONS(4184), + [sym__str_single_quotes] = ACTIONS(4184), + [sym__str_back_ticks] = ACTIONS(4184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4184), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4184), + [anon_sym_CARET] = ACTIONS(4184), [anon_sym_POUND] = ACTIONS(105), }, [1908] = { [sym_comment] = STATE(1908), + [ts_builtin_sym_end] = ACTIONS(4199), + [anon_sym_export] = ACTIONS(4197), + [anon_sym_alias] = ACTIONS(4197), + [anon_sym_let] = ACTIONS(4197), + [anon_sym_let_DASHenv] = ACTIONS(4197), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_const] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [sym_cmd_identifier] = ACTIONS(4197), + [anon_sym_LF] = ACTIONS(4199), + [anon_sym_def] = ACTIONS(4197), + [anon_sym_export_DASHenv] = ACTIONS(4197), + [anon_sym_extern] = ACTIONS(4197), + [anon_sym_module] = ACTIONS(4197), + [anon_sym_use] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_error] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_break] = ACTIONS(4197), + [anon_sym_continue] = ACTIONS(4197), + [anon_sym_for] = ACTIONS(4197), + [anon_sym_loop] = ACTIONS(4197), + [anon_sym_while] = ACTIONS(4197), + [anon_sym_do] = ACTIONS(4197), + [anon_sym_if] = ACTIONS(4197), + [anon_sym_match] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_try] = ACTIONS(4197), + [anon_sym_return] = ACTIONS(4197), + [anon_sym_source] = ACTIONS(4197), + [anon_sym_source_DASHenv] = ACTIONS(4197), + [anon_sym_register] = ACTIONS(4197), + [anon_sym_hide] = ACTIONS(4197), + [anon_sym_hide_DASHenv] = ACTIONS(4197), + [anon_sym_overlay] = ACTIONS(4197), + [anon_sym_as] = ACTIONS(4197), + [anon_sym_where] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_not] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4197), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [aux_sym__val_number_decimal_token1] = ACTIONS(4197), + [aux_sym__val_number_token1] = ACTIONS(4197), + [aux_sym__val_number_token2] = ACTIONS(4197), + [aux_sym__val_number_token3] = ACTIONS(4197), + [aux_sym__val_number_token4] = ACTIONS(4197), + [aux_sym__val_number_token5] = ACTIONS(4197), + [aux_sym__val_number_token6] = ACTIONS(4197), + [anon_sym_0b] = ACTIONS(4197), + [anon_sym_0o] = ACTIONS(4197), + [anon_sym_0x] = ACTIONS(4197), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4197), + [sym__str_back_ticks] = ACTIONS(4197), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(105), + }, + [1909] = { + [sym_comment] = STATE(1909), + [ts_builtin_sym_end] = ACTIONS(4203), + [anon_sym_export] = ACTIONS(4201), + [anon_sym_alias] = ACTIONS(4201), + [anon_sym_let] = ACTIONS(4201), + [anon_sym_let_DASHenv] = ACTIONS(4201), + [anon_sym_mut] = ACTIONS(4201), + [anon_sym_const] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [sym_cmd_identifier] = ACTIONS(4201), + [anon_sym_LF] = ACTIONS(4203), + [anon_sym_def] = ACTIONS(4201), + [anon_sym_export_DASHenv] = ACTIONS(4201), + [anon_sym_extern] = ACTIONS(4201), + [anon_sym_module] = ACTIONS(4201), + [anon_sym_use] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_error] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [anon_sym_break] = ACTIONS(4201), + [anon_sym_continue] = ACTIONS(4201), + [anon_sym_for] = ACTIONS(4201), + [anon_sym_loop] = ACTIONS(4201), + [anon_sym_while] = ACTIONS(4201), + [anon_sym_do] = ACTIONS(4201), + [anon_sym_if] = ACTIONS(4201), + [anon_sym_match] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_DOT] = ACTIONS(4201), + [anon_sym_try] = ACTIONS(4201), + [anon_sym_return] = ACTIONS(4201), + [anon_sym_source] = ACTIONS(4201), + [anon_sym_source_DASHenv] = ACTIONS(4201), + [anon_sym_register] = ACTIONS(4201), + [anon_sym_hide] = ACTIONS(4201), + [anon_sym_hide_DASHenv] = ACTIONS(4201), + [anon_sym_overlay] = ACTIONS(4201), + [anon_sym_as] = ACTIONS(4201), + [anon_sym_where] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_not] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4201), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [aux_sym__val_number_decimal_token1] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(4201), + [aux_sym__val_number_token2] = ACTIONS(4201), + [aux_sym__val_number_token3] = ACTIONS(4201), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(4201), + [anon_sym_0o] = ACTIONS(4201), + [anon_sym_0x] = ACTIONS(4201), + [sym_val_date] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [sym__str_single_quotes] = ACTIONS(4201), + [sym__str_back_ticks] = ACTIONS(4201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4201), + [anon_sym_CARET] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(105), + }, + [1910] = { + [sym_comment] = STATE(1910), + [ts_builtin_sym_end] = ACTIONS(4217), + [anon_sym_export] = ACTIONS(4215), + [anon_sym_alias] = ACTIONS(4215), + [anon_sym_let] = ACTIONS(4215), + [anon_sym_let_DASHenv] = ACTIONS(4215), + [anon_sym_mut] = ACTIONS(4215), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_SEMI] = ACTIONS(4215), + [sym_cmd_identifier] = ACTIONS(4215), + [anon_sym_LF] = ACTIONS(4217), + [anon_sym_def] = ACTIONS(4215), + [anon_sym_export_DASHenv] = ACTIONS(4215), + [anon_sym_extern] = ACTIONS(4215), + [anon_sym_module] = ACTIONS(4215), + [anon_sym_use] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_DOLLAR] = ACTIONS(4215), + [anon_sym_error] = ACTIONS(4215), + [anon_sym_DASH_DASH] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_break] = ACTIONS(4215), + [anon_sym_continue] = ACTIONS(4215), + [anon_sym_for] = ACTIONS(4215), + [anon_sym_loop] = ACTIONS(4215), + [anon_sym_while] = ACTIONS(4215), + [anon_sym_do] = ACTIONS(4215), + [anon_sym_if] = ACTIONS(4215), + [anon_sym_match] = ACTIONS(4215), + [anon_sym_LBRACE] = ACTIONS(4215), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_try] = ACTIONS(4215), + [anon_sym_return] = ACTIONS(4215), + [anon_sym_source] = ACTIONS(4215), + [anon_sym_source_DASHenv] = ACTIONS(4215), + [anon_sym_register] = ACTIONS(4215), + [anon_sym_hide] = ACTIONS(4215), + [anon_sym_hide_DASHenv] = ACTIONS(4215), + [anon_sym_overlay] = ACTIONS(4215), + [anon_sym_as] = ACTIONS(4215), + [anon_sym_where] = ACTIONS(4215), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_not] = ACTIONS(4215), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4215), + [anon_sym_false] = ACTIONS(4215), + [aux_sym__val_number_decimal_token1] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(4215), + [aux_sym__val_number_token2] = ACTIONS(4215), + [aux_sym__val_number_token3] = ACTIONS(4215), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(4215), + [anon_sym_0o] = ACTIONS(4215), + [anon_sym_0x] = ACTIONS(4215), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4215), + [sym__str_single_quotes] = ACTIONS(4215), + [sym__str_back_ticks] = ACTIONS(4215), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4215), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_POUND] = ACTIONS(105), + }, + [1911] = { + [sym_comment] = STATE(1911), + [ts_builtin_sym_end] = ACTIONS(4233), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_alias] = ACTIONS(4231), + [anon_sym_let] = ACTIONS(4231), + [anon_sym_let_DASHenv] = ACTIONS(4231), + [anon_sym_mut] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [sym_cmd_identifier] = ACTIONS(4231), + [anon_sym_LF] = ACTIONS(4233), + [anon_sym_def] = ACTIONS(4231), + [anon_sym_export_DASHenv] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym_module] = ACTIONS(4231), + [anon_sym_use] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_error] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_loop] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_match] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4231), + [anon_sym_DOT] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_source] = ACTIONS(4231), + [anon_sym_source_DASHenv] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_hide] = ACTIONS(4231), + [anon_sym_hide_DASHenv] = ACTIONS(4231), + [anon_sym_overlay] = ACTIONS(4231), + [anon_sym_as] = ACTIONS(4231), + [anon_sym_where] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_null] = ACTIONS(4231), + [anon_sym_true] = ACTIONS(4231), + [anon_sym_false] = ACTIONS(4231), + [aux_sym__val_number_decimal_token1] = ACTIONS(4231), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4231), + [aux_sym__val_number_token5] = ACTIONS(4231), + [aux_sym__val_number_token6] = ACTIONS(4231), + [anon_sym_0b] = ACTIONS(4231), + [anon_sym_0o] = ACTIONS(4231), + [anon_sym_0x] = ACTIONS(4231), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4231), + [sym__str_back_ticks] = ACTIONS(4231), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4231), + [anon_sym_CARET] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(105), + }, + [1912] = { + [sym_comment] = STATE(1912), + [ts_builtin_sym_end] = ACTIONS(4261), + [anon_sym_export] = ACTIONS(4259), + [anon_sym_alias] = ACTIONS(4259), + [anon_sym_let] = ACTIONS(4259), + [anon_sym_let_DASHenv] = ACTIONS(4259), + [anon_sym_mut] = ACTIONS(4259), + [anon_sym_const] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [sym_cmd_identifier] = ACTIONS(4259), + [anon_sym_LF] = ACTIONS(4261), + [anon_sym_def] = ACTIONS(4259), + [anon_sym_export_DASHenv] = ACTIONS(4259), + [anon_sym_extern] = ACTIONS(4259), + [anon_sym_module] = ACTIONS(4259), + [anon_sym_use] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_error] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_for] = ACTIONS(4259), + [anon_sym_loop] = ACTIONS(4259), + [anon_sym_while] = ACTIONS(4259), + [anon_sym_do] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_match] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_try] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_source] = ACTIONS(4259), + [anon_sym_source_DASHenv] = ACTIONS(4259), + [anon_sym_register] = ACTIONS(4259), + [anon_sym_hide] = ACTIONS(4259), + [anon_sym_hide_DASHenv] = ACTIONS(4259), + [anon_sym_overlay] = ACTIONS(4259), + [anon_sym_as] = ACTIONS(4259), + [anon_sym_where] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_not] = ACTIONS(4259), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4259), + [anon_sym_false] = ACTIONS(4259), + [aux_sym__val_number_decimal_token1] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4259), + [aux_sym__val_number_token2] = ACTIONS(4259), + [aux_sym__val_number_token3] = ACTIONS(4259), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(4259), + [anon_sym_0o] = ACTIONS(4259), + [anon_sym_0x] = ACTIONS(4259), + [sym_val_date] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4259), + [anon_sym_CARET] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(105), + }, + [1913] = { + [sym_comment] = STATE(1913), + [ts_builtin_sym_end] = ACTIONS(4291), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_alias] = ACTIONS(4289), + [anon_sym_let] = ACTIONS(4289), + [anon_sym_let_DASHenv] = ACTIONS(4289), + [anon_sym_mut] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4289), + [sym_cmd_identifier] = ACTIONS(4289), + [anon_sym_LF] = ACTIONS(4291), + [anon_sym_def] = ACTIONS(4289), + [anon_sym_export_DASHenv] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_use] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(4289), + [anon_sym_error] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_loop] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_match] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_source] = ACTIONS(4289), + [anon_sym_source_DASHenv] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_hide] = ACTIONS(4289), + [anon_sym_hide_DASHenv] = ACTIONS(4289), + [anon_sym_overlay] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [aux_sym__val_number_token4] = ACTIONS(4289), + [aux_sym__val_number_token5] = ACTIONS(4289), + [aux_sym__val_number_token6] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(4289), + [anon_sym_0o] = ACTIONS(4289), + [anon_sym_0x] = ACTIONS(4289), + [sym_val_date] = ACTIONS(4289), + [anon_sym_DQUOTE] = ACTIONS(4289), + [sym__str_single_quotes] = ACTIONS(4289), + [sym__str_back_ticks] = ACTIONS(4289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_CARET] = ACTIONS(4289), + [anon_sym_POUND] = ACTIONS(105), + }, + [1914] = { + [sym_comment] = STATE(1914), + [ts_builtin_sym_end] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4311), + [anon_sym_alias] = ACTIONS(4311), + [anon_sym_let] = ACTIONS(4311), + [anon_sym_let_DASHenv] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4311), + [anon_sym_const] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4311), + [sym_cmd_identifier] = ACTIONS(4311), + [anon_sym_LF] = ACTIONS(4313), + [anon_sym_def] = ACTIONS(4311), + [anon_sym_export_DASHenv] = ACTIONS(4311), + [anon_sym_extern] = ACTIONS(4311), + [anon_sym_module] = ACTIONS(4311), + [anon_sym_use] = ACTIONS(4311), + [anon_sym_LBRACK] = ACTIONS(4311), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4311), + [anon_sym_error] = ACTIONS(4311), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_for] = ACTIONS(4311), + [anon_sym_loop] = ACTIONS(4311), + [anon_sym_while] = ACTIONS(4311), + [anon_sym_do] = ACTIONS(4311), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_source] = ACTIONS(4311), + [anon_sym_source_DASHenv] = ACTIONS(4311), + [anon_sym_register] = ACTIONS(4311), + [anon_sym_hide] = ACTIONS(4311), + [anon_sym_hide_DASHenv] = ACTIONS(4311), + [anon_sym_overlay] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_not] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4311), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [aux_sym__val_number_decimal_token1] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4311), + [aux_sym__val_number_token2] = ACTIONS(4311), + [aux_sym__val_number_token3] = ACTIONS(4311), + [aux_sym__val_number_token4] = ACTIONS(4311), + [aux_sym__val_number_token5] = ACTIONS(4311), + [aux_sym__val_number_token6] = ACTIONS(4311), + [anon_sym_0b] = ACTIONS(4311), + [anon_sym_0o] = ACTIONS(4311), + [anon_sym_0x] = ACTIONS(4311), + [sym_val_date] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4311), + [sym__str_single_quotes] = ACTIONS(4311), + [sym__str_back_ticks] = ACTIONS(4311), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4311), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4311), + [anon_sym_CARET] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(105), + }, + [1915] = { + [sym_comment] = STATE(1915), + [ts_builtin_sym_end] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4315), + [anon_sym_alias] = ACTIONS(4315), + [anon_sym_let] = ACTIONS(4315), + [anon_sym_let_DASHenv] = ACTIONS(4315), + [anon_sym_mut] = ACTIONS(4315), + [anon_sym_const] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4315), + [sym_cmd_identifier] = ACTIONS(4315), + [anon_sym_LF] = ACTIONS(4317), + [anon_sym_def] = ACTIONS(4315), + [anon_sym_export_DASHenv] = ACTIONS(4315), + [anon_sym_extern] = ACTIONS(4315), + [anon_sym_module] = ACTIONS(4315), + [anon_sym_use] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4315), + [anon_sym_error] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_break] = ACTIONS(4315), + [anon_sym_continue] = ACTIONS(4315), + [anon_sym_for] = ACTIONS(4315), + [anon_sym_loop] = ACTIONS(4315), + [anon_sym_while] = ACTIONS(4315), + [anon_sym_do] = ACTIONS(4315), + [anon_sym_if] = ACTIONS(4315), + [anon_sym_match] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_try] = ACTIONS(4315), + [anon_sym_return] = ACTIONS(4315), + [anon_sym_source] = ACTIONS(4315), + [anon_sym_source_DASHenv] = ACTIONS(4315), + [anon_sym_register] = ACTIONS(4315), + [anon_sym_hide] = ACTIONS(4315), + [anon_sym_hide_DASHenv] = ACTIONS(4315), + [anon_sym_overlay] = ACTIONS(4315), + [anon_sym_as] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4315), + [anon_sym_not] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4315), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(4315), + [aux_sym__val_number_token1] = ACTIONS(4315), + [aux_sym__val_number_token2] = ACTIONS(4315), + [aux_sym__val_number_token3] = ACTIONS(4315), + [aux_sym__val_number_token4] = ACTIONS(4315), + [aux_sym__val_number_token5] = ACTIONS(4315), + [aux_sym__val_number_token6] = ACTIONS(4315), + [anon_sym_0b] = ACTIONS(4315), + [anon_sym_0o] = ACTIONS(4315), + [anon_sym_0x] = ACTIONS(4315), + [sym_val_date] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym__str_single_quotes] = ACTIONS(4315), + [sym__str_back_ticks] = ACTIONS(4315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_POUND] = ACTIONS(105), + }, + [1916] = { + [sym_comment] = STATE(1916), + [ts_builtin_sym_end] = ACTIONS(4324), + [anon_sym_export] = ACTIONS(4322), + [anon_sym_alias] = ACTIONS(4322), + [anon_sym_let] = ACTIONS(4322), + [anon_sym_let_DASHenv] = ACTIONS(4322), + [anon_sym_mut] = ACTIONS(4322), + [anon_sym_const] = ACTIONS(4322), + [anon_sym_SEMI] = ACTIONS(4322), + [sym_cmd_identifier] = ACTIONS(4322), + [anon_sym_LF] = ACTIONS(4324), + [anon_sym_def] = ACTIONS(4322), + [anon_sym_export_DASHenv] = ACTIONS(4322), + [anon_sym_extern] = ACTIONS(4322), + [anon_sym_module] = ACTIONS(4322), + [anon_sym_use] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(4322), + [anon_sym_DOLLAR] = ACTIONS(4322), + [anon_sym_error] = ACTIONS(4322), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_DASH] = ACTIONS(4322), + [anon_sym_break] = ACTIONS(4322), + [anon_sym_continue] = ACTIONS(4322), + [anon_sym_for] = ACTIONS(4322), + [anon_sym_loop] = ACTIONS(4322), + [anon_sym_while] = ACTIONS(4322), + [anon_sym_do] = ACTIONS(4322), + [anon_sym_if] = ACTIONS(4322), + [anon_sym_match] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_try] = ACTIONS(4322), + [anon_sym_return] = ACTIONS(4322), + [anon_sym_source] = ACTIONS(4322), + [anon_sym_source_DASHenv] = ACTIONS(4322), + [anon_sym_register] = ACTIONS(4322), + [anon_sym_hide] = ACTIONS(4322), + [anon_sym_hide_DASHenv] = ACTIONS(4322), + [anon_sym_overlay] = ACTIONS(4322), + [anon_sym_as] = ACTIONS(4322), + [anon_sym_where] = ACTIONS(4322), + [anon_sym_PLUS] = ACTIONS(4322), + [anon_sym_not] = ACTIONS(4322), + [anon_sym_null] = ACTIONS(4322), + [anon_sym_true] = ACTIONS(4322), + [anon_sym_false] = ACTIONS(4322), + [aux_sym__val_number_decimal_token1] = ACTIONS(4322), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4322), + [aux_sym__val_number_token5] = ACTIONS(4322), + [aux_sym__val_number_token6] = ACTIONS(4322), + [anon_sym_0b] = ACTIONS(4322), + [anon_sym_0o] = ACTIONS(4322), + [anon_sym_0x] = ACTIONS(4322), + [sym_val_date] = ACTIONS(4322), + [anon_sym_DQUOTE] = ACTIONS(4322), + [sym__str_single_quotes] = ACTIONS(4322), + [sym__str_back_ticks] = ACTIONS(4322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4322), + [anon_sym_CARET] = ACTIONS(4322), + [anon_sym_POUND] = ACTIONS(105), + }, + [1917] = { + [sym_comment] = STATE(1917), + [ts_builtin_sym_end] = ACTIONS(4328), + [anon_sym_export] = ACTIONS(4326), + [anon_sym_alias] = ACTIONS(4326), + [anon_sym_let] = ACTIONS(4326), + [anon_sym_let_DASHenv] = ACTIONS(4326), + [anon_sym_mut] = ACTIONS(4326), + [anon_sym_const] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4326), + [sym_cmd_identifier] = ACTIONS(4326), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_def] = ACTIONS(4326), + [anon_sym_export_DASHenv] = ACTIONS(4326), + [anon_sym_extern] = ACTIONS(4326), + [anon_sym_module] = ACTIONS(4326), + [anon_sym_use] = ACTIONS(4326), + [anon_sym_LBRACK] = ACTIONS(4326), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4326), + [anon_sym_error] = ACTIONS(4326), + [anon_sym_DASH_DASH] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_for] = ACTIONS(4326), + [anon_sym_loop] = ACTIONS(4326), + [anon_sym_while] = ACTIONS(4326), + [anon_sym_do] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_match] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_try] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_source] = ACTIONS(4326), + [anon_sym_source_DASHenv] = ACTIONS(4326), + [anon_sym_register] = ACTIONS(4326), + [anon_sym_hide] = ACTIONS(4326), + [anon_sym_hide_DASHenv] = ACTIONS(4326), + [anon_sym_overlay] = ACTIONS(4326), + [anon_sym_as] = ACTIONS(4326), + [anon_sym_where] = ACTIONS(4326), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_not] = ACTIONS(4326), + [anon_sym_null] = ACTIONS(4326), + [anon_sym_true] = ACTIONS(4326), + [anon_sym_false] = ACTIONS(4326), + [aux_sym__val_number_decimal_token1] = ACTIONS(4326), + [aux_sym__val_number_token1] = ACTIONS(4326), + [aux_sym__val_number_token2] = ACTIONS(4326), + [aux_sym__val_number_token3] = ACTIONS(4326), + [aux_sym__val_number_token4] = ACTIONS(4326), + [aux_sym__val_number_token5] = ACTIONS(4326), + [aux_sym__val_number_token6] = ACTIONS(4326), + [anon_sym_0b] = ACTIONS(4326), + [anon_sym_0o] = ACTIONS(4326), + [anon_sym_0x] = ACTIONS(4326), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4326), + [sym__str_single_quotes] = ACTIONS(4326), + [sym__str_back_ticks] = ACTIONS(4326), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4326), + [anon_sym_CARET] = ACTIONS(4326), + [anon_sym_POUND] = ACTIONS(105), + }, + [1918] = { + [sym_comment] = STATE(1918), + [ts_builtin_sym_end] = ACTIONS(4370), + [anon_sym_export] = ACTIONS(4368), + [anon_sym_alias] = ACTIONS(4368), + [anon_sym_let] = ACTIONS(4368), + [anon_sym_let_DASHenv] = ACTIONS(4368), + [anon_sym_mut] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4368), + [sym_cmd_identifier] = ACTIONS(4368), + [anon_sym_LF] = ACTIONS(4370), + [anon_sym_def] = ACTIONS(4368), + [anon_sym_export_DASHenv] = ACTIONS(4368), + [anon_sym_extern] = ACTIONS(4368), + [anon_sym_module] = ACTIONS(4368), + [anon_sym_use] = ACTIONS(4368), + [anon_sym_LBRACK] = ACTIONS(4368), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(4368), + [anon_sym_error] = ACTIONS(4368), + [anon_sym_DASH_DASH] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4368), + [anon_sym_continue] = ACTIONS(4368), + [anon_sym_for] = ACTIONS(4368), + [anon_sym_loop] = ACTIONS(4368), + [anon_sym_while] = ACTIONS(4368), + [anon_sym_do] = ACTIONS(4368), + [anon_sym_if] = ACTIONS(4368), + [anon_sym_match] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_DOT] = ACTIONS(4368), + [anon_sym_try] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4368), + [anon_sym_source] = ACTIONS(4368), + [anon_sym_source_DASHenv] = ACTIONS(4368), + [anon_sym_register] = ACTIONS(4368), + [anon_sym_hide] = ACTIONS(4368), + [anon_sym_hide_DASHenv] = ACTIONS(4368), + [anon_sym_overlay] = ACTIONS(4368), + [anon_sym_as] = ACTIONS(4368), + [anon_sym_where] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(4368), + [anon_sym_not] = ACTIONS(4368), + [anon_sym_null] = ACTIONS(4368), + [anon_sym_true] = ACTIONS(4368), + [anon_sym_false] = ACTIONS(4368), + [aux_sym__val_number_decimal_token1] = ACTIONS(4368), + [aux_sym__val_number_token1] = ACTIONS(4368), + [aux_sym__val_number_token2] = ACTIONS(4368), + [aux_sym__val_number_token3] = ACTIONS(4368), + [aux_sym__val_number_token4] = ACTIONS(4368), + [aux_sym__val_number_token5] = ACTIONS(4368), + [aux_sym__val_number_token6] = ACTIONS(4368), + [anon_sym_0b] = ACTIONS(4368), + [anon_sym_0o] = ACTIONS(4368), + [anon_sym_0x] = ACTIONS(4368), + [sym_val_date] = ACTIONS(4368), + [anon_sym_DQUOTE] = ACTIONS(4368), + [sym__str_single_quotes] = ACTIONS(4368), + [sym__str_back_ticks] = ACTIONS(4368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_POUND] = ACTIONS(105), + }, + [1919] = { + [sym_comment] = STATE(1919), + [ts_builtin_sym_end] = ACTIONS(4374), + [anon_sym_export] = ACTIONS(4372), + [anon_sym_alias] = ACTIONS(4372), + [anon_sym_let] = ACTIONS(4372), + [anon_sym_let_DASHenv] = ACTIONS(4372), + [anon_sym_mut] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_SEMI] = ACTIONS(4372), + [sym_cmd_identifier] = ACTIONS(4372), + [anon_sym_LF] = ACTIONS(4374), + [anon_sym_def] = ACTIONS(4372), + [anon_sym_export_DASHenv] = ACTIONS(4372), + [anon_sym_extern] = ACTIONS(4372), + [anon_sym_module] = ACTIONS(4372), + [anon_sym_use] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(4372), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(4372), + [anon_sym_error] = ACTIONS(4372), + [anon_sym_DASH_DASH] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4372), + [anon_sym_continue] = ACTIONS(4372), + [anon_sym_for] = ACTIONS(4372), + [anon_sym_loop] = ACTIONS(4372), + [anon_sym_while] = ACTIONS(4372), + [anon_sym_do] = ACTIONS(4372), + [anon_sym_if] = ACTIONS(4372), + [anon_sym_match] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_DOT] = ACTIONS(4372), + [anon_sym_try] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4372), + [anon_sym_source] = ACTIONS(4372), + [anon_sym_source_DASHenv] = ACTIONS(4372), + [anon_sym_register] = ACTIONS(4372), + [anon_sym_hide] = ACTIONS(4372), + [anon_sym_hide_DASHenv] = ACTIONS(4372), + [anon_sym_overlay] = ACTIONS(4372), + [anon_sym_as] = ACTIONS(4372), + [anon_sym_where] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(4372), + [anon_sym_not] = ACTIONS(4372), + [anon_sym_null] = ACTIONS(4372), + [anon_sym_true] = ACTIONS(4372), + [anon_sym_false] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4372), + [aux_sym__val_number_token2] = ACTIONS(4372), + [aux_sym__val_number_token3] = ACTIONS(4372), + [aux_sym__val_number_token4] = ACTIONS(4372), + [aux_sym__val_number_token5] = ACTIONS(4372), + [aux_sym__val_number_token6] = ACTIONS(4372), + [anon_sym_0b] = ACTIONS(4372), + [anon_sym_0o] = ACTIONS(4372), + [anon_sym_0x] = ACTIONS(4372), + [sym_val_date] = ACTIONS(4372), + [anon_sym_DQUOTE] = ACTIONS(4372), + [sym__str_single_quotes] = ACTIONS(4372), + [sym__str_back_ticks] = ACTIONS(4372), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4372), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_POUND] = ACTIONS(105), + }, + [1920] = { + [sym_comment] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(4378), + [anon_sym_export] = ACTIONS(4376), + [anon_sym_alias] = ACTIONS(4376), + [anon_sym_let] = ACTIONS(4376), + [anon_sym_let_DASHenv] = ACTIONS(4376), + [anon_sym_mut] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_SEMI] = ACTIONS(4376), + [sym_cmd_identifier] = ACTIONS(4376), + [anon_sym_LF] = ACTIONS(4378), + [anon_sym_def] = ACTIONS(4376), + [anon_sym_export_DASHenv] = ACTIONS(4376), + [anon_sym_extern] = ACTIONS(4376), + [anon_sym_module] = ACTIONS(4376), + [anon_sym_use] = ACTIONS(4376), + [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LPAREN] = ACTIONS(4376), + [anon_sym_DOLLAR] = ACTIONS(4376), + [anon_sym_error] = ACTIONS(4376), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_DASH] = ACTIONS(4376), + [anon_sym_break] = ACTIONS(4376), + [anon_sym_continue] = ACTIONS(4376), + [anon_sym_for] = ACTIONS(4376), + [anon_sym_loop] = ACTIONS(4376), + [anon_sym_while] = ACTIONS(4376), + [anon_sym_do] = ACTIONS(4376), + [anon_sym_if] = ACTIONS(4376), + [anon_sym_match] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4376), + [anon_sym_DOT] = ACTIONS(4376), + [anon_sym_try] = ACTIONS(4376), + [anon_sym_return] = ACTIONS(4376), + [anon_sym_source] = ACTIONS(4376), + [anon_sym_source_DASHenv] = ACTIONS(4376), + [anon_sym_register] = ACTIONS(4376), + [anon_sym_hide] = ACTIONS(4376), + [anon_sym_hide_DASHenv] = ACTIONS(4376), + [anon_sym_overlay] = ACTIONS(4376), + [anon_sym_as] = ACTIONS(4376), + [anon_sym_where] = ACTIONS(4376), + [anon_sym_PLUS] = ACTIONS(4376), + [anon_sym_not] = ACTIONS(4376), + [anon_sym_null] = ACTIONS(4376), + [anon_sym_true] = ACTIONS(4376), + [anon_sym_false] = ACTIONS(4376), + [aux_sym__val_number_decimal_token1] = ACTIONS(4376), + [aux_sym__val_number_token1] = ACTIONS(4376), + [aux_sym__val_number_token2] = ACTIONS(4376), + [aux_sym__val_number_token3] = ACTIONS(4376), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4376), + [anon_sym_0o] = ACTIONS(4376), + [anon_sym_0x] = ACTIONS(4376), + [sym_val_date] = ACTIONS(4376), + [anon_sym_DQUOTE] = ACTIONS(4376), + [sym__str_single_quotes] = ACTIONS(4376), + [sym__str_back_ticks] = ACTIONS(4376), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4376), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4376), + [anon_sym_CARET] = ACTIONS(4376), + [anon_sym_POUND] = ACTIONS(105), + }, + [1921] = { + [sym_comment] = STATE(1921), + [ts_builtin_sym_end] = ACTIONS(4382), + [anon_sym_export] = ACTIONS(4380), + [anon_sym_alias] = ACTIONS(4380), + [anon_sym_let] = ACTIONS(4380), + [anon_sym_let_DASHenv] = ACTIONS(4380), + [anon_sym_mut] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_SEMI] = ACTIONS(4380), + [sym_cmd_identifier] = ACTIONS(4380), + [anon_sym_LF] = ACTIONS(4382), + [anon_sym_def] = ACTIONS(4380), + [anon_sym_export_DASHenv] = ACTIONS(4380), + [anon_sym_extern] = ACTIONS(4380), + [anon_sym_module] = ACTIONS(4380), + [anon_sym_use] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4380), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(4380), + [anon_sym_error] = ACTIONS(4380), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4380), + [anon_sym_continue] = ACTIONS(4380), + [anon_sym_for] = ACTIONS(4380), + [anon_sym_loop] = ACTIONS(4380), + [anon_sym_while] = ACTIONS(4380), + [anon_sym_do] = ACTIONS(4380), + [anon_sym_if] = ACTIONS(4380), + [anon_sym_match] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_DOT] = ACTIONS(4380), + [anon_sym_try] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4380), + [anon_sym_source] = ACTIONS(4380), + [anon_sym_source_DASHenv] = ACTIONS(4380), + [anon_sym_register] = ACTIONS(4380), + [anon_sym_hide] = ACTIONS(4380), + [anon_sym_hide_DASHenv] = ACTIONS(4380), + [anon_sym_overlay] = ACTIONS(4380), + [anon_sym_as] = ACTIONS(4380), + [anon_sym_where] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_not] = ACTIONS(4380), + [anon_sym_null] = ACTIONS(4380), + [anon_sym_true] = ACTIONS(4380), + [anon_sym_false] = ACTIONS(4380), + [aux_sym__val_number_decimal_token1] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(4380), + [aux_sym__val_number_token2] = ACTIONS(4380), + [aux_sym__val_number_token3] = ACTIONS(4380), + [aux_sym__val_number_token4] = ACTIONS(4380), + [aux_sym__val_number_token5] = ACTIONS(4380), + [aux_sym__val_number_token6] = ACTIONS(4380), + [anon_sym_0b] = ACTIONS(4380), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym__str_single_quotes] = ACTIONS(4380), + [sym__str_back_ticks] = ACTIONS(4380), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_POUND] = ACTIONS(105), + }, + [1922] = { + [sym_comment] = STATE(1922), [ts_builtin_sym_end] = ACTIONS(4388), [anon_sym_export] = ACTIONS(4386), [anon_sym_alias] = ACTIONS(4386), @@ -240522,1076 +241487,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(4386), [anon_sym_POUND] = ACTIONS(105), }, - [1909] = { - [sym_comment] = STATE(1909), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DOT] = ACTIONS(861), - [anon_sym_DOT2] = ACTIONS(4706), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_null] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym__val_number_decimal_token1] = ACTIONS(861), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [aux_sym__val_number_token4] = ACTIONS(861), - [aux_sym__val_number_token5] = ACTIONS(861), - [aux_sym__val_number_token6] = ACTIONS(861), - [sym_filesize_unit] = ACTIONS(861), - [sym_duration_unit] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [aux_sym_unquoted_token6] = ACTIONS(4708), - [anon_sym_POUND] = ACTIONS(105), - }, - [1910] = { - [sym_expr_parenthesized] = STATE(3636), - [sym__immediate_decimal] = STATE(3637), - [sym_val_variable] = STATE(3636), - [sym__var] = STATE(2742), - [sym_comment] = STATE(1910), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(4710), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(4689), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_EQ2] = ACTIONS(4712), - [aux_sym__immediate_decimal_token1] = ACTIONS(4693), - [anon_sym_DASH2] = ACTIONS(4695), - [anon_sym_PLUS2] = ACTIONS(4697), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [aux_sym__record_key_token2] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(3), - }, - [1911] = { - [sym_comment] = STATE(1911), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_alias] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_let_DASHenv] = ACTIONS(1354), - [anon_sym_mut] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [sym_cmd_identifier] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_def] = ACTIONS(1354), - [anon_sym_export_DASHenv] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_error] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_source] = ACTIONS(1354), - [anon_sym_source_DASHenv] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_hide_DASHenv] = ACTIONS(1354), - [anon_sym_overlay] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_where] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_not] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [aux_sym__val_number_decimal_token1] = ACTIONS(1354), - [aux_sym__val_number_token1] = ACTIONS(1354), - [aux_sym__val_number_token2] = ACTIONS(1354), - [aux_sym__val_number_token3] = ACTIONS(1354), - [aux_sym__val_number_token4] = ACTIONS(1354), - [aux_sym__val_number_token5] = ACTIONS(1354), - [aux_sym__val_number_token6] = ACTIONS(1354), - [anon_sym_0b] = ACTIONS(1354), - [anon_sym_0o] = ACTIONS(1354), - [anon_sym_0x] = ACTIONS(1354), - [sym_val_date] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym__str_single_quotes] = ACTIONS(1354), - [sym__str_back_ticks] = ACTIONS(1354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(105), - }, - [1912] = { - [sym_comment] = STATE(1912), - [ts_builtin_sym_end] = ACTIONS(4338), - [anon_sym_export] = ACTIONS(4336), - [anon_sym_alias] = ACTIONS(4336), - [anon_sym_let] = ACTIONS(4336), - [anon_sym_let_DASHenv] = ACTIONS(4336), - [anon_sym_mut] = ACTIONS(4336), - [anon_sym_const] = ACTIONS(4336), - [anon_sym_SEMI] = ACTIONS(4336), - [sym_cmd_identifier] = ACTIONS(4336), - [anon_sym_LF] = ACTIONS(4338), - [anon_sym_def] = ACTIONS(4336), - [anon_sym_export_DASHenv] = ACTIONS(4336), - [anon_sym_extern] = ACTIONS(4336), - [anon_sym_module] = ACTIONS(4336), - [anon_sym_use] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4336), - [anon_sym_LPAREN] = ACTIONS(4336), - [anon_sym_DOLLAR] = ACTIONS(4336), - [anon_sym_error] = ACTIONS(4336), - [anon_sym_DASH_DASH] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_break] = ACTIONS(4336), - [anon_sym_continue] = ACTIONS(4336), - [anon_sym_for] = ACTIONS(4336), - [anon_sym_loop] = ACTIONS(4336), - [anon_sym_while] = ACTIONS(4336), - [anon_sym_do] = ACTIONS(4336), - [anon_sym_if] = ACTIONS(4336), - [anon_sym_match] = ACTIONS(4336), - [anon_sym_LBRACE] = ACTIONS(4336), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_try] = ACTIONS(4336), - [anon_sym_return] = ACTIONS(4336), - [anon_sym_source] = ACTIONS(4336), - [anon_sym_source_DASHenv] = ACTIONS(4336), - [anon_sym_register] = ACTIONS(4336), - [anon_sym_hide] = ACTIONS(4336), - [anon_sym_hide_DASHenv] = ACTIONS(4336), - [anon_sym_overlay] = ACTIONS(4336), - [anon_sym_as] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4336), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_not] = ACTIONS(4336), - [anon_sym_null] = ACTIONS(4336), - [anon_sym_true] = ACTIONS(4336), - [anon_sym_false] = ACTIONS(4336), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_token1] = ACTIONS(4336), - [aux_sym__val_number_token2] = ACTIONS(4336), - [aux_sym__val_number_token3] = ACTIONS(4336), - [aux_sym__val_number_token4] = ACTIONS(4336), - [aux_sym__val_number_token5] = ACTIONS(4336), - [aux_sym__val_number_token6] = ACTIONS(4336), - [anon_sym_0b] = ACTIONS(4336), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4336), - [sym__str_single_quotes] = ACTIONS(4336), - [sym__str_back_ticks] = ACTIONS(4336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4336), - [anon_sym_CARET] = ACTIONS(4336), - [anon_sym_POUND] = ACTIONS(105), - }, - [1913] = { - [sym_comment] = STATE(1913), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_export] = ACTIONS(1252), - [anon_sym_alias] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_let_DASHenv] = ACTIONS(1252), - [anon_sym_mut] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_cmd_identifier] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_def] = ACTIONS(1252), - [anon_sym_export_DASHenv] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_error] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_source] = ACTIONS(1252), - [anon_sym_source_DASHenv] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_hide] = ACTIONS(1252), - [anon_sym_hide_DASHenv] = ACTIONS(1252), - [anon_sym_overlay] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_where] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_not] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym__val_number_decimal_token1] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(1252), - [aux_sym__val_number_token2] = ACTIONS(1252), - [aux_sym__val_number_token3] = ACTIONS(1252), - [aux_sym__val_number_token4] = ACTIONS(1252), - [aux_sym__val_number_token5] = ACTIONS(1252), - [aux_sym__val_number_token6] = ACTIONS(1252), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1252), - [anon_sym_0x] = ACTIONS(1252), - [sym_val_date] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__str_single_quotes] = ACTIONS(1252), - [sym__str_back_ticks] = ACTIONS(1252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(105), - }, - [1914] = { - [sym_comment] = STATE(1914), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [sym_cmd_identifier] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [aux_sym__val_number_token4] = ACTIONS(1350), - [aux_sym__val_number_token5] = ACTIONS(1350), - [aux_sym__val_number_token6] = ACTIONS(1350), - [anon_sym_0b] = ACTIONS(1350), - [anon_sym_0o] = ACTIONS(1350), - [anon_sym_0x] = ACTIONS(1350), - [sym_val_date] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(105), - }, - [1915] = { - [sym_comment] = STATE(1915), - [ts_builtin_sym_end] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_alias] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_let_DASHenv] = ACTIONS(1288), - [anon_sym_mut] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [sym_cmd_identifier] = ACTIONS(1288), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_def] = ACTIONS(1288), - [anon_sym_export_DASHenv] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_source] = ACTIONS(1288), - [anon_sym_source_DASHenv] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_hide] = ACTIONS(1288), - [anon_sym_hide_DASHenv] = ACTIONS(1288), - [anon_sym_overlay] = ACTIONS(1288), - [anon_sym_as] = ACTIONS(1288), - [anon_sym_where] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_not] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1288), - [aux_sym__val_number_token5] = ACTIONS(1288), - [aux_sym__val_number_token6] = ACTIONS(1288), - [anon_sym_0b] = ACTIONS(1288), - [anon_sym_0o] = ACTIONS(1288), - [anon_sym_0x] = ACTIONS(1288), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(105), - }, - [1916] = { - [sym_comment] = STATE(1916), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_LF] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(4714), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_in] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_STAR_STAR] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_mod] = ACTIONS(823), - [anon_sym_SLASH_SLASH] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_bit_DASHshl] = ACTIONS(823), - [anon_sym_bit_DASHshr] = ACTIONS(823), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_not_DASHin] = ACTIONS(823), - [anon_sym_starts_DASHwith] = ACTIONS(823), - [anon_sym_ends_DASHwith] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [anon_sym_bit_DASHand] = ACTIONS(823), - [anon_sym_bit_DASHxor] = ACTIONS(823), - [anon_sym_bit_DASHor] = ACTIONS(823), - [anon_sym_and] = ACTIONS(823), - [anon_sym_xor] = ACTIONS(823), - [anon_sym_or] = ACTIONS(823), - [anon_sym_not] = ACTIONS(823), - [anon_sym_EQ2] = ACTIONS(4714), - [anon_sym_null] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [aux_sym__val_number_decimal_token1] = ACTIONS(823), - [aux_sym__val_number_token1] = ACTIONS(823), - [aux_sym__val_number_token2] = ACTIONS(823), - [aux_sym__val_number_token3] = ACTIONS(823), - [aux_sym__val_number_token4] = ACTIONS(823), - [aux_sym__val_number_token5] = ACTIONS(823), - [aux_sym__val_number_token6] = ACTIONS(823), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(823), - [sym__str_single_quotes] = ACTIONS(823), - [sym__str_back_ticks] = ACTIONS(823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(823), - [aux_sym_unquoted_token4] = ACTIONS(4718), - [aux_sym_unquoted_token6] = ACTIONS(4720), - [anon_sym_POUND] = ACTIONS(105), - }, - [1917] = { - [sym_comment] = STATE(1917), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_alias] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_let_DASHenv] = ACTIONS(1342), - [anon_sym_mut] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [sym_cmd_identifier] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_export_DASHenv] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_error] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_source] = ACTIONS(1342), - [anon_sym_source_DASHenv] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_hide_DASHenv] = ACTIONS(1342), - [anon_sym_overlay] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_where] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_not] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym__val_number_decimal_token1] = ACTIONS(1342), - [aux_sym__val_number_token1] = ACTIONS(1342), - [aux_sym__val_number_token2] = ACTIONS(1342), - [aux_sym__val_number_token3] = ACTIONS(1342), - [aux_sym__val_number_token4] = ACTIONS(1342), - [aux_sym__val_number_token5] = ACTIONS(1342), - [aux_sym__val_number_token6] = ACTIONS(1342), - [anon_sym_0b] = ACTIONS(1342), - [anon_sym_0o] = ACTIONS(1342), - [anon_sym_0x] = ACTIONS(1342), - [sym_val_date] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym__str_single_quotes] = ACTIONS(1342), - [sym__str_back_ticks] = ACTIONS(1342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(105), - }, - [1918] = { - [sym_comment] = STATE(1918), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_alias] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_let_DASHenv] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [sym_cmd_identifier] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1346), - [anon_sym_export_DASHenv] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [anon_sym_error] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_source] = ACTIONS(1346), - [anon_sym_source_DASHenv] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_hide_DASHenv] = ACTIONS(1346), - [anon_sym_overlay] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_where] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_not] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [aux_sym__val_number_decimal_token1] = ACTIONS(1346), - [aux_sym__val_number_token1] = ACTIONS(1346), - [aux_sym__val_number_token2] = ACTIONS(1346), - [aux_sym__val_number_token3] = ACTIONS(1346), - [aux_sym__val_number_token4] = ACTIONS(1346), - [aux_sym__val_number_token5] = ACTIONS(1346), - [aux_sym__val_number_token6] = ACTIONS(1346), - [anon_sym_0b] = ACTIONS(1346), - [anon_sym_0o] = ACTIONS(1346), - [anon_sym_0x] = ACTIONS(1346), - [sym_val_date] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym__str_single_quotes] = ACTIONS(1346), - [sym__str_back_ticks] = ACTIONS(1346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(105), - }, - [1919] = { - [sym_comment] = STATE(1919), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_alias] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_let_DASHenv] = ACTIONS(1358), - [anon_sym_mut] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [sym_cmd_identifier] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_def] = ACTIONS(1358), - [anon_sym_export_DASHenv] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [anon_sym_error] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_source] = ACTIONS(1358), - [anon_sym_source_DASHenv] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_hide_DASHenv] = ACTIONS(1358), - [anon_sym_overlay] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_where] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1358), - [aux_sym__val_number_token1] = ACTIONS(1358), - [aux_sym__val_number_token2] = ACTIONS(1358), - [aux_sym__val_number_token3] = ACTIONS(1358), - [aux_sym__val_number_token4] = ACTIONS(1358), - [aux_sym__val_number_token5] = ACTIONS(1358), - [aux_sym__val_number_token6] = ACTIONS(1358), - [anon_sym_0b] = ACTIONS(1358), - [anon_sym_0o] = ACTIONS(1358), - [anon_sym_0x] = ACTIONS(1358), - [sym_val_date] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym__str_single_quotes] = ACTIONS(1358), - [sym__str_back_ticks] = ACTIONS(1358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(105), - }, - [1920] = { - [sym__expression] = STATE(7758), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1727), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), - [sym_comment] = STATE(1920), - [ts_builtin_sym_end] = ACTIONS(4492), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), - }, - [1921] = { - [sym__expression] = STATE(7758), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(1826), - [sym_short_flag] = STATE(5819), - [sym_long_flag] = STATE(5819), - [sym_long_flag_equals_value] = STATE(5855), - [sym_comment] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(4492), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), - [anon_sym_POUND] = ACTIONS(105), - }, - [1922] = { - [sym_comment] = STATE(1922), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_alias] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_let_DASHenv] = ACTIONS(1298), - [anon_sym_mut] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [sym_cmd_identifier] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1298), - [anon_sym_export_DASHenv] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [anon_sym_error] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_source] = ACTIONS(1298), - [anon_sym_source_DASHenv] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_hide_DASHenv] = ACTIONS(1298), - [anon_sym_overlay] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_not] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1298), - [aux_sym__val_number_token5] = ACTIONS(1298), - [aux_sym__val_number_token6] = ACTIONS(1298), - [anon_sym_0b] = ACTIONS(1298), - [anon_sym_0o] = ACTIONS(1298), - [anon_sym_0x] = ACTIONS(1298), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(105), - }, [1923] = { [sym_comment] = STATE(1923), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_alias] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_let_DASHenv] = ACTIONS(1228), - [anon_sym_mut] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [sym_cmd_identifier] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_def] = ACTIONS(1228), - [anon_sym_export_DASHenv] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_error] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_DOT2] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_source] = ACTIONS(1228), - [anon_sym_source_DASHenv] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_hide] = ACTIONS(1228), - [anon_sym_hide_DASHenv] = ACTIONS(1228), - [anon_sym_overlay] = ACTIONS(1228), - [anon_sym_where] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_not] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym__val_number_decimal_token1] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1228), - [aux_sym__val_number_token2] = ACTIONS(1228), - [aux_sym__val_number_token3] = ACTIONS(1228), - [aux_sym__val_number_token4] = ACTIONS(1228), - [aux_sym__val_number_token5] = ACTIONS(1228), - [aux_sym__val_number_token6] = ACTIONS(1228), - [anon_sym_0b] = ACTIONS(1228), - [anon_sym_0o] = ACTIONS(1228), - [anon_sym_0x] = ACTIONS(1228), - [sym_val_date] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym__str_single_quotes] = ACTIONS(1228), - [sym__str_back_ticks] = ACTIONS(1228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(4404), + [anon_sym_export] = ACTIONS(4402), + [anon_sym_alias] = ACTIONS(4402), + [anon_sym_let] = ACTIONS(4402), + [anon_sym_let_DASHenv] = ACTIONS(4402), + [anon_sym_mut] = ACTIONS(4402), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4402), + [sym_cmd_identifier] = ACTIONS(4402), + [anon_sym_LF] = ACTIONS(4404), + [anon_sym_def] = ACTIONS(4402), + [anon_sym_export_DASHenv] = ACTIONS(4402), + [anon_sym_extern] = ACTIONS(4402), + [anon_sym_module] = ACTIONS(4402), + [anon_sym_use] = ACTIONS(4402), + [anon_sym_LBRACK] = ACTIONS(4402), + [anon_sym_LPAREN] = ACTIONS(4402), + [anon_sym_DOLLAR] = ACTIONS(4402), + [anon_sym_error] = ACTIONS(4402), + [anon_sym_DASH_DASH] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_for] = ACTIONS(4402), + [anon_sym_loop] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_do] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_match] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4402), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_source] = ACTIONS(4402), + [anon_sym_source_DASHenv] = ACTIONS(4402), + [anon_sym_register] = ACTIONS(4402), + [anon_sym_hide] = ACTIONS(4402), + [anon_sym_hide_DASHenv] = ACTIONS(4402), + [anon_sym_overlay] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_where] = ACTIONS(4402), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_null] = ACTIONS(4402), + [anon_sym_true] = ACTIONS(4402), + [anon_sym_false] = ACTIONS(4402), + [aux_sym__val_number_decimal_token1] = ACTIONS(4402), + [aux_sym__val_number_token1] = ACTIONS(4402), + [aux_sym__val_number_token2] = ACTIONS(4402), + [aux_sym__val_number_token3] = ACTIONS(4402), + [aux_sym__val_number_token4] = ACTIONS(4402), + [aux_sym__val_number_token5] = ACTIONS(4402), + [aux_sym__val_number_token6] = ACTIONS(4402), + [anon_sym_0b] = ACTIONS(4402), + [anon_sym_0o] = ACTIONS(4402), + [anon_sym_0x] = ACTIONS(4402), + [sym_val_date] = ACTIONS(4402), + [anon_sym_DQUOTE] = ACTIONS(4402), + [sym__str_single_quotes] = ACTIONS(4402), + [sym__str_back_ticks] = ACTIONS(4402), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4402), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4402), + [anon_sym_CARET] = ACTIONS(4402), [anon_sym_POUND] = ACTIONS(105), }, [1924] = { - [sym__expression] = STATE(7758), - [sym_expr_unary] = STATE(5745), - [sym__expr_unary_minus] = STATE(5746), - [sym_expr_binary] = STATE(5745), - [sym__expr_binary_expression] = STATE(6668), - [sym_expr_parenthesized] = STATE(5206), - [sym_val_range] = STATE(8527), - [sym__value] = STATE(5745), - [sym_val_nothing] = STATE(5589), - [sym_val_bool] = STATE(5589), - [sym_val_variable] = STATE(5155), - [sym__var] = STATE(4741), - [sym_val_number] = STATE(5110), - [sym__val_number_decimal] = STATE(4909), - [sym__val_number] = STATE(5109), - [sym_val_duration] = STATE(5589), - [sym_val_filesize] = STATE(5589), - [sym_val_binary] = STATE(5589), - [sym_val_string] = STATE(5589), - [sym__str_double_quotes] = STATE(5720), - [sym_val_interpolated] = STATE(5589), - [sym__inter_single_quotes] = STATE(5469), - [sym__inter_double_quotes] = STATE(5473), - [sym_val_list] = STATE(5589), - [sym_val_record] = STATE(5589), - [sym_val_table] = STATE(5589), - [sym_val_closure] = STATE(5589), - [sym__flag] = STATE(7762), - [sym_short_flag] = STATE(8424), - [sym_long_flag] = STATE(8424), - [sym_long_flag_equals_value] = STATE(8483), [sym_comment] = STATE(1924), - [ts_builtin_sym_end] = ACTIONS(4492), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_PIPE] = ACTIONS(4490), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4506), - [anon_sym_not] = ACTIONS(4508), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4514), - [aux_sym__val_number_token1] = ACTIONS(4516), - [aux_sym__val_number_token2] = ACTIONS(4516), - [aux_sym__val_number_token3] = ACTIONS(4516), - [aux_sym__val_number_token4] = ACTIONS(4516), - [aux_sym__val_number_token5] = ACTIONS(4516), - [aux_sym__val_number_token6] = ACTIONS(4516), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4518), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym__str_single_quotes] = ACTIONS(4522), - [sym__str_back_ticks] = ACTIONS(4522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4526), + [ts_builtin_sym_end] = ACTIONS(4418), + [anon_sym_export] = ACTIONS(4416), + [anon_sym_alias] = ACTIONS(4416), + [anon_sym_let] = ACTIONS(4416), + [anon_sym_let_DASHenv] = ACTIONS(4416), + [anon_sym_mut] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4416), + [sym_cmd_identifier] = ACTIONS(4416), + [anon_sym_LF] = ACTIONS(4418), + [anon_sym_def] = ACTIONS(4416), + [anon_sym_export_DASHenv] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym_module] = ACTIONS(4416), + [anon_sym_use] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(4416), + [anon_sym_error] = ACTIONS(4416), + [anon_sym_DASH_DASH] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_for] = ACTIONS(4416), + [anon_sym_loop] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_do] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_match] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4416), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_source] = ACTIONS(4416), + [anon_sym_source_DASHenv] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_hide] = ACTIONS(4416), + [anon_sym_hide_DASHenv] = ACTIONS(4416), + [anon_sym_overlay] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_not] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [aux_sym__val_number_decimal_token1] = ACTIONS(4416), + [aux_sym__val_number_token1] = ACTIONS(4416), + [aux_sym__val_number_token2] = ACTIONS(4416), + [aux_sym__val_number_token3] = ACTIONS(4416), + [aux_sym__val_number_token4] = ACTIONS(4416), + [aux_sym__val_number_token5] = ACTIONS(4416), + [aux_sym__val_number_token6] = ACTIONS(4416), + [anon_sym_0b] = ACTIONS(4416), + [anon_sym_0o] = ACTIONS(4416), + [anon_sym_0x] = ACTIONS(4416), + [sym_val_date] = ACTIONS(4416), + [anon_sym_DQUOTE] = ACTIONS(4416), + [sym__str_single_quotes] = ACTIONS(4416), + [sym__str_back_ticks] = ACTIONS(4416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4416), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4416), [anon_sym_POUND] = ACTIONS(105), }, }; @@ -241666,58 +241693,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [73] = 7, + [73] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(4233), 1, anon_sym_LF, - ACTIONS(4726), 1, - anon_sym_DOT2, - ACTIONS(4728), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4730), 1, - aux_sym_unquoted_token2, STATE(1926), 1, sym_comment, - ACTIONS(1005), 58, + ACTIONS(4231), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -241738,14 +241761,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152] = 4, + anon_sym_CARET, + [146] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4734), 1, + ACTIONS(4261), 1, anon_sym_LF, STATE(1927), 1, sym_comment, - ACTIONS(4732), 61, + ACTIONS(4259), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -241807,17 +241831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [225] = 5, + [219] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4736), 1, - anon_sym_DOT2, + ACTIONS(4291), 1, + anon_sym_LF, STATE(1928), 1, sym_comment, - ACTIONS(3929), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3927), 59, + ACTIONS(4289), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -241833,6 +241854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -241845,6 +241867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -241877,16 +241900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [300] = 4, + [292] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4313), 1, + anon_sym_LF, STATE(1929), 1, sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 59, + ACTIONS(4311), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -241902,6 +241923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -241914,6 +241936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -241946,14 +241969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [373] = 4, + [365] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4740), 1, + ACTIONS(4317), 1, anon_sym_LF, STATE(1930), 1, sym_comment, - ACTIONS(4738), 61, + ACTIONS(4315), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242015,26 +242038,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [446] = 7, + [438] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, + ACTIONS(4324), 1, anon_sym_LF, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, STATE(1931), 1, sym_comment, - ACTIONS(4742), 58, + ACTIONS(4322), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -242043,6 +242061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242055,6 +242074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242087,14 +242107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [525] = 4, + [511] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4750), 1, + ACTIONS(4328), 1, anon_sym_LF, STATE(1932), 1, sym_comment, - ACTIONS(4748), 61, + ACTIONS(4326), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242156,14 +242176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [598] = 4, + [584] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4754), 1, + ACTIONS(4370), 1, anon_sym_LF, STATE(1933), 1, sym_comment, - ACTIONS(4752), 61, + ACTIONS(4368), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242225,17 +242245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [671] = 5, + [657] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4756), 1, - anon_sym_DOT2, + ACTIONS(4374), 1, + anon_sym_LF, STATE(1934), 1, sym_comment, - ACTIONS(3923), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3921), 59, + ACTIONS(4372), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242251,6 +242268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242263,6 +242281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242295,14 +242314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [746] = 4, + [730] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4372), 1, + ACTIONS(4378), 1, anon_sym_LF, STATE(1935), 1, sym_comment, - ACTIONS(4370), 61, + ACTIONS(4376), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242364,16 +242383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [819] = 4, + [803] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4382), 1, + anon_sym_LF, STATE(1936), 1, sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 59, + ACTIONS(4380), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242389,6 +242406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242401,6 +242419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242433,14 +242452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [892] = 4, + [876] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4376), 1, + ACTIONS(4388), 1, anon_sym_LF, STATE(1937), 1, sym_comment, - ACTIONS(4374), 61, + ACTIONS(4386), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242502,17 +242521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [965] = 5, + [949] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4636), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4404), 1, + anon_sym_LF, STATE(1938), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 59, + ACTIONS(4402), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242528,6 +242544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242540,6 +242557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242572,14 +242590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1040] = 4, + [1022] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_LF, STATE(1939), 1, sym_comment, - ACTIONS(4378), 61, + ACTIONS(4416), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242641,14 +242659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1113] = 4, + [1095] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(4422), 1, anon_sym_LF, STATE(1940), 1, sym_comment, - ACTIONS(1259), 61, + ACTIONS(4420), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242710,16 +242728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1186] = 4, + [1168] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4426), 1, + anon_sym_LF, STATE(1941), 1, sym_comment, - ACTIONS(2988), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 59, + ACTIONS(4424), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242735,6 +242751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242747,6 +242764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242779,14 +242797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1259] = 4, + [1241] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4384), 1, + ACTIONS(4472), 1, anon_sym_LF, STATE(1942), 1, sym_comment, - ACTIONS(4382), 61, + ACTIONS(4470), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242848,17 +242866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1332] = 5, + [1314] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4758), 1, - anon_sym_DOT2, + ACTIONS(4488), 1, + anon_sym_LF, STATE(1943), 1, sym_comment, - ACTIONS(3917), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3915), 59, + ACTIONS(4486), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242874,6 +242889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242886,6 +242902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242918,17 +242935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1407] = 5, + [1387] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4760), 1, - anon_sym_DOT2, + ACTIONS(4301), 1, + anon_sym_LF, STATE(1944), 1, sym_comment, - ACTIONS(3911), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3909), 59, + ACTIONS(4299), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -242944,6 +242958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -242956,6 +242971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -242988,14 +243004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1482] = 4, + [1460] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4764), 1, + ACTIONS(4062), 1, anon_sym_LF, STATE(1945), 1, sym_comment, - ACTIONS(4762), 61, + ACTIONS(4060), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243057,14 +243073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1555] = 4, + [1533] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4768), 1, + ACTIONS(4070), 1, anon_sym_LF, STATE(1946), 1, sym_comment, - ACTIONS(4766), 61, + ACTIONS(4068), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243126,14 +243142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1628] = 4, + [1606] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4772), 1, + ACTIONS(4074), 1, anon_sym_LF, STATE(1947), 1, sym_comment, - ACTIONS(4770), 61, + ACTIONS(4072), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243195,14 +243211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1701] = 4, + [1679] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4776), 1, + ACTIONS(4217), 1, anon_sym_LF, STATE(1948), 1, sym_comment, - ACTIONS(4774), 61, + ACTIONS(4215), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243264,16 +243280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1774] = 4, + [1752] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4728), 1, + anon_sym_LF, STATE(1949), 1, sym_comment, - ACTIONS(3836), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 59, + ACTIONS(4726), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243289,6 +243303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243301,6 +243316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243333,14 +243349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1847] = 4, + [1825] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4728), 1, anon_sym_LF, STATE(1950), 1, sym_comment, - ACTIONS(4778), 61, + ACTIONS(4726), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243402,15 +243418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1920] = 4, + [1898] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4203), 1, + anon_sym_LF, STATE(1951), 1, sym_comment, - ACTIONS(4538), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4536), 60, + ACTIONS(4201), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243426,6 +243441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243438,6 +243454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243447,7 +243464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -243471,26 +243487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [1993] = 7, + [1971] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, + ACTIONS(4732), 1, anon_sym_LF, - STATE(1927), 1, - sym__terminator, STATE(1952), 1, sym_comment, - STATE(2012), 1, - aux_sym__block_body_repeat1, - ACTIONS(4782), 58, + ACTIONS(4730), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -243499,6 +243510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243511,6 +243523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243543,14 +243556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2072] = 4, + [2044] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4786), 1, + ACTIONS(4736), 1, anon_sym_LF, STATE(1953), 1, sym_comment, - ACTIONS(4784), 61, + ACTIONS(4734), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243612,15 +243625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2145] = 4, + [2117] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4740), 1, + anon_sym_LF, STATE(1954), 1, sym_comment, - ACTIONS(1115), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1113), 60, + ACTIONS(4738), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243636,6 +243648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243648,6 +243661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243657,7 +243671,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [2190] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(1955), 1, + sym_comment, + STATE(2038), 1, + aux_sym_cell_path_repeat1, + STATE(2411), 1, + sym_path, + ACTIONS(903), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2269] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(4744), 1, + anon_sym_DOT2, + STATE(2411), 1, + sym_path, + STATE(1956), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [2346] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(931), 1, + anon_sym_LF, + STATE(1957), 1, + sym_comment, + ACTIONS(929), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -243681,17 +243906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2218] = 5, + [2419] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym__immediate_decimal_token2, - STATE(1955), 1, - sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, + ACTIONS(4749), 1, anon_sym_LF, - ACTIONS(2986), 59, + STATE(1958), 1, + sym_comment, + ACTIONS(4747), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243707,6 +243929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243719,6 +243942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243751,15 +243975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2293] = 4, + [2492] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1956), 1, - sym_comment, - ACTIONS(4534), 2, - ts_builtin_sym_end, + ACTIONS(4749), 1, anon_sym_LF, - ACTIONS(4532), 60, + STATE(1959), 1, + sym_comment, + ACTIONS(4747), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243775,6 +243998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243787,6 +244011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243796,7 +244021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -243820,17 +244044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2366] = 5, + [2565] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1957), 1, - sym_comment, - STATE(2340), 1, - sym_val_record, - ACTIONS(4548), 2, - ts_builtin_sym_end, + ACTIONS(4753), 1, anon_sym_LF, - ACTIONS(4546), 59, + STATE(1960), 1, + sym_comment, + ACTIONS(4751), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243846,6 +244067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243858,6 +244080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243890,16 +244113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2441] = 4, + [2638] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1958), 1, - sym_comment, - ACTIONS(3890), 3, - ts_builtin_sym_end, + ACTIONS(4753), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3888), 59, + STATE(1961), 1, + sym_comment, + ACTIONS(4751), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243915,6 +244136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243927,6 +244149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -243959,14 +244182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2514] = 4, + [2711] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4396), 1, - anon_sym_LF, - STATE(1959), 1, + STATE(1962), 1, sym_comment, - ACTIONS(4394), 61, + ACTIONS(1431), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1429), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -243982,7 +244206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -243995,7 +244218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -244005,6 +244227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -244028,14 +244251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2587] = 4, + [2784] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4790), 1, + ACTIONS(4749), 1, anon_sym_LF, - STATE(1960), 1, + STATE(1963), 1, sym_comment, - ACTIONS(4788), 61, + ACTIONS(4747), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244097,14 +244320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2660] = 4, + [2857] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4794), 1, + ACTIONS(4749), 1, anon_sym_LF, - STATE(1961), 1, + STATE(1964), 1, sym_comment, - ACTIONS(4792), 61, + ACTIONS(4747), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244166,14 +244389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2733] = 4, + [2930] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4794), 1, + ACTIONS(4757), 1, anon_sym_LF, - STATE(1962), 1, + STATE(1965), 1, sym_comment, - ACTIONS(4792), 61, + ACTIONS(4755), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244235,14 +244458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2806] = 4, + [3003] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4798), 1, + ACTIONS(4761), 1, anon_sym_LF, - STATE(1963), 1, + STATE(1966), 1, sym_comment, - ACTIONS(4796), 61, + ACTIONS(4759), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244304,14 +244527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2879] = 4, + [3076] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4802), 1, + ACTIONS(4761), 1, anon_sym_LF, - STATE(1964), 1, + STATE(1967), 1, sym_comment, - ACTIONS(4800), 61, + ACTIONS(4759), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244373,84 +244596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [2952] = 5, + [3149] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(4765), 1, anon_sym_LF, - ACTIONS(4676), 1, - aux_sym_unquoted_token6, - STATE(1965), 1, - sym_comment, - ACTIONS(861), 60, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [3027] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4802), 1, - anon_sym_LF, - STATE(1966), 1, + STATE(1968), 1, sym_comment, - ACTIONS(4800), 61, + ACTIONS(4763), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244512,14 +244665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3100] = 4, + [3222] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4400), 1, + ACTIONS(1284), 1, anon_sym_LF, - STATE(1967), 1, + STATE(1969), 1, sym_comment, - ACTIONS(4398), 61, + ACTIONS(1282), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244581,15 +244734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3173] = 4, + [3295] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(1968), 1, - sym_comment, - ACTIONS(1391), 2, - ts_builtin_sym_end, + ACTIONS(4769), 1, anon_sym_LF, - ACTIONS(1389), 60, + STATE(1970), 1, + sym_comment, + ACTIONS(4767), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244605,6 +244757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -244617,6 +244770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -244626,7 +244780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -244650,14 +244803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3246] = 4, + [3368] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4408), 1, + ACTIONS(4773), 1, anon_sym_LF, - STATE(1969), 1, + STATE(1971), 1, sym_comment, - ACTIONS(4406), 61, + ACTIONS(4771), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244719,14 +244872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3319] = 4, + [3441] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4777), 1, anon_sym_LF, - STATE(1970), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4410), 61, + ACTIONS(4775), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244788,14 +244941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3392] = 4, + [3514] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4416), 1, + ACTIONS(4781), 1, anon_sym_LF, - STATE(1971), 1, + STATE(1973), 1, sym_comment, - ACTIONS(4414), 61, + ACTIONS(4779), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244857,14 +245010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3465] = 4, + [3587] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4806), 1, - anon_sym_LF, - STATE(1972), 1, + STATE(1974), 1, sym_comment, - ACTIONS(4804), 61, + ACTIONS(1219), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -244880,7 +245035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -244893,7 +245047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -244926,20 +245079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3538] = 7, + [3660] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(4808), 1, - anon_sym_DOT2, - STATE(1973), 1, + ACTIONS(4528), 1, + aux_sym_unquoted_token6, + STATE(1975), 1, sym_comment, - STATE(2140), 1, - sym_path, - STATE(2419), 1, - sym_cell_path, - ACTIONS(997), 58, + ACTIONS(877), 60, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -244989,6 +245138,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244998,14 +245149,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [3617] = 4, + [3735] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4785), 1, anon_sym_LF, - STATE(1974), 1, + STATE(1976), 1, sym_comment, - ACTIONS(4804), 61, + ACTIONS(4783), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245067,14 +245218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3690] = 4, + [3808] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4802), 1, + ACTIONS(4789), 1, anon_sym_LF, - STATE(1975), 1, + STATE(1977), 1, sym_comment, - ACTIONS(4800), 61, + ACTIONS(4787), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245136,14 +245287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3763] = 4, + [3881] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4802), 1, + ACTIONS(4793), 1, anon_sym_LF, - STATE(1976), 1, + STATE(1978), 1, sym_comment, - ACTIONS(4800), 61, + ACTIONS(4791), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245205,14 +245356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3836] = 4, + [3954] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(4793), 1, anon_sym_LF, - STATE(1977), 1, + STATE(1979), 1, sym_comment, - ACTIONS(4418), 61, + ACTIONS(4791), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245274,14 +245425,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3909] = 4, + [4027] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4424), 1, + STATE(1980), 1, + sym_comment, + ACTIONS(1435), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1978), 1, + ACTIONS(1433), 60, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_STAR, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [4100] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4797), 1, + anon_sym_LF, + STATE(1981), 1, sym_comment, - ACTIONS(4422), 61, + ACTIONS(4795), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245343,14 +245563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [3982] = 4, + [4173] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4430), 1, + ACTIONS(4797), 1, anon_sym_LF, - STATE(1979), 1, + STATE(1982), 1, sym_comment, - ACTIONS(4428), 61, + ACTIONS(4795), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245412,17 +245632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4055] = 5, + [4246] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4811), 1, - aux_sym__immediate_decimal_token2, - STATE(1980), 1, - sym_comment, - ACTIONS(3836), 2, - ts_builtin_sym_end, + ACTIONS(4801), 1, anon_sym_LF, - ACTIONS(3834), 59, + STATE(1983), 1, + sym_comment, + ACTIONS(4799), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245438,6 +245655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -245450,6 +245668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -245482,14 +245701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4130] = 4, + [4319] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4815), 1, + ACTIONS(4805), 1, anon_sym_LF, - STATE(1981), 1, + STATE(1984), 1, sym_comment, - ACTIONS(4813), 61, + ACTIONS(4803), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245551,14 +245770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4203] = 4, + [4392] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4815), 1, + ACTIONS(4809), 1, anon_sym_LF, - STATE(1982), 1, + STATE(1985), 1, sym_comment, - ACTIONS(4813), 61, + ACTIONS(4807), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245620,14 +245839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4276] = 4, + [4465] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4460), 1, + ACTIONS(4809), 1, anon_sym_LF, - STATE(1983), 1, + STATE(1986), 1, sym_comment, - ACTIONS(4458), 61, + ACTIONS(4807), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245689,221 +245908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4349] = 4, + [4538] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4819), 1, - anon_sym_LF, - STATE(1984), 1, - sym_comment, - ACTIONS(4817), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [4422] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1985), 1, - sym_comment, - ACTIONS(1387), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1385), 60, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_STAR, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [4495] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4468), 1, - anon_sym_LF, - STATE(1986), 1, - sym_comment, - ACTIONS(4466), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [4568] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4823), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(1987), 1, sym_comment, - ACTIONS(4821), 61, + ACTIONS(4811), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -245965,14 +245977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4641] = 4, + [4611] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4823), 1, + ACTIONS(4817), 1, anon_sym_LF, STATE(1988), 1, sym_comment, - ACTIONS(4821), 61, + ACTIONS(4815), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246034,14 +246046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4714] = 4, + [4684] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4827), 1, + ACTIONS(4821), 1, anon_sym_LF, STATE(1989), 1, sym_comment, - ACTIONS(4825), 61, + ACTIONS(4819), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246103,14 +246115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4787] = 4, + [4757] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4831), 1, + ACTIONS(4821), 1, anon_sym_LF, STATE(1990), 1, sym_comment, - ACTIONS(4829), 61, + ACTIONS(4819), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246172,14 +246184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4860] = 4, + [4830] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4835), 1, + ACTIONS(4825), 1, anon_sym_LF, STATE(1991), 1, sym_comment, - ACTIONS(4833), 61, + ACTIONS(4823), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246241,14 +246253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [4933] = 4, + [4903] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4835), 1, + ACTIONS(4829), 1, anon_sym_LF, STATE(1992), 1, sym_comment, - ACTIONS(4833), 61, + ACTIONS(4827), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246310,17 +246322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5006] = 5, + [4976] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2923), 1, - aux_sym_unquoted_token3, STATE(1993), 1, sym_comment, - ACTIONS(825), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(823), 59, + ACTIONS(1266), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246357,6 +246367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -246380,14 +246391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5081] = 4, + [5049] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4472), 1, - anon_sym_LF, STATE(1994), 1, sym_comment, - ACTIONS(4470), 61, + ACTIONS(1268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1266), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246403,7 +246415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -246416,7 +246427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -246426,6 +246436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -246449,14 +246460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5154] = 4, + [5122] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(4833), 1, anon_sym_LF, STATE(1995), 1, sym_comment, - ACTIONS(4474), 61, + ACTIONS(4831), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246518,19 +246529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5227] = 6, + [5195] = 4, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(4837), 1, - anon_sym_LBRACE, + anon_sym_LF, STATE(1996), 1, sym_comment, - STATE(2337), 1, - sym_block, - ACTIONS(4680), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4678), 58, + ACTIONS(4835), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246546,6 +246552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -246557,6 +246564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -246589,14 +246598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5304] = 4, + [5268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4842), 1, - anon_sym_LF, STATE(1997), 1, sym_comment, - ACTIONS(4840), 61, + ACTIONS(1272), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1270), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246612,7 +246622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -246625,7 +246634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -246635,6 +246643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -246658,14 +246667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5377] = 4, + [5341] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4488), 1, - anon_sym_LF, STATE(1998), 1, sym_comment, - ACTIONS(4486), 61, + ACTIONS(1439), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1437), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246681,7 +246691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -246694,7 +246703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -246704,6 +246712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -246727,26 +246736,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5450] = 6, + [5414] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4841), 1, + anon_sym_SEMI, ACTIONS(4844), 1, - anon_sym_LBRACE, + anon_sym_LF, STATE(1999), 1, sym_comment, - STATE(2240), 1, - sym_block, - ACTIONS(4701), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4699), 58, + ACTIONS(4847), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4839), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -246766,6 +246774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -246798,15 +246807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5527] = 4, + [5491] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2000), 1, sym_comment, - ACTIONS(1007), 2, + ACTIONS(1276), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 60, + ACTIONS(1274), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246867,15 +246876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5600] = 4, + [5564] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2001), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(1280), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1098), 60, + ACTIONS(1278), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -246936,14 +246945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5673] = 4, + [5637] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4046), 1, + ACTIONS(4851), 1, anon_sym_LF, STATE(2002), 1, sym_comment, - ACTIONS(4044), 61, + ACTIONS(4849), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247005,25 +247014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5746] = 6, + [5710] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4849), 1, - anon_sym_SEMI, - ACTIONS(4852), 1, + ACTIONS(4855), 1, anon_sym_LF, STATE(2003), 1, sym_comment, - ACTIONS(4855), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4847), 58, + ACTIONS(4853), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -247032,6 +247037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247044,6 +247050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247076,14 +247083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5823] = 4, + [5783] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4322), 1, + ACTIONS(4859), 1, anon_sym_LF, STATE(2004), 1, sym_comment, - ACTIONS(4320), 61, + ACTIONS(4857), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247145,86 +247152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [5896] = 7, + [5856] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, STATE(2005), 1, sym_comment, - STATE(2090), 1, - aux_sym_cell_path_repeat1, - STATE(2422), 1, - sym_path, - ACTIONS(903), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [5975] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(1219), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2006), 1, - sym_comment, - ACTIONS(4311), 61, + ACTIONS(1217), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247240,7 +247176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247253,7 +247188,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247263,6 +247197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -247286,17 +247221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6048] = 5, + [5929] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2007), 1, - sym_comment, - STATE(2356), 1, - sym_val_record, - ACTIONS(4542), 2, - ts_builtin_sym_end, + ACTIONS(4863), 1, anon_sym_LF, - ACTIONS(4540), 59, + STATE(2006), 1, + sym_comment, + ACTIONS(4861), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247312,6 +247244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247324,6 +247257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247356,14 +247290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6123] = 4, + [6002] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4861), 1, + ACTIONS(4867), 1, anon_sym_LF, - STATE(2008), 1, + STATE(2007), 1, sym_comment, - ACTIONS(4859), 61, + ACTIONS(4865), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247425,14 +247359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6196] = 4, + [6075] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4865), 1, - anon_sym_LF, - STATE(2009), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4863), 61, + ACTIONS(1321), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1319), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247448,7 +247383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247461,7 +247395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247471,6 +247404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -247494,54 +247428,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6269] = 4, + [6148] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(961), 1, anon_sym_LF, - STATE(2010), 1, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2009), 1, sym_comment, - ACTIONS(4307), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2055), 1, + sym_path, + STATE(2493), 1, + sym_cell_path, + ACTIONS(959), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -247562,15 +247500,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [6342] = 4, + [6227] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4869), 1, - anon_sym_LF, - STATE(2011), 1, + STATE(2010), 1, sym_comment, - ACTIONS(4867), 61, + ACTIONS(1084), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1082), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247586,7 +247524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247599,7 +247536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247609,6 +247545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -247632,26 +247569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6415] = 7, + [6300] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, - STATE(2012), 1, + ACTIONS(2946), 1, + aux_sym_unquoted_token3, + STATE(2011), 1, sym_comment, - ACTIONS(4871), 58, + ACTIONS(829), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(827), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -247704,54 +247639,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6494] = 4, + [6375] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4305), 1, - anon_sym_LF, - STATE(2013), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4303), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 59, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -247763,6 +247696,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -247772,15 +247707,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [6567] = 4, + aux_sym_unquoted_token6, + [6448] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_LF, - STATE(2014), 1, + STATE(2013), 1, sym_comment, - ACTIONS(4873), 61, + ACTIONS(1088), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1086), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247796,7 +247732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247809,7 +247744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247819,6 +247753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -247842,55 +247777,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6640] = 5, + [6521] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4877), 1, + STATE(2014), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, + ACTIONS(807), 59, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [6594] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(2015), 1, sym_comment, - ACTIONS(3937), 2, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3935), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + anon_sym_DOT2, + ACTIONS(855), 59, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -247902,6 +247903,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -247911,18 +247914,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [6715] = 5, + aux_sym_unquoted_token6, + [6667] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4879), 1, - anon_sym_DOT2, + ACTIONS(4871), 1, + anon_sym_LF, STATE(2016), 1, sym_comment, - ACTIONS(3943), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3941), 59, + ACTIONS(4869), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -247938,6 +247938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -247950,6 +247951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -247982,24 +247984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6790] = 7, + [6740] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, STATE(2017), 1, sym_comment, - STATE(2474), 1, - sym_cell_path, - ACTIONS(990), 58, + ACTIONS(896), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 59, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -248007,7 +248004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -248045,6 +248041,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -248054,14 +248052,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [6869] = 4, + aux_sym_unquoted_token6, + [6813] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4301), 1, - anon_sym_LF, + ACTIONS(4873), 1, + anon_sym_LBRACE, STATE(2018), 1, sym_comment, - ACTIONS(4299), 61, + STATE(2324), 1, + sym_block, + ACTIONS(4540), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4538), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248077,7 +248081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -248089,8 +248092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -248123,14 +248124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [6942] = 4, + [6890] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4883), 1, - anon_sym_LF, + ACTIONS(4873), 1, + anon_sym_LBRACE, STATE(2019), 1, sym_comment, - ACTIONS(4881), 61, + STATE(2327), 1, + sym_block, + ACTIONS(4540), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4538), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248146,7 +248152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -248158,8 +248163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -248192,54 +248195,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7015] = 4, + [6967] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4297), 1, + ACTIONS(911), 1, anon_sym_LF, + ACTIONS(4742), 1, + anon_sym_DOT2, STATE(2020), 1, sym_comment, - ACTIONS(4295), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2055), 1, + sym_path, + STATE(2516), 1, + sym_cell_path, + ACTIONS(909), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -248260,15 +248267,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7088] = 4, + [7046] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4271), 1, - anon_sym_LF, + ACTIONS(4873), 1, + anon_sym_LBRACE, STATE(2021), 1, sym_comment, - ACTIONS(4269), 61, + STATE(2230), 1, + sym_block, + ACTIONS(4518), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4516), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248284,7 +248295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -248296,8 +248306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -248330,14 +248338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7161] = 4, + [7123] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4887), 1, - anon_sym_LF, STATE(2022), 1, sym_comment, - ACTIONS(4885), 61, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248353,7 +248363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -248366,7 +248375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -248399,14 +248407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7234] = 4, + [7196] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4260), 1, + ACTIONS(1253), 1, anon_sym_LF, STATE(2023), 1, sym_comment, - ACTIONS(4258), 61, + ACTIONS(1251), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248468,19 +248476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7307] = 6, + [7269] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4891), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - ACTIONS(4894), 1, + ACTIONS(4879), 1, anon_sym_LF, + STATE(1665), 1, + aux_sym__block_body_repeat1, STATE(2024), 1, sym_comment, - ACTIONS(4897), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4889), 58, + STATE(2071), 1, + sym__terminator, + ACTIONS(4875), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248539,25 +248548,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7384] = 6, + [7348] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4901), 1, - anon_sym_SEMI, - ACTIONS(4904), 1, - anon_sym_LF, STATE(2025), 1, sym_comment, - ACTIONS(4907), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4899), 58, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -248610,14 +248617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7461] = 4, + [7421] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4246), 1, + ACTIONS(4883), 1, anon_sym_LF, STATE(2026), 1, sym_comment, - ACTIONS(4244), 61, + ACTIONS(4881), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248679,21 +248686,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7534] = 4, + [7494] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4242), 1, + ACTIONS(4887), 1, + anon_sym_SEMI, + ACTIONS(4890), 1, anon_sym_LF, STATE(2027), 1, sym_comment, - ACTIONS(4240), 61, + ACTIONS(4893), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4885), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -248702,7 +248713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -248715,7 +248725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -248748,14 +248757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7607] = 4, + [7571] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4911), 1, + ACTIONS(4897), 1, anon_sym_LF, STATE(2028), 1, sym_comment, - ACTIONS(4909), 61, + ACTIONS(4895), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248817,14 +248826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7680] = 4, + [7644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4238), 1, + ACTIONS(4901), 1, anon_sym_LF, STATE(2029), 1, sym_comment, - ACTIONS(4236), 61, + ACTIONS(4899), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -248886,54 +248895,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7753] = 4, + [7717] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2030), 1, - sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, + ACTIONS(935), 1, anon_sym_LF, + ACTIONS(4903), 1, anon_sym_DOT2, - ACTIONS(1252), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(1955), 1, + sym_path, + STATE(2030), 1, + sym_comment, + STATE(2374), 1, + sym_cell_path, + ACTIONS(933), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -248954,15 +248967,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7826] = 4, + [7796] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4915), 1, + ACTIONS(4908), 1, anon_sym_LF, STATE(2031), 1, sym_comment, - ACTIONS(4913), 61, + ACTIONS(4906), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249024,14 +249036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7899] = 4, + [7869] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4919), 1, + ACTIONS(4912), 1, anon_sym_LF, STATE(2032), 1, sym_comment, - ACTIONS(4917), 61, + ACTIONS(4910), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249093,14 +249105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7972] = 4, + [7942] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4919), 1, + ACTIONS(4916), 1, anon_sym_LF, STATE(2033), 1, sym_comment, - ACTIONS(4917), 61, + ACTIONS(4914), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249162,14 +249174,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8045] = 4, + [8015] = 40, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4923), 1, + ACTIONS(987), 1, anon_sym_LF, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4108), 1, + anon_sym_LBRACE, + ACTIONS(4114), 1, + anon_sym_not, + ACTIONS(4116), 1, + anon_sym_null, + ACTIONS(4124), 1, + sym_val_date, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4130), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4132), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4920), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, STATE(2034), 1, sym_comment, - ACTIONS(4921), 61, + STATE(4505), 1, + sym__val_number_decimal, + STATE(4588), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(4959), 1, + sym_val_variable, + STATE(4993), 1, + sym_expr_parenthesized, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + STATE(6687), 1, + sym__expr_binary_expression, + STATE(8216), 1, + sym__expression, + STATE(8282), 1, + sym_val_range, + STATE(8293), 1, + sym_unquoted, + ACTIONS(4118), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4128), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4122), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(4926), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5182), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(985), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + STATE(5304), 11, + sym_val_nothing, + sym_val_bool, + 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, + [8160] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1223), 1, + anon_sym_LF, + STATE(2035), 1, + sym_comment, + ACTIONS(1221), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249231,54 +249348,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8118] = 4, + [8233] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4230), 1, + ACTIONS(968), 1, anon_sym_LF, - STATE(2035), 1, + ACTIONS(4928), 1, + anon_sym_DOT2, + STATE(1955), 1, + sym_path, + STATE(2036), 1, sym_comment, - ACTIONS(4228), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2373), 1, + sym_cell_path, + ACTIONS(966), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -249299,15 +249420,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8191] = 4, + [8312] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4226), 1, - anon_sym_LF, - STATE(2036), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4224), 61, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249323,7 +249444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -249336,7 +249456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -249346,6 +249465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -249369,54 +249489,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8264] = 4, + [8385] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4927), 1, + STATE(1956), 1, + aux_sym_cell_path_repeat1, + STATE(2038), 1, + sym_comment, + STATE(2411), 1, + sym_path, + ACTIONS(975), 2, anon_sym_LF, - STATE(2037), 1, + anon_sym_DOT2, + ACTIONS(973), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [8462] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2039), 1, sym_comment, - ACTIONS(4925), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2055), 1, + sym_path, + STATE(2433), 1, + sym_cell_path, + ACTIONS(933), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -249437,15 +249632,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8337] = 4, + [8541] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4931), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(2038), 1, + STATE(2040), 1, sym_comment, - ACTIONS(4929), 61, + ACTIONS(4931), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249507,14 +249701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8410] = 4, + [8614] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4931), 1, + ACTIONS(4933), 1, anon_sym_LF, - STATE(2039), 1, + STATE(2041), 1, sym_comment, - ACTIONS(4929), 61, + ACTIONS(4931), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249576,14 +249770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8483] = 4, + [8687] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4935), 1, - anon_sym_LF, - STATE(2040), 1, + STATE(2042), 1, sym_comment, - ACTIONS(4933), 61, + STATE(2317), 1, + sym_val_record, + ACTIONS(4503), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4501), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249599,7 +249796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -249612,7 +249808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -249645,14 +249840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8556] = 4, + [8762] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4935), 1, - anon_sym_LF, - STATE(2041), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4933), 61, + STATE(2273), 1, + sym_val_record, + ACTIONS(4507), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4505), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249668,7 +249866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -249681,7 +249878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -249714,14 +249910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8629] = 4, + [8837] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4222), 1, + ACTIONS(4937), 1, anon_sym_LF, - STATE(2042), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4220), 61, + ACTIONS(4935), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249783,20 +249979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8702] = 7, + [8910] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, + ACTIONS(968), 1, anon_sym_LF, - ACTIONS(4857), 1, + ACTIONS(4742), 1, anon_sym_DOT2, - STATE(2005), 1, - sym_path, - STATE(2043), 1, + STATE(2045), 1, sym_comment, - STATE(2479), 1, + STATE(2055), 1, + sym_path, + STATE(2494), 1, sym_cell_path, - ACTIONS(909), 58, + ACTIONS(966), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -249855,54 +250051,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [8781] = 4, + [8989] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4939), 1, + ACTIONS(927), 1, anon_sym_LF, - STATE(2044), 1, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2046), 1, sym_comment, - ACTIONS(4937), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2055), 1, + sym_path, + STATE(2513), 1, + sym_cell_path, + ACTIONS(925), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -249923,15 +250123,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8854] = 4, + [9068] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4941), 1, anon_sym_LF, - STATE(2045), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4200), 61, + ACTIONS(4939), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -249993,73 +250192,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8927] = 13, + [9141] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2177), 1, - sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(975), 1, + anon_sym_LF, + ACTIONS(4742), 1, anon_sym_DOT2, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(2046), 1, + STATE(1956), 1, + aux_sym_cell_path_repeat1, + STATE(2048), 1, sym_comment, - STATE(2673), 1, - sym__var, - STATE(3543), 1, - sym__immediate_decimal, - STATE(3542), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 51, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + STATE(2411), 1, + sym_path, + ACTIONS(973), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -250067,18 +250255,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [9018] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9220] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(4937), 1, anon_sym_LF, - STATE(2047), 1, + STATE(2049), 1, sym_comment, - ACTIONS(1243), 61, + ACTIONS(4935), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250140,63 +250333,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9091] = 13, + [9293] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(2048), 1, + ACTIONS(4945), 1, + anon_sym_LF, + STATE(2050), 1, sym_comment, - STATE(2673), 1, - sym__var, - STATE(3545), 1, - sym__immediate_decimal, - STATE(3544), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2171), 51, + ACTIONS(4943), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -250204,9 +250379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -250214,19 +250392,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [9182] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9366] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2049), 1, + ACTIONS(4670), 1, + aux_sym_unquoted_token5, + STATE(2051), 1, sym_comment, - ACTIONS(1284), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1282), 60, + ACTIONS(1191), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250263,7 +250449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -250287,15 +250472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9255] = 4, + [9441] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2050), 1, - sym_comment, - ACTIONS(1399), 2, - ts_builtin_sym_end, + ACTIONS(4949), 1, anon_sym_LF, - ACTIONS(1397), 60, + STATE(2052), 1, + sym_comment, + ACTIONS(4947), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250311,6 +250495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -250323,6 +250508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -250332,7 +250518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -250356,63 +250541,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9328] = 13, + [9514] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2149), 1, - sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(2051), 1, + ACTIONS(4953), 1, + anon_sym_LF, + STATE(2053), 1, sym_comment, - STATE(2673), 1, - sym__var, - STATE(3547), 1, - sym__immediate_decimal, - STATE(3546), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 51, + ACTIONS(4951), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -250420,9 +250587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -250430,58 +250600,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [9419] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9587] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4196), 1, + ACTIONS(915), 1, anon_sym_LF, - STATE(2052), 1, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2054), 1, sym_comment, - ACTIONS(4194), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2055), 1, + sym_path, + STATE(2478), 1, + sym_cell_path, + ACTIONS(913), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -250502,55 +250682,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9492] = 4, + [9666] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4192), 1, + ACTIONS(905), 1, anon_sym_LF, - STATE(2053), 1, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2048), 1, + aux_sym_cell_path_repeat1, + STATE(2055), 1, sym_comment, - ACTIONS(4190), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2411), 1, + sym_path, + ACTIONS(903), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -250571,15 +250754,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9565] = 4, + [9745] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4943), 1, - anon_sym_LF, - STATE(2054), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4941), 61, + ACTIONS(3806), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3804), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250595,7 +250779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -250608,7 +250791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -250641,14 +250823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9638] = 4, + [9818] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4943), 1, + ACTIONS(4957), 1, anon_sym_LF, - STATE(2055), 1, + STATE(2057), 1, sym_comment, - ACTIONS(4941), 61, + ACTIONS(4955), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250710,14 +250892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9711] = 4, + [9891] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4931), 1, - anon_sym_LF, - STATE(2056), 1, + ACTIONS(4959), 1, + anon_sym_DOT2, + STATE(2058), 1, sym_comment, - ACTIONS(4929), 61, + ACTIONS(3979), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3977), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250733,7 +250918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -250746,7 +250930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -250779,14 +250962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9784] = 4, + [9966] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4931), 1, - anon_sym_LF, - STATE(2057), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4929), 61, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250802,7 +250986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -250815,7 +250998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -250825,6 +251007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -250848,14 +251031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9857] = 4, + [10039] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LF, - STATE(2058), 1, + ACTIONS(4961), 1, + anon_sym_DOT2, + STATE(2060), 1, sym_comment, - ACTIONS(4176), 61, + ACTIONS(4028), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4026), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250871,7 +251057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -250884,7 +251069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -250917,14 +251101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9930] = 4, + [10114] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4965), 1, anon_sym_LF, - STATE(2059), 1, + STATE(2061), 1, sym_comment, - ACTIONS(4945), 61, + ACTIONS(4963), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -250986,16 +251170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10003] = 5, + [10187] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(919), 1, anon_sym_LF, - ACTIONS(4708), 1, - aux_sym_unquoted_token6, - STATE(2060), 1, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2055), 1, + sym_path, + STATE(2062), 1, sym_comment, - ACTIONS(861), 60, + STATE(2482), 1, + sym_cell_path, + ACTIONS(917), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -251045,8 +251233,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -251056,156 +251242,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [10078] = 6, + [10266] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4949), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym_comment, - STATE(2344), 1, - sym_block, - ACTIONS(4668), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4666), 58, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10155] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4949), 1, - anon_sym_LBRACE, - STATE(2062), 1, - sym_comment, - STATE(2334), 1, - sym_block, - ACTIONS(4668), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4666), 58, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10232] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4174), 1, + ACTIONS(3000), 1, anon_sym_LF, STATE(2063), 1, sym_comment, - ACTIONS(4172), 61, + ACTIONS(2998), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251267,54 +251311,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10305] = 4, + [10339] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4170), 1, + ACTIONS(879), 1, anon_sym_LF, + ACTIONS(4524), 1, + aux_sym_unquoted_token6, STATE(2064), 1, sym_comment, - ACTIONS(4168), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(877), 60, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -251326,6 +251370,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -251335,22 +251381,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10378] = 4, + [10414] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4160), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LF, STATE(2065), 1, sym_comment, - ACTIONS(4158), 61, + STATE(2071), 1, + sym__terminator, + STATE(2072), 1, + aux_sym__block_body_repeat1, + ACTIONS(4967), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -251359,7 +251409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251372,7 +251421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251405,14 +251453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10451] = 4, + [10493] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4971), 1, anon_sym_LF, STATE(2066), 1, sym_comment, - ACTIONS(4951), 61, + ACTIONS(4969), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251474,14 +251522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10524] = 4, + [10566] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4148), 1, - anon_sym_LF, + ACTIONS(4973), 1, + anon_sym_DOT2, STATE(2067), 1, sym_comment, - ACTIONS(4146), 61, + ACTIONS(4038), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4036), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251497,7 +251548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251510,7 +251560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251543,14 +251592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10597] = 4, + [10641] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4144), 1, - anon_sym_LF, + ACTIONS(4975), 1, + anon_sym_DOT2, STATE(2068), 1, sym_comment, - ACTIONS(4142), 61, + ACTIONS(3842), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3840), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251566,7 +251618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251579,7 +251630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251612,14 +251662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10670] = 4, + [10716] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4140), 1, - anon_sym_LF, + ACTIONS(4977), 1, + anon_sym_DOT2, STATE(2069), 1, sym_comment, - ACTIONS(4138), 61, + ACTIONS(3905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3903), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251635,7 +251688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251648,7 +251700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251681,14 +251732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10743] = 4, + [10791] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4136), 1, - anon_sym_LF, + ACTIONS(4979), 1, + anon_sym_DOT2, STATE(2070), 1, sym_comment, - ACTIONS(4134), 61, + ACTIONS(3911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3909), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251704,7 +251758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251717,7 +251770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251750,119 +251802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10816] = 40, + [10866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(925), 1, + ACTIONS(4983), 1, anon_sym_LF, - ACTIONS(3505), 1, - anon_sym_DOLLAR, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4056), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_LPAREN, - ACTIONS(4064), 1, - anon_sym_LBRACE, - ACTIONS(4070), 1, - anon_sym_not, - ACTIONS(4072), 1, - anon_sym_null, - ACTIONS(4080), 1, - sym_val_date, - ACTIONS(4082), 1, - anon_sym_DQUOTE, - ACTIONS(4086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4957), 1, - anon_sym_DOT, - ACTIONS(4959), 1, - anon_sym_PLUS, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, STATE(2071), 1, sym_comment, - STATE(4524), 1, - sym__val_number_decimal, - STATE(4658), 1, - sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, - sym_val_number, - STATE(5017), 1, - sym_val_variable, - STATE(5121), 1, - sym_expr_parenthesized, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, - sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - STATE(6856), 1, - sym__expr_binary_expression, - STATE(8154), 1, - sym__expression, - STATE(8155), 1, - sym_unquoted, - STATE(8189), 1, - sym_val_range, - ACTIONS(4074), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4078), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(4963), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5142), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(923), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - STATE(5262), 11, - sym_val_nothing, - sym_val_bool, - 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, - [10961] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4967), 1, - anon_sym_LF, - STATE(2072), 1, - sym_comment, - ACTIONS(4965), 61, + ACTIONS(4981), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -251924,21 +251871,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11034] = 4, + [10939] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LF, - STATE(2073), 1, + STATE(1665), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, + STATE(2072), 1, sym_comment, - ACTIONS(4969), 61, + ACTIONS(4985), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -251947,7 +251899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -251960,7 +251911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -251993,14 +251943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11107] = 4, + [11018] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4128), 1, - anon_sym_LF, - STATE(2074), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4126), 61, + ACTIONS(4034), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(4032), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252016,7 +251968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -252029,7 +251980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -252062,54 +252012,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11180] = 4, + [11091] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4124), 1, + ACTIONS(951), 1, anon_sym_LF, + ACTIONS(4987), 1, + anon_sym_DOT2, + ACTIONS(4989), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4991), 1, + aux_sym_unquoted_token2, + STATE(2074), 1, + sym_comment, + ACTIONS(949), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [11170] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(931), 1, + anon_sym_LF, + ACTIONS(4742), 1, + anon_sym_DOT2, + STATE(2055), 1, + sym_path, STATE(2075), 1, sym_comment, - ACTIONS(4122), 61, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2530), 1, + sym_cell_path, + ACTIONS(929), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -252130,15 +252156,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11253] = 4, + [11249] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4120), 1, + ACTIONS(2959), 1, anon_sym_LF, STATE(2076), 1, sym_comment, - ACTIONS(4118), 61, + ACTIONS(2957), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252200,14 +252225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11326] = 4, + [11322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4116), 1, + ACTIONS(3806), 1, anon_sym_LF, STATE(2077), 1, sym_comment, - ACTIONS(4114), 61, + ACTIONS(3804), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252269,14 +252294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11399] = 4, + [11395] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4107), 1, - anon_sym_LF, + ACTIONS(4993), 1, + anon_sym_LBRACE, STATE(2078), 1, sym_comment, - ACTIONS(4105), 61, + STATE(2366), 1, + sym_block, + ACTIONS(4511), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4509), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252292,7 +252322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -252304,8 +252333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -252338,63 +252365,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11472] = 13, + [11472] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, + ACTIONS(4996), 1, + anon_sym_LBRACE, STATE(2079), 1, sym_comment, - STATE(2673), 1, - sym__var, - STATE(3549), 1, - sym__immediate_decimal, - STATE(3548), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 51, + STATE(2313), 1, + sym_block, + ACTIONS(4496), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4494), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -252402,9 +252413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -252412,29 +252426,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [11563] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11549] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4975), 1, - anon_sym_SEMI, - ACTIONS(4978), 1, + ACTIONS(4034), 1, anon_sym_LF, STATE(2080), 1, sym_comment, - ACTIONS(4981), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4973), 58, + ACTIONS(4032), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -252443,6 +252459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -252455,6 +252472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -252487,14 +252505,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11640] = 4, + [11622] = 40, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4985), 1, + ACTIONS(987), 1, anon_sym_LF, + ACTIONS(3093), 1, + aux_sym_unquoted_token1, + ACTIONS(4999), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_LPAREN, + ACTIONS(5003), 1, + anon_sym_DOLLAR, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5007), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_DOT, + ACTIONS(5011), 1, + anon_sym_PLUS, + ACTIONS(5013), 1, + anon_sym_not, + ACTIONS(5015), 1, + anon_sym_null, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5027), 1, + sym_val_date, + ACTIONS(5029), 1, + anon_sym_DQUOTE, + ACTIONS(5033), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5035), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1760), 1, + sym__val_number_decimal, + STATE(2036), 1, + sym__var, STATE(2081), 1, sym_comment, - ACTIONS(4983), 61, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2397), 1, + sym_val_variable, + STATE(2416), 1, + sym_expr_parenthesized, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(5778), 1, + sym__expression, + STATE(5792), 1, + sym_unquoted, + STATE(5803), 1, + sym_val_range, + STATE(6762), 1, + sym__expr_binary_expression, + ACTIONS(5017), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5031), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5021), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5023), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2475), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(985), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + STATE(2534), 11, + sym_val_nothing, + sym_val_bool, + 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, + [11767] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5039), 1, + anon_sym_LF, + STATE(2082), 1, + sym_comment, + ACTIONS(5037), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252556,14 +252679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11713] = 4, + [11840] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4989), 1, + ACTIONS(5043), 1, anon_sym_LF, - STATE(2082), 1, + STATE(2083), 1, sym_comment, - ACTIONS(4987), 61, + ACTIONS(5041), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252625,83 +252748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11786] = 4, + [11913] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2084), 1, sym_comment, - ACTIONS(891), 3, + ACTIONS(1223), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 59, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [11859] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4993), 1, - anon_sym_LF, - STATE(2084), 1, - sym_comment, - ACTIONS(4991), 61, + ACTIONS(1221), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252717,7 +252773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -252730,7 +252785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -252763,58 +252817,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11932] = 7, + [11986] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(5047), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, STATE(2085), 1, sym_comment, - STATE(2515), 1, - sym_cell_path, - ACTIONS(979), 58, + ACTIONS(5045), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -252835,15 +252885,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [12011] = 4, + anon_sym_CARET, + [12059] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5051), 1, + anon_sym_LF, STATE(2086), 1, sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1193), 60, + ACTIONS(5049), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -252859,6 +252909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -252871,6 +252922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -252880,7 +252932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -252904,150 +252955,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12084] = 40, + [12132] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_LF, - ACTIONS(3254), 1, - aux_sym_unquoted_token1, - ACTIONS(4995), 1, - anon_sym_LBRACK, - ACTIONS(4997), 1, + ACTIONS(2175), 1, + sym__entry_separator, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(4054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4056), 1, + anon_sym_DASH2, + ACTIONS(4058), 1, + anon_sym_PLUS2, + STATE(2087), 1, + sym_comment, + STATE(2661), 1, + sym__var, + STATE(3202), 1, + sym__immediate_decimal, + STATE(3201), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 51, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5003), 1, - anon_sym_LBRACE, - ACTIONS(5005), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(5007), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(5009), 1, - anon_sym_not, - ACTIONS(5011), 1, - anon_sym_null, - ACTIONS(5015), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5023), 1, - sym_val_date, - ACTIONS(5025), 1, - anon_sym_DQUOTE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5031), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1909), 1, - sym__val_number_decimal, - STATE(1973), 1, - sym__var, - STATE(2087), 1, - sym_comment, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2398), 1, - sym_val_variable, - STATE(2415), 1, - sym_expr_parenthesized, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(5369), 1, - sym_unquoted, - STATE(5518), 1, - sym__expression, - STATE(5700), 1, - sym_val_range, - STATE(6864), 1, - sym__expr_binary_expression, - ACTIONS(5013), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5027), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5017), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5019), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2485), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(923), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - STATE(2446), 11, - sym_val_nothing, - sym_val_bool, - 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, - [12229] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [12223] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5035), 1, - anon_sym_LF, + ACTIONS(2077), 1, + sym__entry_separator, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(4054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4056), 1, + anon_sym_DASH2, + ACTIONS(4058), 1, + anon_sym_PLUS2, STATE(2088), 1, sym_comment, - ACTIONS(5033), 61, + STATE(2661), 1, + sym__var, + STATE(3204), 1, + sym__immediate_decimal, + STATE(3203), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 51, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -253055,12 +253097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -253068,30 +253107,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12302] = 7, + aux_sym__record_key_token2, + [12314] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(1927), 1, - sym__terminator, - STATE(1931), 1, - aux_sym__block_body_repeat1, + ACTIONS(2081), 1, + sym__entry_separator, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(4054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4056), 1, + anon_sym_DASH2, + ACTIONS(4058), 1, + anon_sym_PLUS2, STATE(2089), 1, sym_comment, - ACTIONS(5037), 58, + STATE(2661), 1, + sym__var, + STATE(3206), 1, + sym__immediate_decimal, + STATE(3205), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253104,22 +253150,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -253127,12 +253175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -253140,72 +253185,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12381] = 7, + aux_sym__record_key_token2, + [12405] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, - anon_sym_LF, - ACTIONS(4857), 1, + ACTIONS(2073), 1, + sym__entry_separator, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, + ACTIONS(4054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4056), 1, + anon_sym_DASH2, + ACTIONS(4058), 1, + anon_sym_PLUS2, STATE(2090), 1, sym_comment, - STATE(2143), 1, - aux_sym_cell_path_repeat1, - STATE(2422), 1, - sym_path, - ACTIONS(975), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + STATE(2661), 1, + sym__var, + STATE(3208), 1, + sym__immediate_decimal, + STATE(3207), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 51, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_LBRACE, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -253213,23 +253263,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [12460] = 4, + aux_sym__record_key_token2, + [12496] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(5055), 1, anon_sym_LF, STATE(2091), 1, sym_comment, - ACTIONS(1033), 61, + ACTIONS(5053), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253291,21 +253336,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12533] = 4, + [12569] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5041), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LF, + STATE(2024), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, STATE(2092), 1, sym_comment, - ACTIONS(5039), 61, + ACTIONS(5057), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -253314,7 +253364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -253327,7 +253376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -253360,14 +253408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 4, + [12648] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(4728), 1, anon_sym_LF, STATE(2093), 1, sym_comment, - ACTIONS(5043), 61, + ACTIONS(4726), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253429,58 +253477,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12679] = 7, + [12721] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(4728), 1, anon_sym_LF, - ACTIONS(5047), 1, - anon_sym_DOT2, STATE(2094), 1, sym_comment, - STATE(2140), 1, - sym_path, - STATE(2382), 1, - sym_cell_path, - ACTIONS(979), 58, + ACTIONS(4726), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -253501,86 +253545,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [12758] = 7, + anon_sym_CARET, + [12794] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, + ACTIONS(5061), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, STATE(2095), 1, sym_comment, - STATE(2437), 1, - sym_cell_path, - ACTIONS(1001), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [12837] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5045), 1, - anon_sym_LF, - STATE(2096), 1, - sym_comment, - ACTIONS(5043), 61, + ACTIONS(5059), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253642,33 +253615,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12910] = 13, + [12867] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2108), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2097), 1, + STATE(2096), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3590), 1, + STATE(3231), 1, sym__immediate_decimal, - STATE(3589), 2, + STATE(3230), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 51, + ACTIONS(2106), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253720,30 +253693,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13001] = 13, + [12958] = 13, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(2112), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2098), 1, + STATE(2097), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3592), 1, + STATE(3233), 1, sym__immediate_decimal, - STATE(3591), 2, + STATE(3232), 2, sym_expr_parenthesized, sym_val_variable, ACTIONS(2110), 51, @@ -253798,33 +253771,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13092] = 13, + [13049] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2116), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2099), 1, + STATE(2098), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3594), 1, + STATE(3235), 1, sym__immediate_decimal, - STATE(3593), 2, + STATE(3234), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 51, + ACTIONS(2114), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253876,33 +253849,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13183] = 13, + [13140] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2120), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2100), 1, + STATE(2099), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3596), 1, + STATE(3237), 1, sym__immediate_decimal, - STATE(3595), 2, + STATE(3236), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 51, + ACTIONS(2118), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -253954,33 +253927,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13274] = 13, + [13231] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(2124), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2101), 1, + STATE(2100), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3598), 1, + STATE(3239), 1, sym__immediate_decimal, - STATE(3597), 2, + STATE(3238), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 51, + ACTIONS(2122), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254032,113 +254005,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13365] = 4, + [13322] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(2102), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 60, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, + ACTIONS(2128), 1, + sym__entry_separator, + ACTIONS(4044), 1, anon_sym_LPAREN, + ACTIONS(4046), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_STAR, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [13438] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2103), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(4054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4056), 1, + anon_sym_DASH2, + ACTIONS(4058), 1, + anon_sym_PLUS2, + STATE(2101), 1, sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 60, + STATE(2661), 1, + sym__var, + STATE(3241), 1, + sym__immediate_decimal, + STATE(3240), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 51, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -254146,13 +254069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -254160,43 +254079,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [13511] = 13, + aux_sym__record_key_token2, + [13413] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2132), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2104), 1, + STATE(2102), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3600), 1, + STATE(3243), 1, sym__immediate_decimal, - STATE(3599), 2, + STATE(3242), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 51, + ACTIONS(2130), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254248,33 +254161,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13602] = 13, + [13504] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2132), 1, + ACTIONS(2136), 1, sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4046), 1, + anon_sym_DOLLAR, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(4452), 1, + ACTIONS(4054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, + ACTIONS(4056), 1, anon_sym_DASH2, - ACTIONS(4456), 1, + ACTIONS(4058), 1, anon_sym_PLUS2, - STATE(2105), 1, + STATE(2103), 1, sym_comment, - STATE(2673), 1, + STATE(2661), 1, sym__var, - STATE(3602), 1, + STATE(3245), 1, sym__immediate_decimal, - STATE(3601), 2, + STATE(3244), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 51, + ACTIONS(2134), 51, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254326,14 +254239,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [13693] = 4, + [13595] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5052), 1, + ACTIONS(5061), 1, anon_sym_LF, - STATE(2106), 1, + STATE(2104), 1, sym_comment, - ACTIONS(5050), 61, + ACTIONS(5059), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254395,14 +254308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13766] = 4, + [13668] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5056), 1, - anon_sym_LF, - STATE(2107), 1, + STATE(2105), 1, sym_comment, - ACTIONS(5054), 61, + ACTIONS(1427), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1425), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254418,7 +254332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254431,7 +254344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -254441,6 +254353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, + anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -254464,63 +254377,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13839] = 13, + [13741] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2089), 1, - sym__entry_separator, - ACTIONS(4206), 1, - anon_sym_DOLLAR, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4454), 1, - anon_sym_DASH2, - ACTIONS(4456), 1, - anon_sym_PLUS2, - STATE(2108), 1, + ACTIONS(4332), 1, + anon_sym_LF, + STATE(2106), 1, sym_comment, - STATE(2673), 1, - sym__var, - STATE(3604), 1, - sym__immediate_decimal, - STATE(3603), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 51, + ACTIONS(4330), 61, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -254528,9 +254423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -254538,21 +254436,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [13930] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13814] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4607), 1, - aux_sym_unquoted_token5, - STATE(2109), 1, - sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(4336), 1, anon_sym_LF, - ACTIONS(1193), 59, + STATE(2107), 1, + sym_comment, + ACTIONS(4334), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254568,6 +254469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254580,6 +254482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -254612,14 +254515,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14005] = 4, + [13887] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(5063), 1, + anon_sym_DOT2, + ACTIONS(5065), 1, + aux_sym_unquoted_token6, + STATE(2108), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2110), 1, + ACTIONS(877), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [13964] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + aux_sym__immediate_decimal_token2, + STATE(2109), 1, sym_comment, - ACTIONS(1358), 61, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254635,7 +254612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254648,7 +254624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -254681,14 +254656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14078] = 4, + [14039] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(4340), 1, anon_sym_LF, - STATE(2111), 1, + STATE(2110), 1, sym_comment, - ACTIONS(5058), 61, + ACTIONS(4338), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254750,84 +254725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14151] = 4, + [14112] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2112), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, + ACTIONS(4344), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 59, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [14224] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2113), 1, + STATE(2111), 1, sym_comment, - ACTIONS(4599), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4597), 60, + ACTIONS(4342), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254843,7 +254748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254856,6 +254761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -254888,19 +254794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14297] = 6, + [14185] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4949), 1, - anon_sym_LBRACE, - STATE(2114), 1, - sym_comment, - STATE(2194), 1, - sym_block, - ACTIONS(4593), 2, - ts_builtin_sym_end, + ACTIONS(5069), 1, anon_sym_LF, - ACTIONS(4591), 58, + STATE(2112), 1, + sym_comment, + ACTIONS(5067), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254916,6 +254817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254927,6 +254829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -254959,14 +254863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14374] = 4, + [14258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_LF, - STATE(2115), 1, + STATE(2113), 1, sym_comment, - ACTIONS(5062), 61, + ACTIONS(1187), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1185), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -254982,7 +254888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -254995,7 +254900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255028,14 +254932,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14447] = 4, + [14331] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5068), 1, + ACTIONS(5071), 1, + anon_sym_DOT2, + ACTIONS(5073), 1, + aux_sym_unquoted_token6, + STATE(2114), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2116), 1, + ACTIONS(877), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [14408] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4678), 1, + aux_sym__immediate_decimal_token2, + STATE(2115), 1, sym_comment, - ACTIONS(5066), 61, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255051,7 +255029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -255064,7 +255041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255097,21 +255073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14520] = 4, + [14483] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5072), 1, + ACTIONS(5077), 1, + anon_sym_SEMI, + ACTIONS(5080), 1, anon_sym_LF, - STATE(2117), 1, + STATE(2116), 1, sym_comment, - ACTIONS(5070), 61, + ACTIONS(5083), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5075), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -255120,7 +255100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -255133,7 +255112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255166,21 +255144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14593] = 4, + [14560] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(5087), 1, + anon_sym_SEMI, + ACTIONS(5090), 1, anon_sym_LF, - STATE(2118), 1, + STATE(2117), 1, sym_comment, - ACTIONS(3888), 61, + ACTIONS(5093), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5085), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -255189,7 +255171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -255202,7 +255183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255235,90 +255215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14666] = 6, + [14637] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5074), 1, - anon_sym_DOT2, - ACTIONS(5076), 1, - aux_sym_unquoted_token6, - STATE(2119), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, + ACTIONS(5097), 1, anon_sym_LF, - ACTIONS(861), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [14743] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4949), 1, - anon_sym_LBRACE, - STATE(2120), 1, + STATE(2118), 1, sym_comment, - STATE(2195), 1, - sym_block, - ACTIONS(4593), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4591), 58, + ACTIONS(5095), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255334,6 +255238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -255345,6 +255250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255377,14 +255284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14820] = 4, + [14710] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5080), 1, + ACTIONS(4392), 1, anon_sym_LF, - STATE(2121), 1, + STATE(2119), 1, sym_comment, - ACTIONS(5078), 61, + ACTIONS(4390), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255446,58 +255353,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [14893] = 7, + [14783] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(4396), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, - STATE(2122), 1, + STATE(2120), 1, sym_comment, - STATE(2491), 1, - sym_cell_path, - ACTIONS(1033), 58, + ACTIONS(4394), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -255518,14 +255421,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14972] = 4, + anon_sym_CARET, + [14856] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4400), 1, anon_sym_LF, - STATE(2123), 1, + STATE(2121), 1, sym_comment, - ACTIONS(3834), 61, + ACTIONS(4398), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255587,83 +255491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15045] = 4, + [14929] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2124), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 59, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [15118] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(4408), 1, anon_sym_LF, - STATE(2125), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2986), 61, + ACTIONS(4406), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255725,127 +255560,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15191] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2126), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 59, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [15264] = 7, + [15002] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(4414), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, - STATE(2127), 1, + STATE(2123), 1, sym_comment, - STATE(2439), 1, - sym_cell_path, - ACTIONS(967), 58, + ACTIONS(4412), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -255866,15 +255628,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15343] = 4, + anon_sym_CARET, + [15075] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2128), 1, - sym_comment, - ACTIONS(1254), 2, - ts_builtin_sym_end, + ACTIONS(4457), 1, anon_sym_LF, - ACTIONS(1252), 60, + STATE(2124), 1, + sym_comment, + ACTIONS(4455), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -255890,6 +255652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -255902,6 +255665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -255911,7 +255675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -255935,14 +255698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15416] = 4, + [15148] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5084), 1, + ACTIONS(4464), 1, anon_sym_LF, - STATE(2129), 1, + STATE(2125), 1, sym_comment, - ACTIONS(5082), 61, + ACTIONS(4462), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256004,14 +255767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15489] = 4, + [15221] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5088), 1, + ACTIONS(4476), 1, anon_sym_LF, - STATE(2130), 1, + STATE(2126), 1, sym_comment, - ACTIONS(5086), 61, + ACTIONS(4474), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256073,14 +255836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15562] = 4, + [15294] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5092), 1, + ACTIONS(5101), 1, anon_sym_LF, - STATE(2131), 1, + STATE(2127), 1, sym_comment, - ACTIONS(5090), 61, + ACTIONS(5099), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256142,14 +255905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15635] = 4, + [15367] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(5105), 1, anon_sym_LF, - STATE(2132), 1, + STATE(2128), 1, sym_comment, - ACTIONS(2996), 61, + ACTIONS(5103), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256211,16 +255974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15708] = 4, + [15440] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2133), 1, - sym_comment, - ACTIONS(1261), 3, - ts_builtin_sym_end, + ACTIONS(5109), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 59, + STATE(2129), 1, + sym_comment, + ACTIONS(5107), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256236,6 +255997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -256248,6 +256010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -256280,14 +256043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15781] = 4, + [15513] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5096), 1, - anon_sym_LF, - STATE(2134), 1, + ACTIONS(5111), 1, + aux_sym__immediate_decimal_token2, + STATE(2130), 1, sym_comment, - ACTIONS(5094), 61, + ACTIONS(3806), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3804), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256303,7 +256069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -256316,7 +256081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -256349,15 +256113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15854] = 4, + [15588] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2131), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(4656), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 60, + ACTIONS(4654), 60, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256373,6 +256137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -256394,7 +256159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -256418,15 +256182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [15927] = 4, + [15661] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2136), 1, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(2132), 1, sym_comment, - ACTIONS(1348), 2, + STATE(2228), 1, + sym_block, + ACTIONS(4518), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 60, + ACTIONS(4516), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256453,7 +256221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_if, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -256463,7 +256230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -256487,14 +256253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16000] = 4, + [15738] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5100), 1, + ACTIONS(4480), 1, anon_sym_LF, - STATE(2137), 1, + STATE(2133), 1, sym_comment, - ACTIONS(5098), 61, + ACTIONS(4478), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256556,86 +256322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16073] = 7, + [15811] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(4484), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, - STATE(2138), 1, - sym_comment, - STATE(2441), 1, - sym_cell_path, - ACTIONS(971), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [16152] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_LF, - STATE(2139), 1, + STATE(2134), 1, sym_comment, - ACTIONS(5102), 61, + ACTIONS(4482), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -256697,58 +256391,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16225] = 7, + [15884] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2140), 1, + STATE(2135), 1, sym_comment, - STATE(2142), 1, - aux_sym_cell_path_repeat1, - STATE(2422), 1, - sym_path, - ACTIONS(903), 58, + ACTIONS(4648), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4646), 60, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -256769,55 +256459,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16304] = 6, + anon_sym_CARET, + [15957] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_DOT2, - ACTIONS(5108), 1, - aux_sym_unquoted_token6, - STATE(2141), 1, + STATE(2136), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(4652), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 58, + ACTIONS(4650), 60, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -256829,8 +256519,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -256840,57 +256528,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16381] = 6, + anon_sym_CARET, + [16030] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2142), 1, - sym_comment, - STATE(2143), 1, - aux_sym_cell_path_repeat1, - STATE(2422), 1, - sym_path, - ACTIONS(977), 2, + ACTIONS(4088), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 58, + STATE(2137), 1, + sym_comment, + ACTIONS(4086), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -256911,57 +256597,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16458] = 6, + anon_sym_CARET, + [16103] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(4092), 1, anon_sym_LF, - ACTIONS(5110), 1, - anon_sym_DOT2, - STATE(2422), 1, - sym_path, - STATE(2143), 2, + STATE(2138), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 58, + ACTIONS(4090), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -256982,15 +256666,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16535] = 4, + anon_sym_CARET, + [16176] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2144), 1, - sym_comment, - ACTIONS(1356), 2, - ts_builtin_sym_end, + ACTIONS(5109), 1, anon_sym_LF, - ACTIONS(1354), 60, + STATE(2139), 1, + sym_comment, + ACTIONS(5107), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257006,6 +256690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -257018,6 +256703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -257027,7 +256713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -257051,15 +256736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16608] = 4, + [16249] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2145), 1, - sym_comment, - ACTIONS(1352), 2, - ts_builtin_sym_end, + ACTIONS(4152), 1, anon_sym_LF, - ACTIONS(1350), 60, + STATE(2140), 1, + sym_comment, + ACTIONS(4150), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257075,6 +256759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -257087,6 +256772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -257096,7 +256782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_STAR, anon_sym_where, anon_sym_PLUS, anon_sym_not, @@ -257120,14 +256805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16681] = 4, + [16322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5041), 1, + ACTIONS(4166), 1, anon_sym_LF, - STATE(2146), 1, + STATE(2141), 1, sym_comment, - ACTIONS(5039), 61, + ACTIONS(4164), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257189,58 +256874,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [16754] = 7, + [16395] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(4170), 1, anon_sym_LF, - ACTIONS(4857), 1, - anon_sym_DOT2, - STATE(2005), 1, - sym_path, - STATE(2147), 1, + STATE(2142), 1, sym_comment, - STATE(2470), 1, - sym_cell_path, - ACTIONS(997), 58, + ACTIONS(4168), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -257261,268 +256942,124 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16833] = 42, - ACTIONS(3), 1, + anon_sym_CARET, + [16468] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(4174), 1, + anon_sym_LF, + STATE(2143), 1, + sym_comment, + ACTIONS(4172), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5113), 1, - anon_sym_RBRACK, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - STATE(2148), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9842), 1, - sym_val_list, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11293), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [16981] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(3367), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5125), 1, - anon_sym_RBRACK, - STATE(2149), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9971), 1, - sym_val_list, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10936), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [17129] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [16541] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5127), 1, - anon_sym_DOT2, - STATE(2453), 1, - sym_path, - ACTIONS(1017), 2, - ts_builtin_sym_end, + ACTIONS(4178), 1, anon_sym_LF, - STATE(2150), 2, + STATE(2144), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 56, + ACTIONS(4176), 61, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -257543,15 +257080,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [17205] = 4, + anon_sym_CARET, + [16614] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2151), 1, - sym_comment, - ACTIONS(4842), 2, - ts_builtin_sym_end, + ACTIONS(4186), 1, anon_sym_LF, - ACTIONS(4840), 59, + STATE(2145), 1, + sym_comment, + ACTIONS(4184), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257567,6 +257104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -257579,6 +257117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -257611,15 +257150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17277] = 4, + [16687] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2152), 1, - sym_comment, - ACTIONS(4819), 2, - ts_builtin_sym_end, + ACTIONS(4199), 1, anon_sym_LF, - ACTIONS(4817), 59, + STATE(2146), 1, + sym_comment, + ACTIONS(4197), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257635,6 +257173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -257647,6 +257186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -257679,15 +257219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17349] = 4, + [16760] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(5100), 2, - ts_builtin_sym_end, + ACTIONS(4078), 1, anon_sym_LF, - ACTIONS(5098), 59, + STATE(2147), 1, + sym_comment, + ACTIONS(4076), 61, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257703,6 +257242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_error, anon_sym_DASH, @@ -257715,6 +257255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_return, @@ -257747,15 +257288,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17421] = 4, + [16833] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2148), 1, sym_comment, - ACTIONS(5104), 2, + STATE(2165), 1, + sym_path, + STATE(2557), 1, + sym_cell_path, + ACTIONS(927), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5102), 59, + ACTIONS(925), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [16911] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2149), 1, + sym_comment, + ACTIONS(4166), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4164), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257815,15 +257427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17493] = 4, + [16983] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5096), 2, + ACTIONS(4170), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5094), 59, + ACTIONS(4168), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257883,15 +257495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17565] = 4, + [17055] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2151), 1, sym_comment, - ACTIONS(4305), 2, + ACTIONS(4174), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4303), 59, + ACTIONS(4172), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -257951,15 +257563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17637] = 4, + [17127] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2157), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(4178), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4299), 59, + ACTIONS(4176), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258019,15 +257631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17709] = 4, + [17199] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2153), 1, sym_comment, - ACTIONS(4297), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4295), 59, + ACTIONS(4184), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258087,102 +257699,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [17781] = 42, + [17271] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2154), 1, + sym_comment, + ACTIONS(4199), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4197), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [17343] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, ACTIONS(5115), 1, - anon_sym_DASH, + anon_sym_RBRACK, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5130), 1, - anon_sym_RBRACK, - STATE(2159), 1, + STATE(2155), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10118), 1, + STATE(10009), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10892), 1, + STATE(11489), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -258193,15 +257873,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17929] = 4, + [17491] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4203), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4269), 59, + ACTIONS(4201), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258261,52 +257941,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18001] = 4, + [17563] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, - anon_sym_LF, - STATE(2161), 1, + STATE(2157), 1, sym_comment, - ACTIONS(1065), 60, + ACTIONS(4217), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4215), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -258318,8 +257999,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -258329,15 +258008,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [18073] = 4, + anon_sym_CARET, + [17635] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2158), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4233), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4258), 59, + ACTIONS(4231), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258397,15 +258077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18145] = 4, + [17707] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4261), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4244), 59, + ACTIONS(4259), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258465,15 +258145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18217] = 4, + [17779] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2160), 1, sym_comment, - ACTIONS(4242), 2, + ACTIONS(4291), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4240), 59, + ACTIONS(4289), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258533,121 +258213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18289] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5132), 1, - anon_sym_RBRACK, - STATE(2165), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10149), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10617), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [18437] = 4, + [17851] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4313), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4236), 59, + ACTIONS(4311), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258707,53 +258281,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18509] = 5, + [17923] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5076), 1, - aux_sym_unquoted_token6, - STATE(2167), 1, + STATE(2162), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(4317), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 58, + ACTIONS(4315), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -258765,8 +258339,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -258776,15 +258348,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [18583] = 4, + anon_sym_CARET, + [17995] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2163), 1, sym_comment, - ACTIONS(4935), 2, + ACTIONS(4324), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4933), 59, + ACTIONS(4322), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258844,15 +258417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18655] = 4, + [18067] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2164), 1, sym_comment, - ACTIONS(4935), 2, + ACTIONS(4328), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4933), 59, + ACTIONS(4326), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -258912,159 +258485,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [18727] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5134), 1, - anon_sym_RBRACK, - STATE(2170), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10061), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11363), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [18875] = 4, + [18139] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2171), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2165), 1, sym_comment, - ACTIONS(4192), 2, + STATE(2319), 1, + aux_sym_cell_path_repeat1, + STATE(2454), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(903), 56, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -259085,16 +258556,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [18947] = 4, + [18217] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2166), 1, sym_comment, - ACTIONS(4226), 2, + ACTIONS(4370), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4224), 59, + ACTIONS(4368), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259154,15 +258624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19019] = 4, + [18289] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2167), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(4777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4220), 59, + ACTIONS(4775), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259222,15 +258692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19091] = 4, + [18361] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(4374), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4200), 59, + ACTIONS(4372), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259290,15 +258760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19163] = 4, + [18433] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2169), 1, sym_comment, - ACTIONS(4196), 2, + ACTIONS(4378), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4194), 59, + ACTIONS(4376), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259358,15 +258828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19235] = 4, + [18505] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2170), 1, sym_comment, - ACTIONS(4786), 2, + ACTIONS(4382), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4784), 59, + ACTIONS(4380), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259426,15 +258896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19307] = 4, + [18577] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2171), 1, sym_comment, - ACTIONS(4931), 2, + ACTIONS(4388), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4929), 59, + ACTIONS(4386), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259494,15 +258964,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19379] = 4, + [18649] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5127), 1, + anon_sym_RBRACK, + STATE(2172), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10059), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10966), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [18797] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2173), 1, sym_comment, - ACTIONS(5041), 2, + ACTIONS(4404), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5039), 59, + ACTIONS(4402), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259562,15 +259138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19451] = 4, + [18869] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2174), 1, sym_comment, - ACTIONS(5041), 2, + ACTIONS(4418), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5039), 59, + ACTIONS(4416), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259630,44 +259206,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19523] = 4, - ACTIONS(105), 1, + [18941] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2175), 1, sym_comment, - ACTIONS(4178), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4176), 59, + STATE(2634), 1, + sym__var, + STATE(3738), 1, + sym__immediate_decimal, + STATE(3736), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2175), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2173), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -259675,122 +259276,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [19031] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2176), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3763), 1, + sym__immediate_decimal, + STATE(3761), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2077), 8, + anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2075), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__record_key_token2, + [19121] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2177), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3766), 1, + sym__immediate_decimal, + STATE(3765), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2081), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(2079), 43, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [19211] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [19595] = 40, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(4494), 1, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(4502), 1, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(4508), 1, - anon_sym_not, - ACTIONS(4510), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(4518), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(4520), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(4524), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4526), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5136), 1, + ACTIONS(5117), 1, anon_sym_DASH, - ACTIONS(5138), 1, + ACTIONS(5119), 1, anon_sym_DOT, - ACTIONS(5140), 1, + ACTIONS(5121), 1, anon_sym_PLUS, - ACTIONS(5142), 1, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - STATE(2181), 1, + ACTIONS(5129), 1, + anon_sym_RBRACK, + STATE(2178), 1, sym_comment, - STATE(4672), 1, - sym__val_number_decimal, - STATE(4741), 1, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5155), 1, + STATE(5971), 1, sym_val_variable, - STATE(5206), 1, - sym_expr_parenthesized, - STATE(5469), 1, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(5473), 1, + STATE(6094), 1, sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10071), 1, + sym_val_list, + STATE(10202), 1, sym__expr_unary_minus, - STATE(6668), 1, - sym__expr_binary_expression, - STATE(8486), 1, - sym__expression, - STATE(8487), 1, - sym_unquoted, - STATE(8527), 1, - sym_val_range, - ACTIONS(925), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4512), 2, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11347), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(4522), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(923), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(3425), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4516), 3, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5144), 3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5745), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5589), 11, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -259798,48 +259540,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [19739] = 4, - ACTIONS(105), 1, + [19359] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2179), 1, sym_comment, - ACTIONS(4931), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4929), 59, + STATE(2634), 1, + sym__var, + STATE(3768), 1, + sym__immediate_decimal, + STATE(3767), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2073), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2071), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -259847,38 +259613,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [19811] = 4, + aux_sym__record_key_token2, + [19449] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2180), 1, sym_comment, - ACTIONS(4927), 2, + ACTIONS(4422), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4925), 59, + ACTIONS(4420), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -259938,15 +259688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19883] = 4, + [19521] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2181), 1, sym_comment, - ACTIONS(4724), 2, + ACTIONS(4426), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4722), 59, + ACTIONS(4424), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -260006,15 +259756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [19955] = 4, + [19593] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(2182), 1, sym_comment, - ACTIONS(4384), 2, + ACTIONS(4472), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4382), 59, + ACTIONS(4470), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -260074,31 +259824,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [20027] = 13, + [19665] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(4692), 1, anon_sym_DOT2, - ACTIONS(4620), 1, + ACTIONS(4696), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, + ACTIONS(4698), 1, anon_sym_DASH2, - ACTIONS(4624), 1, + ACTIONS(4700), 1, anon_sym_PLUS2, - STATE(2186), 1, + STATE(2183), 1, sym_comment, - STATE(2585), 1, + STATE(2634), 1, sym__var, - STATE(3810), 1, + STATE(3790), 1, sym__immediate_decimal, - STATE(3809), 2, + STATE(3789), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2177), 8, + ACTIONS(2108), 8, anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -260107,7 +259857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2175), 43, + ACTIONS(2106), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -260151,31 +259901,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [20117] = 13, + [19755] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5131), 1, + anon_sym_RBRACK, + STATE(2184), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10077), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11251), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [19903] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(4692), 1, anon_sym_DOT2, - ACTIONS(4620), 1, + ACTIONS(4696), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, + ACTIONS(4698), 1, anon_sym_DASH2, - ACTIONS(4624), 1, + ACTIONS(4700), 1, anon_sym_PLUS2, - STATE(2187), 1, + STATE(2185), 1, sym_comment, - STATE(2585), 1, + STATE(2634), 1, sym__var, - STATE(3812), 1, + STATE(3792), 1, sym__immediate_decimal, - STATE(3811), 2, + STATE(3791), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2173), 8, + ACTIONS(2112), 8, anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -260184,7 +260040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2171), 43, + ACTIONS(2110), 43, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -260228,44 +260084,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [20207] = 4, - ACTIONS(105), 1, + [19993] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2188), 1, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2186), 1, sym_comment, - ACTIONS(4835), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4833), 59, + STATE(2634), 1, + sym__var, + STATE(3794), 1, + sym__immediate_decimal, + STATE(3793), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2116), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2114), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260273,67 +260154,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [20083] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5133), 1, + anon_sym_RBRACK, + STATE(2187), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10080), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10683), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [20231] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2188), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3796), 1, + sym__immediate_decimal, + STATE(3795), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2120), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20279] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2189), 1, - sym_comment, - ACTIONS(4174), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4172), 59, + ACTIONS(2118), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260341,67 +260337,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [20321] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2189), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3798), 1, + sym__immediate_decimal, + STATE(3797), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2124), 8, + anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20351] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2190), 1, - sym_comment, - ACTIONS(5084), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5082), 59, + ACTIONS(2122), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260409,125 +260414,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20423] = 42, + aux_sym__record_key_token2, + [20411] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5146), 1, + ACTIONS(5135), 1, anon_sym_RBRACK, - STATE(2191), 1, + STATE(2190), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10108), 1, + STATE(10081), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11017), 1, + STATE(10958), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -260538,182 +260527,69 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20571] = 5, - ACTIONS(105), 1, + [20559] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_QMARK2, - STATE(2192), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3959), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [20645] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_QMARK2, - STATE(2193), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 58, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4688), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2191), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3800), 1, + sym__immediate_decimal, + STATE(3799), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2128), 8, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [20719] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2194), 1, - sym_comment, - ACTIONS(5045), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5043), 59, + ACTIONS(2126), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260721,67 +260597,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [20649] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2192), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3802), 1, + sym__immediate_decimal, + STATE(3801), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2132), 8, + anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20791] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2195), 1, - sym_comment, - ACTIONS(5045), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5043), 59, + ACTIONS(2130), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260789,135 +260674,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + aux_sym__record_key_token2, + [20739] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20863] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2196), 1, - sym_comment, - ACTIONS(4170), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4168), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(3373), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5137), 1, + anon_sym_RBRACK, + STATE(2193), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10082), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10883), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [20887] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(4696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4698), 1, + anon_sym_DASH2, + ACTIONS(4700), 1, + anon_sym_PLUS2, + STATE(2194), 1, + sym_comment, + STATE(2634), 1, + sym__var, + STATE(3863), 1, + sym__immediate_decimal, + STATE(3803), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2136), 8, + anon_sym_RBRACE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [20935] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2197), 1, - sym_comment, - ACTIONS(5060), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5058), 59, + ACTIONS(2134), 43, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, + anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, + anon_sym_in, anon_sym_loop, + anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, + anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -260925,193 +260857,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [21007] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(2198), 1, - sym_comment, - ACTIONS(861), 60, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [21079] = 42, + aux_sym__record_key_token2, + [20977] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5150), 1, + ACTIONS(5139), 1, anon_sym_RBRACK, - STATE(2199), 1, + STATE(2195), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10001), 1, + STATE(10084), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10565), 1, + STATE(10814), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -261122,15 +260970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21227] = 4, + [21125] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2196), 1, sym_comment, - ACTIONS(4831), 2, + ACTIONS(4488), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4829), 59, + ACTIONS(4486), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261190,170 +261038,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21299] = 4, + [21197] = 40, ACTIONS(105), 1, anon_sym_POUND, - STATE(2201), 1, - sym_comment, - ACTIONS(4313), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4311), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(987), 1, + sym__entry_separator, + ACTIONS(3505), 1, + aux_sym_unquoted_token1, + ACTIONS(5141), 1, anon_sym_LBRACK, + ACTIONS(5143), 1, anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_DOLLAR, - anon_sym_error, + ACTIONS(5147), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(5149), 1, anon_sym_LBRACE, + ACTIONS(5151), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5153), 1, anon_sym_PLUS, + ACTIONS(5155), 1, anon_sym_not, + ACTIONS(5157), 1, anon_sym_null, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5169), 1, + sym_val_date, + ACTIONS(5171), 1, + anon_sym_DQUOTE, + ACTIONS(5175), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2197), 1, + sym_comment, + STATE(2487), 1, + sym__val_number_decimal, + STATE(2558), 1, + sym__var, + STATE(2698), 1, + sym__val_number, + STATE(2699), 1, + sym_val_number, + STATE(2887), 1, + sym_val_variable, + STATE(2939), 1, + sym_expr_parenthesized, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3011), 1, + sym__str_double_quotes, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(6538), 1, + sym__expression, + STATE(6542), 1, + sym_unquoted, + STATE(6545), 1, + sym_val_range, + STATE(6799), 1, + sym__expr_binary_expression, + ACTIONS(5159), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(5173), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5163), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5165), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [21371] = 42, + STATE(2983), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(985), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + aux_sym__unquoted_in_list_token1, + STATE(2972), 11, + sym_val_nothing, + sym_val_bool, + 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, + [21341] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5152), 1, + ACTIONS(5179), 1, anon_sym_RBRACK, - STATE(2202), 1, + STATE(2198), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10093), 1, + STATE(10085), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11087), 1, + STATE(10624), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -261364,15 +261248,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21519] = 4, + [21489] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2199), 1, sym_comment, - ACTIONS(4923), 2, + ACTIONS(4301), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4921), 59, + ACTIONS(4299), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261432,83 +261316,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21591] = 4, - ACTIONS(105), 1, + [21561] = 42, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, - sym_comment, - ACTIONS(4827), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4825), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5181), 1, + anon_sym_RBRACK, + STATE(2200), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10088), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10884), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [21663] = 4, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [21709] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2201), 1, sym_comment, - ACTIONS(4835), 2, + ACTIONS(4062), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4833), 59, + ACTIONS(4060), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261568,15 +261490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21735] = 4, + [21781] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2202), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4070), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4320), 59, + ACTIONS(4068), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261636,15 +261558,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21807] = 4, + [21853] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5183), 1, + anon_sym_RBRACK, + STATE(2203), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10090), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11262), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22001] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2204), 1, sym_comment, - ACTIONS(4823), 2, + ACTIONS(4074), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4821), 59, + ACTIONS(4072), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261704,15 +261732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21879] = 4, + [22073] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2205), 1, sym_comment, - ACTIONS(4823), 2, + ACTIONS(4078), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4821), 59, + ACTIONS(4076), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -261772,179 +261800,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [21951] = 13, + [22145] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2209), 1, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5185), 1, + anon_sym_RBRACK, + STATE(2206), 1, sym_comment, - STATE(2585), 1, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, sym__var, - STATE(3814), 1, - sym__immediate_decimal, - STATE(3813), 2, - sym_expr_parenthesized, + STATE(5971), 1, sym_val_variable, - ACTIONS(2149), 8, - anon_sym_RBRACE, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10091), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10487), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2147), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [22041] = 42, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22293] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5154), 1, + ACTIONS(5187), 1, anon_sym_RBRACK, - STATE(2210), 1, + STATE(2207), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10036), 1, + STATE(10093), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11173), 1, + STATE(10544), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -261955,102 +262012,102 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22189] = 42, + [22441] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5156), 1, + ACTIONS(5189), 1, anon_sym_RBRACK, - STATE(2211), 1, + STATE(2208), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10159), 1, + STATE(10097), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10462), 1, + STATE(11223), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -262061,355 +262118,545 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22337] = 4, - ACTIONS(105), 1, + [22589] = 42, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2212), 1, - sym_comment, - ACTIONS(4802), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4800), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5191), 1, + anon_sym_RBRACK, + STATE(2209), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10100), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10389), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22737] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22409] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2213), 1, - sym_comment, - ACTIONS(4919), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4917), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(3373), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3383), 1, sym_val_date, + ACTIONS(3385), 1, anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(2210), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10104), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10523), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [22885] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22481] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2214), 1, - sym_comment, - ACTIONS(4160), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4158), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5195), 1, + anon_sym_RBRACK, + STATE(2211), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10105), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10722), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23033] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22553] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2215), 1, - sym_comment, - ACTIONS(4148), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4146), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5197), 1, + anon_sym_RBRACK, + STATE(2212), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10106), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11408), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23181] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22625] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2216), 1, - sym_comment, - ACTIONS(4046), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4044), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5199), 1, + anon_sym_RBRACK, + STATE(2213), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10110), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10819), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22697] = 4, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23329] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2217), 1, + STATE(2214), 1, sym_comment, - ACTIONS(4144), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4142), 59, + ACTIONS(4931), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -262469,15 +262716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22769] = 4, + [23401] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2218), 1, + STATE(2215), 1, sym_comment, - ACTIONS(4488), 2, + ACTIONS(4781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4486), 59, + ACTIONS(4779), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -262537,238 +262784,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [22841] = 4, - ACTIONS(105), 1, + [23473] = 42, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, - sym_comment, - ACTIONS(4140), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4138), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5201), 1, + anon_sym_RBRACK, + STATE(2216), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10112), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10930), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23621] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [22913] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2150), 1, - aux_sym_cell_path_repeat1, - STATE(2220), 1, - sym_comment, - STATE(2453), 1, - sym_path, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 56, - anon_sym_SEMI, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5203), 1, + anon_sym_RBRACK, + STATE(2217), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10113), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11099), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23769] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, sym_val_date, + ACTIONS(3385), 1, anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5205), 1, + anon_sym_RBRACK, + STATE(2218), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10116), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11321), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [22989] = 41, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [23917] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5158), 1, + ACTIONS(5207), 1, anon_sym_RBRACK, - STATE(2221), 1, + STATE(2219), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10119), 1, + sym_val_list, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11039), 1, + STATE(11494), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 11, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -262776,19 +263205,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [23135] = 4, + [24065] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(2220), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(5043), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4800), 59, + ACTIONS(5041), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -262848,102 +263276,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23207] = 42, + [24137] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5160), 1, + ACTIONS(5209), 1, anon_sym_RBRACK, - STATE(2223), 1, + STATE(2221), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10136), 1, + STATE(10120), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10785), 1, + STATE(10569), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -262954,86 +263382,121 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23355] = 7, - ACTIONS(105), 1, + [24285] = 42, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2224), 1, - sym_comment, - STATE(2351), 1, - sym_path, - STATE(2556), 1, - sym_cell_path, - ACTIONS(973), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(971), 56, - anon_sym_SEMI, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5121), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5211), 1, + anon_sym_RBRACK, + STATE(2222), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10123), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11065), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [23433] = 4, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [24433] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2223), 1, sym_comment, - ACTIONS(1035), 2, + ACTIONS(4740), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 59, + ACTIONS(4738), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263093,102 +263556,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23505] = 42, + [24505] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5213), 1, anon_sym_RBRACK, - STATE(2226), 1, + STATE(2224), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9974), 1, - sym_val_list, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10125), 1, + sym_val_list, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10316), 1, + STATE(10369), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -263199,15 +263662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23653] = 4, + [24653] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2227), 1, + STATE(2225), 1, sym_comment, - ACTIONS(4136), 2, + ACTIONS(4933), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4134), 59, + ACTIONS(4931), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263267,15 +263730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23725] = 4, + [24725] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4128), 2, + ACTIONS(4859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4126), 59, + ACTIONS(4857), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263335,15 +263798,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23797] = 4, + [24797] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5215), 1, + anon_sym_RBRACK, + STATE(2227), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10127), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10514), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [24945] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(2228), 1, sym_comment, - ACTIONS(4806), 2, + ACTIONS(4937), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4804), 59, + ACTIONS(4935), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263403,15 +263972,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23869] = 4, + [25017] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5217), 1, + anon_sym_RBRACK, + STATE(2229), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10128), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10707), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [25165] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2230), 1, sym_comment, - ACTIONS(4806), 2, + ACTIONS(4937), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4804), 59, + ACTIONS(4935), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263471,99 +264146,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [23941] = 40, - ACTIONS(105), 1, + [25237] = 42, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(925), 1, - sym__entry_separator, - ACTIONS(3665), 1, - aux_sym_unquoted_token1, - ACTIONS(5166), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(5168), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(5170), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, - anon_sym_DASH, - ACTIONS(5174), 1, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(5178), 1, - anon_sym_PLUS, - ACTIONS(5180), 1, - anon_sym_not, - ACTIONS(5182), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5194), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(5196), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5200), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5202), 1, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5219), 1, + anon_sym_RBRACK, STATE(2231), 1, sym_comment, - STATE(2498), 1, - sym__val_number_decimal, - STATE(2601), 1, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, - sym__val_number, - STATE(2727), 1, + STATE(5971), 1, sym_val_variable, - STATE(2746), 1, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, sym_expr_parenthesized, - STATE(3051), 1, + STATE(10130), 1, + sym_val_list, + STATE(10202), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, - sym__str_double_quotes, - STATE(6531), 1, - sym_val_range, - STATE(6591), 1, - sym__expression, - STATE(6592), 1, - sym_unquoted, - STATE(6651), 1, - sym__expr_binary_expression, - ACTIONS(5184), 2, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10831), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(5198), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5188), 3, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5190), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(5192), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2975), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(923), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - aux_sym__unquoted_in_list_token1, - STATE(3044), 11, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -263571,94 +264249,27 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, - sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [24085] = 4, + [25385] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2232), 1, - sym_comment, - ACTIONS(1100), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 59, + ACTIONS(5223), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5226), 1, + anon_sym_LF, + ACTIONS(5229), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [24157] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2233), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4476), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4474), 59, + ACTIONS(5221), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -263711,15 +264322,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24229] = 4, + [25461] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5231), 1, + anon_sym_RBRACK, + STATE(2233), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10131), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10987), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [25609] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2234), 1, sym_comment, - ACTIONS(4124), 2, + ACTIONS(4949), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4122), 59, + ACTIONS(4947), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -263779,24 +264496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [24301] = 7, + [25681] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5204), 1, - anon_sym_DOT2, + ACTIONS(879), 1, + anon_sym_LF, STATE(2235), 1, sym_comment, - STATE(2330), 1, - sym_path, - STATE(2475), 1, - sym_cell_path, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(979), 56, + ACTIONS(877), 60, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -263804,6 +264515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -263841,6 +264553,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -263850,336 +264564,158 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [24379] = 4, - ACTIONS(105), 1, + [25753] = 42, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2236), 1, - sym_comment, - ACTIONS(4915), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4913), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [24451] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4849), 1, - anon_sym_SEMI, - ACTIONS(4852), 1, - anon_sym_LF, - ACTIONS(5207), 1, - ts_builtin_sym_end, - STATE(2237), 1, - sym_comment, - ACTIONS(4847), 58, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, anon_sym_LBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(3373), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3383), 1, sym_val_date, + ACTIONS(3385), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [24527] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2238), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3817), 1, - sym__immediate_decimal, - STATE(3803), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2128), 8, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2126), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(5117), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(5119), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5121), 1, anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [24617] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2239), 1, + ACTIONS(5233), 1, + anon_sym_RBRACK, + STATE(2236), 1, sym_comment, - ACTIONS(4875), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4873), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10132), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(11135), 1, + sym_list_body, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [24689] = 4, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [25901] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2240), 1, - sym_comment, - ACTIONS(4993), 2, - ts_builtin_sym_end, + ACTIONS(1179), 1, anon_sym_LF, - ACTIONS(4991), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + STATE(2237), 1, + sym_comment, + ACTIONS(1177), 60, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -264191,6 +264727,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -264200,103 +264738,102 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [24761] = 42, + [25973] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5209), 1, + ACTIONS(5235), 1, anon_sym_RBRACK, - STATE(2241), 1, + STATE(2238), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10090), 1, + STATE(10103), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11170), 1, + STATE(11252), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -264307,102 +264844,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24909] = 42, + [26121] = 41, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5211), 1, + ACTIONS(5197), 1, anon_sym_RBRACK, - STATE(2242), 1, + STATE(2239), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10031), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10907), 1, + STATE(11408), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -264410,105 +264945,106 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [25057] = 42, + [26267] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5213), 1, + ACTIONS(5237), 1, anon_sym_RBRACK, - STATE(2243), 1, + STATE(2240), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9958), 1, - sym_val_list, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10134), 1, + sym_val_list, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10919), 1, + STATE(11370), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -264519,102 +265055,102 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25205] = 42, + [26415] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5215), 1, + ACTIONS(5239), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2241), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10153), 1, + STATE(10135), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(10563), 1, + STATE(10304), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -264625,19 +265161,656 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25353] = 4, - ACTIONS(105), 1, + [26563] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5241), 1, + anon_sym_RBRACK, + STATE(2242), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10115), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10335), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [26711] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5243), 1, + anon_sym_RBRACK, + STATE(2243), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10136), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10362), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [26859] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5245), 1, + anon_sym_RBRACK, + STATE(2244), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10137), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10384), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [27007] = 42, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5247), 1, + anon_sym_RBRACK, STATE(2245), 1, sym_comment, - ACTIONS(1115), 2, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10138), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10400), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [27155] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5249), 1, + anon_sym_RBRACK, + STATE(2246), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10139), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10416), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [27303] = 42, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5251), 1, + anon_sym_RBRACK, + STATE(2247), 1, + sym_comment, + STATE(2446), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10152), 1, + sym_val_list, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, + sym__list_item_expression, + STATE(10681), 1, + sym_list_body, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 10, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_record, + sym_val_table, + sym_val_closure, + [27451] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5073), 1, + aux_sym_unquoted_token6, + STATE(2248), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 59, + ACTIONS(877), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -264645,10 +265818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -264684,6 +265855,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -264693,15 +265866,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [25425] = 4, + [27525] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2246), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4953), 2, + ACTIONS(4034), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4951), 59, + ACTIONS(4032), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -264761,119 +265934,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25497] = 40, + [27597] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(925), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2165), 1, + sym_path, + STATE(2250), 1, + sym_comment, + STATE(2618), 1, + sym_cell_path, + ACTIONS(911), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(2241), 1, - aux_sym_unquoted_token1, - ACTIONS(2956), 1, + ACTIONS(909), 56, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2958), 1, anon_sym_LPAREN, - ACTIONS(2960), 1, - anon_sym_LBRACE, - ACTIONS(2966), 1, - sym_val_date, - ACTIONS(2968), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2974), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5217), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(5219), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5221), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - STATE(2247), 1, - sym_comment, - STATE(4107), 1, - sym_unquoted, - STATE(4117), 1, - sym__expression, - STATE(4147), 1, - sym_val_range, - STATE(4536), 1, - sym__val_number, - STATE(4653), 1, - sym__val_number_decimal, - STATE(4799), 1, - sym__var, - STATE(5033), 1, - sym_val_number, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5143), 1, - sym_val_variable, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - ACTIONS(187), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(2970), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(193), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5225), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(923), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [25641] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [27675] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2248), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4472), 2, + ACTIONS(4736), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4470), 59, + ACTIONS(4734), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -264933,24 +266073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25713] = 6, + [27747] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5229), 1, - anon_sym_SEMI, - ACTIONS(5232), 1, - anon_sym_LF, - ACTIONS(5235), 1, - anon_sym_RPAREN, - STATE(2249), 1, + STATE(2252), 1, sym_comment, - ACTIONS(5227), 58, + ACTIONS(4749), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4747), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -265003,121 +266141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [25789] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5237), 1, - anon_sym_RBRACK, - STATE(2250), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10164), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10422), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [25937] = 4, + [27819] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4967), 2, + ACTIONS(4749), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4965), 59, + ACTIONS(4747), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -265177,121 +266209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26009] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5239), 1, - anon_sym_RBRACK, - STATE(2252), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10166), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10345), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [26157] = 4, + [27891] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2254), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4753), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4466), 59, + ACTIONS(4751), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -265351,15 +266277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26229] = 4, + [27963] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2255), 1, sym_comment, - ACTIONS(4460), 2, + ACTIONS(4753), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4458), 59, + ACTIONS(4751), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -265419,15 +266345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26301] = 4, + [28035] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2256), 1, sym_comment, - ACTIONS(4120), 2, + ACTIONS(4749), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4118), 59, + ACTIONS(4747), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -265487,15 +266413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26373] = 4, + [28107] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2257), 1, sym_comment, - ACTIONS(4116), 2, + ACTIONS(4749), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4114), 59, + ACTIONS(4747), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -265555,102 +266481,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26445] = 42, - ACTIONS(3), 1, + [28179] = 40, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3547), 1, + aux_sym_unquoted_token1, + ACTIONS(5253), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(5255), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + ACTIONS(5259), 1, anon_sym_DASH, - ACTIONS(5117), 1, + ACTIONS(5261), 1, + anon_sym_LBRACE, + ACTIONS(5263), 1, anon_sym_DOT, - ACTIONS(5119), 1, + ACTIONS(5265), 1, anon_sym_PLUS, - ACTIONS(5121), 1, + ACTIONS(5267), 1, + anon_sym_not, + ACTIONS(5269), 1, + anon_sym_null, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5241), 1, - anon_sym_RBRACK, - STATE(2257), 1, + ACTIONS(5281), 1, + sym_val_date, + ACTIONS(5283), 1, + anon_sym_DQUOTE, + ACTIONS(5287), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5289), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2108), 1, + sym__val_number_decimal, + STATE(2258), 1, sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(2268), 1, sym__var, - STATE(5873), 1, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2432), 1, sym_val_variable, - STATE(6064), 1, + STATE(2474), 1, + sym_expr_parenthesized, + STATE(2541), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(2597), 1, sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10077), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2646), 1, sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10357), 1, - sym_list_body, - ACTIONS(3357), 2, + STATE(5883), 1, + sym__expression, + STATE(5887), 1, + sym_unquoted, + STATE(5917), 1, + sym_val_range, + STATE(6753), 1, + sym__expr_binary_expression, + ACTIONS(987), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5271), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(5285), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + ACTIONS(985), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(5275), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5277), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, + ACTIONS(5279), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2590), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(2569), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -265658,133 +266581,96 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [26593] = 42, - ACTIONS(3), 1, + [28323] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(5293), 1, + anon_sym_SEMI, + ACTIONS(5296), 1, + anon_sym_LF, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(2259), 1, + sym_comment, + ACTIONS(5291), 58, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5243), 1, - anon_sym_RBRACK, - STATE(2258), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10162), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10297), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [26741] = 6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [28399] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_SEMI, - ACTIONS(5250), 1, - anon_sym_LF, - ACTIONS(5253), 1, - anon_sym_RPAREN, - STATE(2259), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5245), 58, + ACTIONS(4953), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4951), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -265837,352 +266723,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [26817] = 42, - ACTIONS(3), 1, + [28471] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(5301), 1, + anon_sym_DOT2, + ACTIONS(5303), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5305), 1, + aux_sym_unquoted_token2, + STATE(2261), 1, + sym_comment, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 56, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5255), 1, - anon_sym_RBRACK, - STATE(2260), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10157), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10318), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [26965] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2261), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3846), 1, - sym__immediate_decimal, - STATE(3847), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2089), 8, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2087), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27055] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2262), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3849), 1, - sym__immediate_decimal, - STATE(3855), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2132), 8, - anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2130), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27145] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2263), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3856), 1, - sym__immediate_decimal, - STATE(3857), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2124), 8, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2122), 43, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27235] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [28549] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2264), 1, + STATE(2262), 1, sym_comment, - ACTIONS(4107), 2, + ACTIONS(4769), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4105), 59, + ACTIONS(4767), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266242,17 +266862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27307] = 5, + [28621] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5108), 1, - aux_sym_unquoted_token6, - STATE(2265), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2165), 1, + sym_path, + STATE(2263), 1, sym_comment, - ACTIONS(863), 2, + STATE(2607), 1, + sym_cell_path, + ACTIONS(919), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 58, + ACTIONS(917), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -266300,8 +266924,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -266311,15 +266933,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [27381] = 4, + [28699] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2266), 1, + STATE(2264), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(4757), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2996), 59, + ACTIONS(4755), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266379,15 +267001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27453] = 4, + [28771] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2267), 1, + STATE(2265), 1, sym_comment, - ACTIONS(4939), 2, + ACTIONS(4761), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4937), 59, + ACTIONS(4759), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266447,69 +267069,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [27525] = 13, - ACTIONS(3), 1, + [28843] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2268), 1, + STATE(2266), 1, sym_comment, - STATE(2585), 1, - sym__var, - STATE(3860), 1, - sym__immediate_decimal, - STATE(3862), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2093), 8, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2091), 43, + ACTIONS(4761), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4759), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -266517,76 +267114,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27615] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2269), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3863), 1, - sym__immediate_decimal, - STATE(3797), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2097), 8, - anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2095), 43, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [28915] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2267), 1, + sym_comment, + ACTIONS(4765), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4763), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -266594,215 +267182,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [27705] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + anon_sym_CARET, + [28987] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + anon_sym_DOT2, + STATE(2268), 1, + sym_comment, + STATE(2348), 1, + sym_path, + STATE(2532), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(966), 56, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5257), 1, - anon_sym_RBRACK, - STATE(2270), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10123), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10336), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [27853] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + [29065] = 40, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(987), 1, + anon_sym_LF, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(2237), 1, + aux_sym_unquoted_token1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(2974), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(2976), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(2982), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(2984), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, + ACTIONS(2988), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2990), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(5117), 1, + ACTIONS(5312), 1, anon_sym_DOT, - ACTIONS(5119), 1, + ACTIONS(5314), 1, anon_sym_PLUS, - ACTIONS(5121), 1, + ACTIONS(5316), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5259), 1, - anon_sym_RBRACK, - STATE(2271), 1, + STATE(2269), 1, sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, + STATE(4150), 1, + sym_val_range, + STATE(4157), 1, + sym__expression, + STATE(4159), 1, + sym_unquoted, + STATE(4464), 1, sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, + STATE(4594), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(4833), 1, + sym__var, + STATE(4976), 1, sym_val_number, - STATE(9975), 1, + STATE(5194), 1, + sym_val_variable, + STATE(5292), 1, sym_expr_parenthesized, - STATE(10139), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10363), 1, - sym_list_body, - ACTIONS(3357), 2, + STATE(6657), 1, + sym__expr_binary_expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(2986), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + ACTIONS(193), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5318), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(985), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -266810,124 +267376,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_interpolated, + sym_val_list, sym_val_record, sym_val_table, sym_val_closure, - [28001] = 42, - ACTIONS(3), 1, + [29209] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(5065), 1, + aux_sym_unquoted_token6, + STATE(2270), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 58, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5261), 1, - anon_sym_RBRACK, - STATE(2272), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10122), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10385), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [28149] = 4, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [29283] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2273), 1, + STATE(2271), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(4092), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1243), 59, + ACTIONS(4090), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -266987,15 +267517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28221] = 4, + [29355] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2274), 1, + STATE(2272), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(4152), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4800), 59, + ACTIONS(4150), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267055,15 +267585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28293] = 4, + [29427] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2275), 1, + STATE(2273), 1, sym_comment, - ACTIONS(5080), 2, + ACTIONS(5051), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5078), 59, + ACTIONS(5049), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267123,22 +267653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28365] = 4, + [29499] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2276), 1, - sym_comment, - ACTIONS(4802), 2, - ts_builtin_sym_end, + ACTIONS(4841), 1, + anon_sym_SEMI, + ACTIONS(4844), 1, anon_sym_LF, - ACTIONS(4800), 59, + ACTIONS(5320), 1, + ts_builtin_sym_end, + STATE(2274), 1, + sym_comment, + ACTIONS(4839), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -267191,15 +267723,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28437] = 4, + [29575] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2277), 1, + ACTIONS(5322), 1, + anon_sym_QMARK2, + STATE(2275), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [29649] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2276), 1, sym_comment, - ACTIONS(4430), 2, + ACTIONS(4785), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4428), 59, + ACTIONS(4783), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267259,121 +267860,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28509] = 42, - ACTIONS(3), 1, + [29721] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2277), 1, + sym_comment, + ACTIONS(4789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4787), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(5263), 1, - anon_sym_RBRACK, - STATE(2278), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10083), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10401), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [28657] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [29793] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2279), 1, + STATE(2278), 1, sym_comment, - ACTIONS(4424), 2, + ACTIONS(5069), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4422), 59, + ACTIONS(5067), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267433,230 +267996,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [28729] = 42, - ACTIONS(3), 1, + [29865] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2279), 1, + sym_comment, + ACTIONS(4793), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4791), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5265), 1, - anon_sym_RBRACK, - STATE(2280), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10076), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10417), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [28877] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + anon_sym_CARET, + [29937] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2280), 1, + sym_comment, + ACTIONS(4793), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4791), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5267), 1, - anon_sym_RBRACK, - STATE(2281), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10016), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10683), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [29025] = 6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [30009] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5326), 1, anon_sym_SEMI, - ACTIONS(5274), 1, + ACTIONS(5329), 1, anon_sym_LF, - ACTIONS(5277), 1, + ACTIONS(5332), 1, anon_sym_RPAREN, - STATE(2282), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5269), 58, + ACTIONS(5324), 58, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267715,15 +268202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29101] = 4, + [30085] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2283), 1, + STATE(2282), 1, sym_comment, - ACTIONS(4740), 2, + ACTIONS(4912), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4738), 59, + ACTIONS(4910), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267783,121 +268270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29173] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5279), 1, - anon_sym_RBRACK, - STATE(2284), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10144), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10705), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [29321] = 4, + [30157] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2285), 1, + STATE(2283), 1, sym_comment, - ACTIONS(4750), 2, + ACTIONS(4797), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4748), 59, + ACTIONS(4795), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -267957,15 +268338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29393] = 4, + [30229] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2286), 1, + STATE(2284), 1, sym_comment, - ACTIONS(4420), 2, + ACTIONS(4797), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4418), 59, + ACTIONS(4795), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268025,121 +268406,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29465] = 42, - ACTIONS(3), 1, + [30301] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2285), 1, + sym_comment, + ACTIONS(4801), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4799), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5281), 1, - anon_sym_RBRACK, - STATE(2287), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10073), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11226), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [29613] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [30373] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2288), 1, + STATE(2286), 1, sym_comment, - ACTIONS(4883), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4881), 59, + ACTIONS(929), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268199,15 +268542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29685] = 4, + [30445] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2289), 1, + STATE(2287), 1, sym_comment, - ACTIONS(4309), 2, + ACTIONS(4805), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4307), 59, + ACTIONS(4803), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268267,69 +268610,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29757] = 13, - ACTIONS(3), 1, + [30517] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2290), 1, + STATE(2288), 1, sym_comment, - STATE(2585), 1, - sym__var, - STATE(3794), 1, - sym__immediate_decimal, - STATE(3792), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2108), 8, - anon_sym_RBRACE, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2106), 43, + ACTIONS(4809), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4807), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -268337,22 +268655,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [29847] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [30589] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2291), 1, + STATE(2289), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4809), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4414), 59, + ACTIONS(4807), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268412,15 +268746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29919] = 4, + [30661] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2292), 1, + STATE(2290), 1, sym_comment, - ACTIONS(4412), 2, + ACTIONS(4941), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4410), 59, + ACTIONS(4939), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268480,15 +268814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [29991] = 4, + [30733] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2293), 1, + STATE(2291), 1, sym_comment, - ACTIONS(4754), 2, + ACTIONS(1223), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4752), 59, + ACTIONS(1221), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268548,69 +268882,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30063] = 13, - ACTIONS(3), 1, + [30805] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2294), 1, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(5334), 1, + sym_filesize_unit, + ACTIONS(5336), 1, + sym_duration_unit, + STATE(2292), 1, sym_comment, - STATE(2585), 1, - sym__var, - STATE(3790), 1, - sym__immediate_decimal, - STATE(3786), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2112), 8, + ACTIONS(1054), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2110), 43, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [30881] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2293), 1, + sym_comment, + ACTIONS(1253), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1251), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -268618,76 +268997,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [30153] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(4620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4622), 1, - anon_sym_DASH2, - ACTIONS(4624), 1, - anon_sym_PLUS2, - STATE(2295), 1, - sym_comment, - STATE(2585), 1, - sym__var, - STATE(3783), 1, - sym__immediate_decimal, - STATE(3749), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2120), 8, - anon_sym_RBRACE, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2118), 43, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [30953] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2294), 1, + sym_comment, + ACTIONS(4813), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4811), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, - anon_sym_list, anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_for, - anon_sym_in, anon_sym_loop, - anon_sym_make, anon_sym_while, anon_sym_do, anon_sym_if, - anon_sym_else, anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_try, - anon_sym_catch, anon_sym_return, anon_sym_source, anon_sym_source_DASHenv, @@ -268695,22 +269065,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_hide_DASHenv, anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [30243] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [31025] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2296), 1, + STATE(2295), 1, sym_comment, - ACTIONS(4408), 2, + ACTIONS(4817), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4406), 59, + ACTIONS(4815), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268770,15 +269156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30315] = 4, + [31097] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2297), 1, + STATE(2296), 1, sym_comment, - ACTIONS(4400), 2, + ACTIONS(1284), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4398), 59, + ACTIONS(1282), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -268838,102 +269224,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30387] = 42, + [31169] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, + ACTIONS(2902), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, + ACTIONS(3363), 1, anon_sym_DASH_DASH, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, ACTIONS(5117), 1, - anon_sym_DOT, + anon_sym_DASH, ACTIONS(5119), 1, - anon_sym_PLUS, + anon_sym_DOT, ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5283), 1, + ACTIONS(5338), 1, anon_sym_RBRACK, - STATE(2298), 1, + STATE(2297), 1, sym_comment, - STATE(2440), 1, + STATE(2446), 1, aux_sym_list_body_repeat1, - STATE(5243), 1, + STATE(5149), 1, sym__var, - STATE(5873), 1, + STATE(5971), 1, sym_val_variable, - STATE(6064), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, STATE(6093), 1, sym__inter_single_quotes, - STATE(6199), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, sym__val_number, - STATE(6493), 1, + STATE(6580), 1, sym_long_flag_equals_value, - STATE(8426), 1, + STATE(8401), 1, sym__val_number_decimal, - STATE(9807), 1, + STATE(9720), 1, sym_val_number, - STATE(9975), 1, + STATE(9939), 1, sym_expr_parenthesized, - STATE(10040), 1, + STATE(9980), 1, sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, + STATE(10202), 1, sym__expr_unary_minus, - STATE(10234), 1, + STATE(10233), 1, + sym_val_entry, + STATE(10277), 1, sym__list_item_expression, - STATE(11295), 1, + STATE(10876), 1, sym_list_body, - ACTIONS(3357), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, + STATE(10229), 2, sym_val_range, sym__value, - ACTIONS(2865), 3, + ACTIONS(2886), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 3, + ACTIONS(5125), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, + STATE(10168), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6201), 10, + STATE(6113), 10, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -268944,15 +269330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30535] = 4, + [31317] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2299), 1, + STATE(2298), 1, sym_comment, - ACTIONS(4971), 2, + ACTIONS(4871), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4969), 59, + ACTIONS(4869), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269012,22 +269398,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30607] = 4, + [31389] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2300), 1, - sym_comment, - ACTIONS(4396), 2, - ts_builtin_sym_end, + ACTIONS(5087), 1, + anon_sym_SEMI, + ACTIONS(5090), 1, anon_sym_LF, - ACTIONS(4394), 59, + ACTIONS(5340), 1, + ts_builtin_sym_end, + STATE(2299), 1, + sym_comment, + ACTIONS(5085), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -269080,21 +269468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30679] = 7, + [31465] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2301), 1, + STATE(2300), 1, sym_comment, - STATE(2351), 1, + STATE(2372), 1, + aux_sym_cell_path_repeat1, + STATE(2454), 1, sym_path, - STATE(2565), 1, - sym_cell_path, - ACTIONS(969), 2, + ACTIONS(975), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(967), 56, + anon_sym_DOT2, + ACTIONS(973), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -269151,57 +269538,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [30757] = 7, + [31541] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2302), 1, + STATE(2301), 1, sym_comment, - STATE(2351), 1, - sym_path, - STATE(2604), 1, - sym_cell_path, - ACTIONS(999), 2, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(997), 56, + ACTIONS(2998), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -269222,15 +269605,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [30835] = 4, + anon_sym_CARET, + [31613] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2303), 1, + STATE(2302), 1, sym_comment, - ACTIONS(4772), 2, + ACTIONS(4821), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4770), 59, + ACTIONS(4819), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269290,15 +269674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30907] = 4, + [31685] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2304), 1, + STATE(2303), 1, sym_comment, - ACTIONS(4380), 2, + ACTIONS(4901), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4378), 59, + ACTIONS(4899), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269358,119 +269742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [30979] = 40, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3202), 1, - aux_sym_unquoted_token1, - ACTIONS(5285), 1, - anon_sym_LBRACK, - ACTIONS(5287), 1, - anon_sym_LPAREN, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5293), 1, - anon_sym_LBRACE, - ACTIONS(5295), 1, - anon_sym_DOT, - ACTIONS(5297), 1, - anon_sym_PLUS, - ACTIONS(5299), 1, - anon_sym_not, - ACTIONS(5301), 1, - anon_sym_null, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5313), 1, - sym_val_date, - ACTIONS(5315), 1, - anon_sym_DQUOTE, - ACTIONS(5319), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5321), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2119), 1, - sym__val_number_decimal, - STATE(2305), 1, - sym_comment, - STATE(2307), 1, - sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, - sym_val_number, - STATE(2445), 1, - sym_val_variable, - STATE(2534), 1, - sym_expr_parenthesized, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, - sym__inter_single_quotes, - STATE(2592), 1, - sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(5846), 1, - sym_val_range, - STATE(5866), 1, - sym__expression, - STATE(5867), 1, - sym_unquoted, - STATE(6821), 1, - sym__expr_binary_expression, - ACTIONS(925), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5303), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5317), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(923), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(5307), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5309), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2544), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(2628), 11, - sym_val_nothing, - sym_val_bool, - 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, - [31123] = 4, + [31757] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2306), 1, + STATE(2304), 1, sym_comment, - ACTIONS(4815), 2, + ACTIONS(2959), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4813), 59, + ACTIONS(2957), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269530,21 +269810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31195] = 7, + [31829] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5323), 1, + ACTIONS(5113), 1, anon_sym_DOT2, - STATE(2307), 1, - sym_comment, - STATE(2330), 1, + STATE(2165), 1, sym_path, - STATE(2438), 1, + STATE(2305), 1, + sym_comment, + STATE(2622), 1, sym_cell_path, - ACTIONS(999), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(997), 56, + ACTIONS(929), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -269601,121 +269881,151 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [31273] = 42, - ACTIONS(3), 1, + [31907] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2306), 1, + sym_comment, + ACTIONS(4957), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4955), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(3355), 1, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, - ACTIONS(3365), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(3367), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [31979] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2307), 1, + sym_comment, + ACTIONS(4821), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4819), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5326), 1, - anon_sym_RBRACK, - STATE(2308), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10049), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11472), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [31421] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [32051] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2309), 1, + STATE(2308), 1, sym_comment, - ACTIONS(4815), 2, + ACTIONS(4825), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4813), 59, + ACTIONS(4823), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269775,24 +270085,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31493] = 7, + [32123] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5328), 1, + STATE(2309), 1, + sym_comment, + ACTIONS(1084), 2, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(5330), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5332), 1, - aux_sym_unquoted_token2, + ACTIONS(1082), 59, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [32195] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5322), 1, + anon_sym_QMARK2, STATE(2310), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, + ACTIONS(1072), 2, anon_sym_LF, - ACTIONS(1005), 56, + anon_sym_DOT2, + ACTIONS(1070), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -269800,6 +270175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -269846,53 +270222,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [31571] = 4, + [32269] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2311), 1, sym_comment, - ACTIONS(5088), 2, - ts_builtin_sym_end, + ACTIONS(1088), 2, anon_sym_LF, - ACTIONS(5086), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + anon_sym_DOT2, + ACTIONS(1086), 59, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -269913,16 +270290,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [31643] = 4, + [32341] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2312), 1, sym_comment, - ACTIONS(5092), 2, + ACTIONS(4829), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5090), 59, + ACTIONS(4827), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -269982,15 +270358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31715] = 4, + [32413] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2313), 1, sym_comment, - ACTIONS(5052), 2, + ACTIONS(4897), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5050), 59, + ACTIONS(4895), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -270050,227 +270426,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [31787] = 42, - ACTIONS(3), 1, + [32485] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2165), 1, + sym_path, + STATE(2314), 1, + sym_comment, + STATE(2605), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 56, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5158), 1, - anon_sym_RBRACK, - STATE(2314), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10101), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11039), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [31935] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + [32563] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT2, + STATE(2315), 1, + sym_comment, + STATE(2348), 1, + sym_path, + STATE(2498), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 56, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5334), 1, - anon_sym_RBRACK, - STATE(2315), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10132), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10834), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [32083] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [32641] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2316), 1, sym_comment, - ACTIONS(4911), 2, + ACTIONS(4965), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4909), 59, + ACTIONS(4963), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -270330,233 +270636,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32155] = 42, - ACTIONS(3), 1, + [32713] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2317), 1, + sym_comment, + ACTIONS(5047), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5045), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5336), 1, - anon_sym_RBRACK, - STATE(2317), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(9992), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10451), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [32303] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(3367), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5338), 1, - anon_sym_RBRACK, - STATE(2318), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10055), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11469), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [32451] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [32785] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(5113), 1, anon_sym_DOT2, - STATE(2319), 1, - sym_comment, - STATE(2351), 1, + STATE(2165), 1, sym_path, - STATE(2624), 1, + STATE(2318), 1, + sym_comment, + STATE(2574), 1, sym_cell_path, - ACTIONS(1035), 2, + ACTIONS(968), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 56, + ACTIONS(966), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -270613,53 +270775,57 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [32529] = 4, + [32863] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2320), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2319), 1, sym_comment, - ACTIONS(4919), 2, + STATE(2372), 1, + aux_sym_cell_path_repeat1, + STATE(2454), 1, + sym_path, + ACTIONS(975), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4917), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(973), 56, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -270680,25 +270846,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [32601] = 6, + [32941] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4901), 1, - anon_sym_SEMI, - ACTIONS(4904), 1, - anon_sym_LF, - ACTIONS(5340), 1, - ts_builtin_sym_end, - STATE(2321), 1, + STATE(2320), 1, sym_comment, - ACTIONS(4899), 58, + ACTIONS(4728), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4726), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -270751,24 +270914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32677] = 6, + [33013] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4891), 1, - anon_sym_SEMI, - ACTIONS(4894), 1, - anon_sym_LF, - ACTIONS(5342), 1, - ts_builtin_sym_end, - STATE(2322), 1, + STATE(2321), 1, sym_comment, - ACTIONS(4889), 58, + ACTIONS(4728), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4726), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -270821,15 +270982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32753] = 4, + [33085] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2323), 1, + STATE(2322), 1, sym_comment, - ACTIONS(4887), 2, + ACTIONS(4851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4885), 59, + ACTIONS(4849), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -270889,22 +271050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32825] = 6, + [33157] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(5344), 1, - sym_filesize_unit, - ACTIONS(5346), 1, - sym_duration_unit, - STATE(2324), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2165), 1, + sym_path, + STATE(2323), 1, sym_comment, - ACTIONS(1102), 58, + STATE(2588), 1, + sym_cell_path, + ACTIONS(915), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(913), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -270912,7 +271075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -270959,15 +271121,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [32901] = 4, + [33235] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2325), 1, + STATE(2324), 1, sym_comment, - ACTIONS(4947), 2, + ACTIONS(5061), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4945), 59, + ACTIONS(5059), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271027,15 +271189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [32973] = 4, + [33307] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2326), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4855), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5054), 59, + ACTIONS(4853), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271095,15 +271257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33045] = 4, + [33379] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2327), 1, + STATE(2326), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4374), 59, + ACTIONS(4861), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271163,15 +271325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33117] = 4, + [33451] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2328), 1, + STATE(2327), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(5061), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4370), 59, + ACTIONS(5059), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271231,15 +271393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33189] = 4, + [33523] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2329), 1, + STATE(2328), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(5109), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 59, + ACTIONS(5107), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271299,57 +271461,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33261] = 7, + [33595] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2220), 1, - aux_sym_cell_path_repeat1, - STATE(2330), 1, + STATE(2329), 1, sym_comment, - STATE(2453), 1, - sym_path, - ACTIONS(905), 2, + ACTIONS(5109), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(903), 56, + ACTIONS(5107), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -271370,15 +271528,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [33339] = 4, + anon_sym_CARET, + [33667] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2331), 1, + STATE(2330), 1, sym_comment, - ACTIONS(4989), 2, + ACTIONS(4728), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4987), 59, + ACTIONS(4726), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271438,128 +271597,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33411] = 42, - ACTIONS(3), 1, + [33739] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2331), 1, + sym_comment, + ACTIONS(4728), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4726), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(5348), 1, - anon_sym_RBRACK, - STATE(2332), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10005), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10715), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [33559] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [33811] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2333), 1, - sym_comment, - ACTIONS(4865), 2, - ts_builtin_sym_end, + ACTIONS(5347), 1, + anon_sym_SEMI, + ACTIONS(5350), 1, anon_sym_LF, - ACTIONS(4863), 59, + ACTIONS(5353), 1, + anon_sym_RPAREN, + STATE(2332), 1, + sym_comment, + ACTIONS(5345), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -271612,15 +271735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33631] = 4, + [33887] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2334), 1, + STATE(2333), 1, sym_comment, - ACTIONS(4943), 2, + ACTIONS(4724), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4941), 59, + ACTIONS(4722), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271680,15 +271803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33703] = 4, + [33959] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2335), 1, + STATE(2334), 1, sym_comment, - ACTIONS(4861), 2, + ACTIONS(5097), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4859), 59, + ACTIONS(5095), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271748,15 +271871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33775] = 4, + [34031] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2335), 1, sym_comment, - ACTIONS(4780), 2, + ACTIONS(4867), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4778), 59, + ACTIONS(4865), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271816,15 +271939,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33847] = 4, + [34103] = 40, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(4549), 1, + anon_sym_LPAREN, + ACTIONS(4555), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_not, + ACTIONS(4563), 1, + anon_sym_null, + ACTIONS(4571), 1, + sym_val_date, + ACTIONS(4573), 1, + anon_sym_DQUOTE, + ACTIONS(4577), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4579), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5355), 1, + anon_sym_DASH, + ACTIONS(5357), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_PLUS, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + STATE(2336), 1, + sym_comment, + STATE(4678), 1, + sym__val_number_decimal, + STATE(4852), 1, + sym__var, + STATE(5009), 1, + sym_val_number, + STATE(5039), 1, + sym__val_number, + STATE(5195), 1, + sym_expr_parenthesized, + STATE(5261), 1, + sym_val_variable, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + STATE(6682), 1, + sym__expr_binary_expression, + STATE(8490), 1, + sym__expression, + STATE(8503), 1, + sym_unquoted, + STATE(8533), 1, + sym_val_range, + ACTIONS(987), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4565), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4575), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(985), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(3607), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4569), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5363), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5382), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5732), 11, + sym_val_nothing, + sym_val_bool, + 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, + [34247] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2337), 1, sym_comment, - ACTIONS(4985), 2, + ACTIONS(4945), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4983), 59, + ACTIONS(4943), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -271884,22 +272111,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33919] = 4, + [34319] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5077), 1, + anon_sym_SEMI, + ACTIONS(5080), 1, + anon_sym_LF, + ACTIONS(5365), 1, + ts_builtin_sym_end, STATE(2338), 1, sym_comment, - ACTIONS(4776), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4774), 59, + ACTIONS(5075), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -271952,15 +272181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [33991] = 4, + [34395] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2339), 1, sym_comment, - ACTIONS(1261), 2, + ACTIONS(4773), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1259), 59, + ACTIONS(4771), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272020,15 +272249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34063] = 4, + [34467] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(2340), 1, sym_comment, - ACTIONS(4768), 2, + ACTIONS(4732), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4766), 59, + ACTIONS(4730), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272088,121 +272317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34135] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5350), 1, - anon_sym_RBRACK, - STATE(2341), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10143), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10742), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [34283] = 4, + [34539] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2341), 1, sym_comment, - ACTIONS(4869), 2, + ACTIONS(4332), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4867), 59, + ACTIONS(4330), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272262,15 +272385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34355] = 4, + [34611] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2343), 1, + STATE(2342), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(4336), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4228), 59, + ACTIONS(4334), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272330,15 +272453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34427] = 4, + [34683] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2344), 1, + STATE(2343), 1, sym_comment, - ACTIONS(4943), 2, + ACTIONS(4883), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4941), 59, + ACTIONS(4881), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272398,22 +272521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34499] = 4, + [34755] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2345), 1, - sym_comment, - ACTIONS(4931), 2, - ts_builtin_sym_end, + ACTIONS(4887), 1, + anon_sym_SEMI, + ACTIONS(4890), 1, anon_sym_LF, - ACTIONS(4929), 59, + ACTIONS(5367), 1, + ts_builtin_sym_end, + STATE(2344), 1, + sym_comment, + ACTIONS(4885), 58, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, - anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -272466,15 +272591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34571] = 4, + [34831] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2346), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5072), 2, + ACTIONS(4340), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5070), 59, + ACTIONS(4338), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272534,15 +272659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34643] = 4, + [34903] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2347), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5064), 2, + ACTIONS(4344), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5062), 59, + ACTIONS(4342), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272602,121 +272727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34715] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5352), 1, - anon_sym_RBRACK, - STATE(2348), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10155), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10514), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [34863] = 4, + [34975] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2349), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5068), 2, + ACTIONS(4971), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5066), 59, + ACTIONS(4969), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272776,86 +272795,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [34935] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5356), 1, - aux_sym__immediate_decimal_token2, - STATE(2350), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 57, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [35011] = 7, + [35047] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(5113), 1, anon_sym_DOT2, - STATE(2351), 1, - sym_comment, - STATE(2367), 1, + STATE(2300), 1, aux_sym_cell_path_repeat1, - STATE(2453), 1, + STATE(2348), 1, + sym_comment, + STATE(2454), 1, sym_path, ACTIONS(905), 2, ts_builtin_sym_end, @@ -272917,15 +272866,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35089] = 4, + [35125] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2352), 1, + STATE(2349), 1, sym_comment, - ACTIONS(4794), 2, + ACTIONS(5101), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4792), 59, + ACTIONS(5099), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -272985,86 +272934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35161] = 7, + [35197] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2351), 1, - sym_path, - STATE(2353), 1, - sym_comment, - STATE(2586), 1, - sym_cell_path, - ACTIONS(1003), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1001), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [35239] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2354), 1, + STATE(2350), 1, sym_comment, - ACTIONS(4794), 2, + ACTIONS(3806), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4792), 59, + ACTIONS(3804), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -273124,15 +273002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35311] = 4, + [35269] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2355), 1, + STATE(2351), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(4392), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3888), 59, + ACTIONS(4390), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -273192,15 +273070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35383] = 4, + [35341] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2356), 1, + STATE(2352), 1, sym_comment, - ACTIONS(4764), 2, + ACTIONS(4396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4762), 59, + ACTIONS(4394), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -273260,24 +273138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35455] = 6, + [35413] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4975), 1, - anon_sym_SEMI, - ACTIONS(4978), 1, - anon_sym_LF, - ACTIONS(5358), 1, - ts_builtin_sym_end, - STATE(2357), 1, + STATE(2353), 1, sym_comment, - ACTIONS(4973), 58, + ACTIONS(4400), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4398), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -273330,131 +273206,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35531] = 42, - ACTIONS(3), 1, + [35485] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2354), 1, + sym_comment, + ACTIONS(4408), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4406), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2358), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9922), 1, - sym_val_list, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10712), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [35679] = 7, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [35557] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2351), 1, - sym_path, - STATE(2359), 1, + ACTIONS(5369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5371), 1, + aux_sym__immediate_decimal_token2, + STATE(2355), 1, sym_comment, - STATE(2543), 1, - sym_cell_path, - ACTIONS(992), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(990), 56, - anon_sym_SEMI, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -273487,7 +273323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -273498,6 +273333,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -273505,27 +273342,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [35757] = 7, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [35633] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2351), 1, - sym_path, - STATE(2360), 1, + ACTIONS(5373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5375), 1, + aux_sym__immediate_decimal_token2, + STATE(2356), 1, sym_comment, - STATE(2626), 1, - sym_cell_path, - ACTIONS(911), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(909), 56, - anon_sym_SEMI, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -273558,7 +273393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -273569,6 +273403,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -273576,59 +273412,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [35835] = 7, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [35709] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT2, - STATE(2351), 1, - sym_path, - STATE(2361), 1, + STATE(2357), 1, sym_comment, - STATE(2548), 1, - sym_cell_path, - ACTIONS(981), 2, + ACTIONS(4414), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 56, + ACTIONS(4412), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -273649,15 +273481,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [35913] = 4, + anon_sym_CARET, + [35781] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2362), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5035), 2, + ACTIONS(4457), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5033), 59, + ACTIONS(4455), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -273717,161 +273550,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [35985] = 42, - ACTIONS(3), 1, + [35853] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, + STATE(2359), 1, + sym_comment, + ACTIONS(4464), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4462), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - ACTIONS(3355), 1, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, - ACTIONS(3365), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(3367), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [35925] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2360), 1, + sym_comment, + ACTIONS(5105), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5103), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - ACTIONS(5117), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(5119), 1, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5362), 1, - anon_sym_RBRACK, - STATE(2363), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10113), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10941), 1, - sym_list_body, - ACTIONS(3357), 2, + anon_sym_not, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [36133] = 6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [35997] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5364), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5366), 1, - aux_sym__immediate_decimal_token2, - STATE(2364), 1, + STATE(2361), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 57, + ACTIONS(4476), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4474), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -273882,8 +273744,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -273891,17 +273751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [36209] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [36069] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2365), 1, + STATE(2362), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(4833), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3834), 59, + ACTIONS(4831), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -273961,15 +273822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36281] = 4, + [36141] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2366), 1, + STATE(2363), 1, sym_comment, - ACTIONS(4798), 2, + ACTIONS(4837), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4796), 59, + ACTIONS(4835), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274029,21 +273890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36353] = 7, + [36213] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(5113), 1, anon_sym_DOT2, - STATE(2150), 1, - aux_sym_cell_path_repeat1, - STATE(2367), 1, - sym_comment, - STATE(2453), 1, + STATE(2165), 1, sym_path, - ACTIONS(977), 2, + STATE(2364), 1, + sym_comment, + STATE(2643), 1, + sym_cell_path, + ACTIONS(961), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(975), 56, + ACTIONS(959), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -274100,130 +273961,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [36431] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5368), 1, - anon_sym_RBRACK, - STATE(2368), 1, - sym_comment, - STATE(2440), 1, - aux_sym_list_body_repeat1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10011), 1, - sym_val_list, - STATE(10215), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(10794), 1, - sym_list_body, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 10, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_record, - sym_val_table, - sym_val_closure, - [36579] = 6, + [36291] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5372), 1, - anon_sym_SEMI, - ACTIONS(5375), 1, - anon_sym_LF, - ACTIONS(5378), 1, - anon_sym_RPAREN, - STATE(2369), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5370), 58, + ACTIONS(5055), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5053), 59, anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_let_DASHenv, anon_sym_mut, anon_sym_const, + anon_sym_SEMI, sym_cmd_identifier, anon_sym_def, anon_sym_export_DASHenv, @@ -274276,15 +274029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36655] = 4, + [36363] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2370), 1, + STATE(2366), 1, sym_comment, - ACTIONS(4931), 2, + ACTIONS(4908), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4929), 59, + ACTIONS(4906), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274344,15 +274097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36727] = 4, + [36435] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2371), 1, + STATE(2367), 1, sym_comment, - ACTIONS(4790), 2, + ACTIONS(5039), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4788), 59, + ACTIONS(5037), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274412,15 +274165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36799] = 4, + [36507] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2372), 1, + STATE(2368), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(4916), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2986), 59, + ACTIONS(4914), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274480,14 +274233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36871] = 4, + [36579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5382), 1, - anon_sym_LF, - STATE(2373), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5380), 59, + ACTIONS(4480), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4478), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274547,14 +274301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [36942] = 4, + [36651] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5386), 1, - anon_sym_LF, - STATE(2374), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5384), 59, + ACTIONS(4484), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4482), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274614,14 +274369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [37013] = 4, + [36723] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5390), 1, - anon_sym_LF, - STATE(2375), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5388), 59, + ACTIONS(4088), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4086), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -274681,21 +274437,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [37084] = 5, + [36795] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5356), 1, - aux_sym__immediate_decimal_token2, - STATE(2376), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(5377), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 57, + STATE(2454), 1, + sym_path, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2372), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -274728,6 +274487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -274738,8 +274498,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -274747,29 +274505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [37157] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [36871] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5366), 1, - aux_sym__immediate_decimal_token2, - STATE(2377), 1, + STATE(2373), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(1223), 2, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 57, + ACTIONS(1221), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -274796,6 +274554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -274806,8 +274565,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -274815,54 +274572,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [37230] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [36942] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5394), 1, - anon_sym_LF, - STATE(2378), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5392), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(1219), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -274883,329 +274641,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [37301] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(209), 1, - anon_sym_CARET, - ACTIONS(369), 1, - sym_cmd_identifier, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(441), 1, - anon_sym_if, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(5396), 1, - anon_sym_LBRACE, - STATE(2379), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5033), 1, - sym_val_number, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5143), 1, - sym_val_variable, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9470), 1, - sym_ctrl_if_parenthesized, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(9471), 3, - sym_block, - sym__expression, - sym_command, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [37444] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(19), 1, - sym_cmd_identifier, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 1, - anon_sym_CARET, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(5398), 1, - anon_sym_LBRACE, - STATE(2380), 1, - sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, - sym__var, - STATE(5363), 1, - sym_val_number, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5675), 1, - sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, - sym__expr_binary_expression, - STATE(9608), 1, - sym_ctrl_if, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(9613), 3, - sym_block, - sym__expression, - sym_command, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6035), 11, - sym_val_nothing, - sym_val_bool, - 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, - [37587] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(923), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3641), 1, - aux_sym_unquoted_token1, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_LPAREN, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5410), 1, - anon_sym_DOT, - ACTIONS(5412), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_not, - ACTIONS(5416), 1, - anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, - sym_val_date, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2381), 1, - sym_comment, - STATE(2608), 1, - sym__val_number_decimal, - STATE(2671), 1, - sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, - sym__val_number, - STATE(2973), 1, - sym_val_variable, - STATE(2976), 1, - sym_expr_parenthesized, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3426), 1, - sym__inter_single_quotes, - STATE(3427), 1, - sym__inter_double_quotes, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(6648), 1, - sym__expr_binary_expression, - STATE(6693), 1, - sym__expression, - STATE(6704), 1, - sym_val_range, - STATE(6871), 1, - sym_unquoted, - ACTIONS(5418), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5432), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(925), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5424), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(5426), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3413), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(3088), 11, - sym_val_nothing, - sym_val_bool, - 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, - [37730] = 4, + [37013] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2382), 1, + ACTIONS(5380), 1, + sym_filesize_unit, + ACTIONS(5382), 1, + sym_duration_unit, + STATE(2375), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1056), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 58, + ACTIONS(1054), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -275213,7 +274664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -275260,14 +274710,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [37801] = 4, + [37088] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5438), 1, + ACTIONS(5386), 1, anon_sym_LF, - STATE(2383), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5269), 59, + ACTIONS(5384), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -275327,14 +274777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [37872] = 4, + [37159] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5442), 1, + ACTIONS(5390), 1, anon_sym_LF, - STATE(2384), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5440), 59, + ACTIONS(5388), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -275394,22 +274844,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [37943] = 6, + [37230] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - sym__entry_separator, - ACTIONS(5444), 1, - anon_sym_DOT2, - ACTIONS(5447), 1, - aux_sym__immediate_decimal_token2, - STATE(2385), 1, + ACTIONS(5394), 1, + anon_sym_LF, + STATE(2378), 1, sym_comment, - ACTIONS(835), 57, + ACTIONS(5392), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [37301] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2379), 1, + sym_comment, + ACTIONS(1084), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1082), 57, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -275418,6 +274933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -275442,6 +274958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -275452,8 +274969,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -275461,54 +274976,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [38018] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [37372] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5451), 1, - anon_sym_LF, - STATE(2386), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5449), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(1088), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1086), 57, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -275529,15 +275045,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [38089] = 4, + [37443] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5398), 1, anon_sym_LF, - STATE(2387), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5453), 59, + ACTIONS(5396), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -275597,52 +275112,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [38160] = 4, + [37514] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5459), 1, + ACTIONS(829), 1, anon_sym_LF, - STATE(2388), 1, + ACTIONS(4229), 1, + aux_sym_unquoted_token3, + STATE(2382), 1, sym_comment, - ACTIONS(5457), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(827), 58, anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -275663,49 +275180,141 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [38231] = 6, + [37587] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5461), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5463), 1, - aux_sym__immediate_decimal_token2, - STATE(2389), 1, - sym_comment, - ACTIONS(815), 16, - anon_sym_GT, + ACTIONS(19), 1, + sym_cmd_identifier, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(53), 1, + anon_sym_if, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(77), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 1, + anon_sym_CARET, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(2383), 1, + sym_comment, + STATE(4271), 1, + sym_val_range, + STATE(4722), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5003), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5711), 1, + sym_expr_parenthesized, + STATE(5772), 1, + sym_val_variable, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, + sym__expr_binary_expression, + STATE(9292), 1, + sym_ctrl_if, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(817), 42, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(9295), 3, + sym_block, + sym__expression, + sym_command, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5835), 11, + sym_val_nothing, + sym_val_bool, + 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, + [37730] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -275719,95 +275328,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [38306] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [37801] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5465), 1, - anon_sym_LF, - STATE(2390), 1, + ACTIONS(5402), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5404), 1, + aux_sym__immediate_decimal_token2, + STATE(2385), 1, sym_comment, - ACTIONS(4889), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(815), 16, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(817), 42, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [38377] = 6, + [37876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(5406), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5469), 1, + ACTIONS(5408), 1, aux_sym__immediate_decimal_token2, - STATE(2391), 1, + STATE(2386), 1, sym_comment, ACTIONS(807), 16, anon_sym_GT, @@ -275869,14 +275488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [38452] = 4, + [37951] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5473), 1, + ACTIONS(5410), 1, anon_sym_LF, - STATE(2392), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5471), 59, + ACTIONS(4839), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -275936,14 +275555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [38523] = 4, + [38022] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5477), 1, + ACTIONS(5414), 1, anon_sym_LF, - STATE(2393), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5475), 59, + ACTIONS(5412), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276003,54 +275622,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [38594] = 5, + [38093] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5479), 1, - anon_sym_QMARK2, - STATE(2394), 1, + ACTIONS(5418), 1, + anon_sym_LF, + STATE(2389), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(5416), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [38164] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5422), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 56, + STATE(2390), 1, + sym_comment, + ACTIONS(5420), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -276071,18 +275755,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38667] = 5, + anon_sym_CARET, + [38235] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5479), 1, - anon_sym_QMARK2, - STATE(2395), 1, + STATE(2391), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(1179), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 56, + ACTIONS(1177), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -276130,6 +275812,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -276139,14 +275823,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [38740] = 4, + [38306] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5481), 1, + ACTIONS(5426), 1, anon_sym_LF, - STATE(2396), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5370), 59, + ACTIONS(5424), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276206,157 +275890,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [38811] = 40, - ACTIONS(3), 1, + [38377] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(209), 1, - anon_sym_CARET, - ACTIONS(369), 1, - sym_cmd_identifier, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(441), 1, - anon_sym_if, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(5396), 1, - anon_sym_LBRACE, - STATE(2397), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5033), 1, - sym_val_number, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5143), 1, - sym_val_variable, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9686), 1, - sym_ctrl_if_parenthesized, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(9696), 3, - sym_block, - sym__expression, - sym_command, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [38954] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(5430), 1, anon_sym_LF, - ACTIONS(5483), 1, - anon_sym_DOT2, - STATE(2398), 1, + STATE(2393), 1, sym_comment, - ACTIONS(1102), 58, + ACTIONS(5428), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -276377,14 +275956,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [39027] = 4, + anon_sym_CARET, + [38448] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5487), 1, + ACTIONS(5434), 1, anon_sym_LF, - STATE(2399), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5485), 59, + ACTIONS(5432), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276444,14 +276024,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [39098] = 4, + [38519] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(209), 1, + anon_sym_CARET, + ACTIONS(369), 1, + sym_cmd_identifier, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(441), 1, + anon_sym_if, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(2395), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(4976), 1, + sym_val_number, + STATE(5194), 1, + sym_val_variable, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(9570), 1, + sym_ctrl_if_parenthesized, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(9571), 3, + sym_block, + sym__expression, + sym_command, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [38662] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5489), 1, + ACTIONS(5438), 1, anon_sym_LF, - STATE(2400), 1, + STATE(2396), 1, sym_comment, - ACTIONS(4847), 59, + ACTIONS(5324), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276511,16 +276194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [39169] = 5, + [38733] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(4279), 1, - aux_sym_unquoted_token3, - STATE(2401), 1, + ACTIONS(5440), 1, + anon_sym_DOT2, + STATE(2397), 1, sym_comment, - ACTIONS(823), 58, + ACTIONS(1054), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -276579,14 +276262,152 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [39242] = 4, + [38806] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token2, + STATE(2398), 1, + sym_comment, + ACTIONS(815), 15, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38881] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5448), 1, + aux_sym__immediate_decimal_token2, + STATE(2399), 1, + sym_comment, + ACTIONS(807), 15, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(809), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38956] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5493), 1, + ACTIONS(5452), 1, anon_sym_LF, - STATE(2402), 1, + STATE(2400), 1, sym_comment, - ACTIONS(5491), 59, + ACTIONS(5450), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276646,14 +276467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [39313] = 4, + [39027] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5495), 1, + ACTIONS(5454), 1, anon_sym_LF, - STATE(2403), 1, + STATE(2401), 1, sym_comment, - ACTIONS(4899), 59, + ACTIONS(5085), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -276713,19 +276534,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [39384] = 4, + [39098] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2404), 1, + ACTIONS(5375), 1, + aux_sym__immediate_decimal_token2, + STATE(2402), 1, sym_comment, - ACTIONS(1067), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1065), 58, - anon_sym_SEMI, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -276758,7 +276581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -276778,22 +276600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [39455] = 4, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [39171] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2405), 1, + ACTIONS(5456), 1, + aux_sym__immediate_decimal_token2, + STATE(2403), 1, sym_comment, - ACTIONS(1115), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(857), 2, anon_sym_DOT2, - ACTIONS(1113), 57, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(855), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -276802,7 +276625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -276827,7 +276649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -276838,6 +276659,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -276845,19 +276668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [39526] = 5, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [39244] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5497), 1, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(5458), 1, + anon_sym_DOT2, + ACTIONS(5461), 1, aux_sym__immediate_decimal_token2, - STATE(2406), 1, + STATE(2404), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 57, + ACTIONS(846), 57, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -276915,156 +276739,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - [39599] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(209), 1, - anon_sym_CARET, - ACTIONS(369), 1, - sym_cmd_identifier, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(397), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(5396), 1, - anon_sym_LBRACE, - STATE(2407), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5033), 1, - sym_val_number, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5143), 1, - sym_val_variable, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9002), 1, - sym_ctrl_if, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(9000), 3, - sym_block, - sym__expression, - sym_command, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [39742] = 4, + [39319] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_LF, - STATE(2408), 1, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(5371), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5463), 1, + anon_sym_DOT2, + STATE(2405), 1, sym_comment, - ACTIONS(5245), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(815), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, @@ -277075,6 +276797,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -277082,17 +276806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [39813] = 4, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [39394] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(5468), 1, anon_sym_LF, - STATE(2409), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5227), 59, + ACTIONS(5466), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -277152,98 +276875,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [39884] = 40, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(105), 1, + [39465] = 40, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(2487), 1, + ACTIONS(985), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3433), 1, aux_sym_unquoted_token1, - ACTIONS(3778), 1, + ACTIONS(5470), 1, anon_sym_LBRACK, - ACTIONS(3780), 1, + ACTIONS(5472), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(3788), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, + anon_sym_null, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3790), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3794), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3796), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5503), 1, - anon_sym_DASH, - ACTIONS(5505), 1, - anon_sym_DOT, - ACTIONS(5507), 1, - anon_sym_PLUS, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - STATE(2410), 1, + STATE(2407), 1, sym_comment, - STATE(4285), 1, - sym__expression, - STATE(4288), 1, - sym_unquoted, - STATE(4327), 1, - sym_val_range, - STATE(4728), 1, + STATE(2640), 1, sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, + STATE(2700), 1, sym__var, - STATE(5363), 1, + STATE(2883), 1, + sym__val_number, + STATE(2927), 1, sym_val_number, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5675), 1, + STATE(2980), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(3046), 1, + sym_expr_parenthesized, + STATE(3145), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(3253), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(6681), 1, + sym_val_range, + STATE(6798), 1, sym__expr_binary_expression, - ACTIONS(83), 2, + STATE(6833), 1, + sym__expression, + STATE(6836), 1, + sym_unquoted, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(923), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(925), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3792), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(987), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5511), 3, + ACTIONS(5494), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6030), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3163), 3, sym_expr_unary, sym_expr_binary, sym__value, - STATE(6035), 11, + STATE(3252), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -277255,27 +276978,22 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40027] = 8, + [39608] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(5515), 1, - anon_sym_DOT2, - ACTIONS(5517), 1, - aux_sym_unquoted_token4, - ACTIONS(5519), 1, - aux_sym_unquoted_token6, - STATE(2411), 1, + ACTIONS(5508), 1, + anon_sym_QMARK2, + STATE(2408), 1, sym_comment, - ACTIONS(5513), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 54, + ACTIONS(1072), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -277308,137 +277026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [40106] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5523), 1, - anon_sym_LF, - STATE(2412), 1, - sym_comment, - ACTIONS(5521), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [40177] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_LF, - STATE(2413), 1, - sym_comment, - ACTIONS(5525), 59, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, @@ -277459,20 +277046,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [40248] = 6, + [39681] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5529), 1, - sym_filesize_unit, - ACTIONS(5531), 1, - sym_duration_unit, - STATE(2414), 1, + ACTIONS(5508), 1, + anon_sym_QMARK2, + STATE(2409), 1, sym_comment, - ACTIONS(1104), 2, + ACTIONS(1072), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1102), 56, + anon_sym_DOT2, + ACTIONS(1070), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -277529,27 +277114,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40323] = 7, + [39754] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + STATE(2410), 1, + sym_comment, + ACTIONS(1187), 2, anon_sym_LF, - ACTIONS(5483), 1, anon_sym_DOT2, - STATE(2415), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 26, + ACTIONS(1185), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -277568,17 +277161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1243), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -277599,19 +277181,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40400] = 4, + [39825] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2416), 1, + STATE(2411), 1, sym_comment, - ACTIONS(1100), 3, - ts_builtin_sym_end, + ACTIONS(1211), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1098), 57, + ACTIONS(1209), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -277619,9 +277201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -277666,16 +277248,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40471] = 5, + [39896] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(5533), 1, - aux_sym_unquoted_token5, - STATE(2417), 1, + STATE(2412), 1, sym_comment, - ACTIONS(1193), 58, + ACTIONS(1215), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -277734,14 +277315,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40544] = 4, + [39967] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5512), 1, anon_sym_LF, - STATE(2418), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5535), 59, + ACTIONS(5510), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -277801,53 +277382,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [40615] = 4, + [40038] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2419), 1, - sym_comment, - ACTIONS(1261), 2, + ACTIONS(5514), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 58, + STATE(2414), 1, + sym_comment, + ACTIONS(5221), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -277868,14 +277448,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40686] = 4, + anon_sym_CARET, + [40109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5539), 1, + ACTIONS(5518), 1, anon_sym_LF, - STATE(2420), 1, + STATE(2415), 1, sym_comment, - ACTIONS(4973), 59, + ACTIONS(5516), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -277935,35 +277516,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [40757] = 4, + [40180] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2421), 1, - sym_comment, - ACTIONS(1230), 2, + ACTIONS(1253), 1, anon_sym_LF, + ACTIONS(5440), 1, anon_sym_DOT2, - ACTIONS(1228), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + STATE(2416), 1, + sym_comment, + ACTIONS(1257), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 26, + anon_sym_GT, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -277982,6 +277555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(1251), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -278002,53 +277586,155 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40828] = 4, + [40257] = 40, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, ACTIONS(105), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(1224), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 58, - anon_sym_SEMI, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(2442), 1, + aux_sym_unquoted_token1, + ACTIONS(3097), 1, anon_sym_LBRACK, + ACTIONS(3099), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + ACTIONS(3101), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3107), 1, + sym_val_date, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5522), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5524), 1, + anon_sym_PLUS, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + STATE(2417), 1, + sym_comment, + STATE(4271), 1, + sym_val_range, + STATE(4281), 1, + sym__expression, + STATE(4282), 1, + sym_unquoted, + STATE(4763), 1, + sym__val_number, + STATE(4829), 1, + sym__val_number_decimal, + STATE(5003), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5711), 1, + sym_expr_parenthesized, + STATE(5772), 1, + sym_val_variable, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, + sym__expr_binary_expression, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(985), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(987), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5528), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5835), 11, + sym_val_nothing, + sym_val_bool, + 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, + [40400] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5530), 1, + anon_sym_LF, + STATE(2418), 1, + sym_comment, + ACTIONS(4885), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -278069,122 +277755,120 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [40899] = 6, - ACTIONS(3), 1, + anon_sym_CARET, + [40471] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5541), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5543), 1, - aux_sym__immediate_decimal_token2, - STATE(2423), 1, + ACTIONS(5534), 1, + anon_sym_LF, + STATE(2419), 1, sym_comment, - ACTIONS(815), 15, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 43, + ACTIONS(5532), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [40974] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [40542] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2424), 1, - sym_comment, - ACTIONS(1191), 2, + ACTIONS(5538), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 58, + STATE(2420), 1, + sym_comment, + ACTIONS(5536), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -278205,14 +277889,118 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [41045] = 4, + anon_sym_CARET, + [40613] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(209), 1, + anon_sym_CARET, + ACTIONS(369), 1, + sym_cmd_identifier, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(441), 1, + anon_sym_if, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(4976), 1, + sym_val_number, + STATE(5194), 1, + sym_val_variable, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(9239), 1, + sym_ctrl_if_parenthesized, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(9308), 3, + sym_block, + sym__expression, + sym_command, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [40756] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5540), 1, anon_sym_LF, - STATE(2425), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5545), 59, + ACTIONS(5291), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -278272,14 +278060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [41116] = 4, + [40827] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5551), 1, + ACTIONS(5542), 1, anon_sym_LF, - STATE(2426), 1, + STATE(2423), 1, sym_comment, - ACTIONS(5549), 59, + ACTIONS(5345), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -278339,87 +278127,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [41187] = 6, + [40898] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token2, - STATE(2427), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(209), 1, + anon_sym_CARET, + ACTIONS(369), 1, + sym_cmd_identifier, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(397), 1, + anon_sym_if, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(2424), 1, sym_comment, - ACTIONS(807), 15, - anon_sym_GT, + STATE(4150), 1, + sym_val_range, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(4976), 1, + sym_val_number, + STATE(5194), 1, + sym_val_variable, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8708), 1, + sym_ctrl_if, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(8710), 3, + sym_block, + sym__expression, + sym_command, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [41041] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5546), 1, + anon_sym_LF, + STATE(2425), 1, + sym_comment, + ACTIONS(5544), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, anon_sym_DASH, - anon_sym_in, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, anon_sym_PLUS, - anon_sym_LT2, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 43, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [41112] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + anon_sym_LF, + STATE(2426), 1, + sym_comment, + ACTIONS(5548), 59, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [41262] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [41183] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2428), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(861), 58, + ACTIONS(5552), 1, + aux_sym_unquoted_token5, + STATE(2427), 1, + sym_comment, + ACTIONS(1191), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -278427,6 +278385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -278464,8 +278423,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278475,18 +278432,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [41333] = 6, + [41256] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, + ACTIONS(829), 1, sym__entry_separator, - ACTIONS(5366), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5557), 1, + ACTIONS(5556), 1, anon_sym_DOT2, - STATE(2429), 1, + ACTIONS(5558), 1, + aux_sym_unquoted_token4, + ACTIONS(5560), 1, + aux_sym_unquoted_token6, + STATE(2428), 1, sym_comment, - ACTIONS(807), 57, + ACTIONS(5554), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -278533,8 +278495,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278542,16 +278502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - [41408] = 4, + [41335] = 4, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(5562), 1, anon_sym_LF, - STATE(2430), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5560), 59, + ACTIONS(5075), 59, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -278611,26 +278570,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [41479] = 4, + [41406] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, - anon_sym_LF, - STATE(2431), 1, + ACTIONS(5371), 1, + aux_sym__immediate_decimal_token2, + STATE(2430), 1, sym_comment, - ACTIONS(1397), 58, - anon_sym_SEMI, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -278657,7 +278617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -278668,6 +278627,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278675,30 +278636,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [41549] = 6, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [41479] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(5564), 1, - anon_sym_DOT2, - ACTIONS(5566), 1, - aux_sym_unquoted_token6, - STATE(2432), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(2431), 1, sym_comment, - ACTIONS(861), 56, + ACTIONS(1387), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -278725,6 +278684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -278735,8 +278695,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278744,20 +278702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [41623] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [41549] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2433), 1, - sym_comment, - ACTIONS(846), 2, + ACTIONS(5564), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 57, + STATE(2432), 1, + sym_comment, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -278790,6 +278751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -278800,8 +278762,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278809,116 +278769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [41693] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_LBRACK, - ACTIONS(5571), 1, - anon_sym_LPAREN, - ACTIONS(5574), 1, - anon_sym_DOLLAR, - ACTIONS(5577), 1, - anon_sym_DASH_DASH, - ACTIONS(5580), 1, - anon_sym_DASH, - ACTIONS(5583), 1, - anon_sym_LBRACE, - ACTIONS(5586), 1, - anon_sym_DOT, - ACTIONS(5589), 1, - anon_sym_PLUS, - ACTIONS(5592), 1, - anon_sym_null, - ACTIONS(5598), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5610), 1, - sym_val_date, - ACTIONS(5613), 1, - anon_sym_DQUOTE, - ACTIONS(5619), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token1, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - STATE(11376), 1, - sym_val_entry, - ACTIONS(5595), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2434), 2, - sym_comment, - aux_sym_list_body_repeat1, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(5601), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5604), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(5607), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 11, - sym_val_nothing, - sym_val_bool, - 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, - [41831] = 4, + [41621] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, + ACTIONS(1219), 1, anon_sym_LF, - STATE(2435), 1, + STATE(2433), 1, sym_comment, - ACTIONS(1321), 58, + ACTIONS(1217), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -278977,39 +278837,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [41901] = 4, - ACTIONS(105), 1, + [41691] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2436), 1, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token2, + STATE(2434), 1, sym_comment, - ACTIONS(1191), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(855), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(857), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -279023,46 +278890,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [41971] = 4, + [41763] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_LF, - STATE(2437), 1, + STATE(2435), 1, sym_comment, - ACTIONS(990), 58, - anon_sym_SEMI, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -279089,7 +278949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -279100,6 +278959,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -279107,41 +278968,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [42041] = 4, - ACTIONS(105), 1, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [41833] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2438), 1, - sym_comment, - ACTIONS(1261), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(5568), 1, anon_sym_DOT2, - ACTIONS(1259), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(5571), 1, + aux_sym__immediate_decimal_token2, + STATE(2436), 1, + sym_comment, + ACTIONS(846), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(848), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -279155,34 +279024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [42111] = 4, + [41907] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(1335), 1, anon_sym_LF, - STATE(2439), 1, + STATE(2437), 1, sym_comment, - ACTIONS(1325), 58, + ACTIONS(1333), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -279241,127 +279104,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [42181] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2881), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3345), 1, - anon_sym_DASH_DASH, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5115), 1, - anon_sym_DASH, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(5119), 1, - anon_sym_PLUS, - ACTIONS(5121), 1, - aux_sym__val_number_decimal_token1, - STATE(2434), 1, - aux_sym_list_body_repeat1, - STATE(2440), 1, - sym_comment, - STATE(5243), 1, - sym__var, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6199), 1, - sym__val_number, - STATE(6493), 1, - sym_long_flag_equals_value, - STATE(8426), 1, - sym__val_number_decimal, - STATE(9807), 1, - sym_val_number, - STATE(9975), 1, - sym_expr_parenthesized, - STATE(10182), 1, - sym_val_entry, - STATE(10229), 1, - sym__expr_unary_minus, - STATE(10234), 1, - sym__list_item_expression, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(10212), 2, - sym_val_range, - sym__value, - ACTIONS(2865), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5123), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(10235), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6201), 11, - sym_val_nothing, - sym_val_bool, - 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, - [42321] = 4, + [41977] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(2441), 1, + STATE(2438), 1, sym_comment, - ACTIONS(1332), 58, - anon_sym_SEMI, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -279388,7 +279149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -279399,6 +279159,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -279406,52 +279168,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [42391] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [42047] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_DOT2, - ACTIONS(5632), 1, - aux_sym_unquoted_token4, - ACTIONS(5634), 1, - aux_sym_unquoted_token6, - STATE(2442), 1, + ACTIONS(1339), 1, + anon_sym_LF, + STATE(2439), 1, sym_comment, - ACTIONS(5628), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(825), 40, + ACTIONS(1337), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -279465,28 +279216,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [42469] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [42117] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2443), 1, + STATE(2440), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(857), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(889), 57, + ACTIONS(855), 57, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -279544,14 +279302,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - [42539] = 4, + [42187] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1355), 1, anon_sym_LF, - STATE(2444), 1, + STATE(2441), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1353), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -279610,21 +279368,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [42609] = 5, + [42257] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5636), 1, - anon_sym_DOT2, - STATE(2445), 1, + STATE(2442), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 56, - anon_sym_SEMI, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 57, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -279657,7 +279413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -279668,6 +279423,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -279675,41 +279432,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [42681] = 4, - ACTIONS(105), 1, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [42327] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - STATE(2446), 1, + ACTIONS(5404), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5573), 1, + anon_sym_DOT2, + STATE(2443), 1, sym_comment, - ACTIONS(1102), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(815), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(817), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -279723,59 +279488,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [42401] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - [42751] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(2447), 1, - sym_comment, - ACTIONS(1263), 58, - anon_sym_SEMI, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, anon_sym_LBRACK, + ACTIONS(5578), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5580), 1, anon_sym_DOLLAR, + ACTIONS(5582), 1, + anon_sym_DASH, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2444), 1, + sym_comment, + STATE(3134), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(7944), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [42541] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5600), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5602), 1, + aux_sym__immediate_decimal_token2, + STATE(2445), 1, + sym_comment, + ACTIONS(807), 15, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(809), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -279789,40 +279657,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [42615] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - [42821] = 5, + ACTIONS(2902), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3363), 1, + anon_sym_DASH_DASH, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5117), 1, + anon_sym_DASH, + ACTIONS(5119), 1, + anon_sym_DOT, + ACTIONS(5121), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + aux_sym__val_number_decimal_token1, + STATE(2446), 1, + sym_comment, + STATE(2450), 1, + aux_sym_list_body_repeat1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10185), 1, + sym_val_entry, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10277), 1, + sym__list_item_expression, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(2886), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5125), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 11, + sym_val_nothing, + sym_val_bool, + 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, + [42755] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4720), 1, - aux_sym_unquoted_token3, - STATE(2448), 1, - sym_comment, - ACTIONS(825), 2, - ts_builtin_sym_end, + ACTIONS(1347), 1, anon_sym_LF, - ACTIONS(823), 56, + STATE(2447), 1, + sym_comment, + ACTIONS(1345), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -279830,6 +279791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -279876,25 +279838,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [42893] = 4, + [42825] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2449), 1, + ACTIONS(1376), 1, + anon_sym_LF, + STATE(2448), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 57, + ACTIONS(1374), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -279921,6 +279884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -279931,8 +279895,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -279940,83 +279902,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [42963] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [42895] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5463), 1, - aux_sym__immediate_decimal_token2, - STATE(2450), 1, - sym_comment, - ACTIONS(815), 16, - anon_sym_GT, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5582), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5588), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2449), 1, + sym_comment, + STATE(3135), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(7994), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(817), 42, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [43035] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5604), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(5607), 1, anon_sym_LPAREN, + ACTIONS(5610), 1, anon_sym_DOLLAR, + ACTIONS(5613), 1, + anon_sym_DASH_DASH, + ACTIONS(5616), 1, + anon_sym_DASH, + ACTIONS(5619), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(5622), 1, + anon_sym_DOT, + ACTIONS(5625), 1, + anon_sym_PLUS, + ACTIONS(5628), 1, anon_sym_null, + ACTIONS(5634), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5646), 1, + sym_val_date, + ACTIONS(5649), 1, + anon_sym_DQUOTE, + ACTIONS(5655), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5658), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5661), 1, + aux_sym__unquoted_in_list_token1, + STATE(5149), 1, + sym__var, + STATE(5971), 1, + sym_val_variable, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6204), 1, + sym__val_number, + STATE(6580), 1, + sym_long_flag_equals_value, + STATE(8401), 1, + sym__val_number_decimal, + STATE(9720), 1, + sym_val_number, + STATE(9939), 1, + sym_expr_parenthesized, + STATE(10202), 1, + sym__expr_unary_minus, + STATE(10277), 1, + sym__list_item_expression, + STATE(10939), 1, + sym_val_entry, + ACTIONS(5631), 2, anon_sym_true, anon_sym_false, + ACTIONS(5652), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2450), 2, + sym_comment, + aux_sym_list_body_repeat1, + STATE(10229), 2, + sym_val_range, + sym__value, + ACTIONS(5637), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5640), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43035] = 4, + ACTIONS(5643), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(10168), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6113), 11, + sym_val_nothing, + sym_val_bool, + 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, + [43173] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1383), 1, anon_sym_LF, STATE(2451), 1, sym_comment, - ACTIONS(1338), 58, + ACTIONS(1381), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280075,14 +280171,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43105] = 4, + [43243] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1084), 1, anon_sym_LF, STATE(2452), 1, sym_comment, - ACTIONS(1338), 58, + ACTIONS(1082), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280141,16 +280237,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43175] = 4, + [43313] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4536), 1, + aux_sym_unquoted_token3, STATE(2453), 1, sym_comment, - ACTIONS(1224), 3, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 56, + ACTIONS(827), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280207,18 +280304,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43245] = 4, + [43385] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, STATE(2454), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1211), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -280226,7 +280324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -280273,151 +280370,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43315] = 39, - ACTIONS(3), 1, + [43455] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(1385), 1, + anon_sym_LF, + STATE(2455), 1, + sym_comment, + ACTIONS(1255), 58, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2455), 1, - sym_comment, - STATE(3370), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7916), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [43455] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5664), 1, - anon_sym_DOT2, - ACTIONS(5666), 1, - aux_sym_unquoted_token4, - ACTIONS(5668), 1, - aux_sym_unquoted_token6, - STATE(2456), 1, - sym_comment, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 13, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(825), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -280431,39 +280416,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [43533] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [43525] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(2457), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5664), 1, + anon_sym_DOT2, + ACTIONS(5666), 1, + aux_sym_unquoted_token6, + STATE(2456), 1, sym_comment, - ACTIONS(1263), 58, - anon_sym_SEMI, + ACTIONS(877), 56, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -280490,7 +280484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -280501,6 +280494,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -280508,16 +280503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [43603] = 4, + aux_sym__unquoted_in_list_token1, + [43599] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2458), 1, + STATE(2457), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280576,25 +280570,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43673] = 4, + [43669] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2459), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(2458), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 57, + ACTIONS(1387), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -280621,6 +280616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -280631,8 +280627,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -280640,16 +280634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [43743] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [43739] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2460), 1, + STATE(2459), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280708,14 +280702,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43813] = 4, + [43809] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2461), 1, + STATE(2460), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -280774,350 +280768,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [43883] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2462), 1, - sym_comment, - STATE(3380), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7989), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [44023] = 39, - ACTIONS(3), 1, + [43879] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2463), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(2461), 1, sym_comment, - STATE(3476), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(8042), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [44163] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(1387), 58, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2464), 1, - sym_comment, - STATE(3384), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7980), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [44303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5672), 1, - aux_sym__immediate_decimal_token2, - STATE(2465), 1, - sym_comment, - ACTIONS(807), 15, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(809), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -281131,28 +280814,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [44377] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [43949] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2466), 1, + STATE(2462), 1, sym_comment, - ACTIONS(1342), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281211,20 +280900,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [44447] = 5, + [44019] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5674), 1, - aux_sym_unquoted_token5, - STATE(2467), 1, - sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(1343), 1, anon_sym_LF, - ACTIONS(1193), 56, + STATE(2463), 1, + sym_comment, + ACTIONS(1341), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -281232,6 +280919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -281278,14 +280966,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [44519] = 4, + [44089] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2468), 1, + STATE(2464), 1, sym_comment, - ACTIONS(1346), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281344,14 +281032,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [44589] = 4, + [44159] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2469), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281410,14 +281098,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [44659] = 4, + [44229] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2470), 1, + STATE(2466), 1, sym_comment, - ACTIONS(1259), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281476,39 +281164,47 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [44729] = 4, - ACTIONS(105), 1, + [44299] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1311), 1, - anon_sym_LF, - STATE(2471), 1, + ACTIONS(5668), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5670), 1, + aux_sym__immediate_decimal_token2, + STATE(2467), 1, sym_comment, - ACTIONS(1309), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(815), 15, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(817), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -281522,67 +281218,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [44799] = 6, - ACTIONS(3), 1, + [44373] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5676), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5678), 1, - aux_sym__immediate_decimal_token2, - STATE(2472), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(2468), 1, sym_comment, - ACTIONS(815), 15, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(817), 42, + ACTIONS(1387), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -281596,129 +281278,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [44873] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2473), 1, - sym_comment, - STATE(3376), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7954), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [45013] = 4, + [44443] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1315), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(2474), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1313), 58, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281777,19 +281364,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45083] = 4, + [44513] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2475), 1, - sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, + ACTIONS(1389), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 56, + STATE(2470), 1, + sym_comment, + ACTIONS(1387), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -281797,6 +281383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -281843,14 +281430,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45153] = 4, + [44583] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, + ACTIONS(1305), 1, anon_sym_LF, - STATE(2476), 1, + STATE(2471), 1, sym_comment, - ACTIONS(1317), 58, + ACTIONS(1303), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281909,14 +281496,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45223] = 4, + [44653] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1359), 1, anon_sym_LF, - STATE(2477), 1, + STATE(2472), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1357), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -281975,119 +281562,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45293] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2478), 1, - sym_comment, - STATE(3378), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7955), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [45433] = 4, + [44723] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(2479), 1, + STATE(2473), 1, sym_comment, - ACTIONS(1033), 58, + ACTIONS(1215), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -282095,7 +281582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -282142,135 +281628,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45503] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5644), 1, - anon_sym_DASH, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2480), 1, - sym_comment, - STATE(3417), 1, - sym__flag, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_long_flag_equals_value, - STATE(7236), 1, - sym_val_range, - STATE(7983), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6942), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [45643] = 4, + [44793] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(2481), 1, + ACTIONS(5564), 1, + anon_sym_DOT2, + STATE(2474), 1, sym_comment, - ACTIONS(1350), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(1253), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1257), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 26, + anon_sym_GT, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -282289,6 +281668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(1251), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -282309,34 +281697,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45713] = 4, + [44869] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(1253), 1, anon_sym_LF, - STATE(2482), 1, + STATE(2475), 1, sym_comment, - ACTIONS(1354), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(1257), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 26, + anon_sym_GT, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -282355,6 +281734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(1251), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -282375,14 +281765,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45783] = 4, + [44943] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(1309), 1, anon_sym_LF, - STATE(2483), 1, + STATE(2476), 1, sym_comment, - ACTIONS(1385), 58, + ACTIONS(1307), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282441,14 +281831,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45853] = 5, + [45013] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - aux_sym__immediate_decimal_token2, - STATE(2484), 1, + ACTIONS(5674), 1, + anon_sym_DOT2, + ACTIONS(5676), 1, + aux_sym_unquoted_token4, + ACTIONS(5678), 1, + aux_sym_unquoted_token6, + STATE(2477), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(5672), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -282459,20 +281856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(809), 42, + ACTIONS(829), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -282503,30 +281897,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [45925] = 6, + [45091] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(1363), 1, anon_sym_LF, - STATE(2485), 1, + STATE(2478), 1, sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 26, + ACTIONS(1361), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -282545,17 +281947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1243), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -282576,41 +281967,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [45999] = 4, + [45161] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2486), 1, + STATE(2479), 1, sym_comment, - ACTIONS(1389), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5684), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1391), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -282642,14 +282038,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46069] = 4, + [45241] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2487), 1, + STATE(2480), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(5682), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5686), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5684), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 50, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282658,18 +282065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -282708,44 +282107,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46139] = 4, + [45317] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2488), 1, + STATE(2481), 1, sym_comment, - ACTIONS(1263), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5684), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1391), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -282774,14 +282179,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46209] = 4, + [45399] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1370), 1, anon_sym_LF, - STATE(2489), 1, + STATE(2482), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(1368), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282840,14 +282245,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46279] = 4, + [45469] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2490), 1, + STATE(2483), 1, sym_comment, - ACTIONS(1263), 58, + ACTIONS(5686), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5684), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 52, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282861,12 +282274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -282906,14 +282313,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46349] = 4, + [45543] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2491), 1, + STATE(2484), 1, sym_comment, - ACTIONS(1358), 58, + ACTIONS(5686), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282928,8 +282338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -282972,14 +282380,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46419] = 4, + [45615] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1409), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2492), 1, + STATE(2485), 1, sym_comment, - ACTIONS(1247), 58, + ACTIONS(5682), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5686), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5684), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 48, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -282988,20 +282410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -283038,46 +282450,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46489] = 4, + [45693] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1276), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2493), 1, + STATE(2486), 1, sym_comment, - ACTIONS(1274), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5684), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -283104,26 +282523,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46559] = 4, + [45777] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_LF, - STATE(2494), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5694), 1, + anon_sym_DOT2, + ACTIONS(5696), 1, + aux_sym_unquoted_token6, + STATE(2487), 1, sym_comment, - ACTIONS(1278), 58, - anon_sym_SEMI, + ACTIONS(877), 56, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -283150,7 +282571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -283161,6 +282581,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -283168,50 +282590,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [46629] = 4, + aux_sym__unquoted_in_list_token1, + [45851] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2495), 1, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + ACTIONS(5700), 1, + anon_sym_bit_DASHxor, + STATE(2488), 1, sym_comment, - ACTIONS(1305), 58, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5684), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1391), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -283236,12 +282666,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46699] = 9, + [45939] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2496), 1, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + ACTIONS(5700), 1, + anon_sym_bit_DASHxor, + ACTIONS(5702), 1, + anon_sym_bit_DASHor, + STATE(2489), 1, sym_comment, ACTIONS(5682), 2, anon_sym_DASH, @@ -283252,11 +282688,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5688), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, ACTIONS(5684), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, ACTIONS(5680), 6, anon_sym_GT, anon_sym_EQ_EQ, @@ -283264,7 +282708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 42, + ACTIONS(1391), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283272,18 +282716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -283307,12 +282742,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46779] = 7, + [46029] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2497), 1, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + ACTIONS(5700), 1, + anon_sym_bit_DASHxor, + ACTIONS(5702), 1, + anon_sym_bit_DASHor, + ACTIONS(5704), 1, + anon_sym_and, + STATE(2490), 1, sym_comment, ACTIONS(5682), 2, anon_sym_DASH, @@ -283320,40 +282763,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, ACTIONS(5684), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 50, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_not, @@ -283376,185 +282819,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [46855] = 6, + [46121] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(5690), 1, - anon_sym_DOT2, - ACTIONS(5692), 1, - aux_sym_unquoted_token6, - STATE(2498), 1, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + ACTIONS(5700), 1, + anon_sym_bit_DASHxor, + ACTIONS(5702), 1, + anon_sym_bit_DASHor, + ACTIONS(5704), 1, + anon_sym_and, + ACTIONS(5706), 1, + anon_sym_xor, + STATE(2491), 1, sym_comment, - ACTIONS(861), 56, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5688), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5684), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [46929] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2499), 1, - sym_comment, - ACTIONS(5694), 17, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5696), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [46999] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1284), 1, - anon_sym_LF, - STATE(2500), 1, - sym_comment, - ACTIONS(1282), 58, + ACTIONS(1391), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, anon_sym_or, anon_sym_not, anon_sym_null, @@ -283576,12 +282897,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47069] = 10, + [46215] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(2501), 1, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + ACTIONS(5700), 1, + anon_sym_bit_DASHxor, + ACTIONS(5702), 1, + anon_sym_bit_DASHor, + ACTIONS(5704), 1, + anon_sym_and, + ACTIONS(5706), 1, + anon_sym_xor, + ACTIONS(5708), 1, + anon_sym_or, + STATE(2492), 1, sym_comment, ACTIONS(5682), 2, anon_sym_DASH, @@ -283592,12 +282925,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5688), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, ACTIONS(5684), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, + ACTIONS(5690), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -283609,7 +282945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 38, + ACTIONS(1391), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283620,14 +282956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -283648,22 +282976,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47151] = 6, + [46311] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(911), 1, anon_sym_LF, - STATE(2502), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5686), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5684), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 52, + ACTIONS(909), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283677,6 +282997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -283716,14 +283042,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47225] = 4, + [46381] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1403), 1, + ACTIONS(1223), 1, anon_sym_LF, - STATE(2503), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1401), 58, + ACTIONS(1221), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283782,17 +283108,80 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47295] = 5, + [46451] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2495), 1, + sym_comment, + ACTIONS(5710), 17, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5712), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [46521] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1423), 1, anon_sym_LF, - STATE(2504), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5686), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 56, + ACTIONS(1421), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283807,6 +283196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -283849,28 +283240,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47367] = 8, + [46591] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1268), 1, anon_sym_LF, - STATE(2505), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5682), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5684), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 48, + ACTIONS(1266), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -283879,10 +283256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -283919,53 +283306,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47445] = 11, + [46661] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(2506), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5682), 2, + ACTIONS(1219), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -283992,131 +283372,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47529] = 12, + [46731] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1268), 1, anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - STATE(2507), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5682), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 35, + ACTIONS(1266), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [47615] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - ACTIONS(5704), 1, - anon_sym_bit_DASHxor, - STATE(2508), 1, - sym_comment, - ACTIONS(5682), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -284141,14 +283438,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47703] = 4, + [46801] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1272), 1, anon_sym_LF, - STATE(2509), 1, + STATE(2500), 1, sym_comment, - ACTIONS(1193), 58, + ACTIONS(1270), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284207,59 +283504,49 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47773] = 14, + [46871] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1439), 1, anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - ACTIONS(5704), 1, - anon_sym_bit_DASHxor, - ACTIONS(5706), 1, - anon_sym_bit_DASHor, - STATE(2510), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5682), 2, + ACTIONS(1437), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -284283,61 +283570,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47863] = 15, + [46941] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - ACTIONS(5704), 1, - anon_sym_bit_DASHxor, - ACTIONS(5706), 1, - anon_sym_bit_DASHor, - ACTIONS(5708), 1, - anon_sym_and, - STATE(2511), 1, + ACTIONS(5714), 1, + aux_sym_unquoted_token5, + STATE(2502), 1, sym_comment, - ACTIONS(5682), 2, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_not, @@ -284360,143 +283637,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [47955] = 16, + [47013] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1321), 1, anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - ACTIONS(5704), 1, - anon_sym_bit_DASHxor, - ACTIONS(5706), 1, - anon_sym_bit_DASHor, - ACTIONS(5708), 1, - anon_sym_and, - ACTIONS(5710), 1, - anon_sym_xor, - STATE(2512), 1, + STATE(2503), 1, sym_comment, - ACTIONS(5682), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 31, + ACTIONS(1319), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [48049] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(5702), 1, - anon_sym_bit_DASHand, - ACTIONS(5704), 1, - anon_sym_bit_DASHxor, - ACTIONS(5706), 1, - anon_sym_bit_DASHor, - ACTIONS(5708), 1, - anon_sym_and, - ACTIONS(5710), 1, - anon_sym_xor, - ACTIONS(5712), 1, - anon_sym_or, - STATE(2513), 1, - sym_comment, - ACTIONS(5682), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5686), 2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5688), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5700), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5684), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5698), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5680), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_null, anon_sym_true, @@ -284517,14 +283703,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48145] = 6, + [47083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, - aux_sym__immediate_decimal_token1, ACTIONS(5716), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5718), 1, aux_sym__immediate_decimal_token2, - STATE(2514), 1, + STATE(2504), 1, sym_comment, ACTIONS(815), 16, anon_sym_DOLLAR, @@ -284585,14 +283771,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48219] = 4, + [47157] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1254), 1, + ACTIONS(951), 1, anon_sym_LF, - STATE(2515), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1252), 58, + ACTIONS(949), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284651,80 +283837,487 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48289] = 4, - ACTIONS(105), 1, + [47227] = 39, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_LF, - STATE(2516), 1, - sym_comment, - ACTIONS(1393), 58, - anon_sym_SEMI, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, anon_sym_LBRACK, + ACTIONS(5578), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5580), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5582), 1, anon_sym_DASH, - anon_sym_in, + ACTIONS(5584), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5586), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5588), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(5590), 1, anon_sym_not, - anon_sym_null, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2506), 1, + sym_comment, + STATE(3705), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(8029), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [47367] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - [48359] = 5, - ACTIONS(3), 1, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5582), 1, + anon_sym_DASH, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2507), 1, + sym_comment, + STATE(3707), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(7904), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [47507] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5582), 1, + anon_sym_DASH, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2508), 1, + sym_comment, + STATE(3708), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(8051), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [47647] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5582), 1, + anon_sym_DASH, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + STATE(2509), 1, + sym_comment, + STATE(3709), 1, + sym__flag, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, + sym_val_range, + STATE(8058), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [47787] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1193), 1, + anon_sym_LF, + STATE(2510), 1, + sym_comment, + ACTIONS(1191), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [47857] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5720), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5722), 1, aux_sym__immediate_decimal_token2, - STATE(2517), 1, + STATE(2511), 1, sym_comment, - ACTIONS(807), 15, + ACTIONS(807), 16, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -284733,20 +284326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 43, + ACTIONS(809), 41, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -284784,38 +284373,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48431] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [47931] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, - aux_sym__immediate_decimal_token2, - STATE(2518), 1, + ACTIONS(5726), 1, + anon_sym_DOT2, + ACTIONS(5728), 1, + aux_sym_unquoted_token4, + ACTIONS(5730), 1, + aux_sym_unquoted_token6, + STATE(2512), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(5724), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(846), 42, + aux_sym__unquoted_in_list_token1, + ACTIONS(829), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -284846,19 +284441,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48503] = 4, + [48009] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(931), 1, anon_sym_LF, - STATE(2519), 1, + STATE(2513), 1, sym_comment, - ACTIONS(1298), 58, + ACTIONS(929), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284917,14 +284511,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48573] = 4, + [48079] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1427), 1, anon_sym_LF, - STATE(2520), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1294), 58, + ACTIONS(1425), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -284983,14 +284577,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48643] = 4, + [48149] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1407), 1, + ACTIONS(1431), 1, anon_sym_LF, - STATE(2521), 1, + STATE(2515), 1, sym_comment, - ACTIONS(1405), 58, + ACTIONS(1429), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285049,47 +284643,105 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48713] = 6, - ACTIONS(3), 1, + [48219] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5720), 1, - anon_sym_DOT2, - ACTIONS(5723), 1, - aux_sym__immediate_decimal_token2, - STATE(2522), 1, + ACTIONS(1351), 1, + anon_sym_LF, + STATE(2516), 1, sym_comment, - ACTIONS(835), 16, + ACTIONS(1349), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(837), 41, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [48289] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1435), 1, + anon_sym_LF, + STATE(2517), 1, + sym_comment, + ACTIONS(1433), 58, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -285103,31 +284755,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48787] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [48359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5543), 1, + ACTIONS(5404), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, + STATE(2518), 1, sym_comment, - ACTIONS(815), 15, + ACTIONS(815), 16, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -285138,16 +284797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 43, + ACTIONS(817), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -285184,39 +284842,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48859] = 4, - ACTIONS(105), 1, + [48431] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2524), 1, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token2, + STATE(2519), 1, sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(815), 15, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -285230,34 +284895,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [48929] = 4, + [48503] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1088), 1, anon_sym_LF, - STATE(2525), 1, + STATE(2520), 1, sym_comment, - ACTIONS(1288), 58, + ACTIONS(1086), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285316,14 +284975,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [48999] = 4, + [48573] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1100), 1, + ACTIONS(1276), 1, anon_sym_LF, - STATE(2526), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1098), 58, + ACTIONS(1274), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285382,14 +285041,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [49069] = 4, + [48643] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1115), 1, + ACTIONS(1280), 1, anon_sym_LF, - STATE(2527), 1, + STATE(2522), 1, sym_comment, - ACTIONS(1113), 58, + ACTIONS(1278), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -285448,20 +285107,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [49139] = 6, + [48713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(5448), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5725), 1, - anon_sym_DOT2, - STATE(2528), 1, + STATE(2523), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(807), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -285472,15 +285128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, aux_sym_unquoted_token6, - ACTIONS(809), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(809), 43, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -285516,96 +285174,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49213] = 39, + [48785] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_DASH_DASH, - ACTIONS(3814), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(3315), 1, + anon_sym_DASH_DASH, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5644), 1, + ACTIONS(5582), 1, anon_sym_DASH, - ACTIONS(5646), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, + ACTIONS(5586), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(5652), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5654), 1, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - STATE(2529), 1, + STATE(2524), 1, sym_comment, - STATE(3302), 1, + STATE(3306), 1, sym__flag, - STATE(5217), 1, + STATE(5249), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, + STATE(5434), 1, sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, sym_expr_parenthesized, - STATE(6162), 1, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, sym__expr_binary_expression, - STATE(6931), 1, + STATE(6883), 1, sym_long_flag_equals_value, - STATE(7236), 1, + STATE(7237), 1, sym_val_range, - STATE(8063), 1, + STATE(8038), 1, sym__expression, - ACTIONS(3816), 2, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6942), 2, + STATE(6976), 2, sym_short_flag, sym_long_flag, - ACTIONS(3822), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6165), 3, + STATE(6139), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5656), 6, + ACTIONS(5594), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(6172), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -285617,19 +285275,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49353] = 6, + [48925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5728), 1, - anon_sym_DOT2, - ACTIONS(5731), 1, + ACTIONS(5408), 1, aux_sym__immediate_decimal_token2, - STATE(2530), 1, + STATE(2525), 1, sym_comment, - ACTIONS(835), 15, + ACTIONS(807), 16, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -285640,16 +285297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(837), 42, + ACTIONS(809), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -285685,16 +285342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49427] = 6, + [48997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5732), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5733), 1, - anon_sym_DOT2, - STATE(2531), 1, + STATE(2526), 1, sym_comment, - ACTIONS(807), 15, + ACTIONS(855), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -285710,7 +285365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - ACTIONS(809), 42, + ACTIONS(857), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -285718,6 +285373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -285753,14 +285409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49501] = 5, + [49069] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5736), 1, + ACTIONS(5734), 1, + anon_sym_DOT2, + ACTIONS(5737), 1, aux_sym__immediate_decimal_token2, - STATE(2532), 1, + STATE(2527), 1, sym_comment, - ACTIONS(844), 15, + ACTIONS(846), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -285776,7 +285434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - ACTIONS(846), 43, + ACTIONS(848), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -285784,7 +285442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -285820,17 +285477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49573] = 6, + [49143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5740), 1, + ACTIONS(5444), 1, aux_sym__immediate_decimal_token2, - STATE(2533), 1, + ACTIONS(5739), 1, + anon_sym_DOT2, + STATE(2528), 1, sym_comment, - ACTIONS(807), 16, - anon_sym_DOLLAR, + ACTIONS(815), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -285839,18 +285495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - ACTIONS(809), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -285886,30 +285545,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [49647] = 7, + [49217] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5636), 1, - anon_sym_DOT2, - STATE(2534), 1, - sym_comment, - ACTIONS(1245), 2, - ts_builtin_sym_end, + ACTIONS(1331), 1, anon_sym_LF, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 26, + STATE(2529), 1, + sym_comment, + ACTIONS(1329), 58, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -285928,15 +285591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1243), 28, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -285957,14 +285611,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [49723] = 4, + [49287] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1284), 1, anon_sym_LF, - STATE(2535), 1, + STATE(2530), 1, sym_comment, - ACTIONS(1005), 58, + ACTIONS(1282), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286023,97 +285677,96 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [49793] = 41, + [49357] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(923), 1, - sym_cmd_identifier, - ACTIONS(925), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, anon_sym_DASH_DASH, - ACTIONS(3160), 1, - aux_sym_unquoted_token1, - ACTIONS(5742), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5744), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5746), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5748), 1, + ACTIONS(5582), 1, anon_sym_DASH, - ACTIONS(5750), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5752), 1, + ACTIONS(5586), 1, anon_sym_DOT, - ACTIONS(5754), 1, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(5756), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5758), 1, - anon_sym_null, - ACTIONS(5762), 1, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5768), 1, - aux_sym__val_number_token5, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2536), 1, + STATE(2531), 1, sym_comment, - STATE(4664), 1, - sym__val_number_decimal, - STATE(4780), 1, + STATE(3187), 1, + sym__flag, + STATE(5249), 1, sym__var, - STATE(4933), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(4971), 1, + STATE(5646), 1, sym__val_number, - STATE(5215), 1, - sym_val_variable, - STATE(5319), 1, + STATE(5863), 1, sym_expr_parenthesized, - STATE(5431), 1, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(5438), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(5439), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(5539), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(6729), 1, + STATE(6693), 1, sym__expr_binary_expression, - STATE(7940), 1, - sym_unquoted, - STATE(7943), 1, - sym__expression, - STATE(8590), 1, + STATE(6883), 1, + sym_long_flag_equals_value, + STATE(7237), 1, sym_val_range, - ACTIONS(5760), 2, + STATE(8009), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5766), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(5776), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, + STATE(6976), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5540), 3, + STATE(6139), 3, sym_expr_unary, sym_expr_binary, sym__value, - STATE(5694), 11, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -286125,15 +285778,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49936] = 4, + [49497] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2532), 1, sym_comment, - ACTIONS(1311), 2, + ACTIONS(1223), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1309), 56, + anon_sym_DOT2, + ACTIONS(1221), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286190,15 +285844,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50005] = 4, + [49567] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2538), 1, + STATE(2533), 1, sym_comment, - ACTIONS(1319), 2, + ACTIONS(1187), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1317), 56, + anon_sym_DOT2, + ACTIONS(1185), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286255,18 +285910,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50074] = 4, + [49637] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2539), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(1263), 56, + STATE(2534), 1, + sym_comment, + ACTIONS(1054), 58, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, @@ -286274,6 +285929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -286320,177 +285976,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50143] = 5, - ACTIONS(3), 1, + [49707] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5740), 1, - aux_sym__immediate_decimal_token2, - STATE(2540), 1, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(5698), 1, + anon_sym_bit_DASHand, + STATE(2535), 1, sym_comment, - ACTIONS(807), 16, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(5682), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 41, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, + ACTIONS(5686), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5688), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5692), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5684), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5690), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5680), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [50214] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2541), 1, - sym_comment, - ACTIONS(5784), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5782), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [50283] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2542), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1391), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, @@ -286516,15 +286050,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50352] = 4, + [49793] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2543), 1, + STATE(2536), 1, sym_comment, - ACTIONS(1315), 2, + ACTIONS(1272), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1313), 56, + ACTIONS(1270), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286581,31 +286115,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50421] = 6, - ACTIONS(105), 1, + [49862] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, + ACTIONS(5718), 1, + aux_sym__immediate_decimal_token2, + STATE(2537), 1, sym_comment, - ACTIONS(1245), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 26, + ACTIONS(815), 16, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(817), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -286619,49 +286165,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1243), 28, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50494] = 7, + [49933] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(905), 1, sym__entry_separator, - ACTIONS(5786), 1, + ACTIONS(5742), 1, anon_sym_DOT2, - STATE(2545), 1, + STATE(2538), 1, sym_comment, - STATE(2629), 1, + STATE(2560), 1, + aux_sym_cell_path_repeat1, + STATE(2839), 1, sym_path, - STATE(3071), 1, - sym_cell_path, - ACTIONS(971), 54, + ACTIONS(903), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -286716,15 +286249,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [50569] = 4, + [50008] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1383), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1381), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286781,12 +286314,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50638] = 4, + [50077] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2547), 1, + ACTIONS(5722), 1, + aux_sym__immediate_decimal_token2, + STATE(2540), 1, sym_comment, - ACTIONS(889), 15, + ACTIONS(807), 16, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -286795,20 +286331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(891), 43, + ACTIONS(809), 41, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -286846,15 +286378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [50707] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [50148] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2541), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1321), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 56, + ACTIONS(1319), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -286911,24 +286445,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [50776] = 7, + [50217] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2549), 1, + STATE(2542), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3073), 1, - sym_cell_path, - ACTIONS(967), 54, + ACTIONS(1439), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1437), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -286961,6 +286490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -286978,112 +286508,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [50851] = 9, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [50286] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2550), 1, + ACTIONS(5744), 1, + aux_sym__immediate_decimal_token2, + STATE(2543), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(855), 16, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5792), 4, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5788), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [50930] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2551), 1, - sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + aux_sym_unquoted_token6, + ACTIONS(857), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5792), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 48, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -287097,193 +286560,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51005] = 10, + [50357] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2544), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1423), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5790), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5792), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 36, + ACTIONS(1421), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [51086] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5800), 1, - anon_sym_DOT2, - STATE(2553), 1, - sym_comment, - STATE(2639), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - ACTIONS(905), 13, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(903), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [51161] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2554), 1, - sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5794), 2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 50, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -287323,18 +286641,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51234] = 5, + [50426] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2555), 1, + STATE(2545), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5794), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 54, + ACTIONS(1333), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287347,6 +286662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -287389,38 +286706,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51305] = 4, - ACTIONS(105), 1, + [50495] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2556), 1, + ACTIONS(5746), 1, + anon_sym_DOT2, + ACTIONS(5749), 1, + aux_sym__immediate_decimal_token2, + STATE(2546), 1, sym_comment, - ACTIONS(1334), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1332), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(846), 16, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(848), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -287434,32 +286757,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51374] = 4, + [50568] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2557), 1, + ACTIONS(5718), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5751), 1, + anon_sym_DOT2, + STATE(2547), 1, sym_comment, - ACTIONS(844), 15, + ACTIONS(815), 16, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -287468,22 +286792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(846), 43, + ACTIONS(817), 40, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -287519,52 +286838,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [51443] = 11, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [50641] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2558), 1, + STATE(2548), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1339), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(1337), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -287591,15 +286905,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51526] = 4, + [50710] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2549), 1, sym_comment, - ACTIONS(1387), 2, + ACTIONS(1355), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1385), 56, + ACTIONS(1353), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287656,54 +286970,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51595] = 12, + [50779] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - STATE(2560), 1, + STATE(2550), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1385), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(1255), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, @@ -287729,56 +287035,47 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51680] = 13, + [50848] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - ACTIONS(5806), 1, - anon_sym_bit_DASHxor, - STATE(2561), 1, + STATE(2551), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(1387), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -287803,15 +287100,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51767] = 4, + [50917] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2562), 1, + STATE(2552), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -287868,58 +287165,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51836] = 14, + [50986] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - ACTIONS(5806), 1, - anon_sym_bit_DASHxor, - ACTIONS(5808), 1, - anon_sym_bit_DASHor, - STATE(2563), 1, + STATE(2553), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(1387), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -287943,63 +287230,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [51925] = 15, + [51055] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - ACTIONS(5806), 1, - anon_sym_bit_DASHxor, - ACTIONS(5808), 1, - anon_sym_bit_DASHor, - ACTIONS(5810), 1, - anon_sym_and, - STATE(2564), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(5754), 1, + anon_sym_DOT2, + STATE(2538), 1, + sym_path, + STATE(2554), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, + STATE(2877), 1, + sym_cell_path, + ACTIONS(933), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -288017,17 +287297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52016] = 4, + aux_sym__unquoted_in_list_token1, + [51130] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2565), 1, + STATE(2555), 1, sym_comment, - ACTIONS(1327), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1325), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288084,15 +287363,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52085] = 4, + [51199] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2566), 1, + STATE(2556), 1, sym_comment, - ACTIONS(1307), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1305), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288149,15 +287428,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52154] = 4, + [51268] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2567), 1, + STATE(2557), 1, sym_comment, - ACTIONS(1391), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1389), 56, + ACTIONS(929), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288214,19 +287493,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52223] = 4, + [51337] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(5757), 1, + anon_sym_DOT2, + STATE(2538), 1, + sym_path, + STATE(2558), 1, sym_comment, - ACTIONS(1323), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1321), 56, - anon_sym_SEMI, + STATE(2933), 1, + sym_cell_path, + ACTIONS(966), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -288259,7 +287543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -288277,66 +287560,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52292] = 16, + aux_sym__unquoted_in_list_token1, + [51412] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - ACTIONS(5806), 1, - anon_sym_bit_DASHxor, - ACTIONS(5808), 1, - anon_sym_bit_DASHor, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_xor, - STATE(2569), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2559), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, + STATE(2575), 1, + sym_path, + STATE(2982), 1, + sym_cell_path, + ACTIONS(933), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -288354,21 +287628,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52385] = 4, + aux_sym__unquoted_in_list_token1, + [51487] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2560), 1, sym_comment, - ACTIONS(1399), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1397), 56, - anon_sym_SEMI, + STATE(2566), 1, + aux_sym_cell_path_repeat1, + STATE(2839), 1, + sym_path, + ACTIONS(975), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(973), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -288401,7 +287678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -288419,21 +287695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52454] = 4, + aux_sym__unquoted_in_list_token1, + [51560] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2571), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2561), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 56, - anon_sym_SEMI, + STATE(2575), 1, + sym_path, + STATE(2959), 1, + sym_cell_path, + ACTIONS(966), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -288466,7 +287746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -288484,18 +287763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52523] = 5, + aux_sym__unquoted_in_list_token1, + [51635] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(975), 1, sym__entry_separator, - ACTIONS(5566), 1, - aux_sym_unquoted_token6, - STATE(2572), 1, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2562), 1, sym_comment, - ACTIONS(861), 56, + STATE(2566), 1, + aux_sym_cell_path_repeat1, + STATE(2839), 1, + sym_path, + ACTIONS(973), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -288542,8 +287824,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -288552,116 +287832,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [52594] = 17, - ACTIONS(105), 1, + [51710] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_bit_DASHand, - ACTIONS(5806), 1, - anon_sym_bit_DASHxor, - ACTIONS(5808), 1, - anon_sym_bit_DASHor, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_xor, - ACTIONS(5814), 1, - anon_sym_or, - STATE(2573), 1, + STATE(2563), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5802), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5792), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5798), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5788), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 28, - anon_sym_SEMI, + ACTIONS(5762), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52689] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2574), 1, - sym_comment, - ACTIONS(1395), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1393), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5760), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [51779] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2564), 1, + sym_comment, + ACTIONS(815), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(817), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -288675,35 +287948,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [52758] = 4, + [51848] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2575), 1, + STATE(2565), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1113), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288760,20 +288027,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52827] = 7, + [51917] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(944), 1, sym__entry_separator, - ACTIONS(5786), 1, + ACTIONS(5764), 1, anon_sym_DOT2, - STATE(2576), 1, + STATE(2839), 1, + sym_path, + STATE(2566), 2, sym_comment, - STATE(2625), 1, aux_sym_cell_path_repeat1, - STATE(2810), 1, - sym_path, - ACTIONS(975), 54, + ACTIONS(942), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -288828,15 +288094,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [52902] = 4, + [51990] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2577), 1, + STATE(2567), 1, sym_comment, - ACTIONS(1407), 2, + ACTIONS(1359), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1405), 56, + ACTIONS(1357), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -288893,43 +288159,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [52971] = 7, - ACTIONS(105), 1, + [52059] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2578), 1, + STATE(2568), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3046), 1, - sym_cell_path, - ACTIONS(990), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(807), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(809), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -288946,30 +288213,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [53046] = 4, + [52128] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2579), 1, + STATE(2569), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1098), 56, + ACTIONS(1054), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289026,24 +288289,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [53115] = 7, + [52197] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2580), 1, + STATE(2570), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3076), 1, - sym_cell_path, - ACTIONS(997), 54, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -289076,6 +288334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -289093,16 +288352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [53190] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [52266] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2581), 1, + STATE(2571), 1, sym_comment, - ACTIONS(815), 15, + ACTIONS(855), 16, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -289113,16 +288374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 43, + ACTIONS(857), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -289159,43 +288419,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [53259] = 7, - ACTIONS(105), 1, + [52335] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1003), 1, - sym__entry_separator, - ACTIONS(5786), 1, + ACTIONS(5767), 1, anon_sym_DOT2, - STATE(2582), 1, + ACTIONS(5770), 1, + aux_sym__immediate_decimal_token2, + STATE(2572), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3054), 1, - sym_cell_path, - ACTIONS(1001), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(846), 15, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(848), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -289212,53 +288475,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [53334] = 4, - ACTIONS(105), 1, + [52408] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2583), 1, + STATE(2573), 1, sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(894), 16, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + ACTIONS(896), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -289272,44 +288537,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [53403] = 7, + [52477] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(5816), 1, - anon_sym_DOT2, - ACTIONS(5818), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5820), 1, - aux_sym_unquoted_token2, - STATE(2584), 1, + STATE(2574), 1, sym_comment, - ACTIONS(1005), 54, + ACTIONS(1223), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1221), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -289342,6 +288596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -289359,84 +288614,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [53478] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [52546] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5800), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(5742), 1, anon_sym_DOT2, - STATE(2553), 1, - sym_path, - STATE(2585), 1, + STATE(2562), 1, + aux_sym_cell_path_repeat1, + STATE(2575), 1, sym_comment, - STATE(3004), 1, - sym_cell_path, - ACTIONS(999), 13, - anon_sym_COLON, + STATE(2839), 1, + sym_path, + ACTIONS(903), 54, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(997), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + aux_sym__unquoted_in_list_token1, + [52621] = 41, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(985), 1, + sym_identifier, + ACTIONS(987), 1, + anon_sym_DASH_DASH, + ACTIONS(3296), 1, + aux_sym_unquoted_token1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5774), 1, + anon_sym_LPAREN, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5782), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5786), 1, + anon_sym_not, + ACTIONS(5788), 1, + anon_sym_null, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, + ACTIONS(5798), 1, + aux_sym__val_number_token5, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2576), 1, + sym_comment, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5257), 1, + sym__val_number_decimal, + STATE(5537), 1, + sym__var, + STATE(6056), 1, + sym_expr_parenthesized, + STATE(6164), 1, + sym_val_variable, + STATE(6760), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(9276), 1, + sym__expression, + STATE(9296), 1, + sym_unquoted, + ACTIONS(5790), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5796), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [53553] = 4, + ACTIONS(5806), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5794), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(4598), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(4706), 11, + sym_val_nothing, + sym_val_bool, + 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, + [52764] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2586), 1, + STATE(2577), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(990), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289493,15 +288851,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [53622] = 4, + [52833] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2587), 1, + STATE(2578), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1387), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289558,47 +288916,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [53691] = 8, - ACTIONS(3), 1, + [52902] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5824), 1, - anon_sym_DOT2, - ACTIONS(5826), 1, - aux_sym_unquoted_token4, - ACTIONS(5828), 1, - aux_sym_unquoted_token6, - STATE(2588), 1, + STATE(2579), 1, sym_comment, - ACTIONS(5822), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 14, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(825), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -289612,59 +288961,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [53768] = 4, - ACTIONS(3), 1, + [52971] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2589), 1, + STATE(2580), 1, sym_comment, - ACTIONS(807), 15, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 43, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [53040] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2581), 1, + sym_comment, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -289678,58 +289091,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [53837] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [53109] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2590), 1, + STATE(2582), 1, sym_comment, - ACTIONS(889), 16, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(891), 42, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [53178] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2583), 1, + sym_comment, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -289743,26 +289221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [53906] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [53247] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(5602), 1, aux_sym__immediate_decimal_token2, - STATE(2591), 1, + STATE(2584), 1, sym_comment, ACTIONS(807), 15, anon_sym_GT, @@ -289823,15 +289307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [53977] = 4, + [53318] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2592), 1, + STATE(2585), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1347), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 56, + ACTIONS(1345), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289888,15 +289372,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54046] = 4, + [53387] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2593), 1, + STATE(2586), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1276), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1274), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -289953,12 +289437,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54115] = 4, + [53456] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2594), 1, + ACTIONS(5812), 1, + anon_sym_DOT2, + ACTIONS(5814), 1, + aux_sym_unquoted_token6, + STATE(2587), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(877), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -289974,15 +289462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - ACTIONS(809), 42, + ACTIONS(879), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -290018,23 +289504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [54184] = 6, + [53529] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2595), 1, + STATE(2588), 1, sym_comment, - STATE(2625), 1, - aux_sym_cell_path_repeat1, - STATE(2810), 1, - sym_path, - ACTIONS(977), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(975), 54, + ACTIONS(1363), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1361), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -290067,6 +289549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -290084,104 +289567,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [54257] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [53598] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(5818), 1, + anon_sym_DOT2, + ACTIONS(5820), 1, + aux_sym_unquoted_token4, + ACTIONS(5822), 1, + aux_sym_unquoted_token6, + STATE(2589), 1, sym_comment, - ACTIONS(5832), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(5830), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(5816), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 14, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_where, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [54326] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2597), 1, - sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1193), 56, - anon_sym_SEMI, + ACTIONS(829), 39, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -290195,53 +289623,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54395] = 4, + [53675] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2598), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1253), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(1257), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 26, + anon_sym_GT, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -290260,6 +289676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(1251), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_null, anon_sym_true, @@ -290280,15 +289705,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54464] = 4, + [53748] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2591), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1280), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 56, + ACTIONS(1278), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290345,111 +289770,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54533] = 7, - ACTIONS(105), 1, + [53817] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__entry_separator, - ACTIONS(5786), 1, + ACTIONS(5824), 1, anon_sym_DOT2, - STATE(2600), 1, + ACTIONS(5826), 1, + aux_sym_unquoted_token6, + STATE(2592), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3050), 1, - sym_cell_path, - ACTIONS(979), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(877), 14, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [54608] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(5834), 1, - anon_sym_DOT2, - STATE(2601), 1, - sym_comment, - STATE(2636), 1, - sym_path, - STATE(2847), 1, - sym_cell_path, - ACTIONS(997), 54, + ACTIONS(879), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -290466,50 +289826,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [54683] = 5, + [53890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(5670), 1, aux_sym__immediate_decimal_token2, - STATE(2602), 1, + ACTIONS(5828), 1, + anon_sym_DOT2, + STATE(2593), 1, sym_comment, - ACTIONS(815), 16, - anon_sym_DOLLAR, + ACTIONS(815), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, + aux_sym_unquoted_token1, ACTIONS(817), 41, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -290545,38 +289904,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [54754] = 6, + [53963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_DOT2, - ACTIONS(5840), 1, + ACTIONS(5831), 1, aux_sym__immediate_decimal_token2, - STATE(2603), 1, + STATE(2594), 1, sym_comment, - ACTIONS(835), 16, - anon_sym_DOLLAR, + ACTIONS(855), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(837), 40, + aux_sym_unquoted_token1, + ACTIONS(857), 42, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -290612,42 +289970,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [54034] = 40, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(987), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(5835), 1, + anon_sym_LPAREN, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5839), 1, + anon_sym_LBRACE, + ACTIONS(5841), 1, + anon_sym_DOT, + ACTIONS(5843), 1, + anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_not, + ACTIONS(5847), 1, + anon_sym_null, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5857), 1, + sym_val_date, + ACTIONS(5859), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(5865), 1, anon_sym_DOLLAR_DQUOTE, - [54827] = 4, + STATE(2595), 1, + sym_comment, + STATE(3000), 1, + sym_val_range, + STATE(5135), 1, + sym__val_number_decimal, + STATE(5149), 1, + sym__var, + STATE(5426), 1, + sym_val_number, + STATE(5653), 1, + sym__val_number, + STATE(5971), 1, + sym_val_variable, + STATE(6025), 1, + sym_expr_parenthesized, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6538), 1, + sym__expression, + STATE(6542), 1, + sym_unquoted, + STATE(6700), 1, + sym__expr_binary_expression, + ACTIONS(5849), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5861), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5853), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5855), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6109), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(6113), 11, + sym_val_nothing, + sym_val_bool, + 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, + [54175] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(2604), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1261), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1259), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5869), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5871), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1391), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -290679,15 +290141,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54896] = 4, + [54254] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2605), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 56, + ACTIONS(1266), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290744,15 +290206,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [54965] = 4, + [54323] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2606), 1, + STATE(2598), 1, sym_comment, - ACTIONS(1280), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1278), 56, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5871), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 48, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290760,17 +290233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -290809,15 +290274,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55034] = 4, + [54398] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1403), 2, + ACTIONS(1427), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1401), 56, + ACTIONS(1425), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -290874,46 +290339,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55103] = 6, - ACTIONS(3), 1, + [54467] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5842), 1, - anon_sym_DOT2, - ACTIONS(5844), 1, - aux_sym_unquoted_token6, - STATE(2608), 1, + STATE(2600), 1, sym_comment, - ACTIONS(861), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 42, + ACTIONS(1431), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1429), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -290927,62 +290384,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55176] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54536] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2609), 1, + STATE(2601), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3070), 1, - sym_cell_path, - ACTIONS(909), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5871), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1391), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -290991,6 +290455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291008,47 +290473,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [55251] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54617] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5672), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5846), 1, - anon_sym_DOT2, - STATE(2610), 1, + STATE(2602), 1, sym_comment, - ACTIONS(807), 15, + ACTIONS(1268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1266), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(809), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -291062,29 +290520,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55324] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54686] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1435), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1433), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291141,24 +290605,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55393] = 7, + [54755] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__entry_separator, - ACTIONS(5849), 1, - anon_sym_DOT2, - STATE(2612), 1, + STATE(2604), 1, sym_comment, - STATE(2636), 1, - sym_path, - STATE(2808), 1, - sym_cell_path, - ACTIONS(979), 54, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5871), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 50, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -291166,12 +290633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -291191,6 +290652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291208,47 +290670,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [55468] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54828] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5852), 1, - anon_sym_DOT2, - ACTIONS(5854), 1, - aux_sym_unquoted_token6, - STATE(2613), 1, + STATE(2605), 1, sym_comment, - ACTIONS(861), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 42, + ACTIONS(1219), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1217), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -291262,29 +290717,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55541] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [54897] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2614), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 54, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291297,8 +290761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -291341,15 +290803,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55610] = 4, + [54968] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2607), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1370), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 56, + ACTIONS(1368), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291406,16 +290868,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [55679] = 4, + [55037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2608), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(815), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -291426,15 +290887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, aux_sym_unquoted_token6, - ACTIONS(846), 42, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 43, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -291471,19 +290933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55748] = 4, + [55106] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2617), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5666), 1, + aux_sym_unquoted_token6, + STATE(2609), 1, sym_comment, - ACTIONS(1344), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 56, - anon_sym_SEMI, + ACTIONS(877), 56, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -291516,7 +290979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291527,6 +290989,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291534,17 +290998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [55817] = 5, + aux_sym__unquoted_in_list_token1, + [55177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5856), 1, - aux_sym__immediate_decimal_token2, - STATE(2618), 1, + STATE(2610), 1, sym_comment, - ACTIONS(844), 16, - anon_sym_DOLLAR, + ACTIONS(807), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -291553,16 +291013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - ACTIONS(846), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(809), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -291600,40 +291064,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [55888] = 4, - ACTIONS(105), 1, + [55246] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1284), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1282), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(855), 15, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(857), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -291647,62 +291115,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [55957] = 8, - ACTIONS(105), 1, + [55315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5790), 2, + ACTIONS(894), 15, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5794), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5796), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5792), 4, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 46, - anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(896), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -291716,35 +291180,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [56034] = 4, + [55384] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2613), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1305), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1303), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291801,15 +291259,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56103] = 4, + [55453] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2614), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 56, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5871), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 46, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -291817,19 +291289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -291866,24 +291328,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56172] = 7, + [55530] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2623), 1, + STATE(2615), 1, sym_comment, - STATE(2629), 1, - sym_path, - STATE(3062), 1, - sym_cell_path, - ACTIONS(1033), 54, + ACTIONS(1309), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1307), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -291916,6 +291373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -291933,46 +291391,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [56247] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, + STATE(2616), 1, sym_comment, - ACTIONS(1360), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1358), 56, - anon_sym_SEMI, + ACTIONS(5881), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(5879), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [55668] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2617), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -291999,23 +291530,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56316] = 6, + [55751] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__entry_separator, - ACTIONS(5858), 1, - anon_sym_DOT2, - STATE(2810), 1, - sym_path, - STATE(2625), 2, + STATE(2618), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 54, + ACTIONS(1351), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1349), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -292048,6 +291575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292065,47 +291593,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [56389] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55820] = 12, ACTIONS(105), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + STATE(2619), 1, sym_comment, - ACTIONS(1035), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 56, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(5869), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1391), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, @@ -292131,82 +291668,164 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56458] = 6, - ACTIONS(3), 1, + [55905] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5861), 1, - anon_sym_DOT2, - ACTIONS(5863), 1, - aux_sym_unquoted_token6, - STATE(2627), 1, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + ACTIONS(5887), 1, + anon_sym_bit_DASHxor, + STATE(2620), 1, sym_comment, - ACTIONS(861), 15, - anon_sym_GT, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, + anon_sym_PLUS, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(863), 41, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [55992] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + ACTIONS(5887), 1, + anon_sym_bit_DASHxor, + ACTIONS(5889), 1, + anon_sym_bit_DASHor, + STATE(2621), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(5875), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [56531] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [56081] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2628), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1104), 2, + ACTIONS(1284), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1102), 56, + ACTIONS(1282), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292263,24 +291882,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56600] = 7, + [56150] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT2, - STATE(2576), 1, - aux_sym_cell_path_repeat1, - STATE(2629), 1, + STATE(2623), 1, sym_comment, - STATE(2810), 1, - sym_path, - ACTIONS(903), 54, + ACTIONS(1331), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1329), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -292313,6 +291927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292330,51 +291945,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [56675] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [56219] = 15, ACTIONS(105), 1, anon_sym_POUND, - STATE(2630), 1, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + ACTIONS(5887), 1, + anon_sym_bit_DASHxor, + ACTIONS(5889), 1, + anon_sym_bit_DASHor, + ACTIONS(5891), 1, + anon_sym_and, + STATE(2624), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 56, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [56310] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + ACTIONS(5887), 1, + anon_sym_bit_DASHxor, + ACTIONS(5889), 1, + anon_sym_bit_DASHor, + ACTIONS(5891), 1, + anon_sym_and, + ACTIONS(5893), 1, + anon_sym_xor, + STATE(2625), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5873), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, + ACTIONS(1391), 29, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_or, anon_sym_not, anon_sym_null, @@ -292396,19 +292100,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56744] = 4, + [56403] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2631), 1, + ACTIONS(951), 1, + sym__entry_separator, + ACTIONS(5895), 1, + anon_sym_DOT2, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5899), 1, + aux_sym_unquoted_token2, + STATE(2626), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1005), 56, - anon_sym_SEMI, + ACTIONS(949), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -292441,7 +292150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -292459,18 +292167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [56813] = 5, + aux_sym__unquoted_in_list_token1, + [56478] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(961), 1, sym__entry_separator, - ACTIONS(5692), 1, - aux_sym_unquoted_token6, - STATE(2632), 1, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2575), 1, + sym_path, + STATE(2627), 1, sym_comment, - ACTIONS(861), 56, + STATE(3066), 1, + sym_cell_path, + ACTIONS(959), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -292517,8 +292228,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -292527,15 +292236,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [56884] = 4, + [56553] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2633), 1, + STATE(2628), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1084), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 56, + ACTIONS(1082), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292592,46 +292301,121 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [56953] = 6, - ACTIONS(3), 1, + [56622] = 17, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_DOT2, - ACTIONS(5868), 1, - aux_sym__immediate_decimal_token2, - STATE(2634), 1, + ACTIONS(5885), 1, + anon_sym_bit_DASHand, + ACTIONS(5887), 1, + anon_sym_bit_DASHxor, + ACTIONS(5889), 1, + anon_sym_bit_DASHor, + ACTIONS(5891), 1, + anon_sym_and, + ACTIONS(5893), 1, + anon_sym_xor, + ACTIONS(5901), 1, + anon_sym_or, + STATE(2629), 1, sym_comment, - ACTIONS(835), 15, - anon_sym_GT, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5869), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, + anon_sym_PLUS, + ACTIONS(5873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(5875), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(5883), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(5871), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(5877), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(5867), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(837), 41, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [56717] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(911), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2575), 1, + sym_path, + STATE(2630), 1, + sym_comment, + STATE(2957), 1, + sym_cell_path, + ACTIONS(909), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -292648,26 +292432,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [57026] = 4, + aux_sym__unquoted_in_list_token1, + [56792] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2635), 1, + STATE(2631), 1, sym_comment, - ACTIONS(1409), 2, + ACTIONS(1088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1247), 56, + ACTIONS(1086), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -292724,20 +292512,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [57095] = 7, + [56861] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(915), 1, sym__entry_separator, - ACTIONS(5786), 1, + ACTIONS(5742), 1, anon_sym_DOT2, - STATE(2595), 1, - aux_sym_cell_path_repeat1, - STATE(2636), 1, - sym_comment, - STATE(2810), 1, + STATE(2575), 1, sym_path, - ACTIONS(903), 54, + STATE(2632), 1, + sym_comment, + STATE(2965), 1, + sym_cell_path, + ACTIONS(913), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -292792,45 +292580,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [57170] = 5, - ACTIONS(3), 1, + [56936] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5870), 1, - aux_sym__immediate_decimal_token2, - STATE(2637), 1, + ACTIONS(919), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2575), 1, + sym_path, + STATE(2633), 1, sym_comment, - ACTIONS(844), 15, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(846), 42, + STATE(2968), 1, + sym_cell_path, + ACTIONS(917), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -292847,28 +292633,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [57241] = 6, + aux_sym__unquoted_in_list_token1, + [57011] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5872), 1, + ACTIONS(5903), 1, anon_sym_DOT2, - STATE(2856), 1, + STATE(2634), 1, + sym_comment, + STATE(2637), 1, sym_path, - STATE(2638), 2, + STATE(2973), 1, + sym_cell_path, + ACTIONS(968), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(966), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [57086] = 41, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(985), 1, + sym_cmd_identifier, + ACTIONS(987), 1, + anon_sym_DASH_DASH, + ACTIONS(3051), 1, + aux_sym_unquoted_token1, + ACTIONS(5905), 1, + anon_sym_LBRACK, + ACTIONS(5907), 1, + anon_sym_LPAREN, + ACTIONS(5909), 1, + anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, + anon_sym_LBRACE, + ACTIONS(5915), 1, + anon_sym_DOT, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5919), 1, + anon_sym_not, + ACTIONS(5921), 1, + anon_sym_null, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5931), 1, + aux_sym__val_number_token5, + ACTIONS(5935), 1, + sym_val_date, + ACTIONS(5937), 1, + anon_sym_DQUOTE, + ACTIONS(5941), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5943), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2635), 1, + sym_comment, + STATE(4567), 1, + sym__val_number_decimal, + STATE(4891), 1, + sym__var, + STATE(5016), 1, + sym_val_number, + STATE(5080), 1, + sym__val_number, + STATE(5252), 1, + sym_expr_parenthesized, + STATE(5352), 1, + sym_val_variable, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, + sym__inter_single_quotes, + STATE(5559), 1, + sym__inter_double_quotes, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(6719), 1, + sym__expr_binary_expression, + STATE(7949), 1, + sym__expression, + STATE(7950), 1, + sym_unquoted, + STATE(9052), 1, + sym_val_range, + ACTIONS(5923), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5929), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(5939), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5927), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5640), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5798), 11, + sym_val_nothing, + sym_val_bool, + 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, + [57229] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + anon_sym_DOT2, + STATE(2636), 1, sym_comment, + STATE(2644), 1, aux_sym_cell_path_repeat1, - ACTIONS(1017), 13, + STATE(2945), 1, + sym_path, + ACTIONS(975), 13, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -292882,7 +292843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1015), 42, + ACTIONS(973), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -292925,18 +292886,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [57314] = 7, + [57304] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, + ACTIONS(5903), 1, anon_sym_DOT2, - STATE(2638), 1, + STATE(2636), 1, aux_sym_cell_path_repeat1, - STATE(2639), 1, + STATE(2637), 1, sym_comment, - STATE(2856), 1, + STATE(2945), 1, sym_path, - ACTIONS(977), 13, + ACTIONS(905), 13, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -292950,7 +292911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(975), 42, + ACTIONS(903), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -292993,15 +292954,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [57389] = 4, + [57379] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(2638), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1343), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 56, + ACTIONS(1341), 56, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -293058,44 +293019,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [57458] = 4, - ACTIONS(3), 1, + [57448] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2641), 1, - sym_comment, - ACTIONS(815), 16, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5696), 1, aux_sym_unquoted_token6, - ACTIONS(817), 42, + STATE(2639), 1, + sym_comment, + ACTIONS(877), 56, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -293112,28 +293068,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [57527] = 6, + aux_sym__unquoted_in_list_token1, + [57519] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5740), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5875), 1, + ACTIONS(5945), 1, anon_sym_DOT2, - STATE(2642), 1, + ACTIONS(5947), 1, + aux_sym_unquoted_token6, + STATE(2640), 1, sym_comment, - ACTIONS(807), 16, - anon_sym_DOLLAR, + ACTIONS(877), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -293142,16 +293103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 40, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -293188,21 +293152,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [57600] = 4, + [57592] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2643), 1, + ACTIONS(927), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2575), 1, + sym_path, + STATE(2641), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 56, - anon_sym_SEMI, + STATE(3025), 1, + sym_cell_path, + ACTIONS(925), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -293235,7 +293202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -293253,21 +293219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [57669] = 4, + aux_sym__unquoted_in_list_token1, + [57667] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2644), 1, + ACTIONS(931), 1, + sym__entry_separator, + ACTIONS(5742), 1, + anon_sym_DOT2, + STATE(2575), 1, + sym_path, + STATE(2642), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 56, - anon_sym_SEMI, + STATE(3039), 1, + sym_cell_path, + ACTIONS(929), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, @@ -293300,7 +293270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -293318,47 +293287,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [57738] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [57742] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5678), 1, - aux_sym__immediate_decimal_token2, - STATE(2645), 1, + STATE(2643), 1, sym_comment, - ACTIONS(815), 15, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(817), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -293372,235 +293333,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [57809] = 41, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [57811] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(925), 1, - anon_sym_DASH_DASH, - ACTIONS(3050), 1, - aux_sym_unquoted_token1, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(5949), 1, + anon_sym_DOT2, + STATE(2945), 1, + sym_path, + STATE(2644), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(944), 13, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5882), 1, anon_sym_DOLLAR, - ACTIONS(5884), 1, - anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5888), 1, - anon_sym_DOT, - ACTIONS(5890), 1, + anon_sym_RBRACE, anon_sym_PLUS, - ACTIONS(5892), 1, - anon_sym_not, - ACTIONS(5894), 1, - anon_sym_null, - ACTIONS(5898), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5904), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token5, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2646), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5151), 1, - sym__val_number_decimal, - STATE(5680), 1, - sym__var, - STATE(6125), 1, - sym_expr_parenthesized, - STATE(6207), 1, - sym_val_variable, - STATE(6858), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(9495), 1, - sym__expression, - STATE(9499), 1, - sym_unquoted, - ACTIONS(5896), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5902), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(5912), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(4721), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(4655), 11, - sym_val_nothing, - sym_val_bool, - 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, - [57952] = 40, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(925), 1, - sym__entry_separator, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5918), 1, - anon_sym_LBRACK, - ACTIONS(5920), 1, - anon_sym_LPAREN, - ACTIONS(5922), 1, + ACTIONS(942), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5924), 1, - anon_sym_LBRACE, - ACTIONS(5926), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_DOT, - ACTIONS(5928), 1, - anon_sym_PLUS, - ACTIONS(5930), 1, - anon_sym_not, - ACTIONS(5932), 1, - anon_sym_null, - ACTIONS(5936), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - ACTIONS(5942), 1, - sym_val_date, - ACTIONS(5944), 1, - anon_sym_DQUOTE, - ACTIONS(5948), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5950), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2647), 1, - sym_comment, - STATE(3027), 1, - sym_val_range, - STATE(5243), 1, - sym__var, - STATE(5295), 1, - sym__val_number_decimal, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, - sym__val_number, - STATE(5872), 1, - sym_expr_parenthesized, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6193), 1, - sym__expr_unary_minus, - STATE(6591), 1, - sym__expression, - STATE(6592), 1, - sym_unquoted, - STATE(6699), 1, - sym__expr_binary_expression, - ACTIONS(5934), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5946), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5938), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5940), 3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6194), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(6201), 11, - sym_val_nothing, - sym_val_bool, - 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, - [58093] = 7, + aux_sym__record_key_token2, + [57884] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2648), 1, + ACTIONS(5670), 1, + aux_sym__immediate_decimal_token2, + STATE(2645), 1, sym_comment, - STATE(2655), 1, - sym_path, - STATE(3172), 1, - sym_cell_path, - ACTIONS(990), 14, + ACTIONS(815), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -293611,17 +293438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(992), 40, + ACTIONS(817), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -293652,51 +293481,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58167] = 7, - ACTIONS(3), 1, + [57955] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2649), 1, + STATE(2646), 1, sym_comment, - STATE(2672), 1, - aux_sym_cell_path_repeat1, - STATE(3032), 1, - sym_path, - ACTIONS(903), 14, + ACTIONS(1376), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1374), 56, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(905), 40, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [58024] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2647), 1, + sym_comment, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 56, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -293710,27 +293596,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58241] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [58093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5954), 1, - anon_sym_DOT2, - STATE(2650), 1, + STATE(2648), 1, sym_comment, - ACTIONS(861), 15, + ACTIONS(855), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -293746,13 +293637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(863), 41, + ACTIONS(857), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -293788,111 +293680,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58311] = 4, - ACTIONS(3), 1, + [58161] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2651), 1, - sym_comment, - ACTIONS(1115), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, + ACTIONS(5952), 1, anon_sym_QMARK2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1113), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [58379] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2652), 1, + STATE(2649), 1, sym_comment, - STATE(2682), 1, - aux_sym_cell_path_repeat1, - STATE(3034), 1, - sym_path, - ACTIONS(903), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(905), 41, + ACTIONS(1072), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1070), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -293909,45 +293730,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58453] = 4, + aux_sym__unquoted_in_list_token1, + [58231] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(5954), 1, + anon_sym_DOT2, + STATE(2650), 1, sym_comment, - ACTIONS(889), 15, + STATE(2709), 1, + sym_path, + STATE(3284), 1, + sym_cell_path, + ACTIONS(925), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(891), 42, + aux_sym__unquoted_in_list_token1, + ACTIONS(927), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -293978,39 +293808,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58521] = 4, + [58305] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2654), 1, + STATE(2651), 1, sym_comment, - ACTIONS(815), 15, + ACTIONS(855), 16, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(817), 42, + aux_sym_unquoted_token6, + ACTIONS(857), 41, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -294047,18 +293874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58589] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [58373] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5956), 1, anon_sym_DOT2, - STATE(2655), 1, + STATE(2652), 1, sym_comment, - STATE(2683), 1, - aux_sym_cell_path_repeat1, - STATE(3032), 1, + STATE(2684), 1, sym_path, - ACTIONS(903), 14, + STATE(3033), 1, + sym_cell_path, + ACTIONS(966), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -294073,7 +293902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(905), 40, + ACTIONS(968), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -294114,17 +293943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58663] = 6, + [58447] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5958), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - STATE(3032), 1, - sym_path, - STATE(2656), 2, + STATE(2653), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 14, + STATE(2703), 1, + sym_path, + STATE(3110), 1, + sym_cell_path, + ACTIONS(959), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -294139,7 +293969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1017), 40, + ACTIONS(961), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -294180,39 +294010,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58735] = 4, - ACTIONS(105), 1, + [58521] = 39, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2657), 1, - sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1113), 55, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(5963), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5965), 1, anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, + ACTIONS(5969), 1, + anon_sym_DASH, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_DOT, + ACTIONS(5975), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, + aux_sym__val_number_decimal_token1, + STATE(2654), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5752), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10685), 1, + sym__expression, + STATE(10686), 1, + sym_unquoted, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [58659] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5959), 1, + anon_sym_DOT2, + STATE(2655), 1, + sym_comment, + STATE(2703), 1, + sym_path, + STATE(3111), 1, + sym_cell_path, + ACTIONS(909), 14, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(911), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -294229,54 +294166,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [58803] = 7, + [58733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2658), 1, + STATE(2656), 1, sym_comment, - STATE(3487), 1, - sym_cell_path, - ACTIONS(971), 14, + ACTIONS(894), 16, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(973), 40, + aux_sym_unquoted_token6, + ACTIONS(896), 41, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -294307,21 +294233,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58877] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [58801] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(3034), 1, - sym_path, - STATE(2659), 2, + STATE(2657), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 13, + STATE(2709), 1, + sym_path, + STATE(3275), 1, + sym_cell_path, + ACTIONS(913), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -294335,7 +294265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1017), 41, + ACTIONS(915), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -294377,40 +294307,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [58949] = 5, - ACTIONS(105), 1, + [58875] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_QMARK2, - STATE(2660), 1, + ACTIONS(5947), 1, + aux_sym_unquoted_token6, + STATE(2658), 1, sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 54, + ACTIONS(877), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -294427,54 +294361,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [59019] = 7, + [58945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2661), 1, + STATE(2659), 1, sym_comment, - STATE(2723), 1, - aux_sym_cell_path_repeat1, - STATE(3034), 1, - sym_path, - ACTIONS(903), 13, + ACTIONS(894), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(905), 41, + aux_sym_unquoted_token1, + ACTIONS(896), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -294505,44 +294431,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59093] = 5, - ACTIONS(105), 1, + [59013] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_QMARK2, - STATE(2662), 1, + ACTIONS(5826), 1, + aux_sym_unquoted_token6, + STATE(2660), 1, sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 54, + ACTIONS(877), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -294559,43 +294490,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [59163] = 4, - ACTIONS(3), 1, + [59083] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2663), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(5983), 1, + anon_sym_DOT2, + STATE(2661), 1, sym_comment, - ACTIONS(1100), 15, - anon_sym_COLON, - anon_sym_COMMA, + STATE(2713), 1, + sym_path, + STATE(3308), 1, + sym_cell_path, + ACTIONS(966), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1098), 42, + aux_sym__record_key_token2, + [59157] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(975), 1, + sym__entry_separator, + ACTIONS(5983), 1, + anon_sym_DOT2, + STATE(2662), 1, + sym_comment, + STATE(2677), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + ACTIONS(973), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -294608,6 +294594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -294622,6 +294610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -294634,115 +294623,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [59231] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5978), 1, - anon_sym_DOT, - ACTIONS(5980), 1, anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, aux_sym__val_number_decimal_token1, - STATE(2664), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5703), 1, - sym__val_number_decimal, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10687), 1, - sym__expression, - STATE(10688), 1, - sym_unquoted, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [59369] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [59231] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2665), 1, + ACTIONS(5985), 1, + anon_sym_DOT2, + ACTIONS(5987), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5989), 1, + aux_sym_unquoted_token2, + STATE(2663), 1, sym_comment, - ACTIONS(844), 15, + ACTIONS(949), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -294753,19 +294657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(846), 42, + ACTIONS(951), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -294796,61 +294698,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59437] = 4, + [59305] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2666), 1, + ACTIONS(5959), 1, + anon_sym_DOT2, + STATE(2664), 1, sym_comment, - ACTIONS(807), 15, + STATE(2703), 1, + sym_path, + STATE(3132), 1, + sym_cell_path, + ACTIONS(925), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, + ACTIONS(5994), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(809), 42, + ACTIONS(5991), 19, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, @@ -294860,44 +294745,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59505] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5988), 1, - anon_sym_DOT2, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5992), 1, - aux_sym_unquoted_token2, - STATE(2667), 1, - sym_comment, - ACTIONS(1005), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(927), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -294919,35 +294771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [59579] = 7, + [59383] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2668), 1, + STATE(2665), 1, sym_comment, - STATE(3446), 1, + STATE(2709), 1, + sym_path, + STATE(3277), 1, sym_cell_path, - ACTIONS(967), 14, + ACTIONS(917), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -294957,14 +294795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(969), 40, + aux_sym__unquoted_in_list_token1, + ACTIONS(919), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -294999,21 +294838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59653] = 7, + [59457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2669), 1, + STATE(2666), 1, sym_comment, - STATE(3136), 1, - sym_cell_path, - ACTIONS(979), 13, + STATE(2676), 1, + aux_sym_cell_path_repeat1, + STATE(3024), 1, + sym_path, + ACTIONS(973), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -295023,15 +294861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(981), 41, + aux_sym_unquoted_token1, + ACTIONS(975), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -295066,85 +294904,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59727] = 7, + [59529] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2670), 1, - sym_comment, - STATE(3691), 1, - sym_cell_path, - ACTIONS(909), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(911), 41, + ACTIONS(129), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LBRACE, + ACTIONS(5997), 1, + sym_identifier, + STATE(2667), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8718), 1, + sym_block, + STATE(8720), 1, + sym__where_predicate, + STATE(8721), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - [59801] = 7, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [59667] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5994), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2661), 1, - sym_path, - STATE(2671), 1, + STATE(2668), 1, sym_comment, - STATE(3038), 1, + STATE(2709), 1, + sym_path, + STATE(3289), 1, sym_cell_path, - ACTIONS(997), 13, + ACTIONS(929), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -295158,7 +295028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(999), 41, + ACTIONS(931), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -295200,86 +295070,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59875] = 6, + [59741] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2656), 1, - aux_sym_cell_path_repeat1, - STATE(2672), 1, + STATE(2669), 1, sym_comment, - STATE(3032), 1, - sym_path, - ACTIONS(975), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(977), 41, - anon_sym_LBRACK, + ACTIONS(1088), 15, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_QMARK2, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59947] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(5997), 1, - anon_sym_DOT2, - STATE(2673), 1, - sym_comment, - STATE(2695), 1, - sym_path, - STATE(3581), 1, - sym_cell_path, - ACTIONS(997), 53, + ACTIONS(1086), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -295292,8 +295104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -295308,7 +295118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -295321,193 +295130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [60021] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_DASH_DASH, - ACTIONS(3160), 1, - aux_sym_unquoted_token1, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, - anon_sym_DASH, - ACTIONS(6001), 1, - anon_sym_DOT, - ACTIONS(6003), 1, - anon_sym_PLUS, - ACTIONS(6005), 1, - aux_sym__val_number_decimal_token1, - STATE(2674), 1, - sym_comment, - STATE(4934), 1, - sym__val_number_decimal, - STATE(5217), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6837), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7940), 1, - sym_unquoted, - STATE(7943), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6007), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(6250), 11, - sym_val_nothing, - sym_val_bool, - 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, - [60159] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2675), 1, - sym_comment, - ACTIONS(1100), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1098), 55, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [60227] = 7, + [59809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6009), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2661), 1, - sym_path, - STATE(2676), 1, + STATE(2670), 1, sym_comment, - STATE(2971), 1, - sym_cell_path, - ACTIONS(979), 13, + STATE(2694), 1, + aux_sym_cell_path_repeat1, + STATE(3085), 1, + sym_path, + ACTIONS(973), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -295521,147 +295159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(981), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60301] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(6012), 1, - sym_filesize_unit, - ACTIONS(6014), 1, - sym_duration_unit, - STATE(2677), 1, - sym_comment, - ACTIONS(1102), 54, + ACTIONS(975), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [60373] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_DOT2, - STATE(2649), 1, - sym_path, - STATE(2678), 1, - sym_comment, - STATE(3045), 1, - sym_cell_path, - ACTIONS(979), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(981), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -295696,12 +295201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60447] = 4, + [59883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2679), 1, + STATE(2671), 1, sym_comment, - ACTIONS(889), 16, + ACTIONS(815), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -295718,7 +295223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - ACTIONS(891), 41, + ACTIONS(817), 41, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -295760,21 +295265,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [60515] = 7, + [59951] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2680), 1, + STATE(2672), 1, sym_comment, - STATE(3112), 1, + STATE(2703), 1, + sym_path, + STATE(3296), 1, sym_cell_path, - ACTIONS(997), 13, + ACTIONS(933), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -295784,15 +295290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(999), 41, + aux_sym_unquoted_token1, + ACTIONS(935), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -295827,12 +295332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60589] = 4, + [60025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2681), 1, + STATE(2673), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(807), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -295849,7 +295354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - ACTIONS(846), 41, + ACTIONS(809), 41, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -295891,18 +295396,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [60657] = 7, + [60093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5999), 1, anon_sym_DOT2, - STATE(2659), 1, - aux_sym_cell_path_repeat1, - STATE(2682), 1, + ACTIONS(6001), 1, + aux_sym_unquoted_token6, + STATE(2674), 1, sym_comment, - STATE(3034), 1, - sym_path, - ACTIONS(975), 13, + ACTIONS(877), 15, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -295911,18 +295415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(977), 41, + ACTIONS(879), 40, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -295954,100 +295455,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60731] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [60165] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(6003), 1, anon_sym_DOT2, - STATE(2656), 1, - aux_sym_cell_path_repeat1, - STATE(2683), 1, + STATE(2675), 1, sym_comment, - STATE(3032), 1, + STATE(2718), 1, sym_path, - ACTIONS(975), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(977), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60805] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6019), 1, - anon_sym_QMARK2, - STATE(2684), 1, - sym_comment, - ACTIONS(1056), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1054), 42, + STATE(2986), 1, + sym_cell_path, + ACTIONS(933), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -296060,6 +295488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -296074,6 +295504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -296086,102 +295517,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [60875] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6019), 1, - anon_sym_QMARK2, - STATE(2685), 1, - sym_comment, - ACTIONS(1056), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1054), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, aux_sym__record_key_token2, - [60945] = 4, + [60239] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2686), 1, + ACTIONS(6006), 1, + anon_sym_DOT2, + STATE(3024), 1, + sym_path, + STATE(2676), 2, sym_comment, - ACTIONS(815), 16, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(942), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(817), 41, + aux_sym_unquoted_token1, + ACTIONS(944), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -296212,94 +295591,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [61013] = 7, + [60311] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(944), 1, sym__entry_separator, - ACTIONS(6021), 1, + ACTIONS(6009), 1, anon_sym_DOT2, - STATE(2687), 1, - sym_comment, - STATE(2688), 1, + STATE(3080), 1, sym_path, - STATE(3072), 1, - sym_cell_path, - ACTIONS(979), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [61087] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(5997), 1, - anon_sym_DOT2, - STATE(2688), 1, + STATE(2677), 2, sym_comment, - STATE(2704), 1, aux_sym_cell_path_repeat1, - STATE(3063), 1, - sym_path, - ACTIONS(903), 53, + ACTIONS(942), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -296353,35 +295661,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [61161] = 6, + [60383] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6024), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - ACTIONS(6026), 1, - aux_sym_unquoted_token6, - STATE(2689), 1, + STATE(2676), 1, + aux_sym_cell_path_repeat1, + STATE(2678), 1, sym_comment, - ACTIONS(861), 15, - anon_sym_DOLLAR, + STATE(3024), 1, + sym_path, + ACTIONS(973), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 40, + aux_sym_unquoted_token1, + ACTIONS(975), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -296412,29 +295724,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [61233] = 7, + [60457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2690), 1, + STATE(2679), 1, sym_comment, - STATE(3725), 1, + STATE(2709), 1, + sym_path, + STATE(3307), 1, sym_cell_path, - ACTIONS(909), 14, + ACTIONS(933), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -296444,14 +295752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(911), 40, + aux_sym__unquoted_in_list_token1, + ACTIONS(935), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -296486,113 +295795,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61307] = 6, - ACTIONS(105), 1, + [60531] = 39, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6030), 1, - aux_sym__immediate_decimal_token2, - STATE(2691), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2986), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(985), 1, + anon_sym_in, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5969), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6012), 1, + anon_sym_DOT, + STATE(2680), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6050), 1, + sym__val_number_decimal, + STATE(6501), 1, + sym_expr_parenthesized, + STATE(6572), 1, + sym_val_variable, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(10457), 1, + sym__expression, + STATE(10804), 1, + sym_val_range, + STATE(10928), 1, + sym_unquoted, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [61379] = 7, + STATE(6675), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [60669] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2692), 1, - sym_comment, - STATE(3578), 1, - sym_cell_path, - ACTIONS(979), 14, - anon_sym_GT, + ACTIONS(987), 1, + anon_sym_DASH_DASH, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3051), 1, + aux_sym_unquoted_token1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(6016), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(6018), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, + STATE(2681), 1, + sym_comment, + STATE(5083), 1, + sym__val_number_decimal, + STATE(5249), 1, + sym__var, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6743), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(7949), 1, + sym__expression, + STATE(7950), 1, + sym_unquoted, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(981), 40, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6022), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [60807] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5952), 1, + anon_sym_QMARK2, + STATE(2682), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1070), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -296609,28 +296043,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61453] = 7, + aux_sym__unquoted_in_list_token1, + [60877] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2693), 1, + STATE(2683), 1, sym_comment, - STATE(3645), 1, + STATE(2709), 1, + sym_path, + STATE(3305), 1, sym_cell_path, - ACTIONS(1033), 13, + ACTIONS(966), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -296644,7 +296083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1035), 41, + ACTIONS(968), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -296686,18 +296125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61527] = 7, + [60951] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6032), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - ACTIONS(6034), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6036), 1, - aux_sym_unquoted_token2, - STATE(2694), 1, + STATE(2666), 1, + aux_sym_cell_path_repeat1, + STATE(2684), 1, sym_comment, - ACTIONS(1005), 14, + STATE(3024), 1, + sym_path, + ACTIONS(903), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -296712,7 +296151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1007), 40, + ACTIONS(905), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -296753,102 +296192,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61601] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(5997), 1, - anon_sym_DOT2, - STATE(2695), 1, - sym_comment, - STATE(2720), 1, - aux_sym_cell_path_repeat1, - STATE(3063), 1, - sym_path, - ACTIONS(903), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [61675] = 6, + [61025] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6038), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - ACTIONS(6040), 1, - aux_sym_unquoted_token6, - STATE(2696), 1, + STATE(2685), 1, sym_comment, - ACTIONS(861), 15, - anon_sym_DOLLAR, + STATE(2703), 1, + sym_path, + STATE(3132), 1, + sym_cell_path, + ACTIONS(925), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 40, + aux_sym_unquoted_token1, + ACTIONS(927), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -296879,161 +296255,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [61747] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(6042), 1, - anon_sym_DOT2, - STATE(2688), 1, - sym_path, - STATE(2697), 1, - sym_comment, - STATE(3010), 1, - sym_cell_path, - ACTIONS(997), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [61821] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token2, - STATE(2698), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2996), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [61893] = 7, + [61099] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2699), 1, + STATE(2686), 1, sym_comment, - STATE(3375), 1, + STATE(2703), 1, + sym_path, + STATE(3297), 1, sym_cell_path, - ACTIONS(971), 13, + ACTIONS(966), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -297043,15 +296284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(973), 41, + aux_sym_unquoted_token1, + ACTIONS(968), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -297086,18 +296326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61967] = 7, + [61173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5954), 1, anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2700), 1, + STATE(2687), 1, sym_comment, - STATE(3373), 1, + STATE(2709), 1, + sym_path, + STATE(3268), 1, sym_cell_path, - ACTIONS(967), 13, + ACTIONS(909), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -297111,7 +296351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(969), 41, + ACTIONS(911), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -297153,28 +296393,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62041] = 5, + [61247] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, - aux_sym_unquoted_token6, - STATE(2701), 1, + ACTIONS(6024), 1, + anon_sym_DOT2, + ACTIONS(6026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6028), 1, + aux_sym_unquoted_token2, + STATE(2688), 1, sym_comment, - ACTIONS(861), 13, + ACTIONS(949), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(863), 43, + ACTIONS(951), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -297182,7 +296426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -297213,67 +296456,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62111] = 7, + [61321] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__entry_separator, - ACTIONS(5997), 1, - anon_sym_DOT2, - STATE(2695), 1, - sym_path, - STATE(2702), 1, + STATE(2689), 1, sym_comment, - STATE(3680), 1, - sym_cell_path, - ACTIONS(979), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1084), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1082), 55, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -297281,98 +296516,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [62185] = 39, + aux_sym__unquoted_in_list_token1, + [61389] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(923), 1, - anon_sym_in, - ACTIONS(3068), 1, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(5400), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6049), 1, - anon_sym_DOT, - STATE(2703), 1, + ACTIONS(6030), 1, + sym_identifier, + STATE(2690), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4271), 1, + sym_val_range, + STATE(4472), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6040), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(6515), 1, + STATE(4763), 1, + sym__val_number, + STATE(5003), 1, + sym__var, + STATE(5711), 1, sym_expr_parenthesized, - STATE(6547), 1, + STATE(5800), 1, sym_val_variable, - STATE(6808), 1, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(10702), 1, - sym_val_range, - STATE(10716), 1, + STATE(9712), 1, + sym_block, + STATE(9714), 1, + sym__where_predicate, + STATE(9715), 1, sym__expression, - STATE(10743), 1, - sym_unquoted, - ACTIONS(3070), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6713), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -297384,180 +296623,39 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62323] = 6, + [61527] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2704), 1, + STATE(2691), 1, sym_comment, - STATE(2716), 1, - aux_sym_cell_path_repeat1, - STATE(3063), 1, - sym_path, - ACTIONS(977), 2, + ACTIONS(1088), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(975), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [62395] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2705), 1, - sym_comment, - STATE(3320), 1, - sym_cell_path, - ACTIONS(990), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 41, + ACTIONS(1086), 55, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [62469] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT2, - STATE(2652), 1, - sym_path, - STATE(2706), 1, - sym_comment, - STATE(3310), 1, - sym_cell_path, - ACTIONS(1001), 13, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1003), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -297574,104 +296672,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62543] = 39, + aux_sym__unquoted_in_list_token1, + [61595] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(5398), 1, - anon_sym_LBRACE, - ACTIONS(6051), 1, - sym_identifier, - STATE(2707), 1, + ACTIONS(6032), 1, + anon_sym_COLON, + STATE(2692), 1, sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, + STATE(4552), 1, sym__var, - STATE(5437), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5657), 1, sym_val_variable, - STATE(6023), 1, + STATE(5752), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6677), 1, sym__expr_binary_expression, - STATE(9234), 1, - sym_block, - STATE(9409), 1, + STATE(7237), 1, + sym_val_range, + STATE(10685), 1, sym__expression, - STATE(9415), 1, - sym__where_predicate, - ACTIONS(83), 2, + STATE(10686), 1, + sym_unquoted, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5981), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -297683,36 +296786,39 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62681] = 5, + [61733] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - aux_sym_unquoted_token6, - STATE(2708), 1, + ACTIONS(5959), 1, + anon_sym_DOT2, + STATE(2693), 1, sym_comment, - ACTIONS(861), 13, + STATE(2703), 1, + sym_path, + STATE(3122), 1, + sym_cell_path, + ACTIONS(913), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 43, + aux_sym_unquoted_token1, + ACTIONS(915), 40, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -297743,27 +296849,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62751] = 7, + [61807] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(6034), 1, anon_sym_DOT2, - STATE(2655), 1, + STATE(3085), 1, sym_path, - STATE(2709), 1, + STATE(2694), 2, sym_comment, - STATE(3439), 1, - sym_cell_path, - ACTIONS(997), 14, + aux_sym_cell_path_repeat1, + ACTIONS(942), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -297773,14 +296876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(999), 40, + aux_sym__unquoted_in_list_token1, + ACTIONS(944), 41, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -297815,118 +296919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62825] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(3050), 1, - aux_sym_unquoted_token1, - ACTIONS(6053), 1, - anon_sym_LBRACK, - ACTIONS(6055), 1, - anon_sym_LPAREN, - ACTIONS(6057), 1, - anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, - anon_sym_LBRACE, - ACTIONS(6063), 1, - anon_sym_DOT, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6067), 1, - anon_sym_not, - ACTIONS(6069), 1, - anon_sym_null, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6079), 1, - aux_sym__val_number_token5, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, - anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2710), 1, - sym_comment, - STATE(5338), 1, - sym__val_number_decimal, - STATE(5424), 1, - sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, - sym_val_number, - STATE(6133), 1, - sym_expr_parenthesized, - STATE(6242), 1, - sym_val_variable, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, - sym__str_double_quotes, - STATE(6490), 1, - sym__inter_double_quotes, - STATE(6840), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(9495), 1, - sym__expression, - STATE(9499), 1, - sym_unquoted, - ACTIONS(6071), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6077), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6458), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(6285), 11, - sym_val_nothing, - sym_val_bool, - 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, - [62965] = 7, + [61879] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2711), 1, + STATE(2695), 1, sym_comment, - STATE(3655), 1, + STATE(2703), 1, + sym_path, + STATE(3124), 1, sym_cell_path, - ACTIONS(1033), 14, + ACTIONS(917), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -297941,7 +296945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1035), 40, + ACTIONS(919), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -297982,44 +296986,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63039] = 5, - ACTIONS(3), 1, + [61953] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5863), 1, - aux_sym_unquoted_token6, - STATE(2712), 1, + ACTIONS(879), 1, + sym__entry_separator, + STATE(2696), 1, sym_comment, - ACTIONS(861), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(863), 42, + ACTIONS(877), 56, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -298036,105 +297033,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63109] = 39, + aux_sym__unquoted_in_list_token1, + [62021] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(985), 1, + sym_identifier, + ACTIONS(3296), 1, + aux_sym_unquoted_token1, + ACTIONS(6037), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(6039), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(6041), 1, + anon_sym_DOLLAR, + ACTIONS(6043), 1, + anon_sym_DASH, + ACTIONS(6045), 1, + anon_sym_LBRACE, + ACTIONS(6047), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(6049), 1, + anon_sym_PLUS, + ACTIONS(6051), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(6053), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(6063), 1, + aux_sym__val_number_token5, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(5396), 1, - anon_sym_LBRACE, - ACTIONS(6093), 1, - sym_identifier, - STATE(2713), 1, + STATE(2697), 1, sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, + STATE(5127), 1, sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, + STATE(5598), 1, sym__var, - STATE(5124), 1, + STATE(5892), 1, + sym_val_number, + STATE(5897), 1, + sym__val_number, + STATE(6104), 1, sym_val_variable, - STATE(5136), 1, + STATE(6232), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(6268), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6732), 1, sym__expr_binary_expression, - STATE(8775), 1, + STATE(7237), 1, + sym_val_range, + STATE(9276), 1, sym__expression, - STATE(8777), 1, - sym__where_predicate, - STATE(8778), 1, - sym_block, - ACTIONS(187), 2, + STATE(9296), 1, + sym_unquoted, + ACTIONS(6055), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(6061), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(6059), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6065), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(6267), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, + STATE(6335), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -298146,14 +297150,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63247] = 4, + [62161] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(1179), 1, sym__entry_separator, - STATE(2714), 1, + STATE(2698), 1, sym_comment, - ACTIONS(861), 56, + ACTIONS(1177), 56, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -298210,14 +297214,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [63315] = 4, + [62229] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(2715), 1, + ACTIONS(6077), 1, + sym_filesize_unit, + ACTIONS(6079), 1, + sym_duration_unit, + STATE(2699), 1, sym_comment, - ACTIONS(1065), 56, + ACTIONS(1054), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -298264,8 +297272,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298274,183 +297280,79 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [63383] = 6, - ACTIONS(105), 1, + [62301] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__entry_separator, - ACTIONS(6095), 1, + ACTIONS(6081), 1, anon_sym_DOT2, - STATE(3063), 1, - sym_path, - STATE(2716), 2, + STATE(2700), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + STATE(2722), 1, + sym_path, + STATE(3035), 1, + sym_cell_path, + ACTIONS(966), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [63455] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(968), 41, anon_sym_LBRACK, - ACTIONS(5970), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5972), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(5978), 1, - anon_sym_DOT, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6098), 1, - anon_sym_COLON, - STATE(2717), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5703), 1, - sym__val_number_decimal, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10687), 1, - sym__expression, - STATE(10688), 1, - sym_unquoted, - ACTIONS(3070), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [63593] = 7, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [62375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6100), 1, - anon_sym_DOT2, - STATE(2649), 1, - sym_path, - STATE(2718), 1, + STATE(2701), 1, sym_comment, - STATE(3048), 1, - sym_cell_path, - ACTIONS(997), 14, + ACTIONS(807), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -298461,17 +297363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(999), 40, + ACTIONS(809), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -298502,43 +297406,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63667] = 7, + [62443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2719), 1, + ACTIONS(5814), 1, + aux_sym_unquoted_token6, + STATE(2702), 1, sym_comment, - STATE(3306), 1, - sym_cell_path, - ACTIONS(1001), 14, + ACTIONS(877), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1003), 40, + ACTIONS(879), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -298569,125 +297471,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63741] = 7, - ACTIONS(105), 1, + [62513] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(977), 1, - sym__entry_separator, - ACTIONS(5997), 1, + ACTIONS(5959), 1, anon_sym_DOT2, - STATE(2716), 1, + STATE(2678), 1, aux_sym_cell_path_repeat1, - STATE(2720), 1, + STATE(2703), 1, sym_comment, - STATE(3063), 1, + STATE(3024), 1, sym_path, - ACTIONS(975), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(903), 14, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [63815] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT2, - STATE(2655), 1, - sym_path, - STATE(2721), 1, - sym_comment, - STATE(3725), 1, - sym_cell_path, - ACTIONS(909), 5, - anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(6106), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6103), 19, + ACTIONS(905), 40, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(911), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -298709,33 +297530,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [63893] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [62587] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2722), 1, + ACTIONS(5959), 1, + anon_sym_DOT2, + STATE(2703), 1, + sym_path, + STATE(2704), 1, sym_comment, - ACTIONS(807), 16, - anon_sym_DOLLAR, + STATE(3143), 1, + sym_cell_path, + ACTIONS(929), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 41, + aux_sym_unquoted_token1, + ACTIONS(931), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -298766,23 +297606,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [63961] = 6, + [62661] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6086), 1, + aux_sym__immediate_decimal_token2, + STATE(2705), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [62733] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2659), 1, - aux_sym_cell_path_repeat1, - STATE(2723), 1, + ACTIONS(6088), 1, + anon_sym_DOT2, + STATE(2706), 1, sym_comment, - STATE(3034), 1, + STATE(2722), 1, sym_path, - ACTIONS(975), 13, + STATE(3067), 1, + sym_cell_path, + ACTIONS(933), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -298796,7 +297701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(977), 42, + ACTIONS(935), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -298804,7 +297709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -298839,18 +297743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64033] = 6, + [62807] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(6047), 1, + ACTIONS(6091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6093), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6109), 1, - anon_sym_DOT2, - STATE(2724), 1, + STATE(2707), 1, sym_comment, - ACTIONS(2996), 53, + ACTIONS(2959), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2957), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -298904,30 +297809,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [64104] = 7, - ACTIONS(3), 1, + [62879] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6112), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6095), 1, anon_sym_DOT2, - STATE(2725), 1, + STATE(2708), 1, sym_comment, - STATE(2805), 1, + STATE(2718), 1, sym_path, - STATE(3207), 1, + STATE(3062), 1, sym_cell_path, - ACTIONS(981), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(979), 42, + ACTIONS(966), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -298940,6 +297835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -298954,6 +297851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -298966,140 +297864,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [64177] = 38, + [62953] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + ACTIONS(5954), 1, + anon_sym_DOT2, + STATE(2670), 1, + aux_sym_cell_path_repeat1, + STATE(2709), 1, + sym_comment, + STATE(3085), 1, + sym_path, + ACTIONS(903), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(417), 1, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2726), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8960), 1, - sym__expression, - STATE(9052), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64312] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(6115), 1, - anon_sym_DOT2, - STATE(2727), 1, - sym_comment, - ACTIONS(1102), 54, + aux_sym__unquoted_in_list_token1, + ACTIONS(905), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -299116,341 +297933,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [64381] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2728), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9049), 1, - sym__expression, - STATE(9050), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64516] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2729), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9038), 1, - sym__expression, - STATE(9040), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64651] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, sym_val_date, - ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2730), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9111), 1, - sym__expression, - STATE(9113), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64786] = 6, + [63027] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, + ACTIONS(6098), 1, anon_sym_DOT2, - STATE(3624), 1, + STATE(2684), 1, sym_path, - STATE(2731), 2, + STATE(2710), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 14, - anon_sym_DOLLAR, + STATE(3020), 1, + sym_cell_path, + ACTIONS(933), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1017), 39, + aux_sym_unquoted_token1, + ACTIONS(935), 40, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -299485,134 +298010,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64857] = 38, - ACTIONS(3), 1, + [63101] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(5983), 1, + anon_sym_DOT2, + STATE(2711), 1, + sym_comment, + STATE(2713), 1, + sym_path, + STATE(3309), 1, + sym_cell_path, + ACTIONS(933), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(417), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2732), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(9032), 1, - sym__expression, - STATE(9033), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [64992] = 4, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [63175] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2733), 1, + ACTIONS(6101), 1, + anon_sym_DOT2, + STATE(2712), 1, sym_comment, - ACTIONS(1098), 13, + ACTIONS(877), 15, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1100), 43, + aux_sym_unquoted_token1, + ACTIONS(879), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -299643,108 +298137,736 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65059] = 38, - ACTIONS(3), 1, + [63245] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(5983), 1, + anon_sym_DOT2, + STATE(2662), 1, + aux_sym_cell_path_repeat1, + STATE(2713), 1, + sym_comment, + STATE(3080), 1, + sym_path, + ACTIONS(903), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, - ACTIONS(203), 1, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [63319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6103), 1, + anon_sym_DOT2, + ACTIONS(6105), 1, + aux_sym_unquoted_token6, + STATE(2714), 1, + sym_comment, + ACTIONS(877), 15, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(879), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + [63391] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6107), 1, + anon_sym_QMARK2, + STATE(2715), 1, + sym_comment, + ACTIONS(1072), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1070), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(417), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63461] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6107), 1, + anon_sym_QMARK2, + STATE(2716), 1, + sym_comment, + ACTIONS(1072), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(1743), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1070), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63531] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5954), 1, + anon_sym_DOT2, + STATE(2709), 1, + sym_path, + STATE(2717), 1, + sym_comment, + STATE(3260), 1, + sym_cell_path, + ACTIONS(959), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(961), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2734), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63605] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(5983), 1, + anon_sym_DOT2, + STATE(2718), 1, sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8982), 1, - sym__expression, - STATE(9029), 1, - sym__where_predicate, - ACTIONS(187), 2, + STATE(2719), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + ACTIONS(903), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [63679] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2677), 1, + aux_sym_cell_path_repeat1, + STATE(2719), 1, + sym_comment, + STATE(3080), 1, + sym_path, + ACTIONS(975), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(973), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [63751] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2720), 1, + sym_comment, + ACTIONS(815), 15, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(817), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(201), 2, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + [63819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2721), 1, + sym_comment, + ACTIONS(1084), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1082), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [63887] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5954), 1, + anon_sym_DOT2, + STATE(2722), 1, + sym_comment, + STATE(2723), 1, + aux_sym_cell_path_repeat1, + STATE(3085), 1, + sym_path, + ACTIONS(903), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, + aux_sym__unquoted_in_list_token1, + ACTIONS(905), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [65194] = 38, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63961] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2694), 1, + aux_sym_cell_path_repeat1, + STATE(2723), 1, + sym_comment, + STATE(3085), 1, + sym_path, + ACTIONS(973), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(975), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64033] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -299775,37 +298897,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2735), 1, + STATE(2724), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9015), 1, + STATE(8591), 1, sym__expression, - STATE(9017), 1, + STATE(9141), 1, sym__where_predicate, ACTIONS(187), 2, anon_sym_true, @@ -299820,7 +298942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -299829,7 +298951,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -299841,92 +298963,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65329] = 38, + [64168] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(5973), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2736), 1, + STATE(2725), 1, sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, + STATE(4552), 1, sym__var, - STATE(5437), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5657), 1, sym_val_variable, - STATE(6023), 1, + STATE(5752), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6677), 1, sym__expr_binary_expression, - STATE(9346), 1, + STATE(7237), 1, + sym_val_range, + STATE(10685), 1, sym__expression, - STATE(9352), 1, - sym__where_predicate, - ACTIONS(83), 2, + STATE(10686), 1, + sym_unquoted, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5981), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -299938,84 +299060,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65464] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2737), 1, - sym_comment, - STATE(2844), 1, - sym_path, - STATE(3775), 1, - sym_cell_path, - ACTIONS(979), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(981), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65537] = 7, + [64303] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, + ACTIONS(6109), 1, anon_sym_DOT2, - STATE(2738), 1, + STATE(2726), 1, sym_comment, - STATE(2844), 1, + STATE(2849), 1, sym_path, - STATE(3795), 1, + STATE(3299), 1, sym_cell_path, - ACTIONS(967), 14, + ACTIONS(966), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -300030,7 +299086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(969), 39, + ACTIONS(968), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -300070,7 +299126,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65610] = 38, + [64376] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -300101,37 +299157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2739), 1, + STATE(2727), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9773), 1, + STATE(9312), 1, sym__where_predicate, - STATE(9836), 1, + STATE(9318), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -300146,7 +299202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -300155,7 +299211,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -300167,92 +299223,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65745] = 38, + [64511] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2740), 1, + STATE(2728), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9832), 1, + STATE(8606), 1, sym__where_predicate, - STATE(9837), 1, + STATE(8607), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -300264,7 +299320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65880] = 38, + [64646] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -300295,37 +299351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2741), 1, + STATE(2729), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9342), 1, + STATE(9286), 1, sym__where_predicate, - STATE(9360), 1, + STATE(9287), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -300340,7 +299396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -300349,7 +299405,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -300361,195 +299417,35 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66015] = 7, + [64781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_DOT2, - STATE(2742), 1, + STATE(2730), 1, sym_comment, - STATE(2805), 1, - sym_path, - STATE(3245), 1, - sym_cell_path, - ACTIONS(999), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(997), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [66088] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6127), 1, - anon_sym_LPAREN, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6131), 1, - anon_sym_DASH, - ACTIONS(6133), 1, - anon_sym_LBRACE, - ACTIONS(6135), 1, - anon_sym_DOT, - ACTIONS(6137), 1, - anon_sym_PLUS, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6145), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6151), 1, - sym_val_date, - ACTIONS(6153), 1, - anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2650), 1, - sym__val_number_decimal, - STATE(2718), 1, - sym__var, - STATE(2743), 1, - sym_comment, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(2979), 1, - sym_val_variable, - STATE(3005), 1, - sym_expr_parenthesized, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(6795), 1, - sym_block, - STATE(6798), 1, - sym__expression, - STATE(6800), 1, - sym__match_expression, - STATE(6801), 1, - sym__expr_binary_expression, - STATE(6817), 1, - sym_val_range, - ACTIONS(6143), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(3305), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6147), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3326), 11, - sym_val_nothing, - sym_val_bool, - 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, - [66221] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6026), 1, - aux_sym_unquoted_token6, - STATE(2744), 1, - sym_comment, - ACTIONS(861), 14, - anon_sym_DOLLAR, + ACTIONS(1082), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(1084), 43, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -300580,98 +299476,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66290] = 37, + [64848] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6161), 1, + ACTIONS(383), 1, anon_sym_DASH, - ACTIONS(6163), 1, - anon_sym_LBRACE, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, + ACTIONS(417), 1, anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - STATE(2745), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2731), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5580), 1, + STATE(5294), 1, sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6795), 1, - sym_block, - STATE(6798), 1, - sym__expression, - STATE(6820), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10200), 1, - sym__match_expression, - ACTIONS(3070), 2, + STATE(8739), 1, + sym__where_predicate, + STATE(8741), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5566), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3884), 6, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5744), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -300683,82 +299577,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66423] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1245), 1, - sym__entry_separator, - ACTIONS(6115), 1, - anon_sym_DOT2, - STATE(2746), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1243), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - ACTIONS(1247), 26, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [66496] = 5, + [64983] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(829), 1, sym__entry_separator, - ACTIONS(5519), 1, + ACTIONS(5560), 1, aux_sym_unquoted_token3, - STATE(2747), 1, + STATE(2732), 1, sym_comment, - ACTIONS(823), 54, + ACTIONS(827), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -300813,72 +299641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [66565] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(6171), 1, - anon_sym_DOT2, - ACTIONS(6174), 1, - aux_sym__immediate_decimal_token2, - STATE(2748), 1, - sym_comment, - ACTIONS(3489), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [66636] = 38, + [65052] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -300909,38 +299672,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2749), 1, + STATE(2733), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9060), 1, - sym__expression, - STATE(9061), 1, + STATE(8743), 1, sym__where_predicate, + STATE(8746), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -300954,7 +299717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -300963,7 +299726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -300975,92 +299738,156 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66771] = 38, + [65187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(6112), 1, + anon_sym_QMARK2, + STATE(2734), 1, + sym_comment, + ACTIONS(1070), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1072), 42, anon_sym_LBRACK, - ACTIONS(33), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65256] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2750), 1, + STATE(2735), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9361), 1, + STATE(8747), 1, sym__where_predicate, - STATE(9364), 1, + STATE(8748), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301072,92 +299899,155 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66906] = 38, + [65391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + STATE(2736), 1, + sym_comment, + ACTIONS(1086), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1088), 43, anon_sym_LBRACK, - ACTIONS(33), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65458] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2751), 1, + STATE(2737), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9786), 1, - sym__expression, - STATE(9787), 1, + STATE(8771), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(8772), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301169,7 +300059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [67041] = 38, + [65593] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -301200,38 +300090,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2752), 1, + STATE(2738), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8850), 1, - sym__expression, - STATE(8852), 1, + STATE(8773), 1, sym__where_predicate, + STATE(8774), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -301245,7 +300135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -301254,7 +300144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301266,34 +300156,35 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [67176] = 4, + [65728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2739), 1, sym_comment, - ACTIONS(861), 13, + ACTIONS(1086), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 43, + aux_sym_unquoted_token1, + ACTIONS(1088), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -301324,12 +300215,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67243] = 38, + [65795] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(6114), 1, + sym_identifier, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, + anon_sym_DOT, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, + anon_sym_not, + ACTIONS(6124), 1, + anon_sym_null, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + STATE(2740), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10286), 1, + sym__expression, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3973), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6126), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [65930] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -301360,38 +300347,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2754), 1, + STATE(2741), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9371), 1, - sym__expression, - STATE(9404), 1, + STATE(9319), 1, sym__where_predicate, + STATE(9331), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -301405,7 +300392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -301414,7 +300401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301426,446 +300413,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [67378] = 7, + [66065] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2731), 1, - aux_sym_cell_path_repeat1, - STATE(2755), 1, - sym_comment, - STATE(3624), 1, - sym_path, - ACTIONS(975), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(977), 39, + ACTIONS(129), 1, anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, + ACTIONS(159), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2742), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8775), 1, + sym__where_predicate, + STATE(8776), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [66200] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, sym_val_date, + ACTIONS(199), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - [67451] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2756), 1, - sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1113), 54, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(383), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [67518] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6176), 1, - anon_sym_QMARK2, - STATE(2757), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [67587] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6176), 1, - anon_sym_QMARK2, - STATE(2758), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [67656] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(417), 1, anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2759), 1, + STATE(2743), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(6688), 1, - sym__expr_binary_expression, - STATE(9375), 1, - sym__where_predicate, - STATE(9377), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6035), 11, - sym_val_nothing, - sym_val_bool, - 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, - [67791] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2760), 1, - sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, - sym__var, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5512), 1, - sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9338), 1, + STATE(8749), 1, sym__where_predicate, - STATE(9339), 1, + STATE(8750), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301877,7 +300607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [67926] = 38, + [66335] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -301908,38 +300638,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2761), 1, + STATE(2744), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9072), 1, - sym__expression, - STATE(9073), 1, + STATE(8676), 1, sym__where_predicate, + STATE(8677), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -301953,7 +300683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -301962,7 +300692,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -301974,92 +300704,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68061] = 38, + [66470] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2762), 1, + STATE(2745), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9322), 1, + STATE(8751), 1, sym__where_predicate, - STATE(9385), 1, + STATE(8753), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302071,97 +300801,97 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68196] = 39, + [66605] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3607), 1, + ACTIONS(3399), 1, anon_sym_DASH_DASH, - ACTIONS(3617), 1, + ACTIONS(3409), 1, anon_sym_null, - ACTIONS(3631), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(6178), 1, + ACTIONS(6130), 1, anon_sym_LBRACK, - ACTIONS(6180), 1, + ACTIONS(6132), 1, anon_sym_RBRACK, - ACTIONS(6182), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(6184), 1, + ACTIONS(6136), 1, anon_sym_DASH, - ACTIONS(6186), 1, + ACTIONS(6138), 1, anon_sym_LBRACE, - ACTIONS(6188), 1, + ACTIONS(6140), 1, anon_sym_DOT, - ACTIONS(6190), 1, + ACTIONS(6142), 1, anon_sym_PLUS, - ACTIONS(6192), 1, + ACTIONS(6144), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6196), 1, + ACTIONS(6148), 1, sym_val_date, - ACTIONS(6198), 1, + ACTIONS(6150), 1, aux_sym__unquoted_in_list_token1, - STATE(2763), 1, + STATE(2746), 1, sym_comment, - STATE(3057), 1, + STATE(3050), 1, aux_sym__match_pattern_list_repeat1, - STATE(5841), 1, + STATE(6036), 1, sym__val_number_decimal, - STATE(6205), 1, + STATE(6177), 1, sym__var, - STATE(6378), 1, + STATE(6326), 1, sym_val_number, - STATE(6464), 1, + STATE(6336), 1, sym__val_number, - STATE(6590), 1, - sym_val_variable, - STATE(6610), 1, + STATE(6492), 1, sym_expr_parenthesized, - STATE(6665), 1, + STATE(6521), 1, + sym_val_variable, + STATE(6793), 1, + sym_long_flag_equals_value, + STATE(6794), 1, + sym__str_double_quotes, + STATE(6797), 1, sym__match_pattern_list, - STATE(6666), 1, + STATE(6800), 1, sym__match_pattern_record, - STATE(6667), 1, + STATE(6801), 1, sym__expr_unary_minus, - STATE(6767), 1, - sym__str_double_quotes, - STATE(6774), 1, - sym_long_flag_equals_value, - STATE(6865), 1, + STATE(6861), 1, sym__match_pattern_expression, - STATE(10989), 1, + STATE(10747), 1, sym_val_list, - ACTIONS(3619), 2, + ACTIONS(3411), 2, anon_sym_true, anon_sym_false, - ACTIONS(3633), 2, + ACTIONS(3425), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6664), 2, + STATE(6796), 2, sym__match_pattern_value, sym_val_range, - STATE(10997), 2, + STATE(11345), 2, sym__match_pattern_rest, sym__match_pattern_ignore_rest, - ACTIONS(3623), 3, + ACTIONS(3415), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3627), 3, + ACTIONS(3419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6194), 3, + ACTIONS(6146), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6874), 4, + STATE(6875), 4, sym__list_item_starts_with_sign, sym_short_flag, sym_long_flag, sym__unquoted_in_list, - STATE(6663), 7, + STATE(6795), 7, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302169,16 +300899,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [68333] = 6, + [66742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2731), 1, - aux_sym_cell_path_repeat1, - STATE(2764), 1, + STATE(2747), 1, sym_comment, - STATE(3624), 1, + STATE(2878), 1, + aux_sym_cell_path_repeat1, + STATE(3294), 1, sym_path, - ACTIONS(975), 14, + ACTIONS(973), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -302193,7 +300923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(977), 40, + ACTIONS(975), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -302234,92 +300964,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [68404] = 38, + [66813] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2765), 1, + STATE(2748), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9770), 1, + STATE(8777), 1, sym__where_predicate, - STATE(9771), 1, + STATE(8778), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302331,92 +301061,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68539] = 38, + [66948] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2766), 1, + STATE(2749), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9743), 1, + STATE(8785), 1, sym__where_predicate, - STATE(9754), 1, + STATE(8789), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302428,7 +301158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68674] = 38, + [67083] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -302459,37 +301189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2767), 1, + STATE(2750), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9180), 1, + STATE(9290), 1, sym__where_predicate, - STATE(9740), 1, + STATE(9293), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -302504,7 +301234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -302513,7 +301243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302525,136 +301255,201 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [68809] = 6, + [67218] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - sym_filesize_unit, - ACTIONS(6202), 1, - sym_duration_unit, - STATE(2768), 1, - sym_comment, - ACTIONS(1102), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 42, + ACTIONS(129), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(159), 1, anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2751), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8754), 1, + sym__where_predicate, + STATE(8755), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - [68880] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - aux_sym_unquoted_token6, - STATE(2769), 1, - sym_comment, - ACTIONS(861), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 41, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [67353] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, + ACTIONS(159), 1, anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2752), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(9045), 1, + sym__where_predicate, + STATE(9046), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [68949] = 38, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [67488] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -302685,37 +301480,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2770), 1, + STATE(2753), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9675), 1, + STATE(9830), 1, sym__where_predicate, - STATE(9676), 1, + STATE(9831), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -302730,7 +301525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -302739,7 +301534,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302751,7 +301546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69084] = 38, + [67623] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -302782,37 +301577,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2771), 1, + STATE(2754), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9649), 1, + STATE(9832), 1, sym__where_predicate, - STATE(9651), 1, + STATE(9833), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -302827,7 +301622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -302836,7 +301631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -302848,158 +301643,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69219] = 7, + [67758] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2772), 1, - sym_comment, - STATE(2844), 1, - sym_path, - STATE(3815), 1, - sym_cell_path, - ACTIONS(1033), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1035), 39, + ACTIONS(129), 1, anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, + ACTIONS(159), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [69292] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2773), 1, + STATE(2755), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9621), 1, - sym__expression, - STATE(9648), 1, + STATE(9047), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(9048), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303011,7 +301740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69427] = 38, + [67893] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -303042,37 +301771,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2774), 1, + STATE(2756), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9642), 1, + STATE(9834), 1, sym__where_predicate, - STATE(9647), 1, + STATE(9835), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -303087,7 +301816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -303096,7 +301825,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303108,263 +301837,104 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69562] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2775), 1, - sym_comment, - ACTIONS(1100), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1098), 54, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [69629] = 4, + [68028] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(2776), 1, - sym_comment, - ACTIONS(1065), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1067), 42, + ACTIONS(129), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(131), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(159), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(163), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, sym_val_date, + ACTIONS(199), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69696] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(6204), 1, - anon_sym_DOT2, - ACTIONS(6206), 1, - aux_sym__immediate_decimal_token2, - STATE(2777), 1, - sym_comment, - ACTIONS(3489), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(417), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2757), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(9049), 1, + sym__where_predicate, + STATE(9050), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [69767] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6208), 1, - sym_filesize_unit, - ACTIONS(6210), 1, - sym_duration_unit, - STATE(2778), 1, - sym_comment, - ACTIONS(1102), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1104), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69838] = 38, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [68163] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -303395,38 +301965,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2779), 1, + STATE(2758), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9104), 1, - sym__expression, - STATE(9105), 1, + STATE(8643), 1, sym__where_predicate, + STATE(8644), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -303440,7 +302010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -303449,7 +302019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303461,7 +302031,73 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [69973] = 38, + [68298] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + anon_sym_DOT2, + STATE(2759), 1, + sym_comment, + STATE(2936), 1, + aux_sym_cell_path_repeat1, + STATE(2945), 1, + sym_path, + ACTIONS(905), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(903), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [68371] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -303492,37 +302128,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2780), 1, + STATE(2760), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9389), 1, + STATE(9836), 1, sym__where_predicate, - STATE(9390), 1, + STATE(9838), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -303537,7 +302173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -303546,7 +302182,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303558,92 +302194,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70108] = 38, + [68506] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(3349), 1, + aux_sym_unquoted_token1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(6154), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(6156), 1, + anon_sym_DOLLAR, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(6162), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(6168), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(6180), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(6186), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(6188), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + STATE(2714), 1, + sym__val_number_decimal, + STATE(2726), 1, + sym__var, + STATE(2761), 1, + sym_comment, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3114), 1, + sym_expr_parenthesized, + STATE(3190), 1, + sym_val_variable, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(6764), 1, + sym__expr_binary_expression, + STATE(6888), 1, + sym__expression, + STATE(6889), 1, + sym_unquoted, + STATE(6953), 1, + sym_val_range, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6176), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(3737), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(3815), 11, + sym_val_nothing, + sym_val_bool, + 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, + [68641] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(417), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2781), 1, + STATE(2762), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8767), 1, - sym__expression, - STATE(8769), 1, + STATE(9199), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9222), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303655,7 +302388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70243] = 38, + [68776] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -303686,38 +302419,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2782), 1, + STATE(2763), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8772), 1, - sym__expression, - STATE(8774), 1, + STATE(9051), 1, sym__where_predicate, + STATE(9053), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -303731,7 +302464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -303740,7 +302473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303752,16 +302485,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70378] = 7, + [68911] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, + ACTIONS(6190), 1, anon_sym_DOT2, STATE(2764), 1, - aux_sym_cell_path_repeat1, - STATE(2783), 1, sym_comment, - STATE(3624), 1, + STATE(2905), 1, + aux_sym_cell_path_repeat1, + STATE(3294), 1, sym_path, ACTIONS(903), 14, anon_sym_DOLLAR, @@ -303818,7 +302551,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [70451] = 38, + [68984] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -303849,38 +302582,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2784), 1, + STATE(2765), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8781), 1, - sym__expression, - STATE(8782), 1, + STATE(9054), 1, sym__where_predicate, + STATE(9056), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -303894,7 +302627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -303903,7 +302636,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -303915,7 +302648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70586] = 38, + [69119] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -303946,38 +302679,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2785), 1, + STATE(2766), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8783), 1, - sym__expression, - STATE(8784), 1, + STATE(8803), 1, sym__where_predicate, + STATE(8804), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -303991,7 +302724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304000,7 +302733,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304012,7 +302745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70721] = 38, + [69254] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304043,38 +302776,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2786), 1, + STATE(2767), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8785), 1, - sym__expression, - STATE(8786), 1, + STATE(9058), 1, sym__where_predicate, + STATE(9059), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304088,7 +302821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304097,7 +302830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304109,7 +302842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70856] = 38, + [69389] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304140,38 +302873,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2787), 1, + STATE(2768), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8787), 1, - sym__expression, - STATE(8788), 1, + STATE(9060), 1, sym__where_predicate, + STATE(9061), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304185,7 +302918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304194,7 +302927,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304206,7 +302939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [70991] = 38, + [69524] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304237,38 +302970,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2788), 1, + STATE(2769), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8789), 1, - sym__expression, - STATE(8790), 1, + STATE(9062), 1, sym__where_predicate, + STATE(9063), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304282,7 +303015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304291,7 +303024,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304303,7 +303036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71126] = 38, + [69659] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304334,38 +303067,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2789), 1, + STATE(2770), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8733), 1, - sym__expression, - STATE(8792), 1, + STATE(9064), 1, sym__where_predicate, + STATE(9065), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304379,7 +303112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304388,7 +303121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304400,7 +303133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71261] = 38, + [69794] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304431,38 +303164,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2790), 1, + STATE(2771), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8797), 1, - sym__expression, - STATE(8800), 1, + STATE(9066), 1, sym__where_predicate, + STATE(9068), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304476,7 +303209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304485,7 +303218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304497,7 +303230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71396] = 38, + [69929] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304528,38 +303261,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2791), 1, + STATE(2772), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8802), 1, - sym__expression, - STATE(8803), 1, + STATE(9069), 1, sym__where_predicate, + STATE(9071), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304573,7 +303306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304582,7 +303315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304594,7 +303327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71531] = 38, + [70064] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304625,38 +303358,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2792), 1, + STATE(2773), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8806), 1, - sym__expression, - STATE(8808), 1, + STATE(9072), 1, sym__where_predicate, + STATE(9073), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304670,7 +303403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304679,7 +303412,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304691,7 +303424,70 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71666] = 38, + [70199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2774), 1, + sym_comment, + ACTIONS(877), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(879), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70266] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304722,38 +303518,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2793), 1, + STATE(2775), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8809), 1, - sym__expression, - STATE(8810), 1, + STATE(9074), 1, sym__where_predicate, + STATE(9079), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304767,7 +303563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304776,7 +303572,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304788,7 +303584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71801] = 38, + [70401] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -304819,38 +303615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2794), 1, + STATE(2776), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8816), 1, - sym__expression, - STATE(8817), 1, + STATE(9081), 1, sym__where_predicate, + STATE(9083), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -304864,7 +303660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -304873,7 +303669,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304885,92 +303681,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71936] = 38, + [70536] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2795), 1, + STATE(2777), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9396), 1, + STATE(9085), 1, sym__where_predicate, - STATE(9397), 1, + STATE(9097), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -304982,350 +303778,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72071] = 6, - ACTIONS(105), 1, + [70671] = 38, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(6212), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6214), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, - sym_comment, - ACTIONS(2996), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [72142] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(6214), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6216), 1, - anon_sym_DOT2, - STATE(2797), 1, - sym_comment, - ACTIONS(2996), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(417), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [72213] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2988), 1, - sym__entry_separator, - ACTIONS(6218), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6220), 1, - aux_sym__immediate_decimal_token2, - STATE(2798), 1, - sym_comment, - ACTIONS(2986), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1743), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5997), 1, + sym_identifier, + STATE(2778), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(9099), 1, + sym__where_predicate, + STATE(9120), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [72284] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2799), 1, - sym_comment, - ACTIONS(861), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(863), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72351] = 38, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [70806] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2800), 1, + STATE(2779), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9398), 1, + STATE(9122), 1, sym__where_predicate, - STATE(9403), 1, + STATE(9125), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -305337,92 +303972,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72486] = 38, + [70941] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2801), 1, + STATE(2780), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9407), 1, - sym__expression, - STATE(9518), 1, + STATE(8645), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(8646), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -305434,92 +304069,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72621] = 38, + [71076] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2802), 1, + STATE(2781), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9638), 1, + STATE(8647), 1, sym__where_predicate, - STATE(9639), 1, + STATE(8648), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -305531,7 +304166,73 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72756] = 38, + [71211] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2764), 1, + sym_path, + STATE(2782), 1, + sym_comment, + STATE(3827), 1, + sym_cell_path, + ACTIONS(913), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(915), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [71284] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -305562,38 +304263,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2803), 1, + STATE(2783), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9095), 1, - sym__expression, - STATE(9102), 1, + STATE(9127), 1, sym__where_predicate, + STATE(9128), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -305607,7 +304308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -305616,7 +304317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -305628,18 +304329,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [72891] = 7, + [71419] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, + ACTIONS(6190), 1, anon_sym_DOT2, - STATE(2804), 1, - sym_comment, - STATE(2844), 1, + STATE(2764), 1, sym_path, - STATE(3838), 1, + STATE(2784), 1, + sym_comment, + STATE(3840), 1, sym_cell_path, - ACTIONS(909), 14, + ACTIONS(929), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -305654,7 +304355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(911), 39, + ACTIONS(931), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -305694,221 +304395,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [72964] = 7, + [71492] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, - anon_sym_DOT2, - STATE(2805), 1, - sym_comment, - STATE(2848), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - ACTIONS(905), 11, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(903), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [73037] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2806), 1, - sym_comment, - ACTIONS(1191), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1189), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [73104] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(417), 1, anon_sym_PLUS, - ACTIONS(79), 1, - anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2807), 1, + STATE(2785), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9411), 1, + STATE(9132), 1, sym__where_predicate, - STATE(9416), 1, + STATE(9133), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -305920,38 +304492,44 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73239] = 4, - ACTIONS(105), 1, + [71627] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(6112), 1, + anon_sym_QMARK2, + STATE(2786), 1, sym_comment, - ACTIONS(1254), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1252), 54, + ACTIONS(1070), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1072), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -305968,107 +304546,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [73306] = 38, + [71696] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2809), 1, + STATE(2787), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9636), 1, + STATE(8649), 1, sym__where_predicate, - STATE(9637), 1, + STATE(8650), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -306080,285 +304653,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73441] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2810), 1, - sym_comment, - ACTIONS(1224), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1222), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [73508] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6222), 1, - anon_sym_DOT2, - ACTIONS(6224), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6226), 1, - aux_sym_unquoted_token2, - STATE(2811), 1, - sym_comment, - ACTIONS(1005), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1007), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [73581] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(6228), 1, - aux_sym_unquoted_token5, - STATE(2812), 1, - sym_comment, - ACTIONS(1193), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [73650] = 38, + [71831] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2813), 1, + STATE(2788), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9634), 1, + STATE(8806), 1, sym__where_predicate, - STATE(9635), 1, + STATE(8807), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -306370,92 +304750,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73785] = 38, + [71966] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2814), 1, + STATE(2789), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9632), 1, + STATE(8756), 1, sym__where_predicate, - STATE(9747), 1, + STATE(8757), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -306467,262 +304847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [73920] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_QMARK2, - STATE(2815), 1, - sym_comment, - ACTIONS(1054), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2816), 1, - sym_comment, - ACTIONS(1113), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74056] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_QMARK2, - STATE(2817), 1, - sym_comment, - ACTIONS(1054), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74125] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6232), 1, - anon_sym_QMARK2, - STATE(2818), 1, - sym_comment, - ACTIONS(1054), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1056), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74194] = 38, + [72101] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -306753,38 +304878,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2819), 1, + STATE(2790), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9077), 1, - sym__expression, - STATE(9079), 1, + STATE(9136), 1, sym__where_predicate, + STATE(9138), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -306798,7 +304923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -306807,7 +304932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -306819,71 +304944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74329] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6232), 1, - anon_sym_QMARK2, - STATE(2820), 1, - sym_comment, - ACTIONS(1054), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1056), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74398] = 38, + [72236] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -306914,37 +304975,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2821), 1, + STATE(2791), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9068), 1, + STATE(8808), 1, sym__where_predicate, - STATE(9093), 1, + STATE(8810), 1, sym__expression, ACTIONS(187), 2, anon_sym_true, @@ -306959,7 +305020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -306968,7 +305029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -306980,7 +305041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74533] = 38, + [72371] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307011,38 +305072,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2822), 1, + STATE(2792), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8822), 1, - sym__expression, - STATE(8824), 1, + STATE(8811), 1, sym__where_predicate, + STATE(8812), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307056,7 +305117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307065,7 +305126,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307077,7 +305138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74668] = 38, + [72506] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307108,38 +305169,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2823), 1, + STATE(2793), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8827), 1, - sym__expression, - STATE(8829), 1, + STATE(8594), 1, sym__where_predicate, + STATE(8595), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307153,7 +305214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307162,7 +305223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307174,7 +305235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74803] = 38, + [72641] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307205,38 +305266,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2824), 1, + STATE(2794), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8830), 1, - sym__expression, - STATE(8831), 1, + STATE(8596), 1, sym__where_predicate, + STATE(8597), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307250,7 +305311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307259,7 +305320,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307271,7 +305332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [74938] = 38, + [72776] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307302,38 +305363,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2825), 1, + STATE(2795), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8832), 1, - sym__expression, - STATE(8834), 1, + STATE(8610), 1, sym__where_predicate, + STATE(8611), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307347,7 +305408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307356,7 +305417,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307368,92 +305429,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75073] = 38, + [72911] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(417), 1, + ACTIONS(6194), 1, + anon_sym_DOT, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2826), 1, + ACTIONS(6198), 1, + aux_sym__val_number_decimal_token1, + STATE(2796), 1, sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, + STATE(4552), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5161), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6782), 1, sym__expr_binary_expression, - STATE(8836), 1, + STATE(7237), 1, + sym_val_range, + STATE(7949), 1, sym__expression, - STATE(8838), 1, - sym__where_predicate, - ACTIONS(187), 2, + STATE(7950), 1, + sym_unquoted, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6200), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(5671), 11, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307465,7 +305526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75208] = 38, + [73046] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307496,38 +305557,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2827), 1, + STATE(2797), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8840), 1, - sym__expression, - STATE(8842), 1, + STATE(8813), 1, sym__where_predicate, + STATE(8814), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307541,7 +305602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307550,7 +305611,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307562,7 +305623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75343] = 38, + [73181] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307593,38 +305654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2828), 1, + STATE(2798), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8759), 1, - sym__expression, - STATE(8846), 1, + STATE(8612), 1, sym__where_predicate, + STATE(8613), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307638,7 +305699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307647,7 +305708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307659,7 +305720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75478] = 38, + [73316] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307690,38 +305751,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2829), 1, + STATE(2799), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8848), 1, - sym__expression, - STATE(8849), 1, + STATE(8652), 1, sym__where_predicate, + STATE(8654), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307735,7 +305796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307744,7 +305805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307756,7 +305817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75613] = 38, + [73451] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307787,38 +305848,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2830), 1, + STATE(2800), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9070), 1, - sym__expression, - STATE(9071), 1, + STATE(8615), 1, sym__where_predicate, + STATE(8616), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307832,7 +305893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307841,7 +305902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307853,7 +305914,73 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75748] = 38, + [73586] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2764), 1, + sym_path, + STATE(2801), 1, + sym_comment, + STATE(3748), 1, + sym_cell_path, + ACTIONS(933), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(935), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [73659] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307884,38 +306011,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2831), 1, + STATE(2802), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8853), 1, - sym__expression, - STATE(8854), 1, + STATE(8816), 1, sym__where_predicate, + STATE(8817), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -307929,7 +306056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -307938,7 +306065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -307950,7 +306077,299 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [75883] = 38, + [73794] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2803), 1, + sym_comment, + ACTIONS(1187), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1185), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [73861] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2764), 1, + sym_path, + STATE(2804), 1, + sym_comment, + STATE(3828), 1, + sym_cell_path, + ACTIONS(917), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(919), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [73934] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3399), 1, + anon_sym_DASH_DASH, + ACTIONS(3409), 1, + anon_sym_null, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + anon_sym_DASH, + ACTIONS(6138), 1, + anon_sym_LBRACE, + ACTIONS(6140), 1, + anon_sym_DOT, + ACTIONS(6142), 1, + anon_sym_PLUS, + ACTIONS(6144), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6148), 1, + sym_val_date, + ACTIONS(6150), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(6202), 1, + anon_sym_RBRACK, + STATE(2805), 1, + sym_comment, + STATE(3023), 1, + aux_sym__match_pattern_list_repeat1, + STATE(6036), 1, + sym__val_number_decimal, + STATE(6177), 1, + sym__var, + STATE(6326), 1, + sym_val_number, + STATE(6336), 1, + sym__val_number, + STATE(6492), 1, + sym_expr_parenthesized, + STATE(6521), 1, + sym_val_variable, + STATE(6793), 1, + sym_long_flag_equals_value, + STATE(6794), 1, + sym__str_double_quotes, + STATE(6797), 1, + sym__match_pattern_list, + STATE(6800), 1, + sym__match_pattern_record, + STATE(6801), 1, + sym__expr_unary_minus, + STATE(6861), 1, + sym__match_pattern_expression, + STATE(10621), 1, + sym_val_list, + ACTIONS(3411), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3425), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6796), 2, + sym__match_pattern_value, + sym_val_range, + STATE(10547), 2, + sym__match_pattern_rest, + sym__match_pattern_ignore_rest, + ACTIONS(3415), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6146), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6875), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6795), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [74071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6204), 1, + sym_filesize_unit, + ACTIONS(6206), 1, + sym_duration_unit, + STATE(2806), 1, + sym_comment, + ACTIONS(1054), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1056), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74142] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -307981,38 +306400,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2832), 1, + STATE(2807), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8856), 1, - sym__expression, - STATE(8857), 1, + STATE(8657), 1, sym__where_predicate, + STATE(8658), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308026,7 +306445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308035,7 +306454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308047,7 +306466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76018] = 38, + [74277] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -308078,38 +306497,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2833), 1, + STATE(2808), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8859), 1, - sym__expression, - STATE(8861), 1, + STATE(8758), 1, sym__where_predicate, + STATE(8759), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308123,7 +306542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308132,7 +306551,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308144,7 +306563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76153] = 38, + [74412] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -308175,38 +306594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2834), 1, + STATE(2809), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8862), 1, - sym__expression, - STATE(8863), 1, + STATE(8608), 1, sym__where_predicate, + STATE(8609), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308220,7 +306639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308229,7 +306648,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308241,7 +306660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76288] = 38, + [74547] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -308272,38 +306691,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2835), 1, + STATE(2810), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9083), 1, - sym__expression, - STATE(9085), 1, + STATE(8623), 1, sym__where_predicate, + STATE(8624), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308317,7 +306736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308326,7 +306745,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308338,7 +306757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76423] = 38, + [74682] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -308369,38 +306788,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2836), 1, + STATE(2811), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9074), 1, - sym__expression, - STATE(9075), 1, + STATE(8625), 1, sym__where_predicate, + STATE(8627), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308414,7 +306833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308423,7 +306842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308435,44 +306854,136 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76558] = 7, + [74817] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6234), 1, - anon_sym_DOT2, - STATE(2783), 1, - sym_path, - STATE(2837), 1, - sym_comment, - STATE(3107), 1, - sym_cell_path, - ACTIONS(997), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(183), 1, anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2812), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8628), 1, + sym__where_predicate, + STATE(8629), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(999), 39, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [74952] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1193), 1, + sym__entry_separator, + ACTIONS(6208), 1, + aux_sym_unquoted_token5, + STATE(2813), 1, + sym_comment, + ACTIONS(1191), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -308489,19 +307000,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [76631] = 38, + aux_sym__unquoted_in_list_token1, + [75021] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -308532,38 +307046,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2838), 1, + STATE(2814), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9106), 1, - sym__expression, - STATE(9108), 1, + STATE(8631), 1, sym__where_predicate, + STATE(9178), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -308577,7 +307091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -308586,7 +307100,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308598,92 +307112,188 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76766] = 38, + [75156] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6116), 1, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(6118), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(6120), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6210), 1, + anon_sym_LBRACE, + STATE(2815), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6748), 1, + sym__expr_binary_expression, + STATE(6864), 1, + sym_block, + STATE(6865), 1, + sym__expression, + STATE(7237), 1, + sym_val_range, + STATE(10226), 1, + sym__match_expression, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [75289] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2839), 1, + STATE(2816), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9285), 1, - sym__expression, - STATE(9286), 1, + STATE(8633), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(8638), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308695,155 +307305,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [76901] = 4, + [75424] = 38, ACTIONS(3), 1, anon_sym_POUND, - STATE(2840), 1, - sym_comment, - ACTIONS(1191), 14, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, + ACTIONS(5969), 1, + anon_sym_DASH, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_DOT, + ACTIONS(5975), 1, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1189), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [76968] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, - anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2841), 1, + STATE(2817), 1, sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, + STATE(4552), 1, sym__var, - STATE(5437), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5657), 1, sym_val_variable, - STATE(6023), 1, + STATE(5752), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6677), 1, sym__expr_binary_expression, - STATE(9423), 1, - sym__where_predicate, - STATE(9494), 1, + STATE(7237), 1, + sym_val_range, + STATE(7949), 1, sym__expression, - ACTIONS(83), 2, + STATE(7950), 1, + sym_unquoted, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5981), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308855,92 +307402,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77103] = 38, + [75559] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(6214), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6218), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(6222), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(6224), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(6232), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2842), 1, - sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, + STATE(2652), 1, + sym__var, + STATE(2712), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(2806), 1, + sym_val_number, + STATE(2818), 1, + sym_comment, + STATE(2820), 1, sym__val_number, - STATE(4919), 1, - sym__var, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5512), 1, + STATE(3002), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(3013), 1, + sym_expr_parenthesized, + STATE(3127), 1, + sym__str_double_quotes, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3624), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6654), 1, + sym_val_range, + STATE(6749), 1, sym__expr_binary_expression, - STATE(9337), 1, + STATE(6864), 1, + sym_block, + STATE(6865), 1, sym__expression, - STATE(9344), 1, - sym__where_predicate, - ACTIONS(83), 2, + STATE(6866), 1, + sym__match_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(6236), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(3623), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(6234), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, + aux_sym__val_number_token6, + STATE(3109), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -308952,92 +307498,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77238] = 38, + [75692] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2843), 1, + STATE(2819), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9358), 1, - sym__expression, - STATE(9367), 1, + STATE(8659), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(8660), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -309049,233 +307595,42 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [77373] = 7, + [75827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2755), 1, - aux_sym_cell_path_repeat1, - STATE(2844), 1, + STATE(2820), 1, sym_comment, - STATE(3624), 1, - sym_path, - ACTIONS(903), 14, - anon_sym_DOLLAR, + ACTIONS(1177), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(905), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [77446] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token2, - STATE(2845), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2996), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [77515] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6239), 1, - aux_sym__immediate_decimal_token2, - STATE(2846), 1, - sym_comment, - ACTIONS(2998), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [77586] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2847), 1, - sym_comment, - ACTIONS(1261), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1259), 54, + aux_sym_unquoted_token1, + ACTIONS(1179), 42, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -309292,365 +307647,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [77653] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2638), 1, - aux_sym_cell_path_repeat1, - STATE(2848), 1, - sym_comment, - STATE(2856), 1, - sym_path, - ACTIONS(977), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(975), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [77724] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6030), 1, - aux_sym__immediate_decimal_token2, - STATE(2849), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2986), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [77793] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6243), 1, - aux_sym__immediate_decimal_token2, - STATE(2850), 1, - sym_comment, - ACTIONS(2988), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2986), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [77864] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6245), 1, - aux_sym__immediate_decimal_token2, - STATE(2851), 1, - sym_comment, - ACTIONS(3836), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(3834), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [77933] = 38, + [75894] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3337), 1, - aux_sym_unquoted_token1, - ACTIONS(6247), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6257), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(6267), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - STATE(2696), 1, - sym__val_number_decimal, - STATE(2837), 1, - sym__var, - STATE(2852), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2821), 1, sym_comment, - STATE(2970), 1, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(2996), 1, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, sym__val_number, - STATE(3276), 1, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(3692), 1, + STATE(5294), 1, sym_val_variable, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(3852), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6872), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(6921), 1, - sym_unquoted, - STATE(6922), 1, + STATE(8767), 1, + sym__where_predicate, + STATE(8768), 1, sym__expression, - STATE(6972), 1, - sym_val_range, - ACTIONS(6265), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6271), 3, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(6273), 3, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(3730), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - STATE(3822), 11, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -309662,7 +307755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78068] = 38, + [76029] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -309693,38 +307786,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2853), 1, + STATE(2822), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9426), 1, - sym__where_predicate, - STATE(9433), 1, + STATE(9245), 1, sym__expression, + STATE(9585), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -309738,7 +307831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -309747,7 +307840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -309759,158 +307852,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78203] = 7, + [76164] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, - anon_sym_DOT2, - STATE(2553), 1, - sym_path, - STATE(2854), 1, - sym_comment, - STATE(3778), 1, - sym_cell_path, - ACTIONS(981), 11, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(979), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [78276] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3080), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(6161), 1, - anon_sym_DASH, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6285), 1, + ACTIONS(6030), 1, sym_identifier, - ACTIONS(6287), 1, - anon_sym_not, - ACTIONS(6289), 1, - anon_sym_null, - STATE(2855), 1, + STATE(2823), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4271), 1, + sym_val_range, + STATE(4472), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, + STATE(4763), 1, + sym__val_number, + STATE(5003), 1, + sym__var, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5580), 1, + STATE(5800), 1, sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, sym__inter_single_quotes, - STATE(6808), 1, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10222), 1, + STATE(9299), 1, + sym__where_predicate, + STATE(9301), 1, sym__expression, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3886), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6291), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3078), 3, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5566), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3884), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5744), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -309922,18 +307949,21 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78411] = 4, + [76299] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2856), 1, + ACTIONS(6248), 1, + anon_sym_DOT2, + STATE(2759), 1, + sym_path, + STATE(2824), 1, sym_comment, - ACTIONS(1224), 14, - anon_sym_COLON, - anon_sym_COMMA, + STATE(3303), 1, + sym_cell_path, + ACTIONS(935), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -309942,7 +307972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1222), 42, + ACTIONS(933), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -309985,7 +308015,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [78478] = 38, + [76372] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310016,38 +308046,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2857), 1, + STATE(2825), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9368), 1, - sym__expression, - STATE(9370), 1, + STATE(9788), 1, sym__where_predicate, + STATE(9789), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -310061,7 +308091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310070,7 +308100,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310082,7 +308112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78613] = 38, + [76507] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310113,37 +308143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2858), 1, + STATE(2826), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9324), 1, + STATE(9790), 1, sym__where_predicate, - STATE(9372), 1, + STATE(9791), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -310158,7 +308188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310167,7 +308197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310179,7 +308209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78748] = 38, + [76642] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310210,37 +308240,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2859), 1, + STATE(2827), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9309), 1, + STATE(9794), 1, sym__where_predicate, - STATE(9310), 1, + STATE(9799), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -310255,7 +308285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310264,7 +308294,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310276,7 +308306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [78883] = 38, + [76777] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310307,37 +308337,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2860), 1, + STATE(2828), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9312), 1, + STATE(9226), 1, sym__where_predicate, - STATE(9313), 1, + STATE(9717), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -310352,7 +308382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310361,7 +308391,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310373,92 +308403,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79018] = 38, + [76912] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2861), 1, + STATE(2829), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9066), 1, - sym__expression, - STATE(9067), 1, + STATE(9204), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9553), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310470,7 +308500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79153] = 38, + [77047] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310501,38 +308531,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2862), 1, + STATE(2830), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9387), 1, - sym__expression, - STATE(9393), 1, + STATE(9246), 1, sym__where_predicate, + STATE(9248), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -310546,7 +308576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310555,7 +308585,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310567,92 +308597,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79288] = 38, + [77182] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2863), 1, + STATE(2831), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9091), 1, + STATE(9475), 1, sym__expression, - STATE(9092), 1, + STATE(9582), 1, sym__where_predicate, - ACTIONS(187), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310664,7 +308694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79423] = 38, + [77317] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310695,38 +308725,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2864), 1, + STATE(2832), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9519), 1, - sym__expression, - STATE(9693), 1, + STATE(9590), 1, sym__where_predicate, + STATE(9727), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -310740,7 +308770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310749,7 +308779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310761,7 +308791,71 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79558] = 38, + [77452] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6251), 1, + anon_sym_QMARK2, + STATE(2833), 1, + sym_comment, + ACTIONS(1070), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1072), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77521] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310792,38 +308886,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2865), 1, + STATE(2834), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9723), 1, - sym__expression, - STATE(9810), 1, + STATE(9233), 1, sym__where_predicate, + STATE(9530), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -310837,7 +308931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310846,7 +308940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310858,7 +308952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79693] = 38, + [77656] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -310889,37 +308983,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2866), 1, + STATE(2835), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9314), 1, + STATE(9549), 1, sym__where_predicate, - STATE(9315), 1, + STATE(9563), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -310934,7 +309028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -310943,7 +309037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -310955,92 +309049,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79828] = 38, + [77791] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2867), 1, + STATE(2836), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8871), 1, - sym__expression, - STATE(8877), 1, + STATE(9249), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9258), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311052,92 +309146,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [79963] = 38, + [77926] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2868), 1, + STATE(2837), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8881), 1, - sym__expression, - STATE(8882), 1, + STATE(9264), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9420), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311149,7 +309243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80098] = 38, + [78061] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -311180,38 +309274,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2869), 1, + STATE(2838), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9394), 1, - sym__expression, - STATE(9395), 1, + STATE(9304), 1, sym__where_predicate, + STATE(9309), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -311225,7 +309319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -311234,7 +309328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311246,92 +309340,155 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80233] = 38, + [78196] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2839), 1, + sym_comment, + ACTIONS(1211), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1209), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [78263] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2870), 1, + STATE(2840), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9080), 1, - sym__expression, - STATE(9082), 1, + STATE(9427), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9432), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311343,7 +309500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80368] = 38, + [78398] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -311374,38 +309531,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2871), 1, + STATE(2841), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9401), 1, - sym__expression, - STATE(9402), 1, + STATE(9580), 1, sym__where_predicate, + STATE(9725), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -311419,7 +309576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -311428,7 +309585,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311440,92 +309597,189 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80503] = 38, + [78533] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(6114), 1, + sym_identifier, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(6124), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(6128), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + STATE(2842), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10286), 1, + sym__expression, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3973), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6126), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [78668] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2872), 1, + STATE(2843), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8843), 1, + STATE(9352), 1, sym__where_predicate, - STATE(8883), 1, + STATE(9457), 1, sym__expression, - ACTIONS(187), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311537,38 +309791,44 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80638] = 4, - ACTIONS(105), 1, + [78803] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2873), 1, + ACTIONS(6251), 1, + anon_sym_QMARK2, + STATE(2844), 1, sym_comment, - ACTIONS(1230), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1228), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(1070), 14, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1072), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -311585,107 +309845,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [80705] = 38, + [78872] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2874), 1, + STATE(2845), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8885), 1, - sym__expression, - STATE(8887), 1, + STATE(9701), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9731), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311697,92 +309952,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80840] = 38, + [79007] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2875), 1, + STATE(2846), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8795), 1, + STATE(9435), 1, sym__where_predicate, - STATE(8888), 1, + STATE(9593), 1, sym__expression, - ACTIONS(187), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311794,92 +310049,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [80975] = 38, + [79142] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2876), 1, + STATE(2847), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8890), 1, - sym__expression, - STATE(8892), 1, + STATE(9594), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9598), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311891,92 +310146,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81110] = 38, + [79277] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2877), 1, + STATE(2848), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8893), 1, - sym__expression, - STATE(8895), 1, + STATE(9584), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9761), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -311988,189 +310243,222 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81245] = 38, + [79412] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2747), 1, + aux_sym_cell_path_repeat1, + STATE(2849), 1, + sym_comment, + STATE(3294), 1, + sym_path, + ACTIONS(903), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(905), 39, anon_sym_LBRACK, - ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2878), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8912), 1, - sym__expression, - STATE(8913), 1, - sym__where_predicate, - ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(201), 2, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [79485] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6001), 1, + aux_sym_unquoted_token6, + STATE(2850), 1, + sym_comment, + ACTIONS(877), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, + ACTIONS(879), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [81380] = 38, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [79554] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2879), 1, + STATE(2851), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8915), 1, - sym__expression, - STATE(8916), 1, + STATE(9781), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9792), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312182,7 +310470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81515] = 38, + [79689] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -312213,38 +310501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2880), 1, + STATE(2852), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9436), 1, - sym__where_predicate, - STATE(9437), 1, + STATE(9674), 1, sym__expression, + STATE(9807), 1, + sym__where_predicate, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -312258,7 +310546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -312267,7 +310555,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312279,92 +310567,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81650] = 38, + [79824] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2881), 1, + STATE(2853), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8917), 1, - sym__expression, - STATE(8918), 1, + STATE(9644), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9653), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312376,7 +310664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81785] = 38, + [79959] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -312407,38 +310695,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2882), 1, + STATE(2854), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9062), 1, - sym__expression, - STATE(9063), 1, + STATE(8600), 1, sym__where_predicate, + STATE(8605), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -312452,7 +310740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -312461,7 +310749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312473,92 +310761,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [81920] = 38, + [80094] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2883), 1, + STATE(2855), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8919), 1, - sym__expression, - STATE(8920), 1, + STATE(9182), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9816), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312570,92 +310858,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82055] = 38, + [80229] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2884), 1, + STATE(2856), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8921), 1, + STATE(9377), 1, sym__expression, - STATE(8922), 1, + STATE(9656), 1, sym__where_predicate, - ACTIONS(187), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312667,92 +310955,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82190] = 38, + [80364] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2885), 1, + STATE(2857), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8889), 1, - sym__expression, - STATE(8926), 1, + STATE(9538), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9820), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312764,7 +311052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82325] = 38, + [80499] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -312795,38 +311083,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2886), 1, + STATE(2858), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9302), 1, - sym__expression, - STATE(9321), 1, + STATE(9472), 1, sym__where_predicate, + STATE(9636), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -312840,7 +311128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -312849,7 +311137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312861,7 +311149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82460] = 38, + [80634] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -312892,37 +311180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2887), 1, + STATE(2859), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9222), 1, + STATE(9365), 1, sym__where_predicate, - STATE(9270), 1, + STATE(9539), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -312937,7 +311225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -312946,7 +311234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -312958,158 +311246,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82595] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2844), 1, - sym_path, - STATE(2888), 1, - sym_comment, - STATE(3842), 1, - sym_cell_path, - ACTIONS(997), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(999), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [82668] = 38, + [80769] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2889), 1, + STATE(2860), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9064), 1, - sym__expression, - STATE(9065), 1, + STATE(9613), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9654), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313121,7 +311343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82803] = 38, + [80904] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313152,37 +311374,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2890), 1, + STATE(2861), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9438), 1, + STATE(9668), 1, sym__where_predicate, - STATE(9442), 1, + STATE(9695), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -313197,7 +311419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313206,7 +311428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313218,92 +311440,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [82938] = 38, + [81039] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(5970), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5974), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(5978), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(5980), 1, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(5984), 1, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - STATE(2891), 1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(6030), 1, + sym_identifier, + STATE(2862), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4271), 1, + sym_val_range, + STATE(4472), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, + STATE(4722), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5003), 1, + sym__var, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5580), 1, + STATE(5800), 1, sym_val_variable, - STATE(5703), 1, - sym__val_number_decimal, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, sym__inter_single_quotes, - STATE(6808), 1, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7940), 1, - sym_unquoted, - STATE(7943), 1, + STATE(9798), 1, + sym__where_predicate, + STATE(9812), 1, sym__expression, - ACTIONS(3070), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313315,7 +311537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83073] = 38, + [81174] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313346,37 +311568,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2892), 1, + STATE(2863), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9451), 1, + STATE(9219), 1, sym__where_predicate, - STATE(9457), 1, + STATE(9334), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -313391,7 +311613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313400,7 +311622,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313412,7 +311634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83208] = 38, + [81309] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313443,38 +311665,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2893), 1, + STATE(2864), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9334), 1, - sym__expression, - STATE(9424), 1, + STATE(9393), 1, sym__where_predicate, + STATE(9519), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -313488,7 +311710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313497,7 +311719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313509,7 +311731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83343] = 38, + [81444] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313540,38 +311762,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2894), 1, + STATE(2865), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9682), 1, - sym__expression, - STATE(9817), 1, + STATE(9521), 1, sym__where_predicate, + STATE(9527), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -313585,7 +311807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313594,7 +311816,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313606,92 +311828,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83478] = 38, + [81579] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(77), 1, - anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2895), 1, + STATE(2866), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9812), 1, + STATE(8661), 1, sym__where_predicate, - STATE(9813), 1, + STATE(8662), 1, sym__expression, - ACTIONS(83), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313703,7 +311925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83613] = 38, + [81714] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313734,38 +311956,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2896), 1, + STATE(2867), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9806), 1, - sym__expression, - STATE(9809), 1, + STATE(9672), 1, sym__where_predicate, + STATE(9673), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -313779,7 +312001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313788,7 +312010,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313800,7 +312022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83748] = 38, + [81849] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -313831,38 +312053,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2897), 1, + STATE(2868), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9057), 1, + STATE(8663), 1, + sym__where_predicate, + STATE(8664), 1, sym__expression, - STATE(9058), 1, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [81984] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2869), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8769), 1, sym__where_predicate, + STATE(8770), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -313876,7 +312195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313885,7 +312204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313897,7 +312216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [83883] = 38, + [82119] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -313928,38 +312247,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2898), 1, + STATE(2870), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9798), 1, - sym__expression, - STATE(9805), 1, + STATE(9690), 1, sym__where_predicate, + STATE(9748), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -313973,7 +312292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -313982,7 +312301,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -313994,7 +312313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84018] = 38, + [82254] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -314025,38 +312344,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2899), 1, + STATE(2871), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9796), 1, - sym__expression, - STATE(9797), 1, + STATE(9751), 1, sym__where_predicate, + STATE(9755), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -314070,7 +312389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -314079,7 +312398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -314091,73 +312410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84153] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6293), 1, - anon_sym_DOT2, - STATE(2783), 1, - sym_path, - STATE(2900), 1, - sym_comment, - STATE(3202), 1, - sym_cell_path, - ACTIONS(979), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(981), 39, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [84226] = 38, + [82389] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -314188,38 +312441,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2901), 1, + STATE(2872), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9262), 1, - sym__expression, - STATE(9269), 1, + STATE(9815), 1, sym__where_predicate, + STATE(9818), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -314233,7 +312486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -314242,7 +312495,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -314254,81 +312507,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84361] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2902), 1, - sym_comment, - ACTIONS(1230), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1228), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [84428] = 7, + [82524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, + ACTIONS(6190), 1, anon_sym_DOT2, - STATE(2844), 1, + STATE(2764), 1, sym_path, - STATE(2903), 1, + STATE(2873), 1, sym_comment, - STATE(3774), 1, + STATE(3750), 1, sym_cell_path, - ACTIONS(1001), 14, + ACTIONS(966), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -314343,7 +312533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1003), 39, + ACTIONS(968), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -314383,7 +312573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [84501] = 38, + [82597] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -314414,37 +312604,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2904), 1, + STATE(2874), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9383), 1, + STATE(9228), 1, sym__where_predicate, - STATE(9459), 1, + STATE(9232), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -314459,7 +312649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -314468,7 +312658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -314480,92 +312670,155 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84636] = 38, - ACTIONS(3), 1, + [82732] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(31), 1, + STATE(2875), 1, + sym_comment, + ACTIONS(1215), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1213), 54, anon_sym_LBRACK, - ACTIONS(33), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(39), 1, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(57), 1, + anon_sym_in, anon_sym_LBRACE, - ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(79), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [82799] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(81), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2905), 1, + STATE(2876), 1, sym_comment, - STATE(4327), 1, + STATE(4150), 1, sym_val_range, - STATE(4494), 1, + STATE(4394), 1, sym_val_number, - STATE(4762), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4763), 1, + STATE(4464), 1, sym__val_number, - STATE(4919), 1, + STATE(4833), 1, sym__var, - STATE(5437), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5294), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9756), 1, - sym__expression, - STATE(9757), 1, + STATE(8737), 1, sym__where_predicate, - ACTIONS(83), 2, + STATE(8738), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(87), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -314577,42 +312830,38 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [84771] = 4, - ACTIONS(3), 1, + [82934] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2906), 1, + STATE(2877), 1, sym_comment, - ACTIONS(1065), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1067), 43, + ACTIONS(1219), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1217), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -314629,143 +312878,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84838] = 38, + aux_sym__unquoted_in_list_token1, + [83001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(6253), 1, + anon_sym_DOT2, + STATE(3294), 1, + sym_path, + STATE(2878), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 14, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_in, anon_sym_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(79), 1, + anon_sym_LT2, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2907), 1, - sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, - sym__var, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5512), 1, - sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, - sym__expr_binary_expression, - STATE(9485), 1, - sym__where_predicate, - STATE(9492), 1, - sym__expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(944), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, - sym_val_nothing, - sym_val_bool, - 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, - [84973] = 4, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [83072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2908), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(877), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1115), 42, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 43, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -314796,108 +313016,141 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85040] = 38, + [83139] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(6256), 1, + anon_sym_DOT2, + STATE(2849), 1, + sym_path, + STATE(2880), 1, + sym_comment, + STATE(3298), 1, + sym_cell_path, + ACTIONS(933), 14, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(59), 1, + anon_sym_in, anon_sym_DOT, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(79), 1, + anon_sym_LT2, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(935), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2909), 1, + [83212] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2881), 1, sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, - sym__var, - STATE(5437), 1, - sym_expr_parenthesized, - STATE(5512), 1, - sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, - sym__expr_binary_expression, - STATE(9271), 1, - sym__expression, - STATE(9462), 1, - sym__where_predicate, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(91), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(1084), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1082), 54, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, - sym_val_nothing, - sym_val_bool, - 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, - [85175] = 38, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [83279] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -314928,37 +313181,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2910), 1, + STATE(2882), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9465), 1, + STATE(9201), 1, sym__expression, - STATE(9480), 1, + STATE(9413), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -314973,7 +313226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -314982,7 +313235,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -314994,7 +313247,70 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85310] = 38, + [83414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_comment, + ACTIONS(1177), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1179), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83481] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315025,38 +313341,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2911), 1, + STATE(2884), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9758), 1, - sym__expression, - STATE(9767), 1, + STATE(9354), 1, sym__where_predicate, + STATE(9558), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -315070,7 +313386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315079,7 +313395,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315091,7 +313407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85445] = 38, + [83616] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315122,37 +313438,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2912), 1, + STATE(2885), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9330), 1, + STATE(9561), 1, sym__where_predicate, - STATE(9333), 1, + STATE(9655), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -315167,7 +313483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315176,7 +313492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315188,7 +313504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85580] = 38, + [83751] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315219,37 +313535,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2913), 1, + STATE(2886), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9245), 1, + STATE(9632), 1, sym__expression, - STATE(9248), 1, + STATE(9667), 1, sym__where_predicate, ACTIONS(83), 2, anon_sym_true, @@ -315264,7 +313580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315273,7 +313589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315285,92 +313601,156 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85715] = 38, - ACTIONS(3), 1, + [83886] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(6259), 1, + anon_sym_DOT2, + STATE(2887), 1, + sym_comment, + ACTIONS(1054), 54, anon_sym_LBRACK, - ACTIONS(5970), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5972), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(5976), 1, + anon_sym_in, anon_sym_LBRACE, - ACTIONS(5978), 1, anon_sym_DOT, - ACTIONS(5980), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(5982), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [83955] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(5984), 1, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - STATE(2914), 1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2888), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5580), 1, + STATE(5294), 1, sym_val_variable, - STATE(5703), 1, - sym__val_number_decimal, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6808), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10359), 1, + STATE(8734), 1, + sym__where_predicate, + STATE(8736), 1, sym__expression, - STATE(10360), 1, - sym_unquoted, - ACTIONS(3070), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315382,35 +313762,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [85850] = 4, + [84090] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, + ACTIONS(6261), 1, + anon_sym_DOT2, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6265), 1, + aux_sym_unquoted_token2, + STATE(2889), 1, sym_comment, - ACTIONS(1098), 14, + ACTIONS(949), 14, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1100), 42, + ACTIONS(951), 39, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -315445,7 +313826,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85917] = 38, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [84163] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2890), 1, + sym_comment, + ACTIONS(1088), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1086), 54, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [84230] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315476,37 +313922,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2916), 1, + STATE(2891), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9239), 1, + STATE(9718), 1, sym__where_predicate, - STATE(9386), 1, + STATE(9721), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -315521,7 +313967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315530,7 +313976,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315542,7 +313988,137 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86052] = 38, + [84365] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2764), 1, + sym_path, + STATE(2892), 1, + sym_comment, + STATE(3817), 1, + sym_cell_path, + ACTIONS(909), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(911), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [84438] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6086), 1, + aux_sym__immediate_decimal_token2, + STATE(2893), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [84507] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315573,38 +314149,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2917), 1, + STATE(2894), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9183), 1, - sym__expression, - STATE(9215), 1, + STATE(9260), 1, sym__where_predicate, + STATE(9339), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -315618,7 +314194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315627,7 +314203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315639,7 +314215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86187] = 38, + [84642] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315670,37 +314246,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2918), 1, + STATE(2895), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9323), 1, + STATE(9283), 1, sym__where_predicate, - STATE(9325), 1, + STATE(9285), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -315715,7 +314291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315724,7 +314300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315736,7 +314312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86322] = 38, + [84777] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315767,38 +314343,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2919), 1, + STATE(2896), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9481), 1, - sym__expression, - STATE(9578), 1, + STATE(9412), 1, sym__where_predicate, + STATE(9614), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -315812,7 +314388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -315821,7 +314397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315833,92 +314409,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86457] = 38, + [84912] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2920), 1, + STATE(2897), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9087), 1, - sym__expression, - STATE(9090), 1, + STATE(9617), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9618), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -315930,7 +314506,138 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86592] = 38, + [85047] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6267), 1, + anon_sym_DOT2, + STATE(2759), 1, + sym_path, + STATE(2898), 1, + sym_comment, + STATE(3304), 1, + sym_cell_path, + ACTIONS(968), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(966), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [85120] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6272), 1, + aux_sym__immediate_decimal_token2, + STATE(2899), 1, + sym_comment, + ACTIONS(3000), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [85191] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -315961,37 +314668,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2921), 1, + STATE(2900), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9202), 1, + STATE(9619), 1, sym__where_predicate, - STATE(9217), 1, + STATE(9623), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -316006,7 +314713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316015,7 +314722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316027,104 +314734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86727] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5978), 1, - anon_sym_DOT, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - STATE(2922), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5703), 1, - sym__val_number_decimal, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10687), 1, - sym__expression, - STATE(10688), 1, - sym_unquoted, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5986), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [86862] = 38, + [85326] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316155,37 +314765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2923), 1, + STATE(2901), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9209), 1, + STATE(9659), 1, sym__where_predicate, - STATE(9211), 1, + STATE(9660), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -316200,7 +314810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316209,7 +314819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316221,92 +314831,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [86997] = 38, + [85461] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(59), 1, + ACTIONS(5973), 1, anon_sym_DOT, - ACTIONS(77), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(79), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(81), 1, - anon_sym_null, - ACTIONS(85), 1, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, - sym_identifier, - STATE(2924), 1, + STATE(2902), 1, sym_comment, - STATE(4327), 1, - sym_val_range, - STATE(4494), 1, - sym_val_number, - STATE(4762), 1, - sym__val_number_decimal, - STATE(4763), 1, - sym__val_number, - STATE(4919), 1, + STATE(4552), 1, sym__var, - STATE(5437), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5657), 1, sym_val_variable, - STATE(6023), 1, + STATE(5752), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - STATE(6688), 1, + STATE(6677), 1, sym__expr_binary_expression, - STATE(9418), 1, - sym__where_predicate, - STATE(9419), 1, + STATE(7237), 1, + sym_val_range, + STATE(10480), 1, sym__expression, - ACTIONS(83), 2, + STATE(10499), 1, + sym_unquoted, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(89), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(97), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(91), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(87), 4, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5981), 3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(6035), 11, + aux_sym__val_number_token6, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + STATE(5381), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316318,7 +314928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87132] = 38, + [85596] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316349,37 +314959,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2925), 1, + STATE(2903), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9213), 1, + STATE(9669), 1, sym__where_predicate, - STATE(9219), 1, + STATE(9670), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -316394,7 +315004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316403,7 +315013,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316415,92 +315025,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87267] = 38, + [85731] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(383), 1, anon_sym_DASH, - ACTIONS(6298), 1, - anon_sym_DOT, - ACTIONS(6300), 1, + ACTIONS(417), 1, anon_sym_PLUS, - ACTIONS(6302), 1, - aux_sym__val_number_decimal_token1, - STATE(2926), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2904), 1, sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5298), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5580), 1, + STATE(5294), 1, sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(6868), 1, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7940), 1, - sym_unquoted, - STATE(7943), 1, + STATE(8665), 1, + sym__where_predicate, + STATE(8666), 1, sym__expression, - ACTIONS(3070), 2, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - STATE(5744), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316512,7 +315122,73 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87402] = 38, + [85866] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2878), 1, + aux_sym_cell_path_repeat1, + STATE(2905), 1, + sym_comment, + STATE(3294), 1, + sym_path, + ACTIONS(973), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(975), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [85939] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316543,37 +315219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2927), 1, + STATE(2906), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9220), 1, + STATE(9705), 1, sym__where_predicate, - STATE(9221), 1, + STATE(9706), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -316588,7 +315264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316597,7 +315273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316609,7 +315285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87537] = 38, + [86074] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316640,38 +315316,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2928), 1, + STATE(2907), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9491), 1, - sym__expression, - STATE(9493), 1, + STATE(9723), 1, sym__where_predicate, + STATE(9724), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -316685,7 +315361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316694,7 +315370,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316706,7 +315382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87672] = 38, + [86209] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316737,38 +315413,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2929), 1, + STATE(2908), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9223), 1, - sym__expression, - STATE(9283), 1, + STATE(9730), 1, sym__where_predicate, + STATE(9754), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -316782,7 +315458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316791,7 +315467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316803,7 +315479,71 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87807] = 38, + [86344] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6093), 1, + aux_sym__immediate_decimal_token2, + STATE(2909), 1, + sym_comment, + ACTIONS(2959), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2957), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [86413] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -316834,38 +315574,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2930), 1, + STATE(2910), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9781), 1, - sym__expression, - STATE(9785), 1, + STATE(9707), 1, sym__where_predicate, + STATE(9716), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -316879,7 +315619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -316888,7 +315628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -316900,105 +315640,104 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [87942] = 39, + [86548] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_DASH_DASH, - ACTIONS(3617), 1, - anon_sym_null, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(6178), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(6184), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(6186), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(6188), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(6190), 1, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(6192), 1, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6196), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(6198), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(6306), 1, - anon_sym_RBRACK, - STATE(2931), 1, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(6030), 1, + sym_identifier, + STATE(2911), 1, sym_comment, - STATE(2957), 1, - aux_sym__match_pattern_list_repeat1, - STATE(5841), 1, - sym__val_number_decimal, - STATE(6205), 1, - sym__var, - STATE(6378), 1, + STATE(4271), 1, + sym_val_range, + STATE(4472), 1, sym_val_number, - STATE(6464), 1, + STATE(4722), 1, + sym__val_number_decimal, + STATE(4763), 1, sym__val_number, - STATE(6590), 1, - sym_val_variable, - STATE(6610), 1, + STATE(5003), 1, + sym__var, + STATE(5711), 1, sym_expr_parenthesized, - STATE(6665), 1, - sym__match_pattern_list, - STATE(6666), 1, - sym__match_pattern_record, - STATE(6667), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6767), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6774), 1, - sym_long_flag_equals_value, - STATE(6865), 1, - sym__match_pattern_expression, - STATE(10749), 1, - sym_val_list, - ACTIONS(3619), 2, + STATE(6831), 1, + sym__expr_binary_expression, + STATE(9740), 1, + sym__where_predicate, + STATE(9803), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3633), 2, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6664), 2, - sym__match_pattern_value, - sym_val_range, - STATE(10823), 2, - sym__match_pattern_rest, - sym__match_pattern_ignore_rest, - ACTIONS(3623), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3627), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6194), 3, - aux_sym__val_number_token4, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6874), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6663), 7, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, sym_val_table, - [88079] = 38, + sym_val_closure, + [86683] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -317029,38 +315768,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2932), 1, + STATE(2912), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9027), 1, - sym__expression, - STATE(9069), 1, + STATE(8667), 1, sym__where_predicate, + STATE(8668), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -317074,7 +315813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317083,7 +315822,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317095,7 +315834,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88214] = 38, + [86818] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6274), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6276), 1, + aux_sym__immediate_decimal_token2, + STATE(2913), 1, + sym_comment, + ACTIONS(2959), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2957), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [86889] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -317126,38 +315930,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2933), 1, + STATE(2914), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(9054), 1, - sym__expression, - STATE(9055), 1, + STATE(8726), 1, sym__where_predicate, + STATE(8727), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -317171,7 +315975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317180,7 +315984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317192,7 +315996,199 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88349] = 38, + [87024] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(6278), 1, + anon_sym_DOT2, + ACTIONS(6281), 1, + aux_sym__immediate_decimal_token2, + STATE(2915), 1, + sym_comment, + ACTIONS(3165), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [87095] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + aux_sym__immediate_decimal_token2, + STATE(2916), 1, + sym_comment, + ACTIONS(3806), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(3804), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [87164] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2917), 1, + sym_comment, + ACTIONS(1187), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1185), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [87231] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -317223,37 +316219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2934), 1, + STATE(2918), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9228), 1, + STATE(9828), 1, sym__where_predicate, - STATE(9232), 1, + STATE(9837), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -317268,7 +316264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317277,7 +316273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317289,73 +316285,104 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88484] = 7, + [87366] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DOT2, - STATE(2844), 1, - sym_path, - STATE(2935), 1, - sym_comment, - STATE(3824), 1, - sym_cell_path, - ACTIONS(971), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(973), 39, + ACTIONS(129), 1, anon_sym_LBRACK, + ACTIONS(131), 1, anon_sym_LPAREN, + ACTIONS(159), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2919), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8669), 1, + sym__where_predicate, + STATE(8670), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(193), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [88557] = 38, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [87501] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -317386,37 +316413,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2936), 1, + STATE(2920), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9273), 1, + STATE(9756), 1, sym__where_predicate, - STATE(9274), 1, + STATE(9757), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -317431,7 +316458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317440,7 +316467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317452,7 +316479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88692] = 38, + [87636] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -317483,38 +316510,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2937), 1, + STATE(2921), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8995), 1, + STATE(8641), 1, + sym__where_predicate, + STATE(8642), 1, sym__expression, - STATE(8996), 1, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [87771] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2922), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8671), 1, sym__where_predicate, + STATE(8672), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -317528,7 +316652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317537,7 +316661,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317549,7 +316673,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88827] = 38, + [87906] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(6086), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6285), 1, + anon_sym_DOT2, + STATE(2923), 1, + sym_comment, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [87977] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -317580,37 +316769,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2938), 1, + STATE(2924), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9275), 1, + STATE(9193), 1, sym__where_predicate, - STATE(9276), 1, + STATE(9194), 1, sym__expression, ACTIONS(83), 2, anon_sym_true, @@ -317625,7 +316814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317634,7 +316823,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317646,7 +316835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [88962] = 38, + [88112] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -317677,38 +316866,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2939), 1, + STATE(2925), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9792), 1, - sym__expression, - STATE(9793), 1, + STATE(9196), 1, sym__where_predicate, + STATE(9197), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -317722,7 +316911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -317731,7 +316920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317743,92 +316932,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89097] = 38, + [88247] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2940), 1, + STATE(2926), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8987), 1, - sym__expression, - STATE(8993), 1, + STATE(9758), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9760), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317840,92 +317029,221 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89232] = 38, + [88382] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(6288), 1, + sym_filesize_unit, + ACTIONS(6290), 1, + sym_duration_unit, + STATE(2927), 1, + sym_comment, + ACTIONS(1054), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 42, anon_sym_LBRACK, - ACTIONS(131), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(159), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(189), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88453] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6105), 1, + aux_sym_unquoted_token6, + STATE(2928), 1, + sym_comment, + ACTIONS(877), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(879), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, - ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + [88522] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(417), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_DOT, + ACTIONS(77), 1, anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2941), 1, + STATE(2929), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8927), 1, - sym__expression, - STATE(8928), 1, + STATE(9774), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9784), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -317937,7 +317255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89367] = 38, + [88657] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(129), 1, @@ -317968,38 +317286,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(5997), 1, sym_identifier, - STATE(2942), 1, + STATE(2930), 1, sym_comment, - STATE(4147), 1, + STATE(4150), 1, sym_val_range, - STATE(4450), 1, + STATE(4394), 1, sym_val_number, - STATE(4460), 1, + STATE(4458), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4464), 1, sym__val_number, - STATE(4799), 1, + STATE(4833), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5292), 1, sym_expr_parenthesized, - STATE(5153), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - STATE(8930), 1, - sym__expression, - STATE(8932), 1, + STATE(8728), 1, sym__where_predicate, + STATE(8729), 1, + sym__expression, ACTIONS(187), 2, anon_sym_true, anon_sym_false, @@ -318013,7 +317331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -318022,7 +317340,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -318034,18 +317352,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89502] = 7, + [88792] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, + ACTIONS(6190), 1, anon_sym_DOT2, - STATE(2844), 1, + STATE(2764), 1, sym_path, - STATE(2943), 1, + STATE(2931), 1, sym_comment, - STATE(3768), 1, + STATE(3835), 1, sym_cell_path, - ACTIONS(990), 14, + ACTIONS(925), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -318060,7 +317378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(992), 39, + ACTIONS(927), 39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -318100,92 +317418,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [89575] = 38, + [88865] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2944), 1, + STATE(2932), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8936), 1, - sym__expression, - STATE(8940), 1, + STATE(9198), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9212), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -318197,92 +317515,155 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89710] = 38, + [89000] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2933), 1, + sym_comment, + ACTIONS(1223), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1221), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [89067] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2945), 1, + STATE(2934), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8942), 1, - sym__expression, - STATE(8943), 1, + STATE(9787), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9804), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -318294,492 +317675,137 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [89845] = 38, - ACTIONS(3), 1, + [89202] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2946), 1, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(6292), 1, + anon_sym_DOT2, + ACTIONS(6294), 1, + aux_sym__immediate_decimal_token2, + STATE(2935), 1, sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8587), 1, - sym__where_predicate, - STATE(8945), 1, - sym__expression, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [89980] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, + ACTIONS(3165), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(5972), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(6161), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(6165), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6167), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6169), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6285), 1, - sym_identifier, - ACTIONS(6287), 1, - anon_sym_not, - ACTIONS(6289), 1, - anon_sym_null, - STATE(2947), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10222), 1, - sym__expression, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3886), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6291), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [90115] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2948), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8947), 1, - sym__expression, - STATE(8949), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(201), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [90250] = 38, + aux_sym__record_key_token2, + [89273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, + STATE(2644), 1, + aux_sym_cell_path_repeat1, + STATE(2936), 1, + sym_comment, + STATE(2945), 1, + sym_path, + ACTIONS(975), 12, anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2949), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8884), 1, - sym__expression, - STATE(8953), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [90385] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(973), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2950), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8958), 1, - sym__expression, - STATE(8959), 1, - sym__where_predicate, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [90520] = 38, + aux_sym__record_key_token2, + [89344] = 38, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(31), 1, @@ -318810,38 +317836,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2951), 1, + STATE(2937), 1, sym_comment, - STATE(4327), 1, + STATE(4271), 1, sym_val_range, - STATE(4494), 1, + STATE(4472), 1, sym_val_number, - STATE(4762), 1, + STATE(4722), 1, sym__val_number_decimal, STATE(4763), 1, sym__val_number, - STATE(4919), 1, + STATE(5003), 1, sym__var, - STATE(5437), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5512), 1, + STATE(5800), 1, sym_val_variable, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5926), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, sym__str_double_quotes, - STATE(6688), 1, + STATE(6831), 1, sym__expr_binary_expression, - STATE(9790), 1, - sym__expression, - STATE(9791), 1, + STATE(9806), 1, sym__where_predicate, + STATE(9827), 1, + sym__expression, ACTIONS(83), 2, anon_sym_true, anon_sym_false, @@ -318855,7 +317881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6030), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -318864,7 +317890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6035), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -318876,92 +317902,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [90655] = 38, + [89479] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(163), 1, + ACTIONS(59), 1, anon_sym_DOT, - ACTIONS(183), 1, + ACTIONS(77), 1, + anon_sym_PLUS, + ACTIONS(79), 1, anon_sym_not, - ACTIONS(185), 1, + ACTIONS(81), 1, anon_sym_null, - ACTIONS(189), 1, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, + ACTIONS(93), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, + ACTIONS(1745), 1, anon_sym_DOLLAR, - ACTIONS(6093), 1, + ACTIONS(6030), 1, sym_identifier, - STATE(2952), 1, + STATE(2938), 1, sym_comment, - STATE(4147), 1, + STATE(4271), 1, sym_val_range, - STATE(4450), 1, + STATE(4472), 1, sym_val_number, - STATE(4460), 1, + STATE(4722), 1, sym__val_number_decimal, - STATE(4536), 1, + STATE(4763), 1, sym__val_number, - STATE(4799), 1, + STATE(5003), 1, sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, + STATE(5711), 1, sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(6022), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(6026), 1, sym__inter_double_quotes, - STATE(6863), 1, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, sym__expr_binary_expression, - STATE(8925), 1, - sym__expression, - STATE(8962), 1, + STATE(9225), 1, sym__where_predicate, - ACTIONS(187), 2, + STATE(9255), 1, + sym__expression, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + ACTIONS(89), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(201), 2, + ACTIONS(97), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, + ACTIONS(91), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, + STATE(5830), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(191), 4, + ACTIONS(87), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5671), 11, + STATE(5835), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -318973,227 +317999,54 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [90790] = 38, - ACTIONS(3), 1, + [89614] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(1253), 1, + sym__entry_separator, + ACTIONS(6259), 1, + anon_sym_DOT2, + STATE(2939), 1, + sym_comment, + ACTIONS(1257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1251), 26, anon_sym_LBRACK, - ACTIONS(131), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(159), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2953), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8964), 1, - sym__expression, - STATE(8969), 1, - sym__where_predicate, - ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(193), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(201), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [90925] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(131), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(163), 1, - anon_sym_DOT, - ACTIONS(183), 1, - anon_sym_not, - ACTIONS(185), 1, - anon_sym_null, - ACTIONS(189), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(197), 1, sym_val_date, - ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_DASH, - ACTIONS(417), 1, - anon_sym_PLUS, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(6093), 1, - sym_identifier, - STATE(2954), 1, - sym_comment, - STATE(4147), 1, - sym_val_range, - STATE(4450), 1, - sym_val_number, - STATE(4460), 1, - sym__val_number_decimal, - STATE(4536), 1, - sym__val_number, - STATE(4799), 1, - sym__var, - STATE(5124), 1, - sym_val_variable, - STATE(5136), 1, - sym_expr_parenthesized, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, - sym__inter_single_quotes, - STATE(5750), 1, - sym__inter_double_quotes, - STATE(6863), 1, - sym__expr_binary_expression, - STATE(8950), 1, - sym__where_predicate, - STATE(8976), 1, - sym__expression, - ACTIONS(187), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(193), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(195), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5676), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(191), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5671), 11, - sym_val_nothing, - sym_val_bool, - 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, - [91060] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(2955), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 52, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + aux_sym__unquoted_in_list_token1, + ACTIONS(1255), 26, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -319212,33 +318065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [91128] = 4, + [89687] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2956), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_DOT2, + ACTIONS(3000), 1, sym__entry_separator, - ACTIONS(2986), 53, + ACTIONS(6296), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6298), 1, + aux_sym__immediate_decimal_token2, + STATE(2940), 1, + sym_comment, + ACTIONS(2998), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319292,124 +318130,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [91194] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_DASH_DASH, - ACTIONS(3617), 1, - anon_sym_null, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(6184), 1, - anon_sym_DASH, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(6188), 1, - anon_sym_DOT, - ACTIONS(6190), 1, - anon_sym_PLUS, - ACTIONS(6192), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6196), 1, - sym_val_date, - ACTIONS(6198), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(6310), 1, - anon_sym_LBRACK, - ACTIONS(6312), 1, - anon_sym_RBRACK, - STATE(2957), 1, - sym_comment, - STATE(3751), 1, - aux_sym__match_pattern_list_repeat1, - STATE(5841), 1, - sym__val_number_decimal, - STATE(6205), 1, - sym__var, - STATE(6378), 1, - sym_val_number, - STATE(6464), 1, - sym__val_number, - STATE(6590), 1, - sym_val_variable, - STATE(6610), 1, - sym_expr_parenthesized, - STATE(6665), 1, - sym__match_pattern_list, - STATE(6666), 1, - sym__match_pattern_record, - STATE(6667), 1, - sym__expr_unary_minus, - STATE(6767), 1, - sym__str_double_quotes, - STATE(6774), 1, - sym_long_flag_equals_value, - STATE(6865), 1, - sym__match_pattern_expression, - STATE(10795), 1, - sym__match_pattern_ignore_rest, - STATE(10796), 1, - sym__match_pattern_rest, - ACTIONS(3619), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3633), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6664), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3623), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3627), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6194), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6874), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6663), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [91330] = 5, - ACTIONS(3), 1, + [89758] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6314), 1, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(6298), 1, aux_sym__immediate_decimal_token2, - STATE(2958), 1, - sym_comment, - ACTIONS(3836), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(6300), 1, anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3834), 42, + STATE(2941), 1, + sym_comment, + ACTIONS(2998), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319422,6 +318154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -319436,6 +318170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -319448,61 +318183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [91398] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(2959), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 44, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -319510,86 +318191,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [91472] = 5, - ACTIONS(105), 1, + aux_sym__record_key_token2, + [89829] = 38, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3923), 1, - sym__entry_separator, - ACTIONS(6322), 1, - anon_sym_DOT2, - STATE(2960), 1, - sym_comment, - ACTIONS(3921), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(39), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(77), 1, anon_sym_PLUS, + ACTIONS(79), 1, + anon_sym_not, + ACTIONS(81), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym__val_number_decimal_token1, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(6030), 1, + sym_identifier, + STATE(2942), 1, + sym_comment, + STATE(4271), 1, + sym_val_range, + STATE(4472), 1, + sym_val_number, + STATE(4722), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5003), 1, + sym__var, + STATE(5711), 1, + sym_expr_parenthesized, + STATE(5800), 1, + sym_val_variable, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + STATE(6831), 1, + sym__expr_binary_expression, + STATE(9273), 1, + sym__where_predicate, + STATE(9274), 1, + sym__expression, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(89), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5830), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(87), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5835), 11, + sym_val_nothing, + sym_val_bool, + 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, + [89964] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + anon_sym_DOT2, + STATE(2637), 1, + sym_path, + STATE(2943), 1, + sym_comment, + STATE(3754), 1, + sym_cell_path, + ACTIONS(935), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [91540] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2961), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2996), 53, + ACTIONS(933), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319602,8 +318328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -319618,7 +318342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -319631,28 +318354,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [90037] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2944), 1, + sym_comment, + ACTIONS(1082), 14, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1084), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [91606] = 5, - ACTIONS(105), 1, + [90104] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3917), 1, - sym__entry_separator, - ACTIONS(6324), 1, - anon_sym_DOT2, - STATE(2962), 1, + STATE(2945), 1, sym_comment, - ACTIONS(3915), 53, + ACTIONS(1211), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1209), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319665,8 +318454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -319681,7 +318468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -319694,28 +318480,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [90171] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6190), 1, + anon_sym_DOT2, + STATE(2764), 1, + sym_path, + STATE(2946), 1, + sym_comment, + STATE(3816), 1, + sym_cell_path, + ACTIONS(959), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(961), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [91674] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [90244] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, + ACTIONS(2959), 1, sym__entry_separator, - ACTIONS(6326), 1, - anon_sym_DOT2, - STATE(2963), 1, + ACTIONS(6302), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token2, + STATE(2947), 1, sym_comment, - ACTIONS(3909), 53, + ACTIONS(2957), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319769,14 +318615,111 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [91742] = 5, + [90315] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6243), 1, - aux_sym__immediate_decimal_token2, - STATE(2964), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2948), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8730), 1, + sym__where_predicate, + STATE(8731), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [90450] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2949), 1, sym_comment, - ACTIONS(2988), 12, + ACTIONS(1215), 14, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -319789,7 +318732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2986), 42, + ACTIONS(1213), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319832,15 +318775,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [91810] = 4, + [90517] = 38, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(163), 1, + anon_sym_DOT, + ACTIONS(183), 1, + anon_sym_not, + ACTIONS(185), 1, + anon_sym_null, + ACTIONS(189), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2950), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, + sym_val_number, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, + sym__val_number, + STATE(4833), 1, + sym__var, + STATE(5292), 1, + sym_expr_parenthesized, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, + sym__expr_binary_expression, + STATE(8673), 1, + sym__where_predicate, + STATE(8675), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(193), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(201), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5667), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(191), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5709), 11, + sym_val_nothing, + sym_val_bool, + 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, + [90652] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2965), 1, + ACTIONS(6306), 1, + anon_sym_QMARK2, + STATE(2951), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(1072), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(3888), 53, + ACTIONS(1070), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319894,90 +318936,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [91876] = 5, + [90721] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5634), 1, - aux_sym_unquoted_token3, - STATE(2966), 1, - sym_comment, - ACTIONS(825), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(823), 47, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - aux_sym_unquoted_token1, - [91944] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6239), 1, - aux_sym__immediate_decimal_token2, - STATE(2967), 1, + ACTIONS(6306), 1, + anon_sym_QMARK2, + STATE(2952), 1, sym_comment, - ACTIONS(2998), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(1072), 2, anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 42, + sym__entry_separator, + ACTIONS(1070), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -319990,6 +318959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -320004,6 +318975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -320016,94 +318988,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [92012] = 37, + [90790] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6328), 1, - sym_cmd_identifier, - ACTIONS(6330), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6332), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(6334), 1, - anon_sym_DOLLAR, - ACTIONS(6336), 1, - anon_sym_DASH, - ACTIONS(6338), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6340), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(6342), 1, - anon_sym_PLUS, - ACTIONS(6344), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(6346), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(6350), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6358), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - STATE(814), 1, - sym__val_number_decimal, - STATE(821), 1, - sym__var, - STATE(835), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2953), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(837), 1, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, sym__val_number, - STATE(898), 1, - sym_val_variable, - STATE(899), 1, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(935), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(950), 1, - sym__expr_unary_minus, - STATE(965), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(2968), 1, - sym_comment, - STATE(3753), 1, - sym__expression, - STATE(3800), 1, - sym_val_range, - STATE(6846), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - ACTIONS(6348), 2, + STATE(8592), 1, + sym__where_predicate, + STATE(8598), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(6354), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(6362), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6356), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(956), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(6352), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(936), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -320115,90 +319097,92 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92144] = 37, + [90925] = 38, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6332), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(6334), 1, - anon_sym_DOLLAR, - ACTIONS(6336), 1, - anon_sym_DASH, - ACTIONS(6338), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6340), 1, + ACTIONS(163), 1, anon_sym_DOT, - ACTIONS(6342), 1, - anon_sym_PLUS, - ACTIONS(6344), 1, + ACTIONS(183), 1, anon_sym_not, - ACTIONS(6346), 1, + ACTIONS(185), 1, anon_sym_null, - ACTIONS(6350), 1, + ACTIONS(189), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6358), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6368), 1, - sym_cmd_identifier, - STATE(814), 1, - sym__val_number_decimal, - STATE(821), 1, - sym__var, - STATE(835), 1, + ACTIONS(383), 1, + anon_sym_DASH, + ACTIONS(417), 1, + anon_sym_PLUS, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(5997), 1, + sym_identifier, + STATE(2954), 1, + sym_comment, + STATE(4150), 1, + sym_val_range, + STATE(4394), 1, sym_val_number, - STATE(837), 1, + STATE(4458), 1, + sym__val_number_decimal, + STATE(4464), 1, sym__val_number, - STATE(898), 1, - sym_val_variable, - STATE(899), 1, + STATE(4833), 1, + sym__var, + STATE(5292), 1, sym_expr_parenthesized, - STATE(935), 1, + STATE(5294), 1, + sym_val_variable, + STATE(5336), 1, sym__str_double_quotes, - STATE(950), 1, - sym__expr_unary_minus, - STATE(965), 1, + STATE(5391), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(2969), 1, - sym_comment, - STATE(3746), 1, - sym__expression, - STATE(3800), 1, - sym_val_range, - STATE(6846), 1, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(6657), 1, sym__expr_binary_expression, - ACTIONS(6348), 2, + STATE(8639), 1, + sym__where_predicate, + STATE(8640), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_true, anon_sym_false, - ACTIONS(6354), 2, + ACTIONS(193), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(6362), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6356), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(956), 3, + STATE(5667), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(6352), 4, + ACTIONS(191), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(936), 11, + STATE(5709), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -320210,42 +319194,163 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [92276] = 6, + [91060] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6370), 1, - sym_filesize_unit, - ACTIONS(6372), 1, - sym_duration_unit, - STATE(2970), 1, + ACTIONS(6308), 1, + anon_sym_COLON, + ACTIONS(6310), 1, + anon_sym_COMMA, + STATE(2955), 1, + sym_comment, + ACTIONS(6312), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1288), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [91130] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(2956), 1, sym_comment, - ACTIONS(1102), 13, + ACTIONS(1387), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_not, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 40, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [91196] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1351), 1, + sym__entry_separator, + STATE(2957), 1, + sym_comment, + ACTIONS(1349), 54, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320262,46 +319367,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [92346] = 4, + aux_sym__unquoted_in_list_token1, + [91262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2971), 1, + STATE(2958), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(877), 14, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1254), 42, + ACTIONS(879), 41, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -320332,142 +319437,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92412] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, + [91328] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1223), 1, + sym__entry_separator, + STATE(2959), 1, + sym_comment, + ACTIONS(1221), 54, anon_sym_LBRACK, - ACTIONS(5970), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5972), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(6161), 1, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(6165), 1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6167), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6287), 1, - anon_sym_not, - ACTIONS(6289), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6374), 1, - sym_identifier, - STATE(2972), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10265), 1, - sym__expression, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3886), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6291), 2, anon_sym_true, anon_sym_false, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 4, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [92544] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_DOT2, - STATE(2973), 1, - sym_comment, - ACTIONS(1102), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 41, + [91394] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1355), 1, + sym__entry_separator, + STATE(2960), 1, + sym_comment, + ACTIONS(1353), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320484,157 +319553,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92612] = 37, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [91460] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6378), 1, - sym_cmd_identifier, - ACTIONS(6380), 1, - anon_sym_LBRACK, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym_DOLLAR, - ACTIONS(6386), 1, - anon_sym_DASH, - ACTIONS(6388), 1, - anon_sym_LBRACE, - ACTIONS(6390), 1, - anon_sym_DOT, - ACTIONS(6392), 1, - anon_sym_PLUS, - ACTIONS(6394), 1, - anon_sym_not, - ACTIONS(6396), 1, - anon_sym_null, - ACTIONS(6400), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6408), 1, - sym_val_date, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(776), 1, - sym__val_number_decimal, - STATE(784), 1, - sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, - sym__val_number, - STATE(843), 1, - sym_expr_parenthesized, - STATE(845), 1, - sym_val_variable, - STATE(868), 1, - sym__expr_unary_minus, - STATE(881), 1, - sym__str_double_quotes, - STATE(883), 1, - sym__inter_single_quotes, - STATE(884), 1, - sym__inter_double_quotes, - STATE(2974), 1, - sym_comment, - STATE(3027), 1, - sym_val_range, - STATE(3365), 1, - sym__expression, - STATE(6724), 1, - sym__expr_binary_expression, - ACTIONS(6398), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6404), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6406), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(864), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6402), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(853), 11, - sym_val_nothing, - sym_val_bool, - 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, - [92744] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1245), 1, - sym__entry_separator, - STATE(2975), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1243), 26, + ACTIONS(1383), 1, + sym__entry_separator, + STATE(2961), 1, + sym_comment, + ACTIONS(1381), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - ACTIONS(1247), 26, - anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -320653,109 +319612,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92814] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_DOT2, - STATE(2976), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1243), 6, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1245), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1409), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [92888] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [91526] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6418), 1, - aux_sym_unquoted_token5, - STATE(2977), 1, + ACTIONS(1305), 1, + sym__entry_separator, + STATE(2962), 1, sym_comment, - ACTIONS(1193), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1195), 42, + ACTIONS(1303), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320772,148 +319677,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92956] = 37, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [91592] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(1359), 1, + sym__entry_separator, + STATE(2963), 1, + sym_comment, + ACTIONS(1357), 54, anon_sym_LBRACK, - ACTIONS(6382), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6384), 1, anon_sym_DOLLAR, - ACTIONS(6386), 1, - anon_sym_DASH, - ACTIONS(6388), 1, - anon_sym_LBRACE, - ACTIONS(6390), 1, - anon_sym_DOT, - ACTIONS(6392), 1, - anon_sym_PLUS, - ACTIONS(6394), 1, - anon_sym_not, - ACTIONS(6396), 1, - anon_sym_null, - ACTIONS(6400), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6408), 1, - sym_val_date, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6420), 1, - sym_cmd_identifier, - STATE(776), 1, - sym__val_number_decimal, - STATE(784), 1, - sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, - sym__val_number, - STATE(843), 1, - sym_expr_parenthesized, - STATE(845), 1, - sym_val_variable, - STATE(868), 1, - sym__expr_unary_minus, - STATE(881), 1, - sym__str_double_quotes, - STATE(883), 1, - sym__inter_single_quotes, - STATE(884), 1, - sym__inter_double_quotes, - STATE(2978), 1, - sym_comment, - STATE(3027), 1, - sym_val_range, - STATE(3293), 1, - sym__expression, - STATE(6724), 1, - sym__expr_binary_expression, - ACTIONS(6398), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6404), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6406), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(864), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6402), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(853), 11, - sym_val_nothing, - sym_val_bool, - 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, - [93088] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DOT2, - STATE(2979), 1, - sym_comment, - ACTIONS(1102), 14, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1104), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -320930,24 +319739,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93156] = 4, + aux_sym__unquoted_in_list_token1, + [91658] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1309), 1, sym__entry_separator, - STATE(2980), 1, + STATE(2964), 1, sym_comment, - ACTIONS(1288), 54, + ACTIONS(1307), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321002,51 +319816,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [93222] = 11, + [91724] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1363), 1, sym__entry_separator, - STATE(2981), 1, + STATE(2965), 1, sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, + ACTIONS(1361), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 32, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -321071,16 +319878,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [93302] = 5, + [91790] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(6214), 1, - aux_sym__immediate_decimal_token2, - STATE(2982), 1, + STATE(2966), 1, sym_comment, - ACTIONS(2996), 53, + ACTIONS(1187), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1185), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -321134,24 +319940,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [93370] = 4, + [91856] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(2983), 1, + ACTIONS(5678), 1, + aux_sym_unquoted_token3, + STATE(2967), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(829), 7, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(827), 47, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -321192,18 +320002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [93436] = 4, + aux_sym_unquoted_token1, + [91924] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1370), 1, sym__entry_separator, - STATE(2984), 1, + STATE(2968), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1368), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321258,53 +320065,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [93502] = 4, + [91990] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(3000), 1, sym__entry_separator, - STATE(2985), 1, + ACTIONS(6298), 1, + aux_sym__immediate_decimal_token2, + STATE(2969), 1, sym_comment, - ACTIONS(1263), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_LBRACE, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -321312,45 +320124,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [93568] = 4, - ACTIONS(105), 1, + aux_sym__record_key_token2, + [92058] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(2986), 1, + STATE(2970), 1, sym_comment, - ACTIONS(1263), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1177), 14, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1179), 41, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321367,29 +320177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [93634] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [92124] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1376), 1, sym__entry_separator, - STATE(2987), 1, + STATE(2971), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1374), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321444,14 +320252,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [93700] = 4, + [92190] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(2988), 1, + STATE(2972), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1054), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321506,90 +320314,152 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [93766] = 37, + [92256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, + STATE(2973), 1, + sym_comment, + ACTIONS(1223), 14, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3343), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, anon_sym_DQUOTE, - ACTIONS(5930), 1, - anon_sym_not, - ACTIONS(5932), 1, - anon_sym_null, - ACTIONS(6420), 1, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1221), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [92322] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6314), 1, sym_cmd_identifier, - ACTIONS(6430), 1, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, anon_sym_DASH, - ACTIONS(6432), 1, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6326), 1, anon_sym_DOT, - ACTIONS(6434), 1, + ACTIONS(6328), 1, anon_sym_PLUS, - ACTIONS(6436), 1, + ACTIONS(6330), 1, + anon_sym_not, + ACTIONS(6332), 1, + anon_sym_null, + ACTIONS(6336), 1, aux_sym__val_number_decimal_token1, - STATE(2989), 1, - sym_comment, - STATE(3027), 1, - sym_val_range, - STATE(3293), 1, - sym__expression, - STATE(5243), 1, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, + anon_sym_DQUOTE, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(807), 1, sym__var, - STATE(5421), 1, + STATE(819), 1, sym__val_number_decimal, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, + STATE(845), 1, sym__val_number, - STATE(5872), 1, - sym_expr_parenthesized, - STATE(5873), 1, + STATE(848), 1, + sym_val_number, + STATE(882), 1, sym_val_variable, - STATE(6064), 1, + STATE(890), 1, + sym_expr_parenthesized, + STATE(927), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(6193), 1, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, sym__expr_unary_minus, - STATE(6699), 1, + STATE(2974), 1, + sym_comment, + STATE(3764), 1, + sym_val_range, + STATE(3807), 1, + sym__expression, + STATE(6756), 1, sym__expr_binary_expression, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5934), 2, + ACTIONS(6334), 2, anon_sym_true, anon_sym_false, - ACTIONS(5938), 2, + ACTIONS(6340), 2, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(3363), 3, + ACTIONS(6348), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6194), 3, + STATE(967), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(6438), 4, + ACTIONS(6338), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(6201), 11, + STATE(983), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -321601,90 +320471,216 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [93898] = 37, - ACTIONS(3), 1, + [92454] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, + ACTIONS(3979), 1, + sym__entry_separator, + ACTIONS(6354), 1, + anon_sym_DOT2, + STATE(2975), 1, + sym_comment, + ACTIONS(3977), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [92522] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__entry_separator, + ACTIONS(6356), 1, + anon_sym_DOT2, + STATE(2976), 1, + sym_comment, + ACTIONS(3840), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(5972), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(6161), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(6165), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6167), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6169), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6285), 1, - sym_identifier, - ACTIONS(6287), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [92590] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6318), 1, + anon_sym_LPAREN, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6322), 1, + anon_sym_DASH, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6326), 1, + anon_sym_DOT, + ACTIONS(6328), 1, + anon_sym_PLUS, + ACTIONS(6330), 1, anon_sym_not, - ACTIONS(6289), 1, + ACTIONS(6332), 1, anon_sym_null, - STATE(2990), 1, - sym_comment, - STATE(4465), 1, + ACTIONS(6336), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, + anon_sym_DQUOTE, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6358), 1, + sym_cmd_identifier, + STATE(807), 1, sym__var, - STATE(4844), 1, + STATE(819), 1, + sym__val_number_decimal, + STATE(845), 1, sym__val_number, - STATE(5076), 1, + STATE(848), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, + STATE(882), 1, sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(890), 1, + sym_expr_parenthesized, + STATE(927), 1, + sym__str_double_quotes, + STATE(935), 1, sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, + sym__expr_unary_minus, + STATE(2977), 1, + sym_comment, + STATE(3764), 1, sym_val_range, - STATE(10222), 1, + STATE(3809), 1, sym__expression, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3886), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6291), 2, + STATE(6756), 1, + sym__expr_binary_expression, + ACTIONS(6334), 2, anon_sym_true, anon_sym_false, - ACTIONS(3078), 3, + ACTIONS(6340), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6348), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5566), 3, + STATE(967), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3884), 4, + ACTIONS(6338), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - STATE(5744), 11, + STATE(983), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -321696,37 +320692,43 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [94030] = 4, - ACTIONS(105), 1, + [92722] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(2991), 1, + ACTIONS(6360), 1, + aux_sym_unquoted_token5, + STATE(2978), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1191), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1193), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321743,52 +320745,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [94096] = 4, + [92790] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(4028), 1, sym__entry_separator, - STATE(2992), 1, + ACTIONS(6362), 1, + anon_sym_DOT2, + STATE(2979), 1, sym_comment, - ACTIONS(1263), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4026), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [92858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6364), 1, + anon_sym_DOT2, + STATE(2980), 1, + sym_comment, + ACTIONS(1054), 13, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -321805,29 +320871,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [94162] = 4, + [92926] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + STATE(2981), 1, + sym_comment, + ACTIONS(3806), 2, + anon_sym_DOT2, sym__entry_separator, - STATE(2993), 1, + ACTIONS(3804), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [92992] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1219), 1, + sym__entry_separator, + STATE(2982), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1217), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -321882,32 +321005,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [94228] = 4, + [93058] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1253), 1, sym__entry_separator, - STATE(2994), 1, + STATE(2983), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1251), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + ACTIONS(1255), 26, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -321926,32 +321069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [94294] = 4, + [93128] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(2995), 1, + STATE(2984), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -322006,76 +321131,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [94360] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2996), 1, - sym_comment, - ACTIONS(1065), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1067), 41, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [94426] = 4, + [93194] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(2997), 1, + STATE(2985), 1, sym_comment, - ACTIONS(1263), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -322130,16 +321193,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [94492] = 5, + [93260] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, - sym__entry_separator, - ACTIONS(6220), 1, - aux_sym__immediate_decimal_token2, - STATE(2998), 1, + STATE(2986), 1, sym_comment, - ACTIONS(2986), 53, + ACTIONS(1219), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1217), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -322193,234 +321255,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [94560] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(2999), 1, - sym_comment, - ACTIONS(1263), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [94626] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1409), 1, - sym__entry_separator, - STATE(3000), 1, - sym_comment, - ACTIONS(1247), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [94692] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6161), 1, - anon_sym_DASH, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - STATE(3001), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10221), 1, - sym__expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [94822] = 5, + [93326] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3905), 1, sym__entry_separator, - ACTIONS(6440), 1, - aux_sym__immediate_decimal_token2, - STATE(3002), 1, + ACTIONS(6366), 1, + anon_sym_DOT2, + STATE(2987), 1, sym_comment, - ACTIONS(3834), 53, + ACTIONS(3903), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -322474,237 +321318,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [94890] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3341), 1, - anon_sym_LPAREN, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(5930), 1, - anon_sym_not, - ACTIONS(5932), 1, - anon_sym_null, - ACTIONS(6378), 1, - sym_cmd_identifier, - ACTIONS(6430), 1, - anon_sym_DASH, - ACTIONS(6432), 1, - anon_sym_DOT, - ACTIONS(6434), 1, - anon_sym_PLUS, - ACTIONS(6436), 1, - aux_sym__val_number_decimal_token1, - STATE(3003), 1, - sym_comment, - STATE(3027), 1, - sym_val_range, - STATE(3365), 1, - sym__expression, - STATE(5243), 1, - sym__var, - STATE(5421), 1, - sym__val_number_decimal, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, - sym__val_number, - STATE(5872), 1, - sym_expr_parenthesized, - STATE(5873), 1, - sym_val_variable, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6193), 1, - sym__expr_unary_minus, - STATE(6699), 1, - sym__expr_binary_expression, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5934), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5938), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6194), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6438), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(6201), 11, - sym_val_nothing, - sym_val_bool, - 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, - [95022] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3004), 1, - sym_comment, - ACTIONS(1261), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [95088] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DOT2, - STATE(3005), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1243), 7, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1245), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1409), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [95162] = 4, + [93394] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1403), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3006), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1401), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -322759,98 +321380,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [95228] = 5, + [93460] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3937), 1, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(6442), 1, - anon_sym_DOT2, - STATE(3007), 1, + STATE(2989), 1, sym_comment, - ACTIONS(3935), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6370), 2, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [95296] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(3008), 1, - sym_comment, - ACTIONS(6308), 2, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, + ACTIONS(6376), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6318), 4, + ACTIONS(6372), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6424), 6, + ACTIONS(6368), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 38, + ACTIONS(1391), 38, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -322889,16 +321447,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [95372] = 5, + [93536] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, + ACTIONS(3911), 1, sym__entry_separator, - ACTIONS(6444), 1, + ACTIONS(6378), 1, anon_sym_DOT2, - STATE(3009), 1, + STATE(2990), 1, sym_comment, - ACTIONS(3941), 53, + ACTIONS(3909), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -322952,15 +321510,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [95440] = 4, + [93604] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3010), 1, - sym_comment, - ACTIONS(1261), 2, - anon_sym_DOT2, + ACTIONS(3806), 1, sym__entry_separator, - ACTIONS(1259), 53, + ACTIONS(6380), 1, + aux_sym__immediate_decimal_token2, + STATE(2991), 1, + sym_comment, + ACTIONS(3804), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -323014,31 +321573,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [95506] = 4, + [93672] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(2992), 1, sym_comment, - ACTIONS(861), 14, - anon_sym_DOLLAR, + ACTIONS(1213), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 41, + aux_sym_unquoted_token1, + ACTIONS(1215), 41, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -323069,49 +321631,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [95572] = 4, - ACTIONS(3), 1, + [93738] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3012), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(2993), 1, sym_comment, - ACTIONS(1189), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1191), 41, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323128,24 +321682,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95638] = 4, + aux_sym__unquoted_in_list_token1, + [93804] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1115), 1, + ACTIONS(1385), 1, sym__entry_separator, - STATE(3013), 1, + STATE(2994), 1, sym_comment, - ACTIONS(1113), 54, + ACTIONS(1255), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -323200,43 +321759,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [95704] = 5, - ACTIONS(3), 1, + [93870] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6446), 1, - aux_sym_unquoted_token5, - STATE(3014), 1, + ACTIONS(1331), 1, + sym__entry_separator, + STATE(2995), 1, sym_comment, - ACTIONS(1193), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1195), 41, + ACTIONS(1329), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323253,35 +321806,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95772] = 7, + aux_sym__unquoted_in_list_token1, + [93936] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1084), 1, sym__entry_separator, - STATE(3015), 1, + STATE(2996), 1, sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 46, + ACTIONS(1082), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -323289,9 +321836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -323328,154 +321883,120 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [95844] = 10, - ACTIONS(105), 1, + [94002] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(3016), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 34, + ACTIONS(6382), 1, + sym_cmd_identifier, + ACTIONS(6384), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6386), 1, anon_sym_LPAREN, + ACTIONS(6388), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6390), 1, + anon_sym_DASH, + ACTIONS(6392), 1, anon_sym_LBRACE, + ACTIONS(6394), 1, anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6396), 1, + anon_sym_PLUS, + ACTIONS(6398), 1, + anon_sym_not, + ACTIONS(6400), 1, anon_sym_null, + ACTIONS(6404), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6412), 1, + sym_val_date, + ACTIONS(6414), 1, + anon_sym_DQUOTE, + ACTIONS(6418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6420), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(782), 1, + sym__val_number_decimal, + STATE(786), 1, + sym__var, + STATE(810), 1, + sym_val_number, + STATE(817), 1, + sym__val_number, + STATE(842), 1, + sym_expr_parenthesized, + STATE(846), 1, + sym_val_variable, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(2997), 1, + sym_comment, + STATE(3000), 1, + sym_val_range, + STATE(3727), 1, + sym__expression, + STATE(6790), 1, + sym__expr_binary_expression, + ACTIONS(6402), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(6408), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, + ACTIONS(6416), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [95922] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6239), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT2, - STATE(3017), 1, - sym_comment, - ACTIONS(2998), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, + STATE(864), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6406), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [95992] = 6, + STATE(918), 11, + sym_val_nothing, + sym_val_bool, + 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, + [94134] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3018), 1, + STATE(2998), 1, sym_comment, - ACTIONS(6308), 2, + ACTIONS(6370), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6318), 4, + ACTIONS(6372), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 48, + ACTIONS(1391), 46, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -323483,11 +322004,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -323524,16 +322043,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [96062] = 5, + [94206] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(6114), 1, + sym_identifier, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, + anon_sym_DOT, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, + anon_sym_not, + ACTIONS(6124), 1, + anon_sym_null, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + STATE(2999), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10286), 1, + sym__expression, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3973), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6126), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [94338] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(1253), 1, sym__entry_separator, - ACTIONS(6451), 1, - anon_sym_DOT2, - STATE(3019), 1, + STATE(3000), 1, sym_comment, - ACTIONS(3927), 53, + ACTIONS(1251), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -323546,6 +322158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_error, @@ -323587,15 +322200,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [96130] = 4, - ACTIONS(105), 1, + [94404] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3020), 1, - sym_comment, - ACTIONS(3836), 2, + ACTIONS(6272), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6422), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(3834), 53, + STATE(3001), 1, + sym_comment, + ACTIONS(3000), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -323608,8 +322234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -323624,7 +322248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -323637,53 +322260,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [96196] = 5, - ACTIONS(105), 1, + [94474] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5668), 1, - aux_sym_unquoted_token3, - STATE(3021), 1, + ACTIONS(6425), 1, + anon_sym_DOT2, + STATE(3002), 1, sym_comment, - ACTIONS(825), 7, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(823), 47, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1054), 14, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1056), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -323700,26 +322317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - aux_sym__unquoted_in_list_token1, - [96264] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [94542] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1407), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3022), 1, + STATE(3003), 1, sym_comment, - ACTIONS(1405), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -323774,84 +322389,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [96330] = 12, - ACTIONS(105), 1, + [94608] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(6453), 1, - anon_sym_bit_DASHand, - STATE(3023), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 31, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5965), 1, anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5971), 1, anon_sym_LBRACE, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, anon_sym_DOT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, + anon_sym_not, + ACTIONS(6124), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6128), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(6427), 1, + sym_identifier, + STATE(3004), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10252), 1, + sym__expression, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3973), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, + ACTIONS(6126), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [96412] = 4, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [94740] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1100), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3024), 1, + STATE(3005), 1, sym_comment, - ACTIONS(1098), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -323906,106 +322546,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [96478] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6455), 1, - anon_sym_DOT2, - ACTIONS(6457), 1, - aux_sym__immediate_decimal_token2, - STATE(3025), 1, - sym_comment, - ACTIONS(3491), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3489), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [96548] = 4, - ACTIONS(3), 1, + [94806] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3026), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(3006), 1, sym_comment, - ACTIONS(1189), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1191), 42, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -324022,127 +322593,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96614] = 4, + aux_sym__unquoted_in_list_token1, + [94872] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3027), 1, + STATE(3007), 1, sym_comment, - ACTIONS(1243), 54, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(1387), 54, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [96680] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(6453), 1, - anon_sym_bit_DASHand, - ACTIONS(6459), 1, - anon_sym_bit_DASHxor, - STATE(3028), 1, - sym_comment, - ACTIONS(6308), 2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -324165,185 +322670,135 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [96764] = 14, - ACTIONS(105), 1, + [94938] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(6453), 1, - anon_sym_bit_DASHand, - ACTIONS(6459), 1, - anon_sym_bit_DASHxor, - ACTIONS(6461), 1, - anon_sym_bit_DASHor, - STATE(3029), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 29, + ACTIONS(6384), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6386), 1, anon_sym_LPAREN, + ACTIONS(6388), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6390), 1, + anon_sym_DASH, + ACTIONS(6392), 1, anon_sym_LBRACE, + ACTIONS(6394), 1, anon_sym_DOT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6396), 1, + anon_sym_PLUS, + ACTIONS(6398), 1, + anon_sym_not, + ACTIONS(6400), 1, anon_sym_null, + ACTIONS(6404), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6412), 1, + sym_val_date, + ACTIONS(6414), 1, + anon_sym_DQUOTE, + ACTIONS(6418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6420), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6429), 1, + sym_cmd_identifier, + STATE(782), 1, + sym__val_number_decimal, + STATE(786), 1, + sym__var, + STATE(810), 1, + sym_val_number, + STATE(817), 1, + sym__val_number, + STATE(842), 1, + sym_expr_parenthesized, + STATE(846), 1, + sym_val_variable, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3000), 1, + sym_val_range, + STATE(3008), 1, + sym_comment, + STATE(3088), 1, + sym__expression, + STATE(6790), 1, + sym__expr_binary_expression, + ACTIONS(6402), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(6408), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [96850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3030), 1, - sym_comment, - ACTIONS(1098), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1100), 41, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(864), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6406), 4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [96916] = 15, + STATE(918), 11, + sym_val_nothing, + sym_val_bool, + 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, + [95070] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(6453), 1, - anon_sym_bit_DASHand, - ACTIONS(6459), 1, - anon_sym_bit_DASHxor, - ACTIONS(6461), 1, - anon_sym_bit_DASHor, - ACTIONS(6463), 1, - anon_sym_and, - STATE(3031), 1, + STATE(3009), 1, sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, + ACTIONS(6370), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6320), 2, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, + ACTIONS(6372), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, + ACTIONS(6431), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6424), 6, + ACTIONS(6368), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 28, + ACTIONS(1391), 34, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -324352,6 +322807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_null, @@ -324372,42 +322833,131 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [97004] = 4, + [95148] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(3032), 1, - sym_comment, - ACTIONS(1222), 14, - anon_sym_GT, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6116), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(6118), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(6120), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(6128), 1, aux_sym__val_number_decimal_token1, + STATE(3010), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10235), 1, + sym__expression, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1224), 41, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [95278] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1321), 1, + sym__entry_separator, + STATE(3011), 1, + sym_comment, + ACTIONS(1319), 54, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -324424,26 +322974,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97070] = 6, + aux_sym__unquoted_in_list_token1, + [95344] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6465), 1, + ACTIONS(6433), 1, anon_sym_DOT2, - ACTIONS(6468), 1, + ACTIONS(6435), 1, aux_sym__immediate_decimal_token2, - STATE(3033), 1, + STATE(3012), 1, sym_comment, - ACTIONS(3491), 11, + ACTIONS(3167), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -324455,7 +323010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3489), 42, + ACTIONS(3165), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -324498,55 +323053,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [97140] = 4, + [95414] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3034), 1, + ACTIONS(6425), 1, + anon_sym_DOT2, + STATE(3013), 1, sym_comment, - ACTIONS(1222), 13, - anon_sym_GT, + ACTIONS(1257), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 5, + anon_sym_GT, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1251), 7, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1224), 42, + aux_sym_unquoted_token1, + ACTIONS(1253), 19, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -324560,228 +323097,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97206] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(6453), 1, - anon_sym_bit_DASHand, - ACTIONS(6459), 1, - anon_sym_bit_DASHxor, - ACTIONS(6461), 1, - anon_sym_bit_DASHor, - ACTIONS(6463), 1, - anon_sym_and, - ACTIONS(6470), 1, - anon_sym_xor, - STATE(3035), 1, - sym_comment, - ACTIONS(6308), 2, + ACTIONS(1385), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 27, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [97296] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6474), 1, - aux_sym__immediate_decimal_token2, - STATE(3036), 1, - sym_comment, - ACTIONS(2998), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [97366] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(6453), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(6459), 1, anon_sym_bit_DASHxor, - ACTIONS(6461), 1, anon_sym_bit_DASHor, - ACTIONS(6463), 1, anon_sym_and, - ACTIONS(6470), 1, anon_sym_xor, - ACTIONS(6476), 1, anon_sym_or, - STATE(3037), 1, - sym_comment, - ACTIONS(6308), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6320), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6428), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6318), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6424), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [97458] = 4, + [95488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1259), 13, + ACTIONS(1185), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -324791,15 +323138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1261), 42, + aux_sym_unquoted_token1, + ACTIONS(1187), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -324835,142 +323181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97524] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6474), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6478), 1, - anon_sym_DOT2, - STATE(3039), 1, - sym_comment, - ACTIONS(2998), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [97594] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6482), 1, - aux_sym__immediate_decimal_token2, - STATE(3040), 1, - sym_comment, - ACTIONS(2988), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2986), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [97664] = 4, + [95554] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1276), 1, + ACTIONS(1268), 1, sym__entry_separator, - STATE(3041), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1274), 54, + ACTIONS(1266), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325025,14 +323243,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [97730] = 4, + [95620] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, + ACTIONS(1268), 1, sym__entry_separator, - STATE(3042), 1, + STATE(3016), 1, sym_comment, - ACTIONS(1278), 54, + ACTIONS(1266), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325087,12 +323305,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [97796] = 4, + [95686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(3017), 1, sym_comment, - ACTIONS(1113), 14, + ACTIONS(1082), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -325107,7 +323325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1115), 41, + ACTIONS(1084), 41, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -325149,14 +323367,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [97862] = 4, + [95752] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(951), 1, sym__entry_separator, - STATE(3044), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1102), 54, + ACTIONS(949), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325211,12 +323429,76 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [97928] = 4, + [95818] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(3019), 1, + sym_comment, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6372), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 48, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [95888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3020), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1217), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -325231,7 +323513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1254), 41, + ACTIONS(1219), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -325273,14 +323555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97994] = 4, + [95954] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1315), 1, + ACTIONS(1272), 1, sym__entry_separator, - STATE(3046), 1, + STATE(3021), 1, sym_comment, - ACTIONS(1313), 54, + ACTIONS(1270), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325335,104 +323617,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98060] = 4, + [96020] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3047), 1, - sym_comment, - ACTIONS(1230), 2, - anon_sym_DOT2, + ACTIONS(1439), 1, sym__entry_separator, - ACTIONS(1228), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + STATE(3022), 1, + sym_comment, + ACTIONS(1437), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [98126] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3048), 1, - sym_comment, - ACTIONS(1259), 14, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1261), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -325449,25 +323664,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98192] = 4, + aux_sym__unquoted_in_list_token1, + [96086] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(3049), 1, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3399), 1, + anon_sym_DASH_DASH, + ACTIONS(3409), 1, + anon_sym_null, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + anon_sym_DASH, + ACTIONS(6138), 1, + anon_sym_LBRACE, + ACTIONS(6140), 1, + anon_sym_DOT, + ACTIONS(6142), 1, + anon_sym_PLUS, + ACTIONS(6144), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6148), 1, + sym_val_date, + ACTIONS(6150), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(6437), 1, + anon_sym_LBRACK, + ACTIONS(6439), 1, + anon_sym_RBRACK, + STATE(3023), 1, sym_comment, - ACTIONS(1228), 13, + STATE(3813), 1, + aux_sym__match_pattern_list_repeat1, + STATE(6036), 1, + sym__val_number_decimal, + STATE(6177), 1, + sym__var, + STATE(6326), 1, + sym_val_number, + STATE(6336), 1, + sym__val_number, + STATE(6492), 1, + sym_expr_parenthesized, + STATE(6521), 1, + sym_val_variable, + STATE(6793), 1, + sym_long_flag_equals_value, + STATE(6794), 1, + sym__str_double_quotes, + STATE(6797), 1, + sym__match_pattern_list, + STATE(6800), 1, + sym__match_pattern_record, + STATE(6801), 1, + sym__expr_unary_minus, + STATE(6861), 1, + sym__match_pattern_expression, + STATE(11169), 1, + sym__match_pattern_rest, + STATE(11171), 1, + sym__match_pattern_ignore_rest, + ACTIONS(3411), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3425), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6796), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3415), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6146), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6875), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6795), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [96222] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3024), 1, + sym_comment, + ACTIONS(1209), 14, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -325477,15 +323795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1230), 42, + aux_sym_unquoted_token1, + ACTIONS(1211), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -325521,14 +323838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98258] = 4, + [96288] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1254), 1, + ACTIONS(931), 1, sym__entry_separator, - STATE(3050), 1, + STATE(3025), 1, sym_comment, - ACTIONS(1252), 54, + ACTIONS(929), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325583,14 +323900,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98324] = 4, + [96354] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1395), 1, + ACTIONS(1423), 1, sym__entry_separator, - STATE(3051), 1, + STATE(3026), 1, sym_comment, - ACTIONS(1393), 54, + ACTIONS(1421), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325645,50 +323962,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98390] = 4, + [96420] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3052), 1, + ACTIONS(6443), 1, + anon_sym_bit_DASHand, + ACTIONS(6445), 1, + anon_sym_bit_DASHxor, + ACTIONS(6447), 1, + anon_sym_bit_DASHor, + ACTIONS(6449), 1, + anon_sym_and, + ACTIONS(6451), 1, + anon_sym_xor, + ACTIONS(6453), 1, + anon_sym_or, + STATE(3027), 1, sym_comment, - ACTIONS(1294), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(6370), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6441), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6372), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6431), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(1391), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -325707,14 +324037,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98456] = 4, + [96512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1276), 1, sym__entry_separator, - STATE(3053), 1, + STATE(3028), 1, sym_comment, - ACTIONS(1298), 54, + ACTIONS(1274), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325769,14 +324099,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98522] = 4, + [96578] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(1280), 1, sym__entry_separator, - STATE(3054), 1, + STATE(3029), 1, sym_comment, - ACTIONS(990), 54, + ACTIONS(1278), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325831,14 +324161,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98588] = 4, + [96644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(1088), 1, sym__entry_separator, - STATE(3055), 1, + STATE(3030), 1, sym_comment, - ACTIONS(1385), 54, + ACTIONS(1086), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325893,14 +324223,108 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98654] = 4, + [96710] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, + anon_sym_DOT, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + STATE(3031), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10235), 1, + sym__expression, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [96840] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3056), 1, + STATE(3032), 1, sym_comment, - ACTIONS(1305), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -325955,134 +324379,166 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98720] = 39, + [96906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_DASH_DASH, - ACTIONS(3617), 1, - anon_sym_null, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(6184), 1, + STATE(3033), 1, + sym_comment, + ACTIONS(1221), 14, + anon_sym_GT, anon_sym_DASH, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(6188), 1, + anon_sym_in, + anon_sym__, anon_sym_DOT, - ACTIONS(6190), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6192), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6196), 1, - sym_val_date, - ACTIONS(6198), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(6310), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1223), 41, anon_sym_LBRACK, - ACTIONS(6484), 1, - anon_sym_RBRACK, - STATE(3057), 1, - sym_comment, - STATE(3751), 1, - aux_sym__match_pattern_list_repeat1, - STATE(5841), 1, - sym__val_number_decimal, - STATE(6205), 1, - sym__var, - STATE(6378), 1, - sym_val_number, - STATE(6464), 1, - sym__val_number, - STATE(6590), 1, - sym_val_variable, - STATE(6610), 1, - sym_expr_parenthesized, - STATE(6665), 1, - sym__match_pattern_list, - STATE(6666), 1, - sym__match_pattern_record, - STATE(6667), 1, - sym__expr_unary_minus, - STATE(6767), 1, - sym__str_double_quotes, - STATE(6774), 1, - sym_long_flag_equals_value, - STATE(6865), 1, - sym__match_pattern_expression, - STATE(10934), 1, - sym__match_pattern_rest, - STATE(10957), 1, - sym__match_pattern_ignore_rest, - ACTIONS(3619), 2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3633), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6664), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3623), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3627), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6194), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6874), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6663), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [98856] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96972] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + STATE(3034), 1, + sym_comment, + ACTIONS(2959), 2, + anon_sym_DOT2, sym__entry_separator, - STATE(3058), 1, + ACTIONS(2957), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [97038] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3035), 1, sym_comment, - ACTIONS(1389), 54, + ACTIONS(1221), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1223), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -326099,29 +324555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [98922] = 4, + [97104] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3059), 1, + STATE(3036), 1, sym_comment, - ACTIONS(1397), 54, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 52, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326134,8 +324588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -326176,15 +324628,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [98988] = 5, + [97172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_QMARK2, - STATE(3060), 1, + STATE(3037), 1, sym_comment, - ACTIONS(1054), 14, - anon_sym_DOLLAR, + ACTIONS(1213), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -326193,14 +324642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1056), 40, + aux_sym__unquoted_in_list_token1, + ACTIONS(1215), 42, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -326237,16 +324690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [99056] = 4, + [97238] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, + ACTIONS(1193), 1, sym__entry_separator, - STATE(3061), 1, + STATE(3038), 1, sym_comment, - ACTIONS(1309), 54, + ACTIONS(1191), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326301,14 +324752,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99122] = 4, + [97304] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1284), 1, sym__entry_separator, - STATE(3062), 1, + STATE(3039), 1, sym_comment, - ACTIONS(1358), 54, + ACTIONS(1282), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326363,15 +324814,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99188] = 4, - ACTIONS(105), 1, + [97370] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3063), 1, + ACTIONS(6272), 1, + aux_sym__immediate_decimal_token2, + STATE(3040), 1, sym_comment, - ACTIONS(1224), 2, + ACTIONS(3000), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1222), 53, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -326384,8 +324847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -326400,7 +324861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_try, anon_sym_catch, @@ -326413,41 +324873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - anon_sym_PLUS, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__record_key_token2, - [99254] = 6, - ACTIONS(3), 1, + [97438] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6488), 1, - anon_sym_COLON, - ACTIONS(6490), 1, - anon_sym_COMMA, - STATE(3064), 1, + STATE(3041), 1, sym_comment, - ACTIONS(6492), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1362), 41, + ACTIONS(4034), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(4032), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -326460,6 +324898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -326474,6 +324914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -326485,57 +324927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [99324] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - sym__entry_separator, - STATE(3065), 1, - sym_comment, - ACTIONS(1193), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -326543,84 +324935,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [99390] = 4, - ACTIONS(105), 1, + aux_sym__record_key_token2, + [97504] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1356), 1, - sym__entry_separator, - STATE(3066), 1, - sym_comment, - ACTIONS(1354), 54, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3359), 1, anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + ACTIONS(3367), 1, anon_sym_LBRACE, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5845), 1, + anon_sym_not, + ACTIONS(5847), 1, + anon_sym_null, + ACTIONS(6382), 1, + sym_cmd_identifier, + ACTIONS(6455), 1, + anon_sym_DASH, + ACTIONS(6457), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(6459), 1, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6461), 1, + aux_sym__val_number_decimal_token1, + STATE(3000), 1, + sym_val_range, + STATE(3042), 1, + sym_comment, + STATE(3727), 1, + sym__expression, + STATE(5149), 1, + sym__var, + STATE(5426), 1, + sym_val_number, + STATE(5471), 1, + sym__val_number_decimal, + STATE(5653), 1, + sym__val_number, + STATE(5971), 1, + sym_val_variable, + STATE(6025), 1, + sym_expr_parenthesized, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6700), 1, + sym__expr_binary_expression, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5849), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5853), 2, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [99456] = 5, + STATE(6109), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6463), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(6113), 11, + sym_val_nothing, + sym_val_bool, + 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, + [97636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_QMARK2, - STATE(3067), 1, + STATE(3043), 1, sym_comment, - ACTIONS(1054), 14, + ACTIONS(1086), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -326635,11 +325054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1056), 40, + ACTIONS(1088), 41, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -326676,15 +325096,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [99524] = 4, + [97702] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3068), 1, - sym_comment, - ACTIONS(1191), 2, - anon_sym_DOT2, + ACTIONS(2959), 1, sym__entry_separator, - ACTIONS(1189), 53, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token2, + STATE(3044), 1, + sym_comment, + ACTIONS(2957), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -326738,14 +325159,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [99590] = 4, + [97770] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(1427), 1, sym__entry_separator, - STATE(3069), 1, + STATE(3045), 1, sym_comment, - ACTIONS(1350), 54, + ACTIONS(1425), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326800,14 +325221,80 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99656] = 4, + [97836] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6364), 1, + anon_sym_DOT2, + STATE(3046), 1, + sym_comment, + ACTIONS(1257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1255), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(1251), 6, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1253), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1385), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [97910] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(1431), 1, sym__entry_separator, - STATE(3070), 1, + STATE(3047), 1, sym_comment, - ACTIONS(1033), 54, + ACTIONS(1429), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326862,14 +325349,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99722] = 4, + [97976] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(1435), 1, sym__entry_separator, - STATE(3071), 1, + STATE(3048), 1, sym_comment, - ACTIONS(1332), 54, + ACTIONS(1433), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -326924,15 +325411,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99788] = 4, + [98042] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3072), 1, + STATE(3049), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1215), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(1252), 53, + ACTIONS(1213), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -326986,37 +325473,139 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__record_key_token2, - [99854] = 4, - ACTIONS(105), 1, + [98108] = 39, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1327), 1, - sym__entry_separator, - STATE(3073), 1, - sym_comment, - ACTIONS(1325), 54, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3399), 1, + anon_sym_DASH_DASH, + ACTIONS(3409), 1, + anon_sym_null, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + anon_sym_DASH, + ACTIONS(6138), 1, + anon_sym_LBRACE, + ACTIONS(6140), 1, + anon_sym_DOT, + ACTIONS(6142), 1, + anon_sym_PLUS, + ACTIONS(6144), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6148), 1, + sym_val_date, + ACTIONS(6150), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(6437), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6465), 1, anon_sym_RBRACK, - anon_sym_LPAREN, + STATE(3050), 1, + sym_comment, + STATE(3813), 1, + aux_sym__match_pattern_list_repeat1, + STATE(6036), 1, + sym__val_number_decimal, + STATE(6177), 1, + sym__var, + STATE(6326), 1, + sym_val_number, + STATE(6336), 1, + sym__val_number, + STATE(6492), 1, + sym_expr_parenthesized, + STATE(6521), 1, + sym_val_variable, + STATE(6793), 1, + sym_long_flag_equals_value, + STATE(6794), 1, + sym__str_double_quotes, + STATE(6797), 1, + sym__match_pattern_list, + STATE(6800), 1, + sym__match_pattern_record, + STATE(6801), 1, + sym__expr_unary_minus, + STATE(6861), 1, + sym__match_pattern_expression, + STATE(10673), 1, + sym__match_pattern_rest, + STATE(10677), 1, + sym__match_pattern_ignore_rest, + ACTIONS(3411), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3425), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6796), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3415), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6146), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6875), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6795), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [98244] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6467), 1, + sym_filesize_unit, + ACTIONS(6469), 1, + sym_duration_unit, + STATE(3051), 1, + sym_comment, + ACTIONS(1054), 13, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1056), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -327033,29 +325622,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [99920] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [98314] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6473), 1, + aux_sym__immediate_decimal_token2, + STATE(3052), 1, + sym_comment, + ACTIONS(3000), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [98384] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, + anon_sym_DOT, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6122), 1, + anon_sym_not, + ACTIONS(6124), 1, + anon_sym_null, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6475), 1, + sym_identifier, + STATE(3053), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10179), 1, + sym__expression, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3973), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(6126), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [98516] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3074), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1346), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327110,14 +325855,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [99986] = 4, + [98582] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3075), 1, + STATE(3055), 1, sym_comment, - ACTIONS(1342), 54, + ACTIONS(6370), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6374), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6372), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327125,19 +325884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -327172,14 +325921,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100052] = 4, + [98656] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(3076), 1, + STATE(3056), 1, sym_comment, - ACTIONS(1259), 54, + ACTIONS(1387), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327234,44 +325983,115 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100118] = 4, - ACTIONS(105), 1, + [98722] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - STATE(3077), 1, + ACTIONS(6473), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6477), 1, + anon_sym_DOT2, + STATE(3057), 1, sym_comment, - ACTIONS(1005), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3000), 11, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_LBRACE, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_DOT, - anon_sym_STAR, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [98792] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(3058), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6441), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6372), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6431), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -327296,14 +326116,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100184] = 4, + [98872] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(5845), 1, + anon_sym_not, + ACTIONS(5847), 1, + anon_sym_null, + ACTIONS(6429), 1, + sym_cmd_identifier, + ACTIONS(6455), 1, + anon_sym_DASH, + ACTIONS(6457), 1, + anon_sym_DOT, + ACTIONS(6459), 1, + anon_sym_PLUS, + ACTIONS(6461), 1, + aux_sym__val_number_decimal_token1, + STATE(3000), 1, + sym_val_range, + STATE(3059), 1, + sym_comment, + STATE(3088), 1, + sym__expression, + STATE(5149), 1, + sym__var, + STATE(5426), 1, + sym_val_number, + STATE(5471), 1, + sym__val_number_decimal, + STATE(5653), 1, + sym__val_number, + STATE(5971), 1, + sym_val_variable, + STATE(6025), 1, + sym_expr_parenthesized, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6700), 1, + sym__expr_binary_expression, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5849), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5853), 2, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6109), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6463), 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + STATE(6113), 11, + sym_val_nothing, + sym_val_bool, + 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, + [99004] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1335), 1, sym__entry_separator, - STATE(3078), 1, + STATE(3060), 1, sym_comment, - ACTIONS(1338), 54, + ACTIONS(1333), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327358,45 +326273,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100250] = 4, + [99070] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3079), 1, + ACTIONS(6443), 1, + anon_sym_bit_DASHand, + STATE(3061), 1, sym_comment, - ACTIONS(1338), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(6370), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6441), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6372), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6431), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1391), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, @@ -327420,170 +326343,76 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100316] = 36, - ACTIONS(3), 1, + [99152] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(6161), 1, - anon_sym_DASH, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - STATE(3080), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10221), 1, - sym__expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [100446] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3081), 1, + STATE(3062), 1, sym_comment, - ACTIONS(1228), 14, - anon_sym_GT, + ACTIONS(1223), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1221), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym__, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_LT2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1230), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100512] = 4, + aux_sym__record_key_token2, + [99218] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(1339), 1, sym__entry_separator, - STATE(3082), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1282), 54, + ACTIONS(1337), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327638,46 +326467,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100578] = 4, + [99284] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(3083), 1, + ACTIONS(6443), 1, + anon_sym_bit_DASHand, + ACTIONS(6445), 1, + anon_sym_bit_DASHxor, + STATE(3064), 1, sym_comment, - ACTIONS(1321), 54, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(6370), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6441), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6372), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(6431), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1391), 30, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -327700,14 +326538,77 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100644] = 4, + [99368] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6276), 1, + aux_sym__immediate_decimal_token2, + STATE(3065), 1, + sym_comment, + ACTIONS(2959), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2957), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99436] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, + ACTIONS(911), 1, sym__entry_separator, - STATE(3084), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1317), 54, + ACTIONS(909), 54, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -327762,292 +326663,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [100710] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(6161), 1, - anon_sym_DASH, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6287), 1, - anon_sym_not, - ACTIONS(6289), 1, - anon_sym_null, - ACTIONS(6494), 1, - sym_identifier, - STATE(3085), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10239), 1, - sym__expression, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3886), 2, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(6291), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - STATE(5744), 11, - sym_val_nothing, - sym_val_bool, - 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, - [100842] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, - anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_PLUS, - ACTIONS(5762), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3086), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5477), 1, - sym_unquoted, - STATE(5482), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [100967] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, - anon_sym_DASH, - ACTIONS(6003), 1, - anon_sym_PLUS, - ACTIONS(6005), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - STATE(3087), 1, - sym_comment, - STATE(4928), 1, - sym__val_number_decimal, - STATE(5274), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6190), 1, - sym__expr_binary_expression, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6245), 1, - sym_unquoted, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6514), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6243), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(6250), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [101092] = 4, + [99502] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3088), 1, + STATE(3067), 1, sym_comment, - ACTIONS(1102), 12, + ACTIONS(1217), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -328057,7 +326682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 42, + ACTIONS(1219), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -328065,7 +326690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -328100,280 +326725,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101157] = 19, - ACTIONS(3), 1, + [99568] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - ACTIONS(6538), 1, + ACTIONS(1393), 1, + sym__entry_separator, + ACTIONS(6443), 1, anon_sym_bit_DASHand, - ACTIONS(6540), 1, + ACTIONS(6445), 1, anon_sym_bit_DASHxor, - ACTIONS(6542), 1, + ACTIONS(6447), 1, anon_sym_bit_DASHor, - ACTIONS(6544), 1, - anon_sym_and, - ACTIONS(6546), 1, - anon_sym_xor, - STATE(3089), 1, + STATE(3068), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, + ACTIONS(6370), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, + ACTIONS(6376), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6536), 2, + ACTIONS(6441), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6534), 3, + ACTIONS(6372), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6431), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6532), 4, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 21, + ACTIONS(1391), 29, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_and, + anon_sym_xor, anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101252] = 18, + aux_sym__unquoted_in_list_token1, + [99654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6522), 1, + ACTIONS(6479), 1, + anon_sym_DOT2, + ACTIONS(6482), 1, + aux_sym__immediate_decimal_token2, + STATE(3069), 1, + sym_comment, + ACTIONS(3167), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3165), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - ACTIONS(6538), 1, - anon_sym_bit_DASHand, - ACTIONS(6540), 1, - anon_sym_bit_DASHxor, - ACTIONS(6542), 1, - anon_sym_bit_DASHor, - ACTIONS(6544), 1, - anon_sym_and, - STATE(3090), 1, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [99724] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3070), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, + ACTIONS(3000), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6524), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [99790] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + sym__entry_separator, + STATE(3071), 1, + sym_comment, + ACTIONS(1341), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101345] = 17, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [99856] = 15, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - ACTIONS(6538), 1, + ACTIONS(1393), 1, + sym__entry_separator, + ACTIONS(6443), 1, anon_sym_bit_DASHand, - ACTIONS(6540), 1, + ACTIONS(6445), 1, anon_sym_bit_DASHxor, - ACTIONS(6542), 1, + ACTIONS(6447), 1, anon_sym_bit_DASHor, - STATE(3091), 1, + ACTIONS(6449), 1, + anon_sym_and, + STATE(3072), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, + ACTIONS(6370), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, + ACTIONS(6376), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6536), 2, + ACTIONS(6441), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6534), 3, + ACTIONS(6372), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6431), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6532), 4, + ACTIONS(6368), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 23, + ACTIONS(1391), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101436] = 16, + aux_sym__unquoted_in_list_token1, + [99944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - ACTIONS(6538), 1, - anon_sym_bit_DASHand, - ACTIONS(6540), 1, - anon_sym_bit_DASHxor, - STATE(3092), 1, + ACTIONS(6484), 1, + aux_sym_unquoted_token5, + STATE(3073), 1, sym_comment, - ACTIONS(6518), 2, + ACTIONS(1191), 13, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, + anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6526), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1413), 24, + ACTIONS(1193), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -328381,6 +327087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, @@ -328398,60 +327121,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101525] = 15, - ACTIONS(3), 1, + [100012] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - ACTIONS(6538), 1, - anon_sym_bit_DASHand, - STATE(3093), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(3074), 1, sym_comment, - ACTIONS(6518), 2, + ACTIONS(1387), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 25, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, @@ -328460,159 +327168,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101612] = 34, + aux_sym__unquoted_in_list_token1, + [100078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3075), 1, + sym_comment, + ACTIONS(1185), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3094), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5493), 1, - sym_unquoted, - STATE(5494), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6506), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [101737] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - STATE(3095), 1, - sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1187), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -328632,46 +327245,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101822] = 9, - ACTIONS(3), 1, + [100144] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(1347), 1, + sym__entry_separator, + STATE(3076), 1, sym_comment, - ACTIONS(6520), 2, + ACTIONS(1345), 54, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1411), 9, - anon_sym_GT, - anon_sym_in, - anon_sym__, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 35, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -328688,386 +327292,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101897] = 34, + aux_sym__unquoted_in_list_token1, + [100210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DASH, - ACTIONS(5015), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6488), 1, + aux_sym__immediate_decimal_token2, + STATE(3077), 1, + sym_comment, + ACTIONS(2959), 12, anon_sym_LPAREN, - ACTIONS(6552), 1, - anon_sym_LBRACE, - ACTIONS(6554), 1, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6556), 1, anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, - anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2490), 1, - sym_unquoted, - STATE(2496), 1, - sym__expr_binary_expression, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3097), 1, - sym_comment, - ACTIONS(6562), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2957), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [102022] = 35, + aux_sym__record_key_token2, + [100280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6582), 1, + ACTIONS(6490), 1, + aux_sym__immediate_decimal_token2, + STATE(3078), 1, + sym_comment, + ACTIONS(3806), 12, anon_sym_LPAREN, - ACTIONS(6584), 1, anon_sym_DOLLAR, - ACTIONS(6586), 1, - anon_sym_DASH, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6590), 1, - anon_sym_DOT, - ACTIONS(6592), 1, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6600), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6606), 1, - sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(435), 1, - sym__val_number_decimal, - STATE(452), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(654), 1, - sym_val_variable, - STATE(666), 1, - sym_expr_parenthesized, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(2267), 1, - sym__expression, - STATE(2273), 1, - sym_val_range, - STATE(3098), 1, - sym_comment, - STATE(6869), 1, - sym__expr_binary_expression, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6604), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(738), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6602), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3804), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(733), 11, - sym_val_nothing, - sym_val_bool, - 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, - [102149] = 5, - ACTIONS(3), 1, + aux_sym__record_key_token2, + [100348] = 16, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3099), 1, + ACTIONS(1393), 1, + sym__entry_separator, + ACTIONS(6443), 1, + anon_sym_bit_DASHand, + ACTIONS(6445), 1, + anon_sym_bit_DASHxor, + ACTIONS(6447), 1, + anon_sym_bit_DASHor, + ACTIONS(6449), 1, + anon_sym_and, + ACTIONS(6451), 1, + anon_sym_xor, + STATE(3079), 1, sym_comment, - ACTIONS(6526), 2, + ACTIONS(6370), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, + ACTIONS(6376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6441), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6372), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6431), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6368), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 39, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 27, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102216] = 34, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [100438] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, + STATE(3080), 1, + sym_comment, + ACTIONS(1211), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1209), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5748), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(5762), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3100), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5410), 1, - sym__expr_binary_expression, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5491), 1, - sym_unquoted, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [102341] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [100504] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + ACTIONS(6492), 1, + anon_sym_QMARK2, + STATE(3081), 1, sym_comment, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 11, + ACTIONS(1070), 14, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 37, + ACTIONS(1072), 40, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -329098,388 +327631,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102412] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, - anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_PLUS, - ACTIONS(5762), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3102), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5489), 1, - sym_unquoted, - STATE(5490), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [102537] = 34, - ACTIONS(3), 1, + [100572] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(4038), 1, + sym__entry_separator, + ACTIONS(6494), 1, + anon_sym_DOT2, + STATE(3082), 1, + sym_comment, + ACTIONS(4036), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(6620), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6628), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3103), 1, - sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, - sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4714), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(4838), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6638), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [102662] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6622), 1, - anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_PLUS, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3104), 1, - sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, - sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4713), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(4796), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6638), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [102787] = 13, - ACTIONS(3), 1, + aux_sym__record_key_token2, + [100640] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - STATE(3105), 1, + ACTIONS(5730), 1, + aux_sym_unquoted_token3, + STATE(3083), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 28, + ACTIONS(829), 7, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102870] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3106), 1, - sym_comment, - ACTIONS(6520), 2, + ACTIONS(827), 47, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 9, - anon_sym_GT, - anon_sym_in, - anon_sym__, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 37, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -329496,22 +327747,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102943] = 4, + aux_sym__unquoted_in_list_token1, + [100708] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(6492), 1, + anon_sym_QMARK2, + STATE(3084), 1, sym_comment, - ACTIONS(1259), 14, + ACTIONS(1070), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -329526,7 +327781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1261), 40, + ACTIONS(1072), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -329567,50 +327822,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [103008] = 11, + [100776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3085), 1, sym_comment, - ACTIONS(6518), 2, + ACTIONS(1209), 13, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6524), 2, + anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6526), 2, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1211), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(6532), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_in, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -329635,85 +327884,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103087] = 34, + [100842] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(6650), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3086), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, + STATE(4725), 1, sym__val_number, - STATE(690), 1, - sym_unquoted, - STATE(691), 1, - sym__expr_binary_expression, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(740), 1, + STATE(5137), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5424), 1, + sym_unquoted, + STATE(5579), 1, sym__expr_unary_minus, - STATE(3109), 1, - sym_comment, - ACTIONS(6598), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6253), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -329726,328 +327975,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [103212] = 34, - ACTIONS(3), 1, + [100967] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, - sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, + ACTIONS(6502), 1, + sym__entry_separator, + STATE(3087), 1, + sym_comment, + ACTIONS(6500), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, - ACTIONS(6644), 1, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(6646), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6648), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6650), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(687), 1, - sym_unquoted, - STATE(689), 1, - sym__expr_binary_expression, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3110), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6602), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6652), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [103337] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, - sym_val_date, - ACTIONS(6608), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, - anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, - anon_sym_PLUS, - ACTIONS(6650), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(685), 1, - sym_unquoted, - STATE(686), 1, - sym__expr_binary_expression, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3111), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6652), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [103462] = 4, - ACTIONS(3), 1, + aux_sym__record_key_token2, + [101032] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3112), 1, + ACTIONS(6506), 1, + sym__entry_separator, + STATE(3088), 1, sym_comment, - ACTIONS(1259), 12, - anon_sym_GT, + ACTIONS(6504), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - anon_sym_LT2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1261), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103527] = 34, + aux_sym__record_key_token2, + [101097] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6608), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6646), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6650), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, + ACTIONS(6514), 1, + anon_sym_not, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(382), 1, + STATE(3089), 1, + sym_comment, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(483), 1, + STATE(4906), 1, sym__var, - STATE(561), 1, + STATE(4976), 1, sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(684), 1, - sym__expr_binary_expression, - STATE(694), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(695), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(720), 1, + STATE(5571), 1, + sym__expr_binary_expression, + STATE(5575), 1, sym_unquoted, - STATE(740), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(3113), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330060,85 +328188,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [103652] = 34, + [101222] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6608), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6646), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6650), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, + ACTIONS(6514), 1, + anon_sym_not, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(382), 1, + STATE(3090), 1, + sym_comment, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(483), 1, + STATE(4906), 1, sym__var, - STATE(561), 1, + STATE(4976), 1, sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(683), 1, - sym__expr_binary_expression, - STATE(694), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(695), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(722), 1, + STATE(5576), 1, + sym__expr_binary_expression, + STATE(5577), 1, sym_unquoted, - STATE(740), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(3114), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330151,85 +328279,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [103777] = 34, + [101347] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3115), 1, + STATE(3091), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4712), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5578), 1, + sym__expr_binary_expression, + STATE(5580), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4834), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330242,85 +328370,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [103902] = 34, + [101472] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3116), 1, + STATE(3092), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4711), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5585), 1, + sym__expr_binary_expression, + STATE(5586), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4832), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330333,85 +328461,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104027] = 34, + [101597] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3117), 1, + STATE(3093), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4710), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5587), 1, + sym__expr_binary_expression, + STATE(5588), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4830), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330424,162 +328552,209 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104152] = 20, + [101722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_in, - ACTIONS(6538), 1, - anon_sym_bit_DASHand, - ACTIONS(6540), 1, - anon_sym_bit_DASHxor, - ACTIONS(6542), 1, - anon_sym_bit_DASHor, - ACTIONS(6544), 1, - anon_sym_and, - ACTIONS(6546), 1, - anon_sym_xor, - ACTIONS(6656), 1, - anon_sym_or, - STATE(3118), 1, + ACTIONS(6520), 1, + anon_sym_DOT2, + STATE(3094), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6520), 2, - anon_sym_DASH, + ACTIONS(3979), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_PLUS, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6534), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6532), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym__, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3977), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1413), 20, - anon_sym_LBRACK, - anon_sym_COMMA, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101789] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6522), 1, + anon_sym_DOT2, + STATE(3095), 1, + sym_comment, + ACTIONS(4028), 11, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [104249] = 34, + ACTIONS(4026), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [101856] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3119), 1, + STATE(3096), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4709), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5590), 1, + sym__expr_binary_expression, + STATE(5591), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4828), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330592,85 +328767,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104374] = 34, + [101981] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, - anon_sym_DASH, - ACTIONS(5886), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(5890), 1, - anon_sym_PLUS, - ACTIONS(5898), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(3683), 1, anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(5310), 1, + anon_sym_DASH, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, anon_sym_LPAREN, - ACTIONS(6660), 1, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6662), 1, + ACTIONS(6512), 1, + anon_sym_PLUS, + ACTIONS(6514), 1, anon_sym_not, - STATE(3120), 1, + ACTIONS(6518), 1, + aux_sym_unquoted_token1, + STATE(3097), 1, sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4464), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4701), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, + STATE(4677), 1, sym__val_number_decimal, - STATE(5521), 1, + STATE(4906), 1, sym__var, - STATE(6478), 1, + STATE(4976), 1, + sym_val_number, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5593), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(5594), 1, + sym_unquoted, + STATE(5669), 1, + sym__expr_unary_minus, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6664), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330683,85 +328858,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104499] = 34, + [102106] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3121), 1, + STATE(3098), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4708), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5596), 1, + sym__expr_binary_expression, + STATE(5597), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4825), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330774,85 +328949,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104624] = 34, + [102231] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3122), 1, + STATE(3099), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4707), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5599), 1, + sym__expr_binary_expression, + STATE(5601), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4824), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330865,85 +329040,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104749] = 34, + [102356] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(2409), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(2423), 1, + ACTIONS(5316), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, - anon_sym_LBRACK, - ACTIONS(6668), 1, + ACTIONS(6508), 1, anon_sym_LPAREN, - ACTIONS(6670), 1, - anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6674), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6676), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6678), 1, - anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(1066), 1, + STATE(3100), 1, + sym_comment, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(1119), 1, + STATE(4906), 1, sym__var, - STATE(1154), 1, + STATE(4976), 1, sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(1261), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1307), 1, - sym_unquoted, - STATE(1311), 1, + STATE(5602), 1, sym__expr_binary_expression, - STATE(1316), 1, + STATE(5604), 1, + sym_unquoted, + STATE(5669), 1, sym__expr_unary_minus, - STATE(3123), 1, - sym_comment, - ACTIONS(6680), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6690), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1248), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -330956,85 +329131,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104874] = 34, + [102481] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + ACTIONS(129), 1, anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, + ACTIONS(159), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(197), 1, sym_val_date, - ACTIONS(6608), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(1743), 1, + anon_sym_DOLLAR, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6646), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6650), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, + ACTIONS(6514), 1, + anon_sym_not, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(382), 1, + STATE(3101), 1, + sym_comment, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(483), 1, + STATE(4906), 1, sym__var, - STATE(561), 1, + STATE(4976), 1, sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(694), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(695), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(704), 1, - sym_unquoted, - STATE(705), 1, + STATE(5605), 1, sym__expr_binary_expression, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, + STATE(5607), 1, + sym_unquoted, + STATE(5669), 1, sym__expr_unary_minus, - STATE(3124), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -331047,85 +329222,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [104999] = 34, + [102606] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(199), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(5316), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6508), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(3125), 1, + STATE(3102), 1, sym_comment, - STATE(4277), 1, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(4354), 1, + STATE(4906), 1, sym__var, - STATE(4429), 1, + STATE(4976), 1, sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(5336), 1, sym__str_double_quotes, - STATE(4706), 1, + STATE(5391), 1, + sym__inter_single_quotes, + STATE(5392), 1, + sym__inter_double_quotes, + STATE(5608), 1, + sym__expr_binary_expression, + STATE(5612), 1, sym_unquoted, - STATE(4720), 1, + STATE(5669), 1, sym__expr_unary_minus, - STATE(4821), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3685), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(195), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -331138,85 +329313,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [105124] = 34, + [102731] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, + ACTIONS(129), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1743), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(3683), 1, + anon_sym_null, + ACTIONS(5310), 1, anon_sym_DASH, - ACTIONS(5015), 1, + ACTIONS(5316), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6508), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, - anon_sym_LBRACE, - ACTIONS(6554), 1, + ACTIONS(6510), 1, anon_sym_DOT, - ACTIONS(6556), 1, + ACTIONS(6512), 1, anon_sym_PLUS, - ACTIONS(6558), 1, + ACTIONS(6514), 1, anon_sym_not, - ACTIONS(6560), 1, - anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, + ACTIONS(6518), 1, aux_sym_unquoted_token1, - STATE(1871), 1, + STATE(3103), 1, + sym_comment, + STATE(4464), 1, + sym__val_number, + STATE(4677), 1, sym__val_number_decimal, - STATE(2147), 1, + STATE(4906), 1, sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, + STATE(4976), 1, sym_val_number, - STATE(2451), 1, + STATE(5336), 1, + sym__str_double_quotes, + STATE(5391), 1, sym__inter_single_quotes, - STATE(2452), 1, + STATE(5392), 1, sym__inter_double_quotes, - STATE(2489), 1, - sym_unquoted, - STATE(2497), 1, + STATE(5616), 1, sym__expr_binary_expression, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2516), 1, + STATE(5617), 1, + sym_unquoted, + STATE(5669), 1, sym__expr_unary_minus, - STATE(3126), 1, - sym_comment, - ACTIONS(6562), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6572), 2, + ACTIONS(201), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, + ACTIONS(195), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6516), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, + STATE(5564), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2446), 12, + STATE(5709), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -331229,18 +329404,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [105249] = 5, + [102856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6698), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, + STATE(3104), 1, sym_comment, - ACTIONS(3836), 12, + ACTIONS(1341), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(6527), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(6524), 20, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [102925] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + anon_sym_DOT2, + STATE(3105), 1, + sym_comment, + ACTIONS(4038), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -331249,7 +329486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3834), 41, + ACTIONS(4036), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -331276,6 +329513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -331291,109 +329529,141 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [105316] = 34, + [102992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6532), 1, + anon_sym_DOT2, + STATE(3106), 1, + sym_comment, + ACTIONS(3842), 11, anon_sym_LPAREN, - ACTIONS(6620), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3840), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_PLUS, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3128), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [103059] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6534), 1, + anon_sym_DOT2, + STATE(3107), 1, sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, - sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4705), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(4817), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(3905), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6638), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3903), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [105441] = 5, + aux_sym__record_key_token2, + [103126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, - aux_sym__immediate_decimal_token2, - STATE(3129), 1, + ACTIONS(6536), 1, + anon_sym_DOT2, + STATE(3108), 1, sym_comment, - ACTIONS(2988), 12, + ACTIONS(3911), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, @@ -331402,7 +329672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2986), 41, + ACTIONS(3909), 42, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -331429,6 +329699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -331444,561 +329715,386 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [105508] = 34, + [103193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3109), 1, + sym_comment, + ACTIONS(1054), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1056), 41, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6672), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1256), 1, - sym__expr_binary_expression, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1305), 1, - sym_unquoted, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3130), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [105633] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3110), 1, + sym_comment, + ACTIONS(909), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(911), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3131), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4702), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6479), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [105758] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3111), 1, + sym_comment, + ACTIONS(1349), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1351), 41, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6672), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1303), 1, - sym_unquoted, - STATE(1304), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3132), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [105883] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3112), 1, + sym_comment, + ACTIONS(1303), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1305), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3133), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4703), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6485), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106008] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3113), 1, + sym_comment, + ACTIONS(1307), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1309), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3134), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4705), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6487), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106133] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103518] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + ACTIONS(6538), 1, + anon_sym_DOT2, + STATE(3114), 1, + sym_comment, + ACTIONS(1257), 2, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_PLUS, + ACTIONS(1255), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(1251), 7, + anon_sym_DOLLAR, + anon_sym_DOT, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1253), 18, anon_sym_LBRACK, - ACTIONS(6668), 1, anon_sym_LPAREN, - ACTIONS(6670), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, - anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1301), 1, - sym_unquoted, - STATE(1302), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3135), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106258] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1385), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [103591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3115), 1, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1329), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -332007,15 +330103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1254), 42, + aux_sym_unquoted_token1, + ACTIONS(1331), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -332051,573 +330146,624 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [106323] = 34, + [103656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3116), 1, + sym_comment, + ACTIONS(1333), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1335), 41, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6672), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1298), 1, - sym_unquoted, - STATE(1299), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3137), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106448] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3117), 1, + sym_comment, + ACTIONS(1337), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1339), 41, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6672), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1295), 1, - sym_unquoted, - STATE(1297), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3138), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106573] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3118), 1, + sym_comment, + ACTIONS(1345), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1347), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3139), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4706), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6491), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106698] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3119), 1, + sym_comment, + ACTIONS(1353), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1355), 41, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6554), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2488), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2501), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3140), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, + [103916] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + sym__entry_separator, + STATE(3120), 1, + sym_comment, + ACTIONS(2998), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106823] = 34, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [103981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3121), 1, + sym_comment, + ACTIONS(1357), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1359), 41, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6554), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2487), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2502), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3141), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, + [104046] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3122), 1, + sym_comment, + ACTIONS(1361), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6564), 3, + aux_sym_unquoted_token1, + ACTIONS(1363), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [106948] = 34, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104111] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, + ACTIONS(2959), 1, + sym__entry_separator, + STATE(3123), 1, + sym_comment, + ACTIONS(2957), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5884), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(5898), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [104176] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3124), 1, + sym_comment, + ACTIONS(1368), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1370), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3142), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4707), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6486), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107073] = 5, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104241] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6474), 1, - aux_sym__immediate_decimal_token2, - STATE(3143), 1, + ACTIONS(3806), 1, + sym__entry_separator, + STATE(3125), 1, sym_comment, - ACTIONS(2998), 12, + ACTIONS(3804), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2996), 41, + aux_sym__record_key_token2, + [104306] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4034), 1, + sym__entry_separator, + STATE(3126), 1, + sym_comment, + ACTIONS(4032), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -332630,6 +330776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_module, anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_error, anon_sym_list, anon_sym_DASH, @@ -332644,6 +330792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_try, anon_sym_catch, anon_sym_return, @@ -332655,201 +330805,8053 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_overlay, anon_sym_new, anon_sym_as, + anon_sym_PLUS, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__record_key_token2, - [107140] = 34, + [104371] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3127), 1, + sym_comment, + ACTIONS(1319), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1321), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3144), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4708), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6481), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107265] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + STATE(3128), 1, + sym_comment, + ACTIONS(1266), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1268), 41, anon_sym_LBRACK, - ACTIONS(6584), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6588), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6606), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6608), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [104501] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3129), 1, + sym_comment, + ACTIONS(1266), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6650), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(708), 1, - sym_unquoted, - STATE(709), 1, - sym__expr_binary_expression, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3145), 1, - sym_comment, - ACTIONS(6598), 2, + ACTIONS(1268), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6602), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104566] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3130), 1, + sym_comment, + ACTIONS(1270), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + aux_sym_unquoted_token1, + ACTIONS(1272), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3131), 1, + sym_comment, + ACTIONS(1437), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1439), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104696] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3132), 1, + sym_comment, + ACTIONS(929), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(931), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [104761] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3133), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5941), 1, + sym__expr_binary_expression, + STATE(5982), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [104886] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3134), 1, + sym_comment, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(8000), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [105013] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3135), 1, + sym_comment, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(8008), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [105140] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3136), 1, + sym_comment, + ACTIONS(1274), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1276), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105205] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3137), 1, + sym_comment, + ACTIONS(1278), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1280), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105270] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3138), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5985), 1, + sym__expr_binary_expression, + STATE(5988), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [105395] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3139), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5874), 1, + sym_unquoted, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5999), 1, + sym__expr_binary_expression, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [105520] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3140), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5877), 1, + sym__expr_binary_expression, + STATE(5878), 1, + sym_unquoted, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [105645] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3141), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5882), 1, + sym__expr_binary_expression, + STATE(5885), 1, + sym_unquoted, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [105770] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3142), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5891), 1, + sym__expr_binary_expression, + STATE(5893), 1, + sym_unquoted, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, - [107390] = 4, + [105895] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3143), 1, + sym_comment, + ACTIONS(1282), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1284), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105960] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3144), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5914), 1, + sym__expr_binary_expression, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5952), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [106085] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3145), 1, + sym_comment, + ACTIONS(1374), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1376), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3146), 1, + sym_comment, + ACTIONS(1381), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1383), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3147), 1, + sym_comment, + ACTIONS(1255), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1385), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106280] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3148), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106345] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3149), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3150), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106475] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3151), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106540] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3152), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106605] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3153), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3154), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106735] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3155), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106800] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3156), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106865] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3157), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106930] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3158), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106995] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3159), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107060] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3160), 1, + sym_comment, + ACTIONS(1387), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1389), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107125] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3161), 1, + sym_comment, + ACTIONS(1421), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1423), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107190] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3162), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5969), 1, + sym__expr_binary_expression, + STATE(5972), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [107315] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3163), 1, + sym_comment, + ACTIONS(1257), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1251), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1255), 5, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(1253), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1385), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [107386] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3164), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5973), 1, + sym__expr_binary_expression, + STATE(5974), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [107511] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3165), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_in, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 32, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107590] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3166), 1, + sym_comment, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 8, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 38, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107663] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + STATE(3167), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107746] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3168), 1, + sym_comment, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 10, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 38, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107817] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3169), 1, + sym_comment, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 40, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107884] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3170), 1, + sym_comment, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1391), 8, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 36, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [107959] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + STATE(3171), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108044] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + STATE(3172), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108131] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + ACTIONS(6576), 1, + anon_sym_bit_DASHxor, + STATE(3173), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 25, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108220] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + ACTIONS(6576), 1, + anon_sym_bit_DASHxor, + ACTIONS(6578), 1, + anon_sym_bit_DASHor, + STATE(3174), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 24, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108311] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + ACTIONS(6576), 1, + anon_sym_bit_DASHxor, + ACTIONS(6578), 1, + anon_sym_bit_DASHor, + ACTIONS(6580), 1, + anon_sym_and, + STATE(3175), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108404] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + ACTIONS(6576), 1, + anon_sym_bit_DASHxor, + ACTIONS(6578), 1, + anon_sym_bit_DASHor, + ACTIONS(6580), 1, + anon_sym_and, + ACTIONS(6582), 1, + anon_sym_xor, + STATE(3176), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108499] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6568), 1, + anon_sym_in, + ACTIONS(6574), 1, + anon_sym_bit_DASHand, + ACTIONS(6576), 1, + anon_sym_bit_DASHxor, + ACTIONS(6578), 1, + anon_sym_bit_DASHor, + ACTIONS(6580), 1, + anon_sym_and, + ACTIONS(6582), 1, + anon_sym_xor, + ACTIONS(6584), 1, + anon_sym_or, + STATE(3177), 1, + sym_comment, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6556), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6570), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1393), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108596] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3178), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5980), 1, + sym__expr_binary_expression, + STATE(5981), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [108721] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6586), 1, + anon_sym_DOT, + STATE(3179), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(5930), 1, + sym__val_number_decimal, + STATE(6441), 1, + sym_expr_parenthesized, + STATE(6442), 1, + sym_val_variable, + STATE(6746), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(11205), 1, + sym__expression, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [108848] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3180), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5987), 1, + sym__expr_binary_expression, + STATE(5991), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [108973] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3181), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5993), 1, + sym__expr_binary_expression, + STATE(5995), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [109098] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym_val_date, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(101), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1745), 1, + anon_sym_DOLLAR, + ACTIONS(3565), 1, + anon_sym_null, + ACTIONS(5520), 1, + anon_sym_DASH, + ACTIONS(5526), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_DOT, + ACTIONS(6544), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(6550), 1, + aux_sym_unquoted_token1, + STATE(3182), 1, + sym_comment, + STATE(4730), 1, + sym__val_number_decimal, + STATE(4763), 1, + sym__val_number, + STATE(5061), 1, + sym__var, + STATE(5168), 1, + sym_val_number, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(5997), 1, + sym__expr_binary_expression, + STATE(5998), 1, + sym_unquoted, + STATE(6022), 1, + sym__inter_single_quotes, + STATE(6026), 1, + sym__inter_double_quotes, + STATE(6053), 1, + sym__str_double_quotes, + ACTIONS(97), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(87), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(91), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6548), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5875), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5835), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [109223] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6588), 1, + anon_sym_LBRACK, + ACTIONS(6590), 1, + anon_sym_LPAREN, + ACTIONS(6592), 1, + anon_sym_DOLLAR, + ACTIONS(6594), 1, + anon_sym_DASH, + ACTIONS(6596), 1, + anon_sym_LBRACE, + ACTIONS(6598), 1, + anon_sym_DOT, + ACTIONS(6600), 1, + anon_sym_PLUS, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6608), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6614), 1, + sym_val_date, + ACTIONS(6616), 1, + anon_sym_DQUOTE, + ACTIONS(6620), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6622), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(454), 1, + sym__val_number_decimal, + STATE(487), 1, + sym__var, + STATE(595), 1, + sym_val_number, + STATE(596), 1, + sym__val_number, + STATE(625), 1, + sym_expr_parenthesized, + STATE(650), 1, + sym_val_variable, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, + sym__expr_unary_minus, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(2293), 1, + sym_val_range, + STATE(2343), 1, + sym__expression, + STATE(3183), 1, + sym_comment, + STATE(6684), 1, + sym__expr_binary_expression, + ACTIONS(6606), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(682), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6610), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(707), 11, + sym_val_nothing, + sym_val_bool, + 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, + [109350] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6473), 1, + aux_sym__immediate_decimal_token2, + STATE(3184), 1, + sym_comment, + ACTIONS(3000), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [109417] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6488), 1, + aux_sym__immediate_decimal_token2, + STATE(3185), 1, + sym_comment, + ACTIONS(2959), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2957), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [109484] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6624), 1, + aux_sym__immediate_decimal_token2, + STATE(3186), 1, + sym_comment, + ACTIONS(3806), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3804), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [109551] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_PLUS, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3187), 1, + sym_comment, + STATE(5249), 1, + sym__var, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(7943), 1, + sym__expression, + ACTIONS(3029), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, + sym_val_nothing, + sym_val_bool, + 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, + [109678] = 35, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, + anon_sym_DOT, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + STATE(3188), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5145), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(10217), 1, + sym__expression, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5381), 11, + sym_val_nothing, + sym_val_bool, + 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, + [109805] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6628), 1, + anon_sym_RBRACE, + ACTIONS(6630), 1, + sym__entry_separator, + STATE(3189), 1, + sym_comment, + ACTIONS(6626), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [109872] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT2, + STATE(3190), 1, + sym_comment, + ACTIONS(1054), 14, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1056), 39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [109939] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3191), 1, + sym_comment, + ACTIONS(1341), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1343), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [110004] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4332), 1, + sym__entry_separator, + STATE(3192), 1, + sym_comment, + ACTIONS(4330), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110069] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6632), 1, + aux_sym_unquoted_token5, + STATE(3193), 1, + sym_comment, + ACTIONS(1191), 13, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1193), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [110136] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4336), 1, + sym__entry_separator, + STATE(3194), 1, + sym_comment, + ACTIONS(4334), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110201] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4340), 1, + sym__entry_separator, + STATE(3195), 1, + sym_comment, + ACTIONS(4338), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110266] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3196), 1, + sym_comment, + ACTIONS(3000), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2998), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [110331] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4344), 1, + sym__entry_separator, + STATE(3197), 1, + sym_comment, + ACTIONS(4342), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110396] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3198), 1, + sym_comment, + ACTIONS(2959), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2957), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [110461] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3199), 1, + sym_comment, + ACTIONS(3806), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3804), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [110526] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3200), 1, + sym_comment, + ACTIONS(4034), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4032), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [110591] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4392), 1, + sym__entry_separator, + STATE(3201), 1, + sym_comment, + ACTIONS(4390), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110656] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4396), 1, + sym__entry_separator, + STATE(3202), 1, + sym_comment, + ACTIONS(4394), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110721] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4400), 1, + sym__entry_separator, + STATE(3203), 1, + sym_comment, + ACTIONS(4398), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110786] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4408), 1, + sym__entry_separator, + STATE(3204), 1, + sym_comment, + ACTIONS(4406), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110851] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4414), 1, + sym__entry_separator, + STATE(3205), 1, + sym_comment, + ACTIONS(4412), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110916] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4457), 1, + sym__entry_separator, + STATE(3206), 1, + sym_comment, + ACTIONS(4455), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [110981] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4464), 1, + sym__entry_separator, + STATE(3207), 1, + sym_comment, + ACTIONS(4462), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111046] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4476), 1, + sym__entry_separator, + STATE(3208), 1, + sym_comment, + ACTIONS(4474), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111111] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4480), 1, + sym__entry_separator, + STATE(3209), 1, + sym_comment, + ACTIONS(4478), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111176] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4484), 1, + sym__entry_separator, + STATE(3210), 1, + sym_comment, + ACTIONS(4482), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111241] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4088), 1, + sym__entry_separator, + STATE(3211), 1, + sym_comment, + ACTIONS(4086), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111306] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4092), 1, + sym__entry_separator, + STATE(3212), 1, + sym_comment, + ACTIONS(4090), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111371] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4152), 1, + sym__entry_separator, + STATE(3213), 1, + sym_comment, + ACTIONS(4150), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111436] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4166), 1, + sym__entry_separator, + STATE(3214), 1, + sym_comment, + ACTIONS(4164), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111501] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4170), 1, + sym__entry_separator, + STATE(3215), 1, + sym_comment, + ACTIONS(4168), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111566] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4174), 1, + sym__entry_separator, + STATE(3216), 1, + sym_comment, + ACTIONS(4172), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111631] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4178), 1, + sym__entry_separator, + STATE(3217), 1, + sym_comment, + ACTIONS(4176), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111696] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4186), 1, + sym__entry_separator, + STATE(3218), 1, + sym_comment, + ACTIONS(4184), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111761] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + sym__entry_separator, + STATE(3219), 1, + sym_comment, + ACTIONS(4197), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111826] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4203), 1, + sym__entry_separator, + STATE(3220), 1, + sym_comment, + ACTIONS(4201), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111891] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4217), 1, + sym__entry_separator, + STATE(3221), 1, + sym_comment, + ACTIONS(4215), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [111956] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3222), 1, + sym_comment, + ACTIONS(949), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(951), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [112021] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4233), 1, + sym__entry_separator, + STATE(3223), 1, + sym_comment, + ACTIONS(4231), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112086] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4261), 1, + sym__entry_separator, + STATE(3224), 1, + sym_comment, + ACTIONS(4259), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112151] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4291), 1, + sym__entry_separator, + STATE(3225), 1, + sym_comment, + ACTIONS(4289), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112216] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4313), 1, + sym__entry_separator, + STATE(3226), 1, + sym_comment, + ACTIONS(4311), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112281] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4317), 1, + sym__entry_separator, + STATE(3227), 1, + sym_comment, + ACTIONS(4315), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112346] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4324), 1, + sym__entry_separator, + STATE(3228), 1, + sym_comment, + ACTIONS(4322), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112411] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(3229), 1, + sym_comment, + ACTIONS(4326), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112476] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + STATE(3230), 1, + sym_comment, + ACTIONS(4368), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112541] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4374), 1, + sym__entry_separator, + STATE(3231), 1, + sym_comment, + ACTIONS(4372), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112606] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4378), 1, + sym__entry_separator, + STATE(3232), 1, + sym_comment, + ACTIONS(4376), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112671] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4382), 1, + sym__entry_separator, + STATE(3233), 1, + sym_comment, + ACTIONS(4380), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112736] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + sym__entry_separator, + STATE(3234), 1, + sym_comment, + ACTIONS(4386), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112801] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4404), 1, + sym__entry_separator, + STATE(3235), 1, + sym_comment, + ACTIONS(4402), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112866] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4418), 1, + sym__entry_separator, + STATE(3236), 1, + sym_comment, + ACTIONS(4416), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112931] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4422), 1, + sym__entry_separator, + STATE(3237), 1, + sym_comment, + ACTIONS(4420), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [112996] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4426), 1, + sym__entry_separator, + STATE(3238), 1, + sym_comment, + ACTIONS(4424), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113061] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4472), 1, + sym__entry_separator, + STATE(3239), 1, + sym_comment, + ACTIONS(4470), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113126] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4488), 1, + sym__entry_separator, + STATE(3240), 1, + sym_comment, + ACTIONS(4486), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113191] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4301), 1, + sym__entry_separator, + STATE(3241), 1, + sym_comment, + ACTIONS(4299), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113256] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + sym__entry_separator, + STATE(3242), 1, + sym_comment, + ACTIONS(4060), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113321] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + sym__entry_separator, + STATE(3243), 1, + sym_comment, + ACTIONS(4068), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113386] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4074), 1, + sym__entry_separator, + STATE(3244), 1, + sym_comment, + ACTIONS(4072), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113451] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym__entry_separator, + STATE(3245), 1, + sym_comment, + ACTIONS(4076), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [113516] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3246), 1, + sym_comment, + ACTIONS(1191), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1193), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [113581] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3247), 1, sym_comment, - ACTIONS(1278), 12, + ACTIONS(1425), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -332858,15 +338860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1280), 42, + aux_sym_unquoted_token1, + ACTIONS(1427), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -332902,904 +338903,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [107455] = 34, + [113646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, - sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + STATE(3248), 1, + sym_comment, + ACTIONS(1429), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6650), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(710), 1, - sym_unquoted, - STATE(711), 1, - sym__expr_binary_expression, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3147), 1, - sym_comment, - ACTIONS(6598), 2, + ACTIONS(1431), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6602), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6652), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107580] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [113711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3249), 1, + sym_comment, + ACTIONS(1433), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1435), 41, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6554), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2477), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2504), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3148), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107705] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, sym_val_date, - ACTIONS(5910), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [113776] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3250), 1, + sym_comment, + ACTIONS(1303), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1305), 42, anon_sym_LBRACK, - ACTIONS(6618), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6620), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, - anon_sym_DASH, - ACTIONS(6624), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6626), 1, anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_PLUS, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3149), 1, - sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, - sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4703), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(4813), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6638), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107830] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, sym_val_date, - ACTIONS(6608), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [113841] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3251), 1, + sym_comment, + ACTIONS(1307), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6650), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(713), 1, - sym_unquoted, - STATE(715), 1, - sym__expr_binary_expression, - STATE(716), 1, - sym__str_double_quotes, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3150), 1, - sym_comment, - ACTIONS(6598), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [107955] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6580), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1309), 42, anon_sym_LBRACK, - ACTIONS(6584), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6588), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, - anon_sym_null, - ACTIONS(6606), 1, - sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, - anon_sym_DASH, - ACTIONS(6646), 1, anon_sym_DOT, - ACTIONS(6648), 1, - anon_sym_PLUS, - ACTIONS(6650), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, - sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, - sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, - sym__str_double_quotes, - STATE(717), 1, - sym_unquoted, - STATE(718), 1, - sym__expr_binary_expression, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3151), 1, - sym_comment, - ACTIONS(6598), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6602), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6604), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6652), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(733), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108080] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [113906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3252), 1, + sym_comment, + ACTIONS(1054), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 42, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6554), 1, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2469), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2505), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3152), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108205] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [113971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3253), 1, + sym_comment, + ACTIONS(1319), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, - anon_sym_LPAREN, - ACTIONS(6660), 1, - anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3153), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4709), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6480), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6664), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108330] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1321), 42, anon_sym_LBRACK, - ACTIONS(6618), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6620), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, - anon_sym_DASH, - ACTIONS(6624), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6626), 1, anon_sym_DOT, - ACTIONS(6628), 1, - anon_sym_PLUS, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6636), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3154), 1, - sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, - sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4702), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(4812), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6638), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108455] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [114036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3254), 1, + sym_comment, + ACTIONS(1329), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1331), 42, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6672), 1, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1293), 1, - sym_unquoted, - STATE(1294), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3155), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108580] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [114101] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(6650), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_DOT, + STATE(3255), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, + STATE(4725), 1, sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(719), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5707), 1, sym_unquoted, - STATE(723), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6588), 1, sym__expr_binary_expression, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3156), 1, - sym_comment, - ACTIONS(6598), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -333812,107 +339421,76 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [108705] = 34, + [114226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3256), 1, + sym_comment, + ACTIONS(1333), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1335), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3157), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4710), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6476), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [108830] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [114291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3257), 1, sym_comment, - ACTIONS(1405), 13, + ACTIONS(1337), 12, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -333921,14 +339499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1407), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(1339), 42, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -333964,85 +339543,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [108895] = 34, + [114356] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6622), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_DOT, - ACTIONS(6628), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6636), 1, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - STATE(3159), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_DOT, + STATE(3258), 1, sym_comment, - STATE(4277), 1, - sym__val_number_decimal, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(4701), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, sym__expr_unary_minus, - STATE(4811), 1, + STATE(5712), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6590), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6638), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334055,85 +339634,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109020] = 34, + [114481] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6584), 1, - anon_sym_DOLLAR, - ACTIONS(6588), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6606), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6608), 1, - anon_sym_DQUOTE, - ACTIONS(6612), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(6650), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_DOT, + STATE(3259), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, + STATE(4725), 1, sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(724), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5716), 1, sym_unquoted, - STATE(725), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6591), 1, sym__expr_binary_expression, - STATE(740), 1, - sym__expr_unary_minus, - STATE(3160), 1, - sym_comment, - ACTIONS(6598), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334146,85 +339725,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109145] = 34, + [114606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + STATE(3260), 1, + sym_comment, + ACTIONS(909), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(911), 42, anon_sym_LBRACK, - ACTIONS(6584), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6588), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_not, - ACTIONS(6596), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6606), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6608), 1, anon_sym_DQUOTE, - ACTIONS(6612), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [114671] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6614), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6642), 1, - anon_sym_LPAREN, - ACTIONS(6644), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_DOT, - ACTIONS(6648), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(6650), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6654), 1, - aux_sym_unquoted_token1, - STATE(382), 1, - sym__val_number_decimal, - STATE(483), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_DOT, + STATE(3261), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(561), 1, - sym_val_number, - STATE(564), 1, + STATE(4725), 1, sym__val_number, - STATE(694), 1, - sym__inter_single_quotes, - STATE(695), 1, - sym__inter_double_quotes, - STATE(716), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(726), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5372), 1, sym_unquoted, - STATE(728), 1, - sym__expr_binary_expression, - STATE(740), 1, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, sym__expr_unary_minus, - STATE(3161), 1, - sym_comment, - ACTIONS(6598), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6592), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6610), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6602), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6604), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6652), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(729), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(733), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334237,85 +339877,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109270] = 34, + [114796] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5884), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5886), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5890), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(5898), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6660), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3162), 1, + STATE(3262), 1, sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4471), 1, + sym__var, + STATE(4725), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(4711), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5388), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, + STATE(5437), 1, sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6475), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6593), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6664), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334328,267 +339968,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109395] = 34, + [114921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3263), 1, + sym_comment, + ACTIONS(1341), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1343), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3163), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5487), 1, - sym_unquoted, - STATE(5488), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [109520] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [114986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3264), 1, + sym_comment, + ACTIONS(1345), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1347), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3164), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5485), 1, - sym_unquoted, - STATE(5486), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [109645] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [115051] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5884), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5886), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5890), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(5898), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6660), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3165), 1, + STATE(3265), 1, sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4471), 1, + sym__var, + STATE(4725), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(4712), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5407), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, + STATE(5437), 1, sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6474), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6594), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6664), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334601,85 +340181,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109770] = 34, + [115176] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5884), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5886), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5890), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(5898), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6660), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3166), 1, + STATE(3266), 1, sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4471), 1, + sym__var, + STATE(4725), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(4713), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5417), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, + STATE(5437), 1, sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6472), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6595), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6664), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334692,85 +340272,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [109895] = 34, + [115301] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5746), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5748), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5750), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(5762), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3167), 1, + STATE(3267), 1, sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, + STATE(4471), 1, sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, + STATE(4725), 1, sym__val_number, - STATE(5431), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(5438), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5483), 1, + STATE(5424), 1, sym_unquoted, - STATE(5484), 1, - sym__expr_binary_expression, - STATE(5539), 1, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6596), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6506), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5694), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334783,176 +340363,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110020] = 34, + [115426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3268), 1, + sym_comment, + ACTIONS(1349), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1351), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3168), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5475), 1, - sym_unquoted, - STATE(5476), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [110145] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [115491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + STATE(3269), 1, + sym_comment, + ACTIONS(1353), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1355), 42, anon_sym_LBRACK, - ACTIONS(3403), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [115556] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5136), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5142), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6702), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3169), 1, + STATE(3270), 1, sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, + STATE(4471), 1, sym__var, - STATE(5109), 1, + STATE(4725), 1, sym__val_number, - STATE(5110), 1, + STATE(4942), 1, sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5746), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5454), 1, + sym_unquoted, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5807), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6597), 1, sym__expr_binary_expression, - STATE(5808), 1, - sym_unquoted, - ACTIONS(3417), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5589), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -334965,85 +340576,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110270] = 34, + [115681] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3415), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3427), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5136), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5142), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6702), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3170), 1, + STATE(3271), 1, sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, + STATE(4471), 1, sym__var, - STATE(5109), 1, + STATE(4725), 1, sym__val_number, - STATE(5110), 1, + STATE(4942), 1, sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5746), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5802), 1, - sym__expr_binary_expression, - STATE(5803), 1, + STATE(5603), 1, sym_unquoted, - ACTIONS(3417), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6598), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5589), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -335056,85 +340667,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110395] = 34, + [115806] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6716), 1, - anon_sym_PLUS, - ACTIONS(6718), 1, - anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3171), 1, + STATE(3272), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, - sym__val_number_decimal, - STATE(5032), 1, + STATE(4471), 1, sym__var, - STATE(5363), 1, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, sym_val_number, - STATE(5988), 1, - sym_unquoted, - STATE(5989), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(5651), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6599), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -335147,16 +340758,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110520] = 4, + [115931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3273), 1, sym_comment, - ACTIONS(1313), 13, + ACTIONS(1357), 12, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -335165,14 +340775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1315), 41, + aux_sym__unquoted_in_list_token1, + ACTIONS(1359), 42, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -335208,85 +340819,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [110585] = 34, + [115996] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5746), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5748), 1, + ACTIONS(5969), 1, anon_sym_DASH, - ACTIONS(5750), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, + ACTIONS(5975), 1, anon_sym_PLUS, - ACTIONS(5762), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, + ACTIONS(6634), 1, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3173), 1, + STATE(3274), 1, sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, + STATE(4471), 1, sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, + STATE(4725), 1, sym__val_number, - STATE(5431), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(5438), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5468), 1, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5655), 1, sym_unquoted, - STATE(5474), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6600), 1, sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5770), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6506), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5694), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -335299,176 +340910,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110710] = 34, + [116121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3275), 1, + sym_comment, + ACTIONS(1361), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1363), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3174), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5463), 1, - sym_unquoted, - STATE(5464), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [110835] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [116186] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, - anon_sym_DASH, - ACTIONS(2423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, - anon_sym_LBRACK, - ACTIONS(6668), 1, - anon_sym_LPAREN, - ACTIONS(6670), 1, - anon_sym_LBRACE, - ACTIONS(6672), 1, - anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6686), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5969), 1, + anon_sym_DASH, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(5979), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_DOT, + STATE(3276), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, + STATE(4725), 1, sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(1291), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5437), 1, + sym__val_number_decimal, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5689), 1, sym_unquoted, - STATE(1292), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6601), 1, sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3175), 1, - sym_comment, - ACTIONS(6680), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2429), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6682), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, + ACTIONS(5981), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1248), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -335481,740 +341062,927 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [110960] = 34, + [116311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + STATE(3277), 1, + sym_comment, + ACTIONS(1368), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1370), 42, anon_sym_LBRACK, - ACTIONS(3403), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [116376] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3278), 1, + sym_comment, + ACTIONS(1266), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1268), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3176), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5800), 1, - sym__expr_binary_expression, - STATE(5801), 1, - sym_unquoted, - ACTIONS(3417), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + [116441] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3279), 1, + sym_comment, + ACTIONS(1266), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + aux_sym__unquoted_in_list_token1, + ACTIONS(1268), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111085] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [116506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + STATE(3280), 1, + sym_comment, + ACTIONS(949), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(951), 42, anon_sym_LBRACK, - ACTIONS(3403), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [116571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3281), 1, + sym_comment, + ACTIONS(1082), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1084), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3177), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5797), 1, - sym__expr_binary_expression, - STATE(5799), 1, - sym_unquoted, - ACTIONS(3417), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + [116636] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3282), 1, + sym_comment, + ACTIONS(1270), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + aux_sym__unquoted_in_list_token1, + ACTIONS(1272), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111210] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [116701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3283), 1, + sym_comment, + ACTIONS(1437), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1439), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3178), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5453), 1, - sym_unquoted, - STATE(5460), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111335] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [116766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + STATE(3284), 1, + sym_comment, + ACTIONS(929), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(931), 42, anon_sym_LBRACK, - ACTIONS(3403), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [116831] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3285), 1, + sym_comment, + ACTIONS(1086), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1088), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3179), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5795), 1, - sym__expr_binary_expression, - STATE(5796), 1, - sym_unquoted, - ACTIONS(3417), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + [116896] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3286), 1, + sym_comment, + ACTIONS(1274), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + aux_sym__unquoted_in_list_token1, + ACTIONS(1276), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111460] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [116961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3287), 1, + sym_comment, + ACTIONS(1278), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1280), 42, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6554), 1, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, - anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2461), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2506), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3180), 1, - sym_comment, - ACTIONS(6562), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111585] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3415), 1, - anon_sym_null, - ACTIONS(3427), 1, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [117026] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3288), 1, + sym_comment, + ACTIONS(1191), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1193), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3181), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5792), 1, - sym__expr_binary_expression, - STATE(5793), 1, - sym_unquoted, - ACTIONS(3417), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6708), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111710] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + STATE(3289), 1, + sym_comment, + ACTIONS(1282), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1284), 42, anon_sym_LBRACK, - ACTIONS(3403), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [117156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3290), 1, + sym_comment, + ACTIONS(1425), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1427), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3182), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5787), 1, - sym__expr_binary_expression, - STATE(5788), 1, - sym_unquoted, - ACTIONS(3417), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6708), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111835] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DOLLAR, - ACTIONS(2409), 1, + STATE(3291), 1, + sym_comment, + ACTIONS(1429), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1431), 42, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6672), 1, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1288), 1, - sym_unquoted, - STATE(1290), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3183), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [111960] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3292), 1, sym_comment, - ACTIONS(1282), 12, + ACTIONS(1433), 12, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -336227,7 +341995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1284), 42, + ACTIONS(1435), 42, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -336270,907 +342038,883 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [112025] = 34, + [117351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, + STATE(3293), 1, + sym_comment, + ACTIONS(1185), 14, anon_sym_DOLLAR, - ACTIONS(3409), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1187), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3415), 1, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(3427), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + [117416] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3294), 1, + sym_comment, + ACTIONS(1209), 14, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, - anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_in, anon_sym_DOT, - ACTIONS(6704), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6706), 1, + anon_sym_LT2, anon_sym_not, - STATE(3185), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5785), 1, - sym__expr_binary_expression, - STATE(5786), 1, - sym_unquoted, - ACTIONS(3417), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 3, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(1211), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112150] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3415), 1, - anon_sym_null, - ACTIONS(3427), 1, sym_val_date, - ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + [117481] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3295), 1, + sym_comment, + ACTIONS(1213), 14, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5142), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, - anon_sym_LPAREN, - ACTIONS(6702), 1, + anon_sym_in, anon_sym_DOT, - ACTIONS(6704), 1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(6706), 1, + anon_sym_LT2, anon_sym_not, - STATE(3186), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5782), 1, - sym__expr_binary_expression, - STATE(5784), 1, - sym_unquoted, - ACTIONS(3417), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 3, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(1215), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112275] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [117546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_DOLLAR, - ACTIONS(5884), 1, + STATE(3296), 1, + sym_comment, + ACTIONS(1217), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5886), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5898), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(6658), 1, + ACTIONS(1219), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6660), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym_not, - STATE(3187), 1, - sym_comment, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, - sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4714), 1, - sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5197), 1, - sym__val_number_decimal, - STATE(5521), 1, - sym__var, - STATE(6470), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(4655), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112400] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3297), 1, + sym_comment, + ACTIONS(1221), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1223), 41, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6554), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2460), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2507), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3188), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112525] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, + STATE(3298), 1, + sym_comment, + ACTIONS(1217), 14, anon_sym_DOLLAR, - ACTIONS(5001), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1219), 40, anon_sym_LBRACK, - ACTIONS(6550), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, anon_sym_LBRACE, - ACTIONS(6554), 1, - anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2458), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2508), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3189), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112650] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [117741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + STATE(3299), 1, + sym_comment, + ACTIONS(1221), 14, anon_sym_DOLLAR, - ACTIONS(2409), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1223), 40, anon_sym_LBRACK, - ACTIONS(6668), 1, anon_sym_LPAREN, - ACTIONS(6670), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, - anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6688), 1, anon_sym_DQUOTE, - ACTIONS(6692), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1283), 1, - sym_unquoted, - STATE(1285), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3190), 1, + [117806] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3300), 1, sym_comment, - ACTIONS(6680), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, + ACTIONS(1082), 12, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6682), 3, + aux_sym__unquoted_in_list_token1, + ACTIONS(1084), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112775] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, + STATE(3301), 1, + sym_comment, + ACTIONS(1086), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5015), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1088), 42, anon_sym_LBRACK, - ACTIONS(6550), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6552), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6554), 1, anon_sym_DOT, - ACTIONS(6556), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_not, - ACTIONS(6560), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, - anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, - sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, - sym_val_number, - STATE(2451), 1, - sym__inter_single_quotes, - STATE(2452), 1, - sym__inter_double_quotes, - STATE(2457), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2510), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3191), 1, - sym_comment, - ACTIONS(6562), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5021), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6564), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [112900] = 34, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [117936] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(5822), 1, + aux_sym_unquoted_token3, + STATE(3302), 1, + sym_comment, + ACTIONS(829), 8, anon_sym_LBRACK, - ACTIONS(57), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(827), 45, anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, - anon_sym_LPAREN, - ACTIONS(6714), 1, + anon_sym_in, anon_sym_DOT, - ACTIONS(6716), 1, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - ACTIONS(6718), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3192), 1, - sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, - sym__val_number_decimal, - STATE(5032), 1, - sym__var, - STATE(5363), 1, - sym_val_number, - STATE(5984), 1, - sym_unquoted, - STATE(5987), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, - aux_sym__val_number_token4, + sym_val_date, + [118003] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3303), 1, + sym_comment, + ACTIONS(1219), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1217), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(6017), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(6035), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [113025] = 34, + aux_sym__record_key_token2, + [118068] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + STATE(3304), 1, + sym_comment, + ACTIONS(1223), 12, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2409), 1, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1221), 42, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [118133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3305), 1, + sym_comment, + ACTIONS(1221), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2423), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1223), 42, anon_sym_LBRACK, - ACTIONS(6668), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6670), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6672), 1, anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1281), 1, - sym_unquoted, - STATE(1282), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3193), 1, - sym_comment, - ACTIONS(6680), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [113150] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [118198] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DASH, - ACTIONS(5015), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6554), 1, + ACTIONS(5586), 1, anon_sym_DOT, - ACTIONS(6556), 1, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(6558), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6560), 1, - anon_sym_null, - ACTIONS(6568), 1, - sym_val_date, - ACTIONS(6570), 1, + ACTIONS(5592), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, - aux_sym_unquoted_token1, - STATE(1871), 1, - sym__val_number_decimal, - STATE(2147), 1, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3306), 1, + sym_comment, + STATE(5249), 1, sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(2451), 1, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, sym__inter_single_quotes, - STATE(2452), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(2454), 1, - sym_unquoted, - STATE(2500), 1, - sym__str_double_quotes, - STATE(2511), 1, - sym__expr_binary_expression, - STATE(2516), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3194), 1, - sym_comment, - ACTIONS(6562), 2, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(7905), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6564), 3, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(2446), 12, + STATE(6172), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -337180,270 +342924,272 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [113275] = 34, + [118325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + STATE(3307), 1, + sym_comment, + ACTIONS(1217), 12, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5762), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1219), 42, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6498), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3195), 1, - sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, - sym__var, - STATE(4933), 1, - sym_val_number, - STATE(4971), 1, - sym__val_number, - STATE(5431), 1, - sym__str_double_quotes, - STATE(5438), 1, - sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5497), 1, - sym_unquoted, - STATE(5498), 1, - sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6504), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6506), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5694), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [113400] = 34, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [118390] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(1223), 1, + sym__entry_separator, + STATE(3308), 1, + sym_comment, + ACTIONS(1221), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2409), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(2423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, - anon_sym_LBRACK, - ACTIONS(6668), 1, - anon_sym_LPAREN, - ACTIONS(6670), 1, - anon_sym_LBRACE, - ACTIONS(6672), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6674), 1, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(6676), 1, - anon_sym_not, - ACTIONS(6678), 1, - anon_sym_null, - ACTIONS(6686), 1, - sym_val_date, - ACTIONS(6688), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_DQUOTE, - ACTIONS(6692), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, - aux_sym_unquoted_token1, - STATE(1066), 1, - sym__val_number_decimal, - STATE(1119), 1, - sym__var, - STATE(1154), 1, - sym_val_number, - STATE(1155), 1, - sym__val_number, - STATE(1260), 1, - sym__inter_single_quotes, - STATE(1261), 1, - sym__inter_double_quotes, - STATE(1278), 1, - sym__str_double_quotes, - STATE(1279), 1, - sym_unquoted, - STATE(1280), 1, - sym__expr_binary_expression, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3196), 1, - sym_comment, - ACTIONS(6680), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6690), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2429), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6682), 3, + aux_sym__record_key_token2, + [118455] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1219), 1, + sym__entry_separator, + STATE(3309), 1, + sym_comment, + ACTIONS(1217), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1248), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [113525] = 34, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [118520] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(3403), 1, + ACTIONS(6638), 1, + anon_sym_LPAREN, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(3409), 1, + ACTIONS(6642), 1, + anon_sym_DASH, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(3415), 1, + ACTIONS(6646), 1, + anon_sym_DOT, + ACTIONS(6648), 1, + anon_sym_PLUS, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - ACTIONS(3427), 1, + ACTIONS(6656), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(3429), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, - anon_sym_DASH, - ACTIONS(5142), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, - anon_sym_LPAREN, - ACTIONS(6702), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3197), 1, - sym_comment, - STATE(4636), 1, + STATE(372), 1, sym__val_number_decimal, - STATE(4736), 1, + STATE(415), 1, sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, + STATE(459), 1, sym_val_number, - STATE(5469), 1, + STATE(460), 1, + sym__val_number, + STATE(554), 1, + sym_val_variable, + STATE(593), 1, + sym_expr_parenthesized, + STATE(608), 1, + sym__expr_unary_minus, + STATE(627), 1, sym__inter_single_quotes, - STATE(5473), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(5720), 1, + STATE(641), 1, sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5780), 1, + STATE(2023), 1, + sym_val_range, + STATE(2026), 1, + sym__expression, + STATE(3310), 1, + sym_comment, + STATE(6689), 1, sym__expr_binary_expression, - STATE(5781), 1, - sym_unquoted, - ACTIONS(3417), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + ACTIONS(6666), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + STATE(662), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(6658), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, + STATE(612), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -337453,85 +343199,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [113650] = 34, + [118647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2692), 1, anon_sym_DOLLAR, - ACTIONS(2409), 1, + ACTIONS(2694), 1, anon_sym_DASH, - ACTIONS(2423), 1, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6666), 1, + ACTIONS(6672), 1, anon_sym_LBRACK, - ACTIONS(6668), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6670), 1, + ACTIONS(6676), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6678), 1, anon_sym_DOT, - ACTIONS(6674), 1, + ACTIONS(6680), 1, anon_sym_PLUS, - ACTIONS(6676), 1, + ACTIONS(6682), 1, anon_sym_not, - ACTIONS(6678), 1, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(6686), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(6688), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6694), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6696), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - STATE(1066), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(1119), 1, + STATE(1178), 1, sym__var, - STATE(1154), 1, + STATE(1224), 1, sym_val_number, - STATE(1155), 1, + STATE(1227), 1, sym__val_number, - STATE(1260), 1, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1395), 1, + sym__expr_binary_expression, + STATE(1396), 1, + sym_unquoted, + STATE(1427), 1, sym__inter_single_quotes, - STATE(1261), 1, + STATE(1428), 1, sym__inter_double_quotes, - STATE(1270), 1, - sym_unquoted, - STATE(1275), 1, - sym__expr_binary_expression, - STATE(1278), 1, + STATE(1454), 1, sym__str_double_quotes, - STATE(1316), 1, - sym__expr_unary_minus, - STATE(3198), 1, + STATE(3311), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(6690), 2, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2429), 3, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6682), 3, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6684), 3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1312), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1248), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -337544,176 +343290,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [113775] = 34, + [118772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, + ACTIONS(2692), 1, anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3415), 1, - anon_sym_null, - ACTIONS(3427), 1, - sym_val_date, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, + ACTIONS(2694), 1, anon_sym_DASH, - ACTIONS(5142), 1, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6700), 1, + ACTIONS(6672), 1, + anon_sym_LBRACK, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6702), 1, + ACTIONS(6676), 1, + anon_sym_LBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - ACTIONS(6704), 1, + ACTIONS(6680), 1, anon_sym_PLUS, - ACTIONS(6706), 1, + ACTIONS(6682), 1, anon_sym_not, - STATE(3199), 1, - sym_comment, - STATE(4636), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, - sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, - sym__expr_unary_minus, - STATE(5777), 1, - sym__expr_binary_expression, - STATE(5779), 1, - sym_unquoted, - ACTIONS(3417), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3425), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6708), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6710), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5767), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5589), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [113900] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3415), 1, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(3427), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(3429), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, - anon_sym_DASH, - ACTIONS(5142), 1, - aux_sym__val_number_decimal_token1, ACTIONS(6700), 1, - anon_sym_LPAREN, + anon_sym_DOLLAR_DQUOTE, ACTIONS(6702), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3200), 1, - sym_comment, - STATE(4636), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4736), 1, + STATE(1178), 1, sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, + STATE(1224), 1, sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, sym__expr_unary_minus, - STATE(5774), 1, + STATE(1399), 1, sym__expr_binary_expression, - STATE(5775), 1, + STATE(1400), 1, sym_unquoted, - ACTIONS(3417), 2, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3312), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5589), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -337726,85 +343381,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114025] = 34, + [118897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_LBRACK, - ACTIONS(3403), 1, + ACTIONS(2692), 1, anon_sym_DOLLAR, - ACTIONS(3409), 1, + ACTIONS(2694), 1, + anon_sym_DASH, + ACTIONS(2708), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6672), 1, + anon_sym_LBRACK, + ACTIONS(6674), 1, + anon_sym_LPAREN, + ACTIONS(6676), 1, anon_sym_LBRACE, - ACTIONS(3415), 1, + ACTIONS(6678), 1, + anon_sym_DOT, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(3427), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(3429), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3439), 1, - aux_sym_unquoted_token1, - ACTIONS(5136), 1, - anon_sym_DASH, - ACTIONS(5142), 1, - aux_sym__val_number_decimal_token1, ACTIONS(6700), 1, - anon_sym_LPAREN, + anon_sym_DOLLAR_DQUOTE, ACTIONS(6702), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_PLUS, - ACTIONS(6706), 1, - anon_sym_not, - STATE(3201), 1, - sym_comment, - STATE(4636), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4736), 1, + STATE(1178), 1, sym__var, - STATE(5109), 1, - sym__val_number, - STATE(5110), 1, + STATE(1224), 1, sym_val_number, - STATE(5469), 1, - sym__inter_single_quotes, - STATE(5473), 1, - sym__inter_double_quotes, - STATE(5720), 1, - sym__str_double_quotes, - STATE(5746), 1, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, sym__expr_unary_minus, - STATE(5772), 1, + STATE(1403), 1, sym__expr_binary_expression, - STATE(5773), 1, + STATE(1406), 1, sym_unquoted, - ACTIONS(3417), 2, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3313), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(3431), 2, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3425), 3, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6708), 3, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6710), 3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5767), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5589), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -337817,146 +343472,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114150] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3202), 1, - sym_comment, - ACTIONS(1252), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1254), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [114215] = 34, + [119022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, + ACTIONS(2692), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(2694), 1, anon_sym_DASH, - ACTIONS(5015), 1, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + ACTIONS(6672), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, + ACTIONS(6676), 1, anon_sym_LBRACE, - ACTIONS(6554), 1, + ACTIONS(6678), 1, anon_sym_DOT, - ACTIONS(6556), 1, + ACTIONS(6680), 1, anon_sym_PLUS, - ACTIONS(6558), 1, + ACTIONS(6682), 1, anon_sym_not, - ACTIONS(6560), 1, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(6568), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(6570), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(6574), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - STATE(1871), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(2147), 1, + STATE(1178), 1, sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, + STATE(1224), 1, sym_val_number, - STATE(2447), 1, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1407), 1, + sym__expr_binary_expression, + STATE(1408), 1, sym_unquoted, - STATE(2451), 1, + STATE(1427), 1, sym__inter_single_quotes, - STATE(2452), 1, + STATE(1428), 1, sym__inter_double_quotes, - STATE(2500), 1, + STATE(1454), 1, sym__str_double_quotes, - STATE(2512), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3203), 1, + STATE(3314), 1, sym_comment, - ACTIONS(6562), 2, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6564), 3, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2446), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -337969,85 +343563,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114340] = 34, + [119147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4999), 1, + ACTIONS(2692), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(2694), 1, anon_sym_DASH, - ACTIONS(5015), 1, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6548), 1, + ACTIONS(6672), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, + ACTIONS(6676), 1, anon_sym_LBRACE, - ACTIONS(6554), 1, + ACTIONS(6678), 1, anon_sym_DOT, - ACTIONS(6556), 1, + ACTIONS(6680), 1, anon_sym_PLUS, - ACTIONS(6558), 1, + ACTIONS(6682), 1, anon_sym_not, - ACTIONS(6560), 1, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(6568), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(6570), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(6574), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6576), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6578), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - STATE(1871), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(2147), 1, + STATE(1178), 1, sym__var, - STATE(2161), 1, - sym__val_number, - STATE(2324), 1, + STATE(1224), 1, sym_val_number, - STATE(2444), 1, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1409), 1, + sym__expr_binary_expression, + STATE(1410), 1, sym_unquoted, - STATE(2451), 1, + STATE(1427), 1, sym__inter_single_quotes, - STATE(2452), 1, + STATE(1428), 1, sym__inter_double_quotes, - STATE(2500), 1, + STATE(1454), 1, sym__str_double_quotes, - STATE(2513), 1, - sym__expr_binary_expression, - STATE(2516), 1, - sym__expr_unary_minus, - STATE(3204), 1, + STATE(3315), 1, sym_comment, - ACTIONS(6562), 2, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(6572), 2, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5021), 3, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6564), 3, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6566), 3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2492), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2446), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -338060,146 +343654,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114465] = 4, + [119272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3205), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [114530] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3206), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1178), 1, + sym__var, + STATE(1224), 1, sym_val_number, - STATE(4448), 1, + STATE(1227), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4701), 1, - sym_unquoted, - STATE(4720), 1, + STATE(1388), 1, sym__expr_unary_minus, - STATE(4976), 1, + STATE(1411), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1412), 1, + sym_unquoted, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3316), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6688), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -338212,207 +343745,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114655] = 4, + [119397] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, - sym_comment, - ACTIONS(1254), 12, - anon_sym_LPAREN, + ACTIONS(2692), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1252), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [114720] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3208), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [114785] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3209), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1178), 1, + sym__var, + STATE(1224), 1, sym_val_number, - STATE(4448), 1, + STATE(1227), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4702), 1, - sym_unquoted, - STATE(4720), 1, + STATE(1388), 1, sym__expr_unary_minus, - STATE(4977), 1, + STATE(1419), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1425), 1, + sym_unquoted, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3317), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6688), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -338425,85 +343836,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [114910] = 34, + [119522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, + anon_sym_DASH, + ACTIONS(2708), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6672), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6676), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6678), 1, + anon_sym_DOT, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6684), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6692), 1, + sym_val_date, + ACTIONS(6694), 1, + anon_sym_DQUOTE, + ACTIONS(6698), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3210), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1178), 1, + sym__var, + STATE(1224), 1, sym_val_number, - STATE(4448), 1, + STATE(1227), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4703), 1, - sym_unquoted, - STATE(4720), 1, + STATE(1388), 1, sym__expr_unary_minus, - STATE(4978), 1, + STATE(1426), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1430), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3318), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6688), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -338516,451 +343927,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [115035] = 4, + [119647] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3211), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6692), 1, sym_val_date, + ACTIONS(6694), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115100] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3212), 1, + ACTIONS(6698), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6702), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, + sym__val_number_decimal, + STATE(1178), 1, + sym__var, + STATE(1224), 1, + sym_val_number, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1431), 1, + sym__expr_binary_expression, + STATE(1432), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3319), 1, sym_comment, - ACTIONS(1274), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1276), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - [115165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3213), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115230] = 4, + STATE(1394), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1352), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [119772] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3214), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6692), 1, sym_val_date, + ACTIONS(6694), 1, anon_sym_DQUOTE, + ACTIONS(6698), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6702), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, + sym__val_number_decimal, + STATE(1178), 1, + sym__var, + STATE(1224), 1, + sym_val_number, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1433), 1, + sym__expr_binary_expression, + STATE(1434), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3320), 1, + sym_comment, + ACTIONS(6686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6696), 2, sym__str_single_quotes, sym__str_back_ticks, - [115295] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3215), 1, - sym_comment, - ACTIONS(1385), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1387), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115360] = 4, + STATE(1394), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1352), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [119897] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3216), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115425] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6692), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6694), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6698), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6700), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6702), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3217), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1128), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1178), 1, + sym__var, + STATE(1224), 1, sym_val_number, - STATE(4448), 1, + STATE(1227), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4705), 1, - sym_unquoted, - STATE(4720), 1, + STATE(1388), 1, sym__expr_unary_minus, - STATE(4985), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1435), 1, + sym__expr_binary_expression, + STATE(1436), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3321), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6688), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1394), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1352), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -338973,207 +344200,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [115550] = 4, + [120022] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, + ACTIONS(6692), 1, + sym_val_date, + ACTIONS(6694), 1, + anon_sym_DQUOTE, + ACTIONS(6698), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6702), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, + sym__val_number_decimal, + STATE(1178), 1, + sym__var, + STATE(1224), 1, + sym_val_number, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1438), 1, + sym__expr_binary_expression, + STATE(1443), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3322), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115615] = 4, + STATE(1394), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1352), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [120147] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3219), 1, - sym_comment, - ACTIONS(1389), 13, - anon_sym_GT, + ACTIONS(2692), 1, + anon_sym_DOLLAR, + ACTIONS(2694), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2708), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1391), 41, + ACTIONS(6672), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6676), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6678), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6680), 1, + anon_sym_PLUS, + ACTIONS(6682), 1, + anon_sym_not, + ACTIONS(6684), 1, anon_sym_null, + ACTIONS(6692), 1, + sym_val_date, + ACTIONS(6694), 1, + anon_sym_DQUOTE, + ACTIONS(6698), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6700), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6702), 1, + aux_sym_unquoted_token1, + STATE(1128), 1, + sym__val_number_decimal, + STATE(1178), 1, + sym__var, + STATE(1224), 1, + sym_val_number, + STATE(1227), 1, + sym__val_number, + STATE(1388), 1, + sym__expr_unary_minus, + STATE(1427), 1, + sym__inter_single_quotes, + STATE(1428), 1, + sym__inter_double_quotes, + STATE(1444), 1, + sym__expr_binary_expression, + STATE(1447), 1, + sym_unquoted, + STATE(1454), 1, + sym__str_double_quotes, + STATE(3323), 1, + sym_comment, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, + ACTIONS(6696), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2714), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6688), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6690), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115680] = 34, + STATE(1394), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1352), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [120272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(3609), 1, + sym_val_date, + ACTIONS(3611), 1, + anon_sym_DQUOTE, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3220), 1, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3324), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(4752), 1, + sym__var, + STATE(5009), 1, sym_val_number, - STATE(4448), 1, + STATE(5039), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4706), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5383), 1, sym__expr_unary_minus, - STATE(4986), 1, + STATE(5488), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(5501), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -339186,268 +344473,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [115805] = 4, + [120397] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3221), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(3581), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3585), 1, anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3597), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3609), 1, sym_val_date, + ACTIONS(3611), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [115870] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3222), 1, - sym_comment, - ACTIONS(1288), 12, - anon_sym_GT, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1290), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6704), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(6706), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6708), 1, + anon_sym_PLUS, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3325), 1, + sym_comment, + STATE(4660), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__var, + STATE(5009), 1, + sym_val_number, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5510), 1, + sym__expr_binary_expression, + STATE(5517), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3613), 2, sym__str_single_quotes, sym__str_back_ticks, - [115935] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3223), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116000] = 34, + STATE(5478), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5732), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [120522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(3597), 1, + anon_sym_null, + ACTIONS(3609), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(3611), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6710), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3224), 1, + STATE(3326), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(4752), 1, sym__var, - STATE(5363), 1, + STATE(5009), 1, sym_val_number, - STATE(5990), 1, - sym_unquoted, - STATE(5991), 1, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5518), 1, sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5529), 1, + sym_unquoted, + STATE(5664), 1, sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -339460,85 +344655,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [116125] = 34, + [120647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(3609), 1, + sym_val_date, + ACTIONS(3611), 1, + anon_sym_DQUOTE, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3225), 1, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3327), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(4752), 1, + sym__var, + STATE(5009), 1, sym_val_number, - STATE(4448), 1, + STATE(5039), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4707), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5383), 1, sym__expr_unary_minus, - STATE(4989), 1, + STATE(5530), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(5540), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -339551,451 +344746,358 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [116250] = 4, + [120772] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3226), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(3581), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3585), 1, anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3597), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3609), 1, sym_val_date, + ACTIONS(3611), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116315] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3227), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6704), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6706), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6708), 1, + anon_sym_PLUS, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3328), 1, + sym_comment, + STATE(4660), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__var, + STATE(5009), 1, + sym_val_number, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5541), 1, + sym__expr_binary_expression, + STATE(5545), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116380] = 4, + STATE(5478), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5732), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [120897] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3228), 1, - sym_comment, - ACTIONS(1397), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1399), 41, + ACTIONS(3581), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3585), 1, anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3597), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3609), 1, sym_val_date, + ACTIONS(3611), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116445] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3229), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6704), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6706), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6708), 1, + anon_sym_PLUS, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3329), 1, + sym_comment, + STATE(4660), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__var, + STATE(5009), 1, + sym_val_number, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5546), 1, + sym__expr_binary_expression, + STATE(5555), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116510] = 4, + STATE(5478), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5732), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [121022] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1265), 41, + ACTIONS(3581), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3585), 1, anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3597), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3609), 1, sym_val_date, + ACTIONS(3611), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116575] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3231), 1, - sym_comment, - ACTIONS(1247), 13, - anon_sym_GT, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1409), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6704), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6706), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6708), 1, + anon_sym_PLUS, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3330), 1, + sym_comment, + STATE(4660), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__var, + STATE(5009), 1, + sym_val_number, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5556), 1, + sym__expr_binary_expression, + STATE(5568), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [116640] = 34, + aux_sym__val_number_token6, + STATE(5478), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5732), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [121147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(3597), 1, + anon_sym_null, + ACTIONS(3609), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(3611), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6710), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3232), 1, + STATE(3331), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(4752), 1, sym__var, - STATE(5363), 1, + STATE(5009), 1, sym_val_number, - STATE(5992), 1, - sym_unquoted, - STATE(5993), 1, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(5569), 1, sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5583), 1, + sym_unquoted, + STATE(5664), 1, sym__inter_single_quotes, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(6032), 1, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340008,89 +345110,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [116765] = 35, + [121272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3581), 1, + anon_sym_LBRACK, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(3591), 1, + anon_sym_LBRACE, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3609), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(3611), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6161), 1, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(6165), 1, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6167), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - STATE(3233), 1, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3332), 1, sym_comment, - STATE(4465), 1, + STATE(4660), 1, + sym__val_number_decimal, + STATE(4752), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(5009), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6808), 1, + STATE(5584), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10236), 1, - sym__expression, - ACTIONS(3070), 2, + STATE(5609), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3613), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 6, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5744), 11, + STATE(5478), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5732), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -340100,85 +345201,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [116892] = 34, + [121397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(3609), 1, + sym_val_date, + ACTIONS(3611), 1, + anon_sym_DQUOTE, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3234), 1, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3333), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(4752), 1, + sym__var, + STATE(5009), 1, sym_val_number, - STATE(4448), 1, + STATE(5039), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4708), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5383), 1, sym__expr_unary_minus, - STATE(4970), 1, + STATE(5637), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(5644), 1, + sym_unquoted, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340191,85 +345292,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117017] = 34, + [121522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(3609), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(3611), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, + ACTIONS(3621), 1, aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6740), 1, + ACTIONS(6710), 1, anon_sym_not, - STATE(3235), 1, + STATE(3334), 1, sym_comment, - STATE(4550), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(4752), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(5009), 1, sym_val_number, - STATE(5122), 1, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, sym__expr_unary_minus, - STATE(5166), 1, + STATE(5662), 1, sym__expr_binary_expression, - STATE(5167), 1, - sym_unquoted, - STATE(5320), 1, + STATE(5664), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(5665), 1, sym__inter_double_quotes, - STATE(5354), 1, + STATE(5682), 1, + sym_unquoted, + STATE(5726), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(3613), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6712), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340282,85 +345383,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117142] = 34, + [121647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(57), 1, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(3597), 1, + anon_sym_null, + ACTIONS(3609), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(3611), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3621), 1, + aux_sym_unquoted_token1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5361), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6704), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6710), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3236), 1, + STATE(3335), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(4752), 1, sym__var, - STATE(5363), 1, + STATE(5009), 1, sym_val_number, - STATE(5995), 1, - sym_unquoted, - STATE(5996), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(5039), 1, + sym__val_number, + STATE(5383), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5683), 1, + sym__expr_binary_expression, + STATE(5685), 1, + sym_unquoted, + STATE(5726), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340373,85 +345474,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117267] = 34, + [121772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3581), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(3591), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(3597), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(3609), 1, + sym_val_date, + ACTIONS(3611), 1, + anon_sym_DQUOTE, + ACTIONS(3615), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3617), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3621), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(5355), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(5361), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6708), 1, anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3237), 1, + ACTIONS(6710), 1, + anon_sym_not, + STATE(3336), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(4660), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(4752), 1, + sym__var, + STATE(5009), 1, sym_val_number, - STATE(4448), 1, + STATE(5039), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4709), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5383), 1, sym__expr_unary_minus, - STATE(4992), 1, + STATE(5664), 1, + sym__inter_single_quotes, + STATE(5665), 1, + sym__inter_double_quotes, + STATE(5690), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(5693), 1, + sym_unquoted, + STATE(5726), 1, + sym__str_double_quotes, + ACTIONS(3599), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3613), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3607), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6712), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6714), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5478), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5732), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340464,85 +345565,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117392] = 34, + [121897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(923), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, + sym__expr_unary_minus, + STATE(711), 1, sym_unquoted, - STATE(935), 1, + STATE(720), 1, sym__str_double_quotes, - STATE(950), 1, - sym__expr_unary_minus, - STATE(965), 1, + STATE(724), 1, sym__inter_single_quotes, - STATE(967), 1, - sym__inter_double_quotes, - STATE(979), 1, + STATE(725), 1, sym__expr_binary_expression, - STATE(3238), 1, + STATE(3337), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340555,85 +345656,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117517] = 34, + [122022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6602), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6604), 1, anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(6614), 1, + sym_val_date, + ACTIONS(6616), 1, + anon_sym_DQUOTE, + ACTIONS(6620), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6622), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6716), 1, + anon_sym_LPAREN, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6730), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - STATE(3239), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(527), 1, + sym__var, + STATE(595), 1, sym_val_number, - STATE(4448), 1, + STATE(596), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4710), 1, + STATE(681), 1, + sym__expr_binary_expression, + STATE(683), 1, sym_unquoted, - STATE(4720), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(4994), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(3338), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340646,85 +345747,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117642] = 34, + [122147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6718), 1, + anon_sym_DASH, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6740), 1, - anon_sym_not, - STATE(3240), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(527), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(595), 1, sym_val_number, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5168), 1, + STATE(596), 1, + sym__val_number, + STATE(685), 1, sym__expr_binary_expression, - STATE(5172), 1, + STATE(686), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, + STATE(687), 1, sym__inter_double_quotes, - STATE(5354), 1, + STATE(688), 1, + sym__expr_unary_minus, + STATE(720), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(724), 1, + sym__inter_single_quotes, + STATE(3339), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6618), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340737,146 +345838,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117767] = 4, + [122272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3241), 1, - sym_comment, - ACTIONS(1193), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1195), 41, + ACTIONS(6588), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6592), 1, anon_sym_DOLLAR, + ACTIONS(6596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, + ACTIONS(6614), 1, + sym_val_date, + ACTIONS(6616), 1, + anon_sym_DQUOTE, + ACTIONS(6620), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6622), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6716), 1, + anon_sym_LPAREN, + ACTIONS(6718), 1, + anon_sym_DASH, + ACTIONS(6720), 1, + anon_sym_DOT, + ACTIONS(6722), 1, + anon_sym_PLUS, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, + sym__val_number_decimal, + STATE(527), 1, + sym__var, + STATE(595), 1, + sym_val_number, + STATE(596), 1, + sym__val_number, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, + sym__expr_unary_minus, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(726), 1, + sym__expr_binary_expression, + STATE(727), 1, + sym_unquoted, + STATE(3340), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [117832] = 34, + STATE(722), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(707), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [122397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(950), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(952), 1, - sym_unquoted, - STATE(965), 1, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, sym__inter_single_quotes, - STATE(967), 1, - sym__inter_double_quotes, - STATE(980), 1, + STATE(728), 1, sym__expr_binary_expression, - STATE(3242), 1, + STATE(729), 1, + sym_unquoted, + STATE(3341), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340889,85 +346020,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [117957] = 34, + [122522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(950), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(951), 1, - sym_unquoted, - STATE(965), 1, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, sym__inter_single_quotes, - STATE(967), 1, - sym__inter_double_quotes, - STATE(981), 1, + STATE(730), 1, sym__expr_binary_expression, - STATE(3243), 1, + STATE(731), 1, + sym_unquoted, + STATE(3342), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -340980,85 +346111,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118082] = 34, + [122647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(949), 1, - sym_unquoted, - STATE(950), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, sym__inter_single_quotes, - STATE(967), 1, - sym__inter_double_quotes, - STATE(982), 1, + STATE(733), 1, sym__expr_binary_expression, - STATE(3244), 1, + STATE(735), 1, + sym_unquoted, + STATE(3343), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341071,146 +346202,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3245), 1, - sym_comment, - ACTIONS(1261), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [118272] = 34, + [122772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6718), 1, + anon_sym_DASH, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6740), 1, - anon_sym_not, - STATE(3246), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(527), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(595), 1, sym_val_number, - STATE(5122), 1, + STATE(596), 1, + sym__val_number, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(5173), 1, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(737), 1, sym__expr_binary_expression, - STATE(5174), 1, + STATE(739), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, - sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(3344), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6618), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341223,146 +346293,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118397] = 4, + [122897] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, - sym_comment, - ACTIONS(1274), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1276), 41, + ACTIONS(6588), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6592), 1, anon_sym_DOLLAR, + ACTIONS(6596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, + ACTIONS(6614), 1, + sym_val_date, + ACTIONS(6616), 1, + anon_sym_DQUOTE, + ACTIONS(6620), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6622), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6716), 1, + anon_sym_LPAREN, + ACTIONS(6718), 1, + anon_sym_DASH, + ACTIONS(6720), 1, + anon_sym_DOT, + ACTIONS(6722), 1, + anon_sym_PLUS, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, + sym__val_number_decimal, + STATE(527), 1, + sym__var, + STATE(595), 1, + sym_val_number, + STATE(596), 1, + sym__val_number, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, + sym__expr_unary_minus, + STATE(709), 1, + sym_unquoted, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(741), 1, + sym__expr_binary_expression, + STATE(3345), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [118462] = 34, + STATE(722), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(707), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [123022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(947), 1, - sym_unquoted, - STATE(950), 1, - sym__expr_unary_minus, - STATE(965), 1, - sym__inter_single_quotes, - STATE(967), 1, + STATE(687), 1, sym__inter_double_quotes, - STATE(983), 1, + STATE(688), 1, + sym__expr_unary_minus, + STATE(694), 1, sym__expr_binary_expression, - STATE(3248), 1, + STATE(698), 1, + sym_unquoted, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, + sym__inter_single_quotes, + STATE(3346), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341375,85 +346475,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118587] = 34, + [123147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6718), 1, + anon_sym_DASH, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6740), 1, - anon_sym_not, - STATE(3249), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, + aux_sym_unquoted_token1, + STATE(405), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(527), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(595), 1, sym_val_number, - STATE(5122), 1, + STATE(596), 1, + sym__val_number, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(5175), 1, + STATE(701), 1, sym__expr_binary_expression, - STATE(5176), 1, + STATE(702), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, - sym__inter_double_quotes, - STATE(5354), 1, + STATE(720), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(724), 1, + sym__inter_single_quotes, + STATE(3347), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6618), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6612), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341466,146 +346566,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118712] = 4, + [123272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, - sym_comment, - ACTIONS(1278), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1280), 41, + ACTIONS(6588), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6592), 1, anon_sym_DOLLAR, + ACTIONS(6596), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [118777] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, - anon_sym_DASH, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, - anon_sym_LPAREN, - ACTIONS(6714), 1, - anon_sym_DOT, ACTIONS(6716), 1, - anon_sym_PLUS, + anon_sym_LPAREN, ACTIONS(6718), 1, - anon_sym_not, + anon_sym_DASH, + ACTIONS(6720), 1, + anon_sym_DOT, ACTIONS(6722), 1, + anon_sym_PLUS, + ACTIONS(6724), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(3251), 1, - sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(527), 1, sym__var, - STATE(5363), 1, + STATE(595), 1, sym_val_number, - STATE(6015), 1, - sym_unquoted, - STATE(6016), 1, - sym__expr_binary_expression, - STATE(6023), 1, + STATE(596), 1, + sym__val_number, + STATE(687), 1, sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(688), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(703), 1, + sym__expr_binary_expression, + STATE(713), 1, + sym_unquoted, + STATE(720), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(724), 1, + sym__inter_single_quotes, + STATE(3348), 1, + sym_comment, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341618,85 +346657,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [118902] = 34, + [123397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6588), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6592), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6596), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6602), 1, + anon_sym_not, + ACTIONS(6604), 1, + anon_sym_null, + ACTIONS(6614), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6616), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6620), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6622), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6716), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6718), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6722), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6724), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6728), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(405), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(527), 1, sym__var, - STATE(835), 1, + STATE(595), 1, sym_val_number, - STATE(837), 1, + STATE(596), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(943), 1, - sym_unquoted, - STATE(950), 1, + STATE(687), 1, + sym__inter_double_quotes, + STATE(688), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(695), 1, + sym_unquoted, + STATE(720), 1, + sym__str_double_quotes, + STATE(724), 1, sym__inter_single_quotes, - STATE(967), 1, - sym__inter_double_quotes, - STATE(984), 1, + STATE(740), 1, sym__expr_binary_expression, - STATE(3252), 1, + STATE(3349), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6610), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6612), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6726), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(722), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(707), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341709,85 +346748,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119027] = 34, + [123522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, - anon_sym_LBRACE, - ACTIONS(3517), 1, - anon_sym_null, - ACTIONS(3529), 1, - sym_val_date, - ACTIONS(3531), 1, - anon_sym_DQUOTE, - ACTIONS(3535), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, + ACTIONS(6734), 1, + anon_sym_LBRACE, ACTIONS(6736), 1, anon_sym_DOT, ACTIONS(6738), 1, anon_sym_PLUS, ACTIONS(6740), 1, anon_sym_not, - STATE(3253), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6742), 1, + anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(1109), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(1151), 1, sym_val_number, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5177), 1, + STATE(1152), 1, + sym__val_number, + STATE(1254), 1, sym__expr_binary_expression, - STATE(5178), 1, + STATE(1256), 1, sym_unquoted, - STATE(5320), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(3350), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341800,85 +346839,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119152] = 34, + [123647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, - anon_sym_LBRACE, - ACTIONS(3517), 1, - anon_sym_null, - ACTIONS(3529), 1, - sym_val_date, - ACTIONS(3531), 1, - anon_sym_DQUOTE, - ACTIONS(3535), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, + ACTIONS(6734), 1, + anon_sym_LBRACE, ACTIONS(6736), 1, anon_sym_DOT, ACTIONS(6738), 1, anon_sym_PLUS, ACTIONS(6740), 1, anon_sym_not, - STATE(3254), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6742), 1, + anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(1109), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(1151), 1, sym_val_number, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5179), 1, + STATE(1152), 1, + sym__val_number, + STATE(1257), 1, sym__expr_binary_expression, - STATE(5180), 1, + STATE(1258), 1, sym_unquoted, - STATE(5320), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(3351), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341891,85 +346930,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119277] = 34, + [123772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, + anon_sym_DASH, + ACTIONS(2627), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6730), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6732), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6734), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6742), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3255), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1109), 1, + sym__var, + STATE(1151), 1, sym_val_number, - STATE(4448), 1, + STATE(1152), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4711), 1, + STATE(1259), 1, + sym__expr_binary_expression, + STATE(1260), 1, sym_unquoted, - STATE(4720), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, sym__expr_unary_minus, - STATE(4995), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3352), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6746), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -341982,85 +347021,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119402] = 34, + [123897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, - anon_sym_LBRACE, - ACTIONS(3517), 1, - anon_sym_null, - ACTIONS(3529), 1, - sym_val_date, - ACTIONS(3531), 1, - anon_sym_DQUOTE, - ACTIONS(3535), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, + ACTIONS(6734), 1, + anon_sym_LBRACE, ACTIONS(6736), 1, anon_sym_DOT, ACTIONS(6738), 1, anon_sym_PLUS, ACTIONS(6740), 1, anon_sym_not, - STATE(3256), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6742), 1, + anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(1109), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(1151), 1, sym_val_number, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5181), 1, + STATE(1152), 1, + sym__val_number, + STATE(1261), 1, sym__expr_binary_expression, - STATE(5182), 1, + STATE(1262), 1, sym_unquoted, - STATE(5320), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(3353), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342073,146 +347112,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119527] = 4, + [124022] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, - sym_comment, - ACTIONS(1401), 13, - anon_sym_GT, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1403), 41, + ACTIONS(6730), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6732), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6734), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6736), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(6742), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [119592] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6750), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6752), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6756), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6758), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6760), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3258), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1109), 1, + sym__var, + STATE(1151), 1, sym_val_number, - STATE(4448), 1, + STATE(1152), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4712), 1, + STATE(1263), 1, + sym__expr_binary_expression, + STATE(1264), 1, sym_unquoted, - STATE(4720), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, sym__expr_unary_minus, - STATE(4996), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3354), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6746), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342225,85 +347203,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119717] = 34, + [124147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, - anon_sym_LBRACE, - ACTIONS(3517), 1, - anon_sym_null, - ACTIONS(3529), 1, - sym_val_date, - ACTIONS(3531), 1, - anon_sym_DQUOTE, - ACTIONS(3535), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, + ACTIONS(6734), 1, + anon_sym_LBRACE, ACTIONS(6736), 1, anon_sym_DOT, ACTIONS(6738), 1, anon_sym_PLUS, ACTIONS(6740), 1, anon_sym_not, - STATE(3259), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6742), 1, + anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(1109), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(1151), 1, sym_val_number, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(5183), 1, + STATE(1152), 1, + sym__val_number, + STATE(1265), 1, sym__expr_binary_expression, - STATE(5184), 1, + STATE(1266), 1, sym_unquoted, - STATE(5320), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - STATE(5354), 1, - sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(3355), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342316,85 +347294,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119842] = 34, + [124272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(2627), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, + anon_sym_LPAREN, + ACTIONS(6734), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(6740), 1, anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(6742), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(6750), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(6752), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(6756), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(6758), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, - anon_sym_LPAREN, - ACTIONS(6768), 1, - anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6760), 1, aux_sym_unquoted_token1, - STATE(2689), 1, + STATE(1069), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(1109), 1, sym__var, - STATE(2970), 1, + STATE(1151), 1, sym_val_number, - STATE(2996), 1, + STATE(1152), 1, sym__val_number, - STATE(3260), 1, - sym_comment, - STATE(3738), 1, + STATE(1267), 1, + sym__expr_binary_expression, + STATE(1268), 1, sym_unquoted, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(1284), 1, sym__str_double_quotes, - STATE(3807), 1, - sym__expr_binary_expression, - STATE(3852), 1, + STATE(1325), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(3356), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6746), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342407,162 +347385,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [119967] = 20, + [124397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - ACTIONS(6798), 1, - anon_sym_bit_DASHor, - ACTIONS(6800), 1, - anon_sym_and, - ACTIONS(6802), 1, - anon_sym_xor, - ACTIONS(6804), 1, - anon_sym_or, - STATE(3261), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 21, + ACTIONS(6730), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6734), 1, anon_sym_LBRACE, + ACTIONS(6736), 1, anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(6742), 1, anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, + sym__val_number_decimal, + STATE(1109), 1, + sym__var, + STATE(1151), 1, + sym_val_number, + STATE(1152), 1, + sym__val_number, + STATE(1269), 1, + sym__expr_binary_expression, + STATE(1270), 1, + sym_unquoted, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3357), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [120064] = 34, + STATE(1253), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1287), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [124522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, + ACTIONS(2613), 1, anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(2627), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6730), 1, + anon_sym_LBRACK, + ACTIONS(6732), 1, + anon_sym_LPAREN, + ACTIONS(6734), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(6740), 1, anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(6742), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(6750), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(6752), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(6756), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(6758), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, - anon_sym_LPAREN, - ACTIONS(6768), 1, - anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6760), 1, aux_sym_unquoted_token1, - STATE(2689), 1, + STATE(1069), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(1109), 1, sym__var, - STATE(2970), 1, + STATE(1151), 1, sym_val_number, - STATE(2996), 1, + STATE(1152), 1, sym__val_number, - STATE(3262), 1, - sym_comment, - STATE(3737), 1, + STATE(1271), 1, + sym__expr_binary_expression, + STATE(1272), 1, sym_unquoted, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(1284), 1, sym__str_double_quotes, - STATE(3798), 1, - sym__expr_binary_expression, - STATE(3852), 1, + STATE(1325), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(3358), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6746), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342575,297 +347567,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [120189] = 19, + [124647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - ACTIONS(6798), 1, - anon_sym_bit_DASHor, - ACTIONS(6800), 1, - anon_sym_and, - ACTIONS(6802), 1, - anon_sym_xor, - STATE(3263), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 22, + ACTIONS(6730), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6734), 1, anon_sym_LBRACE, + ACTIONS(6736), 1, anon_sym_DOT, - anon_sym_or, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(6742), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6750), 1, sym_val_date, + ACTIONS(6752), 1, anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, + sym__val_number_decimal, + STATE(1109), 1, + sym__var, + STATE(1151), 1, + sym_val_number, + STATE(1152), 1, + sym__val_number, + STATE(1273), 1, + sym__expr_binary_expression, + STATE(1274), 1, + sym_unquoted, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3359), 1, + sym_comment, + ACTIONS(6744), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6754), 2, sym__str_single_quotes, sym__str_back_ticks, - [120284] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3264), 1, - sym_comment, - ACTIONS(1005), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1007), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [120349] = 18, + STATE(1253), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1287), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [124772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - ACTIONS(6798), 1, - anon_sym_bit_DASHor, - ACTIONS(6800), 1, - anon_sym_and, - STATE(3265), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, + anon_sym_DASH, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 23, + ACTIONS(6730), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6734), 1, anon_sym_LBRACE, + ACTIONS(6736), 1, anon_sym_DOT, - anon_sym_xor, - anon_sym_or, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(6742), 1, anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, + sym__val_number_decimal, + STATE(1109), 1, + sym__var, + STATE(1151), 1, + sym_val_number, + STATE(1152), 1, + sym__val_number, + STATE(1275), 1, + sym__expr_binary_expression, + STATE(1276), 1, + sym_unquoted, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3360), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [120442] = 34, + STATE(1253), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1287), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [124897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, + anon_sym_DASH, + ACTIONS(2627), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6730), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6732), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6734), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6742), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, - anon_sym_DASH, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3266), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(1069), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(1109), 1, + sym__var, + STATE(1151), 1, sym_val_number, - STATE(4448), 1, + STATE(1152), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4713), 1, + STATE(1277), 1, + sym__expr_binary_expression, + STATE(1278), 1, sym_unquoted, - STATE(4720), 1, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, sym__expr_unary_minus, - STATE(4999), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3361), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6746), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(1253), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(1287), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -342878,159 +347840,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [120567] = 17, + [125022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - ACTIONS(6798), 1, - anon_sym_bit_DASHor, - STATE(3267), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, + ACTIONS(2611), 1, + anon_sym_DOLLAR, + ACTIONS(2613), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(2627), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 24, + ACTIONS(6730), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6732), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6734), 1, anon_sym_LBRACE, + ACTIONS(6736), 1, anon_sym_DOT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6738), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(6742), 1, anon_sym_null, + ACTIONS(6750), 1, + sym_val_date, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6756), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6758), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6760), 1, + aux_sym_unquoted_token1, + STATE(1069), 1, + sym__val_number_decimal, + STATE(1109), 1, + sym__var, + STATE(1151), 1, + sym_val_number, + STATE(1152), 1, + sym__val_number, + STATE(1279), 1, + sym__expr_binary_expression, + STATE(1280), 1, + sym_unquoted, + STATE(1284), 1, + sym__str_double_quotes, + STATE(1325), 1, + sym__inter_single_quotes, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(1336), 1, + sym__inter_double_quotes, + STATE(3362), 1, + sym_comment, + ACTIONS(6744), 2, anon_sym_true, anon_sym_false, + ACTIONS(6754), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2633), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6746), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6748), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [120658] = 34, + STATE(1253), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(1287), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [125147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(3148), 1, + sym_val_date, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, aux_sym_unquoted_token1, - ACTIONS(6724), 1, + ACTIONS(4918), 1, anon_sym_DASH, - ACTIONS(6726), 1, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6766), 1, anon_sym_PLUS, - ACTIONS(6730), 1, - aux_sym__val_number_decimal_token1, - STATE(3268), 1, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3363), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4420), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(4695), 1, + sym__var, + STATE(4732), 1, sym_val_number, - STATE(4448), 1, + STATE(4741), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4714), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5198), 1, sym__expr_unary_minus, - STATE(5000), 1, + STATE(5210), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(5214), 1, + sym_unquoted, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6732), 3, + ACTIONS(6770), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343043,158 +348022,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [120783] = 16, + [125272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - STATE(3269), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 25, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, + ACTIONS(3148), 1, + sym_val_date, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3364), 1, + sym_comment, + STATE(4528), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5215), 1, + sym__expr_binary_expression, + STATE(5216), 1, + sym_unquoted, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [120872] = 34, + STATE(5197), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5304), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [125397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, + ACTIONS(3160), 1, aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(4918), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(4924), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6766), 1, anon_sym_PLUS, - ACTIONS(6740), 1, + ACTIONS(6768), 1, anon_sym_not, - STATE(3270), 1, + STATE(3365), 1, sym_comment, - STATE(4550), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(4732), 1, sym_val_number, - STATE(5122), 1, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, sym__expr_unary_minus, - STATE(5185), 1, + STATE(5217), 1, sym__expr_binary_expression, - STATE(5186), 1, + STATE(5219), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, + STATE(5260), 1, sym__inter_double_quotes, - STATE(5354), 1, + STATE(5363), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343207,157 +348204,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [120997] = 15, + [125522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - STATE(3271), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 26, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, + ACTIONS(3148), 1, + sym_val_date, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3366), 1, + sym_comment, + STATE(4528), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5250), 1, + sym__expr_binary_expression, + STATE(5251), 1, + sym_unquoted, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [121084] = 34, + STATE(5197), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5304), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [125647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6772), 1, - aux_sym_unquoted_token1, - STATE(2689), 1, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3367), 1, + sym_comment, + STATE(4528), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(4695), 1, sym__var, - STATE(2970), 1, + STATE(4732), 1, sym_val_number, - STATE(2996), 1, + STATE(4741), 1, sym__val_number, - STATE(3272), 1, - sym_comment, - STATE(3735), 1, - sym_unquoted, - STATE(3747), 1, + STATE(5198), 1, sym__expr_unary_minus, - STATE(3754), 1, - sym__str_double_quotes, - STATE(3791), 1, + STATE(5256), 1, sym__expr_binary_expression, - STATE(3852), 1, - sym__inter_single_quotes, - STATE(3861), 1, + STATE(5260), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(5262), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, ACTIONS(6770), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343370,156 +348386,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [121209] = 14, + [125772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - STATE(3273), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 27, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, + ACTIONS(3148), 1, + sym_val_date, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3368), 1, + sym_comment, + STATE(4528), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5263), 1, + sym__expr_binary_expression, + STATE(5266), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [121294] = 34, + STATE(5197), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5304), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [125897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6772), 1, - aux_sym_unquoted_token1, - STATE(2689), 1, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3369), 1, + sym_comment, + STATE(4528), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(4695), 1, sym__var, - STATE(2970), 1, + STATE(4732), 1, sym_val_number, - STATE(2996), 1, + STATE(4741), 1, sym__val_number, - STATE(3274), 1, - sym_comment, - STATE(3733), 1, - sym_unquoted, - STATE(3747), 1, + STATE(5198), 1, sym__expr_unary_minus, - STATE(3754), 1, - sym__str_double_quotes, - STATE(3787), 1, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5270), 1, sym__expr_binary_expression, - STATE(3852), 1, + STATE(5271), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, sym__inter_single_quotes, - STATE(3861), 1, - sym__inter_double_quotes, - ACTIONS(6265), 2, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, ACTIONS(6770), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343532,278 +348568,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [121419] = 9, + [126022] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3275), 1, - sym_comment, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1411), 8, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 36, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3148), 1, sym_val_date, + ACTIONS(3150), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [121494] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT2, - STATE(3276), 1, - sym_comment, - ACTIONS(1249), 2, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1243), 7, - anon_sym_DOLLAR, - anon_sym_DOT, - anon_sym_not, + ACTIONS(4924), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1245), 18, - anon_sym_LBRACK, + ACTIONS(6762), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_null, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3370), 1, + sym_comment, + STATE(4528), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5290), 1, + sym__expr_binary_expression, + STATE(5306), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1409), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [121567] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3277), 1, - sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 40, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [121634] = 34, + STATE(5197), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5304), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [126147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(3136), 1, + anon_sym_null, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, - aux_sym_unquoted_token1, - STATE(3278), 1, + STATE(3371), 1, sym_comment, - STATE(5127), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(5428), 1, + STATE(4695), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(4732), 1, sym_val_number, - STATE(6406), 1, - sym_unquoted, - STATE(6449), 1, - sym__expr_binary_expression, - STATE(6462), 1, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, - sym__str_double_quotes, - STATE(6490), 1, + STATE(5260), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(5311), 1, + sym__expr_binary_expression, + STATE(5312), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6770), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343816,149 +348750,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [121759] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3279), 1, - sym_comment, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 38, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [121830] = 34, + [126272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, + ACTIONS(3160), 1, aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(4918), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(4924), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6766), 1, anon_sym_PLUS, - ACTIONS(6740), 1, + ACTIONS(6768), 1, anon_sym_not, - STATE(3280), 1, + STATE(3372), 1, sym_comment, - STATE(4550), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(4732), 1, sym_val_number, - STATE(5122), 1, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, sym__expr_unary_minus, - STATE(5187), 1, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5324), 1, sym__expr_binary_expression, - STATE(5188), 1, + STATE(5329), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, - sym__inter_double_quotes, - STATE(5354), 1, + STATE(5363), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -343971,155 +348841,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [121955] = 13, + [126397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6778), 1, - anon_sym_in, - STATE(3281), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6790), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 29, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [122038] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, - anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, - aux_sym_unquoted_token1, - STATE(3282), 1, + STATE(3373), 1, sym_comment, - STATE(5127), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(5428), 1, + STATE(4695), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(4732), 1, sym_val_number, - STATE(6397), 1, - sym__expr_binary_expression, - STATE(6462), 1, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, sym__expr_unary_minus, - STATE(6473), 1, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5334), 1, + sym__expr_binary_expression, + STATE(5335), 1, sym_unquoted, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5363), 1, sym__str_double_quotes, - STATE(6490), 1, - sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6770), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344132,85 +348932,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [122163] = 34, + [126522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(3136), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(3148), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(3154), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, + ACTIONS(3160), 1, aux_sym_unquoted_token1, - ACTIONS(4955), 1, + ACTIONS(4918), 1, anon_sym_DASH, - ACTIONS(4961), 1, + ACTIONS(4924), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6762), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6764), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6766), 1, anon_sym_PLUS, - ACTIONS(6740), 1, + ACTIONS(6768), 1, anon_sym_not, - STATE(3283), 1, + STATE(3374), 1, sym_comment, - STATE(4550), 1, + STATE(4528), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(4732), 1, sym_val_number, - STATE(5122), 1, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, sym__expr_unary_minus, - STATE(5189), 1, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5341), 1, sym__expr_binary_expression, - STATE(5190), 1, + STATE(5344), 1, sym_unquoted, - STATE(5320), 1, - sym__inter_single_quotes, - STATE(5322), 1, - sym__inter_double_quotes, - STATE(5354), 1, + STATE(5363), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(3152), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, + ACTIONS(3146), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(5197), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(5304), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344223,150 +349023,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [122288] = 8, + [126647] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3284), 1, - sym_comment, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 8, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 38, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(3124), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3130), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3136), 1, anon_sym_null, + ACTIONS(3148), 1, + sym_val_date, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3154), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3156), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3160), 1, + aux_sym_unquoted_token1, + ACTIONS(4918), 1, + anon_sym_DASH, + ACTIONS(4924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6762), 1, + anon_sym_LPAREN, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + anon_sym_PLUS, + ACTIONS(6768), 1, + anon_sym_not, + STATE(3375), 1, + sym_comment, + STATE(4528), 1, + sym__val_number_decimal, + STATE(4695), 1, + sym__var, + STATE(4732), 1, + sym_val_number, + STATE(4741), 1, + sym__val_number, + STATE(5198), 1, + sym__expr_unary_minus, + STATE(5260), 1, + sym__inter_double_quotes, + STATE(5346), 1, + sym__expr_binary_expression, + STATE(5347), 1, + sym_unquoted, + STATE(5363), 1, + sym__str_double_quotes, + STATE(5368), 1, + sym__inter_single_quotes, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, + ACTIONS(3152), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3146), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6770), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6772), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [122361] = 34, + STATE(5197), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5304), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [126772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(6650), 1, anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(6652), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6780), 1, + anon_sym_PLUS, + ACTIONS(6782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(2689), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(377), 1, sym__var, - STATE(2970), 1, + STATE(459), 1, sym_val_number, - STATE(2996), 1, + STATE(460), 1, sym__val_number, - STATE(3285), 1, - sym_comment, - STATE(3731), 1, - sym_unquoted, - STATE(3747), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(3754), 1, - sym__str_double_quotes, - STATE(3780), 1, + STATE(624), 1, sym__expr_binary_expression, - STATE(3852), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(628), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(641), 1, + sym__str_double_quotes, + STATE(649), 1, + sym_unquoted, + STATE(3376), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(6666), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344379,214 +349205,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [122486] = 11, + [126897] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3286), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_in, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1413), 32, + ACTIONS(6636), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6640), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6644), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [122565] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6824), 1, - sym__entry_separator, - STATE(3287), 1, - sym_comment, - ACTIONS(6822), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [122630] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, - anon_sym_DASH, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6718), 1, - anon_sym_not, - ACTIONS(6722), 1, + ACTIONS(6782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(3288), 1, - sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(377), 1, sym__var, - STATE(5363), 1, + STATE(459), 1, sym_val_number, - STATE(5999), 1, - sym_unquoted, - STATE(6000), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(460), 1, + sym__val_number, + STATE(608), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(627), 1, + sym__inter_single_quotes, + STATE(628), 1, + sym__inter_double_quotes, + STATE(641), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(651), 1, + sym__expr_binary_expression, + STATE(652), 1, + sym_unquoted, + STATE(3377), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344599,85 +349296,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [122755] = 34, + [127022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(942), 1, - sym_unquoted, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(953), 1, - sym__expr_binary_expression, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(3289), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(653), 1, + sym__expr_binary_expression, + STATE(654), 1, + sym_unquoted, + STATE(3378), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344690,148 +349387,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [122880] = 6, + [127147] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3290), 1, - sym_comment, - ACTIONS(1305), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(6829), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(6826), 20, + ACTIONS(6636), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6640), 1, anon_sym_DOLLAR, + ACTIONS(6644), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1307), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [122949] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(95), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, - anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, - anon_sym_DASH, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6718), 1, - anon_sym_not, - ACTIONS(6722), 1, + ACTIONS(6782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(3291), 1, - sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(377), 1, sym__var, - STATE(5363), 1, + STATE(459), 1, sym_val_number, - STATE(6003), 1, - sym_unquoted, - STATE(6004), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, - sym__inter_single_quotes, - STATE(6029), 1, + STATE(460), 1, + sym__val_number, + STATE(608), 1, sym__expr_unary_minus, - STATE(6032), 1, + STATE(627), 1, + sym__inter_single_quotes, + STATE(628), 1, + sym__inter_double_quotes, + STATE(641), 1, sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(655), 1, + sym__expr_binary_expression, + STATE(656), 1, + sym_unquoted, + STATE(3379), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344844,85 +349478,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123074] = 34, + [127272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(941), 1, - sym_unquoted, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(973), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(657), 1, sym__expr_binary_expression, - STATE(3292), 1, + STATE(659), 1, + sym_unquoted, + STATE(3380), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -344935,146 +349569,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123199] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6834), 1, - sym__entry_separator, - STATE(3293), 1, - sym_comment, - ACTIONS(6832), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [123264] = 34, + [127397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(940), 1, - sym_unquoted, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(969), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(660), 1, sym__expr_binary_expression, - STATE(3294), 1, + STATE(661), 1, + sym_unquoted, + STATE(3381), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345087,146 +349660,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123389] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3295), 1, - sym_comment, - ACTIONS(1294), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [123454] = 34, + [127522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6740), 1, - anon_sym_not, - STATE(3296), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6786), 1, + aux_sym_unquoted_token1, + STATE(358), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(377), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(459), 1, sym_val_number, - STATE(5122), 1, + STATE(460), 1, + sym__val_number, + STATE(608), 1, sym__expr_unary_minus, - STATE(5191), 1, - sym__expr_binary_expression, - STATE(5192), 1, - sym_unquoted, - STATE(5320), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(5354), 1, + STATE(641), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(663), 1, + sym__expr_binary_expression, + STATE(664), 1, + sym_unquoted, + STATE(3382), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6666), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6660), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345239,85 +349751,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123579] = 34, + [127647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(938), 1, - sym_unquoted, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(968), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(665), 1, sym__expr_binary_expression, - STATE(3297), 1, + STATE(666), 1, + sym_unquoted, + STATE(3383), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345330,85 +349842,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123704] = 34, + [127772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(935), 1, - sym__str_double_quotes, - STATE(937), 1, - sym_unquoted, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(966), 1, - sym__expr_binary_expression, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(3298), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(667), 1, + sym__expr_binary_expression, + STATE(668), 1, + sym_unquoted, + STATE(3384), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345421,85 +349933,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123829] = 34, + [127897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(934), 1, - sym_unquoted, - STATE(935), 1, - sym__str_double_quotes, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(960), 1, - sym__expr_binary_expression, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(3299), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(669), 1, + sym__expr_binary_expression, + STATE(671), 1, + sym_unquoted, + STATE(3385), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345512,85 +350024,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [123954] = 34, + [128022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(6334), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(6338), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, + anon_sym_null, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(6360), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6364), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6366), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6746), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6748), 1, + ACTIONS(6776), 1, anon_sym_DASH, - ACTIONS(6750), 1, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6752), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6754), 1, - anon_sym_not, - ACTIONS(6756), 1, - anon_sym_null, - ACTIONS(6760), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6786), 1, aux_sym_unquoted_token1, - STATE(793), 1, + STATE(358), 1, sym__val_number_decimal, - STATE(830), 1, + STATE(377), 1, sym__var, - STATE(835), 1, + STATE(459), 1, sym_val_number, - STATE(837), 1, + STATE(460), 1, sym__val_number, - STATE(933), 1, - sym_unquoted, - STATE(935), 1, - sym__str_double_quotes, - STATE(950), 1, + STATE(608), 1, sym__expr_unary_minus, - STATE(958), 1, - sym__expr_binary_expression, - STATE(965), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(3300), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(672), 1, + sym__expr_binary_expression, + STATE(673), 1, + sym_unquoted, + STATE(3386), 1, sym_comment, - ACTIONS(6362), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6758), 2, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(6352), 3, + ACTIONS(6666), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6356), 3, + ACTIONS(6660), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6762), 3, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(932), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(936), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345603,85 +350115,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124079] = 34, + [128147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6636), 1, anon_sym_LBRACK, - ACTIONS(3505), 1, + ACTIONS(6640), 1, anon_sym_DOLLAR, - ACTIONS(3511), 1, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(3517), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(3531), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(3535), 1, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3537), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3541), 1, - aux_sym_unquoted_token1, - ACTIONS(4955), 1, - anon_sym_DASH, - ACTIONS(4961), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6734), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(6736), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(6738), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(6740), 1, - anon_sym_not, - STATE(3301), 1, - sym_comment, - STATE(4550), 1, + ACTIONS(6782), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6786), 1, + aux_sym_unquoted_token1, + STATE(358), 1, sym__val_number_decimal, - STATE(4690), 1, + STATE(377), 1, sym__var, - STATE(4862), 1, - sym__val_number, - STATE(4866), 1, + STATE(459), 1, sym_val_number, - STATE(5122), 1, + STATE(460), 1, + sym__val_number, + STATE(608), 1, sym__expr_unary_minus, - STATE(5193), 1, - sym__expr_binary_expression, - STATE(5194), 1, - sym_unquoted, - STATE(5320), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(5322), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(5354), 1, + STATE(641), 1, sym__str_double_quotes, - ACTIONS(3519), 2, + STATE(674), 1, + sym__expr_binary_expression, + STATE(675), 1, + sym_unquoted, + STATE(3387), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(3533), 2, + ACTIONS(6666), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3527), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6742), 3, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6744), 3, + ACTIONS(6660), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5165), 4, + STATE(614), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5262), 12, + STATE(612), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -345694,89 +350206,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124204] = 35, + [128272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, + ACTIONS(6636), 1, + anon_sym_LBRACK, + ACTIONS(6640), 1, + anon_sym_DOLLAR, + ACTIONS(6644), 1, + anon_sym_LBRACE, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(6652), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(6662), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(6664), 1, + anon_sym_DQUOTE, + ACTIONS(6668), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(6670), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(6774), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5648), 1, + ACTIONS(6776), 1, + anon_sym_DASH, + ACTIONS(6778), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(6780), 1, anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, + ACTIONS(6782), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(3302), 1, - sym_comment, - STATE(5217), 1, + ACTIONS(6786), 1, + aux_sym_unquoted_token1, + STATE(358), 1, + sym__val_number_decimal, + STATE(377), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(459), 1, sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(460), 1, + sym__val_number, + STATE(608), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(627), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(628), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(641), 1, + sym__str_double_quotes, + STATE(676), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7974), 1, - sym__expression, - ACTIONS(3816), 2, + STATE(678), 1, + sym_unquoted, + STATE(3388), 1, + sym_comment, + ACTIONS(6654), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6666), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6658), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6660), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6784), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(614), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(612), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -345786,89 +350297,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124331] = 35, + [128397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6838), 1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6840), 1, + ACTIONS(6790), 1, anon_sym_DASH, - ACTIONS(6842), 1, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6844), 1, + ACTIONS(6794), 1, anon_sym_PLUS, - ACTIONS(6846), 1, + ACTIONS(6796), 1, aux_sym__val_number_decimal_token1, - STATE(3303), 1, + ACTIONS(6800), 1, + aux_sym_unquoted_token1, + STATE(3389), 1, sym_comment, - STATE(4325), 1, + STATE(5235), 1, sym__var, - STATE(4389), 1, + STATE(5307), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(5642), 1, sym_val_number, - STATE(4448), 1, + STATE(5646), 1, sym__val_number, - STATE(4529), 1, - sym_val_variable, - STATE(4555), 1, - sym_expr_parenthesized, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(4720), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6125), 1, + sym_unquoted, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, sym__expr_unary_minus, - STATE(6680), 1, + STATE(6420), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7743), 1, - sym__expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5906), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(4721), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5900), 6, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4655), 11, + STATE(6122), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6172), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -345878,271 +350388,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124458] = 4, + [128522] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3304), 1, - sym_comment, - ACTIONS(1393), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1395), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3027), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [124523] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3305), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1243), 6, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1245), 20, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, + ACTIONS(5584), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1409), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [124594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3306), 1, - sym_comment, - ACTIONS(990), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(992), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6788), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [124659] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_LBRACK, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6253), 1, + ACTIONS(6790), 1, anon_sym_DASH, - ACTIONS(6255), 1, - anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(6792), 1, + anon_sym_DOT, + ACTIONS(6794), 1, anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, - anon_sym_null, - ACTIONS(6267), 1, + ACTIONS(6796), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, - sym_val_date, - ACTIONS(6277), 1, - anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, - anon_sym_LPAREN, - ACTIONS(6768), 1, - anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(2689), 1, - sym__val_number_decimal, - STATE(2888), 1, + STATE(3390), 1, + sym_comment, + STATE(5235), 1, sym__var, - STATE(2970), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(2996), 1, + STATE(5646), 1, sym__val_number, - STATE(3307), 1, - sym_comment, - STATE(3734), 1, - sym_unquoted, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(3779), 1, - sym__expr_binary_expression, - STATE(3852), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6127), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6421), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346155,85 +350479,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124784] = 34, + [128647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6263), 1, - anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, - sym_val_date, - ACTIONS(6277), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(2689), 1, - sym__val_number_decimal, - STATE(2888), 1, + STATE(3391), 1, + sym_comment, + STATE(5235), 1, sym__var, - STATE(2970), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(2996), 1, + STATE(5646), 1, sym__val_number, - STATE(3308), 1, - sym_comment, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(3777), 1, - sym__expr_binary_expression, - STATE(3805), 1, - sym_unquoted, - STATE(3852), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6129), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6422), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346246,207 +350570,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [124909] = 4, + [128772] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1300), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3027), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [124974] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3310), 1, - sym_comment, - ACTIONS(990), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 42, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5584), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [125039] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_DOLLAR, - ACTIONS(6059), 1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6790), 1, anon_sym_DASH, - ACTIONS(6061), 1, - anon_sym_LBRACE, - ACTIONS(6065), 1, + ACTIONS(6792), 1, + anon_sym_DOT, + ACTIONS(6794), 1, anon_sym_PLUS, - ACTIONS(6073), 1, + ACTIONS(6796), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, - anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, - anon_sym_LPAREN, - ACTIONS(6810), 1, - anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3311), 1, + STATE(3392), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6372), 1, - sym_unquoted, - STATE(6373), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6131), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6423), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346459,85 +350661,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125164] = 34, + [128897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3312), 1, + STATE(3393), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6359), 1, - sym_unquoted, - STATE(6371), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6136), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6424), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346550,146 +350752,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125289] = 4, + [129022] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, - sym_comment, - ACTIONS(1305), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1307), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3027), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [125354] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3314), 1, + STATE(3394), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, - sym_val_number, - STATE(6343), 1, - sym_unquoted, - STATE(6357), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6140), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6426), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346702,85 +350843,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125479] = 34, + [129147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3315), 1, + STATE(3395), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6338), 1, - sym_unquoted, - STATE(6340), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6141), 1, + sym_unquoted, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6427), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346793,146 +350934,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125604] = 4, + [129272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, - sym_comment, - ACTIONS(1309), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1311), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3027), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [125669] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3317), 1, + STATE(3396), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6319), 1, - sym_unquoted, - STATE(6326), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6145), 1, + sym_unquoted, + STATE(6428), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -346945,85 +351025,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125794] = 34, + [129397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3318), 1, + STATE(3397), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6297), 1, - sym_unquoted, - STATE(6308), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6147), 1, + sym_unquoted, + STATE(6429), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347036,85 +351116,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [125919] = 34, + [129522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, - anon_sym_null, - ACTIONS(5503), 1, - anon_sym_DASH, - ACTIONS(5509), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6794), 1, anon_sym_PLUS, - ACTIONS(6718), 1, - anon_sym_not, - ACTIONS(6722), 1, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3319), 1, + STATE(3398), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, - sym__val_number_decimal, - STATE(5032), 1, + STATE(5235), 1, sym__var, - STATE(5363), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6005), 1, - sym_unquoted, - STATE(6006), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(6148), 1, + sym_unquoted, + STATE(6430), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347127,146 +351207,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126044] = 4, + [129647] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3320), 1, - sym_comment, - ACTIONS(1313), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1315), 42, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5584), 1, anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, + aux_sym_unquoted_token1, + STATE(3399), 1, + sym_comment, + STATE(5235), 1, + sym__var, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, + sym_val_number, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6153), 1, + sym_unquoted, + STATE(6431), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [126109] = 34, + STATE(6122), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6172), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [129772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, - sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6812), 1, - anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3321), 1, + STATE(3400), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(5235), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(6288), 1, - sym_unquoted, - STATE(6294), 1, - sym__expr_binary_expression, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6155), 1, + sym_unquoted, + STATE(6433), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347279,85 +351389,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126234] = 34, + [129897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6263), 1, - anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, - sym_val_date, - ACTIONS(6277), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6790), 1, + anon_sym_DASH, + ACTIONS(6792), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6794), 1, + anon_sym_PLUS, + ACTIONS(6796), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(2689), 1, - sym__val_number_decimal, - STATE(2888), 1, + STATE(3401), 1, + sym_comment, + STATE(5235), 1, sym__var, - STATE(2970), 1, + STATE(5307), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(2996), 1, + STATE(5646), 1, sym__val_number, - STATE(3322), 1, - sym_comment, - STATE(3739), 1, - sym_unquoted, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(3852), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6126), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6157), 1, + sym_unquoted, + STATE(6434), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6798), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347370,85 +351480,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126359] = 34, + [130022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6772), 1, - aux_sym_unquoted_token1, - STATE(2689), 1, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_not, + STATE(3402), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(5147), 1, sym__var, - STATE(2970), 1, + STATE(5426), 1, sym_val_number, - STATE(2996), 1, + STATE(5653), 1, sym__val_number, - STATE(3323), 1, - sym_comment, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(3762), 1, - sym_unquoted, - STATE(3773), 1, - sym__expr_binary_expression, - STATE(3852), 1, + STATE(6093), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6094), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6134), 1, + sym__expr_binary_expression, + STATE(6154), 1, + sym_unquoted, + STATE(6186), 1, + sym__expr_unary_minus, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347461,85 +351571,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126484] = 34, + [130147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6772), 1, - aux_sym_unquoted_token1, - STATE(2689), 1, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_not, + STATE(3403), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(5147), 1, sym__var, - STATE(2970), 1, + STATE(5426), 1, sym_val_number, - STATE(2996), 1, + STATE(5653), 1, sym__val_number, - STATE(3324), 1, - sym_comment, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(3767), 1, - sym__expr_binary_expression, - STATE(3770), 1, - sym_unquoted, - STATE(3852), 1, + STATE(6093), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6094), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6233), 1, + sym__expr_binary_expression, + STATE(6239), 1, + sym_unquoted, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347552,207 +351662,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126609] = 4, + [130272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3325), 1, - sym_comment, - ACTIONS(1288), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1290), 41, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3361), 1, anon_sym_DOLLAR, + ACTIONS(3367), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3373), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3383), 1, sym_val_date, + ACTIONS(3385), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [126674] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3326), 1, - sym_comment, - ACTIONS(1102), 13, - anon_sym_GT, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1104), 41, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6802), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6804), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_not, + STATE(3404), 1, + sym_comment, + STATE(5055), 1, + sym__val_number_decimal, + STATE(5147), 1, + sym__var, + STATE(5426), 1, + sym_val_number, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6150), 1, + sym_unquoted, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6240), 1, + sym__expr_binary_expression, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6463), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [126739] = 34, + STATE(6123), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6113), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [130397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3327), 1, + STATE(3405), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(5147), 1, sym__var, - STATE(5363), 1, + STATE(5426), 1, sym_val_number, - STATE(5981), 1, - sym__expr_binary_expression, - STATE(6007), 1, - sym_unquoted, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6186), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + STATE(6221), 1, + sym__expr_binary_expression, + STATE(6237), 1, + sym_unquoted, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347765,85 +351844,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126864] = 34, + [130522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5305), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, - anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, - aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3406), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(2302), 1, - sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, - sym_val_number, - STATE(2562), 1, - sym_unquoted, - STATE(2573), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5147), 1, + sym__var, + STATE(5426), 1, + sym_val_number, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(6094), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3328), 1, - sym_comment, - ACTIONS(6862), 2, + STATE(6171), 1, + sym__expr_binary_expression, + STATE(6182), 1, + sym_unquoted, + STATE(6186), 1, + sym__expr_unary_minus, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6872), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6463), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347856,85 +351935,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [126989] = 34, + [130647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, - aux_sym_unquoted_token1, - STATE(3329), 1, + STATE(3407), 1, sym_comment, - STATE(5127), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5428), 1, + STATE(5147), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5426), 1, sym_val_number, - STATE(6256), 1, - sym__expr_binary_expression, - STATE(6259), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6083), 1, sym_unquoted, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, + STATE(6093), 1, sym__inter_single_quotes, - STATE(6488), 1, - sym__str_double_quotes, - STATE(6490), 1, + STATE(6094), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6241), 1, + sym__expr_binary_expression, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -347947,85 +352026,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127114] = 34, + [130772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5305), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, - anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, - aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3408), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(5147), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5426), 1, sym_val_number, - STATE(2569), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(6094), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(2621), 1, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6187), 1, sym_unquoted, - STATE(3330), 1, - sym_comment, - ACTIONS(6862), 2, + STATE(6227), 1, + sym__expr_binary_expression, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6872), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6463), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348038,85 +352117,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127239] = 34, + [130897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(3373), 1, + anon_sym_null, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6814), 1, - anon_sym_null, - ACTIONS(6820), 1, - aux_sym_unquoted_token1, - STATE(3331), 1, + STATE(3409), 1, sym_comment, - STATE(5127), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5428), 1, + STATE(5147), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(5426), 1, sym_val_number, - STATE(6402), 1, - sym__expr_binary_expression, - STATE(6409), 1, - sym_unquoted, - STATE(6462), 1, - sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6816), 2, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(6247), 1, + sym__expr_binary_expression, + STATE(6249), 1, + sym_unquoted, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348129,85 +352208,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127364] = 34, + [131022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3332), 1, + STATE(3410), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(5147), 1, sym__var, - STATE(5363), 1, + STATE(5426), 1, sym_val_number, - STATE(6010), 1, - sym_unquoted, - STATE(6011), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6137), 1, + sym__expr_binary_expression, + STATE(6184), 1, + sym_unquoted, + STATE(6186), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348220,85 +352299,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127489] = 34, + [131147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3333), 1, + STATE(3411), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(5147), 1, sym__var, - STATE(5363), 1, + STATE(5426), 1, sym_val_number, - STATE(6012), 1, - sym_unquoted, - STATE(6013), 1, + STATE(5653), 1, + sym__val_number, + STATE(6076), 1, sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6087), 1, + sym_unquoted, + STATE(6093), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6186), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348311,85 +352390,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127614] = 34, + [131272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(93), 1, - sym_val_date, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1745), 1, + ACTIONS(3357), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(3587), 1, + ACTIONS(3367), 1, + anon_sym_LBRACE, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(5503), 1, + ACTIONS(3383), 1, + sym_val_date, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, anon_sym_DASH, - ACTIONS(5509), 1, + ACTIONS(5851), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6714), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6716), 1, + ACTIONS(6806), 1, anon_sym_PLUS, - ACTIONS(6718), 1, + ACTIONS(6808), 1, anon_sym_not, - ACTIONS(6722), 1, - aux_sym_unquoted_token1, - STATE(3334), 1, + STATE(3412), 1, sym_comment, - STATE(4763), 1, - sym__val_number, - STATE(4782), 1, + STATE(5055), 1, sym__val_number_decimal, - STATE(5032), 1, + STATE(5147), 1, sym__var, - STATE(5363), 1, + STATE(5426), 1, sym_val_number, - STATE(6008), 1, - sym_unquoted, - STATE(6014), 1, - sym__expr_binary_expression, - STATE(6023), 1, - sym__inter_double_quotes, - STATE(6024), 1, + STATE(5653), 1, + sym__val_number, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6093), 1, sym__inter_single_quotes, - STATE(6029), 1, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6100), 1, + sym__expr_binary_expression, + STATE(6103), 1, + sym_unquoted, + STATE(6186), 1, sym__expr_unary_minus, - STATE(6032), 1, - sym__str_double_quotes, - ACTIONS(97), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3589), 2, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(87), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(91), 3, + ACTIONS(3387), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6720), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6017), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6035), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348402,89 +352481,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127739] = 35, + [131397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6882), 1, - anon_sym_LPAREN, - ACTIONS(6884), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6886), 1, - anon_sym_DASH, - ACTIONS(6888), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6890), 1, - anon_sym_DOT, - ACTIONS(6892), 1, - anon_sym_PLUS, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(6900), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6906), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6908), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(394), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, + anon_sym_LPAREN, + ACTIONS(6804), 1, + anon_sym_DOT, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_not, + STATE(3413), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(413), 1, + STATE(5147), 1, sym__var, - STATE(481), 1, + STATE(5426), 1, sym_val_number, - STATE(482), 1, + STATE(5653), 1, sym__val_number, - STATE(560), 1, - sym_expr_parenthesized, - STATE(571), 1, - sym_val_variable, - STATE(608), 1, - sym__inter_double_quotes, - STATE(646), 1, - sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, + STATE(6080), 1, sym__str_double_quotes, - STATE(2044), 1, - sym__expression, - STATE(2047), 1, - sym_val_range, - STATE(3335), 1, - sym_comment, - STATE(6649), 1, + STATE(6093), 1, + sym__inter_single_quotes, + STATE(6094), 1, + sym__inter_double_quotes, + STATE(6120), 1, sym__expr_binary_expression, - ACTIONS(6898), 2, + STATE(6165), 1, + sym_unquoted, + STATE(6186), 1, + sym__expr_unary_minus, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6904), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(663), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(6902), 6, + ACTIONS(6463), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(645), 11, + STATE(6123), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6113), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -348494,85 +352572,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127866] = 34, + [131522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(2898), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2900), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, - anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(3367), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(3373), 1, anon_sym_null, - ACTIONS(6267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(3383), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(5837), 1, + anon_sym_DASH, + ACTIONS(5851), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6802), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6804), 1, anon_sym_DOT, - ACTIONS(6772), 1, - aux_sym_unquoted_token1, - STATE(2689), 1, + ACTIONS(6806), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_not, + STATE(3414), 1, + sym_comment, + STATE(5055), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(5147), 1, sym__var, - STATE(2970), 1, + STATE(5426), 1, sym_val_number, - STATE(2996), 1, + STATE(5653), 1, sym__val_number, - STATE(3336), 1, - sym_comment, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, - sym__str_double_quotes, - STATE(3763), 1, + STATE(6062), 1, sym__expr_binary_expression, - STATE(3782), 1, + STATE(6080), 1, + sym__str_double_quotes, + STATE(6082), 1, sym_unquoted, - STATE(3852), 1, + STATE(6093), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(6094), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, + STATE(6186), 1, + sym__expr_unary_minus, + ACTIONS(3375), 2, anon_sym_true, anon_sym_false, - ACTIONS(6279), 2, + ACTIONS(3387), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(3381), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6463), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6810), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(6123), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(6113), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348585,85 +352663,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [127991] = 34, + [131647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(6822), 1, + anon_sym_DOT, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6261), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6263), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6267), 1, + ACTIONS(6832), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, - sym_val_date, - ACTIONS(6277), 1, - anon_sym_DQUOTE, - ACTIONS(6281), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, - anon_sym_LPAREN, - ACTIONS(6768), 1, - anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(2689), 1, - sym__val_number_decimal, - STATE(2888), 1, + STATE(3415), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2970), 1, + STATE(4393), 1, sym_val_number, - STATE(2996), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(3337), 1, - sym_comment, - STATE(3747), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(3754), 1, - sym__str_double_quotes, - STATE(3761), 1, - sym__expr_binary_expression, - STATE(3788), 1, + STATE(4607), 1, sym_unquoted, - STATE(3852), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6279), 2, + STATE(4983), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348676,85 +352754,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128116] = 34, + [131772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3338), 1, + STATE(3416), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5373), 1, - sym__expr_binary_expression, - STATE(5374), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4608), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(4986), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348767,85 +352845,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128241] = 34, + [131897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3339), 1, + STATE(3417), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5375), 1, - sym__expr_binary_expression, - STATE(5376), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4609), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(4991), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348858,85 +352936,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128366] = 34, + [132022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6818), 1, + anon_sym_DASH, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6860), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(2141), 1, - sym__val_number_decimal, - STATE(2302), 1, + STATE(3418), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(4393), 1, sym_val_number, - STATE(2539), 1, - sym_unquoted, - STATE(2564), 1, - sym__expr_binary_expression, - STATE(2574), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(2583), 1, + STATE(4610), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3340), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(4998), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -348949,85 +353027,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128491] = 34, + [132147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3341), 1, + STATE(3419), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5377), 1, - sym__expr_binary_expression, - STATE(5378), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4611), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(4999), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349040,85 +353118,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128616] = 34, + [132272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3342), 1, + STATE(3420), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5379), 1, - sym__expr_binary_expression, - STATE(5380), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4612), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5002), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349131,85 +353209,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128741] = 34, + [132397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, - anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6818), 1, + anon_sym_DASH, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6824), 1, + anon_sym_PLUS, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6814), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3343), 1, + STATE(3421), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(4251), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(4393), 1, sym_val_number, - STATE(6415), 1, - sym__expr_binary_expression, - STATE(6430), 1, - sym_unquoted, - STATE(6462), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(4613), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, + STATE(5004), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6816), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349222,85 +353300,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128866] = 34, + [132522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6818), 1, + anon_sym_DASH, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6860), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(2141), 1, - sym__val_number_decimal, - STATE(2302), 1, + STATE(3422), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(4393), 1, sym_val_number, - STATE(2542), 1, - sym_unquoted, - STATE(2563), 1, - sym__expr_binary_expression, - STATE(2574), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(2583), 1, + STATE(4614), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3344), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(5006), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349313,85 +353391,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [128991] = 34, + [132647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3345), 1, + STATE(3423), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5382), 1, - sym__expr_binary_expression, - STATE(5383), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4615), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5012), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349404,85 +353482,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129116] = 34, + [132772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3346), 1, + STATE(3424), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5386), 1, - sym__expr_binary_expression, - STATE(5387), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4616), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5014), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349495,85 +353573,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129241] = 34, + [132897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, + ACTIONS(6818), 1, anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6920), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3347), 1, + STATE(3425), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, - sym__val_number_decimal, - STATE(4856), 1, + STATE(4251), 1, sym__var, - STATE(5033), 1, + STATE(4393), 1, sym_val_number, - STATE(5153), 1, - sym__str_double_quotes, - STATE(5388), 1, - sym__expr_binary_expression, - STATE(5389), 1, - sym_unquoted, - STATE(5678), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5749), 1, + STATE(4617), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5018), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349586,85 +353664,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129366] = 34, + [133022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_DOLLAR, - ACTIONS(6059), 1, - anon_sym_DASH, - ACTIONS(6061), 1, - anon_sym_LBRACE, - ACTIONS(6065), 1, - anon_sym_PLUS, - ACTIONS(6073), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6083), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6085), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6089), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6091), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6808), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6810), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6818), 1, + anon_sym_DASH, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6812), 1, + ACTIONS(6824), 1, + anon_sym_PLUS, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6814), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6820), 1, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(3348), 1, + STATE(3426), 1, sym_comment, - STATE(5127), 1, - sym__val_number_decimal, - STATE(5428), 1, + STATE(4251), 1, sym__var, - STATE(5827), 1, - sym__val_number, - STATE(5828), 1, + STATE(4393), 1, sym_val_number, - STATE(6432), 1, - sym_unquoted, - STATE(6452), 1, - sym__expr_binary_expression, - STATE(6462), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6482), 1, - sym__inter_single_quotes, - STATE(6488), 1, + STATE(4618), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(6490), 1, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, sym__inter_double_quotes, - ACTIONS(6087), 2, + STATE(5029), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6816), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(6075), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6081), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6818), 3, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6471), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6285), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349677,85 +353755,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129491] = 34, + [133147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6818), 1, + anon_sym_DASH, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6822), 1, anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(6824), 1, anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6860), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6832), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(2141), 1, - sym__val_number_decimal, - STATE(2302), 1, + STATE(3427), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(4393), 1, sym_val_number, - STATE(2546), 1, - sym_unquoted, - STATE(2561), 1, - sym__expr_binary_expression, - STATE(2574), 1, + STATE(4399), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(2583), 1, + STATE(4619), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3349), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(5034), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6834), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349768,207 +353846,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129616] = 4, + [133272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3350), 1, - sym_comment, - ACTIONS(1294), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1296), 41, + ACTIONS(5905), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5909), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [129681] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3351), 1, - sym_comment, - ACTIONS(1298), 13, - anon_sym_GT, + ACTIONS(5911), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5913), 1, + anon_sym_LBRACE, + ACTIONS(5917), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5925), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1300), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5935), 1, sym_val_date, + ACTIONS(5937), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [129746] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(5941), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5943), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, - anon_sym_LBRACE, - ACTIONS(6854), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6856), 1, - anon_sym_PLUS, - ACTIONS(6858), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6860), 1, + ACTIONS(6844), 1, anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3428), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(4779), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5016), 1, sym_val_number, - STATE(2560), 1, - sym__expr_binary_expression, - STATE(2571), 1, - sym_unquoted, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(5559), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3352), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5737), 1, + sym__expr_binary_expression, + STATE(5738), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -349981,85 +353937,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129871] = 34, + [133397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5905), 1, + anon_sym_LBRACK, + ACTIONS(5909), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(5911), 1, anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, - anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(5917), 1, anon_sym_PLUS, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(6870), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(6874), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6838), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_DOT, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3429), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(4779), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5016), 1, sym_val_number, - STATE(2558), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, sym__inter_single_quotes, - STATE(2587), 1, - sym_unquoted, - STATE(2592), 1, + STATE(5559), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3353), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5739), 1, + sym__expr_binary_expression, + STATE(5740), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350072,146 +354028,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [129996] = 4, + [133522] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(1317), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1319), 42, + ACTIONS(5905), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(5909), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [130061] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3355), 1, + STATE(3430), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5390), 1, - sym__expr_binary_expression, - STATE(5391), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5741), 1, + sym__expr_binary_expression, + STATE(5742), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350224,85 +354119,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130186] = 34, + [133647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6247), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(5909), 1, anon_sym_DOLLAR, - ACTIONS(6253), 1, + ACTIONS(5911), 1, anon_sym_DASH, - ACTIONS(6255), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(5917), 1, anon_sym_PLUS, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(6263), 1, - anon_sym_null, - ACTIONS(6267), 1, + ACTIONS(5925), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6275), 1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(6277), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(6281), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6283), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6766), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2689), 1, + STATE(3431), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2888), 1, + STATE(4779), 1, sym__var, - STATE(2970), 1, + STATE(5016), 1, sym_val_number, - STATE(2996), 1, + STATE(5080), 1, sym__val_number, - STATE(3356), 1, - sym_comment, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(3754), 1, + STATE(5520), 1, sym__str_double_quotes, - STATE(3760), 1, - sym__expr_binary_expression, - STATE(3796), 1, - sym_unquoted, - STATE(3852), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(3861), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(6265), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6279), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5743), 1, + sym__expr_binary_expression, + STATE(5744), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6269), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6273), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6770), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3740), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3822), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350315,146 +354210,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130311] = 4, + [133772] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3357), 1, - sym_comment, - ACTIONS(1309), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1311), 41, + ACTIONS(5905), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5909), 1, anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [130376] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(129), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3358), 1, + STATE(3432), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5392), 1, - sym__expr_binary_expression, - STATE(5393), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5745), 1, + sym__expr_binary_expression, + STATE(5746), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350467,85 +354301,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130501] = 34, + [133897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3359), 1, + STATE(3433), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5395), 1, - sym__expr_binary_expression, - STATE(5396), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5747), 1, + sym__expr_binary_expression, + STATE(5749), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350558,85 +354392,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130626] = 34, + [134022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3360), 1, + STATE(3434), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5397), 1, - sym__expr_binary_expression, - STATE(5398), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5750), 1, + sym__expr_binary_expression, + STATE(5751), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350649,150 +354483,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130751] = 4, - ACTIONS(105), 1, + [134147] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, - sym__entry_separator, - STATE(3361), 1, - sym_comment, - ACTIONS(6928), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5905), 1, + anon_sym_LBRACK, + ACTIONS(5909), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5911), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5913), 1, + anon_sym_LBRACE, + ACTIONS(5917), 1, anon_sym_PLUS, + ACTIONS(5925), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [130816] = 35, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6161), 1, - anon_sym_DASH, - ACTIONS(6167), 1, - anon_sym_PLUS, - ACTIONS(6169), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6932), 1, + ACTIONS(6840), 1, anon_sym_DOT, - STATE(3362), 1, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, + aux_sym_unquoted_token1, + STATE(3435), 1, sym_comment, - STATE(4465), 1, + STATE(4630), 1, + sym__val_number_decimal, + STATE(4779), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(5016), 1, sym_val_number, - STATE(5113), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5868), 1, - sym__val_number_decimal, - STATE(6349), 1, - sym_expr_parenthesized, - STATE(6369), 1, - sym_val_variable, - STATE(6834), 1, + STATE(5559), 1, + sym__inter_double_quotes, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5753), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(11043), 1, - sym__expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(5755), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 6, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5744), 11, + STATE(5733), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5798), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -350802,85 +354574,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [130943] = 34, + [134272] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5905), 1, + anon_sym_LBRACK, + ACTIONS(5909), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(5911), 1, anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, - anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(5917), 1, anon_sym_PLUS, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(6870), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(6874), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6838), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_DOT, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3436), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(4779), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5016), 1, sym_val_number, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(5559), 1, sym__inter_double_quotes, - STATE(2593), 1, - sym_unquoted, - STATE(2619), 1, - sym__str_double_quotes, - STATE(2620), 1, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5757), 1, sym__expr_binary_expression, - STATE(3363), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(5759), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350893,85 +354665,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131068] = 34, + [134397] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5905), 1, + anon_sym_LBRACK, + ACTIONS(5909), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(5911), 1, anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, - anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(5917), 1, anon_sym_PLUS, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(6870), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(6874), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6838), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_DOT, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3437), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(4779), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5016), 1, sym_val_number, - STATE(2555), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(5559), 1, sym__inter_double_quotes, - STATE(2611), 1, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5762), 1, + sym__expr_binary_expression, + STATE(5763), 1, sym_unquoted, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3364), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -350984,207 +354756,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131193] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6936), 1, - sym__entry_separator, - STATE(3365), 1, - sym_comment, - ACTIONS(6934), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [131258] = 4, + [134522] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3366), 1, - sym_comment, - ACTIONS(1321), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1323), 42, + ACTIONS(5905), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [131323] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5909), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(5911), 1, anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, - anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(5917), 1, anon_sym_PLUS, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(6870), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(6874), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6838), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_DOT, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + STATE(3438), 1, + sym_comment, + STATE(4630), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(4779), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5016), 1, sym_val_number, - STATE(2554), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, + sym__str_double_quotes, + STATE(5558), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(5559), 1, sym__inter_double_quotes, - STATE(2614), 1, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5764), 1, + sym__expr_binary_expression, + STATE(5765), 1, sym_unquoted, - STATE(2619), 1, - sym__str_double_quotes, - STATE(3367), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5933), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351197,85 +354847,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131448] = 34, + [134647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3368), 1, + STATE(3439), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5399), 1, - sym__expr_binary_expression, - STATE(5400), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5766), 1, + sym__expr_binary_expression, + STATE(5767), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351288,85 +354938,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131573] = 34, + [134772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(5909), 1, + anon_sym_DOLLAR, + ACTIONS(5911), 1, + anon_sym_DASH, + ACTIONS(5913), 1, anon_sym_LBRACE, - ACTIONS(197), 1, + ACTIONS(5917), 1, + anon_sym_PLUS, + ACTIONS(5925), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5935), 1, sym_val_date, - ACTIONS(199), 1, + ACTIONS(5937), 1, anon_sym_DQUOTE, - ACTIONS(203), 1, + ACTIONS(5941), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(5943), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR, - ACTIONS(3746), 1, - anon_sym_null, - ACTIONS(5217), 1, - anon_sym_DASH, - ACTIONS(5223), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - ACTIONS(6918), 1, + ACTIONS(6840), 1, anon_sym_DOT, - ACTIONS(6920), 1, - anon_sym_PLUS, - ACTIONS(6922), 1, + ACTIONS(6842), 1, anon_sym_not, - ACTIONS(6926), 1, + ACTIONS(6844), 1, + anon_sym_null, + ACTIONS(6850), 1, aux_sym_unquoted_token1, - STATE(3369), 1, + STATE(3440), 1, sym_comment, - STATE(4536), 1, - sym__val_number, - STATE(4699), 1, + STATE(4630), 1, sym__val_number_decimal, - STATE(4856), 1, + STATE(4779), 1, sym__var, - STATE(5033), 1, + STATE(5016), 1, sym_val_number, - STATE(5153), 1, + STATE(5080), 1, + sym__val_number, + STATE(5520), 1, sym__str_double_quotes, - STATE(5401), 1, - sym__expr_binary_expression, - STATE(5402), 1, - sym_unquoted, - STATE(5678), 1, - sym__expr_unary_minus, - STATE(5749), 1, + STATE(5558), 1, sym__inter_single_quotes, - STATE(5750), 1, + STATE(5559), 1, sym__inter_double_quotes, - ACTIONS(201), 2, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(5768), 1, + sym__expr_binary_expression, + STATE(5769), 1, + sym_unquoted, + ACTIONS(5939), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3748), 2, + ACTIONS(6846), 2, anon_sym_true, anon_sym_false, - ACTIONS(191), 3, + ACTIONS(5927), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(195), 3, + ACTIONS(5933), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6924), 3, + ACTIONS(6848), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5372), 4, + STATE(5733), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5671), 12, + STATE(5798), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351379,89 +355029,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131698] = 35, + [134897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, anon_sym_DASH, - STATE(3370), 1, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3441), 1, sym_comment, - STATE(5217), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, + STATE(4277), 1, sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4607), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(4858), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7986), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -351471,85 +355120,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131825] = 34, + [135022] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, + anon_sym_DASH, ACTIONS(6854), 1, anon_sym_DOT, ACTIONS(6856), 1, anon_sym_PLUS, ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, - aux_sym_unquoted_token1, - STATE(2141), 1, - sym__val_number_decimal, - STATE(2302), 1, + aux_sym__val_number_decimal_token1, + STATE(3442), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(2552), 1, - sym__expr_binary_expression, - STATE(2574), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(2583), 1, + STATE(4608), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(2644), 1, - sym_unquoted, - STATE(3371), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(4859), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351562,85 +355211,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [131950] = 34, + [135147] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, - anon_sym_DASH, - ACTIONS(5305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, + anon_sym_DASH, ACTIONS(6854), 1, anon_sym_DOT, ACTIONS(6856), 1, anon_sym_PLUS, ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, - aux_sym_unquoted_token1, - STATE(2141), 1, - sym__val_number_decimal, - STATE(2302), 1, + aux_sym__val_number_decimal_token1, + STATE(3443), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(2551), 1, - sym__expr_binary_expression, - STATE(2574), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(2583), 1, + STATE(4609), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(2643), 1, - sym_unquoted, - STATE(3372), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6872), 2, + STATE(4860), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351653,146 +355302,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132075] = 4, + [135272] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3373), 1, - sym_comment, - ACTIONS(1325), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1327), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [132140] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6940), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6958), 1, - sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(320), 1, - sym__val_number_decimal, - STATE(368), 1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3444), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(556), 1, - sym__expr_binary_expression, - STATE(579), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4610), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(590), 1, - sym_unquoted, - STATE(592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3374), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + STATE(4861), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -351805,150 +355393,179 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132265] = 4, + [135397] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3375), 1, - sym_comment, - ACTIONS(1332), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1334), 42, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6820), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3445), 1, + sym_comment, + STATE(4251), 1, + sym__var, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4611), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(4862), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [132330] = 35, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [135522] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, anon_sym_DASH, - STATE(3376), 1, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3446), 1, sym_comment, - STATE(5217), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, + STATE(4277), 1, sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4612), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(4863), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7917), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -351958,85 +355575,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132457] = 34, + [135647] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6940), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6958), 1, - sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(320), 1, - sym__val_number_decimal, - STATE(368), 1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3447), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(566), 1, - sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(588), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4613), 1, sym_unquoted, - STATE(589), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3377), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + STATE(4864), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352049,89 +355666,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132582] = 35, + [135772] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, anon_sym_DASH, - STATE(3378), 1, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3448), 1, sym_comment, - STATE(5217), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, - sym_val_number, - STATE(5563), 1, + STATE(4277), 1, sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4614), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(4865), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7921), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -352141,85 +355757,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132709] = 34, + [135897] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, - anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6982), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3449), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(1381), 1, - sym__expr_binary_expression, - STATE(1385), 1, + STATE(4615), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(3379), 1, - sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6994), 2, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(4866), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352232,87 +355848,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132834] = 35, + [136022] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym_DASH, + ACTIONS(6866), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(6868), 1, anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, + ACTIONS(6870), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(3380), 1, + STATE(3450), 1, sym_comment, - STATE(5217), 1, + STATE(4350), 1, + sym__val_number_decimal, + STATE(4352), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, + STATE(4407), 1, + sym__val_number, + STATE(4486), 1, sym_val_variable, - STATE(6025), 1, + STATE(4519), 1, sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(6711), 1, sym__expr_binary_expression, - STATE(7236), 1, + STATE(7237), 1, sym_val_range, - STATE(8038), 1, + STATE(7576), 1, sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6165), 3, + STATE(4598), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(5656), 6, + ACTIONS(5794), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(4706), 11, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -352324,85 +355940,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [132961] = 34, + [136149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, - anon_sym_LBRACK, - ACTIONS(6384), 1, - anon_sym_DOLLAR, - ACTIONS(6388), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6854), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6856), 1, anon_sym_PLUS, - ACTIONS(7010), 1, - anon_sym_not, - ACTIONS(7012), 1, - anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6858), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, - aux_sym_unquoted_token1, - STATE(772), 1, - sym__val_number_decimal, - STATE(788), 1, + STATE(3451), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(828), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(832), 1, + STATE(4407), 1, sym__val_number, - STATE(856), 1, - sym_unquoted, - STATE(867), 1, - sym__expr_binary_expression, - STATE(868), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(881), 1, + STATE(4617), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(3381), 1, - sym_comment, - ACTIONS(6412), 2, + STATE(4868), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352415,85 +356031,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133086] = 34, + [136274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(6852), 1, anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, - anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6854), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6856), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3382), 1, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3452), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4251), 1, sym__var, - STATE(5445), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(5500), 1, + STATE(4407), 1, sym__val_number, - STATE(6064), 1, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4618), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6095), 1, - sym_unquoted, - STATE(6097), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(4869), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352506,85 +356122,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133211] = 34, + [136399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, - anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6982), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3453), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(1387), 1, - sym__expr_binary_expression, - STATE(1388), 1, + STATE(4619), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(3383), 1, - sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6994), 2, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(4870), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352597,89 +356213,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133336] = 35, + [136524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6037), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6043), 1, + anon_sym_DASH, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, + ACTIONS(6067), 1, + sym_val_date, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(3384), 1, + ACTIONS(6073), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6075), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, + aux_sym_unquoted_token1, + STATE(3454), 1, sym_comment, - STATE(5217), 1, + STATE(5224), 1, + sym__val_number_decimal, + STATE(5395), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5892), 1, sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(6274), 1, + sym__expr_binary_expression, + STATE(6275), 1, + sym_unquoted, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(6859), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(8056), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(6273), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6335), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -352689,85 +356304,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133463] = 34, + [136649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6037), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6045), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6067), 1, + sym_val_date, + ACTIONS(6069), 1, + anon_sym_DQUOTE, + ACTIONS(6073), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6075), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, + ACTIONS(6874), 1, anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(3385), 1, + STATE(3455), 1, sym_comment, - STATE(4928), 1, + STATE(5224), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(5395), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5892), 1, sym_val_number, - STATE(6145), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6276), 1, sym__expr_binary_expression, - STATE(6162), 1, + STATE(6277), 1, + sym_unquoted, + STATE(6373), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(6374), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(6252), 1, - sym_unquoted, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352780,146 +356395,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133588] = 4, + [136774] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3386), 1, - sym_comment, - ACTIONS(1346), 12, - anon_sym_GT, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, + anon_sym_DOLLAR, + ACTIONS(6043), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(6045), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1348), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6067), 1, + sym_val_date, + ACTIONS(6069), 1, + anon_sym_DQUOTE, + ACTIONS(6073), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6075), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6872), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(6874), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, anon_sym_null, + ACTIONS(6884), 1, + aux_sym_unquoted_token1, + STATE(3456), 1, + sym_comment, + STATE(5224), 1, + sym__val_number_decimal, + STATE(5395), 1, + sym__var, + STATE(5892), 1, + sym_val_number, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6278), 1, + sym__expr_binary_expression, + STATE(6279), 1, + sym_unquoted, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, + sym__inter_single_quotes, + STATE(6375), 1, + sym__inter_double_quotes, + ACTIONS(6071), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6880), 2, anon_sym_true, anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [133653] = 34, + STATE(6273), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6335), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [136899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(2755), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, - anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6992), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + STATE(3457), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(5395), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(5892), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(1393), 1, + STATE(6280), 1, sym__expr_binary_expression, - STATE(1394), 1, + STATE(6281), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(3387), 1, - sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6994), 2, + STATE(6375), 1, + sym__inter_double_quotes, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -352932,85 +356577,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133778] = 34, + [137024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6037), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6045), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6067), 1, + sym_val_date, + ACTIONS(6069), 1, + anon_sym_DQUOTE, + ACTIONS(6073), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6075), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, + ACTIONS(6874), 1, anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(3388), 1, + STATE(3458), 1, sym_comment, - STATE(4928), 1, + STATE(5224), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(5395), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5892), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6170), 1, - sym__expr_binary_expression, - STATE(6173), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(6282), 1, + sym__expr_binary_expression, + STATE(6283), 1, + sym_unquoted, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(6219), 1, - sym_unquoted, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353023,85 +356668,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [133903] = 34, + [137149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(1145), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, - anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6960), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(320), 1, + STATE(3459), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5395), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5892), 1, sym_val_number, - STATE(536), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6284), 1, sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(587), 1, + STATE(6285), 1, sym_unquoted, - STATE(589), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3389), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353114,85 +356759,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134028] = 34, + [137274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(1145), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, - anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6960), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(320), 1, + STATE(3460), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5395), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5892), 1, sym_val_number, - STATE(537), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6286), 1, sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(586), 1, + STATE(6287), 1, sym_unquoted, - STATE(589), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3390), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353205,85 +356850,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134153] = 34, + [137399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(2755), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, - anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6992), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + STATE(3461), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(5395), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(5892), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(1396), 1, + STATE(6288), 1, sym__expr_binary_expression, - STATE(1397), 1, + STATE(6289), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(3391), 1, - sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6994), 2, + STATE(6375), 1, + sym__inter_double_quotes, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353296,85 +356941,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134278] = 34, + [137524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(1145), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, - anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6960), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(320), 1, + STATE(3462), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5395), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5892), 1, sym_val_number, - STATE(538), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6290), 1, sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(585), 1, + STATE(6291), 1, sym_unquoted, - STATE(589), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3392), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353387,85 +357032,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134403] = 34, + [137649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(1145), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, - anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6960), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(320), 1, + STATE(3463), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5395), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5892), 1, sym_val_number, - STATE(539), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6292), 1, sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(584), 1, + STATE(6293), 1, sym_unquoted, - STATE(589), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3393), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353478,85 +357123,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134528] = 34, + [137774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(1145), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, - anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6960), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(320), 1, + STATE(3464), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5395), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5892), 1, sym_val_number, - STATE(540), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(6294), 1, sym__expr_binary_expression, - STATE(579), 1, - sym__str_double_quotes, - STATE(583), 1, + STATE(6295), 1, sym_unquoted, - STATE(589), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(604), 1, - sym__expr_unary_minus, - STATE(3394), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353569,85 +357214,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134653] = 34, + [137899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6037), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6045), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6057), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6067), 1, + sym_val_date, + ACTIONS(6069), 1, + anon_sym_DQUOTE, + ACTIONS(6073), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6075), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, + ACTIONS(6874), 1, anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(3395), 1, + STATE(3465), 1, sym_comment, - STATE(4928), 1, + STATE(5224), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(5395), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5892), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6172), 1, - sym__expr_binary_expression, - STATE(6173), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(6296), 1, + sym__expr_binary_expression, + STATE(6297), 1, + sym_unquoted, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6375), 1, sym__inter_double_quotes, - STATE(6226), 1, - sym_unquoted, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353660,85 +357305,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134778] = 34, + [138024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, + ACTIONS(6037), 1, + anon_sym_LBRACK, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(2755), 1, + ACTIONS(6043), 1, anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(6045), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(6049), 1, anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, - anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(6057), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6067), 1, sym_val_date, - ACTIONS(6992), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(6073), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(6075), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(6878), 1, + anon_sym_null, + ACTIONS(6884), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + STATE(3466), 1, + sym_comment, + STATE(5224), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(5395), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(5892), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(5897), 1, + sym__val_number, + STATE(6268), 1, sym__expr_unary_minus, - STATE(1400), 1, + STATE(6298), 1, sym__expr_binary_expression, - STATE(1401), 1, + STATE(6299), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(6373), 1, + sym__str_double_quotes, + STATE(6374), 1, sym__inter_single_quotes, - STATE(3396), 1, - sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6994), 2, + STATE(6375), 1, + sym__inter_double_quotes, + ACTIONS(6071), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6059), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(6065), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6882), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(6273), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(6335), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353751,85 +357396,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [134903] = 34, + [138149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6018), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3397), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3467), 1, sym_comment, - STATE(4928), 1, + STATE(5099), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(5235), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5642), 1, sym_val_number, - STATE(6162), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6174), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6235), 1, + STATE(6125), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6195), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353842,85 +357487,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135028] = 34, + [138274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6018), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(3398), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3468), 1, sym_comment, - STATE(4928), 1, + STATE(5099), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(5235), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(5642), 1, sym_val_number, - STATE(6162), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6177), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(6241), 1, + STATE(6127), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6197), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -353933,89 +357578,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135153] = 35, + [138399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6838), 1, - anon_sym_LPAREN, - ACTIONS(6840), 1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(6842), 1, - anon_sym_DOT, - ACTIONS(6844), 1, + ACTIONS(6018), 1, anon_sym_PLUS, - ACTIONS(6846), 1, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - STATE(3399), 1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, + aux_sym_unquoted_token1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3469), 1, sym_comment, - STATE(4325), 1, - sym__var, - STATE(4389), 1, + STATE(5099), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(5235), 1, + sym__var, + STATE(5642), 1, sym_val_number, - STATE(4448), 1, + STATE(5646), 1, sym__val_number, - STATE(4529), 1, - sym_val_variable, - STATE(4555), 1, - sym_expr_parenthesized, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(4720), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6129), 1, + sym_unquoted, + STATE(6143), 1, sym__expr_unary_minus, - STATE(6860), 1, + STATE(6198), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7743), 1, - sym__expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5906), 3, + ACTIONS(5598), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(4721), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5900), 6, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4655), 11, + STATE(6122), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(6172), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -354025,85 +357669,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135280] = 34, + [138524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(5936), 1, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6800), 1, + aux_sym_unquoted_token1, + ACTIONS(6886), 1, anon_sym_DOT, - ACTIONS(7026), 1, - anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3400), 1, + STATE(3470), 1, sym_comment, - STATE(5012), 1, + STATE(5099), 1, sym__val_number_decimal, - STATE(5199), 1, + STATE(5235), 1, sym__var, - STATE(5445), 1, + STATE(5642), 1, sym_val_number, - STATE(5500), 1, + STATE(5646), 1, sym__val_number, - STATE(6064), 1, + STATE(6077), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6100), 1, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6131), 1, sym_unquoted, - STATE(6101), 1, - sym__expr_binary_expression, - STATE(6193), 1, + STATE(6143), 1, sym__expr_unary_minus, - ACTIONS(3357), 2, + STATE(6199), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354116,268 +357760,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135405] = 4, + [138649] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3401), 1, - sym_comment, - ACTIONS(1317), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1319), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3027), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3039), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135470] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - STATE(3402), 1, - sym_comment, - ACTIONS(2996), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [135535] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3403), 1, - sym_comment, - ACTIONS(1321), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1323), 41, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, + ACTIONS(5584), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [135600] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(5305), 1, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6848), 1, - anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6788), 1, anon_sym_LPAREN, - ACTIONS(6852), 1, - anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, - anon_sym_PLUS, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(6860), 1, - anon_sym_null, - ACTIONS(6868), 1, - sym_val_date, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - ACTIONS(6874), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6876), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6878), 1, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(2141), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3471), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(2302), 1, + STATE(5235), 1, sym__var, - STATE(2404), 1, - sym__val_number, - STATE(2414), 1, + STATE(5642), 1, sym_val_number, - STATE(2550), 1, - sym__expr_binary_expression, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(2583), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, sym__inter_single_quotes, - STATE(2592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(2619), 1, - sym__str_double_quotes, - STATE(2640), 1, + STATE(6136), 1, sym_unquoted, - STATE(3404), 1, - sym_comment, - ACTIONS(6862), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6200), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6872), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5311), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6864), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6866), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2635), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(2628), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354390,85 +357851,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135725] = 34, + [138774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3472), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(541), 1, - sym__expr_binary_expression, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(581), 1, - sym_unquoted, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6140), 1, + sym_unquoted, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3405), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6202), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354481,85 +357942,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135850] = 34, + [138899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(6884), 1, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(6888), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(6894), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, - sym_val_date, - ACTIONS(6908), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6014), 1, anon_sym_DASH, - ACTIONS(7036), 1, - anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6018), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6020), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(338), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3473), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(373), 1, + STATE(5235), 1, sym__var, - STATE(481), 1, + STATE(5642), 1, sym_val_number, - STATE(482), 1, + STATE(5646), 1, sym__val_number, - STATE(608), 1, + STATE(6077), 1, + sym__str_double_quotes, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, sym__inter_double_quotes, - STATE(643), 1, + STATE(6141), 1, sym_unquoted, - STATE(644), 1, - sym__expr_binary_expression, - STATE(646), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3406), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(6203), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(5594), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354572,85 +358033,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [135975] = 34, + [139024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3474), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(542), 1, - sym__expr_binary_expression, - STATE(575), 1, - sym_unquoted, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3407), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6145), 1, + sym_unquoted, + STATE(6205), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354663,85 +358124,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136100] = 34, + [139149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, - anon_sym_DASH, - ACTIONS(2769), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, - anon_sym_LBRACK, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, - anon_sym_LBRACE, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3475), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(5235), 1, sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, + STATE(5642), 1, sym_val_number, - STATE(1351), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(1375), 1, + STATE(6105), 1, + sym__inter_single_quotes, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, sym__expr_unary_minus, - STATE(1402), 1, - sym__expr_binary_expression, - STATE(1403), 1, + STATE(6147), 1, sym_unquoted, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(3408), 1, - sym_comment, - ACTIONS(6984), 2, + STATE(6206), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354754,85 +358215,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136225] = 34, + [139274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3476), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(543), 1, - sym__expr_binary_expression, - STATE(573), 1, - sym_unquoted, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3409), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6148), 1, + sym_unquoted, + STATE(6208), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354845,85 +358306,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136350] = 34, + [139399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3477), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(544), 1, - sym__expr_binary_expression, - STATE(572), 1, - sym_unquoted, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3410), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6153), 1, + sym_unquoted, + STATE(6209), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -354936,85 +358397,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136475] = 34, + [139524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3478), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(545), 1, - sym__expr_binary_expression, - STATE(570), 1, - sym_unquoted, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3411), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6155), 1, + sym_unquoted, + STATE(6211), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355027,85 +358488,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136600] = 34, + [139649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_DOLLAR, - ACTIONS(1145), 1, - anon_sym_DASH, - ACTIONS(1159), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6938), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACE, - ACTIONS(6944), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_PLUS, - ACTIONS(6948), 1, - anon_sym_not, - ACTIONS(6950), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6958), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6960), 1, - anon_sym_DQUOTE, - ACTIONS(6964), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6966), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6968), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6014), 1, + anon_sym_DASH, + ACTIONS(6018), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6788), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, aux_sym_unquoted_token1, - STATE(320), 1, + ACTIONS(6886), 1, + anon_sym_DOT, + STATE(3479), 1, + sym_comment, + STATE(5099), 1, sym__val_number_decimal, - STATE(368), 1, + STATE(5235), 1, sym__var, - STATE(374), 1, - sym__val_number, - STATE(404), 1, + STATE(5642), 1, sym_val_number, - STATE(546), 1, - sym__expr_binary_expression, - STATE(567), 1, - sym_unquoted, - STATE(579), 1, + STATE(5646), 1, + sym__val_number, + STATE(6077), 1, sym__str_double_quotes, - STATE(589), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(592), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(604), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3412), 1, - sym_comment, - ACTIONS(6952), 2, + STATE(6157), 1, + sym_unquoted, + STATE(6215), 1, + sym__expr_binary_expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6962), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1165), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6954), 3, + ACTIONS(5594), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6956), 3, + ACTIONS(6888), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(591), 4, + STATE(6122), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(593), 12, + STATE(6172), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355118,149 +358579,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136725] = 7, + [139774] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3413), 1, - sym_comment, - ACTIONS(1249), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1243), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT2, - ACTIONS(1245), 21, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5971), 1, anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, anon_sym_DOT, - anon_sym_null, + ACTIONS(6894), 1, + anon_sym_PLUS, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3480), 1, + sym_comment, + STATE(4471), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5707), 1, + sym_unquoted, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6618), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1409), 21, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [136796] = 34, + STATE(5813), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5381), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [139899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3414), 1, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3481), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4471), 1, sym__var, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, + STATE(4725), 1, sym__val_number, - STATE(6064), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6103), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5712), 1, sym_unquoted, - STATE(6107), 1, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6621), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355273,85 +358761,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [136921] = 34, + [140024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6892), 1, + anon_sym_DOT, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - STATE(3415), 1, + STATE(3482), 1, sym_comment, - STATE(4928), 1, - sym__val_number_decimal, - STATE(5274), 1, + STATE(4471), 1, sym__var, - STATE(5532), 1, + STATE(4725), 1, sym__val_number, - STATE(5535), 1, + STATE(4942), 1, sym_val_number, - STATE(6162), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6178), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6244), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5716), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6623), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355364,85 +358852,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137046] = 34, + [140149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6890), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3483), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(637), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5372), 1, sym_unquoted, - STATE(638), 1, - sym__expr_binary_expression, - STATE(646), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3416), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6625), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355455,89 +358943,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137171] = 35, + [140274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(5650), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5654), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(3417), 1, + STATE(3484), 1, sym_comment, - STATE(5217), 1, + STATE(4471), 1, sym__var, - STATE(5532), 1, + STATE(4725), 1, sym__val_number, - STATE(5535), 1, + STATE(4942), 1, sym_val_number, - STATE(5563), 1, - sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(5388), 1, + sym_unquoted, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(6626), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7956), 1, - sym__expression, - ACTIONS(3816), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(5813), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5381), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -355547,85 +359034,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137298] = 34, + [140399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3418), 1, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3485), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4471), 1, sym__var, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, + STATE(4725), 1, sym__val_number, - STATE(6064), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6108), 1, + STATE(5407), 1, sym_unquoted, - STATE(6110), 1, - sym__expr_binary_expression, - STATE(6193), 1, + STATE(5579), 1, sym__expr_unary_minus, - ACTIONS(3357), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6627), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355638,85 +359125,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137423] = 34, + [140524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6890), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3486), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(633), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5417), 1, sym_unquoted, - STATE(634), 1, - sym__expr_binary_expression, - STATE(646), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3419), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6628), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355729,85 +359216,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137548] = 34, + [140649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6890), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3487), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(625), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5424), 1, sym_unquoted, - STATE(626), 1, - sym__expr_binary_expression, - STATE(646), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3420), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6629), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355820,85 +359307,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137673] = 34, + [140774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, + anon_sym_DOT, + ACTIONS(6894), 1, + anon_sym_PLUS, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3488), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, + STATE(5454), 1, + sym_unquoted, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, sym__inter_double_quotes, - STATE(488), 1, - sym__expr_unary_minus, - STATE(499), 1, - sym_unquoted, - STATE(528), 1, + STATE(6630), 1, sym__expr_binary_expression, - STATE(3421), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -355911,85 +359398,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137798] = 34, + [140899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, + anon_sym_DOT, + ACTIONS(6894), 1, + anon_sym_PLUS, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3489), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(423), 1, - sym_unquoted, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(502), 1, + STATE(5603), 1, + sym_unquoted, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6631), 1, sym__expr_binary_expression, - STATE(3422), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356002,85 +359489,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [137923] = 34, + [141024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, + anon_sym_DOT, + ACTIONS(6894), 1, + anon_sym_PLUS, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3490), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(507), 1, - sym__expr_binary_expression, - STATE(513), 1, + STATE(5651), 1, sym_unquoted, - STATE(3423), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6632), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356093,85 +359580,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138048] = 34, + [141149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6890), 1, + anon_sym_DASH, + ACTIONS(6892), 1, + anon_sym_DOT, + ACTIONS(6894), 1, + anon_sym_PLUS, + ACTIONS(6896), 1, + aux_sym__val_number_decimal_token1, + STATE(3491), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(510), 1, - sym__expr_binary_expression, - STATE(515), 1, + STATE(5655), 1, sym_unquoted, - STATE(3424), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6633), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356184,85 +359671,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138173] = 34, + [141274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6890), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6892), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6894), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6896), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3492), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(621), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5689), 1, sym_unquoted, - STATE(624), 1, + STATE(5779), 1, + sym__val_number_decimal, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6638), 1, sym__expr_binary_expression, - STATE(646), 1, - sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3425), 1, - sym_comment, - ACTIONS(6898), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6898), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356275,207 +359762,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138298] = 4, + [141399] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3426), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1340), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [138363] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3427), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1340), 42, + ACTIONS(5963), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5971), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [138428] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7054), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, - anon_sym_null, - ACTIONS(7066), 1, - sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, - aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3493), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(511), 1, - sym__expr_binary_expression, - STATE(517), 1, + STATE(5707), 1, sym_unquoted, - STATE(3428), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6445), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356488,146 +359853,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138553] = 4, + [141524] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, - sym_comment, - ACTIONS(1005), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [138618] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6880), 1, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6884), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6888), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6894), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, - sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6900), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6906), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3494), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(616), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5712), 1, sym_unquoted, - STATE(618), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6446), 1, sym__expr_binary_expression, - STATE(646), 1, - sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3430), 1, - sym_comment, - ACTIONS(6898), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356640,85 +359944,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138743] = 34, + [141649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, + sym_val_date, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3431), 1, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3495), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4471), 1, sym__var, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, + STATE(4725), 1, sym__val_number, - STATE(6064), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6114), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5716), 1, sym_unquoted, - STATE(6119), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6447), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356731,85 +360035,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138868] = 34, + [141774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6900), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6906), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3496), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(610), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5372), 1, sym_unquoted, - STATE(611), 1, - sym__expr_binary_expression, - STATE(646), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3432), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6448), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356822,146 +360126,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [138993] = 4, + [141899] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3433), 1, - sym_comment, - ACTIONS(1098), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1100), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139058] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3434), 1, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3497), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4471), 1, sym__var, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, + STATE(4725), 1, sym__val_number, - STATE(6064), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6121), 1, + STATE(5388), 1, sym_unquoted, - STATE(6122), 1, - sym__expr_binary_expression, - STATE(6193), 1, + STATE(5579), 1, sym__expr_unary_minus, - ACTIONS(3357), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6449), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -356974,85 +360217,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139183] = 34, + [142024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6900), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6906), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3498), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(609), 1, - sym__expr_binary_expression, - STATE(612), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5407), 1, sym_unquoted, - STATE(646), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3435), 1, - sym_comment, - ACTIONS(6898), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6450), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357065,85 +360308,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139308] = 34, + [142149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, + anon_sym_DOT, + ACTIONS(6904), 1, + anon_sym_PLUS, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3499), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5417), 1, + sym_unquoted, + STATE(5579), 1, sym__expr_unary_minus, - STATE(516), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6451), 1, sym__expr_binary_expression, - STATE(519), 1, - sym_unquoted, - STATE(3436), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357156,85 +360399,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139433] = 34, + [142274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, + anon_sym_DOT, + ACTIONS(6904), 1, + anon_sym_PLUS, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3500), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5424), 1, + sym_unquoted, + STATE(5579), 1, sym__expr_unary_minus, - STATE(518), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6452), 1, sym__expr_binary_expression, - STATE(521), 1, - sym_unquoted, - STATE(3437), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357247,85 +360490,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139558] = 34, + [142399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, + anon_sym_DOT, + ACTIONS(6904), 1, + anon_sym_PLUS, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3501), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5454), 1, + sym_unquoted, + STATE(5579), 1, sym__expr_unary_minus, - STATE(520), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6453), 1, sym__expr_binary_expression, - STATE(523), 1, - sym_unquoted, - STATE(3438), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357338,146 +360581,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139683] = 4, + [142524] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, - sym_comment, - ACTIONS(1259), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1261), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139748] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(7052), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7054), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, - anon_sym_null, - ACTIONS(7066), 1, - sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, - aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3502), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(500), 1, - sym__expr_binary_expression, - STATE(525), 1, + STATE(5603), 1, sym_unquoted, - STATE(3440), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6454), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357490,146 +360672,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [139873] = 4, + [142649] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3441), 1, - sym_comment, - ACTIONS(1098), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1100), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, + ACTIONS(3243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139938] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6880), 1, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6884), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6888), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6894), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, - sym_val_date, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6900), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6902), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6904), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6906), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3503), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(481), 1, - sym_val_number, - STATE(482), 1, + STATE(4725), 1, sym__val_number, - STATE(608), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5651), 1, + sym_unquoted, + STATE(5801), 1, sym__inter_double_quotes, - STATE(613), 1, + STATE(6455), 1, sym__expr_binary_expression, - STATE(617), 1, - sym_unquoted, - STATE(646), 1, - sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, - sym__str_double_quotes, - STATE(3442), 1, - sym_comment, - ACTIONS(6898), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357642,85 +360763,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140063] = 34, + [142774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, + anon_sym_DOT, + ACTIONS(6904), 1, + anon_sym_PLUS, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3504), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(498), 1, - sym__expr_binary_expression, - STATE(527), 1, + STATE(5655), 1, sym_unquoted, - STATE(3443), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6456), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357733,85 +360854,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140188] = 34, + [142899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, - anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(7068), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - STATE(274), 1, - sym__val_number_decimal, - STATE(309), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_DASH, + ACTIONS(6902), 1, + anon_sym_DOT, + ACTIONS(6904), 1, + anon_sym_PLUS, + ACTIONS(6906), 1, + aux_sym__val_number_decimal_token1, + STATE(3505), 1, + sym_comment, + STATE(4471), 1, sym__var, - STATE(328), 1, + STATE(4725), 1, sym__val_number, - STATE(342), 1, + STATE(4942), 1, sym_val_number, - STATE(424), 1, - sym_unquoted, - STATE(432), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(5172), 1, + sym__val_number_decimal, + STATE(5369), 1, sym__inter_single_quotes, - STATE(464), 1, - sym__inter_double_quotes, - STATE(488), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(496), 1, + STATE(5689), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6457), 1, sym__expr_binary_expression, - STATE(3444), 1, - sym_comment, - ACTIONS(7060), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6908), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357824,85 +360945,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140313] = 34, + [143024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(7068), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + anon_sym_DASH, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, + anon_sym_PLUS, + ACTIONS(6920), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(274), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(309), 1, + STATE(2686), 1, sym__var, - STATE(328), 1, - sym__val_number, - STATE(342), 1, + STATE(2806), 1, sym_val_number, - STATE(432), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(464), 1, + STATE(3129), 1, sym__inter_double_quotes, - STATE(488), 1, + STATE(3506), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(495), 1, - sym__expr_binary_expression, - STATE(503), 1, + STATE(3691), 1, sym_unquoted, - STATE(3445), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(3712), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -357915,207 +361036,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140438] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3446), 1, - sym_comment, - ACTIONS(1325), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1327), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [140503] = 4, + [143149] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3447), 1, - sym_comment, - ACTIONS(1405), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1407), 42, + ACTIONS(6212), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6216), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6238), 1, sym_val_date, + ACTIONS(6240), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [140568] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(6910), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6912), 1, + anon_sym_DASH, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3448), 1, - sym_comment, - STATE(5012), 1, + ACTIONS(6920), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, sym__val_number_decimal, - STATE(5199), 1, + STATE(2686), 1, sym__var, - STATE(5445), 1, + STATE(2806), 1, sym_val_number, - STATE(5500), 1, + STATE(2820), 1, sym__val_number, - STATE(6064), 1, + STATE(3127), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6129), 1, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3507), 1, + sym_comment, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3692), 1, sym_unquoted, - STATE(6130), 1, + STATE(3713), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358128,85 +361127,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140693] = 34, + [143274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DOLLAR, - ACTIONS(933), 1, - anon_sym_DASH, - ACTIONS(947), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7046), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_LPAREN, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7052), 1, - anon_sym_DOT, - ACTIONS(7054), 1, - anon_sym_PLUS, - ACTIONS(7056), 1, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(7058), 1, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(7066), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(7068), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7076), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, + anon_sym_DASH, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, + anon_sym_PLUS, + ACTIONS(6920), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(274), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(309), 1, + STATE(2686), 1, sym__var, - STATE(328), 1, - sym__val_number, - STATE(342), 1, + STATE(2806), 1, sym_val_number, - STATE(432), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(463), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(464), 1, + STATE(3129), 1, sym__inter_double_quotes, - STATE(488), 1, + STATE(3508), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(494), 1, - sym__expr_binary_expression, - STATE(508), 1, + STATE(3693), 1, sym_unquoted, - STATE(3449), 1, - sym_comment, - ACTIONS(7060), 2, + STATE(3714), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(7070), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(953), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7062), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7064), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(492), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(431), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358219,85 +361218,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140818] = 34, + [143399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3450), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, + sym__val_number_decimal, + STATE(2686), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(2806), 1, sym_val_number, - STATE(5113), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(5209), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3509), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(5603), 1, + STATE(3694), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6337), 1, + STATE(3715), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358310,85 +361309,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [140943] = 34, + [143524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3451), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, + sym__val_number_decimal, + STATE(2686), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(2806), 1, sym_val_number, - STATE(5113), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(5209), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3510), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(5604), 1, + STATE(3695), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6341), 1, + STATE(3716), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358401,85 +361400,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141068] = 34, + [143649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6216), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6228), 1, + anon_sym_null, + ACTIONS(6238), 1, + sym_val_date, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6244), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6246), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(3452), 1, - sym_comment, - STATE(4928), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2686), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2806), 1, sym_val_number, - STATE(6162), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6179), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(3129), 1, sym__inter_double_quotes, - STATE(6248), 1, + STATE(3511), 1, + sym_comment, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3696), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(3717), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358492,85 +361491,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141193] = 34, + [143774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6216), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6228), 1, + anon_sym_null, + ACTIONS(6238), 1, + sym_val_date, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6244), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6246), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(3453), 1, - sym_comment, - STATE(4928), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2686), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2806), 1, sym_val_number, - STATE(6162), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6184), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(3129), 1, sym__inter_double_quotes, - STATE(6251), 1, + STATE(3512), 1, + sym_comment, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3697), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(3718), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358583,85 +361582,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141318] = 34, + [143899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6216), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6228), 1, + anon_sym_null, + ACTIONS(6238), 1, + sym_val_date, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6244), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6246), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(3454), 1, - sym_comment, - STATE(4928), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2686), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2806), 1, sym_val_number, - STATE(6162), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6185), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(3129), 1, sym__inter_double_quotes, - STATE(6221), 1, + STATE(3513), 1, + sym_comment, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3698), 1, sym_unquoted, - ACTIONS(3816), 2, + STATE(3719), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358674,85 +361673,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141443] = 34, + [144024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, - anon_sym_DASH, - ACTIONS(6300), 1, - anon_sym_PLUS, - ACTIONS(6302), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, + ACTIONS(6910), 1, anon_sym_LPAREN, - ACTIONS(7080), 1, + ACTIONS(6912), 1, + anon_sym_DASH, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, anon_sym_DOT, - STATE(3455), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6918), 1, + anon_sym_PLUS, + ACTIONS(6920), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, + sym__val_number_decimal, + STATE(2686), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(2806), 1, sym_val_number, - STATE(5113), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(5209), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3514), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(5636), 1, + STATE(3700), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6290), 1, + STATE(3720), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358765,146 +361764,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141568] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3456), 1, - sym_comment, - ACTIONS(3890), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3888), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [141633] = 34, + [144149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(6884), 1, + ACTIONS(6216), 1, anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(6896), 1, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(6908), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6910), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token1, - STATE(338), 1, + STATE(2587), 1, sym__val_number_decimal, - STATE(373), 1, + STATE(2686), 1, sym__var, - STATE(481), 1, + STATE(2806), 1, sym_val_number, - STATE(482), 1, + STATE(2820), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(619), 1, - sym__expr_binary_expression, - STATE(620), 1, - sym_unquoted, - STATE(646), 1, - sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, + STATE(3127), 1, sym__str_double_quotes, - STATE(3457), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3515), 1, sym_comment, - ACTIONS(6898), 2, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3701), 1, + sym_unquoted, + STATE(3721), 1, + sym__expr_binary_expression, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(6910), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(6236), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -358917,85 +361855,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141758] = 34, + [144274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3458), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, + sym__val_number_decimal, + STATE(2686), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(2806), 1, sym_val_number, - STATE(5113), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(5209), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3516), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(5609), 1, + STATE(3702), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6370), 1, + STATE(3722), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359008,85 +361946,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [141883] = 34, + [144399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_DOLLAR, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6244), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6246), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6910), 1, + anon_sym_LPAREN, + ACTIONS(6912), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6920), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3459), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, + sym__val_number_decimal, + STATE(2686), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(2806), 1, sym_val_number, - STATE(5113), 1, + STATE(2820), 1, + sym__val_number, + STATE(3127), 1, sym__str_double_quotes, - STATE(5209), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3128), 1, + sym__inter_single_quotes, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3517), 1, + sym_comment, + STATE(3624), 1, sym__expr_unary_minus, - STATE(5610), 1, + STATE(3703), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6374), 1, + STATE(3723), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359099,85 +362037,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142008] = 34, + [144524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(6216), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(6226), 1, + anon_sym_not, + ACTIONS(6228), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(6238), 1, sym_val_date, - ACTIONS(3367), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(6244), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6246), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6910), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6912), 1, + anon_sym_DASH, + ACTIONS(6914), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6918), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3460), 1, - sym_comment, - STATE(5012), 1, + ACTIONS(6920), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6924), 1, + aux_sym_unquoted_token1, + STATE(2587), 1, sym__val_number_decimal, - STATE(5199), 1, + STATE(2686), 1, sym__var, - STATE(5445), 1, + STATE(2806), 1, sym_val_number, - STATE(5500), 1, + STATE(2820), 1, sym__val_number, - STATE(6064), 1, + STATE(3127), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(3128), 1, sym__inter_single_quotes, - STATE(6135), 1, + STATE(3129), 1, + sym__inter_double_quotes, + STATE(3518), 1, + sym_comment, + STATE(3624), 1, + sym__expr_unary_minus, + STATE(3704), 1, sym_unquoted, - STATE(6138), 1, + STATE(3724), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(6242), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6234), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6236), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6922), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(3690), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(3109), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359190,85 +362128,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142133] = 34, + [144649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6928), 1, + anon_sym_DOT, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3461), 1, + STATE(3519), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4407), 1, + sym__val_number, + STATE(4535), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5611), 1, + STATE(4607), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6381), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5276), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359281,85 +362219,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142258] = 34, + [144774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6908), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3520), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(481), 1, + STATE(4393), 1, sym_val_number, - STATE(482), 1, + STATE(4407), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(623), 1, - sym__expr_binary_expression, - STATE(627), 1, - sym_unquoted, - STATE(646), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, + STATE(4608), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(3462), 1, - sym_comment, - ACTIONS(6898), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6910), 2, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5277), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359372,85 +362310,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142383] = 34, + [144899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6928), 1, + anon_sym_DOT, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3463), 1, + STATE(3521), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4407), 1, + sym__val_number, + STATE(4535), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5612), 1, + STATE(4609), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6382), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5278), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359463,85 +362401,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142508] = 34, + [145024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6908), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3522), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(481), 1, + STATE(4393), 1, sym_val_number, - STATE(482), 1, + STATE(4407), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(628), 1, - sym__expr_binary_expression, - STATE(629), 1, - sym_unquoted, - STATE(646), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, + STATE(4610), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(3464), 1, - sym_comment, - ACTIONS(6898), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6910), 2, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5279), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359554,85 +362492,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142633] = 34, + [145149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - STATE(3465), 1, + STATE(3523), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4701), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4938), 1, + STATE(4611), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5280), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359645,85 +362583,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142758] = 34, + [145274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - STATE(3466), 1, + STATE(3524), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4702), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4939), 1, + STATE(4612), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5281), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359736,85 +362674,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [142883] = 34, + [145399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - STATE(3467), 1, + STATE(3525), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4703), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4940), 1, + STATE(4613), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5282), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359827,85 +362765,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143008] = 34, + [145524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - STATE(3468), 1, + STATE(3526), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4705), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4942), 1, + STATE(4614), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5283), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -359918,85 +362856,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143133] = 34, + [145649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6928), 1, + anon_sym_DOT, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3469), 1, + STATE(3527), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4407), 1, + sym__val_number, + STATE(4535), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5614), 1, + STATE(4615), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6313), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5284), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360009,85 +362947,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143258] = 34, + [145774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6928), 1, + anon_sym_DOT, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3470), 1, + STATE(3528), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4407), 1, + sym__val_number, + STATE(4535), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5618), 1, + STATE(4616), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6386), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5285), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360100,85 +363038,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143383] = 34, + [145899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6880), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_DOLLAR, - ACTIONS(6888), 1, - anon_sym_LBRACE, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(6896), 1, - anon_sym_null, - ACTIONS(6906), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6908), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6912), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6914), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7032), 1, + ACTIONS(6812), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6816), 1, + anon_sym_DOLLAR, + ACTIONS(6820), 1, + anon_sym_LBRACE, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7036), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7038), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7040), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7044), 1, - aux_sym_unquoted_token1, - STATE(338), 1, - sym__val_number_decimal, - STATE(373), 1, + STATE(3529), 1, + sym_comment, + STATE(4251), 1, sym__var, - STATE(481), 1, + STATE(4393), 1, sym_val_number, - STATE(482), 1, + STATE(4407), 1, sym__val_number, - STATE(608), 1, - sym__inter_double_quotes, - STATE(630), 1, - sym__expr_binary_expression, - STATE(632), 1, - sym_unquoted, - STATE(646), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(661), 1, - sym__inter_single_quotes, - STATE(671), 1, + STATE(4617), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(3471), 1, - sym_comment, - ACTIONS(6898), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6910), 2, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5286), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6902), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6904), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7042), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(675), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(645), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360191,85 +363129,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143508] = 34, + [146024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(6300), 1, - anon_sym_PLUS, - ACTIONS(6302), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, + ACTIONS(6928), 1, anon_sym_DOT, - STATE(3472), 1, + ACTIONS(6930), 1, + anon_sym_PLUS, + ACTIONS(6932), 1, + aux_sym__val_number_decimal_token1, + STATE(3530), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4407), 1, + sym__val_number, + STATE(4535), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5619), 1, + STATE(4618), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6388), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5287), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360282,85 +363220,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143633] = 34, + [146149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6926), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6928), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6930), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6932), 1, aux_sym__val_number_decimal_token1, - STATE(3473), 1, + STATE(3531), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4706), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4535), 1, + sym__val_number_decimal, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4943), 1, + STATE(4619), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5288), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6934), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360373,85 +363311,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143758] = 34, + [146274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - STATE(3474), 1, + STATE(3532), 1, sym_comment, - STATE(4354), 1, + STATE(4251), 1, sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4707), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4944), 1, + STATE(4607), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5085), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360464,85 +363402,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [143883] = 34, + [146399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, - anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3475), 1, + ACTIONS(6942), 1, + aux_sym__val_number_decimal_token1, + STATE(3533), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4251), 1, sym__var, - STATE(5445), 1, + STATE(4393), 1, sym_val_number, - STATE(5500), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(6064), 1, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4608), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6147), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5086), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - STATE(6196), 1, - sym_unquoted, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360555,89 +363493,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [144008] = 35, + [146524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(6814), 1, anon_sym_LPAREN, - ACTIONS(5642), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_PLUS, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5654), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5658), 1, - anon_sym_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - STATE(3476), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, + anon_sym_PLUS, + ACTIONS(6942), 1, + aux_sym__val_number_decimal_token1, + STATE(3534), 1, sym_comment, - STATE(5217), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(5563), 1, + STATE(4404), 1, sym__val_number_decimal, - STATE(5997), 1, - sym_val_variable, - STATE(6025), 1, - sym_expr_parenthesized, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4609), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6859), 1, + STATE(5087), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(8065), 1, - sym__expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6165), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5656), 6, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6250), 11, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -360647,207 +363584,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [144135] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3477), 1, - sym_comment, - ACTIONS(3836), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3834), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [144200] = 4, + [146649] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3478), 1, - sym_comment, - ACTIONS(1342), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1344), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [144265] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(6003), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - STATE(3479), 1, + STATE(3535), 1, sym_comment, - STATE(4928), 1, - sym__val_number_decimal, - STATE(5274), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6186), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(4610), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6234), 1, - sym_unquoted, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + STATE(5088), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -360860,270 +363675,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [144390] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7092), 1, - anon_sym_DOT2, - STATE(3480), 1, - sym_comment, - ACTIONS(3943), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3941), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [144457] = 5, + [146774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7094), 1, - anon_sym_DOT2, - STATE(3481), 1, - sym_comment, - ACTIONS(3937), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3935), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [144524] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2988), 1, - sym__entry_separator, - STATE(3482), 1, - sym_comment, - ACTIONS(2986), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [144589] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, - anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3483), 1, + ACTIONS(6942), 1, + aux_sym__val_number_decimal_token1, + STATE(3536), 1, sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, + STATE(4251), 1, sym__var, - STATE(5445), 1, + STATE(4393), 1, sym_val_number, - STATE(5500), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(6064), 1, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4611), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6151), 1, - sym_unquoted, - STATE(6156), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5089), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361136,150 +363766,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [144714] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3484), 1, - sym_comment, - ACTIONS(1113), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [144779] = 35, + [146899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6838), 1, - anon_sym_LPAREN, - ACTIONS(6840), 1, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(6842), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(6844), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(6846), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - STATE(3485), 1, + STATE(3537), 1, sym_comment, - STATE(4325), 1, + STATE(4251), 1, sym__var, - STATE(4389), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(4529), 1, - sym_val_variable, - STATE(4555), 1, - sym_expr_parenthesized, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4720), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6728), 1, + STATE(4612), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5090), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7743), 1, - sym__expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(4721), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5900), 6, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4655), 11, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -361289,207 +363857,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [144906] = 4, + [147024] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3486), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [144971] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3487), 1, - sym_comment, - ACTIONS(1332), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1334), 41, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6814), 1, anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, + ACTIONS(6820), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [145036] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_LBRACK, - ACTIONS(5746), 1, - anon_sym_DOLLAR, - ACTIONS(5748), 1, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(5762), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5772), 1, - sym_val_date, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5778), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5780), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6496), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_DOT, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(6502), 1, - anon_sym_null, - ACTIONS(6508), 1, - aux_sym_unquoted_token1, - STATE(3488), 1, + STATE(3538), 1, sym_comment, - STATE(4651), 1, - sym__val_number_decimal, - STATE(4904), 1, + STATE(4251), 1, sym__var, - STATE(4933), 1, + STATE(4393), 1, sym_val_number, - STATE(4971), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, sym__val_number, - STATE(5431), 1, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4613), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(5438), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5439), 1, - sym__inter_double_quotes, - STATE(5495), 1, - sym_unquoted, - STATE(5496), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5091), 1, sym__expr_binary_expression, - STATE(5539), 1, - sym__expr_unary_minus, - ACTIONS(5776), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6504), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5764), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5770), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6506), 3, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5499), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5694), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361502,85 +363948,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145161] = 34, + [147149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(7100), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(7102), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - STATE(3489), 1, + STATE(3539), 1, sym_comment, - STATE(5250), 1, - sym__val_number_decimal, - STATE(5274), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4614), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6252), 1, - sym_unquoted, - STATE(6292), 1, + STATE(5092), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361593,146 +364039,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3490), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [145351] = 34, + [147274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3491), 1, + STATE(3540), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4404), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5621), 1, + STATE(4615), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6393), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5093), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361745,85 +364130,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145476] = 34, + [147399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3826), 1, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6938), 1, anon_sym_DOT, - ACTIONS(7100), 1, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(7102), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - STATE(3492), 1, + STATE(3541), 1, sym_comment, - STATE(5250), 1, - sym__val_number_decimal, - STATE(5274), 1, + STATE(4251), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4616), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6219), 1, - sym_unquoted, - STATE(6295), 1, + STATE(5094), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361836,146 +364221,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145601] = 4, + [147524] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3493), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6814), 1, anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6820), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(6828), 1, anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, + anon_sym_DASH, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, + anon_sym_PLUS, + ACTIONS(6942), 1, + aux_sym__val_number_decimal_token1, + STATE(3542), 1, + sym_comment, + STATE(4251), 1, + sym__var, + STATE(4393), 1, + sym_val_number, + STATE(4404), 1, + sym__val_number_decimal, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4617), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5095), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [145666] = 34, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [147649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3494), 1, + STATE(3543), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4404), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5627), 1, + STATE(4618), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6395), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5096), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -361988,85 +364403,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145791] = 34, + [147774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(6296), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6936), 1, anon_sym_DASH, - ACTIONS(6300), 1, + ACTIONS(6938), 1, + anon_sym_DOT, + ACTIONS(6940), 1, anon_sym_PLUS, - ACTIONS(6302), 1, + ACTIONS(6942), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(3495), 1, + STATE(3544), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5209), 1, + STATE(4404), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5629), 1, + STATE(4619), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6434), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5097), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6304), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6944), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362079,85 +364494,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [145916] = 34, + [147899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5259), 1, + anon_sym_DASH, + ACTIONS(5273), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(6950), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6952), 1, + anon_sym_DOT, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, - anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3496), 1, - sym_comment, - STATE(5250), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6226), 1, + STATE(2551), 1, sym_unquoted, - STATE(6296), 1, + STATE(2596), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3545), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362170,146 +364585,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146041] = 4, + [148024] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6966), 1, sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [146106] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(6974), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, - anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3498), 1, - sym_comment, - STATE(5250), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6235), 1, + STATE(2552), 1, sym_unquoted, - STATE(6298), 1, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2598), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3546), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362322,85 +364676,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146231] = 34, + [148149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5259), 1, + anon_sym_DASH, + ACTIONS(5273), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(6950), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6952), 1, + anon_sym_DOT, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, - anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3499), 1, - sym_comment, - STATE(5250), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, - sym__inter_single_quotes, - STATE(6212), 1, - sym__inter_double_quotes, - STATE(6241), 1, + STATE(2553), 1, sym_unquoted, - STATE(6299), 1, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2601), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3547), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362413,268 +364767,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146356] = 4, + [148274] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3500), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, + sym__val_number_decimal, + STATE(2318), 1, + sym__var, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, + sym__str_double_quotes, + STATE(2555), 1, + sym_unquoted, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2604), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3548), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, + ACTIONS(6970), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5279), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [146421] = 4, + STATE(2550), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2569), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [148399] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6966), 1, sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, + sym__val_number_decimal, + STATE(2318), 1, + sym__var, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, + sym__str_double_quotes, + STATE(2556), 1, + sym_unquoted, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2606), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3549), 1, + sym_comment, + ACTIONS(6960), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - [146486] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - sym__entry_separator, - STATE(3502), 1, - sym_comment, - ACTIONS(3834), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(5279), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [146551] = 34, + STATE(2550), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2569), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [148524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(5259), 1, anon_sym_DASH, - ACTIONS(6003), 1, - anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - STATE(3503), 1, - sym_comment, - STATE(4928), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6167), 1, - sym__expr_binary_expression, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(2565), 1, + sym_unquoted, + STATE(2597), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(2602), 1, sym__inter_double_quotes, - STATE(6218), 1, - sym_unquoted, - ACTIONS(3816), 2, + STATE(2614), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3550), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362687,146 +365040,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146676] = 4, + [148649] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6966), 1, sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [146741] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(6974), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, - anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3505), 1, - sym_comment, - STATE(5250), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(2570), 1, + sym_unquoted, + STATE(2597), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(2602), 1, sym__inter_double_quotes, - STATE(6244), 1, - sym_unquoted, - STATE(6300), 1, + STATE(2617), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3551), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362839,85 +365131,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146866] = 34, + [148774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5259), 1, + anon_sym_DASH, + ACTIONS(5273), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, + anon_sym_LPAREN, + ACTIONS(6950), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6952), 1, + anon_sym_DOT, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, - anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3506), 1, - sym_comment, - STATE(5250), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(2577), 1, + sym_unquoted, + STATE(2597), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(2602), 1, sym__inter_double_quotes, - STATE(6248), 1, - sym_unquoted, - STATE(6302), 1, + STATE(2619), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3552), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -362930,85 +365222,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [146991] = 34, + [148899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, - anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(5999), 1, + ACTIONS(5259), 1, anon_sym_DASH, - ACTIONS(6003), 1, - anon_sym_PLUS, - ACTIONS(6005), 1, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6510), 1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - ACTIONS(6516), 1, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, aux_sym_unquoted_token1, - STATE(3507), 1, - sym_comment, - STATE(4928), 1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2318), 1, sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(2375), 1, sym_val_number, - STATE(6162), 1, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6197), 1, - sym__expr_binary_expression, - STATE(6211), 1, + STATE(2578), 1, + sym_unquoted, + STATE(2597), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(2602), 1, sym__inter_double_quotes, - STATE(6247), 1, - sym_unquoted, - ACTIONS(3816), 2, + STATE(2620), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3553), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6514), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -363021,85 +365313,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [147116] = 34, + [149024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(5259), 1, anon_sym_DASH, - ACTIONS(5936), 1, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - ACTIONS(7024), 1, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - ACTIONS(7026), 1, + ACTIONS(6954), 1, anon_sym_PLUS, - ACTIONS(7028), 1, + ACTIONS(6956), 1, anon_sym_not, - STATE(3508), 1, - sym_comment, - STATE(5012), 1, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, sym__val_number_decimal, - STATE(5199), 1, + STATE(2318), 1, sym__var, - STATE(5445), 1, + STATE(2375), 1, sym_val_number, - STATE(5500), 1, + STATE(2391), 1, sym__val_number, - STATE(6064), 1, + STATE(2541), 1, sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6157), 1, + STATE(2579), 1, sym_unquoted, - STATE(6158), 1, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2621), 1, sym__expr_binary_expression, - STATE(6193), 1, + STATE(2646), 1, sym__expr_unary_minus, - ACTIONS(3357), 2, + STATE(3554), 1, + sym_comment, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(2550), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(2569), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -363112,634 +365404,358 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [147241] = 4, + [149149] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3509), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6966), 1, sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [147306] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3510), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, + sym__val_number_decimal, + STATE(2318), 1, + sym__var, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, + sym__str_double_quotes, + STATE(2580), 1, + sym_unquoted, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2624), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3555), 1, sym_comment, - ACTIONS(2988), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, + ACTIONS(6960), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2986), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [147371] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3511), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(5279), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [147436] = 4, + STATE(2550), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2569), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [149274] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3512), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6946), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6950), 1, anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6954), 1, + anon_sym_PLUS, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6966), 1, sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [147501] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4372), 1, - sym__entry_separator, - STATE(3513), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, + sym__val_number_decimal, + STATE(2318), 1, + sym__var, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, + sym__str_double_quotes, + STATE(2581), 1, + sym_unquoted, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2625), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3556), 1, sym_comment, - ACTIONS(4370), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(6960), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [147566] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4376), 1, - sym__entry_separator, - STATE(3514), 1, - sym_comment, - ACTIONS(4374), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(5279), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [147631] = 4, - ACTIONS(105), 1, + STATE(2550), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2569), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [149399] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - sym__entry_separator, - STATE(3515), 1, - sym_comment, - ACTIONS(3888), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5257), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5259), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(5273), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [147696] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4380), 1, - sym__entry_separator, - STATE(3516), 1, - sym_comment, - ACTIONS(4378), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(6946), 1, + anon_sym_LBRACK, + ACTIONS(6948), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(6950), 1, + anon_sym_LBRACE, + ACTIONS(6952), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6954), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6956), 1, + anon_sym_not, + ACTIONS(6958), 1, + anon_sym_null, + ACTIONS(6966), 1, + sym_val_date, + ACTIONS(6968), 1, anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6974), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6976), 1, + aux_sym_unquoted_token1, + STATE(2114), 1, + sym__val_number_decimal, + STATE(2318), 1, + sym__var, + STATE(2375), 1, + sym_val_number, + STATE(2391), 1, + sym__val_number, + STATE(2541), 1, + sym__str_double_quotes, + STATE(2582), 1, + sym_unquoted, + STATE(2597), 1, + sym__inter_single_quotes, + STATE(2602), 1, + sym__inter_double_quotes, + STATE(2629), 1, + sym__expr_binary_expression, + STATE(2646), 1, + sym__expr_unary_minus, + STATE(3557), 1, + sym_comment, + ACTIONS(6960), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6970), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [147761] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4384), 1, - sym__entry_separator, - STATE(3517), 1, - sym_comment, - ACTIONS(4382), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(5279), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6962), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6964), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [147826] = 34, + STATE(2550), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2569), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [149524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7082), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7086), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7088), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3518), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, + sym__val_number_decimal, + STATE(821), 1, + sym__var, + STATE(845), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(4708), 1, - sym_unquoted, - STATE(4720), 1, + STATE(935), 1, + sym__inter_single_quotes, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, sym__expr_unary_minus, - STATE(4946), 1, + STATE(954), 1, + sym_unquoted, + STATE(968), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(3558), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -363752,85 +365768,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [147951] = 34, + [149649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - ACTIONS(7096), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7100), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7102), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3519), 1, - sym_comment, - STATE(5250), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(821), 1, sym__var, - STATE(5532), 1, + STATE(845), 1, sym__val_number, - STATE(5535), 1, + STATE(848), 1, sym_val_number, - STATE(6162), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(6251), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(955), 1, sym_unquoted, - STATE(6303), 1, + STATE(969), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + STATE(3559), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -363843,85 +365859,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148076] = 34, + [149774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(6988), 1, anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(6996), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(801), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(821), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(845), 1, sym__val_number, - STATE(854), 1, - sym_unquoted, - STATE(868), 1, - sym__expr_unary_minus, - STATE(869), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(3520), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(956), 1, + sym_unquoted, + STATE(970), 1, + sym__expr_binary_expression, + STATE(3560), 1, sym_comment, - ACTIONS(6412), 2, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -363934,89 +365950,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148201] = 35, + [149899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(6161), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(6165), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(6167), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(6169), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3521), 1, - sym_comment, - STATE(4465), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, + sym__val_number_decimal, + STATE(821), 1, sym__var, - STATE(4844), 1, + STATE(845), 1, sym__val_number, - STATE(5076), 1, + STATE(848), 1, sym_val_number, - STATE(5113), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(5285), 1, - sym__val_number_decimal, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5578), 1, - sym_expr_parenthesized, - STATE(5580), 1, - sym_val_variable, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(6808), 1, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, + sym__expr_unary_minus, + STATE(957), 1, + sym_unquoted, + STATE(971), 1, sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(10221), 1, - sym__expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(3561), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(5566), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3884), 6, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5744), 11, + STATE(953), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(983), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -364026,146 +366041,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148328] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3522), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [148393] = 34, + [150024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(6988), 1, anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(6996), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(801), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(821), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(845), 1, sym__val_number, - STATE(852), 1, - sym_unquoted, - STATE(868), 1, - sym__expr_unary_minus, - STATE(870), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(3523), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(958), 1, + sym_unquoted, + STATE(972), 1, + sym__expr_binary_expression, + STATE(3562), 1, sym_comment, - ACTIONS(6412), 2, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364178,85 +366132,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148518] = 34, + [150149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7110), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7112), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3524), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, + sym__val_number_decimal, + STATE(821), 1, sym__var, - STATE(4844), 1, + STATE(845), 1, sym__val_number, - STATE(5076), 1, + STATE(848), 1, sym_val_number, - STATE(5113), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(935), 1, + sym__inter_single_quotes, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, sym__expr_unary_minus, - STATE(5603), 1, + STATE(959), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6573), 1, + STATE(973), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(3563), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364269,85 +366223,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148643] = 34, + [150274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - ACTIONS(7096), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7100), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7102), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3525), 1, - sym_comment, - STATE(5250), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(821), 1, sym__var, - STATE(5532), 1, + STATE(845), 1, sym__val_number, - STATE(5535), 1, + STATE(848), 1, sym_val_number, - STATE(6162), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(6221), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(960), 1, sym_unquoted, - STATE(6304), 1, + STATE(974), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + STATE(3564), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364360,85 +366314,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148768] = 34, + [150399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6316), 1, + anon_sym_LBRACK, + ACTIONS(6320), 1, + anon_sym_DOLLAR, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7110), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7112), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3526), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, + sym__val_number_decimal, + STATE(821), 1, sym__var, - STATE(4844), 1, + STATE(845), 1, sym__val_number, - STATE(5076), 1, + STATE(848), 1, sym_val_number, - STATE(5113), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(935), 1, + sym__inter_single_quotes, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, sym__expr_unary_minus, - STATE(5604), 1, + STATE(961), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6569), 1, + STATE(975), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(3565), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364451,85 +366405,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [148893] = 34, + [150524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - ACTIONS(7096), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7100), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7102), 1, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, + anon_sym_null, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - STATE(3527), 1, - sym_comment, - STATE(5250), 1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(821), 1, sym__var, - STATE(5532), 1, + STATE(845), 1, sym__val_number, - STATE(5535), 1, + STATE(848), 1, sym_val_number, - STATE(6162), 1, + STATE(927), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(6234), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(962), 1, sym_unquoted, - STATE(6305), 1, + STATE(976), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + STATE(3566), 1, + sym_comment, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6990), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364542,146 +366496,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149018] = 4, + [150649] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3528), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, + ACTIONS(6316), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6320), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6324), 1, anon_sym_LBRACE, + ACTIONS(6344), 1, + sym_val_date, + ACTIONS(6346), 1, + anon_sym_DQUOTE, + ACTIONS(6350), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6978), 1, + anon_sym_LPAREN, + ACTIONS(6980), 1, + anon_sym_DASH, + ACTIONS(6982), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(6984), 1, + anon_sym_PLUS, + ACTIONS(6986), 1, + anon_sym_not, + ACTIONS(6988), 1, anon_sym_null, + ACTIONS(6992), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6996), 1, + aux_sym_unquoted_token1, + STATE(801), 1, + sym__val_number_decimal, + STATE(821), 1, + sym__var, + STATE(845), 1, + sym__val_number, + STATE(848), 1, + sym_val_number, + STATE(927), 1, + sym__str_double_quotes, + STATE(935), 1, + sym__inter_single_quotes, + STATE(936), 1, + sym__inter_double_quotes, + STATE(951), 1, + sym__expr_unary_minus, + STATE(963), 1, + sym_unquoted, + STATE(977), 1, + sym__expr_binary_expression, + STATE(3567), 1, + sym_comment, + ACTIONS(6348), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6342), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [149083] = 34, + STATE(953), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(983), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [150774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(6988), 1, anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(6996), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(801), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(821), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(845), 1, sym__val_number, - STATE(850), 1, - sym_unquoted, - STATE(868), 1, - sym__expr_unary_minus, - STATE(871), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(3529), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(964), 1, + sym_unquoted, + STATE(978), 1, + sym__expr_binary_expression, + STATE(3568), 1, sym_comment, - ACTIONS(6412), 2, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364694,85 +366678,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149208] = 34, + [150899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(6988), 1, anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(6996), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(801), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(821), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(845), 1, sym__val_number, - STATE(857), 1, - sym_unquoted, - STATE(868), 1, - sym__expr_unary_minus, - STATE(872), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(3530), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(965), 1, + sym_unquoted, + STATE(979), 1, + sym__expr_binary_expression, + STATE(3569), 1, sym_comment, - ACTIONS(6412), 2, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364785,85 +366769,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149333] = 34, + [151024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6316), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6320), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6344), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6346), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6350), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(6980), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(6982), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(6984), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(6988), 1, anon_sym_null, - ACTIONS(7016), 1, + ACTIONS(6992), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(6996), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(801), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(821), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(845), 1, sym__val_number, - STATE(868), 1, - sym__expr_unary_minus, - STATE(873), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(848), 1, + sym_val_number, + STATE(927), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(935), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(936), 1, sym__inter_double_quotes, - STATE(888), 1, + STATE(951), 1, + sym__expr_unary_minus, + STATE(966), 1, sym_unquoted, - STATE(3531), 1, + STATE(980), 1, + sym__expr_binary_expression, + STATE(3570), 1, sym_comment, - ACTIONS(6412), 2, + ACTIONS(6348), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6338), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6342), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(6994), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(953), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(983), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -364876,207 +366860,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149458] = 4, + [151149] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, - sym_comment, - ACTIONS(1263), 12, - anon_sym_GT, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1265), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(7000), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3571), 1, + sym_comment, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4607), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6472), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [149523] = 4, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [151274] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3533), 1, - sym_comment, - ACTIONS(1247), 12, - anon_sym_GT, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1409), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(7000), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3572), 1, + sym_comment, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4608), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6473), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [149588] = 34, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [151399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(6998), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3534), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3573), 1, sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5636), 1, + STATE(4609), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5809), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, sym__val_number_decimal, - STATE(6579), 1, + STATE(5728), 1, + sym__var, + STATE(6474), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365089,85 +367133,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149713] = 34, + [151524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(5772), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(5776), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, - anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3535), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3574), 1, sym_comment, - STATE(5250), 1, - sym__val_number_decimal, - STATE(5274), 1, - sym__var, - STATE(5532), 1, - sym__val_number, - STATE(5535), 1, + STATE(4393), 1, sym_val_number, - STATE(6162), 1, - sym__str_double_quotes, - STATE(6173), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(6211), 1, + STATE(4610), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(6245), 1, - sym_unquoted, - STATE(6306), 1, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6475), 1, sym__expr_binary_expression, - ACTIONS(3816), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365180,85 +367224,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149838] = 34, + [151649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, - anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7086), 1, - anon_sym_PLUS, - ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3536), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3575), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4709), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4947), 1, + STATE(4611), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6476), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365271,147 +367315,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [149963] = 5, + [151774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7116), 1, - anon_sym_DOT2, - STATE(3537), 1, - sym_comment, - ACTIONS(3929), 11, - anon_sym_LPAREN, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3927), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [150030] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(6998), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3538), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3576), 1, sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5609), 1, + STATE(4612), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5809), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, sym__val_number_decimal, - STATE(6565), 1, + STATE(5728), 1, + sym__var, + STATE(6477), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365424,85 +367406,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [150155] = 34, + [151899] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(5772), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(5776), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7008), 1, - anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(7002), 1, anon_sym_not, - ACTIONS(7012), 1, - anon_sym_null, - ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, - aux_sym_unquoted_token1, - STATE(772), 1, - sym__val_number_decimal, - STATE(788), 1, - sym__var, - STATE(828), 1, + STATE(3577), 1, + sym_comment, + STATE(4393), 1, sym_val_number, - STATE(832), 1, + STATE(4407), 1, sym__val_number, - STATE(868), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(874), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(4613), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(890), 1, - sym_unquoted, - STATE(3539), 1, - sym_comment, - ACTIONS(6412), 2, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6478), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365515,85 +367497,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [150280] = 34, + [152024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(6998), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3540), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3578), 1, sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5610), 1, + STATE(4614), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(5809), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, sym__val_number_decimal, - STATE(6563), 1, + STATE(5728), 1, + sym__var, + STATE(6479), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365606,85 +367588,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [150405] = 34, + [152149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, - anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7086), 1, - anon_sym_PLUS, - ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3541), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3579), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4710), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4948), 1, + STATE(4615), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6480), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -365697,573 +367679,267 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [150530] = 4, - ACTIONS(105), 1, + [152274] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4396), 1, - sym__entry_separator, - STATE(3542), 1, - sym_comment, - ACTIONS(4394), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, anon_sym_PLUS, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [150595] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4400), 1, - sym__entry_separator, - STATE(3543), 1, - sym_comment, - ACTIONS(4398), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7000), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [150660] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4408), 1, - sym__entry_separator, - STATE(3544), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3580), 1, sym_comment, - ACTIONS(4406), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4616), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6481), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [150725] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - sym__entry_separator, - STATE(3545), 1, - sym_comment, - ACTIONS(4410), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [150790] = 4, - ACTIONS(105), 1, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [152399] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4416), 1, - sym__entry_separator, - STATE(3546), 1, - sym_comment, - ACTIONS(4414), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5778), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, anon_sym_PLUS, + ACTIONS(5792), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [150855] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4420), 1, - sym__entry_separator, - STATE(3547), 1, - sym_comment, - ACTIONS(4418), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7000), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [150920] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4424), 1, - sym__entry_separator, - STATE(3548), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3581), 1, sym_comment, - ACTIONS(4422), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + STATE(4393), 1, + sym_val_number, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4617), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6482), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [150985] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4430), 1, - sym__entry_separator, - STATE(3549), 1, - sym_comment, - ACTIONS(4428), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [151050] = 34, + aux_sym__val_number_token6, + STATE(4606), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(4706), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [152524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(5772), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(5776), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6998), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7008), 1, - anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(7002), 1, anon_sym_not, - ACTIONS(7012), 1, - anon_sym_null, - ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, - aux_sym_unquoted_token1, - STATE(772), 1, - sym__val_number_decimal, - STATE(788), 1, - sym__var, - STATE(828), 1, + STATE(3582), 1, + sym_comment, + STATE(4393), 1, sym_val_number, - STATE(832), 1, + STATE(4407), 1, sym__val_number, - STATE(868), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(875), 1, - sym__expr_binary_expression, - STATE(881), 1, + STATE(4618), 1, + sym_unquoted, + STATE(4642), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(900), 1, - sym_unquoted, - STATE(3550), 1, - sym_comment, - ACTIONS(6412), 2, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6483), 1, + sym__expr_binary_expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -366276,85 +367952,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [151175] = 34, + [152649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5772), 1, + anon_sym_LBRACK, + ACTIONS(5776), 1, + anon_sym_DOLLAR, + ACTIONS(5778), 1, + anon_sym_DASH, + ACTIONS(5780), 1, + anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_PLUS, + ACTIONS(5792), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(6640), 1, + ACTIONS(6836), 1, aux_sym_unquoted_token1, - ACTIONS(7082), 1, - anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(6998), 1, + anon_sym_LPAREN, + ACTIONS(7000), 1, anon_sym_DOT, - ACTIONS(7086), 1, - anon_sym_PLUS, - ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3551), 1, + ACTIONS(7002), 1, + anon_sym_not, + STATE(3583), 1, sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, - sym__val_number_decimal, - STATE(4429), 1, + STATE(4393), 1, sym_val_number, - STATE(4448), 1, + STATE(4407), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4711), 1, - sym_unquoted, - STATE(4720), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(4950), 1, + STATE(4619), 1, + sym_unquoted, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, + sym__inter_single_quotes, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(5138), 1, + sym__val_number_decimal, + STATE(5728), 1, + sym__var, + STATE(6484), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7004), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -366367,85 +368043,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [151300] = 34, + [152774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5003), 1, + anon_sym_DOLLAR, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7026), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7028), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7032), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7034), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7036), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2457), 1, + sym_unquoted, + STATE(2479), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3584), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [152899] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(5005), 1, anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - ACTIONS(7110), 1, + ACTIONS(7014), 1, anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3552), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, sym__var, - STATE(4844), 1, + STATE(2237), 1, sym__val_number, - STATE(5076), 1, + STATE(2292), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(2448), 1, sym__expr_unary_minus, - STATE(5611), 1, + STATE(2458), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6560), 1, + STATE(2480), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3585), 1, + sym_comment, + ACTIONS(7020), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7030), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(5025), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(2455), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(2534), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -366458,85 +368225,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [151425] = 34, + [153024] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, - anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(5003), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(7012), 1, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(7028), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(7032), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(7034), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2459), 1, + sym_unquoted, + STATE(2481), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3586), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [153149] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, + anon_sym_DOLLAR, + ACTIONS(5005), 1, anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, ACTIONS(7006), 1, - anon_sym_DOT, + anon_sym_LBRACK, ACTIONS(7008), 1, - anon_sym_PLUS, + anon_sym_LPAREN, ACTIONS(7010), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(7012), 1, - anon_sym_null, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(1753), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(2045), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(2237), 1, sym__val_number, - STATE(868), 1, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, sym__expr_unary_minus, - STATE(876), 1, + STATE(2460), 1, + sym_unquoted, + STATE(2483), 1, sym__expr_binary_expression, - STATE(881), 1, - sym__str_double_quotes, - STATE(883), 1, + STATE(2497), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(2499), 1, sym__inter_double_quotes, - STATE(912), 1, - sym_unquoted, - STATE(3553), 1, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3587), 1, sym_comment, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(7020), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(2455), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(2534), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -366549,85 +368407,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [151550] = 34, + [153274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5003), 1, + anon_sym_DOLLAR, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7026), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7028), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7032), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7034), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7036), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2461), 1, + sym_unquoted, + STATE(2484), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3588), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [153399] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(5005), 1, anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - ACTIONS(7110), 1, + ACTIONS(7014), 1, anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3554), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, sym__var, - STATE(4844), 1, + STATE(2237), 1, sym__val_number, - STATE(5076), 1, + STATE(2292), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(2448), 1, sym__expr_unary_minus, - STATE(5612), 1, + STATE(2462), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6556), 1, + STATE(2485), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3589), 1, + sym_comment, + ACTIONS(7020), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7030), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(5025), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(2455), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(2534), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -366640,391 +368589,631 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [151675] = 4, - ACTIONS(105), 1, + [153524] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4460), 1, - sym__entry_separator, - STATE(3555), 1, - sym_comment, - ACTIONS(4458), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5003), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5005), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7014), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2464), 1, + sym_unquoted, + STATE(2486), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3590), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [151740] = 4, - ACTIONS(105), 1, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [153649] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4468), 1, - sym__entry_separator, - STATE(3556), 1, - sym_comment, - ACTIONS(4466), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5003), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5005), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7014), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2465), 1, + sym_unquoted, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(2535), 1, + sym__expr_binary_expression, + STATE(3591), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [151805] = 4, - ACTIONS(105), 1, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [153774] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4472), 1, - sym__entry_separator, - STATE(3557), 1, - sym_comment, - ACTIONS(4470), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5003), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5005), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7014), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2466), 1, + sym_unquoted, + STATE(2488), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3592), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [151870] = 4, - ACTIONS(105), 1, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [153899] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - STATE(3558), 1, - sym_comment, - ACTIONS(4474), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(5003), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(5005), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7014), 1, anon_sym_PLUS, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2431), 1, + sym_unquoted, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2489), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3593), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [154024] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5003), 1, + anon_sym_DOLLAR, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5019), 1, aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2468), 1, + sym_unquoted, + STATE(2490), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3594), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [151935] = 5, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [154149] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7118), 1, - anon_sym_DOT2, - STATE(3559), 1, - sym_comment, - ACTIONS(3923), 11, - anon_sym_LPAREN, + ACTIONS(5003), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(5005), 1, + anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, + anon_sym_DOT, + ACTIONS(7014), 1, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, + ACTIONS(7016), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, + aux_sym_unquoted_token1, + STATE(1753), 1, + sym__val_number_decimal, + STATE(2045), 1, + sym__var, + STATE(2237), 1, + sym__val_number, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, + sym__expr_unary_minus, + STATE(2469), 1, + sym_unquoted, + STATE(2491), 1, + sym__expr_binary_expression, + STATE(2497), 1, + sym__inter_single_quotes, + STATE(2499), 1, + sym__inter_double_quotes, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3595), 1, + sym_comment, + ACTIONS(7020), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7030), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3921), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(5025), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [152002] = 34, + STATE(2455), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2534), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [154274] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, - anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(5003), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, - sym_val_date, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(5005), 1, anon_sym_DASH, + ACTIONS(5019), 1, + aux_sym__val_number_decimal_token1, ACTIONS(7006), 1, - anon_sym_DOT, + anon_sym_LBRACK, ACTIONS(7008), 1, - anon_sym_PLUS, + anon_sym_LPAREN, ACTIONS(7010), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(7012), 1, - anon_sym_null, + anon_sym_DOT, + ACTIONS(7014), 1, + anon_sym_PLUS, ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + anon_sym_not, + ACTIONS(7018), 1, + anon_sym_null, + ACTIONS(7026), 1, + sym_val_date, + ACTIONS(7028), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7034), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7036), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(1753), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(2045), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(2237), 1, sym__val_number, - STATE(868), 1, + STATE(2292), 1, + sym_val_number, + STATE(2448), 1, sym__expr_unary_minus, - STATE(877), 1, + STATE(2470), 1, + sym_unquoted, + STATE(2492), 1, sym__expr_binary_expression, - STATE(881), 1, - sym__str_double_quotes, - STATE(883), 1, + STATE(2497), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(2499), 1, sym__inter_double_quotes, - STATE(917), 1, - sym_unquoted, - STATE(3560), 1, + STATE(2503), 1, + sym__str_double_quotes, + STATE(3596), 1, sym_comment, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(7020), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(7030), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7022), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7024), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(2455), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(2534), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -367037,85 +369226,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [152127] = 34, + [154399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6156), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6186), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6188), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7008), 1, - anon_sym_PLUS, - ACTIONS(7010), 1, - anon_sym_not, - ACTIONS(7012), 1, - anon_sym_null, - ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(7044), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(2674), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(2873), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(2970), 1, sym__val_number, - STATE(868), 1, - sym__expr_unary_minus, - STATE(878), 1, + STATE(3051), 1, + sym_val_number, + STATE(3597), 1, + sym_comment, + STATE(3739), 1, sym__expr_binary_expression, - STATE(881), 1, + STATE(3821), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(3830), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(3831), 1, sym__inter_double_quotes, - STATE(919), 1, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3847), 1, sym_unquoted, - STATE(3561), 1, - sym_comment, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6178), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(3846), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(3815), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -367128,85 +369317,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [152252] = 34, + [154524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(6156), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, sym_val_date, - ACTIONS(6410), 1, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(6414), 1, + ACTIONS(6186), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, + ACTIONS(6188), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7008), 1, - anon_sym_PLUS, - ACTIONS(7010), 1, - anon_sym_not, - ACTIONS(7012), 1, - anon_sym_null, - ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(7044), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(2674), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(2873), 1, sym__var, - STATE(828), 1, - sym_val_number, - STATE(832), 1, + STATE(2970), 1, sym__val_number, - STATE(868), 1, - sym__expr_unary_minus, - STATE(880), 1, + STATE(3051), 1, + sym_val_number, + STATE(3598), 1, + sym_comment, + STATE(3740), 1, sym__expr_binary_expression, - STATE(881), 1, + STATE(3821), 1, sym__str_double_quotes, - STATE(883), 1, + STATE(3830), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(3831), 1, sym__inter_double_quotes, - STATE(903), 1, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3848), 1, sym_unquoted, - STATE(3562), 1, - sym_comment, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(6178), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(3846), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(3815), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -367219,89 +369408,88 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [152377] = 35, + [154649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(6620), 1, + ACTIONS(6156), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, anon_sym_not, - ACTIONS(6632), 1, + ACTIONS(6168), 1, anon_sym_null, - ACTIONS(6838), 1, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(6840), 1, - anon_sym_DASH, - ACTIONS(6842), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(6844), 1, - anon_sym_PLUS, - ACTIONS(6846), 1, - aux_sym__val_number_decimal_token1, - STATE(3563), 1, - sym_comment, - STATE(4325), 1, - sym__var, - STATE(4389), 1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, sym__val_number_decimal, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(2873), 1, + sym__var, + STATE(2970), 1, sym__val_number, - STATE(4529), 1, - sym_val_variable, - STATE(4555), 1, - sym_expr_parenthesized, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(3051), 1, + sym_val_number, + STATE(3599), 1, + sym_comment, + STATE(3741), 1, + sym__expr_binary_expression, + STATE(3821), 1, sym__str_double_quotes, - STATE(4720), 1, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, sym__expr_unary_minus, - STATE(6690), 1, - sym__expr_binary_expression, - STATE(7236), 1, - sym_val_range, - STATE(7743), 1, - sym__expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(3849), 1, + sym_unquoted, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(5906), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(4721), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(5900), 6, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4655), 11, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, sym_val_nothing, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -367311,85 +369499,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [152504] = 34, + [154774] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6156), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3564), 1, - sym_comment, - STATE(5250), 1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2873), 1, sym__var, - STATE(5532), 1, + STATE(2970), 1, sym__val_number, - STATE(5535), 1, + STATE(3051), 1, sym_val_number, - STATE(6162), 1, + STATE(3600), 1, + sym_comment, + STATE(3742), 1, + sym__expr_binary_expression, + STATE(3821), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(3830), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(3831), 1, sym__inter_double_quotes, - STATE(6218), 1, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3850), 1, sym_unquoted, - STATE(6307), 1, - sym__expr_binary_expression, - ACTIONS(3816), 2, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6184), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(3846), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(3815), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -367402,573 +369590,449 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [152629] = 4, - ACTIONS(105), 1, + [154899] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4488), 1, - sym__entry_separator, - STATE(3565), 1, - sym_comment, - ACTIONS(4486), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [152694] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4046), 1, - sym__entry_separator, - STATE(3566), 1, - sym_comment, - ACTIONS(4044), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7040), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3601), 1, + sym_comment, + STATE(3743), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3851), 1, + sym_unquoted, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [152759] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4322), 1, - sym__entry_separator, - STATE(3567), 1, - sym_comment, - ACTIONS(4320), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [152824] = 4, - ACTIONS(105), 1, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155024] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4313), 1, - sym__entry_separator, - STATE(3568), 1, - sym_comment, - ACTIONS(4311), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [152889] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - sym__entry_separator, - STATE(3569), 1, - sym_comment, - ACTIONS(4307), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7040), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3602), 1, + sym_comment, + STATE(3746), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3852), 1, + sym_unquoted, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [152954] = 4, - ACTIONS(105), 1, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155149] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, - sym__entry_separator, - STATE(3570), 1, - sym_comment, - ACTIONS(4303), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153019] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4301), 1, - sym__entry_separator, - STATE(3571), 1, - sym_comment, - ACTIONS(4299), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7040), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3603), 1, + sym_comment, + STATE(3729), 1, + sym_unquoted, + STATE(3747), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153084] = 4, - ACTIONS(105), 1, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155274] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4297), 1, - sym__entry_separator, - STATE(3572), 1, - sym_comment, - ACTIONS(4295), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, + anon_sym_LPAREN, + ACTIONS(7040), 1, + anon_sym_DOT, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3604), 1, + sym_comment, + STATE(3749), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3854), 1, + sym_unquoted, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153149] = 34, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_null, - ACTIONS(3824), 1, - sym_val_date, - ACTIONS(3826), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3828), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(6152), 1, anon_sym_LBRACK, - ACTIONS(5642), 1, + ACTIONS(6156), 1, anon_sym_DOLLAR, - ACTIONS(5646), 1, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, anon_sym_LBRACE, - ACTIONS(5652), 1, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, anon_sym_not, - ACTIONS(5658), 1, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(6516), 1, - aux_sym_unquoted_token1, - ACTIONS(7096), 1, - anon_sym_DASH, - ACTIONS(7098), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7100), 1, - anon_sym_PLUS, - ACTIONS(7102), 1, - aux_sym__val_number_decimal_token1, - STATE(3573), 1, - sym_comment, - STATE(5250), 1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, sym__val_number_decimal, - STATE(5274), 1, + STATE(2873), 1, sym__var, - STATE(5532), 1, + STATE(2970), 1, sym__val_number, - STATE(5535), 1, + STATE(3051), 1, sym_val_number, - STATE(6162), 1, + STATE(3605), 1, + sym_comment, + STATE(3751), 1, + sym__expr_binary_expression, + STATE(3821), 1, sym__str_double_quotes, - STATE(6173), 1, - sym__expr_unary_minus, - STATE(6211), 1, + STATE(3830), 1, sym__inter_single_quotes, - STATE(6212), 1, + STATE(3831), 1, sym__inter_double_quotes, - STATE(6247), 1, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3855), 1, sym_unquoted, - STATE(6309), 1, - sym__expr_binary_expression, - ACTIONS(3816), 2, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(5660), 2, + ACTIONS(6184), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3822), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5656), 3, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7104), 3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6243), 4, + STATE(3846), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6250), 12, + STATE(3815), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -367981,85 +370045,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [153274] = 34, + [155524] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_DOLLAR, + ACTIONS(6158), 1, + anon_sym_DASH, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6172), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6182), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6186), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6188), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(7038), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3574), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, sym__var, - STATE(4844), 1, + STATE(2970), 1, sym__val_number, - STATE(5076), 1, + STATE(3051), 1, sym_val_number, - STATE(5113), 1, + STATE(3606), 1, + sym_comment, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(3821), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, sym__expr_unary_minus, - STATE(5614), 1, + STATE(3856), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6553), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(6184), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3846), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3815), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -368072,512 +370136,631 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [153399] = 4, - ACTIONS(105), 1, + [155649] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4271), 1, - sym__entry_separator, - STATE(3575), 1, - sym_comment, - ACTIONS(4269), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, + anon_sym_LPAREN, + ACTIONS(7040), 1, + anon_sym_DOT, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3607), 1, + sym_comment, + STATE(3753), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3857), 1, + sym_unquoted, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153464] = 4, - ACTIONS(105), 1, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155774] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4260), 1, - sym__entry_separator, - STATE(3576), 1, - sym_comment, - ACTIONS(4258), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, + anon_sym_LPAREN, + ACTIONS(7040), 1, + anon_sym_DOT, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3608), 1, + sym_comment, + STATE(3755), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3858), 1, + sym_unquoted, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153529] = 4, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [155899] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3577), 1, - sym_comment, - ACTIONS(1401), 12, - anon_sym_GT, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6156), 1, + anon_sym_DOLLAR, + ACTIONS(6158), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(6160), 1, + anon_sym_LBRACE, + ACTIONS(6164), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(6168), 1, + anon_sym_null, + ACTIONS(6172), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1403), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6180), 1, + sym_val_date, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + ACTIONS(6186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7038), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(7040), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(7044), 1, + aux_sym_unquoted_token1, + STATE(2674), 1, + sym__val_number_decimal, + STATE(2873), 1, + sym__var, + STATE(2970), 1, + sym__val_number, + STATE(3051), 1, + sym_val_number, + STATE(3609), 1, + sym_comment, + STATE(3756), 1, + sym__expr_binary_expression, + STATE(3821), 1, + sym__str_double_quotes, + STATE(3830), 1, + sym__inter_single_quotes, + STATE(3831), 1, + sym__inter_double_quotes, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(3859), 1, + sym_unquoted, + ACTIONS(6170), 2, anon_sym_true, anon_sym_false, + ACTIONS(6184), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6174), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6178), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7042), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [153594] = 4, + STATE(3846), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3815), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [156024] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3578), 1, - sym_comment, - ACTIONS(1252), 13, - anon_sym_GT, + ACTIONS(1119), 1, + anon_sym_DOLLAR, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1135), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1254), 41, + ACTIONS(7046), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7048), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7050), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(7054), 1, + anon_sym_PLUS, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(539), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(587), 1, + sym_unquoted, + STATE(3610), 1, + sym_comment, + ACTIONS(7060), 2, anon_sym_true, anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [153659] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [156149] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - sym__entry_separator, - STATE(3579), 1, - sym_comment, - ACTIONS(4244), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(541), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(588), 1, + sym_unquoted, + STATE(3611), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [153724] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4242), 1, - sym__entry_separator, - STATE(3580), 1, - sym_comment, - ACTIONS(4240), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153789] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [156274] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - sym__entry_separator, - STATE(3581), 1, - sym_comment, - ACTIONS(1259), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(543), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(589), 1, + sym_unquoted, + STATE(3612), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [153854] = 34, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [156399] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(1119), 1, + anon_sym_DOLLAR, + ACTIONS(1121), 1, + anon_sym_DASH, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, + anon_sym_DOT, + ACTIONS(7054), 1, + anon_sym_PLUS, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7066), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7068), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7072), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7074), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7076), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, - anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3582), 1, - sym_comment, - STATE(4538), 1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, sym__var, - STATE(4844), 1, + STATE(378), 1, sym__val_number, - STATE(5076), 1, + STATE(380), 1, sym_val_number, - STATE(5113), 1, + STATE(545), 1, + sym__expr_binary_expression, + STATE(556), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, sym__expr_unary_minus, - STATE(5618), 1, + STATE(590), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6551), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3613), 1, + sym_comment, + ACTIONS(7060), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1141), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(586), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(585), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -368590,207 +370773,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [153979] = 4, - ACTIONS(105), 1, + [156524] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4238), 1, - sym__entry_separator, - STATE(3583), 1, - sym_comment, - ACTIONS(4236), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(1135), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154044] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4230), 1, - sym__entry_separator, - STATE(3584), 1, - sym_comment, - ACTIONS(4228), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154109] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7066), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7068), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7072), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7074), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7076), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, - anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3585), 1, - sym_comment, - STATE(4538), 1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, sym__var, - STATE(4844), 1, + STATE(378), 1, sym__val_number, - STATE(5076), 1, + STATE(380), 1, sym_val_number, - STATE(5113), 1, + STATE(547), 1, + sym__expr_binary_expression, + STATE(556), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, sym__expr_unary_minus, - STATE(5619), 1, + STATE(591), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6543), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3614), 1, + sym_comment, + ACTIONS(7060), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1141), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(586), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(585), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -368803,85 +370864,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [154234] = 34, + [156649] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(1119), 1, + anon_sym_DOLLAR, + ACTIONS(1121), 1, + anon_sym_DASH, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, + anon_sym_DOT, + ACTIONS(7054), 1, + anon_sym_PLUS, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7066), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7068), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7072), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7074), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7076), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_DASH, - ACTIONS(7108), 1, - anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3586), 1, - sym_comment, - STATE(4538), 1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, sym__var, - STATE(4844), 1, + STATE(378), 1, sym__val_number, - STATE(5076), 1, + STATE(380), 1, sym_val_number, - STATE(5113), 1, + STATE(549), 1, + sym__expr_binary_expression, + STATE(556), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, sym__expr_unary_minus, - STATE(5621), 1, + STATE(592), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6533), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3615), 1, + sym_comment, + ACTIONS(7060), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1141), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(586), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(585), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -368894,1183 +370955,847 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [154359] = 4, - ACTIONS(105), 1, + [156774] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, - sym__entry_separator, - STATE(3587), 1, - sym_comment, - ACTIONS(4224), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(1135), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154424] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4222), 1, - sym__entry_separator, - STATE(3588), 1, - sym_comment, - ACTIONS(4220), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154489] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4202), 1, - sym__entry_separator, - STATE(3589), 1, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(551), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(594), 1, + sym_unquoted, + STATE(3616), 1, sym_comment, - ACTIONS(4200), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [154554] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4196), 1, - sym__entry_separator, - STATE(3590), 1, - sym_comment, - ACTIONS(4194), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154619] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [156899] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4192), 1, - sym__entry_separator, - STATE(3591), 1, - sym_comment, - ACTIONS(4190), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(1135), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154684] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4178), 1, - sym__entry_separator, - STATE(3592), 1, - sym_comment, - ACTIONS(4176), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154749] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4174), 1, - sym__entry_separator, - STATE(3593), 1, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(553), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(599), 1, + sym_unquoted, + STATE(3617), 1, sym_comment, - ACTIONS(4172), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [154814] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4170), 1, - sym__entry_separator, - STATE(3594), 1, - sym_comment, - ACTIONS(4168), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154879] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157024] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4160), 1, - sym__entry_separator, - STATE(3595), 1, - sym_comment, - ACTIONS(4158), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, + ACTIONS(1135), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [154944] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4148), 1, - sym__entry_separator, - STATE(3596), 1, - sym_comment, - ACTIONS(4146), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155009] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4144), 1, - sym__entry_separator, - STATE(3597), 1, - sym_comment, - ACTIONS(4142), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(555), 1, + sym__expr_binary_expression, + STATE(556), 1, + sym__str_double_quotes, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(601), 1, + sym_unquoted, + STATE(3618), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155074] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157149] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4140), 1, - sym__entry_separator, - STATE(3598), 1, - sym_comment, - ACTIONS(4138), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(556), 1, + sym__str_double_quotes, + STATE(557), 1, + sym__expr_binary_expression, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(602), 1, + sym_unquoted, + STATE(3619), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155139] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157274] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4136), 1, - sym__entry_separator, - STATE(3599), 1, - sym_comment, - ACTIONS(4134), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(556), 1, + sym__str_double_quotes, + STATE(559), 1, + sym__expr_binary_expression, + STATE(569), 1, + sym_unquoted, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(3620), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155204] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157399] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4128), 1, - sym__entry_separator, - STATE(3600), 1, - sym_comment, - ACTIONS(4126), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(530), 1, + sym_unquoted, + STATE(556), 1, + sym__str_double_quotes, + STATE(561), 1, + sym__expr_binary_expression, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(3621), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155269] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157524] = 34, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4124), 1, - sym__entry_separator, - STATE(3601), 1, - sym_comment, - ACTIONS(4122), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1121), 1, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(1135), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7046), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_LPAREN, + ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(7052), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + ACTIONS(7054), 1, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + ACTIONS(7056), 1, + anon_sym_not, + ACTIONS(7058), 1, + anon_sym_null, + ACTIONS(7066), 1, + sym_val_date, + ACTIONS(7068), 1, + anon_sym_DQUOTE, + ACTIONS(7072), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7074), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7076), 1, + aux_sym_unquoted_token1, + STATE(318), 1, + sym__val_number_decimal, + STATE(349), 1, + sym__var, + STATE(378), 1, + sym__val_number, + STATE(380), 1, + sym_val_number, + STATE(531), 1, + sym_unquoted, + STATE(556), 1, + sym__str_double_quotes, + STATE(563), 1, + sym__expr_binary_expression, + STATE(577), 1, + sym__inter_single_quotes, + STATE(582), 1, + sym__inter_double_quotes, + STATE(583), 1, + sym__expr_unary_minus, + STATE(3622), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(7070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1141), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7062), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7064), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155334] = 4, - ACTIONS(105), 1, + STATE(586), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(585), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [157649] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4120), 1, - sym__entry_separator, - STATE(3602), 1, + STATE(3623), 1, sym_comment, - ACTIONS(4118), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1257), 2, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, + anon_sym_PLUS, + ACTIONS(1255), 5, + anon_sym_GT, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT2, + ACTIONS(1251), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1253), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [155399] = 4, - ACTIONS(105), 1, + ACTIONS(1385), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157720] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4116), 1, - sym__entry_separator, - STATE(3603), 1, + STATE(3624), 1, sym_comment, - ACTIONS(4114), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, + ACTIONS(1374), 13, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [155464] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4107), 1, - sym__entry_separator, - STATE(3604), 1, - sym_comment, - ACTIONS(4105), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1376), 41, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__record_key_token2, - [155529] = 34, + [157785] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7080), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, ACTIONS(7082), 1, - anon_sym_DASH, + anon_sym_LBRACE, ACTIONS(7084), 1, anon_sym_DOT, ACTIONS(7086), 1, anon_sym_PLUS, ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3605), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, + anon_sym_not, + ACTIONS(7090), 1, + anon_sym_null, + ACTIONS(7098), 1, + sym_val_date, + ACTIONS(7100), 1, + anon_sym_DQUOTE, + ACTIONS(7104), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7106), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7108), 1, + aux_sym_unquoted_token1, + STATE(280), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(313), 1, + sym__var, + STATE(325), 1, sym_val_number, - STATE(4448), 1, + STATE(366), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(4594), 1, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(4712), 1, - sym_unquoted, - STATE(4720), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(4953), 1, + STATE(490), 1, + sym_unquoted, + STATE(506), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(3625), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(7102), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370083,85 +371808,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [155654] = 34, + [157910] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6380), 1, - anon_sym_LBRACK, - ACTIONS(6384), 1, + ACTIONS(993), 1, anon_sym_DOLLAR, - ACTIONS(6388), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, - sym_val_date, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6416), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7002), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, + ACTIONS(995), 1, anon_sym_DASH, - ACTIONS(7006), 1, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, anon_sym_DOT, - ACTIONS(7008), 1, + ACTIONS(7086), 1, anon_sym_PLUS, - ACTIONS(7010), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(7012), 1, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(7016), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7020), 1, + ACTIONS(7098), 1, + sym_val_date, + ACTIONS(7100), 1, + anon_sym_DQUOTE, + ACTIONS(7104), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7106), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - STATE(772), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(788), 1, + STATE(313), 1, sym__var, - STATE(828), 1, + STATE(325), 1, sym_val_number, - STATE(832), 1, + STATE(366), 1, sym__val_number, - STATE(851), 1, - sym_unquoted, - STATE(868), 1, - sym__expr_unary_minus, - STATE(881), 1, - sym__str_double_quotes, - STATE(882), 1, - sym__expr_binary_expression, - STATE(883), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(884), 1, + STATE(426), 1, sym__inter_double_quotes, - STATE(3606), 1, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, + sym__expr_unary_minus, + STATE(491), 1, + sym_unquoted, + STATE(507), 1, + sym__expr_binary_expression, + STATE(3626), 1, sym_comment, - ACTIONS(6412), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7014), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(6402), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6406), 3, + ACTIONS(7102), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7018), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(858), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(853), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370174,85 +371899,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [155779] = 34, + [158035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, + anon_sym_DOT, + ACTIONS(7086), 1, + anon_sym_PLUS, + ACTIONS(7088), 1, + anon_sym_not, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7106), 1, - anon_sym_DASH, + anon_sym_DOLLAR_DQUOTE, ACTIONS(7108), 1, - anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3607), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(280), 1, + sym__val_number_decimal, + STATE(313), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(325), 1, sym_val_number, - STATE(5113), 1, + STATE(366), 1, + sym__val_number, + STATE(425), 1, + sym__inter_single_quotes, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(5627), 1, + STATE(492), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6525), 1, + STATE(508), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3627), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7094), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370265,85 +371990,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [155904] = 34, + [158160] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7080), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, ACTIONS(7082), 1, - anon_sym_DASH, + anon_sym_LBRACE, ACTIONS(7084), 1, anon_sym_DOT, ACTIONS(7086), 1, anon_sym_PLUS, ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3608), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, + anon_sym_not, + ACTIONS(7090), 1, + anon_sym_null, + ACTIONS(7098), 1, + sym_val_date, + ACTIONS(7100), 1, + anon_sym_DQUOTE, + ACTIONS(7104), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7106), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7108), 1, + aux_sym_unquoted_token1, + STATE(280), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(313), 1, + sym__var, + STATE(325), 1, sym_val_number, - STATE(4448), 1, + STATE(366), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(4594), 1, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(4713), 1, - sym_unquoted, - STATE(4720), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(4955), 1, + STATE(493), 1, + sym_unquoted, + STATE(509), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(3628), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(7102), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370356,85 +372081,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156029] = 34, + [158285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, - sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7080), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, ACTIONS(7082), 1, - anon_sym_DASH, + anon_sym_LBRACE, ACTIONS(7084), 1, anon_sym_DOT, ACTIONS(7086), 1, anon_sym_PLUS, ACTIONS(7088), 1, - aux_sym__val_number_decimal_token1, - STATE(3609), 1, - sym_comment, - STATE(4354), 1, - sym__var, - STATE(4414), 1, + anon_sym_not, + ACTIONS(7090), 1, + anon_sym_null, + ACTIONS(7098), 1, + sym_val_date, + ACTIONS(7100), 1, + anon_sym_DQUOTE, + ACTIONS(7104), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7106), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7108), 1, + aux_sym_unquoted_token1, + STATE(280), 1, sym__val_number_decimal, - STATE(4429), 1, + STATE(313), 1, + sym__var, + STATE(325), 1, sym_val_number, - STATE(4448), 1, + STATE(366), 1, sym__val_number, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(4594), 1, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(4714), 1, - sym_unquoted, - STATE(4720), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(4957), 1, + STATE(494), 1, + sym_unquoted, + STATE(510), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + STATE(3629), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(7102), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7090), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370447,85 +372172,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156154] = 34, + [158410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, + anon_sym_DOT, + ACTIONS(7086), 1, + anon_sym_PLUS, + ACTIONS(7088), 1, + anon_sym_not, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7106), 1, - anon_sym_DASH, + anon_sym_DOLLAR_DQUOTE, ACTIONS(7108), 1, - anon_sym_DOT, - ACTIONS(7110), 1, - anon_sym_PLUS, - ACTIONS(7112), 1, - aux_sym__val_number_decimal_token1, - STATE(3610), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(280), 1, + sym__val_number_decimal, + STATE(313), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(325), 1, sym_val_number, - STATE(5113), 1, + STATE(366), 1, + sym__val_number, + STATE(425), 1, + sym__inter_single_quotes, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(5629), 1, + STATE(495), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(5809), 1, - sym__val_number_decimal, - STATE(6511), 1, + STATE(511), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3630), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7094), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7114), 3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370538,146 +372263,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156279] = 4, + [158535] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3611), 1, - sym_comment, - ACTIONS(1189), 14, + ACTIONS(993), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(995), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(1009), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1191), 40, + ACTIONS(7078), 1, anon_sym_LBRACK, + ACTIONS(7080), 1, anon_sym_LPAREN, + ACTIONS(7082), 1, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(7084), 1, + anon_sym_DOT, + ACTIONS(7086), 1, + anon_sym_PLUS, + ACTIONS(7088), 1, + anon_sym_not, + ACTIONS(7090), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(7098), 1, sym_val_date, + ACTIONS(7100), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [156344] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - ACTIONS(5922), 1, - anon_sym_DASH, - ACTIONS(5936), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, - anon_sym_LPAREN, - ACTIONS(7024), 1, - anon_sym_DOT, - ACTIONS(7026), 1, - anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3612), 1, - sym_comment, - STATE(5012), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(5199), 1, + STATE(313), 1, sym__var, - STATE(5445), 1, + STATE(325), 1, sym_val_number, - STATE(5500), 1, + STATE(366), 1, sym__val_number, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(6159), 1, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, + sym__expr_unary_minus, + STATE(496), 1, sym_unquoted, - STATE(6161), 1, + STATE(512), 1, sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, + STATE(3631), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3369), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3363), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6438), 3, + ACTIONS(7094), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7030), 3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6168), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(6201), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370690,146 +372354,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156469] = 4, + [158660] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3613), 1, - sym_comment, - ACTIONS(1282), 13, - anon_sym_GT, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1009), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1284), 41, + ACTIONS(7078), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7080), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7082), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7084), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [156534] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7086), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(313), 1, sym__var, - STATE(2768), 1, + STATE(325), 1, sym_val_number, - STATE(2906), 1, + STATE(366), 1, sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3286), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(426), 1, sym__inter_double_quotes, - STATE(3532), 1, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, + sym__expr_unary_minus, + STATE(497), 1, sym_unquoted, - STATE(3614), 1, + STATE(513), 1, + sym__expr_binary_expression, + STATE(3632), 1, sym_comment, - STATE(3615), 1, - sym__expr_unary_minus, - ACTIONS(5418), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370842,146 +372445,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156659] = 4, + [158785] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3615), 1, - sym_comment, - ACTIONS(1393), 12, - anon_sym_GT, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1009), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1395), 42, + ACTIONS(7078), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7080), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(7082), 1, anon_sym_LBRACE, + ACTIONS(7084), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [156724] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7086), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(313), 1, sym__var, - STATE(2768), 1, + STATE(325), 1, sym_val_number, - STATE(2906), 1, + STATE(366), 1, sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3284), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(426), 1, sym__inter_double_quotes, - STATE(3528), 1, - sym_unquoted, - STATE(3615), 1, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, sym__expr_unary_minus, - STATE(3616), 1, + STATE(498), 1, + sym_unquoted, + STATE(514), 1, + sym__expr_binary_expression, + STATE(3633), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -370994,207 +372536,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [156849] = 4, + [158910] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3617), 1, - sym_comment, - ACTIONS(2998), 12, - anon_sym_LPAREN, + ACTIONS(993), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2996), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [156914] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3618), 1, - sym_comment, - ACTIONS(1338), 13, - anon_sym_GT, + ACTIONS(995), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1009), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1340), 41, + ACTIONS(7078), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7080), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7082), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7084), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [156979] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7086), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(313), 1, sym__var, - STATE(2768), 1, + STATE(325), 1, sym_val_number, - STATE(2906), 1, + STATE(366), 1, sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3281), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(426), 1, sym__inter_double_quotes, - STATE(3522), 1, - sym_unquoted, - STATE(3615), 1, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, sym__expr_unary_minus, - STATE(3619), 1, + STATE(499), 1, + sym_unquoted, + STATE(515), 1, + sym__expr_binary_expression, + STATE(3634), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371207,85 +372627,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157104] = 34, + [159035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(993), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, + ACTIONS(995), 1, anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7084), 1, + anon_sym_DOT, + ACTIONS(7086), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(280), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(313), 1, sym__var, - STATE(2768), 1, + STATE(325), 1, sym_val_number, - STATE(2906), 1, + STATE(366), 1, sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3279), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(425), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(426), 1, sym__inter_double_quotes, - STATE(3512), 1, - sym_unquoted, - STATE(3615), 1, + STATE(457), 1, + sym__str_double_quotes, + STATE(486), 1, sym__expr_unary_minus, - STATE(3620), 1, + STATE(500), 1, + sym_unquoted, + STATE(516), 1, + sym__expr_binary_expression, + STATE(3635), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7094), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371298,146 +372718,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157229] = 4, + [159160] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3621), 1, - sym_comment, - ACTIONS(1338), 13, - anon_sym_GT, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1009), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1340), 41, + ACTIONS(7078), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7080), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7082), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7084), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [157294] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(7086), 1, + anon_sym_PLUS, + ACTIONS(7088), 1, + anon_sym_not, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(3622), 1, - sym_comment, - STATE(4538), 1, + STATE(280), 1, + sym__val_number_decimal, + STATE(313), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(325), 1, sym_val_number, - STATE(5113), 1, + STATE(366), 1, + sym__val_number, + STATE(425), 1, + sym__inter_single_quotes, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(5567), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5629), 1, + STATE(501), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6495), 1, + STATE(517), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3636), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7094), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371450,85 +372809,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157419] = 34, + [159285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(993), 1, + anon_sym_DOLLAR, + ACTIONS(995), 1, + anon_sym_DASH, + ACTIONS(1009), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7078), 1, + anon_sym_LBRACK, + ACTIONS(7080), 1, + anon_sym_LPAREN, + ACTIONS(7082), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, + anon_sym_DOT, + ACTIONS(7086), 1, + anon_sym_PLUS, + ACTIONS(7088), 1, + anon_sym_not, + ACTIONS(7090), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7098), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7104), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7106), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7108), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - anon_sym_DASH, - ACTIONS(7132), 1, - anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, - ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3623), 1, - sym_comment, - STATE(4538), 1, + STATE(280), 1, + sym__val_number_decimal, + STATE(313), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(325), 1, sym_val_number, - STATE(5113), 1, + STATE(366), 1, + sym__val_number, + STATE(425), 1, + sym__inter_single_quotes, + STATE(426), 1, + sym__inter_double_quotes, + STATE(457), 1, sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(5603), 1, + STATE(502), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6380), 1, + STATE(518), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3637), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7102), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(1015), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7094), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(7096), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(489), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(447), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371541,146 +372900,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157544] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3624), 1, - sym_comment, - ACTIONS(1222), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1224), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [157609] = 34, + [159410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7132), 1, - anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3625), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3638), 1, sym_comment, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(4844), 1, + STATE(4725), 1, sym__val_number, - STATE(5076), 1, + STATE(4942), 1, sym_val_number, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5292), 1, + STATE(5137), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5604), 1, + STATE(5707), 1, sym_unquoted, - STATE(5770), 1, + STATE(5801), 1, sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6377), 1, + STATE(6458), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371693,85 +372991,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157734] = 34, + [159535] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7132), 1, - anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3626), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3639), 1, sym_comment, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(4844), 1, + STATE(4725), 1, sym__val_number, - STATE(5076), 1, + STATE(4942), 1, sym_val_number, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5292), 1, + STATE(5137), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5636), 1, + STATE(5712), 1, sym_unquoted, - STATE(5770), 1, + STATE(5801), 1, sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6376), 1, + STATE(6459), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371784,85 +373082,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157859] = 34, + [159660] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5976), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7132), 1, - anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3627), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3640), 1, sym_comment, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(4844), 1, + STATE(4725), 1, sym__val_number, - STATE(5076), 1, + STATE(4942), 1, sym_val_number, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5292), 1, + STATE(5137), 1, sym__val_number_decimal, - STATE(5567), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5609), 1, + STATE(5716), 1, sym_unquoted, - STATE(5770), 1, + STATE(5801), 1, sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6396), 1, + STATE(6460), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371875,85 +373173,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [157984] = 34, + [159785] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3628), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3641), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4701), 1, + STATE(5372), 1, sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5339), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6461), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -371966,85 +373264,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158109] = 34, + [159910] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3629), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3642), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, sym__str_double_quotes, - STATE(4702), 1, + STATE(5137), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5388), 1, sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5336), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6462), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372057,85 +373355,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158234] = 34, + [160035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3630), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3643), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4703), 1, + STATE(5407), 1, sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5321), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6463), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372148,85 +373446,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158359] = 34, + [160160] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3631), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3644), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4705), 1, + STATE(5417), 1, sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5317), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6464), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372239,85 +373537,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158484] = 34, + [160285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3632), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3645), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4706), 1, + STATE(5454), 1, sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5316), 1, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6465), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372330,85 +373628,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158609] = 34, + [160410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3633), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3646), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4707), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5315), 1, + STATE(5603), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6466), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372421,85 +373719,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158734] = 34, + [160535] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(6620), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(6624), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(6192), 1, anon_sym_DASH, - ACTIONS(7142), 1, - anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(6196), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - STATE(3634), 1, + ACTIONS(6496), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + anon_sym_DOT, + STATE(3647), 1, sym_comment, - STATE(4354), 1, + STATE(4471), 1, sym__var, - STATE(4429), 1, - sym_val_number, - STATE(4448), 1, + STATE(4725), 1, sym__val_number, - STATE(4467), 1, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4708), 1, - sym_unquoted, - STATE(4720), 1, + STATE(5579), 1, sym__expr_unary_minus, - STATE(5314), 1, + STATE(5651), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6467), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(3971), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -372512,577 +373810,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [158859] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7152), 1, - anon_sym_RBRACE, - ACTIONS(7154), 1, - sym__entry_separator, - STATE(3635), 1, - sym_comment, - ACTIONS(7150), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [158926] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_DOT2, - STATE(3636), 1, - sym_comment, - ACTIONS(3917), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3915), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [158993] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7158), 1, - anon_sym_DOT2, - STATE(3637), 1, - sym_comment, - ACTIONS(3911), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3909), 42, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [159060] = 5, + [160660] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7160), 1, - aux_sym_unquoted_token5, - STATE(3638), 1, - sym_comment, - ACTIONS(1193), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1195), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(3231), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3241), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - [159127] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3639), 1, - sym_comment, - ACTIONS(1305), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(1307), 41, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, + ACTIONS(5971), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [159192] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3640), 1, - sym_comment, - ACTIONS(1228), 14, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5977), 1, anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1230), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [159257] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3641), 1, - sym_comment, - ACTIONS(1385), 12, - anon_sym_GT, + ACTIONS(6192), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(6196), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1387), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6496), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(6498), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + STATE(3648), 1, + sym_comment, + STATE(4471), 1, + sym__var, + STATE(4725), 1, + sym__val_number, + STATE(4942), 1, + sym_val_number, + STATE(4950), 1, + sym__str_double_quotes, + STATE(5137), 1, + sym__val_number_decimal, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5655), 1, + sym_unquoted, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6468), 1, + sym__expr_binary_expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - [159322] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3642), 1, - sym_comment, - ACTIONS(1389), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1391), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [159387] = 34, + STATE(5813), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(5381), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [160785] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(5984), 1, + ACTIONS(6192), 1, + anon_sym_DASH, + ACTIONS(6196), 1, + anon_sym_PLUS, + ACTIONS(6198), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, + ACTIONS(6496), 1, anon_sym_LPAREN, - ACTIONS(7128), 1, + ACTIONS(6498), 1, anon_sym_DOT, - STATE(3643), 1, + STATE(3649), 1, sym_comment, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(4844), 1, + STATE(4725), 1, sym__val_number, - STATE(5076), 1, + STATE(4942), 1, sym_val_number, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, + STATE(5137), 1, sym__val_number_decimal, - STATE(5627), 1, + STATE(5369), 1, + sym__inter_single_quotes, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5689), 1, sym_unquoted, - STATE(5770), 1, + STATE(5801), 1, sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6494), 1, + STATE(6469), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(3971), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, + ACTIONS(6200), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(5813), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(5381), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373095,269 +373992,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [159512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3644), 1, - sym_comment, - ACTIONS(1397), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1399), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [159577] = 4, + [160910] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3645), 1, - sym_comment, - ACTIONS(1358), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1360), 42, + ACTIONS(6384), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6388), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6392), 1, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6412), 1, sym_val_date, + ACTIONS(6414), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [159642] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5828), 1, - aux_sym_unquoted_token3, - STATE(3646), 1, - sym_comment, - ACTIONS(825), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(823), 45, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(7110), 1, + anon_sym_LPAREN, + ACTIONS(7112), 1, + anon_sym_DASH, + ACTIONS(7114), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_PLUS, + ACTIONS(7118), 1, anon_sym_not, + ACTIONS(7120), 1, anon_sym_null, + ACTIONS(7124), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, + sym__var, + STATE(810), 1, + sym_val_number, + STATE(817), 1, + sym__val_number, + STATE(867), 1, + sym__expr_binary_expression, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(911), 1, + sym_unquoted, + STATE(3650), 1, + sym_comment, + ACTIONS(6416), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - [159709] = 34, + ACTIONS(7126), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(902), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(918), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [161035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7132), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3647), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(810), 1, sym_val_number, - STATE(5113), 1, + STATE(817), 1, + sym__val_number, + STATE(869), 1, + sym__expr_binary_expression, + STATE(891), 1, sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(892), 1, sym__expr_unary_minus, - STATE(5610), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(895), 1, sym__inter_single_quotes, - STATE(6342), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(899), 1, + sym__inter_double_quotes, + STATE(919), 1, + sym_unquoted, + STATE(3651), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373370,85 +374174,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [159834] = 34, + [161160] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7132), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3648), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(810), 1, sym_val_number, - STATE(5113), 1, + STATE(817), 1, + sym__val_number, + STATE(870), 1, + sym__expr_binary_expression, + STATE(888), 1, + sym_unquoted, + STATE(891), 1, sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(892), 1, sym__expr_unary_minus, - STATE(5611), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(895), 1, sym__inter_single_quotes, - STATE(6289), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3652), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373461,85 +374265,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [159959] = 34, + [161285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3649), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4709), 1, + STATE(859), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5308), 1, + STATE(871), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3653), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373552,85 +374356,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160084] = 34, + [161410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3650), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4710), 1, + STATE(862), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5306), 1, + STATE(872), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3654), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373643,85 +374447,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160209] = 34, + [161535] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3651), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4711), 1, + STATE(873), 1, + sym__expr_binary_expression, + STATE(881), 1, sym_unquoted, - STATE(4720), 1, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, sym__expr_unary_minus, - STATE(5304), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3655), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373734,85 +374538,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160334] = 34, + [161660] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3652), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, + STATE(874), 1, + sym__expr_binary_expression, + STATE(891), 1, sym__str_double_quotes, - STATE(4712), 1, - sym_unquoted, - STATE(4720), 1, + STATE(892), 1, sym__expr_unary_minus, - STATE(5303), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(895), 1, + sym__inter_single_quotes, + STATE(896), 1, + sym_unquoted, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3656), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373825,85 +374629,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160459] = 34, + [161785] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7132), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3653), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(810), 1, sym_val_number, - STATE(5113), 1, + STATE(817), 1, + sym__val_number, + STATE(875), 1, + sym__expr_binary_expression, + STATE(891), 1, sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(892), 1, sym__expr_unary_minus, - STATE(5612), 1, + STATE(895), 1, + sym__inter_single_quotes, + STATE(898), 1, sym_unquoted, - STATE(5770), 1, + STATE(899), 1, sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6287), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(3657), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -373916,85 +374720,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160584] = 34, + [161910] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(7130), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7132), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7134), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7136), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3654), 1, - sym_comment, - STATE(4538), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(810), 1, sym_val_number, - STATE(5113), 1, + STATE(817), 1, + sym__val_number, + STATE(876), 1, + sym__expr_binary_expression, + STATE(891), 1, sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(892), 1, sym__expr_unary_minus, - STATE(5614), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(895), 1, sym__inter_single_quotes, - STATE(6286), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(899), 1, + sym__inter_double_quotes, + STATE(912), 1, + sym_unquoted, + STATE(3658), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374007,146 +374811,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160709] = 4, + [162035] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3655), 1, - sym_comment, - ACTIONS(1358), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1360), 41, + ACTIONS(6384), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6388), 1, anon_sym_DOLLAR, + ACTIONS(6392), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6412), 1, + sym_val_date, + ACTIONS(6414), 1, + anon_sym_DQUOTE, + ACTIONS(6418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6420), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7110), 1, + anon_sym_LPAREN, + ACTIONS(7112), 1, + anon_sym_DASH, + ACTIONS(7114), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(7116), 1, + anon_sym_PLUS, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, anon_sym_null, + ACTIONS(7124), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, + sym__var, + STATE(810), 1, + sym_val_number, + STATE(817), 1, + sym__val_number, + STATE(877), 1, + sym__expr_binary_expression, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(920), 1, + sym_unquoted, + STATE(3659), 1, + sym_comment, + ACTIONS(6416), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [160774] = 34, + STATE(902), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(918), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [162160] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3656), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4713), 1, + STATE(850), 1, + sym__expr_binary_expression, + STATE(852), 1, sym_unquoted, - STATE(4720), 1, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, sym__expr_unary_minus, - STATE(5302), 1, - sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3660), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374159,85 +374993,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [160899] = 34, + [162285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(5910), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(5914), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5916), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(6616), 1, - anon_sym_LBRACK, - ACTIONS(6618), 1, + ACTIONS(7110), 1, anon_sym_LPAREN, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(6632), 1, - anon_sym_null, - ACTIONS(6640), 1, - aux_sym_unquoted_token1, - ACTIONS(7140), 1, + ACTIONS(7112), 1, anon_sym_DASH, - ACTIONS(7142), 1, + ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7144), 1, + ACTIONS(7116), 1, anon_sym_PLUS, - ACTIONS(7146), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, aux_sym__val_number_decimal_token1, - STATE(3657), 1, - sym_comment, - STATE(4354), 1, + ACTIONS(7128), 1, + aux_sym_unquoted_token1, + STATE(758), 1, + sym__val_number_decimal, + STATE(791), 1, sym__var, - STATE(4429), 1, + STATE(810), 1, sym_val_number, - STATE(4448), 1, + STATE(817), 1, sym__val_number, - STATE(4467), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym__inter_double_quotes, - STATE(4589), 1, - sym__inter_single_quotes, - STATE(4594), 1, - sym__str_double_quotes, - STATE(4714), 1, + STATE(854), 1, sym_unquoted, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5301), 1, + STATE(879), 1, sym__expr_binary_expression, - ACTIONS(5912), 2, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, + sym__expr_unary_minus, + STATE(895), 1, + sym__inter_single_quotes, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3661), 1, + sym_comment, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6634), 2, + ACTIONS(7122), 2, anon_sym_true, anon_sym_false, - ACTIONS(5900), 3, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5906), 3, + ACTIONS(6410), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7148), 3, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(4715), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(4655), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374250,85 +375084,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161024] = 34, + [162410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, - anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + ACTIONS(6384), 1, anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(6388), 1, + anon_sym_DOLLAR, + ACTIONS(6392), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, - anon_sym_PLUS, - ACTIONS(7172), 1, - anon_sym_not, - ACTIONS(7174), 1, - anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(6412), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7110), 1, + anon_sym_LPAREN, + ACTIONS(7112), 1, + anon_sym_DASH, + ACTIONS(7114), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_PLUS, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(7120), 1, + anon_sym_null, + ACTIONS(7124), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7128), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(758), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(791), 1, sym__var, - STATE(2677), 1, + STATE(810), 1, sym_val_number, - STATE(2715), 1, + STATE(817), 1, sym__val_number, - STATE(2984), 1, + STATE(856), 1, sym_unquoted, - STATE(3035), 1, + STATE(880), 1, sym__expr_binary_expression, - STATE(3051), 1, + STATE(891), 1, + sym__str_double_quotes, + STATE(892), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, + STATE(895), 1, sym__inter_single_quotes, - STATE(3082), 1, - sym__str_double_quotes, - STATE(3658), 1, + STATE(899), 1, + sym__inter_double_quotes, + STATE(3662), 1, sym_comment, - ACTIONS(7176), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(6416), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6406), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(6410), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7126), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(902), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(918), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374341,146 +375175,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161149] = 4, + [162535] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3659), 1, - sym_comment, - ACTIONS(1193), 12, - anon_sym_GT, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, + anon_sym_null, + ACTIONS(5490), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1195), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5498), 1, + sym_val_date, + ACTIONS(5500), 1, + anon_sym_DQUOTE, + ACTIONS(5504), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5506), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7130), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(7132), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, + ACTIONS(7136), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, + sym__var, + STATE(2883), 1, + sym__val_number, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3148), 1, + sym_unquoted, + STATE(3165), 1, + sym__expr_binary_expression, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3663), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, + ACTIONS(5502), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [161214] = 34, + STATE(3147), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(3252), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [162660] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2985), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3149), 1, sym_unquoted, - STATE(3031), 1, + STATE(3166), 1, sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3253), 1, sym__str_double_quotes, - STATE(3660), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3664), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374493,85 +375357,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161339] = 34, + [162785] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7130), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3661), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, sym__var, - STATE(4844), 1, + STATE(2883), 1, sym__val_number, - STATE(5076), 1, + STATE(2927), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3145), 1, sym__expr_unary_minus, - STATE(5618), 1, + STATE(3150), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6284), 1, + STATE(3167), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3665), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374584,146 +375448,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161464] = 4, + [162910] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3662), 1, - sym_comment, - ACTIONS(1354), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1356), 42, + ACTIONS(5470), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [161529] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2986), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3151), 1, sym_unquoted, - STATE(3029), 1, + STATE(3168), 1, sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3253), 1, sym__str_double_quotes, - STATE(3663), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3666), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374736,85 +375539,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161654] = 34, + [163035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7130), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3664), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, sym__var, - STATE(4844), 1, + STATE(2883), 1, sym__val_number, - STATE(5076), 1, + STATE(2927), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3145), 1, sym__expr_unary_minus, - STATE(5619), 1, + STATE(3152), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6283), 1, + STATE(3169), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3667), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374827,85 +375630,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161779] = 34, + [163160] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7130), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3665), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, sym__var, - STATE(4844), 1, + STATE(2883), 1, sym__val_number, - STATE(5076), 1, + STATE(2927), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3145), 1, sym__expr_unary_minus, - STATE(5621), 1, + STATE(3153), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6282), 1, + STATE(3170), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3668), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -374918,85 +375721,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [161904] = 34, + [163285] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7130), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3666), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, sym__var, - STATE(4844), 1, + STATE(2883), 1, sym__val_number, - STATE(5076), 1, + STATE(2927), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3145), 1, sym__expr_unary_minus, - STATE(5627), 1, + STATE(3154), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6281), 1, + STATE(3171), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3669), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375009,85 +375812,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162029] = 34, + [163410] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_DOLLAR, + ACTIONS(5476), 1, + anon_sym_DASH, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(5482), 1, + anon_sym_PLUS, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7078), 1, - anon_sym_LPAREN, ACTIONS(7130), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7134), 1, - anon_sym_PLUS, ACTIONS(7136), 1, - aux_sym__val_number_decimal_token1, - STATE(3667), 1, - sym_comment, - STATE(4538), 1, + aux_sym_unquoted_token1, + STATE(2592), 1, + sym__val_number_decimal, + STATE(2683), 1, sym__var, - STATE(4844), 1, + STATE(2883), 1, sym__val_number, - STATE(5076), 1, + STATE(2927), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5292), 1, - sym__val_number_decimal, - STATE(5567), 1, + STATE(3145), 1, sym__expr_unary_minus, - STATE(5629), 1, + STATE(3155), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6280), 1, + STATE(3172), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3670), 1, + sym_comment, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7138), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375100,85 +375903,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162154] = 34, + [163535] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2987), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3156), 1, sym_unquoted, - STATE(3028), 1, + STATE(3173), 1, sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3253), 1, sym__str_double_quotes, - STATE(3668), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3671), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375191,146 +375994,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162279] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3669), 1, - sym_comment, - ACTIONS(1350), 12, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1352), 42, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [162344] = 34, + [163660] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, + ACTIONS(5470), 1, anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(5420), 1, + ACTIONS(5490), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, + ACTIONS(7130), 1, anon_sym_LPAREN, - ACTIONS(7122), 1, + ACTIONS(7132), 1, anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(2683), 1, sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, + STATE(2883), 1, sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3277), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3157), 1, + sym_unquoted, + STATE(3174), 1, sym__expr_binary_expression, - STATE(3426), 1, + STATE(3253), 1, + sym__str_double_quotes, + STATE(3278), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(3279), 1, sym__inter_double_quotes, - STATE(3511), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3670), 1, + STATE(3672), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(5496), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375343,146 +376085,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162469] = 4, + [163785] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3671), 1, - sym_comment, - ACTIONS(1113), 13, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1115), 41, + ACTIONS(5470), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [162534] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2988), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(3158), 1, sym_unquoted, - STATE(3023), 1, + STATE(3175), 1, sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3253), 1, sym__str_double_quotes, - STATE(3672), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3673), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375495,85 +376176,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162659] = 34, + [163910] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2981), 1, - sym__expr_binary_expression, - STATE(2991), 1, - sym_unquoted, - STATE(3051), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3159), 1, + sym_unquoted, + STATE(3176), 1, + sym__expr_binary_expression, + STATE(3253), 1, sym__str_double_quotes, - STATE(3673), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3674), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375586,85 +376267,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162784] = 34, + [164035] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5470), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5476), 1, anon_sym_DASH, - ACTIONS(5186), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(5482), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(5484), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(5486), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(5490), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5498), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(5504), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(5506), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7130), 1, + anon_sym_LPAREN, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(7136), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2592), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2683), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2883), 1, sym__val_number, - STATE(2959), 1, - sym__expr_binary_expression, - STATE(2992), 1, - sym_unquoted, - STATE(3051), 1, + STATE(2927), 1, + sym_val_number, + STATE(3145), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3160), 1, + sym_unquoted, + STATE(3177), 1, + sym__expr_binary_expression, + STATE(3253), 1, sym__str_double_quotes, - STATE(3674), 1, + STATE(3278), 1, + sym__inter_single_quotes, + STATE(3279), 1, + sym__inter_double_quotes, + STATE(3675), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(5488), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(5502), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(5492), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(5496), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7134), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(3147), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(3252), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375677,12 +376358,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [162909] = 4, + [164160] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3675), 1, + STATE(3676), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(1381), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -375696,7 +376377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1344), 41, + ACTIONS(1383), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -375738,85 +376419,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [162974] = 34, + [164225] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5186), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + ACTIONS(7138), 1, anon_sym_LBRACK, - ACTIONS(7164), 1, + ACTIONS(7140), 1, anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7144), 1, anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2561), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2698), 1, sym__val_number, - STATE(2955), 1, - sym__expr_binary_expression, - STATE(2993), 1, - sym_unquoted, - STATE(3051), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(2988), 1, + sym_unquoted, + STATE(2989), 1, + sym__expr_binary_expression, + STATE(3011), 1, sym__str_double_quotes, - STATE(3676), 1, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3677), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375829,85 +376510,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163099] = 34, + [164350] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5186), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + ACTIONS(7138), 1, anon_sym_LBRACK, - ACTIONS(7164), 1, + ACTIONS(7140), 1, anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7144), 1, anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2561), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2698), 1, sym__val_number, - STATE(2994), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(2993), 1, sym_unquoted, - STATE(3018), 1, + STATE(2998), 1, sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3011), 1, sym__str_double_quotes, - STATE(3677), 1, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3678), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -375920,85 +376601,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163224] = 34, + [164475] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(2755), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(2769), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + ACTIONS(7138), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(7140), 1, anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, + ACTIONS(7144), 1, anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(6980), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(6982), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(6992), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(2561), 1, sym__var, - STATE(1216), 1, + STATE(2698), 1, sym__val_number, - STATE(1237), 1, + STATE(2699), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1441), 1, + STATE(3009), 1, sym__expr_binary_expression, - STATE(1442), 1, + STATE(3011), 1, + sym__str_double_quotes, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3074), 1, sym_unquoted, - STATE(3678), 1, + STATE(3679), 1, sym_comment, - ACTIONS(6984), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376011,237 +376692,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163349] = 34, + [164600] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3339), 1, - anon_sym_LBRACK, - ACTIONS(3343), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(3349), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_null, - ACTIONS(3365), 1, - sym_val_date, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_unquoted_token1, - ACTIONS(5922), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5936), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7022), 1, - anon_sym_LPAREN, - ACTIONS(7024), 1, - anon_sym_DOT, - ACTIONS(7026), 1, - anon_sym_PLUS, - ACTIONS(7028), 1, - anon_sym_not, - STATE(3679), 1, - sym_comment, - STATE(5012), 1, - sym__val_number_decimal, - STATE(5199), 1, - sym__var, - STATE(5445), 1, - sym_val_number, - STATE(5500), 1, - sym__val_number, - STATE(6064), 1, - sym__str_double_quotes, - STATE(6091), 1, - sym__inter_double_quotes, - STATE(6093), 1, - sym__inter_single_quotes, - STATE(6164), 1, - sym_unquoted, - STATE(6166), 1, - sym__expr_binary_expression, - STATE(6193), 1, - sym__expr_unary_minus, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3363), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6438), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(7030), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6168), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(6201), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [163474] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1254), 1, - sym__entry_separator, - STATE(3680), 1, - sym_comment, - ACTIONS(1252), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_RBRACE, + ACTIONS(7142), 1, + anon_sym_LBRACE, + ACTIONS(7144), 1, anon_sym_DOT, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__record_key_token2, - [163539] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(7146), 1, + anon_sym_PLUS, + ACTIONS(7148), 1, + anon_sym_not, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, - anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(3681), 1, - sym_comment, - STATE(4538), 1, + STATE(2456), 1, + sym__val_number_decimal, + STATE(2561), 1, sym__var, - STATE(4844), 1, + STATE(2698), 1, sym__val_number, - STATE(5076), 1, + STATE(2699), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5621), 1, + STATE(2956), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3011), 1, + sym__str_double_quotes, + STATE(3015), 1, sym__inter_single_quotes, - STATE(6499), 1, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3019), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(3680), 1, + sym_comment, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376254,85 +376783,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163664] = 34, + [164725] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(6139), 1, + ACTIONS(5147), 1, + anon_sym_DASH, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, + anon_sym_LBRACE, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, + anon_sym_PLUS, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(6141), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(6151), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(6153), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2627), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2709), 1, + STATE(2561), 1, sym__var, - STATE(2776), 1, + STATE(2698), 1, sym__val_number, - STATE(2778), 1, + STATE(2699), 1, sym_val_number, - STATE(3108), 1, - sym__expr_binary_expression, - STATE(3230), 1, - sym_unquoted, - STATE(3304), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(3613), 1, + STATE(2984), 1, + sym_unquoted, + STATE(3011), 1, sym__str_double_quotes, - STATE(3618), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3621), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3682), 1, + STATE(3036), 1, + sym__expr_binary_expression, + STATE(3681), 1, sym_comment, - ACTIONS(6143), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3326), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376345,85 +376874,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163789] = 34, + [164850] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(6139), 1, + ACTIONS(5147), 1, + anon_sym_DASH, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, + anon_sym_LBRACE, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, + anon_sym_PLUS, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(6141), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(6151), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(6153), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2627), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2709), 1, + STATE(2561), 1, sym__var, - STATE(2776), 1, + STATE(2698), 1, sym__val_number, - STATE(2778), 1, + STATE(2699), 1, sym_val_number, - STATE(3106), 1, - sym__expr_binary_expression, - STATE(3229), 1, - sym_unquoted, - STATE(3304), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(3613), 1, + STATE(2985), 1, + sym_unquoted, + STATE(3011), 1, sym__str_double_quotes, - STATE(3618), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3621), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3683), 1, + STATE(3055), 1, + sym__expr_binary_expression, + STATE(3682), 1, sym_comment, - ACTIONS(6143), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3326), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376436,146 +376965,176 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [163914] = 4, + [164975] = 34, ACTIONS(3), 1, anon_sym_POUND, - STATE(3684), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_GT, + ACTIONS(5145), 1, + anon_sym_DOLLAR, + ACTIONS(5147), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1348), 41, + ACTIONS(7138), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(7140), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7142), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7144), 1, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(7146), 1, + anon_sym_PLUS, + ACTIONS(7148), 1, + anon_sym_not, + ACTIONS(7150), 1, anon_sym_null, + ACTIONS(7158), 1, + sym_val_date, + ACTIONS(7160), 1, + anon_sym_DQUOTE, + ACTIONS(7164), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7166), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7168), 1, + aux_sym_unquoted_token1, + STATE(2456), 1, + sym__val_number_decimal, + STATE(2561), 1, + sym__var, + STATE(2698), 1, + sym__val_number, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3003), 1, + sym_unquoted, + STATE(3011), 1, + sym__str_double_quotes, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3058), 1, + sym__expr_binary_expression, + STATE(3683), 1, + sym_comment, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, + ACTIONS(7162), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5167), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [163979] = 34, + STATE(2994), 4, + sym_expr_unary, + sym_expr_binary, + sym_expr_parenthesized, + sym__value, + STATE(2972), 12, + sym_val_nothing, + sym_val_bool, + sym_val_variable, + 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, + [165100] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(2561), 1, sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, + STATE(2698), 1, sym__val_number, - STATE(3184), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3005), 1, + sym_unquoted, + STATE(3011), 1, sym__str_double_quotes, - STATE(3275), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3509), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3685), 1, + STATE(3061), 1, + sym__expr_binary_expression, + STATE(3684), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376588,85 +377147,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164104] = 34, + [165225] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(2755), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(2769), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + ACTIONS(7138), 1, anon_sym_LBRACK, - ACTIONS(6972), 1, + ACTIONS(7140), 1, anon_sym_LPAREN, - ACTIONS(6974), 1, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, + ACTIONS(7144), 1, anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(6980), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(6982), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(6990), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(6992), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(6996), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(1127), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(1194), 1, + STATE(2561), 1, sym__var, - STATE(1216), 1, + STATE(2698), 1, sym__val_number, - STATE(1237), 1, + STATE(2699), 1, sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, + STATE(3006), 1, + sym_unquoted, + STATE(3011), 1, + sym__str_double_quotes, + STATE(3015), 1, sym__inter_single_quotes, - STATE(1438), 1, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3064), 1, sym__expr_binary_expression, - STATE(1439), 1, - sym_unquoted, - STATE(3686), 1, + STATE(3685), 1, sym_comment, - ACTIONS(6984), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6986), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(1449), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376679,85 +377238,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164229] = 34, + [165350] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(2561), 1, sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, + STATE(2698), 1, sym__val_number, - STATE(3184), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3007), 1, + sym_unquoted, + STATE(3011), 1, sym__str_double_quotes, - STATE(3273), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3504), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3687), 1, + STATE(3068), 1, + sym__expr_binary_expression, + STATE(3686), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376770,85 +377329,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164354] = 34, + [165475] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5186), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + ACTIONS(7138), 1, anon_sym_LBRACK, - ACTIONS(7164), 1, + ACTIONS(7140), 1, anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7144), 1, anon_sym_DOT, - ACTIONS(7170), 1, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(7172), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(7174), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(7182), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(7184), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2432), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2580), 1, + STATE(2561), 1, sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, + STATE(2698), 1, sym__val_number, - STATE(2995), 1, - sym_unquoted, - STATE(3016), 1, - sym__expr_binary_expression, - STATE(3051), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, + STATE(3011), 1, sym__str_double_quotes, - STATE(3688), 1, + STATE(3015), 1, + sym__inter_single_quotes, + STATE(3016), 1, + sym__inter_double_quotes, + STATE(3032), 1, + sym_unquoted, + STATE(3072), 1, + sym__expr_binary_expression, + STATE(3687), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5192), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7178), 3, + ACTIONS(7154), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3044), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376861,85 +377420,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164479] = 34, + [165600] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, + ACTIONS(5147), 1, anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(5430), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2613), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(2561), 1, sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, + STATE(2698), 1, sym__val_number, - STATE(3184), 1, + STATE(2699), 1, + sym_val_number, + STATE(2971), 1, + sym__expr_unary_minus, + STATE(3011), 1, sym__str_double_quotes, - STATE(3271), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3501), 1, + STATE(3054), 1, sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3689), 1, + STATE(3079), 1, + sym__expr_binary_expression, + STATE(3688), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3088), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -376952,85 +377511,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164604] = 34, + [165725] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR, - ACTIONS(6139), 1, + ACTIONS(5147), 1, + anon_sym_DASH, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7138), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_LPAREN, + ACTIONS(7142), 1, + anon_sym_LBRACE, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, + anon_sym_PLUS, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(6141), 1, + ACTIONS(7150), 1, anon_sym_null, - ACTIONS(6151), 1, + ACTIONS(7158), 1, sym_val_date, - ACTIONS(6153), 1, + ACTIONS(7160), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, + ACTIONS(7168), 1, aux_sym_unquoted_token1, - STATE(2627), 1, + STATE(2456), 1, sym__val_number_decimal, - STATE(2709), 1, + STATE(2561), 1, sym__var, - STATE(2776), 1, + STATE(2698), 1, sym__val_number, - STATE(2778), 1, + STATE(2699), 1, sym_val_number, - STATE(3105), 1, - sym__expr_binary_expression, - STATE(3227), 1, - sym_unquoted, - STATE(3304), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(3613), 1, + STATE(3011), 1, sym__str_double_quotes, - STATE(3618), 1, + STATE(3015), 1, sym__inter_single_quotes, - STATE(3621), 1, + STATE(3016), 1, sym__inter_double_quotes, - STATE(3690), 1, + STATE(3027), 1, + sym__expr_binary_expression, + STATE(3056), 1, + sym_unquoted, + STATE(3689), 1, sym_comment, - ACTIONS(6143), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, + ACTIONS(7162), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, + ACTIONS(5167), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, + ACTIONS(7154), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(7156), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, + STATE(2994), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(3326), 12, + STATE(2972), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -377043,15 +377602,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [164729] = 4, + [165850] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3691), 1, + STATE(3690), 1, sym_comment, - ACTIONS(1033), 12, + ACTIONS(1255), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -377060,15 +377620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1035), 42, + aux_sym_unquoted_token1, + ACTIONS(1385), 41, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -377104,32 +377663,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [164794] = 5, + [165915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT2, - STATE(3692), 1, + STATE(3691), 1, sym_comment, - ACTIONS(1102), 14, - anon_sym_DOLLAR, + ACTIONS(1387), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 39, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -377164,454 +377724,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [164861] = 34, + [165980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, + STATE(3692), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2769), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6974), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6976), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, - aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, - sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, - sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1434), 1, - sym__expr_binary_expression, - STATE(1436), 1, - sym_unquoted, - STATE(3693), 1, - sym_comment, - ACTIONS(6984), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, + [166045] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3693), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6986), 3, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1449), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [164986] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, + STATE(3694), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2769), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6974), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6976), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, - aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, - sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, - sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1432), 1, - sym__expr_binary_expression, - STATE(1433), 1, - sym_unquoted, - STATE(3694), 1, - sym_comment, - ACTIONS(6984), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2775), 3, + [166175] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3695), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(6986), 3, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1449), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165111] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, + STATE(3696), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6151), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [166305] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3697), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(7204), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3101), 1, - sym__expr_binary_expression, - STATE(3226), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3695), 1, - sym_comment, - ACTIONS(6143), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7206), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165236] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, + STATE(3698), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2769), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6974), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6976), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, - aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, - sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, - sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1430), 1, - sym__expr_binary_expression, - STATE(1431), 1, - sym_unquoted, - STATE(3696), 1, - sym_comment, - ACTIONS(6984), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1449), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165361] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166435] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3241), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5963), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(5967), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(5977), 1, anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, + ACTIONS(6116), 1, + anon_sym_DASH, + ACTIONS(6118), 1, anon_sym_DOT, - STATE(3697), 1, + ACTIONS(6120), 1, + anon_sym_PLUS, + ACTIONS(6128), 1, + aux_sym__val_number_decimal_token1, + STATE(3699), 1, sym_comment, - STATE(4538), 1, + STATE(4552), 1, sym__var, - STATE(4844), 1, + STATE(4725), 1, sym__val_number, - STATE(5076), 1, + STATE(4942), 1, sym_val_number, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, + STATE(5145), 1, sym__val_number_decimal, - STATE(5603), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(5369), 1, sym__inter_single_quotes, - STATE(6557), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(5581), 1, + sym_expr_parenthesized, + STATE(5657), 1, + sym_val_variable, + STATE(5801), 1, + sym__inter_double_quotes, + STATE(6677), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(7237), 1, + sym_val_range, + STATE(10235), 1, + sym__expression, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(5557), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3971), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, + STATE(5381), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -377621,376 +378243,195 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [165486] = 34, + [166562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, + STATE(3700), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2769), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6974), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6976), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, - aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, - sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, - sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1428), 1, - sym__expr_binary_expression, - STATE(1429), 1, - sym_unquoted, - STATE(3698), 1, - sym_comment, - ACTIONS(6984), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1449), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165611] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, + STATE(3701), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5186), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(7164), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7166), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(7168), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7170), 1, - anon_sym_PLUS, - ACTIONS(7172), 1, - anon_sym_not, - ACTIONS(7174), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(7182), 1, - sym_val_date, - ACTIONS(7184), 1, - anon_sym_DQUOTE, - ACTIONS(7188), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, - aux_sym_unquoted_token1, - STATE(2432), 1, - sym__val_number_decimal, - STATE(2580), 1, - sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, - sym__val_number, - STATE(2997), 1, - sym_unquoted, - STATE(3015), 1, - sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, - sym__str_double_quotes, - STATE(3699), 1, - sym_comment, - ACTIONS(7176), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3044), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165736] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2753), 1, - anon_sym_DOLLAR, - ACTIONS(2755), 1, + STATE(3702), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2769), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(6970), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(6972), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6974), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(6976), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(6978), 1, - anon_sym_PLUS, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(6982), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6990), 1, - sym_val_date, - ACTIONS(6992), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6998), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7000), 1, - aux_sym_unquoted_token1, - STATE(1127), 1, - sym__val_number_decimal, - STATE(1194), 1, - sym__var, - STATE(1216), 1, - sym__val_number, - STATE(1237), 1, - sym_val_number, - STATE(1351), 1, - sym__str_double_quotes, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(1405), 1, - sym__expr_binary_expression, - STATE(1410), 1, - sym__inter_double_quotes, - STATE(1411), 1, - sym__inter_single_quotes, - STATE(1425), 1, - sym_unquoted, - STATE(3700), 1, - sym_comment, - ACTIONS(6984), 2, anon_sym_true, anon_sym_false, - ACTIONS(6994), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2775), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(6986), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6988), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1380), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(1449), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165861] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_not, - ACTIONS(5416), 1, - anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, sym_val_date, - ACTIONS(5430), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__val_number_decimal, - STATE(2680), 1, - sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, - sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3269), 1, - sym__expr_binary_expression, - STATE(3426), 1, - sym__inter_single_quotes, - STATE(3427), 1, - sym__inter_double_quotes, - STATE(3500), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3701), 1, - sym_comment, - ACTIONS(5418), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5432), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7124), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3533), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3088), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [165986] = 4, + [166757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3702), 1, + STATE(3703), 1, sym_comment, - ACTIONS(1354), 13, + ACTIONS(1387), 13, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -378004,7 +378445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1356), 41, + ACTIONS(1389), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -378046,179 +378487,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [166051] = 34, + [166822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, + STATE(3704), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5186), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1389), 41, anon_sym_LBRACK, - ACTIONS(7164), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7166), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(7168), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7170), 1, - anon_sym_PLUS, - ACTIONS(7172), 1, - anon_sym_not, - ACTIONS(7174), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(7182), 1, - sym_val_date, - ACTIONS(7184), 1, - anon_sym_DQUOTE, - ACTIONS(7188), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, - aux_sym_unquoted_token1, - STATE(2432), 1, - sym__val_number_decimal, - STATE(2580), 1, - sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, - sym__val_number, - STATE(2999), 1, - sym_unquoted, - STATE(3008), 1, - sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, - sym__str_double_quotes, - STATE(3703), 1, - sym_comment, - ACTIONS(7176), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3044), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [166176] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [166887] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5984), 1, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(3704), 1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3705), 1, sym_comment, - STATE(4538), 1, + STATE(5249), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(5113), 1, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5604), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6544), 1, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(7237), 1, + sym_val_range, + STATE(8049), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, + STATE(6172), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378228,179 +378640,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [166301] = 34, + [167014] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, + ACTIONS(5802), 1, + sym_val_date, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5416), 1, + ACTIONS(6828), 1, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, - sym_val_date, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(7122), 1, + ACTIONS(6864), 1, + anon_sym_DASH, + ACTIONS(6866), 1, anon_sym_DOT, - ACTIONS(7126), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, + ACTIONS(6868), 1, + anon_sym_PLUS, + ACTIONS(6870), 1, + aux_sym__val_number_decimal_token1, + STATE(3706), 1, + sym_comment, + STATE(4350), 1, sym__val_number_decimal, - STATE(2680), 1, + STATE(4352), 1, sym__var, - STATE(2768), 1, + STATE(4393), 1, sym_val_number, - STATE(2906), 1, + STATE(4407), 1, sym__val_number, - STATE(3184), 1, + STATE(4486), 1, + sym_val_variable, + STATE(4519), 1, + sym_expr_parenthesized, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(4642), 1, sym__str_double_quotes, - STATE(3267), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(4656), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(4657), 1, sym__inter_double_quotes, - STATE(3497), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3705), 1, - sym_comment, - ACTIONS(5418), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5432), 2, + STATE(6722), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(7576), 1, + sym__expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3533), 4, + STATE(4598), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3088), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [166426] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_not, - ACTIONS(5416), 1, - anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, - sym_val_date, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__val_number_decimal, - STATE(2680), 1, - sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, - sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3265), 1, - sym__expr_binary_expression, - STATE(3426), 1, - sym__inter_single_quotes, - STATE(3427), 1, - sym__inter_double_quotes, - STATE(3493), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3706), 1, - sym_comment, - ACTIONS(5418), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5432), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5422), 3, + ACTIONS(5794), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5426), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7124), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3088), 12, + STATE(4706), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378410,88 +378732,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [166551] = 34, + [167141] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, + ACTIONS(3027), 1, + anon_sym_null, + ACTIONS(3039), 1, + sym_val_date, + ACTIONS(3045), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(5414), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5416), 1, - anon_sym_null, - ACTIONS(5420), 1, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, - sym_val_date, - ACTIONS(5430), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_DOT, - ACTIONS(7126), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__val_number_decimal, - STATE(2680), 1, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3707), 1, + sym_comment, + STATE(5249), 1, sym__var, - STATE(2768), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(2906), 1, + STATE(5646), 1, sym__val_number, - STATE(3184), 1, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(3263), 1, - sym__expr_binary_expression, - STATE(3426), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(3427), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(3490), 1, - sym_unquoted, - STATE(3615), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(3707), 1, - sym_comment, - ACTIONS(5418), 2, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(8056), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5422), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(5426), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3533), 4, + STATE(6139), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3088), 12, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378501,88 +378824,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [166676] = 34, + [167268] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(5576), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, + ACTIONS(5586), 1, + anon_sym_DOT, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(5984), 1, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, STATE(3708), 1, sym_comment, - STATE(4538), 1, + STATE(5249), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(5113), 1, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5636), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(6542), 1, + STATE(6126), 1, + sym__inter_double_quotes, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, + STATE(7237), 1, + sym_val_range, + STATE(8057), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(6139), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5594), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378592,88 +378916,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [166801] = 34, + [167395] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, + ACTIONS(3027), 1, anon_sym_null, - ACTIONS(6151), 1, + ACTIONS(3039), 1, sym_val_date, - ACTIONS(6153), 1, - anon_sym_DQUOTE, - ACTIONS(6157), 1, + ACTIONS(3045), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, + ACTIONS(5576), 1, + anon_sym_LBRACK, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, + ACTIONS(5580), 1, + anon_sym_DOLLAR, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(7200), 1, + ACTIONS(5586), 1, anon_sym_DOT, - ACTIONS(7202), 1, + ACTIONS(5588), 1, anon_sym_PLUS, - ACTIONS(7204), 1, + ACTIONS(5590), 1, + anon_sym_not, + ACTIONS(5592), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(6552), 1, + anon_sym_DASH, + STATE(3709), 1, + sym_comment, + STATE(5249), 1, sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, + STATE(5434), 1, + sym__val_number_decimal, + STATE(5642), 1, sym_val_number, - STATE(3118), 1, - sym__expr_binary_expression, - STATE(3205), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, + STATE(5646), 1, + sym__val_number, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(5871), 1, + sym_val_variable, + STATE(6077), 1, sym__str_double_quotes, - STATE(3618), 1, + STATE(6105), 1, sym__inter_single_quotes, - STATE(3621), 1, + STATE(6126), 1, sym__inter_double_quotes, - STATE(3709), 1, - sym_comment, - ACTIONS(6143), 2, + STATE(6143), 1, + sym__expr_unary_minus, + STATE(6693), 1, + sym__expr_binary_expression, + STATE(7237), 1, + sym_val_range, + STATE(8063), 1, + sym__expression, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, + ACTIONS(5598), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, + ACTIONS(3037), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3231), 4, + STATE(6139), 3, sym_expr_unary, sym_expr_binary, - sym_expr_parenthesized, sym__value, - STATE(3326), 12, + ACTIONS(5594), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6172), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378683,88 +379008,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [166926] = 34, + [167522] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(7128), 1, + ACTIONS(6864), 1, + anon_sym_DASH, + ACTIONS(6866), 1, anon_sym_DOT, + ACTIONS(6868), 1, + anon_sym_PLUS, + ACTIONS(6870), 1, + aux_sym__val_number_decimal_token1, STATE(3710), 1, sym_comment, - STATE(4538), 1, + STATE(4350), 1, + sym__val_number_decimal, + STATE(4352), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4486), 1, + sym_val_variable, + STATE(4519), 1, + sym_expr_parenthesized, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5619), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6509), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(6751), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(7237), 1, + sym_val_range, + STATE(7576), 1, + sym__expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(4598), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5794), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, + STATE(4706), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378774,88 +379100,89 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [167051] = 34, + [167649] = 35, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(7128), 1, + ACTIONS(6864), 1, + anon_sym_DASH, + ACTIONS(6866), 1, anon_sym_DOT, + ACTIONS(6868), 1, + anon_sym_PLUS, + ACTIONS(6870), 1, + aux_sym__val_number_decimal_token1, STATE(3711), 1, sym_comment, - STATE(4538), 1, + STATE(4350), 1, + sym__val_number_decimal, + STATE(4352), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4486), 1, + sym_val_variable, + STATE(4519), 1, + sym_expr_parenthesized, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5609), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6527), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(6752), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + STATE(7237), 1, + sym_val_range, + STATE(7576), 1, + sym__expression, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5800), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3884), 3, + STATE(4598), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(5794), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, + STATE(4706), 11, sym_val_nothing, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -378865,26 +379192,43 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [167176] = 4, + [167776] = 11, ACTIONS(3), 1, anon_sym_POUND, STATE(3712), 1, sym_comment, - ACTIONS(1350), 13, + ACTIONS(7170), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, + anon_sym_PLUS, + ACTIONS(7174), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 7, + anon_sym_in, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1352), 41, + ACTIONS(1393), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -378892,10 +379236,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [167855] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3713), 1, + sym_comment, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 9, + anon_sym_GT, + anon_sym_in, + anon_sym__, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 37, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -378926,722 +379325,1048 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [167241] = 34, + [167928] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, + ACTIONS(7184), 1, + anon_sym_in, + STATE(3714), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 28, anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6151), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [168011] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3715), 1, + sym_comment, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 11, + anon_sym_GT, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, + anon_sym_in, + anon_sym__, anon_sym_PLUS, - ACTIONS(7204), 1, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3099), 1, - sym__expr_binary_expression, - STATE(3223), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3713), 1, - sym_comment, - ACTIONS(6143), 2, + ACTIONS(1393), 37, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168082] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3716), 1, + sym_comment, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, + aux_sym_unquoted_token1, + ACTIONS(1393), 39, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167366] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168149] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, + STATE(3717), 1, + sym_comment, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1391), 9, + anon_sym_GT, + anon_sym_in, + anon_sym__, + anon_sym_LT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 35, anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6151), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [168224] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_in, + STATE(3718), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, anon_sym_PLUS, - ACTIONS(7204), 1, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3089), 1, - sym__expr_binary_expression, - STATE(3208), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3714), 1, - sym_comment, - ACTIONS(6143), 2, + ACTIONS(1393), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168309] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + STATE(3719), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, + aux_sym_unquoted_token1, + ACTIONS(1393), 25, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167491] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168396] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5400), 1, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + STATE(3720), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 24, anon_sym_LBRACK, - ACTIONS(5404), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DASH, - ACTIONS(5408), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_not, - ACTIONS(5416), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(5420), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5428), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(5430), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7120), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [168485] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + ACTIONS(7194), 1, + anon_sym_bit_DASHor, + STATE(3721), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 23, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7122), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7126), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__val_number_decimal, - STATE(2680), 1, - sym__var, - STATE(2768), 1, - sym_val_number, - STATE(2906), 1, - sym__val_number, - STATE(3184), 1, - sym__str_double_quotes, - STATE(3261), 1, - sym__expr_binary_expression, - STATE(3426), 1, - sym__inter_single_quotes, - STATE(3427), 1, - sym__inter_double_quotes, - STATE(3486), 1, - sym_unquoted, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(3715), 1, - sym_comment, - ACTIONS(5418), 2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5432), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5422), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5426), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168576] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + ACTIONS(7194), 1, + anon_sym_bit_DASHor, + ACTIONS(7196), 1, + anon_sym_and, + STATE(3722), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7124), 3, + aux_sym_unquoted_token1, + ACTIONS(1393), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3533), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3088), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167616] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168669] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + ACTIONS(7194), 1, + anon_sym_bit_DASHor, + ACTIONS(7196), 1, + anon_sym_and, + ACTIONS(7198), 1, + anon_sym_xor, + STATE(3723), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1393), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_or, anon_sym_null, - ACTIONS(3080), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(3082), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [168764] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + anon_sym_in, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + ACTIONS(7194), 1, + anon_sym_bit_DASHor, + ACTIONS(7196), 1, + anon_sym_and, + ACTIONS(7198), 1, + anon_sym_xor, + ACTIONS(7200), 1, + anon_sym_or, + STATE(3724), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7186), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(1393), 20, anon_sym_LBRACK, - ACTIONS(5972), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, + anon_sym_RBRACE, anon_sym_DOT, - STATE(3716), 1, - sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5610), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6526), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167741] = 34, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [168861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, + STATE(3725), 1, + sym_comment, + ACTIONS(1421), 13, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5186), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, aux_sym__val_number_decimal_token1, - ACTIONS(7162), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1423), 41, anon_sym_LBRACK, - ACTIONS(7164), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7166), 1, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(7168), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7170), 1, - anon_sym_PLUS, - ACTIONS(7172), 1, - anon_sym_not, - ACTIONS(7174), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(7182), 1, - sym_val_date, - ACTIONS(7184), 1, - anon_sym_DQUOTE, - ACTIONS(7188), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7190), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7192), 1, - aux_sym_unquoted_token1, - STATE(2432), 1, - sym__val_number_decimal, - STATE(2580), 1, - sym__var, - STATE(2677), 1, - sym_val_number, - STATE(2715), 1, - sym__val_number, - STATE(2983), 1, - sym_unquoted, - STATE(3037), 1, - sym__expr_binary_expression, - STATE(3051), 1, - sym__expr_unary_minus, - STATE(3078), 1, - sym__inter_double_quotes, - STATE(3079), 1, - sym__inter_single_quotes, - STATE(3082), 1, - sym__str_double_quotes, - STATE(3717), 1, - sym_comment, - ACTIONS(7176), 2, anon_sym_true, anon_sym_false, - ACTIONS(7186), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5192), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7178), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(7180), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3000), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3044), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167866] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, sym_val_date, - ACTIONS(3082), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [168926] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7204), 1, + sym__entry_separator, + STATE(3726), 1, + sym_comment, + ACTIONS(7202), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5974), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5980), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(3718), 1, - sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5618), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6513), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [167991] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [168991] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7208), 1, + sym__entry_separator, + STATE(3727), 1, + sym_comment, + ACTIONS(7206), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(5974), 1, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5980), 1, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, anon_sym_PLUS, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(5984), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(3719), 1, - sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5611), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6524), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168116] = 34, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__record_key_token2, + [169056] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(5802), 1, sym_val_date, - ACTIONS(3082), 1, + ACTIONS(5804), 1, anon_sym_DQUOTE, - ACTIONS(3086), 1, + ACTIONS(5808), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, + ACTIONS(5810), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, + ACTIONS(6812), 1, anon_sym_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN, + ACTIONS(6816), 1, anon_sym_DOLLAR, - ACTIONS(5974), 1, - anon_sym_DASH, - ACTIONS(5976), 1, + ACTIONS(6820), 1, anon_sym_LBRACE, - ACTIONS(5980), 1, - anon_sym_PLUS, - ACTIONS(5982), 1, + ACTIONS(6826), 1, anon_sym_not, - ACTIONS(5984), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, - anon_sym_LPAREN, - ACTIONS(7128), 1, + ACTIONS(6828), 1, + anon_sym_null, + ACTIONS(6836), 1, + aux_sym_unquoted_token1, + ACTIONS(6852), 1, + anon_sym_DASH, + ACTIONS(6854), 1, anon_sym_DOT, - STATE(3720), 1, + ACTIONS(6856), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + aux_sym__val_number_decimal_token1, + STATE(3728), 1, sym_comment, - STATE(4538), 1, + STATE(4251), 1, sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, + STATE(4277), 1, + sym__val_number_decimal, + STATE(4393), 1, sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, + STATE(4407), 1, + sym__val_number, + STATE(4599), 1, sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5614), 1, + STATE(4616), 1, sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, + STATE(4642), 1, + sym__str_double_quotes, + STATE(4656), 1, sym__inter_single_quotes, - STATE(6517), 1, + STATE(4657), 1, + sym__inter_double_quotes, + STATE(4867), 1, sym__expr_binary_expression, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(5806), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5794), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, + ACTIONS(5800), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(6860), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, + STATE(4606), 4, sym_expr_unary, sym_expr_binary, sym_expr_parenthesized, sym__value, - STATE(5744), 12, + STATE(4706), 12, sym_val_nothing, sym_val_bool, sym_val_variable, @@ -379654,396 +380379,222 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [168241] = 34, + [169181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3080), 1, - sym_val_date, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3086), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3088), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5972), 1, + STATE(3729), 1, + sym_comment, + ACTIONS(1387), 13, anon_sym_DOLLAR, - ACTIONS(5974), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(5976), 1, - anon_sym_LBRACE, - ACTIONS(5980), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(5982), 1, + anon_sym_LT2, anon_sym_not, - ACTIONS(5984), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7078), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7128), 1, + anon_sym_LBRACE, anon_sym_DOT, - STATE(3721), 1, - sym_comment, - STATE(4538), 1, - sym__var, - STATE(4844), 1, - sym__val_number, - STATE(5076), 1, - sym_val_number, - STATE(5113), 1, - sym__str_double_quotes, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(5602), 1, - sym__val_number_decimal, - STATE(5612), 1, - sym_unquoted, - STATE(5770), 1, - sym__inter_double_quotes, - STATE(5771), 1, - sym__inter_single_quotes, - STATE(6523), 1, - sym__expr_binary_expression, - ACTIONS(3070), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3884), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(5986), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5599), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(5744), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168366] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6151), 1, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + [169245] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3730), 1, + sym_comment, + ACTIONS(949), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(7204), 1, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3090), 1, - sym__expr_binary_expression, - STATE(3211), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3722), 1, - sym_comment, - ACTIONS(6143), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168491] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, + ACTIONS(951), 40, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6151), 1, - sym_val_date, - ACTIONS(6153), 1, - anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, anon_sym_LBRACE, - ACTIONS(7200), 1, anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3091), 1, - sym__expr_binary_expression, - STATE(3213), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3723), 1, - sym_comment, - ACTIONS(6143), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7206), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168616] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6151), 1, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, + [169309] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(2201), 1, + anon_sym_DOLLAR, + ACTIONS(7210), 1, anon_sym_LPAREN, - ACTIONS(7196), 1, + ACTIONS(7212), 1, + anon_sym_LT, + ACTIONS(7214), 1, + anon_sym_DOT2, + ACTIONS(7216), 1, + anon_sym_EQ2, + ACTIONS(7218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7220), 1, + anon_sym_DASH2, + ACTIONS(7222), 1, + anon_sym_PLUS2, + ACTIONS(7224), 1, + aux_sym_unquoted_token4, + ACTIONS(7226), 1, + aux_sym_unquoted_token6, + STATE(3731), 1, + sym_comment, + STATE(3930), 1, + sym__var, + STATE(4022), 1, + sym__immediate_decimal, + STATE(4057), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(827), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(7198), 1, anon_sym_LBRACE, - ACTIONS(7200), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7202), 1, anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3092), 1, - sym__expr_binary_expression, - STATE(3214), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym_comment, - ACTIONS(6143), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7206), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168741] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [169399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3725), 1, + STATE(3732), 1, sym_comment, - ACTIONS(1033), 13, + ACTIONS(1191), 13, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1035), 41, + ACTIONS(1193), 40, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -380079,285 +380630,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [168806] = 34, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + STATE(3733), 1, + sym_comment, + ACTIONS(1425), 13, anon_sym_DOLLAR, - ACTIONS(6139), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6151), 1, - sym_val_date, - ACTIONS(6153), 1, - anon_sym_DQUOTE, - ACTIONS(6157), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1427), 40, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7196), 1, - anon_sym_DASH, - ACTIONS(7198), 1, anon_sym_LBRACE, - ACTIONS(7200), 1, anon_sym_DOT, - ACTIONS(7202), 1, - anon_sym_PLUS, - ACTIONS(7204), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3093), 1, - sym__expr_binary_expression, - STATE(3216), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3726), 1, - sym_comment, - ACTIONS(6143), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7206), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [168931] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, - anon_sym_null, - ACTIONS(6151), 1, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + [169527] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3734), 1, + sym_comment, + ACTIONS(1429), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(7204), 1, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3095), 1, - sym__expr_binary_expression, - STATE(3218), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3727), 1, - sym_comment, - ACTIONS(6143), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(6149), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7206), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [169056] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, + ACTIONS(1431), 40, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOLLAR, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(6141), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, - ACTIONS(6151), 1, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(6153), 1, anon_sym_DQUOTE, - ACTIONS(6157), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(6159), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7196), 1, + [169591] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3735), 1, + sym_comment, + ACTIONS(1433), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - ACTIONS(7198), 1, - anon_sym_LBRACE, - ACTIONS(7200), 1, - anon_sym_DOT, - ACTIONS(7202), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(7204), 1, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, - ACTIONS(7208), 1, - aux_sym_unquoted_token1, - STATE(2627), 1, - sym__val_number_decimal, - STATE(2709), 1, - sym__var, - STATE(2776), 1, - sym__val_number, - STATE(2778), 1, - sym_val_number, - STATE(3096), 1, - sym__expr_binary_expression, - STATE(3221), 1, - sym_unquoted, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(3613), 1, - sym__str_double_quotes, - STATE(3618), 1, - sym__inter_single_quotes, - STATE(3621), 1, - sym__inter_double_quotes, - STATE(3728), 1, - sym_comment, - ACTIONS(6143), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1435), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(6155), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6147), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(6149), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7206), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3231), 4, - sym_expr_unary, - sym_expr_binary, - sym_expr_parenthesized, - sym__value, - STATE(3326), 12, - sym_val_nothing, - sym_val_bool, - sym_val_variable, - 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, - [169181] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169655] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3729), 1, + STATE(3736), 1, sym_comment, - ACTIONS(2998), 12, + ACTIONS(4392), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -380370,7 +380830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2996), 41, + ACTIONS(4390), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -380412,28 +380872,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [169245] = 7, + [169719] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3730), 1, + STATE(3737), 1, sym_comment, - ACTIONS(1249), 2, + ACTIONS(1257), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1247), 5, + ACTIONS(1255), 5, anon_sym_GT, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT2, - ACTIONS(1243), 6, + ACTIONS(1251), 6, anon_sym_DOLLAR, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1245), 19, + ACTIONS(1253), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380453,7 +380913,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1409), 21, + ACTIONS(1385), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -380475,34 +380935,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169315] = 4, + [169789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3731), 1, + STATE(3738), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(4396), 12, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4394), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [169853] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3739), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 7, + anon_sym_DOLLAR, + anon_sym_in, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1393), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [169931] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3740), 1, + sym_comment, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 9, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 36, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -380535,34 +381126,106 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169379] = 4, + [170003] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(3732), 1, + ACTIONS(7242), 1, + anon_sym_in, + STATE(3741), 1, sym_comment, - ACTIONS(1298), 13, - anon_sym_DOLLAR, + ACTIONS(7228), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(7232), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1300), 40, + ACTIONS(1393), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170085] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3742), 1, + sym_comment, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 11, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 36, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -380595,12 +381258,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169443] = 4, + [170155] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3733), 1, + STATE(3743), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380614,13 +381280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1393), 38, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -380655,12 +381319,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169507] = 4, + [170221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3734), 1, + STATE(3744), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(1082), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380674,7 +381338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1084), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380715,12 +381379,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169571] = 4, + [170285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3735), 1, + STATE(3745), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(1086), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380734,7 +381398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1088), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380775,72 +381439,147 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169635] = 4, + [170349] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3736), 1, + STATE(3746), 1, sym_comment, - ACTIONS(4226), 12, - anon_sym_LPAREN, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1391), 9, anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 34, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4224), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170423] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7242), 1, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + STATE(3747), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [169699] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3737), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(1217), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380854,7 +381593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1219), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380895,12 +381634,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169763] = 4, + [170571] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3738), 1, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + STATE(3749), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3750), 1, sym_comment, - ACTIONS(1263), 13, + ACTIONS(1221), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -380914,7 +381724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1223), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -380955,48 +381765,133 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169827] = 4, + [170721] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(3739), 1, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + ACTIONS(7250), 1, + anon_sym_bit_DASHxor, + STATE(3751), 1, sym_comment, - ACTIONS(1263), 13, - anon_sym_DOLLAR, + ACTIONS(7228), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(7232), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1265), 40, + ACTIONS(1393), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170809] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + ACTIONS(7250), 1, + anon_sym_bit_DASHxor, + ACTIONS(7252), 1, + anon_sym_bit_DASHor, + STATE(3752), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 6, + anon_sym_DOLLAR, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -381015,132 +381910,741 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [169891] = 4, + [170899] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(3740), 1, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + ACTIONS(7250), 1, + anon_sym_bit_DASHxor, + ACTIONS(7252), 1, + anon_sym_bit_DASHor, + ACTIONS(7254), 1, + anon_sym_and, + STATE(3753), 1, sym_comment, - ACTIONS(1247), 13, - anon_sym_DOLLAR, + ACTIONS(7228), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(7232), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, anon_sym_not, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1409), 40, + ACTIONS(1393), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [170991] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3754), 1, + sym_comment, + ACTIONS(1219), 12, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1217), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [171055] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + ACTIONS(7250), 1, + anon_sym_bit_DASHxor, + ACTIONS(7252), 1, + anon_sym_bit_DASHor, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_xor, + STATE(3755), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 6, + anon_sym_DOLLAR, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [171149] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7242), 1, + anon_sym_in, + ACTIONS(7248), 1, anon_sym_bit_DASHand, + ACTIONS(7250), 1, anon_sym_bit_DASHxor, + ACTIONS(7252), 1, anon_sym_bit_DASHor, + ACTIONS(7254), 1, anon_sym_and, + ACTIONS(7256), 1, anon_sym_xor, + ACTIONS(7258), 1, anon_sym_or, + STATE(3756), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7244), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 6, + anon_sym_DOLLAR, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1393), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [171245] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7268), 1, + anon_sym_RBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + STATE(3757), 1, + sym_comment, + STATE(3759), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10812), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [171381] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7282), 1, + anon_sym_RBRACE, + STATE(3758), 1, + sym_comment, + STATE(3760), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10817), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [171517] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7284), 1, + anon_sym_RBRACE, + STATE(3759), 1, + sym_comment, + STATE(3865), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10303), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [169955] = 4, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [171653] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(3741), 1, - sym_comment, - ACTIONS(1288), 13, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(7264), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + ACTIONS(7276), 1, aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7286), 1, + anon_sym_RBRACE, + STATE(3760), 1, + sym_comment, + STATE(3865), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10312), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1290), 40, - anon_sym_LBRACK, + ACTIONS(7278), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [171789] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3761), 1, + sym_comment, + ACTIONS(4400), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [170019] = 4, + ACTIONS(4398), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [171853] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3742), 1, + STATE(3762), 1, sym_comment, - ACTIONS(1401), 13, + ACTIONS(1421), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -381154,7 +382658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1403), 40, + ACTIONS(1423), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -381195,16 +382699,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [170083] = 5, + [171917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_RBRACE, - STATE(3743), 1, + STATE(3763), 1, sym_comment, - ACTIONS(7212), 11, + ACTIONS(4408), 12, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, @@ -381214,7 +382717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7210), 41, + ACTIONS(4406), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381256,108 +382759,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170149] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7224), 1, - anon_sym_RBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - STATE(3744), 1, - sym_comment, - STATE(3808), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(11279), 1, - sym_match_pattern, - STATE(11359), 1, - sym_default_arm, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [170285] = 4, + [171981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3745), 1, + STATE(3764), 1, sym_comment, - ACTIONS(6824), 12, + ACTIONS(1253), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381370,7 +382777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6822), 41, + ACTIONS(1251), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381412,12 +382819,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170349] = 4, + [172045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3746), 1, + STATE(3765), 1, sym_comment, - ACTIONS(6834), 12, + ACTIONS(4414), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381430,7 +382837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6832), 41, + ACTIONS(4412), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381472,72 +382879,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3747), 1, - sym_comment, - ACTIONS(1393), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1395), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [170477] = 4, + [172109] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3748), 1, + STATE(3766), 1, sym_comment, - ACTIONS(4222), 12, + ACTIONS(4457), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381550,7 +382897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4220), 41, + ACTIONS(4455), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381592,12 +382939,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170541] = 4, + [172173] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3749), 1, + STATE(3767), 1, sym_comment, - ACTIONS(4202), 12, + ACTIONS(4464), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381610,7 +382957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4200), 41, + ACTIONS(4462), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381652,12 +382999,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170605] = 4, + [172237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3750), 1, + STATE(3768), 1, sym_comment, - ACTIONS(7240), 12, + ACTIONS(4476), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381670,7 +383017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7238), 41, + ACTIONS(4474), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381712,104 +383059,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170669] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_LBRACK, - ACTIONS(7245), 1, - anon_sym_RBRACK, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7250), 1, - anon_sym_DOLLAR, - ACTIONS(7253), 1, - anon_sym_DASH_DASH, - ACTIONS(7256), 1, - anon_sym_DASH, - ACTIONS(7259), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_PLUS, - ACTIONS(7268), 1, - anon_sym_null, - ACTIONS(7274), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7286), 1, - sym_val_date, - ACTIONS(7289), 1, - anon_sym_DQUOTE, - ACTIONS(7295), 1, - aux_sym__unquoted_in_list_token1, - STATE(5841), 1, - sym__val_number_decimal, - STATE(6205), 1, - sym__var, - STATE(6378), 1, - sym_val_number, - STATE(6464), 1, - sym__val_number, - STATE(6590), 1, - sym_val_variable, - STATE(6610), 1, - sym_expr_parenthesized, - STATE(6665), 1, - sym__match_pattern_list, - STATE(6666), 1, - sym__match_pattern_record, - STATE(6667), 1, - sym__expr_unary_minus, - STATE(6767), 1, - sym__str_double_quotes, - STATE(6774), 1, - sym_long_flag_equals_value, - STATE(6865), 1, - sym__match_pattern_expression, - ACTIONS(7271), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(7292), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3751), 2, - sym_comment, - aux_sym__match_pattern_list_repeat1, - STATE(6664), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(7277), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(7280), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(7283), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(6874), 4, - sym__list_item_starts_with_sign, - sym_short_flag, - sym_long_flag, - sym__unquoted_in_list, - STATE(6663), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [170797] = 4, + [172301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3752), 1, + STATE(3769), 1, sym_comment, - ACTIONS(6930), 12, + ACTIONS(4480), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381822,7 +383077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6928), 41, + ACTIONS(4478), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381864,12 +383119,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [170861] = 4, + [172365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3753), 1, + STATE(3770), 1, sym_comment, - ACTIONS(6936), 12, + ACTIONS(4484), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -381882,7 +383137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6934), 41, + ACTIONS(4482), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -381922,815 +383177,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [170925] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3754), 1, - sym_comment, - ACTIONS(1282), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1284), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [170989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3755), 1, - sym_comment, - ACTIONS(1278), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1280), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171053] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3756), 1, - sym_comment, - ACTIONS(1274), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1276), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171117] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3757), 1, - sym_comment, - ACTIONS(1113), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1115), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3758), 1, - sym_comment, - ACTIONS(1098), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1100), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171245] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3759), 1, - sym_comment, - ACTIONS(1405), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1407), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171309] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - ACTIONS(7322), 1, - anon_sym_bit_DASHor, - ACTIONS(7324), 1, - anon_sym_and, - ACTIONS(7326), 1, - anon_sym_xor, - ACTIONS(7328), 1, - anon_sym_or, - STATE(3760), 1, - sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171405] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - ACTIONS(7322), 1, - anon_sym_bit_DASHor, - ACTIONS(7324), 1, - anon_sym_and, - ACTIONS(7326), 1, - anon_sym_xor, - STATE(3761), 1, - sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171499] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3762), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171563] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - ACTIONS(7322), 1, - anon_sym_bit_DASHor, - ACTIONS(7324), 1, - anon_sym_and, - STATE(3763), 1, - sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171655] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3764), 1, - sym_comment, - ACTIONS(1317), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1319), 40, - anon_sym_LBRACK, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [172429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3771), 1, + sym_comment, + ACTIONS(4088), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [171719] = 40, + ACTIONS(4086), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [172493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, + STATE(3772), 1, + sym_comment, + ACTIONS(4092), 12, anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(7230), 1, anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7330), 1, - anon_sym_RBRACE, - STATE(3765), 1, - sym_comment, - STATE(3816), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(11279), 1, - sym_match_pattern, - STATE(11377), 1, - sym_default_arm, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4090), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [171855] = 4, + aux_sym__record_key_token2, + [172557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3766), 1, + STATE(3773), 1, sym_comment, - ACTIONS(3890), 12, + ACTIONS(4152), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -382743,7 +383317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3888), 41, + ACTIONS(4150), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -382785,145 +383359,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [171919] = 17, + [172621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - ACTIONS(7322), 1, - anon_sym_bit_DASHor, - STATE(3767), 1, + STATE(3774), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 22, - anon_sym_LBRACK, + ACTIONS(4166), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172009] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3768), 1, - sym_comment, - ACTIONS(1313), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4164), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1315), 40, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [172685] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3775), 1, + sym_comment, + ACTIONS(4170), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172073] = 4, + ACTIONS(4168), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [172749] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3769), 1, + STATE(3776), 1, sym_comment, - ACTIONS(3836), 12, + ACTIONS(4174), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -382936,7 +383497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3834), 41, + ACTIONS(4172), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -382978,72 +383539,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [172137] = 4, + [172813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3770), 1, + STATE(3777), 1, sym_comment, - ACTIONS(1263), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, + ACTIONS(4178), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172201] = 4, + ACTIONS(4176), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [172877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3771), 1, + STATE(3778), 1, sym_comment, - ACTIONS(2988), 12, + ACTIONS(4186), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383056,7 +383617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2986), 41, + ACTIONS(4184), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383098,405 +383659,372 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [172265] = 4, + [172941] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3772), 1, + STATE(3779), 1, sym_comment, - ACTIONS(1309), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1311), 40, - anon_sym_LBRACK, + ACTIONS(4199), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172329] = 16, + ACTIONS(4197), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - STATE(3773), 1, + STATE(3780), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 23, - anon_sym_LBRACK, + ACTIONS(4203), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172417] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3774), 1, - sym_comment, - ACTIONS(990), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4201), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(992), 40, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3781), 1, + sym_comment, + ACTIONS(4217), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172481] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3775), 1, - sym_comment, - ACTIONS(1252), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4215), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1254), 40, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3782), 1, + sym_comment, + ACTIONS(4233), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172545] = 15, + ACTIONS(4231), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - STATE(3776), 1, + STATE(3783), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 24, - anon_sym_LBRACK, + ACTIONS(4261), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172631] = 14, + ACTIONS(4259), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173261] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - STATE(3777), 1, + STATE(3784), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 25, - anon_sym_LBRACK, + ACTIONS(4291), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172715] = 4, + ACTIONS(4289), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [173325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3778), 1, + STATE(3785), 1, sym_comment, - ACTIONS(1254), 12, + ACTIONS(4313), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383509,7 +384037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1252), 41, + ACTIONS(4311), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383551,138 +384079,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [172779] = 9, + [173389] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3779), 1, + STATE(3786), 1, sym_comment, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1411), 9, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 34, - anon_sym_LBRACK, + ACTIONS(4317), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172853] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3780), 1, - sym_comment, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4315), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 38, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [172919] = 4, + aux_sym__record_key_token2, + [173453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3781), 1, + STATE(3787), 1, sym_comment, - ACTIONS(4372), 12, + ACTIONS(4324), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383695,7 +384157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4370), 41, + ACTIONS(4322), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383737,72 +384199,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [172983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3782), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173047] = 4, + [173517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3783), 1, + STATE(3788), 1, sym_comment, - ACTIONS(4196), 12, + ACTIONS(4328), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383815,7 +384217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4194), 41, + ACTIONS(4326), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383857,72 +384259,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173111] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3784), 1, - sym_comment, - ACTIONS(1321), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1323), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173175] = 4, + [173581] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3785), 1, + STATE(3789), 1, sym_comment, - ACTIONS(4376), 12, + ACTIONS(4370), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383935,7 +384277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4374), 41, + ACTIONS(4368), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -383977,12 +384319,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173239] = 4, + [173645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3786), 1, + STATE(3790), 1, sym_comment, - ACTIONS(4192), 12, + ACTIONS(4374), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -383995,7 +384337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4190), 41, + ACTIONS(4372), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384037,195 +384379,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173303] = 7, + [173709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3787), 1, + STATE(3791), 1, sym_comment, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 11, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 36, - anon_sym_LBRACK, + ACTIONS(4378), 12, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173373] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3788), 1, - sym_comment, - ACTIONS(1263), 13, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173437] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3789), 1, - sym_comment, - ACTIONS(1193), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4376), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1195), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173501] = 4, + aux_sym__record_key_token2, + [173773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3790), 1, + STATE(3792), 1, sym_comment, - ACTIONS(4178), 12, + ACTIONS(4382), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384238,7 +384457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4176), 41, + ACTIONS(4380), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384280,81 +384499,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173565] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7302), 1, - anon_sym_in, - STATE(3791), 1, - sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7314), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 6, - anon_sym_DOLLAR, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173647] = 4, + [173837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3792), 1, + STATE(3793), 1, sym_comment, - ACTIONS(4174), 12, + ACTIONS(4388), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384367,7 +384517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4172), 41, + ACTIONS(4386), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384409,72 +384559,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173711] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3793), 1, - sym_comment, - ACTIONS(1005), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1007), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173775] = 4, + [173901] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3794), 1, sym_comment, - ACTIONS(4170), 12, + ACTIONS(4404), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384487,7 +384577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4168), 41, + ACTIONS(4402), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384529,132 +384619,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [173839] = 4, + [173965] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3795), 1, sym_comment, - ACTIONS(1325), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1327), 40, - anon_sym_LBRACK, + ACTIONS(4418), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173903] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3796), 1, - sym_comment, - ACTIONS(1263), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4416), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [173967] = 4, + aux_sym__record_key_token2, + [174029] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3797), 1, + STATE(3796), 1, sym_comment, - ACTIONS(4160), 12, + ACTIONS(4422), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384667,7 +384697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4158), 41, + ACTIONS(4420), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384709,136 +384739,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174031] = 8, + [174093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3797), 1, sym_comment, - ACTIONS(7300), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 9, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 36, - anon_sym_LBRACK, + ACTIONS(4426), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174103] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3799), 1, - sym_comment, - ACTIONS(1397), 13, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(4424), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1399), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174167] = 4, + aux_sym__record_key_token2, + [174157] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3798), 1, sym_comment, - ACTIONS(1245), 12, + ACTIONS(4472), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384851,7 +384817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1243), 41, + ACTIONS(4470), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384893,12 +384859,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174231] = 4, + [174221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3801), 1, + STATE(3799), 1, sym_comment, - ACTIONS(4380), 12, + ACTIONS(4488), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384911,7 +384877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4378), 41, + ACTIONS(4486), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -384953,12 +384919,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174295] = 4, + [174285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3802), 1, + STATE(3800), 1, sym_comment, - ACTIONS(4384), 12, + ACTIONS(4301), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -384971,7 +384937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4382), 41, + ACTIONS(4299), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385013,12 +384979,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174359] = 4, + [174349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3803), 1, + STATE(3801), 1, sym_comment, - ACTIONS(4424), 12, + ACTIONS(4062), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385031,7 +384997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4422), 41, + ACTIONS(4060), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385073,342 +385039,215 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174423] = 4, + [174413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3804), 1, + STATE(3802), 1, sym_comment, - ACTIONS(1294), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1296), 40, - anon_sym_LBRACK, + ACTIONS(4070), 12, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174487] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3805), 1, - sym_comment, - ACTIONS(1263), 13, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1265), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3806), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1344), 40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174615] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3807), 1, - sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7300), 2, + ACTIONS(4068), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_DOLLAR, + anon_sym_break, + anon_sym_continue, + anon_sym_for, anon_sym_in, - anon_sym_not, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1413), 30, - anon_sym_LBRACK, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [174477] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3803), 1, + sym_comment, + ACTIONS(4074), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOLLAR, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [174693] = 40, + ACTIONS(4072), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [174541] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, + ACTIONS(3249), 1, aux_sym_unquoted_token1, - ACTIONS(5970), 1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, anon_sym_LPAREN, - ACTIONS(7216), 1, + ACTIONS(7260), 1, anon_sym_LBRACK, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(7220), 1, + ACTIONS(7264), 1, anon_sym_DASH, - ACTIONS(7222), 1, + ACTIONS(7266), 1, anon_sym_LBRACE, - ACTIONS(7226), 1, + ACTIONS(7270), 1, anon_sym__, - ACTIONS(7228), 1, + ACTIONS(7272), 1, anon_sym_DOT, - ACTIONS(7230), 1, + ACTIONS(7274), 1, anon_sym_PLUS, - ACTIONS(7232), 1, + ACTIONS(7276), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, + ACTIONS(7280), 1, sym_val_date, - ACTIONS(7332), 1, + ACTIONS(7288), 1, anon_sym_RBRACE, - STATE(3808), 1, + STATE(3804), 1, sym_comment, STATE(3865), 1, aux_sym_ctrl_match_repeat1, - STATE(4465), 1, + STATE(4552), 1, sym__var, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(6974), 1, + STATE(6962), 1, sym_match_arm, - STATE(7725), 1, + STATE(7727), 1, sym__val_number, - STATE(8218), 1, + STATE(8258), 1, sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, + STATE(8725), 1, sym__match_pattern, - STATE(9295), 1, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, sym_expr_parenthesized, - STATE(9298), 1, + STATE(9607), 1, sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, + STATE(9851), 1, sym__match_pattern_list, - STATE(9964), 1, + STATE(9872), 1, sym__match_pattern_record, - STATE(9969), 1, + STATE(9878), 1, sym__expr_unary_minus, - STATE(9978), 1, + STATE(10007), 1, sym_unquoted, - STATE(10979), 1, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10730), 1, sym_default_arm, - STATE(11279), 1, + STATE(11289), 1, sym_match_pattern, - ACTIONS(3070), 2, + ACTIONS(3233), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(3800), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(9957), 2, + STATE(10165), 2, sym__match_pattern_value, sym_val_range, - ACTIONS(3074), 3, + ACTIONS(3033), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, + ACTIONS(3239), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(7234), 3, + ACTIONS(7278), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(9937), 7, + STATE(10095), 7, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -385416,12 +385255,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [174829] = 4, + [174677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3809), 1, + STATE(3805), 1, sym_comment, - ACTIONS(4396), 12, + ACTIONS(7290), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385434,7 +385273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4394), 41, + ACTIONS(6626), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385476,12 +385315,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174893] = 4, + [174741] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3810), 1, + STATE(3806), 1, sym_comment, - ACTIONS(4400), 12, + ACTIONS(7204), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385494,7 +385333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4398), 41, + ACTIONS(7202), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385536,12 +385375,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [174957] = 4, + [174805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3811), 1, + STATE(3807), 1, sym_comment, - ACTIONS(4408), 12, + ACTIONS(7208), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385554,7 +385393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4406), 41, + ACTIONS(7206), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385596,12 +385435,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [175021] = 4, + [174869] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3812), 1, + STATE(3808), 1, sym_comment, - ACTIONS(4412), 12, + ACTIONS(6502), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385614,7 +385453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4410), 41, + ACTIONS(6500), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385656,12 +385495,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [175085] = 4, + [174933] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3813), 1, + STATE(3809), 1, sym_comment, - ACTIONS(4416), 12, + ACTIONS(6506), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385674,7 +385513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4414), 41, + ACTIONS(6504), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385716,12 +385555,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [175149] = 4, + [174997] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3814), 1, + ACTIONS(7296), 1, + anon_sym_RBRACE, + STATE(3810), 1, + sym_comment, + ACTIONS(7294), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7292), 41, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_let_DASHenv, + anon_sym_mut, + anon_sym_const, + sym_cmd_identifier, + anon_sym_def, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_use, + anon_sym_error, + anon_sym_list, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_make, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_try, + anon_sym_catch, + anon_sym_return, + anon_sym_source, + anon_sym_source_DASHenv, + anon_sym_register, + anon_sym_hide, + anon_sym_hide_DASHenv, + anon_sym_overlay, + anon_sym_new, + anon_sym_as, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + aux_sym__record_key_token2, + [175063] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3811), 1, sym_comment, - ACTIONS(4420), 12, + ACTIONS(4332), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385734,7 +385634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4418), 41, + ACTIONS(4330), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385776,12 +385676,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [175213] = 4, + [175127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3815), 1, + STATE(3812), 1, sym_comment, - ACTIONS(1358), 13, + ACTIONS(1341), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -385795,7 +385695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1360), 40, + ACTIONS(1343), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -385836,95 +385736,91 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [175277] = 40, + [175191] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, + ACTIONS(7298), 1, anon_sym_LBRACK, - ACTIONS(7218), 1, + ACTIONS(7301), 1, + anon_sym_RBRACK, + ACTIONS(7303), 1, + anon_sym_LPAREN, + ACTIONS(7306), 1, anon_sym_DOLLAR, - ACTIONS(7220), 1, + ACTIONS(7309), 1, + anon_sym_DASH_DASH, + ACTIONS(7312), 1, anon_sym_DASH, - ACTIONS(7222), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, + ACTIONS(7318), 1, anon_sym_DOT, - ACTIONS(7230), 1, + ACTIONS(7321), 1, anon_sym_PLUS, - ACTIONS(7232), 1, + ACTIONS(7324), 1, + anon_sym_null, + ACTIONS(7330), 1, aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, + ACTIONS(7342), 1, sym_val_date, - ACTIONS(7334), 1, - anon_sym_RBRACE, - STATE(3816), 1, - sym_comment, - STATE(3865), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, + ACTIONS(7345), 1, + anon_sym_DQUOTE, + ACTIONS(7351), 1, + aux_sym__unquoted_in_list_token1, + STATE(6036), 1, sym__val_number_decimal, - STATE(9078), 1, + STATE(6177), 1, + sym__var, + STATE(6326), 1, sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, + STATE(6336), 1, + sym__val_number, + STATE(6492), 1, sym_expr_parenthesized, - STATE(9298), 1, + STATE(6521), 1, sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, + STATE(6793), 1, + sym_long_flag_equals_value, + STATE(6794), 1, + sym__str_double_quotes, + STATE(6797), 1, sym__match_pattern_list, - STATE(9964), 1, + STATE(6800), 1, sym__match_pattern_record, - STATE(9969), 1, + STATE(6801), 1, sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10983), 1, - sym_default_arm, - STATE(11279), 1, - sym_match_pattern, - ACTIONS(3070), 2, + STATE(6861), 1, + sym__match_pattern_expression, + ACTIONS(7327), 2, anon_sym_true, anon_sym_false, - ACTIONS(3084), 2, + ACTIONS(7348), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(9957), 2, + STATE(3813), 2, + sym_comment, + aux_sym__match_pattern_list_repeat1, + STATE(6796), 2, sym__match_pattern_value, sym_val_range, - ACTIONS(3074), 3, + ACTIONS(7333), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, + ACTIONS(7336), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(9937), 7, + ACTIONS(7339), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(6875), 4, + sym__list_item_starts_with_sign, + sym_short_flag, + sym_long_flag, + sym__unquoted_in_list, + STATE(6795), 7, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -385932,12 +385828,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [175413] = 4, + [175319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3817), 1, + STATE(3814), 1, sym_comment, - ACTIONS(4430), 12, + ACTIONS(7356), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -385950,7 +385846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4428), 41, + ACTIONS(7354), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -385992,266 +385888,672 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [175477] = 17, - ACTIONS(105), 1, + [175383] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(2205), 1, + STATE(3815), 1, + sym_comment, + ACTIONS(1054), 13, anon_sym_DOLLAR, - ACTIONS(7336), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1056), 40, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7338), 1, - anon_sym_LT, - ACTIONS(7340), 1, - anon_sym_DOT2, - ACTIONS(7342), 1, - anon_sym_EQ2, - ACTIONS(7344), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7346), 1, - anon_sym_DASH2, - ACTIONS(7348), 1, - anon_sym_PLUS2, - ACTIONS(7350), 1, - aux_sym_unquoted_token4, - ACTIONS(7352), 1, - aux_sym_unquoted_token6, - STATE(3818), 1, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3816), 1, sym_comment, - STATE(3931), 1, - sym__var, - STATE(4020), 1, - sym__immediate_decimal, - STATE(4016), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(909), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(911), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3817), 1, + sym_comment, + ACTIONS(1349), 13, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(1351), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [175567] = 5, + [175575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7354), 1, - anon_sym_RBRACE, - STATE(3819), 1, + STATE(3818), 1, sym_comment, - ACTIONS(7212), 11, - anon_sym_LPAREN, + ACTIONS(1353), 13, anon_sym_DOLLAR, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1355), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7210), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3819), 1, + sym_comment, + ACTIONS(1303), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1305), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [175633] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175703] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3820), 1, sym_comment, - ACTIONS(4460), 12, - anon_sym_LPAREN, + ACTIONS(1307), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1309), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4458), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175767] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3821), 1, + sym_comment, + ACTIONS(1319), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1321), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [175697] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3821), 1, + STATE(3822), 1, sym_comment, - ACTIONS(4468), 12, + ACTIONS(1329), 13, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1331), 40, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175895] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3823), 1, + sym_comment, + ACTIONS(1333), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1335), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [175959] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3824), 1, + sym_comment, + ACTIONS(1337), 13, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1339), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4466), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176023] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3825), 1, + sym_comment, + ACTIONS(1345), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1347), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [175761] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3822), 1, + STATE(3826), 1, sym_comment, - ACTIONS(1102), 13, + ACTIONS(1357), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -386265,7 +386567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 40, + ACTIONS(1359), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -386306,72 +386608,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [175825] = 4, + [176151] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3823), 1, + STATE(3827), 1, sym_comment, - ACTIONS(4230), 12, - anon_sym_LPAREN, + ACTIONS(1361), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1363), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4228), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [175889] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3824), 1, + STATE(3828), 1, sym_comment, - ACTIONS(1332), 13, + ACTIONS(1368), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -386385,7 +386687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1334), 40, + ACTIONS(1370), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -386426,12 +386728,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [175953] = 4, + [176279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3825), 1, + STATE(3829), 1, sym_comment, - ACTIONS(4472), 12, + ACTIONS(4336), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386444,7 +386746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4470), 41, + ACTIONS(4334), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386486,252 +386788,252 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [176017] = 4, + [176343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3826), 1, + STATE(3830), 1, sym_comment, - ACTIONS(4476), 12, - anon_sym_LPAREN, + ACTIONS(1266), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1268), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4474), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [176081] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3827), 1, + STATE(3831), 1, sym_comment, - ACTIONS(4488), 12, - anon_sym_LPAREN, + ACTIONS(1266), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1268), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4486), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [176145] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3828), 1, + STATE(3832), 1, sym_comment, - ACTIONS(4046), 12, - anon_sym_LPAREN, + ACTIONS(1270), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1272), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4044), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [176209] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176535] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3829), 1, + STATE(3833), 1, sym_comment, - ACTIONS(4322), 12, - anon_sym_LPAREN, + ACTIONS(1437), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1439), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4320), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [176273] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [176599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3830), 1, + STATE(3834), 1, sym_comment, - ACTIONS(4313), 12, + ACTIONS(3000), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386744,7 +387046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4311), 41, + ACTIONS(2998), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -386786,12 +387088,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [176337] = 4, + [176663] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3831), 1, + STATE(3835), 1, sym_comment, - ACTIONS(1354), 13, + ACTIONS(929), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -386805,7 +387107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1356), 40, + ACTIONS(931), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -386846,108 +387148,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [176401] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7356), 1, - anon_sym_RBRACE, - STATE(3832), 1, - sym_comment, - STATE(3840), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10839), 1, - sym_default_arm, - STATE(11279), 1, - sym_match_pattern, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [176537] = 4, + [176727] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3833), 1, + STATE(3836), 1, sym_comment, - ACTIONS(4309), 12, + ACTIONS(4340), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -386960,7 +387166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4307), 41, + ACTIONS(4338), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387002,12 +387208,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [176601] = 4, + [176791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3834), 1, + STATE(3837), 1, sym_comment, - ACTIONS(4305), 12, + ACTIONS(4344), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387020,7 +387226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4303), 41, + ACTIONS(4342), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387062,108 +387268,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [176665] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7358), 1, - anon_sym_RBRACE, - STATE(3835), 1, - sym_comment, - STATE(3841), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10838), 1, - sym_default_arm, - STATE(11279), 1, - sym_match_pattern, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [176801] = 4, + [176855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3836), 1, + STATE(3838), 1, sym_comment, - ACTIONS(1350), 13, + ACTIONS(1274), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -387177,7 +387287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1352), 40, + ACTIONS(1276), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -387218,72 +387328,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [176865] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3837), 1, - sym_comment, - ACTIONS(4301), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4299), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [176929] = 4, + [176919] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3838), 1, + STATE(3839), 1, sym_comment, - ACTIONS(1033), 13, + ACTIONS(1278), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -387297,7 +387347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1035), 40, + ACTIONS(1280), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -387338,264 +387388,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [176993] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3839), 1, - sym_comment, - ACTIONS(4297), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4295), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177057] = 40, + [176983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7360), 1, - anon_sym_RBRACE, STATE(3840), 1, sym_comment, - STATE(3865), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10822), 1, - sym_default_arm, - STATE(11279), 1, - sym_match_pattern, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [177193] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7220), 1, - anon_sym_DASH, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym__, - ACTIONS(7228), 1, - anon_sym_DOT, - ACTIONS(7230), 1, - anon_sym_PLUS, - ACTIONS(7232), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7362), 1, - anon_sym_RBRACE, - STATE(3841), 1, - sym_comment, - STATE(3865), 1, - aux_sym_ctrl_match_repeat1, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym_match_arm, - STATE(7725), 1, - sym__val_number, - STATE(8218), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, - sym__match_pattern, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10821), 1, - sym_default_arm, - STATE(11279), 1, - sym_match_pattern, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7234), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [177329] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3842), 1, - sym_comment, - ACTIONS(1259), 13, + ACTIONS(1282), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -387609,7 +387407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1261), 40, + ACTIONS(1284), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -387627,95 +387425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [177393] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3843), 1, - sym_comment, - ACTIONS(4271), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4269), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177457] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177047] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3844), 1, + STATE(3841), 1, sym_comment, - ACTIONS(4260), 12, + ACTIONS(2959), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387728,7 +387466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4258), 41, + ACTIONS(2957), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387770,12 +387508,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [177521] = 4, + [177111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3842), 1, sym_comment, - ACTIONS(4246), 12, + ACTIONS(3806), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387788,7 +387526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4244), 41, + ACTIONS(3804), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387830,12 +387568,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [177585] = 4, + [177175] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3846), 1, + STATE(3843), 1, sym_comment, - ACTIONS(4107), 12, + ACTIONS(4034), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -387848,7 +387586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4105), 41, + ACTIONS(4032), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -387890,192 +387628,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, - [177649] = 4, + [177239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3847), 1, + STATE(3844), 1, sym_comment, - ACTIONS(4116), 12, - anon_sym_LPAREN, + ACTIONS(1374), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1376), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4114), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177713] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177303] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3848), 1, + STATE(3845), 1, sym_comment, - ACTIONS(7364), 12, - anon_sym_LPAREN, + ACTIONS(1381), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1383), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7150), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177777] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177367] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3849), 1, + STATE(3846), 1, sym_comment, - ACTIONS(4120), 12, - anon_sym_LPAREN, + ACTIONS(1255), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1385), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4118), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177841] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177431] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3850), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1385), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388089,7 +387827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1387), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388130,72 +387868,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [177905] = 4, + [177495] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3851), 1, + STATE(3848), 1, sym_comment, - ACTIONS(4242), 12, - anon_sym_LPAREN, + ACTIONS(1387), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4240), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [177969] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177559] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3852), 1, + STATE(3849), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388209,7 +387947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1340), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388250,12 +387988,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [178033] = 4, + [177623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3853), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388269,7 +388007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1348), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388310,12 +388048,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [178097] = 4, + [177687] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3854), 1, + STATE(3851), 1, sym_comment, - ACTIONS(1389), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388329,7 +388067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1391), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388370,252 +388108,288 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [178161] = 4, + [177751] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3855), 1, + STATE(3852), 1, sym_comment, - ACTIONS(4124), 12, - anon_sym_LPAREN, + ACTIONS(1387), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4122), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [178225] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [177815] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(3856), 1, - sym_comment, - ACTIONS(4128), 12, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, anon_sym_DOLLAR, - anon_sym_RBRACE, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, anon_sym_DOT, + ACTIONS(7274), 1, anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7358), 1, + anon_sym_RBRACE, + STATE(3853), 1, + sym_comment, + STATE(3862), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(11277), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4126), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [178289] = 4, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [177951] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3857), 1, + STATE(3854), 1, sym_comment, - ACTIONS(4136), 12, - anon_sym_LPAREN, + ACTIONS(1387), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4134), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [178353] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [178015] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3858), 1, + STATE(3855), 1, sym_comment, - ACTIONS(4238), 12, - anon_sym_LPAREN, + ACTIONS(1387), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4236), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - aux_sym__record_key_token2, - [178417] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [178079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3859), 1, + STATE(3856), 1, sym_comment, - ACTIONS(1305), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388629,7 +388403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1307), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388670,72 +388444,132 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [178481] = 4, + [178143] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3860), 1, + STATE(3857), 1, sym_comment, - ACTIONS(4140), 12, - anon_sym_LPAREN, + ACTIONS(1387), 13, anon_sym_DOLLAR, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4138), 41, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, - sym_cmd_identifier, - anon_sym_def, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, - anon_sym_error, - anon_sym_list, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [178207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3858), 1, + sym_comment, + ACTIONS(1387), 13, + anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_for, anon_sym_in, - anon_sym_loop, - anon_sym_make, - anon_sym_while, - anon_sym_do, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_try, - anon_sym_catch, - anon_sym_return, - anon_sym_source, - anon_sym_source_DASHenv, - anon_sym_register, - anon_sym_hide, - anon_sym_hide_DASHenv, - anon_sym_overlay, - anon_sym_new, - anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1389), 40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - aux_sym__record_key_token2, - [178545] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [178271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3861), 1, + STATE(3859), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1387), 13, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -388749,7 +388583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1340), 40, + ACTIONS(1389), 40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -388784,21 +388618,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [178609] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [178335] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7360), 1, + anon_sym_RBRACE, + STATE(3804), 1, + aux_sym_ctrl_match_repeat1, + STATE(3860), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(11289), 1, + sym_match_pattern, + STATE(11469), 1, + sym_default_arm, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [178471] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3862), 1, + ACTIONS(7362), 1, + anon_sym_RBRACE, + STATE(3861), 1, sym_comment, - ACTIONS(4144), 12, + ACTIONS(7294), 11, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_token1, @@ -388808,7 +388739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4142), 41, + ACTIONS(7292), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -388850,12 +388781,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token6, aux_sym__record_key_token2, + [178537] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + anon_sym_DASH, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7270), 1, + anon_sym__, + ACTIONS(7272), 1, + anon_sym_DOT, + ACTIONS(7274), 1, + anon_sym_PLUS, + ACTIONS(7276), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7364), 1, + anon_sym_RBRACE, + STATE(3862), 1, + sym_comment, + STATE(3865), 1, + aux_sym_ctrl_match_repeat1, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(6962), 1, + sym_match_arm, + STATE(7727), 1, + sym__val_number, + STATE(8258), 1, + sym__val_number_decimal, + STATE(8725), 1, + sym__match_pattern, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10829), 1, + sym_default_arm, + STATE(11289), 1, + sym_match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7278), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, [178673] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3863), 1, sym_comment, - ACTIONS(4148), 12, + ACTIONS(4078), 12, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_RBRACE, @@ -388868,7 +388895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4146), 41, + ACTIONS(4076), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -388913,7 +388940,7 @@ static const uint16_t ts_small_parse_table[] = { [178737] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, ACTIONS(7366), 1, anon_sym_LPAREN, @@ -388935,17 +388962,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token6, STATE(3864), 1, sym_comment, - STATE(3982), 1, + STATE(3995), 1, sym__var, - STATE(4105), 1, + STATE(4147), 1, sym__immediate_decimal, - ACTIONS(825), 2, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4108), 2, + STATE(4221), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(823), 36, + ACTIONS(827), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -389013,35 +389040,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(7437), 1, aux_sym_unquoted_token1, - STATE(4465), 1, + STATE(4552), 1, sym__var, - STATE(5113), 1, + STATE(4950), 1, sym__str_double_quotes, - STATE(6974), 1, + STATE(6962), 1, sym_match_arm, - STATE(7725), 1, + STATE(7727), 1, sym__val_number, - STATE(8218), 1, + STATE(8258), 1, sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9088), 1, + STATE(8725), 1, sym__match_pattern, - STATE(9295), 1, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, sym_expr_parenthesized, - STATE(9298), 1, + STATE(9607), 1, sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, + STATE(9851), 1, sym__match_pattern_list, - STATE(9964), 1, + STATE(9872), 1, sym__match_pattern_record, - STATE(9969), 1, + STATE(9878), 1, sym__expr_unary_minus, - STATE(9978), 1, + STATE(10007), 1, sym_unquoted, - STATE(11279), 1, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(11289), 1, sym_match_pattern, ACTIONS(7413), 2, anon_sym_true, @@ -389052,7 +389079,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3865), 2, sym_comment, aux_sym_ctrl_match_repeat1, - STATE(9957), 2, + STATE(10165), 2, sym__match_pattern_value, sym_val_range, ACTIONS(7419), 3, @@ -389067,7 +389094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(9937), 7, + STATE(10095), 7, sym_val_nothing, sym_val_bool, sym_val_duration, @@ -389080,7 +389107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3866), 1, sym_comment, - ACTIONS(7212), 11, + ACTIONS(7294), 11, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DOT, @@ -389092,7 +389119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(7210), 41, + ACTIONS(7292), 41, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -389137,34 +389164,34 @@ static const uint16_t ts_small_parse_table[] = { [179020] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(2017), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7336), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_DASH2, - ACTIONS(7348), 1, - anon_sym_PLUS2, ACTIONS(7440), 1, - anon_sym_LT, + anon_sym_LPAREN, ACTIONS(7442), 1, - anon_sym_DOT2, + anon_sym_LT, ACTIONS(7444), 1, - anon_sym_EQ2, + anon_sym_DOT2, ACTIONS(7446), 1, + anon_sym_EQ2, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7450), 1, + anon_sym_DASH2, + ACTIONS(7452), 1, + anon_sym_PLUS2, STATE(3867), 1, sym_comment, - STATE(3931), 1, + STATE(3945), 1, sym__var, - STATE(4009), 1, + STATE(4079), 1, sym__immediate_decimal, - STATE(4010), 2, + STATE(4078), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 38, + ACTIONS(2015), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389206,34 +389233,34 @@ static const uint16_t ts_small_parse_table[] = { [179104] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7336), 1, + ACTIONS(7210), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7346), 1, + ACTIONS(7220), 1, anon_sym_DASH2, - ACTIONS(7348), 1, + ACTIONS(7222), 1, anon_sym_PLUS2, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(7448), 1, + ACTIONS(7454), 1, anon_sym_LT, - ACTIONS(7450), 1, + ACTIONS(7456), 1, + anon_sym_DOT2, + ACTIONS(7458), 1, anon_sym_EQ2, + ACTIONS(7460), 1, + aux_sym__immediate_decimal_token1, STATE(3868), 1, sym_comment, - STATE(3931), 1, + STATE(3930), 1, sym__var, - STATE(4013), 1, + STATE(4034), 1, sym__immediate_decimal, - STATE(4028), 2, + STATE(4033), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1829), 38, + ACTIONS(1971), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389275,34 +389302,34 @@ static const uint16_t ts_small_parse_table[] = { [179188] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1789), 1, + ACTIONS(1876), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7210), 1, anon_sym_LPAREN, - ACTIONS(7454), 1, - anon_sym_LT, + ACTIONS(7218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7220), 1, + anon_sym_DASH2, + ACTIONS(7222), 1, + anon_sym_PLUS2, ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(7458), 1, - anon_sym_EQ2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, ACTIONS(7462), 1, - anon_sym_DASH2, + anon_sym_LT, ACTIONS(7464), 1, - anon_sym_PLUS2, + anon_sym_EQ2, STATE(3869), 1, sym_comment, - STATE(3943), 1, + STATE(3930), 1, sym__var, - STATE(4085), 1, + STATE(4032), 1, sym__immediate_decimal, - STATE(4087), 2, + STATE(4031), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 38, + ACTIONS(1874), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389344,19 +389371,19 @@ static const uint16_t ts_small_parse_table[] = { [179272] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1807), 1, + ACTIONS(1983), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, ACTIONS(7466), 1, anon_sym_LT, @@ -389364,14 +389391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(3870), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4081), 1, + STATE(4073), 1, sym__immediate_decimal, - STATE(4082), 2, + STATE(4068), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1805), 38, + ACTIONS(1981), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389413,19 +389440,19 @@ static const uint16_t ts_small_parse_table[] = { [179356] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1815), 1, + ACTIONS(2009), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, ACTIONS(7470), 1, anon_sym_LT, @@ -389433,14 +389460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(3871), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4078), 1, + STATE(4077), 1, sym__immediate_decimal, - STATE(4101), 2, + STATE(4076), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 38, + ACTIONS(2007), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389482,19 +389509,19 @@ static const uint16_t ts_small_parse_table[] = { [179440] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1823), 1, + ACTIONS(2001), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, ACTIONS(7474), 1, anon_sym_LT, @@ -389502,14 +389529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(3872), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4074), 1, + STATE(4075), 1, sym__immediate_decimal, - STATE(4075), 2, + STATE(4074), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 38, + ACTIONS(1999), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -389551,374 +389578,35 @@ static const uint16_t ts_small_parse_table[] = { [179524] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7366), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_DASH2, - ACTIONS(7378), 1, - anon_sym_PLUS2, ACTIONS(7478), 1, - anon_sym_LT, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(7482), 1, - anon_sym_EQ2, - ACTIONS(7484), 1, - aux_sym__immediate_decimal_token1, - STATE(3873), 1, - sym_comment, - STATE(3982), 1, - sym__var, - STATE(4206), 1, - sym__immediate_decimal, - ACTIONS(1841), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4207), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [179607] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - ACTIONS(7486), 1, - aux_sym_unquoted_token5, - STATE(3874), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4195), 1, - sym__immediate_decimal, - STATE(4198), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [179688] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DOLLAR, - ACTIONS(7488), 1, anon_sym_LPAREN, - ACTIONS(7490), 1, + ACTIONS(7480), 1, anon_sym_LT, - ACTIONS(7492), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7494), 1, + ACTIONS(7484), 1, anon_sym_EQ2, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - anon_sym_DASH2, - ACTIONS(7500), 1, - anon_sym_PLUS2, - STATE(3875), 1, - sym_comment, - STATE(3970), 1, - sym__var, - STATE(4274), 1, - sym__immediate_decimal, - ACTIONS(1789), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4282), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1787), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [179771] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DOLLAR, - ACTIONS(7488), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - anon_sym_DASH2, - ACTIONS(7500), 1, - anon_sym_PLUS2, - ACTIONS(7502), 1, - anon_sym_LT, - ACTIONS(7504), 1, - anon_sym_EQ2, - STATE(3876), 1, - sym_comment, - STATE(3970), 1, - sym__var, - STATE(4248), 1, - sym__immediate_decimal, - ACTIONS(1807), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4264), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [179854] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DOLLAR, ACTIONS(7488), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_DOT2, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - ACTIONS(7506), 1, - anon_sym_LT, - ACTIONS(7508), 1, - anon_sym_EQ2, - STATE(3877), 1, + STATE(3873), 1, sym_comment, - STATE(3970), 1, + STATE(3990), 1, sym__var, - STATE(4237), 1, + STATE(4356), 1, sym__immediate_decimal, - ACTIONS(1815), 2, + ACTIONS(1983), 2, ts_builtin_sym_end, anon_sym_LF, STATE(4349), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [179937] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DOLLAR, - ACTIONS(7488), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_DOT2, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - anon_sym_DASH2, - ACTIONS(7500), 1, - anon_sym_PLUS2, - ACTIONS(7510), 1, - anon_sym_LT, - ACTIONS(7512), 1, - anon_sym_EQ2, - STATE(3878), 1, - sym_comment, - STATE(3970), 1, - sym__var, - STATE(4244), 1, - sym__immediate_decimal, - ACTIONS(1823), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4231), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1821), 36, + ACTIONS(1981), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -389955,501 +389643,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180020] = 15, + [179607] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, - aux_sym__immediate_decimal_token1, ACTIONS(7376), 1, anon_sym_DASH2, ACTIONS(7378), 1, anon_sym_PLUS2, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(7514), 1, + ACTIONS(7492), 1, anon_sym_LT, - ACTIONS(7516), 1, - anon_sym_EQ2, - STATE(3879), 1, - sym_comment, - STATE(3982), 1, - sym__var, - STATE(4208), 1, - sym__immediate_decimal, - ACTIONS(1831), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4209), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180103] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - ACTIONS(7486), 1, - aux_sym_unquoted_token5, - STATE(3880), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4199), 1, - sym__immediate_decimal, - STATE(4201), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180184] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3881), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4155), 1, - sym__immediate_decimal, - STATE(4158), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180262] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3882), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4069), 1, - sym__immediate_decimal, - STATE(4073), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2118), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180340] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3883), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4123), 1, - sym__immediate_decimal, - STATE(4121), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180418] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3884), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4200), 1, - sym__immediate_decimal, - STATE(4061), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180496] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2177), 1, - anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7496), 1, + anon_sym_EQ2, + ACTIONS(7498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3885), 1, + STATE(3874), 1, sym_comment, - STATE(3943), 1, + STATE(3995), 1, sym__var, - STATE(4172), 1, + STATE(4181), 1, sym__immediate_decimal, - STATE(4173), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [180574] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2173), 1, + ACTIONS(1973), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2205), 1, - anon_sym_DOLLAR, - ACTIONS(7452), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, - anon_sym_DASH2, - ACTIONS(7464), 1, - anon_sym_PLUS2, - STATE(3886), 1, - sym_comment, - STATE(3943), 1, - sym__var, - STATE(4168), 1, - sym__immediate_decimal, - STATE(4169), 2, + STATE(4180), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 38, + ACTIONS(1971), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -390480,33 +389711,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180652] = 13, + [179690] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3887), 1, + ACTIONS(7500), 1, + aux_sym_unquoted_token5, + STATE(3875), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4131), 1, + STATE(4164), 1, sym__immediate_decimal, - STATE(4130), 2, + STATE(4163), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 38, + ACTIONS(1191), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -390545,41 +389778,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180730] = 13, + [179771] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7374), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7376), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7378), 1, anon_sym_PLUS2, - STATE(3888), 1, + ACTIONS(7494), 1, + anon_sym_DOT2, + ACTIONS(7502), 1, + anon_sym_LT, + ACTIONS(7504), 1, + anon_sym_EQ2, + STATE(3876), 1, sym_comment, - STATE(3943), 1, + STATE(3995), 1, sym__var, - STATE(4129), 1, + STATE(4179), 1, sym__immediate_decimal, - STATE(4127), 2, + ACTIONS(1876), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4178), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 38, + ACTIONS(1874), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -390610,41 +389846,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180808] = 13, + [179854] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2149), 1, - anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - STATE(3889), 1, + ACTIONS(7506), 1, + anon_sym_LT, + ACTIONS(7508), 1, + anon_sym_EQ2, + STATE(3877), 1, sym_comment, - STATE(3943), 1, + STATE(3990), 1, sym__var, - STATE(4160), 1, + STATE(4335), 1, sym__immediate_decimal, - STATE(4161), 2, + ACTIONS(2001), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4359), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 38, + ACTIONS(1999), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -390675,41 +389914,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180886] = 13, + [179937] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - STATE(3890), 1, + ACTIONS(7510), 1, + anon_sym_LT, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3878), 1, sym_comment, - STATE(3943), 1, + STATE(3990), 1, sym__var, - STATE(4062), 1, + STATE(4381), 1, sym__immediate_decimal, - STATE(4063), 2, + ACTIONS(2009), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4354), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 38, + ACTIONS(2007), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -390740,36 +389982,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [180964] = 14, + [180020] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - ACTIONS(7518), 1, - aux_sym_unquoted_token5, - STATE(3891), 1, + ACTIONS(7514), 1, + anon_sym_LT, + ACTIONS(7516), 1, + anon_sym_EQ2, + STATE(3879), 1, sym_comment, - STATE(3970), 1, + STATE(3990), 1, sym__var, - STATE(4265), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(1195), 2, + ACTIONS(2017), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4261), 2, + STATE(4269), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 36, + ACTIONS(2015), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -390806,33 +390050,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181044] = 13, + [180103] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3892), 1, + ACTIONS(7500), 1, + aux_sym_unquoted_token5, + STATE(3880), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4064), 1, + STATE(4161), 1, sym__immediate_decimal, - STATE(4065), 2, + STATE(4158), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 38, + ACTIONS(1191), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -390871,33 +390117,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181122] = 13, + [180184] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2132), 1, anon_sym_LF, - ACTIONS(2205), 1, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7452), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7460), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7462), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7464), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3893), 1, + STATE(3881), 1, sym_comment, - STATE(3943), 1, + STATE(3945), 1, sym__var, - STATE(4067), 1, + STATE(4101), 1, sym__immediate_decimal, - STATE(4068), 2, + STATE(4099), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 38, + ACTIONS(2130), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -390936,42 +390182,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181200] = 14, + [180262] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2081), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - ACTIONS(7518), 1, - aux_sym_unquoted_token5, - STATE(3894), 1, + STATE(3882), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4290), 1, + STATE(4186), 1, sym__immediate_decimal, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4273), 2, + STATE(4184), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 36, + ACTIONS(2079), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391002,40 +390247,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181280] = 13, + [180340] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2128), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3895), 1, + STATE(3883), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4281), 1, + STATE(4098), 1, sym__immediate_decimal, - ACTIONS(2177), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4224), 2, + STATE(4097), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2175), 36, + ACTIONS(2126), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391066,40 +390312,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181357] = 13, + [180418] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2175), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3896), 1, + STATE(3884), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4332), 1, + STATE(4176), 1, sym__immediate_decimal, - ACTIONS(2097), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4320), 2, + STATE(4175), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 36, + ACTIONS(2173), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391130,40 +390377,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181434] = 13, + [180496] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2136), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3897), 1, + STATE(3885), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4251), 1, + STATE(4103), 1, sym__immediate_decimal, - ACTIONS(2108), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4316), 2, + STATE(4102), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 36, + ACTIONS(2134), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391194,40 +390442,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181511] = 13, + [180574] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2124), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3898), 1, + STATE(3886), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4294), 1, + STATE(4096), 1, sym__immediate_decimal, - ACTIONS(2112), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4284), 2, + STATE(4095), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 36, + ACTIONS(2122), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391258,40 +390507,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181588] = 13, + [180652] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2077), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3899), 1, + STATE(3887), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4228), 1, + STATE(4183), 1, sym__immediate_decimal, - ACTIONS(2120), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4236), 2, + STATE(4182), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 36, + ACTIONS(2075), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391322,40 +390572,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181665] = 13, + [180730] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2073), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3900), 1, + STATE(3888), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4337), 1, + STATE(4197), 1, sym__immediate_decimal, - ACTIONS(2093), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4336), 2, + STATE(4195), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 36, + ACTIONS(2071), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391386,40 +390637,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181742] = 13, + [180808] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2120), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3901), 1, + STATE(3889), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4348), 1, + STATE(4094), 1, sym__immediate_decimal, - ACTIONS(2124), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4346), 2, + STATE(4092), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 36, + ACTIONS(2118), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391450,34 +390702,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181819] = 13, + [180886] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - STATE(3902), 1, + ACTIONS(7518), 1, + aux_sym_unquoted_token5, + STATE(3890), 1, sym_comment, - STATE(3970), 1, + STATE(3990), 1, sym__var, - STATE(4377), 1, + STATE(4387), 1, sym__immediate_decimal, - ACTIONS(2132), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4383), 2, + STATE(4384), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 36, + ACTIONS(1191), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -391514,34 +390768,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181896] = 13, + [180966] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - STATE(3903), 1, + ACTIONS(7518), 1, + aux_sym_unquoted_token5, + STATE(3891), 1, sym_comment, - STATE(3970), 1, + STATE(3990), 1, sym__var, - STATE(4366), 1, + STATE(4357), 1, sym__immediate_decimal, - ACTIONS(2089), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4367), 2, + STATE(4324), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 36, + ACTIONS(1191), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -391578,40 +390834,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [181973] = 13, + [181046] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2108), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3904), 1, + STATE(3892), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4226), 1, + STATE(4083), 1, sym__immediate_decimal, - ACTIONS(2128), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4252), 2, + STATE(4080), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2126), 36, + ACTIONS(2106), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391642,40 +390899,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [182050] = 13, + [181124] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2112), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3905), 1, + STATE(3893), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4295), 1, + STATE(4086), 1, sym__immediate_decimal, - ACTIONS(2149), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4305), 2, + STATE(4085), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 36, + ACTIONS(2110), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391706,40 +390964,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [182127] = 13, + [181202] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2116), 1, + anon_sym_LF, + ACTIONS(2201), 1, anon_sym_DOLLAR, - ACTIONS(7488), 1, + ACTIONS(7440), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(7496), 1, + ACTIONS(7448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, + ACTIONS(7450), 1, anon_sym_DASH2, - ACTIONS(7500), 1, + ACTIONS(7452), 1, anon_sym_PLUS2, - STATE(3906), 1, + STATE(3894), 1, sym_comment, - STATE(3970), 1, + STATE(3945), 1, sym__var, - STATE(4363), 1, + STATE(4089), 1, sym__immediate_decimal, - ACTIONS(2173), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4313), 2, + STATE(4088), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 36, + ACTIONS(2114), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391770,29 +391029,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [182204] = 6, + [181280] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7522), 1, - aux_sym__immediate_decimal_token2, - STATE(3907), 1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3895), 1, sym_comment, - ACTIONS(817), 2, + STATE(3990), 1, + sym__var, + STATE(4243), 1, + sym__immediate_decimal, + ACTIONS(2073), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 43, + STATE(4242), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391805,8 +391075,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -391825,30 +391093,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182266] = 6, + [181357] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7524), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token2, - STATE(3908), 1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3896), 1, sym_comment, - ACTIONS(809), 2, + STATE(3990), 1, + sym__var, + STATE(4280), 1, + sym__immediate_decimal, + ACTIONS(2124), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 43, + STATE(4267), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -391861,8 +391139,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -391881,110 +391157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182328] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_null, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(3092), 1, - aux_sym_unquoted_token1, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(7216), 1, - anon_sym_LBRACK, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(7222), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - sym_val_date, - ACTIONS(7528), 1, - anon_sym_DASH, - ACTIONS(7530), 1, - anon_sym_DOT, - ACTIONS(7532), 1, - anon_sym_PLUS, - ACTIONS(7534), 1, - aux_sym__val_number_decimal_token1, - STATE(3909), 1, - sym_comment, - STATE(4465), 1, - sym__var, - STATE(5113), 1, - sym__str_double_quotes, - STATE(7725), 1, - sym__val_number, - STATE(8444), 1, - sym__val_number_decimal, - STATE(9078), 1, - sym_val_number, - STATE(9295), 1, - sym_expr_parenthesized, - STATE(9298), 1, - sym_val_variable, - STATE(9951), 1, - sym__match_pattern_expression, - STATE(9960), 1, - sym__match_pattern_list, - STATE(9964), 1, - sym__match_pattern_record, - STATE(9969), 1, - sym__expr_unary_minus, - STATE(9978), 1, - sym_unquoted, - STATE(10199), 1, - sym__match_pattern, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(9957), 2, - sym__match_pattern_value, - sym_val_range, - ACTIONS(3074), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3078), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(7536), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(9937), 7, - sym_val_nothing, - sym_val_bool, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [182446] = 6, + [181434] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7538), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7540), 1, - aux_sym__immediate_decimal_token2, - STATE(3910), 1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3897), 1, sym_comment, - ACTIONS(809), 3, + STATE(3990), 1, + sym__var, + STATE(4314), 1, + sym__immediate_decimal, + ACTIONS(2128), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 41, + STATE(4296), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -392000,8 +391203,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392020,29 +391221,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182507] = 6, + [181511] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_LF, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7542), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, anon_sym_DOT2, - STATE(3911), 1, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3898), 1, sym_comment, - ACTIONS(807), 43, + STATE(3990), 1, + sym__var, + STATE(4256), 1, + sym__immediate_decimal, + ACTIONS(2132), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4239), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392055,8 +391267,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392075,28 +391285,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182568] = 5, + [181588] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token2, - STATE(3912), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3899), 1, sym_comment, - ACTIONS(809), 2, + STATE(3990), 1, + sym__var, + STATE(4259), 1, + sym__immediate_decimal, + ACTIONS(2136), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 43, + STATE(4257), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392109,8 +391331,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392129,28 +391349,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182627] = 5, + [181665] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7545), 1, - aux_sym__immediate_decimal_token2, - STATE(3913), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3900), 1, sym_comment, - ACTIONS(846), 2, + STATE(3990), 1, + sym__var, + STATE(4234), 1, + sym__immediate_decimal, + ACTIONS(2175), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 43, + STATE(4232), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392163,8 +391395,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392183,29 +391413,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182686] = 6, + [181742] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(7547), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7550), 1, - aux_sym__immediate_decimal_token2, - STATE(3914), 1, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3901), 1, sym_comment, - ACTIONS(835), 43, + STATE(3990), 1, + sym__var, + STATE(4241), 1, + sym__immediate_decimal, + ACTIONS(2081), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4240), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392218,8 +391459,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392238,28 +391477,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182747] = 5, + [181819] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7522), 1, - aux_sym__immediate_decimal_token2, - STATE(3915), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3902), 1, sym_comment, - ACTIONS(817), 2, + STATE(3990), 1, + sym__var, + STATE(4329), 1, + sym__immediate_decimal, + ACTIONS(2108), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 43, + STATE(4326), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2106), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392272,8 +391523,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392292,26 +391541,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182806] = 6, + [181896] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7552), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7554), 1, - aux_sym__immediate_decimal_token2, - STATE(3916), 1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3903), 1, sym_comment, - ACTIONS(817), 3, + STATE(3990), 1, + sym__var, + STATE(4245), 1, + sym__immediate_decimal, + ACTIONS(2112), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 41, + STATE(4347), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2110), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -392327,8 +391587,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392347,89 +391605,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [182867] = 17, + [181973] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(2406), 1, anon_sym_DOLLAR, - ACTIONS(7556), 1, + ACTIONS(7478), 1, anon_sym_LPAREN, - ACTIONS(7558), 1, - anon_sym_LT, - ACTIONS(7560), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7562), 1, - anon_sym_EQ2, - ACTIONS(7564), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7566), 1, + ACTIONS(7488), 1, anon_sym_DASH2, - ACTIONS(7568), 1, + ACTIONS(7490), 1, anon_sym_PLUS2, - ACTIONS(7570), 1, - aux_sym_unquoted_token4, - ACTIONS(7572), 1, - aux_sym_unquoted_token6, - STATE(3917), 1, + STATE(3904), 1, sym_comment, - STATE(4894), 1, + STATE(3990), 1, sym__var, - STATE(5333), 1, + STATE(4237), 1, sym__immediate_decimal, - STATE(5332), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [182949] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - aux_sym__immediate_decimal_token2, - STATE(3918), 1, - sym_comment, - ACTIONS(817), 3, + ACTIONS(2077), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 41, + STATE(4236), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -392445,8 +391651,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392465,24 +391669,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [183007] = 5, + [182050] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7540), 1, - aux_sym__immediate_decimal_token2, - STATE(3919), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3905), 1, sym_comment, - ACTIONS(809), 3, + STATE(3990), 1, + sym__var, + STATE(4249), 1, + sym__immediate_decimal, + ACTIONS(2116), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 41, + STATE(4248), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -392498,8 +391715,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392518,25 +391733,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [183065] = 6, + [182127] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7574), 1, + ACTIONS(2406), 1, + anon_sym_DOLLAR, + ACTIONS(7478), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(7577), 1, - aux_sym__immediate_decimal_token2, - STATE(3920), 1, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7488), 1, + anon_sym_DASH2, + ACTIONS(7490), 1, + anon_sym_PLUS2, + STATE(3906), 1, sym_comment, - ACTIONS(837), 2, + STATE(3990), 1, + sym__var, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(2120), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(835), 41, + STATE(4250), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 36, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -392552,8 +391779,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392572,28 +391797,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [183125] = 6, + [182204] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7540), 1, + ACTIONS(7520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7522), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7579), 1, - anon_sym_DOT2, - STATE(3921), 1, + STATE(3907), 1, sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, + ACTIONS(817), 2, anon_sym_LF, - ACTIONS(807), 41, + anon_sym_DOT2, + ACTIONS(815), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392627,10 +391853,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183185] = 4, + [182266] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + anon_sym_null, + ACTIONS(3249), 1, + aux_sym_unquoted_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(5965), 1, + anon_sym_LPAREN, + ACTIONS(7260), 1, + anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(7266), 1, + anon_sym_LBRACE, + ACTIONS(7280), 1, + sym_val_date, + ACTIONS(7524), 1, + anon_sym_DASH, + ACTIONS(7526), 1, + anon_sym_DOT, + ACTIONS(7528), 1, + anon_sym_PLUS, + ACTIONS(7530), 1, + aux_sym__val_number_decimal_token1, + STATE(3908), 1, + sym_comment, + STATE(4552), 1, + sym__var, + STATE(4950), 1, + sym__str_double_quotes, + STATE(7727), 1, + sym__val_number, + STATE(8476), 1, + sym__val_number_decimal, + STATE(8827), 1, + sym_val_number, + STATE(9284), 1, + sym_expr_parenthesized, + STATE(9607), 1, + sym_val_variable, + STATE(9851), 1, + sym__match_pattern_list, + STATE(9872), 1, + sym__match_pattern_record, + STATE(9878), 1, + sym__expr_unary_minus, + STATE(10007), 1, + sym_unquoted, + STATE(10150), 1, + sym__match_pattern_expression, + STATE(10167), 1, + sym__match_pattern, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3800), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(10165), 2, + sym__match_pattern_value, + sym_val_range, + ACTIONS(3033), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3239), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(7532), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(10095), 7, + sym_val_nothing, + sym_val_bool, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [182384] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3922), 1, + ACTIONS(7534), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7536), 1, + aux_sym__immediate_decimal_token2, + STATE(3909), 1, sym_comment, ACTIONS(809), 2, anon_sym_LF, @@ -392679,15 +391993,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183241] = 4, + [182446] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3923), 1, + ACTIONS(817), 1, + anon_sym_LF, + ACTIONS(7522), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7538), 1, + anon_sym_DOT2, + STATE(3910), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(815), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + [182507] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7536), 1, + aux_sym__immediate_decimal_token2, + STATE(3911), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 43, + ACTIONS(807), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -392731,10 +392102,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183297] = 4, + [182566] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3924), 1, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(7541), 1, + anon_sym_DOT2, + ACTIONS(7544), 1, + aux_sym__immediate_decimal_token2, + STATE(3912), 1, + sym_comment, + ACTIONS(846), 43, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + [182627] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7522), 1, + aux_sym__immediate_decimal_token2, + STATE(3913), 1, sym_comment, ACTIONS(817), 2, anon_sym_LF, @@ -392783,18 +392211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183353] = 5, + [182686] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7582), 1, + ACTIONS(7546), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7548), 1, aux_sym__immediate_decimal_token2, - STATE(3925), 1, + STATE(3914), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 41, + ACTIONS(815), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -392836,15 +392266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183411] = 4, + [182747] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3926), 1, + ACTIONS(7550), 1, + aux_sym__immediate_decimal_token2, + STATE(3915), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 43, + ACTIONS(855), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -392888,28 +392320,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183467] = 6, + [182806] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(7552), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7554), 1, + aux_sym__immediate_decimal_token2, + STATE(3916), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2390), 1, anon_sym_DOT2, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - STATE(3927), 1, - sym_comment, - ACTIONS(861), 42, + ACTIONS(807), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -392942,20 +392374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183527] = 7, + aux_sym_unquoted_token6, + [182867] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + STATE(3917), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3928), 1, - sym_comment, - STATE(3942), 1, - sym_path, - STATE(4109), 1, - sym_cell_path, - ACTIONS(1033), 40, + ACTIONS(807), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -392978,6 +392406,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -392996,27 +392426,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183588] = 6, + aux_sym_unquoted_token6, + [182923] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2497), 1, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(2249), 1, anon_sym_DOT2, - ACTIONS(2499), 1, + ACTIONS(2251), 1, aux_sym_unquoted_token6, - STATE(3929), 1, + STATE(3918), 1, sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 40, + ACTIONS(877), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -393049,16 +392481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183647] = 4, + [182983] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3930), 1, + ACTIONS(7548), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7556), 1, + anon_sym_DOT2, + STATE(3919), 1, sym_comment, - ACTIONS(809), 3, + ACTIONS(817), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 41, + ACTIONS(815), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393100,20 +392535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183702] = 7, + [183043] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + STATE(3920), 1, + sym_comment, + ACTIONS(817), 2, anon_sym_LF, - ACTIONS(7586), 1, anon_sym_DOT2, - STATE(3931), 1, - sym_comment, - STATE(3932), 1, - sym_path, - STATE(4038), 1, - sym_cell_path, - ACTIONS(997), 40, + ACTIONS(815), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393136,6 +392566,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393154,20 +392586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183763] = 7, + aux_sym_unquoted_token6, + [183099] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + STATE(3921), 1, + sym_comment, + ACTIONS(857), 2, anon_sym_LF, - ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3932), 1, - sym_comment, - STATE(3940), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_path, - ACTIONS(903), 40, + ACTIONS(855), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393190,6 +392618,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393208,16 +392638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183824] = 4, + aux_sym_unquoted_token6, + [183155] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3933), 1, + ACTIONS(7559), 1, + anon_sym_DOT2, + ACTIONS(7562), 1, + aux_sym__immediate_decimal_token2, + STATE(3922), 1, sym_comment, - ACTIONS(817), 3, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 41, + ACTIONS(846), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393259,20 +392693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [183879] = 7, + [183215] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + STATE(3923), 1, + sym_comment, + ACTIONS(896), 2, anon_sym_LF, - ACTIONS(7589), 1, anon_sym_DOT2, - STATE(3932), 1, - sym_path, - STATE(3934), 1, - sym_comment, - STATE(4031), 1, - sym_cell_path, - ACTIONS(979), 40, + ACTIONS(894), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393295,6 +392724,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393313,32 +392744,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [183940] = 7, + aux_sym_unquoted_token6, + [183271] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(829), 1, anon_sym_LF, - ACTIONS(7584), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7564), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, + anon_sym_LT, + ACTIONS(7568), 1, anon_sym_DOT2, - STATE(3935), 1, + ACTIONS(7570), 1, + anon_sym_EQ2, + ACTIONS(7572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7574), 1, + anon_sym_DASH2, + ACTIONS(7576), 1, + anon_sym_PLUS2, + ACTIONS(7578), 1, + aux_sym_unquoted_token4, + ACTIONS(7580), 1, + aux_sym_unquoted_token6, + STATE(3924), 1, sym_comment, - STATE(3942), 1, - sym_path, - STATE(4111), 1, - sym_cell_path, - ACTIONS(990), 40, + STATE(4789), 1, + sym__var, + STATE(5196), 1, + sym__immediate_decimal, + STATE(5174), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(827), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -393358,6 +392810,49 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, + [183353] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7554), 1, + aux_sym__immediate_decimal_token2, + STATE(3925), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 41, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -393367,30 +392862,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184001] = 7, + aux_sym_unquoted_token6, + [183411] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(7582), 1, + aux_sym__immediate_decimal_token2, + STATE(3926), 1, + sym_comment, + ACTIONS(857), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7592), 1, anon_sym_DOT2, - ACTIONS(7594), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7596), 1, - aux_sym_unquoted_token2, - STATE(3936), 1, - sym_comment, - ACTIONS(1005), 40, + ACTIONS(855), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -393403,6 +392895,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393421,51 +392915,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184062] = 17, + aux_sym_unquoted_token6, + [183469] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7600), 1, - anon_sym_LT, - ACTIONS(7602), 1, - anon_sym_DOT2, - ACTIONS(7604), 1, - anon_sym_EQ2, - ACTIONS(7606), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7608), 1, - anon_sym_DASH2, - ACTIONS(7610), 1, - anon_sym_PLUS2, - ACTIONS(7612), 1, - aux_sym_unquoted_token4, - ACTIONS(7614), 1, - aux_sym_unquoted_token6, - STATE(3937), 1, + ACTIONS(7548), 1, + aux_sym__immediate_decimal_token2, + STATE(3927), 1, sym_comment, - STATE(4926), 1, - sym__var, - STATE(5504), 1, - sym__immediate_decimal, - ACTIONS(825), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - STATE(5507), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 28, + anon_sym_DOT2, + ACTIONS(815), 41, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -393476,6 +392948,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393485,20 +392959,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [184143] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token6, + [183527] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(7584), 1, - anon_sym_DOT2, - STATE(3938), 1, + STATE(3928), 1, sym_comment, - STATE(3942), 1, + STATE(3952), 1, + aux_sym_cell_path_repeat1, + STATE(4039), 1, sym_path, - STATE(4197), 1, - sym_cell_path, - ACTIONS(979), 40, + ACTIONS(975), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(973), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393539,20 +393022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184204] = 7, + [183586] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(927), 1, anon_sym_LF, - ACTIONS(2399), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7592), 1, + ACTIONS(7584), 1, anon_sym_DOT2, - ACTIONS(7596), 1, - aux_sym_unquoted_token2, - STATE(3939), 1, + STATE(3929), 1, sym_comment, - ACTIONS(1005), 40, + STATE(3940), 1, + sym_path, + STATE(4069), 1, + sym_cell_path, + ACTIONS(925), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393593,19 +393076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184265] = 6, + [183647] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(3940), 1, - sym_comment, - STATE(3947), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_path, - ACTIONS(977), 2, + ACTIONS(968), 1, anon_sym_LF, + ACTIONS(7586), 1, anon_sym_DOT2, - ACTIONS(975), 40, + STATE(3930), 1, + sym_comment, + STATE(3950), 1, + sym_path, + STATE(4038), 1, + sym_cell_path, + ACTIONS(966), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393646,16 +393130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184324] = 5, + [183708] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - STATE(3941), 1, + ACTIONS(7584), 1, + anon_sym_DOT2, + STATE(3931), 1, sym_comment, - ACTIONS(861), 42, + STATE(3940), 1, + sym_path, + STATE(4081), 1, + sym_cell_path, + ACTIONS(909), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393678,8 +393166,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393698,20 +393184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184381] = 7, + [183769] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(7584), 1, - anon_sym_DOT2, - STATE(3942), 1, + ACTIONS(2251), 1, + aux_sym_unquoted_token6, + STATE(3932), 1, sym_comment, - STATE(3945), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_path, - ACTIONS(903), 40, + ACTIONS(877), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393734,6 +393216,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -393752,20 +393236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184442] = 7, + [183826] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(919), 1, anon_sym_LF, ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3942), 1, - sym_path, - STATE(3943), 1, + STATE(3933), 1, sym_comment, - STATE(4162), 1, + STATE(3940), 1, + sym_path, + STATE(4093), 1, sym_cell_path, - ACTIONS(997), 40, + ACTIONS(917), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393806,20 +393290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184503] = 7, + [183887] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, + ACTIONS(7589), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + STATE(3934), 1, + sym_comment, + ACTIONS(2959), 2, anon_sym_LF, - ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3942), 1, - sym_path, - STATE(3944), 1, - sym_comment, - STATE(4187), 1, - sym_cell_path, - ACTIONS(909), 40, + ACTIONS(2957), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393860,20 +393343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184564] = 7, + [183946] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(7584), 1, + ACTIONS(2650), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7593), 1, anon_sym_DOT2, - STATE(3945), 1, + ACTIONS(7595), 1, + aux_sym_unquoted_token2, + STATE(3935), 1, sym_comment, - STATE(3947), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_path, - ACTIONS(975), 40, + ACTIONS(949), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393914,19 +393397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184625] = 6, + [184007] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7618), 1, - aux_sym__immediate_decimal_token2, - STATE(3946), 1, - sym_comment, - ACTIONS(2988), 2, + ACTIONS(931), 1, anon_sym_LF, + ACTIONS(7584), 1, anon_sym_DOT2, - ACTIONS(2986), 40, + STATE(3936), 1, + sym_comment, + STATE(3940), 1, + sym_path, + STATE(4082), 1, + sym_cell_path, + ACTIONS(929), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -393967,19 +393451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184684] = 6, + [184068] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(935), 1, anon_sym_LF, - ACTIONS(7620), 1, + ACTIONS(7584), 1, anon_sym_DOT2, - STATE(4008), 1, - sym_path, - STATE(3947), 2, + STATE(3937), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 40, + STATE(3940), 1, + sym_path, + STATE(4166), 1, + sym_cell_path, + ACTIONS(933), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394020,16 +393505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184743] = 4, + [184129] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3948), 1, + STATE(3938), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 41, + ACTIONS(855), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394071,24 +393556,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token6, - [184798] = 4, + [184184] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(3949), 1, - sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, + ACTIONS(951), 1, anon_sym_LF, + ACTIONS(7593), 1, anon_sym_DOT2, - ACTIONS(889), 41, + ACTIONS(7595), 1, + aux_sym_unquoted_token2, + ACTIONS(7597), 1, + aux_sym__immediate_decimal_token1, + STATE(3939), 1, + sym_comment, + ACTIONS(949), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394101,8 +393592,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -394121,21 +393610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token6, - [184853] = 7, + [184245] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, + ACTIONS(905), 1, anon_sym_LF, ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3942), 1, - sym_path, - STATE(3950), 1, + STATE(3940), 1, sym_comment, - STATE(4185), 1, - sym_cell_path, - ACTIONS(1001), 40, + STATE(3948), 1, + aux_sym_cell_path_repeat1, + STATE(4039), 1, + sym_path, + ACTIONS(903), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394176,20 +393664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184914] = 7, + [184306] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(915), 1, anon_sym_LF, ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3942), 1, + STATE(3940), 1, sym_path, - STATE(3951), 1, + STATE(3941), 1, sym_comment, - STATE(4214), 1, + STATE(4090), 1, sym_cell_path, - ACTIONS(971), 40, + ACTIONS(913), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394230,30 +393718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [184975] = 7, + [184367] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_LF, - ACTIONS(7584), 1, - anon_sym_DOT2, STATE(3942), 1, - sym_path, - STATE(3952), 1, sym_comment, - STATE(4179), 1, - sym_cell_path, - ACTIONS(967), 40, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394266,6 +393748,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -394284,19 +393768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185036] = 6, + aux_sym_unquoted_token6, + [184422] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7623), 1, + ACTIONS(7599), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7625), 1, + ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - STATE(3953), 1, + STATE(3943), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3000), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2996), 40, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394337,17 +393822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185095] = 5, + [184481] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2499), 1, - aux_sym_unquoted_token6, - STATE(3954), 1, + STATE(3944), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 40, + anon_sym_DOT2, + ACTIONS(815), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394388,17 +393872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185151] = 5, + aux_sym_unquoted_token6, + [184536] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - STATE(3955), 1, - sym_comment, - ACTIONS(2998), 2, + ACTIONS(968), 1, anon_sym_LF, + ACTIONS(7584), 1, anon_sym_DOT2, - ACTIONS(2996), 40, + STATE(3940), 1, + sym_path, + STATE(3945), 1, + sym_comment, + STATE(4189), 1, + sym_cell_path, + ACTIONS(966), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394439,82 +393927,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185207] = 7, + [184597] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(961), 1, anon_sym_LF, - ACTIONS(7627), 1, + ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3956), 1, - sym_comment, - STATE(3961), 1, - aux_sym_cell_path_repeat1, - STATE(4189), 1, + STATE(3940), 1, sym_path, - ACTIONS(903), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185267] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3957), 1, + STATE(3946), 1, sym_comment, - STATE(3962), 1, - sym_path, - STATE(4289), 1, + STATE(4063), 1, sym_cell_path, - ACTIONS(969), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(967), 38, + ACTIONS(959), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394545,20 +393981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185327] = 6, + [184658] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3958), 1, + STATE(3947), 1, sym_comment, - STATE(3981), 1, - aux_sym_cell_path_repeat1, - STATE(4205), 1, - sym_path, - ACTIONS(977), 3, + ACTIONS(896), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(975), 38, + ACTIONS(894), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394579,6 +394011,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -394597,29 +394031,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185385] = 7, + aux_sym_unquoted_token6, + [184713] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(975), 1, + anon_sym_LF, + ACTIONS(7584), 1, anon_sym_DOT2, - STATE(3959), 1, + STATE(3948), 1, sym_comment, - STATE(3962), 1, + STATE(3952), 1, + aux_sym_cell_path_repeat1, + STATE(4039), 1, sym_path, - STATE(4269), 1, - sym_cell_path, - ACTIONS(1003), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1001), 38, + ACTIONS(973), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394650,31 +394086,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185445] = 7, + [184774] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7605), 1, + anon_sym_LT, + ACTIONS(7607), 1, anon_sym_DOT2, - STATE(3960), 1, + ACTIONS(7609), 1, + anon_sym_EQ2, + ACTIONS(7611), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7613), 1, + anon_sym_DASH2, + ACTIONS(7615), 1, + anon_sym_PLUS2, + ACTIONS(7617), 1, + aux_sym_unquoted_token4, + ACTIONS(7619), 1, + aux_sym_unquoted_token6, + STATE(3949), 1, sym_comment, - STATE(3962), 1, - sym_path, - STATE(4287), 1, - sym_cell_path, - ACTIONS(973), 2, + STATE(4937), 1, + sym__var, + STATE(5445), 1, + sym__immediate_decimal, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(971), 38, + STATE(5440), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(827), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -394694,90 +394150,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [185505] = 6, + [184855] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(3961), 1, - sym_comment, - STATE(3974), 1, - aux_sym_cell_path_repeat1, - STATE(4189), 1, - sym_path, - ACTIONS(977), 2, + ACTIONS(905), 1, anon_sym_LF, + ACTIONS(7584), 1, anon_sym_DOT2, - ACTIONS(975), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185563] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3962), 1, - sym_comment, - STATE(3988), 1, + STATE(3928), 1, aux_sym_cell_path_repeat1, - STATE(4205), 1, + STATE(3950), 1, + sym_comment, + STATE(4039), 1, sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 38, + ACTIONS(903), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394808,28 +394204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185623] = 6, + [184916] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(7631), 1, + ACTIONS(2595), 1, anon_sym_DOT2, - ACTIONS(7634), 1, - aux_sym__immediate_decimal_token2, - STATE(3963), 1, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, + STATE(3951), 1, sym_comment, - ACTIONS(3489), 40, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -394842,6 +394237,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -394860,18 +394257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185681] = 6, + [184975] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(7636), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7638), 1, - aux_sym__immediate_decimal_token2, - STATE(3964), 1, + ACTIONS(7621), 1, + anon_sym_DOT2, + STATE(4039), 1, + sym_path, + STATE(3952), 2, sym_comment, - ACTIONS(2986), 40, + aux_sym_cell_path_repeat1, + ACTIONS(942), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394912,17 +394310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185739] = 5, + [185034] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7640), 1, - aux_sym__immediate_decimal_token2, - STATE(3965), 1, - sym_comment, - ACTIONS(3836), 2, + ACTIONS(935), 1, anon_sym_LF, + ACTIONS(7624), 1, anon_sym_DOT2, - ACTIONS(3834), 40, + STATE(3950), 1, + sym_path, + STATE(3953), 1, + sym_comment, + STATE(4003), 1, + sym_cell_path, + ACTIONS(933), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -394963,21 +394364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185795] = 7, + [185095] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7627), 1, + aux_sym__immediate_decimal_token1, ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3962), 1, - sym_path, - STATE(3966), 1, + aux_sym__immediate_decimal_token2, + STATE(3954), 1, sym_comment, - STATE(4233), 1, - sym_cell_path, - ACTIONS(911), 2, + ACTIONS(3000), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(909), 38, + anon_sym_DOT2, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395016,30 +394416,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [185855] = 6, + [185153] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7642), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token2, - STATE(3967), 1, - sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, + ACTIONS(1983), 1, anon_sym_LF, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7633), 1, + anon_sym_LT, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(2996), 38, + ACTIONS(7637), 1, + anon_sym_EQ2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(3955), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5528), 1, + sym__immediate_decimal, + STATE(5527), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1981), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -395059,39 +394477,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [185913] = 6, + [185229] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(2001), 1, anon_sym_LF, - ACTIONS(7646), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(7650), 1, - aux_sym__immediate_decimal_token2, - STATE(3968), 1, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + ACTIONS(7645), 1, + anon_sym_LT, + ACTIONS(7647), 1, + anon_sym_EQ2, + STATE(3956), 1, sym_comment, - ACTIONS(3489), 40, + STATE(4740), 1, + sym__var, + STATE(5532), 1, + sym__immediate_decimal, + STATE(5531), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -395111,39 +394538,48 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [185971] = 6, + [185305] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(2009), 1, anon_sym_LF, - ACTIONS(7652), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(7654), 1, - aux_sym__immediate_decimal_token2, - STATE(3969), 1, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + ACTIONS(7649), 1, + anon_sym_LT, + ACTIONS(7651), 1, + anon_sym_EQ2, + STATE(3957), 1, sym_comment, - ACTIONS(2996), 40, + STATE(4740), 1, + sym__var, + STATE(5536), 1, + sym__immediate_decimal, + STATE(5535), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2007), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -395163,38 +394599,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [186029] = 7, + [185381] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3962), 1, - sym_path, - STATE(3970), 1, + ACTIONS(7653), 1, + anon_sym_QMARK2, + STATE(3958), 1, sym_comment, - STATE(4338), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, + ACTIONS(1072), 2, anon_sym_LF, - ACTIONS(997), 38, + anon_sym_DOT2, + ACTIONS(1070), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395225,14 +394650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186089] = 4, + [185437] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, + ACTIONS(3167), 1, anon_sym_LF, - STATE(3971), 1, + ACTIONS(7655), 1, + anon_sym_DOT2, + ACTIONS(7657), 1, + aux_sym__immediate_decimal_token2, + STATE(3959), 1, sym_comment, - ACTIONS(1065), 42, + ACTIONS(3165), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395255,8 +394684,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -395275,48 +394702,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186143] = 15, + [185495] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7556), 1, - anon_sym_LPAREN, - ACTIONS(7564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7566), 1, - anon_sym_DASH2, - ACTIONS(7568), 1, - anon_sym_PLUS2, - ACTIONS(7656), 1, - anon_sym_LT, - ACTIONS(7658), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - ACTIONS(7660), 1, - anon_sym_EQ2, - STATE(3972), 1, + STATE(3960), 1, sym_comment, - STATE(4894), 1, - sym__var, - STATE(5357), 1, - sym__immediate_decimal, - STATE(5360), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 30, + STATE(3981), 1, + sym_path, + STATE(4238), 1, + sym_cell_path, + ACTIONS(915), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(913), 38, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -395336,30 +394746,57 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [186219] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [185555] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(2017), 1, anon_sym_LF, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7662), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, anon_sym_DOT2, - STATE(3973), 1, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + ACTIONS(7661), 1, + anon_sym_LT, + ACTIONS(7663), 1, + anon_sym_EQ2, + STATE(3961), 1, sym_comment, - ACTIONS(2996), 40, + STATE(4740), 1, + sym__var, + STATE(5547), 1, + sym__immediate_decimal, + STATE(5544), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2015), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -395379,89 +394816,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [186277] = 6, + [185631] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_LF, - ACTIONS(7665), 1, - anon_sym_DOT2, - STATE(4189), 1, - sym_path, - STATE(3974), 2, + STATE(3962), 1, sym_comment, + STATE(3984), 1, aux_sym_cell_path_repeat1, - ACTIONS(1015), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186335] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, + STATE(4115), 1, + sym_path, + ACTIONS(975), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7668), 1, - sym_filesize_unit, - ACTIONS(7670), 1, - sym_duration_unit, - STATE(3975), 1, - sym_comment, - ACTIONS(1102), 40, + anon_sym_DOT2, + ACTIONS(973), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395492,73 +394868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186393] = 7, + [185689] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_LF, - ACTIONS(7672), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - STATE(3956), 1, - sym_path, - STATE(3976), 1, - sym_comment, - STATE(4166), 1, - sym_cell_path, - ACTIONS(997), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186453] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token2, - STATE(3977), 1, + STATE(3963), 1, sym_comment, - ACTIONS(2988), 3, + STATE(3984), 1, + aux_sym_cell_path_repeat1, + STATE(4115), 1, + sym_path, + ACTIONS(975), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 38, + ACTIONS(973), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395597,14 +394921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186511] = 4, + [185749] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(3978), 1, + STATE(3964), 1, sym_comment, - ACTIONS(861), 42, + ACTIONS(1084), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1082), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395616,6 +394941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -395627,8 +394953,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -395647,15 +394971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186565] = 4, + [185803] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3979), 1, + STATE(3965), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1088), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1113), 41, + ACTIONS(1086), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395697,17 +395021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186619] = 5, + [185857] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7618), 1, + ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - STATE(3980), 1, + STATE(3966), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(3000), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2986), 40, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395748,28 +395072,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186675] = 6, + [185913] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(7665), 1, anon_sym_DOT2, - STATE(4205), 1, + STATE(4156), 1, sym_path, - ACTIONS(1017), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3981), 2, + STATE(3967), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1015), 38, + ACTIONS(942), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185971] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(7668), 1, + anon_sym_DOT2, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token2, + STATE(3968), 1, + sym_comment, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395800,29 +395176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186733] = 7, + [186029] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7682), 1, + ACTIONS(3167), 1, + anon_sym_LF, + ACTIONS(7672), 1, anon_sym_DOT2, - STATE(3982), 1, + ACTIONS(7676), 1, + aux_sym__immediate_decimal_token2, + STATE(3969), 1, sym_comment, - STATE(3986), 1, - sym_path, - STATE(4191), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 38, + ACTIONS(3165), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395853,28 +395228,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186793] = 6, + [186087] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(7685), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - ACTIONS(7687), 1, - aux_sym__immediate_decimal_token2, - STATE(3983), 1, + STATE(3970), 1, sym_comment, - ACTIONS(3489), 40, + STATE(3981), 1, + sym_path, + STATE(4228), 1, + sym_cell_path, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395905,27 +395281,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186851] = 5, + [186147] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7689), 1, - anon_sym_QMARK2, - STATE(3984), 1, + ACTIONS(7678), 1, + anon_sym_DOT2, + STATE(3971), 1, sym_comment, - ACTIONS(1056), 2, + STATE(3979), 1, + sym_path, + STATE(4100), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 40, + ACTIONS(933), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -395956,15 +395334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186907] = 4, + [186207] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3985), 1, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + STATE(3972), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(2959), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1098), 41, + ACTIONS(2957), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -395976,7 +395356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -396006,29 +395385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [186961] = 7, + [186263] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3958), 1, - aux_sym_cell_path_repeat1, - STATE(3986), 1, - sym_comment, - STATE(4205), 1, - sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(903), 38, + STATE(3973), 1, + sym_comment, + ACTIONS(877), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -396041,6 +395415,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -396059,17 +395435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187021] = 5, + [186317] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7689), 1, - anon_sym_QMARK2, - STATE(3987), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(1179), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 40, + STATE(3974), 1, + sym_comment, + ACTIONS(1177), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396092,6 +395465,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -396110,29 +395485,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187077] = 7, + [186371] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DOT2, - STATE(3981), 1, - aux_sym_cell_path_repeat1, - STATE(3988), 1, + ACTIONS(7681), 1, + aux_sym__immediate_decimal_token2, + STATE(3975), 1, sym_comment, - STATE(4205), 1, - sym_path, - ACTIONS(977), 2, - ts_builtin_sym_end, + ACTIONS(3806), 2, anon_sym_LF, - ACTIONS(975), 38, + anon_sym_DOT2, + ACTIONS(3804), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -396163,21 +395536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187137] = 7, + [186427] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - STATE(3962), 1, - sym_path, - STATE(3989), 1, + STATE(3976), 1, sym_comment, - STATE(4309), 1, + STATE(3981), 1, + sym_path, + STATE(4258), 1, sym_cell_path, - ACTIONS(992), 2, + ACTIONS(919), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(990), 38, + ACTIONS(917), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396216,21 +395589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187197] = 7, + [186487] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7691), 1, - anon_sym_DOT2, - STATE(3986), 1, - sym_path, - STATE(3990), 1, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, + STATE(3977), 1, sym_comment, - STATE(4204), 1, - sym_cell_path, - ACTIONS(981), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 38, + ACTIONS(877), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396251,6 +395620,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -396269,21 +395640,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187257] = 7, + [186543] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(968), 1, + anon_sym_LF, + ACTIONS(7683), 1, anon_sym_DOT2, - STATE(3962), 1, - sym_path, - STATE(3991), 1, + STATE(3978), 1, sym_comment, - STATE(4323), 1, + STATE(3986), 1, + sym_path, + STATE(4220), 1, sym_cell_path, - ACTIONS(981), 2, + ACTIONS(966), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186603] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + anon_sym_DOT2, + STATE(3962), 1, + aux_sym_cell_path_repeat1, + STATE(3979), 1, + sym_comment, + STATE(4115), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 38, + ACTIONS(903), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396322,18 +395746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187317] = 6, + [186663] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(7654), 1, + ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7694), 1, - aux_sym__immediate_decimal_token1, - STATE(3992), 1, + ACTIONS(7686), 1, + anon_sym_DOT2, + STATE(3980), 1, sym_comment, - ACTIONS(2996), 40, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396374,21 +395798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187375] = 7, + [186721] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - ACTIONS(7698), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7700), 1, - aux_sym_unquoted_token2, - STATE(3993), 1, + STATE(3963), 1, + aux_sym_cell_path_repeat1, + STATE(3981), 1, sym_comment, - ACTIONS(1007), 2, + STATE(4115), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 38, + ACTIONS(903), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396427,21 +395851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187435] = 7, + [186781] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(2779), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7689), 1, anon_sym_DOT2, - STATE(3962), 1, - sym_path, - STATE(3994), 1, + ACTIONS(7691), 1, + aux_sym_unquoted_token2, + STATE(3982), 1, sym_comment, - STATE(4374), 1, - sym_cell_path, - ACTIONS(1035), 2, + ACTIONS(951), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 38, + ACTIONS(949), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396480,37 +395904,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187495] = 15, + [186841] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1789), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(3057), 1, anon_sym_DOLLAR, - ACTIONS(7702), 1, + ACTIONS(7564), 1, anon_sym_LPAREN, - ACTIONS(7704), 1, + ACTIONS(7574), 1, + anon_sym_DASH2, + ACTIONS(7576), 1, + anon_sym_PLUS2, + ACTIONS(7693), 1, anon_sym_LT, - ACTIONS(7706), 1, + ACTIONS(7695), 1, anon_sym_DOT2, - ACTIONS(7708), 1, + ACTIONS(7697), 1, anon_sym_EQ2, - ACTIONS(7710), 1, + ACTIONS(7699), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(3995), 1, + STATE(3983), 1, sym_comment, - STATE(4871), 1, + STATE(4789), 1, sym__var, - STATE(5606), 1, + STATE(5126), 1, sym__immediate_decimal, - STATE(5607), 2, + STATE(5125), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 30, + ACTIONS(1971), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -396541,48 +395965,82 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187571] = 15, + [186917] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1807), 1, + ACTIONS(7701), 1, + anon_sym_DOT2, + STATE(4115), 1, + sym_path, + ACTIONS(944), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, + STATE(3984), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 38, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [186975] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7704), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - ACTIONS(7716), 1, - anon_sym_LT, - ACTIONS(7718), 1, - anon_sym_EQ2, - STATE(3996), 1, + STATE(3985), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5598), 1, - sym__immediate_decimal, - STATE(5601), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 30, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -396602,21 +396060,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187647] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [187033] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7696), 1, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(7706), 1, anon_sym_DOT2, - ACTIONS(7700), 1, - aux_sym_unquoted_token2, - STATE(3997), 1, + STATE(3986), 1, sym_comment, - ACTIONS(1007), 2, + STATE(3994), 1, + aux_sym_cell_path_repeat1, + STATE(4156), 1, + sym_path, + ACTIONS(903), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [187093] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + anon_sym_DOT2, + STATE(3981), 1, + sym_path, + STATE(3987), 1, + sym_comment, + STATE(4351), 1, + sym_cell_path, + ACTIONS(927), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 38, + ACTIONS(925), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396655,37 +396175,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [187707] = 15, + [187153] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1815), 1, + ACTIONS(1876), 1, anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(3057), 1, anon_sym_DOLLAR, - ACTIONS(7702), 1, + ACTIONS(7564), 1, anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, + ACTIONS(7572), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, + ACTIONS(7574), 1, anon_sym_DASH2, - ACTIONS(7714), 1, + ACTIONS(7576), 1, anon_sym_PLUS2, - ACTIONS(7720), 1, + ACTIONS(7695), 1, + anon_sym_DOT2, + ACTIONS(7708), 1, anon_sym_LT, - ACTIONS(7722), 1, + ACTIONS(7710), 1, anon_sym_EQ2, - STATE(3998), 1, + STATE(3988), 1, sym_comment, - STATE(4871), 1, + STATE(4789), 1, sym__var, - STATE(5593), 1, + STATE(5332), 1, sym__immediate_decimal, - STATE(5594), 2, + STATE(5323), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 30, + ACTIONS(1874), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -396716,48 +396236,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187783] = 15, + [187229] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1823), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - ACTIONS(7724), 1, - anon_sym_LT, - ACTIONS(7726), 1, - anon_sym_EQ2, - STATE(3999), 1, + STATE(3981), 1, + sym_path, + STATE(3989), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5585), 1, - sym__immediate_decimal, - STATE(5586), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1821), 30, + STATE(4362), 1, + sym_cell_path, + ACTIONS(931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(929), 38, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -396777,48 +396280,40 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187859] = 15, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [187289] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7556), 1, - anon_sym_LPAREN, - ACTIONS(7566), 1, - anon_sym_DASH2, - ACTIONS(7568), 1, - anon_sym_PLUS2, - ACTIONS(7658), 1, + ACTIONS(7659), 1, anon_sym_DOT2, - ACTIONS(7728), 1, - anon_sym_LT, - ACTIONS(7730), 1, - anon_sym_EQ2, - ACTIONS(7732), 1, - aux_sym__immediate_decimal_token1, - STATE(4000), 1, + STATE(3981), 1, + sym_path, + STATE(3990), 1, sym_comment, - STATE(4894), 1, - sym__var, - STATE(5367), 1, - sym__immediate_decimal, - STATE(5355), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 30, + STATE(4223), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(966), 38, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -396838,68 +396333,81 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [187935] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [187349] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4001), 1, - sym_comment, - ACTIONS(1115), 2, + ACTIONS(1056), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 40, - anon_sym_EQ, + ACTIONS(7712), 1, + sym_filesize_unit, + ACTIONS(7714), 1, + sym_duration_unit, + STATE(3991), 1, + sym_comment, + ACTIONS(1054), 40, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [187988] = 6, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [187407] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7734), 1, + ACTIONS(7716), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7736), 1, + ACTIONS(7718), 1, aux_sym__immediate_decimal_token2, - STATE(4002), 1, + STATE(3992), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(2959), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2996), 38, + anon_sym_DOT2, + ACTIONS(2957), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -396938,25 +396446,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188045] = 4, + [187465] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4003), 1, + ACTIONS(7659), 1, + anon_sym_DOT2, + STATE(3981), 1, + sym_path, + STATE(3993), 1, sym_comment, - ACTIONS(3890), 2, + STATE(4382), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3888), 40, + ACTIONS(933), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -396987,15 +396499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188098] = 4, + [187525] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4004), 1, + STATE(3967), 1, + aux_sym_cell_path_repeat1, + STATE(3994), 1, sym_comment, - ACTIONS(1100), 2, + STATE(4156), 1, + sym_path, + ACTIONS(975), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1098), 40, + ACTIONS(973), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -397011,7 +396527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -397036,176 +396551,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [188151] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7738), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7740), 1, - aux_sym__immediate_decimal_token2, - STATE(4005), 1, - sym_comment, - ACTIONS(815), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [188208] = 5, + [187583] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_QMARK2, - STATE(4006), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, + ACTIONS(7720), 1, anon_sym_DOT2, - ACTIONS(1054), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [188263] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4011), 1, - anon_sym_LF, - ACTIONS(7744), 1, - anon_sym_EQ, - STATE(4007), 1, - sym_comment, - ACTIONS(4007), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [188318] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4008), 1, + STATE(3979), 1, + sym_path, + STATE(3995), 1, sym_comment, - ACTIONS(1224), 2, + STATE(4126), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 40, + ACTIONS(966), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -397236,16 +396604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188371] = 5, + [187643] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, + ACTIONS(2959), 1, anon_sym_LF, - ACTIONS(7746), 1, - anon_sym_DOT2, - STATE(4009), 1, + ACTIONS(7723), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7725), 1, + aux_sym__immediate_decimal_token2, + STATE(3996), 1, sym_comment, - ACTIONS(3909), 40, + ACTIONS(2957), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397286,16 +396656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188426] = 5, + [187701] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3917), 1, + ACTIONS(7653), 1, + anon_sym_QMARK2, + STATE(3997), 1, + sym_comment, + ACTIONS(1072), 2, anon_sym_LF, - ACTIONS(7748), 1, anon_sym_DOT2, - STATE(4010), 1, - sym_comment, - ACTIONS(3915), 40, + ACTIONS(1070), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397336,16 +396707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188481] = 5, + [187757] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3167), 1, anon_sym_LF, - ACTIONS(7750), 1, + ACTIONS(7727), 1, + anon_sym_DOT2, + ACTIONS(7730), 1, aux_sym__immediate_decimal_token2, - STATE(4011), 1, + STATE(3998), 1, sym_comment, - ACTIONS(3834), 40, + ACTIONS(3165), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397386,15 +396759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188536] = 4, + [187815] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4012), 1, + ACTIONS(7659), 1, + anon_sym_DOT2, + STATE(3981), 1, + sym_path, + STATE(3999), 1, sym_comment, - ACTIONS(863), 2, + STATE(4332), 1, + sym_cell_path, + ACTIONS(961), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 40, + ACTIONS(959), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397415,8 +396794,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -397435,26 +396812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188589] = 5, + [187875] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3923), 1, - anon_sym_LF, - ACTIONS(7752), 1, + ACTIONS(7689), 1, anon_sym_DOT2, - STATE(4013), 1, + ACTIONS(7691), 1, + aux_sym_unquoted_token2, + ACTIONS(7732), 1, + aux_sym__immediate_decimal_token1, + STATE(4000), 1, sym_comment, - ACTIONS(3921), 40, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -397485,18 +396865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188644] = 5, + [187935] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7644), 1, + ACTIONS(7629), 1, aux_sym__immediate_decimal_token2, - STATE(4014), 1, + ACTIONS(7734), 1, + anon_sym_DOT2, + STATE(4001), 1, sym_comment, - ACTIONS(2998), 3, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 38, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397535,16 +396916,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188699] = 5, + [187992] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7739), 1, + anon_sym_LT, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7743), 1, + anon_sym_EQ2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4002), 1, + sym_comment, + STATE(4970), 1, + sym__var, + STATE(5946), 1, + sym__immediate_decimal, + ACTIONS(2017), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7638), 1, - aux_sym__immediate_decimal_token2, - STATE(4015), 1, + STATE(6051), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2015), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [188067] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4003), 1, sym_comment, - ACTIONS(2986), 40, + ACTIONS(1219), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397585,27 +397025,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188754] = 5, + [188120] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, + STATE(4004), 1, + sym_comment, + ACTIONS(1084), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7754), 1, anon_sym_DOT2, - STATE(4016), 1, - sym_comment, - ACTIONS(3941), 40, + ACTIONS(1082), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -397635,27 +397074,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188809] = 6, + [188173] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7756), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - STATE(4017), 1, + STATE(4005), 1, sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, + ACTIONS(3000), 2, anon_sym_LF, - ACTIONS(2986), 38, + anon_sym_DOT2, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -397686,15 +397123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188866] = 4, + [188226] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4018), 1, + STATE(4006), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(1187), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2986), 40, + ACTIONS(1185), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397735,19 +397172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188919] = 6, + [188279] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7760), 1, - anon_sym_DOT2, - ACTIONS(7762), 1, + ACTIONS(7751), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7753), 1, aux_sym__immediate_decimal_token2, - STATE(4019), 1, + STATE(4007), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(2959), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3489), 38, + ACTIONS(2957), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397786,16 +397223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [188976] = 5, + [188336] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3937), 1, + STATE(4008), 1, + sym_comment, + ACTIONS(2959), 2, anon_sym_LF, - ACTIONS(7764), 1, anon_sym_DOT2, - STATE(4020), 1, - sym_comment, - ACTIONS(3935), 40, + ACTIONS(2957), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397836,27 +397272,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189031] = 6, + [188389] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7766), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, anon_sym_DOT2, - ACTIONS(7769), 1, - aux_sym__immediate_decimal_token2, - STATE(4021), 1, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + ACTIONS(7755), 1, + anon_sym_LT, + ACTIONS(7757), 1, + anon_sym_EQ2, + STATE(4009), 1, sym_comment, - ACTIONS(3491), 2, + STATE(4970), 1, + sym__var, + STATE(6010), 1, + sym__immediate_decimal, + ACTIONS(1983), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3489), 38, + STATE(5989), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1981), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [188464] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7759), 1, + anon_sym_QMARK2, + STATE(4010), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [188519] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7759), 1, + anon_sym_QMARK2, + STATE(4011), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [188574] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token2, + STATE(4012), 1, + sym_comment, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -397887,16 +397482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189088] = 5, + [188629] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(4025), 1, + ACTIONS(3952), 1, anon_sym_DOT2, - STATE(4022), 1, + STATE(4013), 1, sym_comment, - ACTIONS(2996), 40, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397937,15 +397532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189143] = 4, + [188684] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4023), 1, + STATE(4014), 1, sym_comment, - ACTIONS(1191), 2, + ACTIONS(3806), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1189), 40, + ACTIONS(3804), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -397986,16 +397581,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189196] = 4, + [188737] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7761), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7763), 1, + aux_sym__immediate_decimal_token2, + STATE(4015), 1, + sym_comment, + ACTIONS(815), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(817), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [188794] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4024), 1, + ACTIONS(7765), 1, + anon_sym_QMARK2, + STATE(4016), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(1072), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1113), 39, + ACTIONS(1070), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398005,7 +397653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -398035,17 +397682,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189249] = 5, + [188849] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_QMARK2, - STATE(4025), 1, + ACTIONS(7767), 1, + sym_filesize_unit, + ACTIONS(7769), 1, + sym_duration_unit, + STATE(4017), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, ACTIONS(1054), 38, anon_sym_SEMI, anon_sym_LBRACK, @@ -398085,27 +397733,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189304] = 6, + [188906] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7773), 1, - anon_sym_DOT2, - STATE(4026), 1, + STATE(4018), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, + ACTIONS(4034), 2, anon_sym_LF, - ACTIONS(2996), 38, + anon_sym_DOT2, + ACTIONS(4032), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -398136,19 +397782,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189361] = 6, - ACTIONS(105), 1, + [188959] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7771), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7773), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7776), 1, + STATE(4019), 1, + sym_comment, + ACTIONS(815), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_DOT2, - STATE(4027), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [189016] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7775), 1, + aux_sym__immediate_decimal_token2, + STATE(4020), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3806), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2996), 38, + anon_sym_DOT2, + ACTIONS(3804), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398187,26 +397883,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189418] = 5, + [189071] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_LF, - ACTIONS(7778), 1, + ACTIONS(7777), 1, anon_sym_DOT2, - STATE(4028), 1, + ACTIONS(7779), 1, + aux_sym__immediate_decimal_token2, + STATE(4021), 1, sym_comment, - ACTIONS(3927), 40, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -398237,16 +397934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189473] = 5, + [189128] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(4028), 1, anon_sym_LF, - ACTIONS(7654), 1, - aux_sym__immediate_decimal_token2, - STATE(4029), 1, + ACTIONS(7781), 1, + anon_sym_DOT2, + STATE(4022), 1, sym_comment, - ACTIONS(2996), 40, + ACTIONS(4026), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398287,76 +397984,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189528] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7780), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7782), 1, - aux_sym__immediate_decimal_token2, - STATE(4030), 1, - sym_comment, - ACTIONS(807), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [189585] = 4, + [189183] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4031), 1, + ACTIONS(7765), 1, + anon_sym_QMARK2, + STATE(4023), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1072), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1252), 40, + ACTIONS(1070), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -398387,18 +398034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189638] = 5, + [189238] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7784), 1, + ACTIONS(7629), 1, aux_sym__immediate_decimal_token2, - STATE(4032), 1, + STATE(4024), 1, sym_comment, - ACTIONS(3836), 3, + ACTIONS(3000), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3834), 38, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398437,47 +398084,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189693] = 15, + [189293] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7608), 1, - anon_sym_DASH2, - ACTIONS(7610), 1, - anon_sym_PLUS2, - ACTIONS(7786), 1, - anon_sym_LT, - ACTIONS(7788), 1, - anon_sym_DOT2, - ACTIONS(7790), 1, - anon_sym_EQ2, - ACTIONS(7792), 1, - aux_sym__immediate_decimal_token1, - STATE(4033), 1, + STATE(4025), 1, sym_comment, - STATE(4926), 1, - sym__var, - STATE(5427), 1, - sym__immediate_decimal, - ACTIONS(1841), 2, + ACTIONS(1179), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5430), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 28, + ACTIONS(1177), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -398488,6 +398113,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -398497,15 +398124,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [189768] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [189346] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4034), 1, - sym_comment, - ACTIONS(1230), 2, + ACTIONS(3946), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 40, + ACTIONS(7783), 1, + anon_sym_EQ, + STATE(4026), 1, + sym_comment, + ACTIONS(3942), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398546,16 +398183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189821] = 5, + [189401] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(829), 1, anon_sym_LF, - ACTIONS(7794), 1, - sym_long_flag_identifier, - STATE(4035), 1, + ACTIONS(7226), 1, + aux_sym_unquoted_token3, + STATE(4027), 1, sym_comment, - ACTIONS(3947), 40, + ACTIONS(827), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398596,18 +398233,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189876] = 5, + [189456] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7787), 1, + aux_sym__immediate_decimal_token2, + STATE(4028), 1, + sym_comment, + ACTIONS(807), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [189513] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7677), 1, + ACTIONS(7718), 1, aux_sym__immediate_decimal_token2, - STATE(4036), 1, + STATE(4029), 1, sym_comment, - ACTIONS(2988), 3, + ACTIONS(2959), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2986), 38, + ACTIONS(2957), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398646,16 +398334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189931] = 5, + [189568] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(2959), 1, anon_sym_LF, - ACTIONS(2885), 1, - anon_sym_DOT2, - STATE(4037), 1, + ACTIONS(7725), 1, + aux_sym__immediate_decimal_token2, + STATE(4030), 1, sym_comment, - ACTIONS(1102), 40, + ACTIONS(2957), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398696,15 +398384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [189986] = 4, + [189623] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4038), 1, - sym_comment, - ACTIONS(1261), 2, + ACTIONS(4038), 1, anon_sym_LF, + ACTIONS(7789), 1, anon_sym_DOT2, - ACTIONS(1259), 40, + STATE(4031), 1, + sym_comment, + ACTIONS(4036), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398745,47 +398434,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190039] = 15, + [189678] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7798), 1, - anon_sym_LT, - ACTIONS(7800), 1, + ACTIONS(3842), 1, + anon_sym_LF, + ACTIONS(7791), 1, anon_sym_DOT2, - ACTIONS(7802), 1, - anon_sym_EQ2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4039), 1, + STATE(4032), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5944), 1, - sym__immediate_decimal, - ACTIONS(1789), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5943), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1787), 28, + ACTIONS(3840), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -398805,47 +398475,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [190114] = 15, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [189733] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, + ACTIONS(3905), 1, + anon_sym_LF, + ACTIONS(7793), 1, anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - ACTIONS(7810), 1, - anon_sym_LT, - ACTIONS(7812), 1, - anon_sym_EQ2, - STATE(4040), 1, + STATE(4033), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5947), 1, - sym__immediate_decimal, - ACTIONS(1807), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5946), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 28, + ACTIONS(3903), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -398865,15 +398525,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [190189] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [189788] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4041), 1, - sym_comment, - ACTIONS(3836), 2, + ACTIONS(3911), 1, anon_sym_LF, + ACTIONS(7795), 1, anon_sym_DOT2, - ACTIONS(3834), 40, + STATE(4034), 1, + sym_comment, + ACTIONS(3909), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398914,16 +398584,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190242] = 5, + [189843] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7797), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7799), 1, + aux_sym__immediate_decimal_token2, + STATE(4035), 1, + sym_comment, + ACTIONS(807), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(809), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [189900] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2885), 1, + ACTIONS(2817), 1, anon_sym_DOT2, - ACTIONS(4015), 1, + ACTIONS(3931), 1, anon_sym_LF, - STATE(4042), 1, + STATE(4036), 1, sym_comment, - ACTIONS(4013), 40, + ACTIONS(3929), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -398964,87 +398685,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190297] = 15, + [189955] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - ACTIONS(7814), 1, - anon_sym_LT, - ACTIONS(7816), 1, - anon_sym_EQ2, - STATE(4043), 1, + STATE(4037), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5950), 1, - sym__immediate_decimal, - ACTIONS(1815), 2, - ts_builtin_sym_end, + ACTIONS(1084), 2, anon_sym_LF, - STATE(5948), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1813), 28, + anon_sym_DOT2, + ACTIONS(1082), 40, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [190372] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [190008] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7818), 1, - anon_sym_DOT2, - ACTIONS(7822), 1, - aux_sym__immediate_decimal_token2, - STATE(4044), 1, + STATE(4038), 1, sym_comment, - ACTIONS(3491), 2, - ts_builtin_sym_end, + ACTIONS(1223), 2, anon_sym_LF, - ACTIONS(3489), 38, + anon_sym_DOT2, + ACTIONS(1221), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -399075,47 +398783,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190429] = 15, + [190061] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7606), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7608), 1, - anon_sym_DASH2, - ACTIONS(7610), 1, - anon_sym_PLUS2, - ACTIONS(7788), 1, - anon_sym_DOT2, - ACTIONS(7824), 1, - anon_sym_LT, - ACTIONS(7826), 1, - anon_sym_EQ2, - STATE(4045), 1, + STATE(4039), 1, sym_comment, - STATE(4926), 1, - sym__var, - STATE(5434), 1, - sym__immediate_decimal, - ACTIONS(1831), 2, - ts_builtin_sym_end, + ACTIONS(1211), 2, anon_sym_LF, - STATE(5436), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 28, + anon_sym_DOT2, + ACTIONS(1209), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -399135,47 +398823,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [190504] = 15, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [190114] = 19, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(2868), 1, anon_sym_DOLLAR, - ACTIONS(7796), 1, + ACTIONS(7803), 1, + anon_sym_RBRACK, + ACTIONS(7805), 1, anon_sym_LPAREN, - ACTIONS(7800), 1, + ACTIONS(7807), 1, + anon_sym_LT, + ACTIONS(7809), 1, anon_sym_DOT2, - ACTIONS(7804), 1, + ACTIONS(7811), 1, + anon_sym_DOLLAR2, + ACTIONS(7813), 1, + anon_sym_EQ2, + ACTIONS(7815), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, + ACTIONS(7817), 1, anon_sym_DASH2, - ACTIONS(7808), 1, + ACTIONS(7819), 1, anon_sym_PLUS2, - ACTIONS(7828), 1, - anon_sym_LT, - ACTIONS(7830), 1, - anon_sym_EQ2, - STATE(4046), 1, + ACTIONS(7821), 1, + sym__entry_separator, + ACTIONS(7823), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7825), 1, + aux_sym__unquoted_in_list_token7, + STATE(4040), 1, sym_comment, - STATE(5114), 1, + STATE(6043), 1, sym__var, - STATE(5952), 1, + STATE(6381), 1, sym__immediate_decimal, - ACTIONS(1823), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5951), 2, + STATE(6490), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 28, - anon_sym_SEMI, + ACTIONS(7801), 25, anon_sym_LBRACK, - anon_sym_PIPE, + anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -399193,27 +398895,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [190579] = 4, + aux_sym__unquoted_in_list_token1, + [190197] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4047), 1, + ACTIONS(7827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token2, + STATE(4041), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3000), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 40, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -399244,16 +398947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190632] = 4, + [190254] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4048), 1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7831), 1, + anon_sym_DOT2, + STATE(4042), 1, sym_comment, - ACTIONS(1100), 3, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 39, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -399263,7 +398969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -399293,35 +398998,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [190685] = 14, + [190311] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(3057), 1, anon_sym_DOLLAR, - ACTIONS(7702), 1, + ACTIONS(7631), 1, anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(7710), 1, + ACTIONS(7639), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, + ACTIONS(7641), 1, anon_sym_DASH2, - ACTIONS(7714), 1, + ACTIONS(7643), 1, anon_sym_PLUS2, - ACTIONS(7832), 1, + ACTIONS(7833), 1, aux_sym_unquoted_token5, - STATE(4049), 1, + STATE(4043), 1, sym_comment, - STATE(4871), 1, + STATE(4740), 1, sym__var, - STATE(5683), 1, + STATE(5466), 1, sym__immediate_decimal, - STATE(5684), 2, + STATE(5465), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 30, + ACTIONS(1191), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, @@ -399352,47 +399057,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [190758] = 19, + [190384] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(7836), 1, - anon_sym_RBRACK, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - anon_sym_LT, - ACTIONS(7842), 1, + ACTIONS(7835), 1, anon_sym_DOT2, - ACTIONS(7844), 1, - anon_sym_DOLLAR2, - ACTIONS(7846), 1, - anon_sym_EQ2, - ACTIONS(7848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7850), 1, - anon_sym_DASH2, - ACTIONS(7852), 1, - anon_sym_PLUS2, - ACTIONS(7854), 1, - sym__entry_separator, - ACTIONS(7856), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7858), 1, - aux_sym__unquoted_in_list_token7, - STATE(4050), 1, + ACTIONS(7839), 1, + aux_sym__immediate_decimal_token2, + STATE(4044), 1, sym_comment, - STATE(5879), 1, - sym__var, - STATE(6440), 1, - sym__immediate_decimal, - STATE(6254), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(7834), 25, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 38, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -399415,26 +399097,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [190841] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [190441] = 15, ACTIONS(105), 1, anon_sym_POUND, - STATE(4051), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + ACTIONS(7841), 1, + anon_sym_LT, + ACTIONS(7843), 1, + anon_sym_EQ2, + STATE(4045), 1, sym_comment, - ACTIONS(1067), 2, + STATE(4970), 1, + sym__var, + STATE(6029), 1, + sym__immediate_decimal, + ACTIONS(2001), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1065), 40, + STATE(6024), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -399445,8 +399159,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -399456,56 +399168,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [190894] = 6, - ACTIONS(3), 1, + [190516] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7862), 1, - aux_sym__immediate_decimal_token2, - STATE(4052), 1, + STATE(4046), 1, sym_comment, - ACTIONS(815), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(1088), 2, + anon_sym_LF, anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(817), 25, + ACTIONS(1086), 40, + anon_sym_EQ, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -399516,94 +399214,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [190951] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7864), 1, - sym_filesize_unit, - ACTIONS(7866), 1, - sym_duration_unit, - STATE(4053), 1, - sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [191008] = 14, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [190569] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR, - ACTIONS(7702), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, + ACTIONS(7611), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, + ACTIONS(7613), 1, anon_sym_DASH2, - ACTIONS(7714), 1, + ACTIONS(7615), 1, anon_sym_PLUS2, - ACTIONS(7832), 1, - aux_sym_unquoted_token5, - STATE(4054), 1, + ACTIONS(7845), 1, + anon_sym_LT, + ACTIONS(7847), 1, + anon_sym_DOT2, + ACTIONS(7849), 1, + anon_sym_EQ2, + STATE(4047), 1, sym_comment, - STATE(4871), 1, + STATE(4937), 1, sym__var, - STATE(5685), 1, + STATE(5393), 1, sym__immediate_decimal, - STATE(5686), 2, + ACTIONS(1876), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5390), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 30, + ACTIONS(1874), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -399626,16 +399277,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [191081] = 5, + [190644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(7352), 1, - aux_sym_unquoted_token3, - STATE(4055), 1, + STATE(4048), 1, sym_comment, - ACTIONS(823), 40, + ACTIONS(1215), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -399676,127 +399326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191136] = 5, + [190697] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_QMARK2, - STATE(4056), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(3806), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [191191] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7868), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7870), 1, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token2, - STATE(4057), 1, - sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(809), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [191248] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_QMARK2, - STATE(4058), 1, + STATE(4049), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 38, + ACTIONS(3804), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -399827,89 +399376,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191303] = 19, - ACTIONS(3), 1, + [190752] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3605), 1, + ACTIONS(1193), 1, + anon_sym_LF, + ACTIONS(3057), 1, anon_sym_DOLLAR, - ACTIONS(7844), 1, - anon_sym_DOLLAR2, - ACTIONS(7872), 1, - anon_sym_RBRACK, - ACTIONS(7874), 1, + ACTIONS(7631), 1, anon_sym_LPAREN, - ACTIONS(7876), 1, - anon_sym_LT, - ACTIONS(7878), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(7880), 1, - anon_sym_EQ2, - ACTIONS(7882), 1, + ACTIONS(7639), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7884), 1, + ACTIONS(7641), 1, anon_sym_DASH2, - ACTIONS(7886), 1, + ACTIONS(7643), 1, anon_sym_PLUS2, - ACTIONS(7888), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7890), 1, - aux_sym__unquoted_in_list_token7, - STATE(4059), 1, + ACTIONS(7833), 1, + aux_sym_unquoted_token5, + STATE(4050), 1, sym_comment, - STATE(6205), 1, + STATE(4740), 1, sym__var, - STATE(6601), 1, + STATE(5468), 1, sym__immediate_decimal, - STATE(6622), 2, + STATE(5467), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(7834), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(7854), 17, + ACTIONS(1191), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191385] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [190825] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, - anon_sym_LF, - STATE(4060), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7613), 1, + anon_sym_DASH2, + ACTIONS(7615), 1, + anon_sym_PLUS2, + ACTIONS(7847), 1, + anon_sym_DOT2, + ACTIONS(7853), 1, + anon_sym_LT, + ACTIONS(7855), 1, + anon_sym_EQ2, + ACTIONS(7857), 1, + aux_sym__immediate_decimal_token1, + STATE(4051), 1, sym_comment, - ACTIONS(1309), 40, + STATE(4937), 1, + sym__var, + STATE(5399), 1, + sym__immediate_decimal, + ACTIONS(1973), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5398), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1971), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -399929,35 +399495,47 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [191437] = 4, + [190900] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4144), 1, - anon_sym_LF, - STATE(4061), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + ACTIONS(7859), 1, + anon_sym_LT, + ACTIONS(7861), 1, + anon_sym_EQ2, + STATE(4052), 1, sym_comment, - ACTIONS(4142), 40, + STATE(4970), 1, + sym__var, + STATE(6040), 1, + sym__immediate_decimal, + ACTIONS(2009), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(6038), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2007), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -399977,34 +399555,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [191489] = 4, + [190975] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4148), 1, - anon_sym_LF, - STATE(4062), 1, + STATE(4053), 1, sym_comment, - ACTIONS(4146), 40, + ACTIONS(1088), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1086), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -400034,14 +399604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191541] = 4, + [191028] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4160), 1, + ACTIONS(3891), 1, anon_sym_LF, - STATE(4063), 1, + ACTIONS(7863), 1, + sym_long_flag_identifier, + STATE(4054), 1, sym_comment, - ACTIONS(4158), 40, + ACTIONS(3887), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400082,24 +399654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191593] = 4, + [191083] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4170), 1, - anon_sym_LF, - STATE(4064), 1, + STATE(4055), 1, sym_comment, - ACTIONS(4168), 40, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -400112,6 +399683,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -400130,14 +399703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191645] = 4, + [191136] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4174), 1, + ACTIONS(1056), 1, anon_sym_LF, - STATE(4065), 1, + ACTIONS(2817), 1, + anon_sym_DOT2, + STATE(4056), 1, sym_comment, - ACTIONS(4172), 40, + ACTIONS(1054), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400178,14 +399753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191697] = 4, + [191191] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1115), 1, + ACTIONS(3979), 1, anon_sym_LF, - STATE(4066), 1, + ACTIONS(7865), 1, + anon_sym_DOT2, + STATE(4057), 1, sym_comment, - ACTIONS(1113), 40, + ACTIONS(3977), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400226,24 +399803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191749] = 4, + [191246] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LF, - STATE(4067), 1, + ACTIONS(7867), 1, + anon_sym_DOT2, + ACTIONS(7870), 1, + aux_sym__immediate_decimal_token2, + STATE(4058), 1, sym_comment, - ACTIONS(4176), 40, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -400274,24 +399854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191801] = 4, + [191303] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4192), 1, - anon_sym_LF, - STATE(4068), 1, + STATE(4059), 1, sym_comment, - ACTIONS(4190), 40, + ACTIONS(1187), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1185), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -400322,14 +399902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191853] = 4, + [191355] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4196), 1, + ACTIONS(4166), 1, anon_sym_LF, - STATE(4069), 1, + STATE(4060), 1, sym_comment, - ACTIONS(4194), 40, + ACTIONS(4164), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400370,14 +399950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191905] = 4, + [191407] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1100), 1, + ACTIONS(4170), 1, anon_sym_LF, - STATE(4070), 1, + STATE(4061), 1, sym_comment, - ACTIONS(1098), 40, + ACTIONS(4168), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400418,14 +399998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [191957] = 4, + [191459] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(4174), 1, anon_sym_LF, - STATE(4071), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1102), 40, + ACTIONS(4172), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400466,14 +400046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192009] = 4, + [191511] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(911), 1, anon_sym_LF, - STATE(4072), 1, + STATE(4063), 1, sym_comment, - ACTIONS(1338), 40, + ACTIONS(909), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400514,14 +400094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192061] = 4, + [191563] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4178), 1, anon_sym_LF, - STATE(4073), 1, + STATE(4064), 1, sym_comment, - ACTIONS(4200), 40, + ACTIONS(4176), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400562,14 +400142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192113] = 4, + [191615] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4222), 1, + ACTIONS(4186), 1, anon_sym_LF, - STATE(4074), 1, + STATE(4065), 1, sym_comment, - ACTIONS(4220), 40, + ACTIONS(4184), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400610,14 +400190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192165] = 4, + [191667] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4226), 1, + ACTIONS(4199), 1, anon_sym_LF, - STATE(4075), 1, + STATE(4066), 1, sym_comment, - ACTIONS(4224), 40, + ACTIONS(4197), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400658,24 +400238,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192217] = 4, + [191719] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4076), 1, - sym_comment, - ACTIONS(2988), 3, - ts_builtin_sym_end, + ACTIONS(4203), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 38, + STATE(4067), 1, + sym_comment, + ACTIONS(4201), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -400706,14 +400286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192269] = 4, + [191771] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, + ACTIONS(4217), 1, anon_sym_LF, - STATE(4077), 1, + STATE(4068), 1, sym_comment, - ACTIONS(1278), 40, + ACTIONS(4215), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400754,14 +400334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192321] = 4, + [191823] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4230), 1, + ACTIONS(931), 1, anon_sym_LF, - STATE(4078), 1, + STATE(4069), 1, sym_comment, - ACTIONS(4228), 40, + ACTIONS(929), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400802,64 +400382,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192373] = 6, - ACTIONS(3), 1, + [191875] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7892), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7894), 1, - aux_sym__immediate_decimal_token2, - STATE(4079), 1, + ACTIONS(1343), 1, + anon_sym_LF, + STATE(4070), 1, sym_comment, - ACTIONS(815), 16, - sym_identifier, - anon_sym_GT, + ACTIONS(1341), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [191927] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(829), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(7805), 1, + anon_sym_LPAREN, + ACTIONS(7815), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7817), 1, + anon_sym_DASH2, + ACTIONS(7819), 1, + anon_sym_PLUS2, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7874), 1, + anon_sym_DOT2, + ACTIONS(7876), 1, + anon_sym_EQ2, + ACTIONS(7878), 1, + aux_sym_unquoted_token4, + ACTIONS(7880), 1, aux_sym_unquoted_token6, - ACTIONS(817), 23, + STATE(4071), 1, + sym_comment, + STATE(6043), 1, + sym__var, + STATE(6381), 1, + sym__immediate_decimal, + STATE(6490), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(827), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [192005] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1347), 1, + anon_sym_LF, + STATE(4072), 1, + sym_comment, + ACTIONS(1345), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [192429] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [192057] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1276), 1, + ACTIONS(4233), 1, anon_sym_LF, - STATE(4080), 1, + STATE(4073), 1, sym_comment, - ACTIONS(1274), 40, + ACTIONS(4231), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400900,14 +400587,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192481] = 4, + [192109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4242), 1, + ACTIONS(4261), 1, anon_sym_LF, - STATE(4081), 1, + STATE(4074), 1, + sym_comment, + ACTIONS(4259), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [192161] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4291), 1, + anon_sym_LF, + STATE(4075), 1, sym_comment, - ACTIONS(4240), 40, + ACTIONS(4289), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400948,14 +400683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192533] = 4, + [192213] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4246), 1, + ACTIONS(4313), 1, anon_sym_LF, - STATE(4082), 1, + STATE(4076), 1, sym_comment, - ACTIONS(4244), 40, + ACTIONS(4311), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -400996,25 +400731,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192585] = 5, + [192265] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2994), 1, - anon_sym_DOT2, - STATE(4083), 1, - sym_comment, - ACTIONS(4015), 2, - ts_builtin_sym_end, + ACTIONS(4317), 1, anon_sym_LF, - ACTIONS(4013), 38, + STATE(4077), 1, + sym_comment, + ACTIONS(4315), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -401045,14 +400779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192639] = 4, + [192317] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(4324), 1, anon_sym_LF, - STATE(4084), 1, + STATE(4078), 1, sym_comment, - ACTIONS(1338), 40, + ACTIONS(4322), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401093,14 +400827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192691] = 4, + [192369] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4260), 1, + ACTIONS(4328), 1, anon_sym_LF, - STATE(4085), 1, + STATE(4079), 1, sym_comment, - ACTIONS(4258), 40, + ACTIONS(4326), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401141,25 +400875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192743] = 5, + [192421] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2994), 1, - anon_sym_DOT2, - STATE(4086), 1, - sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, + ACTIONS(4370), 1, anon_sym_LF, - ACTIONS(1102), 38, + STATE(4080), 1, + sym_comment, + ACTIONS(4368), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -401190,14 +400923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192797] = 4, + [192473] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4271), 1, + ACTIONS(1351), 1, anon_sym_LF, - STATE(4087), 1, + STATE(4081), 1, sym_comment, - ACTIONS(4269), 40, + ACTIONS(1349), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401238,76 +400971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192849] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token6, - STATE(4088), 1, - sym_comment, - ACTIONS(7896), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(7898), 2, - anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(823), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(825), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [192907] = 5, + [192525] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7902), 1, - sym_long_flag_identifier, - STATE(4089), 1, - sym_comment, - ACTIONS(3951), 2, - ts_builtin_sym_end, + ACTIONS(1284), 1, anon_sym_LF, - ACTIONS(3947), 38, + STATE(4082), 1, + sym_comment, + ACTIONS(1282), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -401338,14 +401019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [192961] = 4, + [192577] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4297), 1, + ACTIONS(4374), 1, anon_sym_LF, - STATE(4090), 1, + STATE(4083), 1, sym_comment, - ACTIONS(4295), 40, + ACTIONS(4372), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401386,65 +401067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193013] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_DOT2, - STATE(4091), 1, - sym_comment, - STATE(4120), 1, - aux_sym_cell_path_repeat1, - STATE(4433), 1, - sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [193071] = 4, + [192629] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4301), 1, + ACTIONS(1359), 1, anon_sym_LF, - STATE(4092), 1, + STATE(4084), 1, sym_comment, - ACTIONS(4299), 40, + ACTIONS(1357), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401485,64 +401115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193123] = 6, + [192681] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7906), 1, - anon_sym_DOT2, - STATE(4433), 1, - sym_path, - ACTIONS(1017), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4093), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [193179] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(4378), 1, anon_sym_LF, - STATE(4094), 1, + STATE(4085), 1, sym_comment, - ACTIONS(4303), 40, + ACTIONS(4376), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401583,14 +401163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193231] = 4, + [192733] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4382), 1, anon_sym_LF, - STATE(4095), 1, + STATE(4086), 1, sym_comment, - ACTIONS(4307), 40, + ACTIONS(4380), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401631,14 +401211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193283] = 4, + [192785] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(1056), 1, anon_sym_LF, - STATE(4096), 1, + STATE(4087), 1, sym_comment, - ACTIONS(4311), 40, + ACTIONS(1054), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401679,14 +401259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193335] = 4, + [192837] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4322), 1, + ACTIONS(4388), 1, anon_sym_LF, - STATE(4097), 1, + STATE(4088), 1, sym_comment, - ACTIONS(4320), 40, + ACTIONS(4386), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401727,64 +401307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193387] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7911), 1, - aux_sym__immediate_decimal_token2, - STATE(4098), 1, - sym_comment, - ACTIONS(807), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [193443] = 4, + [192889] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4046), 1, + ACTIONS(4404), 1, anon_sym_LF, - STATE(4099), 1, + STATE(4089), 1, sym_comment, - ACTIONS(4044), 40, + ACTIONS(4402), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401825,65 +401355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193495] = 7, + [192941] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7913), 1, - anon_sym_DOT2, - STATE(4091), 1, - sym_path, - STATE(4100), 1, - sym_comment, - STATE(4401), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, + ACTIONS(1363), 1, anon_sym_LF, - ACTIONS(997), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [193553] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4238), 1, - anon_sym_LF, - STATE(4101), 1, + STATE(4090), 1, sym_comment, - ACTIONS(4236), 40, + ACTIONS(1361), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401924,14 +401403,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193605] = 4, + [192993] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7882), 1, + anon_sym_RBRACK, + ACTIONS(7888), 1, + anon_sym_list, + STATE(4091), 1, + sym_comment, + STATE(4136), 1, + aux_sym__multiple_types_repeat1, + STATE(4757), 1, + sym__one_type, + STATE(11031), 1, + sym__type_annotation, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [193057] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4488), 1, + ACTIONS(4418), 1, anon_sym_LF, - STATE(4102), 1, + STATE(4092), 1, sym_comment, - ACTIONS(4486), 40, + ACTIONS(4416), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -401972,75 +401505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193657] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_DOT2, - ACTIONS(7919), 1, - aux_sym__immediate_decimal_token2, - STATE(4103), 1, - sym_comment, - ACTIONS(835), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(837), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [193713] = 5, + [193109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - STATE(4104), 1, - sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, + ACTIONS(1370), 1, anon_sym_LF, - ACTIONS(2986), 38, + STATE(4093), 1, + sym_comment, + ACTIONS(1368), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -402071,25 +401553,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193767] = 5, + [193161] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7921), 1, - anon_sym_DOT2, - STATE(4105), 1, - sym_comment, - ACTIONS(3937), 2, - ts_builtin_sym_end, + ACTIONS(4422), 1, anon_sym_LF, - ACTIONS(3935), 38, + STATE(4094), 1, + sym_comment, + ACTIONS(4420), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -402120,64 +401601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193821] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7923), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7925), 1, - aux_sym__immediate_decimal_token2, - STATE(4106), 1, - sym_comment, - ACTIONS(807), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [193877] = 4, + [193213] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4364), 1, + ACTIONS(4426), 1, anon_sym_LF, - STATE(4107), 1, + STATE(4095), 1, sym_comment, - ACTIONS(4362), 40, + ACTIONS(4424), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402218,25 +401649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193929] = 5, + [193265] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7927), 1, - anon_sym_DOT2, - STATE(4108), 1, - sym_comment, - ACTIONS(3943), 2, - ts_builtin_sym_end, + ACTIONS(4472), 1, anon_sym_LF, - ACTIONS(3941), 38, + STATE(4096), 1, + sym_comment, + ACTIONS(4470), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -402267,14 +401697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [193983] = 4, + [193317] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(4488), 1, anon_sym_LF, - STATE(4109), 1, + STATE(4097), 1, sym_comment, - ACTIONS(1358), 40, + ACTIONS(4486), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402315,14 +401745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194035] = 4, + [193369] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(4301), 1, anon_sym_LF, - STATE(4110), 1, + STATE(4098), 1, sym_comment, - ACTIONS(1342), 40, + ACTIONS(4299), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402363,14 +401793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194087] = 4, + [193421] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1315), 1, + ACTIONS(4062), 1, anon_sym_LF, - STATE(4111), 1, + STATE(4099), 1, sym_comment, - ACTIONS(1313), 40, + ACTIONS(4060), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402411,17 +401841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194139] = 5, + [193473] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7929), 1, - aux_sym__immediate_decimal_token2, - STATE(4112), 1, + STATE(4100), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(1219), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3834), 38, + anon_sym_DOT2, + ACTIONS(1217), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402460,14 +401889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194193] = 4, + [193525] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(4070), 1, anon_sym_LF, - STATE(4113), 1, + STATE(4101), 1, sym_comment, - ACTIONS(1288), 40, + ACTIONS(4068), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402508,14 +401937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194245] = 4, + [193577] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(4074), 1, anon_sym_LF, - STATE(4114), 1, + STATE(4102), 1, sym_comment, - ACTIONS(1346), 40, + ACTIONS(4072), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402556,24 +401985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194297] = 4, + [193629] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4115), 1, - sym_comment, - ACTIONS(3890), 3, - ts_builtin_sym_end, + ACTIONS(4078), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3888), 38, + STATE(4103), 1, + sym_comment, + ACTIONS(4076), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -402604,64 +402033,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194349] = 6, - ACTIONS(3), 1, + [193681] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7931), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7933), 1, - aux_sym__immediate_decimal_token2, - STATE(4116), 1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + ACTIONS(7890), 1, + aux_sym_unquoted_token5, + STATE(4104), 1, sym_comment, - ACTIONS(815), 16, - sym_identifier, - anon_sym_GT, + STATE(4970), 1, + sym__var, + STATE(5838), 1, + sym__immediate_decimal, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5837), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1191), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [193753] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3511), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + ACTIONS(7890), 1, + aux_sym_unquoted_token5, + STATE(4105), 1, + sym_comment, + STATE(4970), 1, + sym__var, + STATE(5844), 1, + sym__immediate_decimal, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5843), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1191), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [194405] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [193825] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4360), 1, + ACTIONS(951), 1, anon_sym_LF, - STATE(4117), 1, + STATE(4106), 1, sym_comment, - ACTIONS(4358), 40, + ACTIONS(949), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402702,14 +402197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194457] = 4, + [193877] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(1268), 1, anon_sym_LF, - STATE(4118), 1, + STATE(4107), 1, sym_comment, - ACTIONS(1282), 40, + ACTIONS(1266), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402750,14 +402245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194509] = 4, + [193929] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(1268), 1, anon_sym_LF, - STATE(4119), 1, + STATE(4108), 1, sym_comment, - ACTIONS(4390), 40, + ACTIONS(1266), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402798,64 +402293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194561] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4093), 1, - aux_sym_cell_path_repeat1, - STATE(4120), 1, - sym_comment, - STATE(4433), 1, - sym_path, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [194617] = 4, + [193981] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4136), 1, + ACTIONS(4297), 1, anon_sym_LF, - STATE(4121), 1, + STATE(4109), 1, sym_comment, - ACTIONS(4134), 40, + ACTIONS(4295), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402896,14 +402341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194669] = 5, + [194033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7782), 1, + ACTIONS(7892), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7894), 1, aux_sym__immediate_decimal_token2, - STATE(4122), 1, + STATE(4110), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -402920,11 +402367,10 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 24, + ACTIONS(817), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -402945,14 +402391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [194723] = 4, + [194089] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4128), 1, + ACTIONS(1272), 1, anon_sym_LF, - STATE(4123), 1, + STATE(4111), 1, sym_comment, - ACTIONS(4126), 40, + ACTIONS(1270), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -402993,14 +402439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194775] = 4, + [194141] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(1439), 1, anon_sym_LF, - STATE(4124), 1, + STATE(4112), 1, sym_comment, - ACTIONS(4386), 40, + ACTIONS(1437), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403041,14 +402487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194827] = 5, + [194193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, + ACTIONS(7896), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7898), 1, aux_sym__immediate_decimal_token2, - STATE(4125), 1, + STATE(4113), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -403065,7 +402513,57 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 24, + ACTIONS(809), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [194249] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7904), 1, + aux_sym_unquoted_token6, + STATE(4114), 1, + sym_comment, + ACTIONS(7900), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(7902), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(827), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(829), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -403090,24 +402588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [194881] = 4, + [194307] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4476), 1, - anon_sym_LF, - STATE(4126), 1, + STATE(4115), 1, sym_comment, - ACTIONS(4474), 40, + ACTIONS(1211), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -403138,14 +402636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194933] = 4, + [194359] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4124), 1, + ACTIONS(1276), 1, anon_sym_LF, - STATE(4127), 1, + STATE(4116), 1, sym_comment, - ACTIONS(4122), 40, + ACTIONS(1274), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403186,14 +402684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [194985] = 4, + [194411] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4472), 1, + ACTIONS(1280), 1, anon_sym_LF, - STATE(4128), 1, + STATE(4117), 1, sym_comment, - ACTIONS(4470), 40, + ACTIONS(1278), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403234,24 +402732,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195037] = 4, + [194463] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7773), 1, + aux_sym__immediate_decimal_token2, + STATE(4118), 1, + sym_comment, + ACTIONS(815), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [194517] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4120), 1, - anon_sym_LF, - STATE(4129), 1, + STATE(4119), 1, sym_comment, - ACTIONS(4118), 40, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -403282,24 +402829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195089] = 4, + [194569] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4116), 1, - anon_sym_LF, - STATE(4130), 1, + ACTIONS(7906), 1, + sym_long_flag_identifier, + STATE(4120), 1, sym_comment, - ACTIONS(4114), 40, + ACTIONS(3891), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3887), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -403330,14 +402878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195141] = 4, + [194623] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4107), 1, + ACTIONS(1355), 1, anon_sym_LF, - STATE(4131), 1, + STATE(4121), 1, sym_comment, - ACTIONS(4105), 40, + ACTIONS(1353), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403378,25 +402926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195193] = 5, + [194675] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7736), 1, - aux_sym__immediate_decimal_token2, - STATE(4132), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(2996), 38, + STATE(4122), 1, + sym_comment, + ACTIONS(2998), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -403427,14 +402974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195247] = 5, + [194727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7935), 1, + ACTIONS(7787), 1, aux_sym__immediate_decimal_token2, - STATE(4133), 1, + STATE(4123), 1, sym_comment, - ACTIONS(844), 15, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -403450,12 +402997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(846), 25, + aux_sym_unquoted_token6, + ACTIONS(809), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -403476,63 +403023,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [195301] = 5, - ACTIONS(3), 1, + [194781] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7870), 1, - aux_sym__immediate_decimal_token2, - STATE(4134), 1, + ACTIONS(2959), 1, + anon_sym_LF, + STATE(4124), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(809), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2957), 40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [195355] = 5, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [194833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(7763), 1, aux_sym__immediate_decimal_token2, - STATE(4135), 1, + STATE(4125), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(815), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -403548,12 +403094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 24, + ACTIONS(817), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -403574,24 +403120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [195409] = 4, + [194887] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4468), 1, - anon_sym_LF, - STATE(4136), 1, + STATE(4126), 1, sym_comment, - ACTIONS(4466), 40, + ACTIONS(1223), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -403622,20 +403168,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195461] = 6, + [194939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7939), 1, + ACTIONS(7799), 1, + aux_sym__immediate_decimal_token2, + STATE(4127), 1, + sym_comment, + ACTIONS(807), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_DOT2, - ACTIONS(7942), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(809), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [194993] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7908), 1, aux_sym__immediate_decimal_token2, - STATE(4137), 1, + STATE(4128), 1, sym_comment, - ACTIONS(835), 15, + ACTIONS(855), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -403647,7 +403241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(837), 24, + ACTIONS(857), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -403672,14 +403266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [195517] = 4, + [195047] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4460), 1, + ACTIONS(3806), 1, anon_sym_LF, - STATE(4138), 1, + STATE(4129), 1, sym_comment, - ACTIONS(4458), 40, + ACTIONS(3804), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403720,14 +403314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195569] = 4, + [195099] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(4034), 1, anon_sym_LF, - STATE(4139), 1, + STATE(4130), 1, sym_comment, - ACTIONS(1294), 40, + ACTIONS(4032), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -403768,272 +403362,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [195621] = 13, - ACTIONS(105), 1, + [195151] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4140), 1, + ACTIONS(7910), 1, + aux_sym__immediate_decimal_token2, + STATE(4131), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5552), 1, - sym__immediate_decimal, - STATE(5562), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(855), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(857), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [195691] = 13, - ACTIONS(105), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [195205] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(7912), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4141), 1, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token2, + STATE(4132), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5564), 1, - sym__immediate_decimal, - STATE(5565), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2130), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(846), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [195761] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_LF, - ACTIONS(3218), 1, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [195261] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7773), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7917), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4142), 1, + STATE(4133), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5568), 1, - sym__immediate_decimal, - STATE(5569), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(815), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [195831] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_LF, - ACTIONS(3218), 1, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [195317] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7920), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4143), 1, + ACTIONS(7923), 1, + aux_sym__immediate_decimal_token2, + STATE(4134), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5570), 1, - sym__immediate_decimal, - STATE(5571), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(846), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(848), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [195901] = 13, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [195373] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(3952), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4144), 1, + STATE(4135), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5572), 1, - sym__immediate_decimal, - STATE(5573), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 30, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -404053,19 +403601,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [195971] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [195427] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + ACTIONS(7925), 1, + anon_sym_RBRACK, + STATE(4136), 1, + sym_comment, + STATE(4146), 1, + aux_sym__multiple_types_repeat1, + STATE(4757), 1, + sym__one_type, + STATE(11031), 1, + sym__type_annotation, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [195491] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7862), 1, + ACTIONS(7763), 1, aux_sym__immediate_decimal_token2, - STATE(4145), 1, + ACTIONS(7927), 1, + anon_sym_DOT2, + STATE(4137), 1, sym_comment, - ACTIONS(815), 15, + ACTIONS(815), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -404102,167 +403714,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [196025] = 4, + [195547] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, - anon_sym_LF, - STATE(4146), 1, + ACTIONS(7930), 1, + anon_sym_DOT2, + STATE(4138), 1, sym_comment, - ACTIONS(1321), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [196077] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1245), 1, + STATE(4139), 1, + aux_sym_cell_path_repeat1, + STATE(4455), 1, + sym_path, + ACTIONS(905), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4147), 1, - sym_comment, - ACTIONS(1243), 40, + ACTIONS(903), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [196129] = 13, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [195605] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + STATE(4139), 1, + sym_comment, + STATE(4149), 1, + aux_sym_cell_path_repeat1, + STATE(4455), 1, + sym_path, + ACTIONS(975), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4148), 1, - sym_comment, - STATE(4871), 1, - sym__var, - STATE(5574), 1, - sym__immediate_decimal, - STATE(5575), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2106), 30, + ACTIONS(973), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [196199] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [195661] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1321), 1, anon_sym_LF, - STATE(4149), 1, + STATE(4140), 1, sym_comment, - ACTIONS(1005), 40, + ACTIONS(1319), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404303,138 +403863,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196251] = 13, - ACTIONS(105), 1, + [195713] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - anon_sym_LF, - ACTIONS(3218), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR, - ACTIONS(7702), 1, + ACTIONS(7811), 1, + anon_sym_DOLLAR2, + ACTIONS(7932), 1, + anon_sym_RBRACK, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(7936), 1, + anon_sym_LT, + ACTIONS(7938), 1, anon_sym_DOT2, - ACTIONS(7710), 1, + ACTIONS(7940), 1, + anon_sym_EQ2, + ACTIONS(7942), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, + ACTIONS(7944), 1, anon_sym_DASH2, - ACTIONS(7714), 1, + ACTIONS(7946), 1, anon_sym_PLUS2, - STATE(4150), 1, + ACTIONS(7948), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7950), 1, + aux_sym__unquoted_in_list_token7, + STATE(4141), 1, sym_comment, - STATE(4871), 1, + STATE(6177), 1, sym__var, - STATE(5576), 1, + STATE(6616), 1, sym__immediate_decimal, - STATE(5577), 2, + STATE(6615), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(7801), 8, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [196321] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4151), 1, - sym_comment, - STATE(4871), 1, - sym__var, - STATE(5582), 1, - sym__immediate_decimal, - STATE(5583), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2118), 30, - anon_sym_SEMI, + aux_sym__unquoted_in_list_token1, + ACTIONS(7821), 17, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [196391] = 4, + [195795] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_LF, - STATE(4152), 1, + STATE(4142), 1, sym_comment, - ACTIONS(4336), 40, + ACTIONS(3806), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3804), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -404465,14 +403974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196443] = 4, + [195847] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(1084), 1, anon_sym_LF, - STATE(4153), 1, + STATE(4143), 1, sym_comment, - ACTIONS(3888), 40, + ACTIONS(1082), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404513,16 +404022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196495] = 4, + [195899] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4154), 1, + ACTIONS(7952), 1, + anon_sym_EQ, + STATE(4144), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(3946), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 38, + ACTIONS(3942), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404561,14 +404071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196547] = 4, + [195953] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4430), 1, + ACTIONS(1088), 1, anon_sym_LF, - STATE(4155), 1, + STATE(4145), 1, sym_comment, - ACTIONS(4428), 40, + ACTIONS(1086), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404609,24 +404119,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196599] = 4, + [196005] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7954), 1, + anon_sym_RBRACK, + ACTIONS(7962), 1, + anon_sym_list, + STATE(4757), 1, + sym__one_type, + STATE(11031), 1, + sym__type_annotation, + ACTIONS(7959), 2, + anon_sym_table, + anon_sym_record, + STATE(4146), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7956), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [196067] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_LF, - STATE(4156), 1, + ACTIONS(7965), 1, + anon_sym_DOT2, + STATE(4147), 1, sym_comment, - ACTIONS(3834), 40, + ACTIONS(4028), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4026), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -404657,62 +404221,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196651] = 4, + [196121] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(7967), 1, + anon_sym_DOT2, + STATE(4138), 1, + sym_path, + STATE(4148), 1, + sym_comment, + STATE(4453), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4157), 1, + ACTIONS(966), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [196179] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7970), 1, + anon_sym_DOT2, + STATE(4455), 1, + sym_path, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4149), 2, sym_comment, - ACTIONS(1298), 40, + aux_sym_cell_path_repeat1, + ACTIONS(942), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [196703] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [196235] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4424), 1, + ACTIONS(1253), 1, anon_sym_LF, - STATE(4158), 1, + STATE(4150), 1, sym_comment, - ACTIONS(4422), 40, + ACTIONS(1251), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404753,17 +404370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196755] = 5, + [196287] = 5, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(7382), 1, aux_sym_unquoted_token3, - STATE(4159), 1, + STATE(4151), 1, sym_comment, - ACTIONS(825), 2, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(823), 38, + ACTIONS(827), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -404802,120 +404419,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196809] = 4, - ACTIONS(105), 1, + [196341] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4420), 1, - anon_sym_LF, - STATE(4160), 1, + ACTIONS(7973), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7975), 1, + aux_sym__immediate_decimal_token2, + STATE(4152), 1, sym_comment, - ACTIONS(4418), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(815), 16, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [196861] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4416), 1, - anon_sym_LF, - STATE(4161), 1, - sym_comment, - ACTIONS(4414), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 23, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [196913] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [196397] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1261), 1, - anon_sym_LF, - STATE(4162), 1, + STATE(4153), 1, sym_comment, - ACTIONS(1259), 40, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -404946,24 +404517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [196965] = 4, + [196449] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4354), 1, - anon_sym_LF, - STATE(4163), 1, + STATE(4154), 1, sym_comment, - ACTIONS(4352), 40, + ACTIONS(4034), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(4032), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -404994,126 +404565,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197017] = 13, - ACTIONS(105), 1, + [196501] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, + ACTIONS(7977), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4164), 1, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token2, + STATE(4155), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5656), 1, - sym__immediate_decimal, - STATE(5657), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(807), 16, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [197087] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7944), 1, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 23, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(7950), 1, - anon_sym_list, - STATE(4165), 1, - sym_comment, - STATE(4194), 1, - aux_sym__multiple_types_repeat1, - STATE(4884), 1, - sym__one_type, - STATE(10830), 1, - sym__type_annotation, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [197151] = 4, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [196557] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4166), 1, + STATE(4156), 1, sym_comment, - ACTIONS(1261), 2, + ACTIONS(1211), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1259), 39, + ACTIONS(1209), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -405153,44 +404663,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [197203] = 13, + [196609] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2149), 1, + ACTIONS(4492), 1, anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4167), 1, + STATE(4157), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5658), 1, - sym__immediate_decimal, - STATE(5659), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 30, + ACTIONS(4490), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -405210,14 +404702,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197273] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [196661] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4332), 1, anon_sym_LF, - STATE(4168), 1, + STATE(4158), 1, sym_comment, - ACTIONS(4410), 40, + ACTIONS(4330), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405258,14 +404759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197325] = 4, + [196713] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_LF, - STATE(4169), 1, + STATE(4159), 1, sym_comment, - ACTIONS(4406), 40, + ACTIONS(4303), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405306,44 +404807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197377] = 13, + [196765] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2173), 1, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4170), 1, + STATE(4160), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5666), 1, - sym__immediate_decimal, - STATE(5667), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2171), 30, + ACTIONS(1191), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -405363,44 +404846,35 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197447] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [196817] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2177), 1, + ACTIONS(4336), 1, anon_sym_LF, - ACTIONS(3218), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7712), 1, - anon_sym_DASH2, - ACTIONS(7714), 1, - anon_sym_PLUS2, - STATE(4171), 1, + STATE(4161), 1, sym_comment, - STATE(4871), 1, - sym__var, - STATE(5672), 1, - sym__immediate_decimal, - STATE(5673), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 30, + ACTIONS(4334), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -405420,24 +404894,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197517] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [196869] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4400), 1, - anon_sym_LF, - STATE(4172), 1, + ACTIONS(2992), 1, + anon_sym_DOT2, + STATE(4162), 1, sym_comment, - ACTIONS(4398), 40, + ACTIONS(3931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3929), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -405468,14 +404952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197569] = 4, + [196923] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4396), 1, + ACTIONS(4340), 1, anon_sym_LF, - STATE(4173), 1, + STATE(4163), 1, sym_comment, - ACTIONS(4394), 40, + ACTIONS(4338), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405516,62 +405000,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197621] = 4, + [196975] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4174), 1, - sym_comment, - ACTIONS(1230), 2, + ACTIONS(4344), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 39, - anon_sym_EQ, + STATE(4164), 1, + sym_comment, + ACTIONS(4342), 40, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [197673] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [197027] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(1427), 1, anon_sym_LF, - STATE(4175), 1, + STATE(4165), 1, sym_comment, - ACTIONS(3947), 40, + ACTIONS(1425), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405612,45 +405096,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197725] = 14, + [197079] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - ACTIONS(7952), 1, - aux_sym_unquoted_token5, - STATE(4176), 1, - sym_comment, - STATE(5114), 1, - sym__var, - STATE(5884), 1, - sym__immediate_decimal, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(1219), 1, anon_sym_LF, - STATE(5883), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 28, + STATE(4166), 1, + sym_comment, + ACTIONS(1217), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -405670,45 +405135,83 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197797] = 14, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [197131] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, + ACTIONS(1431), 1, + anon_sym_LF, + STATE(4167), 1, + sym_comment, + ACTIONS(1429), 40, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - ACTIONS(7952), 1, - aux_sym_unquoted_token5, - STATE(4177), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [197183] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4168), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5886), 1, - sym__immediate_decimal, - ACTIONS(1195), 2, + ACTIONS(1215), 3, ts_builtin_sym_end, anon_sym_LF, - STATE(5885), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 28, + anon_sym_DOT2, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -405728,67 +405231,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [197869] = 9, - ACTIONS(3), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [197235] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7954), 1, - anon_sym_RBRACK, - ACTIONS(7962), 1, - anon_sym_list, - STATE(4884), 1, - sym__one_type, - STATE(10830), 1, - sym__type_annotation, - ACTIONS(7959), 2, - anon_sym_table, - anon_sym_record, - STATE(4178), 2, + STATE(4169), 1, sym_comment, - aux_sym__multiple_types_repeat1, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7956), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [197931] = 4, + ACTIONS(1215), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [197287] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(1435), 1, anon_sym_LF, - STATE(4179), 1, + STATE(4170), 1, sym_comment, - ACTIONS(1325), 40, + ACTIONS(1433), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405829,47 +405336,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [197983] = 17, + [197339] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7850), 1, - anon_sym_DASH2, - ACTIONS(7852), 1, - anon_sym_PLUS2, - ACTIONS(7965), 1, - anon_sym_LT, - ACTIONS(7967), 1, - anon_sym_DOT2, - ACTIONS(7969), 1, - anon_sym_EQ2, - ACTIONS(7971), 1, - aux_sym_unquoted_token4, - ACTIONS(7973), 1, - aux_sym_unquoted_token6, - STATE(4180), 1, + ACTIONS(1305), 1, + anon_sym_LF, + STATE(4171), 1, sym_comment, - STATE(5879), 1, - sym__var, - STATE(6440), 1, - sym__immediate_decimal, - STATE(6254), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 26, + ACTIONS(1303), 40, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -405889,15 +405373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [198061] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [197391] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(1309), 1, anon_sym_LF, - STATE(4181), 1, + STATE(4172), 1, sym_comment, - ACTIONS(1350), 40, + ACTIONS(1307), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405938,16 +405432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198113] = 4, + [197443] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4182), 1, + ACTIONS(2992), 1, + anon_sym_DOT2, + STATE(4173), 1, sym_comment, - ACTIONS(3836), 3, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 38, + ACTIONS(1054), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -405986,14 +405481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198165] = 4, + [197497] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(4265), 1, anon_sym_LF, - STATE(4183), 1, + STATE(4174), 1, sym_comment, - ACTIONS(1354), 40, + ACTIONS(4263), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406034,14 +405529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198217] = 4, + [197549] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(4392), 1, anon_sym_LF, - STATE(4184), 1, + STATE(4175), 1, sym_comment, - ACTIONS(2986), 40, + ACTIONS(4390), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406082,14 +405577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198269] = 4, + [197601] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(4396), 1, anon_sym_LF, - STATE(4185), 1, + STATE(4176), 1, sym_comment, - ACTIONS(990), 40, + ACTIONS(4394), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406130,25 +405625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198321] = 5, + [197653] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_EQ, - STATE(4186), 1, - sym_comment, - ACTIONS(4011), 2, - ts_builtin_sym_end, + ACTIONS(3891), 1, anon_sym_LF, - ACTIONS(4007), 38, + STATE(4177), 1, + sym_comment, + ACTIONS(3887), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406179,24 +405673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198375] = 4, + [197705] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(4187), 1, + ACTIONS(7981), 1, + anon_sym_DOT2, + STATE(4178), 1, sym_comment, - ACTIONS(1033), 40, + ACTIONS(4038), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4036), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406227,24 +405722,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198427] = 4, + [197759] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, - anon_sym_LF, - STATE(4188), 1, + ACTIONS(7983), 1, + anon_sym_DOT2, + STATE(4179), 1, sym_comment, - ACTIONS(1305), 40, + ACTIONS(3842), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3840), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406275,72 +405771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198479] = 4, + [197813] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4189), 1, - sym_comment, - ACTIONS(1224), 2, - anon_sym_LF, + ACTIONS(7985), 1, anon_sym_DOT2, - ACTIONS(1222), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [198531] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1387), 1, - anon_sym_LF, - STATE(4190), 1, + STATE(4180), 1, sym_comment, - ACTIONS(1385), 40, + ACTIONS(3905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3903), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406371,16 +405820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198583] = 4, + [197867] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4191), 1, + ACTIONS(7987), 1, + anon_sym_DOT2, + STATE(4181), 1, sym_comment, - ACTIONS(1261), 3, + ACTIONS(3911), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 38, + ACTIONS(3909), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406419,24 +405869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198635] = 4, + [197921] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4192), 1, - sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, + ACTIONS(4400), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 38, + STATE(4182), 1, + sym_comment, + ACTIONS(4398), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406467,24 +405917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198687] = 4, + [197973] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4193), 1, - sym_comment, - ACTIONS(1191), 3, - ts_builtin_sym_end, + ACTIONS(4408), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 38, + STATE(4183), 1, + sym_comment, + ACTIONS(4406), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406515,68 +405965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198739] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - ACTIONS(7977), 1, - anon_sym_RBRACK, - STATE(4178), 1, - aux_sym__multiple_types_repeat1, - STATE(4194), 1, - sym_comment, - STATE(4884), 1, - sym__one_type, - STATE(10830), 1, - sym__type_annotation, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [198803] = 4, + [198025] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4384), 1, + ACTIONS(4414), 1, anon_sym_LF, - STATE(4195), 1, + STATE(4184), 1, sym_comment, - ACTIONS(4382), 40, + ACTIONS(4412), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406617,64 +406013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198855] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7870), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7979), 1, - anon_sym_DOT2, - STATE(4196), 1, - sym_comment, - ACTIONS(807), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(809), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [198911] = 4, + [198077] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1254), 1, + ACTIONS(1331), 1, anon_sym_LF, - STATE(4197), 1, + STATE(4185), 1, sym_comment, - ACTIONS(1252), 40, + ACTIONS(1329), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406715,14 +406061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [198963] = 4, + [198129] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(4457), 1, anon_sym_LF, - STATE(4198), 1, + STATE(4186), 1, sym_comment, - ACTIONS(4378), 40, + ACTIONS(4455), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406763,14 +406109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199015] = 4, + [198181] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4376), 1, + ACTIONS(3931), 1, anon_sym_LF, - STATE(4199), 1, + STATE(4187), 1, sym_comment, - ACTIONS(4374), 40, + ACTIONS(3929), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406811,14 +406157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199067] = 4, + [198233] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4140), 1, + ACTIONS(4152), 1, anon_sym_LF, - STATE(4200), 1, + STATE(4188), 1, sym_comment, - ACTIONS(4138), 40, + ACTIONS(4150), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406859,14 +406205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199119] = 4, + [198285] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4372), 1, + ACTIONS(1223), 1, anon_sym_LF, - STATE(4201), 1, + STATE(4189), 1, sym_comment, - ACTIONS(4370), 40, + ACTIONS(1221), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -406907,24 +406253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199171] = 4, + [198337] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - STATE(4202), 1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token2, + STATE(4190), 1, sym_comment, - ACTIONS(1193), 40, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -406955,72 +406302,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199223] = 4, + [198391] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4203), 1, - sym_comment, - ACTIONS(1191), 2, + ACTIONS(1335), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [199275] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4204), 1, + STATE(4191), 1, sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 38, + ACTIONS(1333), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407051,24 +406350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199327] = 4, + [198443] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4205), 1, - sym_comment, - ACTIONS(1224), 3, - ts_builtin_sym_end, + ACTIONS(1339), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 38, + STATE(4192), 1, + sym_comment, + ACTIONS(1337), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407099,25 +406398,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199379] = 5, + [198495] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7982), 1, - anon_sym_DOT2, - STATE(4206), 1, - sym_comment, - ACTIONS(3911), 2, - ts_builtin_sym_end, + ACTIONS(4354), 1, anon_sym_LF, - ACTIONS(3909), 38, + STATE(4193), 1, + sym_comment, + ACTIONS(4352), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407148,25 +406446,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199433] = 5, + [198547] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_DOT2, - STATE(4207), 1, - sym_comment, - ACTIONS(3917), 2, - ts_builtin_sym_end, + ACTIONS(4366), 1, anon_sym_LF, - ACTIONS(3915), 38, + STATE(4194), 1, + sym_comment, + ACTIONS(4364), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407197,25 +406494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199487] = 5, + [198599] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_DOT2, - STATE(4208), 1, - sym_comment, - ACTIONS(3923), 2, - ts_builtin_sym_end, + ACTIONS(4464), 1, anon_sym_LF, - ACTIONS(3921), 38, + STATE(4195), 1, + sym_comment, + ACTIONS(4462), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407246,25 +406542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199541] = 5, + [198651] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7988), 1, - anon_sym_DOT2, - STATE(4209), 1, - sym_comment, - ACTIONS(3929), 2, - ts_builtin_sym_end, + ACTIONS(7991), 1, anon_sym_LF, - ACTIONS(3927), 38, + STATE(4196), 1, + sym_comment, + ACTIONS(7989), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407295,25 +406590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199595] = 5, + [198703] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(4210), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, + ACTIONS(4476), 1, anon_sym_LF, - ACTIONS(2996), 38, + STATE(4197), 1, + sym_comment, + ACTIONS(4474), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407344,14 +406638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199649] = 4, + [198755] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(4480), 1, anon_sym_LF, - STATE(4211), 1, + STATE(4198), 1, sym_comment, - ACTIONS(1397), 40, + ACTIONS(4478), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407392,68 +406686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199701] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - ACTIONS(7990), 1, - anon_sym_LBRACK, - STATE(4212), 1, - sym_comment, - STATE(10986), 1, - sym__multiple_types, - STATE(11053), 1, - sym__type_annotation, - STATE(11059), 1, - sym__one_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [199765] = 4, + [198807] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(4484), 1, anon_sym_LF, - STATE(4213), 1, + STATE(4199), 1, sym_comment, - ACTIONS(4013), 40, + ACTIONS(4482), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407494,24 +406734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199817] = 4, + [198859] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(4214), 1, + ACTIONS(7753), 1, + aux_sym__immediate_decimal_token2, + STATE(4200), 1, sym_comment, - ACTIONS(1332), 40, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407542,14 +406783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199869] = 4, + [198913] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, + ACTIONS(4250), 1, anon_sym_LF, - STATE(4215), 1, + STATE(4201), 1, sym_comment, - ACTIONS(1317), 40, + ACTIONS(4248), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407590,24 +406831,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199921] = 4, + [198965] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_LF, - STATE(4216), 1, + ACTIONS(7993), 1, + aux_sym__immediate_decimal_token2, + STATE(4202), 1, sym_comment, - ACTIONS(7992), 40, + ACTIONS(3806), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3804), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -407638,64 +406880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [199973] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7782), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7996), 1, - anon_sym_DOT2, - STATE(4217), 1, - sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [200029] = 4, + [199019] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4330), 1, + ACTIONS(4257), 1, anon_sym_LF, - STATE(4218), 1, + STATE(4203), 1, sym_comment, - ACTIONS(4328), 40, + ACTIONS(4255), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407736,14 +406928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [200081] = 4, + [199071] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4334), 1, + ACTIONS(4281), 1, anon_sym_LF, - STATE(4219), 1, + STATE(4204), 1, sym_comment, - ACTIONS(4332), 40, + ACTIONS(4279), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407784,14 +406976,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [200133] = 4, + [199123] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + STATE(4205), 1, + sym_comment, + ACTIONS(1187), 2, anon_sym_LF, - STATE(4220), 1, + anon_sym_DOT2, + ACTIONS(1185), 39, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [199175] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4088), 1, + anon_sym_LF, + STATE(4206), 1, sym_comment, - ACTIONS(1389), 40, + ACTIONS(4086), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -407832,26 +407072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [200185] = 4, + [199227] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4342), 1, + ACTIONS(2175), 1, anon_sym_LF, - STATE(4221), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4207), 1, sym_comment, - ACTIONS(4340), 40, + STATE(4740), 1, + sym__var, + STATE(5481), 1, + sym__immediate_decimal, + STATE(5480), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -407871,35 +407129,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200237] = 4, + [199297] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(2077), 1, anon_sym_LF, - STATE(4222), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4208), 1, sym_comment, - ACTIONS(2996), 40, + STATE(4740), 1, + sym__var, + STATE(5489), 1, + sym__immediate_decimal, + STATE(5485), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -407919,83 +407186,101 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200289] = 6, - ACTIONS(3), 1, + [199367] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7925), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7999), 1, + ACTIONS(2081), 1, + anon_sym_LF, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, anon_sym_DOT2, - STATE(4223), 1, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4209), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4740), 1, + sym__var, + STATE(5491), 1, + sym__immediate_decimal, + STATE(5490), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 30, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [200344] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [199437] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4224), 1, - sym_comment, - ACTIONS(4396), 2, - ts_builtin_sym_end, + ACTIONS(2073), 1, anon_sym_LF, - ACTIONS(4394), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4210), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5494), 1, + sym__immediate_decimal, + STATE(5492), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408015,34 +407300,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200395] = 4, + [199507] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8004), 1, + ACTIONS(2108), 1, anon_sym_LF, - STATE(4225), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4211), 1, sym_comment, - ACTIONS(8002), 39, + STATE(4740), 1, + sym__var, + STATE(5560), 1, + sym__immediate_decimal, + STATE(5551), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2106), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408062,34 +407357,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200446] = 4, + [199577] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4226), 1, - sym_comment, - ACTIONS(4430), 2, - ts_builtin_sym_end, + ACTIONS(2112), 1, anon_sym_LF, - ACTIONS(4428), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4212), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5562), 1, + sym__immediate_decimal, + STATE(5561), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2110), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408109,34 +407414,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200497] = 4, + [199647] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4227), 1, - sym_comment, - ACTIONS(4046), 2, - ts_builtin_sym_end, + ACTIONS(2116), 1, anon_sym_LF, - ACTIONS(4044), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4213), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5595), 1, + sym__immediate_decimal, + STATE(5570), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408156,34 +407471,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200548] = 4, + [199717] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4228), 1, - sym_comment, - ACTIONS(4196), 2, - ts_builtin_sym_end, + ACTIONS(2120), 1, anon_sym_LF, - ACTIONS(4194), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4214), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5611), 1, + sym__immediate_decimal, + STATE(5610), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408203,42 +407528,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200599] = 6, + [199787] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8008), 1, + ACTIONS(2124), 1, anon_sym_LF, - ACTIONS(8010), 1, - anon_sym_PIPE, - STATE(4229), 1, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4215), 1, sym_comment, - STATE(4280), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8006), 37, - sym_cmd_identifier, + STATE(4740), 1, + sym__var, + STATE(5618), 1, + sym__immediate_decimal, + STATE(5613), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -408260,26 +407585,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [200654] = 4, + [199857] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4230), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, + ACTIONS(2128), 1, anon_sym_LF, - ACTIONS(1338), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4216), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5621), 1, + sym__immediate_decimal, + STATE(5619), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408299,34 +407642,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200705] = 4, + [199927] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4231), 1, - sym_comment, - ACTIONS(4226), 2, - ts_builtin_sym_end, + ACTIONS(2132), 1, anon_sym_LF, - ACTIONS(4224), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4217), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5625), 1, + sym__immediate_decimal, + STATE(5624), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408346,83 +407699,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200756] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7911), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8012), 1, - anon_sym_DOT2, - STATE(4232), 1, - sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [200811] = 4, + [199997] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4233), 1, - sym_comment, - ACTIONS(1035), 2, - ts_builtin_sym_end, + ACTIONS(2136), 1, anon_sym_LF, - ACTIONS(1033), 38, + ACTIONS(3057), 1, + anon_sym_DOLLAR, + ACTIONS(7631), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(7639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7641), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_PLUS2, + STATE(4218), 1, + sym_comment, + STATE(4740), 1, + sym__var, + STATE(5628), 1, + sym__immediate_decimal, + STATE(5627), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 30, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408442,32 +407756,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [200862] = 4, + [200067] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4234), 1, - sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, + ACTIONS(4092), 1, anon_sym_LF, - ACTIONS(1005), 38, + STATE(4219), 1, + sym_comment, + ACTIONS(4090), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -408498,28 +407804,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [200913] = 6, + [200119] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8015), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8017), 1, - aux_sym__immediate_decimal_token2, - STATE(4235), 1, + STATE(4220), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(1223), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 36, + ACTIONS(1221), 39, + anon_sym_EQ, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -408544,18 +407852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [200968] = 4, + [200171] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4236), 1, + ACTIONS(7995), 1, + anon_sym_DOT2, + STATE(4221), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(3979), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4200), 38, + ACTIONS(3977), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -408594,15 +407901,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201019] = 4, + [200225] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + ACTIONS(7997), 1, + anon_sym_LBRACK, + STATE(4222), 1, + sym_comment, + STATE(10347), 1, + sym__type_annotation, + STATE(10354), 1, + sym__one_type, + STATE(10477), 1, + sym__multiple_types, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [200289] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4237), 1, + STATE(4223), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(1223), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4228), 38, + ACTIONS(1221), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -408641,75 +408002,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201070] = 7, + [200340] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(8001), 1, anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - ACTIONS(8019), 1, - anon_sym_COLON, - STATE(4238), 1, - sym_comment, - ACTIONS(1364), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1102), 31, - anon_sym_SEMI, + ACTIONS(8004), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [201127] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4239), 1, + STATE(4224), 2, sym_comment, - ACTIONS(4015), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4013), 38, - anon_sym_SEMI, + aux_sym_pipe_element_repeat1, + ACTIONS(7999), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -408729,31 +408049,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [201178] = 7, + anon_sym_CARET, + [200393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4240), 1, + STATE(4225), 1, sym_comment, - STATE(4270), 1, - sym_path, - STATE(4648), 1, - sym_cell_path, - ACTIONS(990), 12, + ACTIONS(815), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -408762,7 +408069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(992), 25, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(817), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -408788,15 +408097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [201235] = 4, + [200444] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4241), 1, + STATE(4226), 1, sym_comment, - ACTIONS(1311), 2, + ACTIONS(1359), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1309), 38, + ACTIONS(1357), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -408835,21 +408144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201286] = 6, + [200495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8023), 1, - anon_sym_DOT2, - STATE(4549), 1, - sym_path, - STATE(4242), 2, + STATE(4227), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 12, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -408858,12 +408163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1017), 25, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -408884,64 +408191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [201341] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - STATE(4243), 1, - sym_comment, - ACTIONS(1364), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1102), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [201396] = 4, + [200546] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4228), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(1351), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4220), 38, + ACTIONS(1349), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -408980,71 +408238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201447] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_LF, - STATE(4245), 1, - sym_comment, - STATE(4280), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8026), 37, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [201502] = 7, + [200597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4246), 1, + STATE(4229), 1, sym_comment, - STATE(4270), 1, - sym_path, - STATE(4682), 1, - sym_cell_path, - ACTIONS(1001), 12, + ACTIONS(855), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -409053,12 +408257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1003), 25, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -409079,22 +408285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [201559] = 7, + [200648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4247), 1, + STATE(4230), 1, sym_comment, - STATE(4270), 1, - sym_path, - STATE(4598), 1, - sym_cell_path, - ACTIONS(1033), 12, + ACTIONS(807), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -409103,7 +408304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1035), 25, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(809), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -409129,116 +408332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [201616] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4248), 1, - sym_comment, - ACTIONS(4242), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4240), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [201667] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4249), 1, - sym_comment, - ACTIONS(1323), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1321), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [201718] = 7, + [200699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4250), 1, + STATE(4231), 1, sym_comment, - STATE(4270), 1, - sym_path, - STATE(4564), 1, - sym_cell_path, - ACTIONS(909), 12, + ACTIONS(894), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -409247,12 +408351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(911), 25, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -409273,15 +408379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [201775] = 4, + [200750] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4232), 1, sym_comment, - ACTIONS(4170), 2, + ACTIONS(4392), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4168), 38, + ACTIONS(4390), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409320,72 +408426,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201826] = 4, + [200801] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4252), 1, - sym_comment, - ACTIONS(4424), 2, - ts_builtin_sym_end, + ACTIONS(8009), 1, anon_sym_LF, - ACTIONS(4422), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8011), 1, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [201877] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4253), 1, + STATE(4224), 1, + aux_sym_pipe_element_repeat1, + STATE(4233), 1, sym_comment, - ACTIONS(4330), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4328), 38, - anon_sym_SEMI, + ACTIONS(8007), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -409405,24 +408474,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [201928] = 4, + anon_sym_CARET, + [200856] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4254), 1, + STATE(4234), 1, sym_comment, - ACTIONS(1391), 2, + ACTIONS(4396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1389), 38, + ACTIONS(4394), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409461,109 +408522,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [201979] = 4, - ACTIONS(105), 1, + [200907] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4255), 1, + STATE(4235), 1, sym_comment, - ACTIONS(4334), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4332), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(855), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [202030] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4256), 1, - sym_comment, - ACTIONS(4338), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4336), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(857), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [202081] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [200958] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4236), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(4400), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3947), 38, + ACTIONS(4398), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409602,15 +408616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202132] = 4, + [201009] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4258), 1, + STATE(4237), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(4408), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1113), 38, + ACTIONS(4406), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409649,114 +408663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202183] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(8032), 1, - anon_sym_LF, - STATE(4259), 1, - sym_comment, - STATE(4280), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8030), 37, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [202238] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4260), 1, - sym_comment, - STATE(4270), 1, - sym_path, - STATE(4650), 1, - sym_cell_path, - ACTIONS(971), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(973), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [202295] = 4, + [201060] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4261), 1, + STATE(4238), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(1363), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4370), 38, + ACTIONS(1361), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409795,15 +408710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202346] = 4, + [201111] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4262), 1, + STATE(4239), 1, sym_comment, - ACTIONS(4342), 2, + ACTIONS(4062), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4340), 38, + ACTIONS(4060), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409842,75 +408757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202397] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, - anon_sym_LPAREN, - ACTIONS(7876), 1, - anon_sym_LT, - ACTIONS(7878), 1, - anon_sym_DOT2, - ACTIONS(7880), 1, - anon_sym_EQ2, - ACTIONS(7882), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7884), 1, - anon_sym_DASH2, - ACTIONS(7886), 1, - anon_sym_PLUS2, - ACTIONS(7888), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7890), 1, - aux_sym__unquoted_in_list_token7, - STATE(4263), 1, - sym_comment, - STATE(6205), 1, - sym__var, - STATE(6601), 1, - sym__immediate_decimal, - STATE(6622), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(7834), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(7854), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202474] = 4, + [201162] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4264), 1, + STATE(4240), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4414), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4244), 38, + ACTIONS(4412), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409949,15 +408804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202525] = 4, + [201213] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4241), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4457), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4374), 38, + ACTIONS(4455), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -409996,64 +408851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202576] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8034), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8036), 1, - aux_sym__immediate_decimal_token2, - STATE(4266), 1, - sym_comment, - ACTIONS(807), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [202631] = 4, + [201264] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4267), 1, + STATE(4242), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(4464), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 38, + ACTIONS(4462), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410092,65 +408898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202682] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4268), 1, - sym_comment, - STATE(4270), 1, - sym_path, - STATE(4458), 1, - sym_cell_path, - ACTIONS(979), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [202739] = 4, + [201315] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4269), 1, + STATE(4243), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(4476), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(990), 38, + ACTIONS(4474), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410189,22 +408945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202790] = 7, + [201366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4270), 1, + STATE(4244), 1, sym_comment, - STATE(4375), 1, - aux_sym_cell_path_repeat1, - STATE(4549), 1, - sym_path, - ACTIONS(903), 12, + ACTIONS(894), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -410213,7 +408964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(905), 25, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(896), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -410239,20 +408992,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [202847] = 7, - ACTIONS(3), 1, + [201417] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token6, - STATE(4271), 1, + STATE(4245), 1, sym_comment, - ACTIONS(7898), 2, + ACTIONS(4382), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4380), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [201468] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8013), 1, anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(8038), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 12, + STATE(4246), 1, + sym_comment, + STATE(4375), 1, + aux_sym_cell_path_repeat1, + STATE(4473), 1, + sym_path, + ACTIONS(903), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -410265,9 +409063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(825), 23, + ACTIONS(905), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -410289,18 +409089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [202904] = 4, + [201525] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8042), 1, - anon_sym_LF, - STATE(4272), 1, + STATE(4247), 1, sym_comment, - ACTIONS(8040), 39, + ACTIONS(1431), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1429), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -410336,15 +409136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [202955] = 4, + [201576] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4273), 1, + STATE(4248), 1, sym_comment, - ACTIONS(4380), 2, + ACTIONS(4388), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4378), 38, + ACTIONS(4386), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410383,15 +409183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203006] = 4, + [201627] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4274), 1, + STATE(4249), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4404), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4258), 38, + ACTIONS(4402), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410430,82 +409230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203057] = 4, + [201678] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4275), 1, + STATE(4250), 1, sym_comment, - ACTIONS(1100), 3, + ACTIONS(4418), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 37, - anon_sym_EQ, + ACTIONS(4416), 38, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [203108] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, - anon_sym_LF, - STATE(4276), 1, - sym_comment, - STATE(4280), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(8044), 37, - sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -410525,17 +409268,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [203163] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [201729] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8013), 1, anon_sym_DOT2, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4277), 1, + STATE(4251), 1, sym_comment, - ACTIONS(861), 14, + STATE(4388), 1, + sym_path, + STATE(4555), 1, + sym_cell_path, + ACTIONS(966), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -410548,13 +409301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 24, + ACTIONS(968), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -410575,45 +409327,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [203218] = 6, - ACTIONS(3), 1, + [201786] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4242), 1, - aux_sym_cell_path_repeat1, - STATE(4278), 1, + ACTIONS(8015), 1, + anon_sym_QMARK2, + STATE(4252), 1, sym_comment, - STATE(4549), 1, - sym_path, - ACTIONS(975), 13, - sym_identifier, + ACTIONS(1072), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 36, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(977), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -410624,28 +409372,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [203273] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [201839] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8054), 1, - aux_sym__immediate_decimal_token2, - STATE(4279), 1, + ACTIONS(8015), 1, + anon_sym_QMARK2, + STATE(4253), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(1072), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 36, + ACTIONS(1070), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -410670,37 +409423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [203328] = 5, + [201892] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8058), 1, - anon_sym_LF, - ACTIONS(8061), 1, - anon_sym_PIPE, - STATE(4280), 2, + STATE(4254), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(8056), 37, - sym_cmd_identifier, + ACTIONS(4422), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4420), 38, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -410720,16 +409461,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [203381] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [201943] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4281), 1, + STATE(4255), 1, sym_comment, - ACTIONS(4400), 2, + ACTIONS(1335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4398), 38, + ACTIONS(1333), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410768,15 +409517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203432] = 4, + [201994] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4282), 1, + STATE(4256), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4070), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4269), 38, + ACTIONS(4068), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410815,15 +409564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203483] = 4, + [202045] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4283), 1, + STATE(4257), 1, sym_comment, - ACTIONS(1307), 2, + ACTIONS(4074), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1305), 38, + ACTIONS(4072), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410862,15 +409611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203534] = 4, + [202096] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4284), 1, + STATE(4258), 1, sym_comment, - ACTIONS(4192), 2, + ACTIONS(1370), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 38, + ACTIONS(1368), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410909,15 +409658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203585] = 4, + [202147] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4285), 1, + STATE(4259), 1, sym_comment, - ACTIONS(4360), 2, + ACTIONS(4078), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4358), 38, + ACTIONS(4076), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -410956,15 +409705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203636] = 4, + [202198] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4286), 1, + STATE(4260), 1, sym_comment, - ACTIONS(1195), 2, + ACTIONS(4480), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1193), 38, + ACTIONS(4478), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411003,15 +409752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203687] = 4, + [202249] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4287), 1, + STATE(4261), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(4484), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1332), 38, + ACTIONS(4482), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411050,15 +409799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203738] = 4, + [202300] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4288), 1, + STATE(4262), 1, sym_comment, - ACTIONS(4364), 2, + ACTIONS(4088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4362), 38, + ACTIONS(4086), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411097,18 +409846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203789] = 4, + [202351] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4289), 1, - sym_comment, - ACTIONS(1327), 2, - ts_builtin_sym_end, + ACTIONS(8019), 1, anon_sym_LF, - ACTIONS(1325), 38, + STATE(4263), 1, + sym_comment, + ACTIONS(8017), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -411144,15 +409893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203840] = 4, + [202402] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4290), 1, + STATE(4264), 1, sym_comment, - ACTIONS(4384), 2, + ACTIONS(4092), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4382), 38, + ACTIONS(4090), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411191,15 +409940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203891] = 4, + [202453] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4291), 1, + STATE(4265), 1, sym_comment, - ACTIONS(4354), 2, + ACTIONS(1305), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4352), 38, + ACTIONS(1303), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411238,15 +409987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203942] = 4, + [202504] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4292), 1, + STATE(4266), 1, sym_comment, - ACTIONS(4297), 2, + ACTIONS(1309), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4295), 38, + ACTIONS(1307), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411285,15 +410034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [203993] = 4, + [202555] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4293), 1, + STATE(4267), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(4426), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3888), 38, + ACTIONS(4424), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411332,15 +410081,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204044] = 4, + [202606] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4268), 1, + sym_comment, + ACTIONS(8021), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + 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_AT, + anon_sym_LBRACE, + [202655] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4294), 1, + STATE(4269), 1, sym_comment, - ACTIONS(4178), 2, + ACTIONS(4324), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4176), 38, + ACTIONS(4322), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411379,15 +410174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204095] = 4, + [202706] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4295), 1, + STATE(4270), 1, sym_comment, - ACTIONS(4420), 2, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4418), 38, + ACTIONS(1054), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411426,64 +410221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204146] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8064), 1, - anon_sym_DOT2, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token2, - STATE(4296), 1, - sym_comment, - ACTIONS(835), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [204201] = 4, + [202757] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4297), 1, + STATE(4271), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1253), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 38, + ACTIONS(1251), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411522,14 +410268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204252] = 5, + [202808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7925), 1, + ACTIONS(8023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8025), 1, aux_sym__immediate_decimal_token2, - STATE(4298), 1, + STATE(4272), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -411546,10 +410294,9 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 23, + ACTIONS(817), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -411570,14 +410317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [204305] = 5, + [202863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7894), 1, + ACTIONS(8027), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8029), 1, aux_sym__immediate_decimal_token2, - STATE(4299), 1, + STATE(4273), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -411594,10 +410343,9 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 23, + ACTIONS(809), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -411618,15 +410366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [204358] = 4, + [202918] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4300), 1, + STATE(4274), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(1435), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4299), 38, + ACTIONS(1433), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411665,19 +410413,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204409] = 5, + [202969] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4275), 1, + sym_comment, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [203020] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4276), 1, + sym_comment, + ACTIONS(4297), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4295), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [203071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8069), 1, - aux_sym__immediate_decimal_token2, - STATE(4301), 1, + ACTIONS(8031), 1, + anon_sym_DOT2, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4277), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -411688,8 +410531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 23, + ACTIONS(879), 24, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -411713,29 +410556,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [204462] = 4, + [203126] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4302), 1, - sym_comment, - ACTIONS(1115), 3, - ts_builtin_sym_end, + ACTIONS(1056), 1, anon_sym_LF, + ACTIONS(1299), 1, anon_sym_DOT2, - ACTIONS(1113), 37, + STATE(4278), 1, + sym_comment, + ACTIONS(1290), 6, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1054), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -411760,24 +410605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [204513] = 7, + [203181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token6, - STATE(4303), 1, + ACTIONS(7975), 1, + aux_sym__immediate_decimal_token2, + STATE(4279), 1, sym_comment, - ACTIONS(7898), 2, - anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(8071), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 12, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -411786,7 +410626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(825), 23, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 23, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -411810,15 +410653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [204570] = 4, + [203234] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4304), 1, + STATE(4280), 1, sym_comment, - ACTIONS(4305), 2, + ACTIONS(4472), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4303), 38, + ACTIONS(4470), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411857,15 +410700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204621] = 4, + [203285] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4305), 1, + STATE(4281), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4492), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4414), 38, + ACTIONS(4490), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411904,15 +410747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204672] = 4, + [203336] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4306), 1, + STATE(4282), 1, sym_comment, - ACTIONS(1280), 2, + ACTIONS(4305), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1278), 38, + ACTIONS(4303), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411951,15 +410794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204723] = 4, + [203387] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4307), 1, + STATE(4283), 1, sym_comment, - ACTIONS(7994), 2, + ACTIONS(1272), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7992), 38, + ACTIONS(1270), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -411998,15 +410841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204774] = 4, + [203438] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4308), 1, + STATE(4284), 1, sym_comment, - ACTIONS(1387), 2, + ACTIONS(1339), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1385), 38, + ACTIONS(1337), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412045,15 +410888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204825] = 4, + [203489] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4309), 1, + STATE(4285), 1, sym_comment, - ACTIONS(1315), 2, + ACTIONS(1439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1313), 38, + ACTIONS(1437), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412092,25 +410935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204876] = 4, + [203540] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4310), 1, - sym_comment, - ACTIONS(4309), 2, - ts_builtin_sym_end, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(8037), 1, anon_sym_LF, - ACTIONS(4307), 38, - anon_sym_SEMI, + STATE(4224), 1, + aux_sym_pipe_element_repeat1, + STATE(4286), 1, + sym_comment, + ACTIONS(8035), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -412130,24 +410983,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [204927] = 4, + anon_sym_CARET, + [203595] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token2, + STATE(4287), 1, + sym_comment, + ACTIONS(807), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [203648] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4311), 1, + STATE(4288), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1321), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 38, + ACTIONS(1319), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412186,16 +411079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [204978] = 6, + [203699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8075), 1, + ACTIONS(8039), 1, aux_sym__immediate_decimal_token2, - STATE(4312), 1, + STATE(4289), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(855), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -412212,9 +411103,59 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 22, + ACTIONS(857), 23, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [203752] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8041), 1, + anon_sym_DOT2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token2, + STATE(4290), 1, + sym_comment, + ACTIONS(846), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -412235,15 +411176,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [205033] = 4, + [203807] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8046), 1, + anon_sym_DOT2, + STATE(4291), 1, + sym_comment, + ACTIONS(815), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [203862] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4292), 1, sym_comment, - ACTIONS(4408), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4406), 38, + ACTIONS(1266), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412282,46 +411272,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205084] = 7, - ACTIONS(3), 1, + [203913] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8077), 1, - anon_sym_DOT2, - STATE(4314), 1, + STATE(4293), 1, sym_comment, - STATE(4333), 1, - sym_path, - STATE(4458), 1, - sym_cell_path, - ACTIONS(979), 12, - sym_identifier, + ACTIONS(1084), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1082), 37, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -412332,25 +411316,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [205141] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [203964] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4315), 1, - sym_comment, - ACTIONS(1276), 2, - ts_builtin_sym_end, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(8051), 1, anon_sym_LF, - ACTIONS(1274), 38, - anon_sym_SEMI, + STATE(4224), 1, + aux_sym_pipe_element_repeat1, + STATE(4294), 1, + sym_comment, + ACTIONS(8049), 37, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -412370,24 +411367,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [205192] = 4, + anon_sym_CARET, + [204019] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4316), 1, + STATE(4295), 1, sym_comment, - ACTIONS(4174), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4172), 38, + ACTIONS(1266), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412426,63 +411415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205243] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7933), 1, - aux_sym__immediate_decimal_token2, - STATE(4317), 1, - sym_comment, - ACTIONS(815), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [205296] = 4, + [204070] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4318), 1, + STATE(4296), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(4488), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4311), 38, + ACTIONS(4486), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412521,15 +411462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205347] = 4, + [204121] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4319), 1, + STATE(4297), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(951), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3834), 38, + ACTIONS(949), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412568,15 +411509,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205398] = 4, + [204172] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4320), 1, + ACTIONS(8053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8055), 1, + aux_sym__immediate_decimal_token2, + STATE(4298), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 36, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [204227] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4299), 1, sym_comment, - ACTIONS(4160), 2, + ACTIONS(4152), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4158), 38, + ACTIONS(4150), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412615,15 +411605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205449] = 4, + [204278] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4321), 1, + STATE(4300), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(4166), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 38, + ACTIONS(4164), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412662,15 +411652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205500] = 4, + [204329] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4322), 1, + STATE(4301), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4170), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4320), 38, + ACTIONS(4168), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412709,15 +411699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205551] = 4, + [204380] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4323), 1, + STATE(4302), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 38, + ACTIONS(1086), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412756,44 +411746,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205602] = 5, - ACTIONS(3), 1, + [204431] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7911), 1, - aux_sym__immediate_decimal_token2, - STATE(4324), 1, + STATE(4303), 1, sym_comment, - ACTIONS(807), 16, - sym_identifier, + ACTIONS(1088), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1086), 37, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -412804,65 +411790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [205655] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8080), 1, - anon_sym_DOT2, - STATE(4325), 1, - sym_comment, - STATE(4333), 1, - sym_path, - STATE(4520), 1, - sym_cell_path, - ACTIONS(997), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(999), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [205712] = 4, + [204482] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4326), 1, + STATE(4304), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(4174), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1342), 38, + ACTIONS(4172), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412901,15 +411840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205763] = 4, + [204533] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(4305), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(4178), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1243), 38, + ACTIONS(4176), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412948,15 +411887,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205814] = 4, + [204584] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4328), 1, + ACTIONS(8057), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8059), 1, + aux_sym__immediate_decimal_token2, + STATE(4306), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [204639] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4307), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(4328), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1098), 38, + ACTIONS(4326), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -412995,77 +411983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [205865] = 17, + [204690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, - anon_sym_LPAREN, - ACTIONS(7882), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7884), 1, - anon_sym_DASH2, - ACTIONS(7886), 1, - anon_sym_PLUS2, - ACTIONS(8083), 1, - anon_sym_LT, - ACTIONS(8085), 1, + ACTIONS(8061), 1, anon_sym_DOT2, - ACTIONS(8087), 1, - anon_sym_EQ2, - ACTIONS(8089), 1, - aux_sym_unquoted_token4, - ACTIONS(8091), 1, - aux_sym_unquoted_token6, - STATE(4329), 1, - sym_comment, - STATE(6205), 1, - sym__var, - STATE(6601), 1, - sym__immediate_decimal, - STATE(6622), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(825), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205942] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4330), 1, + STATE(4473), 1, + sym_path, + STATE(4308), 2, sym_comment, - ACTIONS(889), 15, + aux_sym_cell_path_repeat1, + ACTIONS(942), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -413074,9 +412006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(891), 25, + ACTIONS(944), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -413102,15 +412032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [205993] = 4, + [204745] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4309), 1, sym_comment, - ACTIONS(4488), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4486), 38, + ACTIONS(4184), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413149,15 +412079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206044] = 4, + [204796] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4332), 1, + STATE(4310), 1, sym_comment, - ACTIONS(4148), 2, + ACTIONS(4354), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4146), 38, + ACTIONS(4352), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413196,93 +412126,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206095] = 7, - ACTIONS(3), 1, + [204847] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4278), 1, - aux_sym_cell_path_repeat1, - STATE(4333), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_LF, + STATE(4224), 1, + aux_sym_pipe_element_repeat1, + STATE(4311), 1, sym_comment, - STATE(4549), 1, - sym_path, - ACTIONS(903), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(8064), 37, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(905), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [206152] = 4, - ACTIONS(3), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [204902] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4334), 1, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(1299), 1, + anon_sym_DOT2, + ACTIONS(8068), 1, + anon_sym_COLON, + STATE(4312), 1, sym_comment, - ACTIONS(844), 15, - sym_identifier, + ACTIONS(1290), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(846), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -413293,29 +412222,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [206203] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [204959] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8093), 1, + ACTIONS(8070), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8095), 1, + ACTIONS(8072), 1, aux_sym__immediate_decimal_token2, - STATE(4335), 1, + STATE(4313), 1, sym_comment, ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, ACTIONS(807), 36, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -413342,15 +412273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [206258] = 4, + aux_sym_unquoted_token6, + [205014] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4336), 1, + STATE(4314), 1, sym_comment, - ACTIONS(4144), 2, + ACTIONS(4301), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4142), 38, + ACTIONS(4299), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413389,72 +412321,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206309] = 4, - ACTIONS(105), 1, + [205065] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4337), 1, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4315), 1, sym_comment, - ACTIONS(4140), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4138), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4388), 1, + sym_path, + STATE(4577), 1, + sym_cell_path, + ACTIONS(913), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(915), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206360] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [205122] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4338), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4316), 1, sym_comment, - ACTIONS(1261), 2, + STATE(4970), 1, + sym__var, + STATE(5896), 1, + sym__immediate_decimal, + ACTIONS(2175), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1259), 38, + STATE(5889), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -413474,34 +412427,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206411] = 4, + [205191] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4339), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4317), 1, sym_comment, - ACTIONS(4460), 2, + STATE(4970), 1, + sym__var, + STATE(5902), 1, + sym__immediate_decimal, + ACTIONS(2077), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4458), 38, + STATE(5900), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -413521,34 +412483,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206462] = 4, + [205260] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4340), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4318), 1, sym_comment, - ACTIONS(1348), 2, + STATE(4970), 1, + sym__var, + STATE(5904), 1, + sym__immediate_decimal, + ACTIONS(2081), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 38, + STATE(5903), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -413568,34 +412539,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206513] = 4, + [205329] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4341), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4319), 1, sym_comment, - ACTIONS(4468), 2, + STATE(4970), 1, + sym__var, + STATE(5906), 1, + sym__immediate_decimal, + ACTIONS(2073), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4466), 38, + STATE(5905), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -413615,71 +412595,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206564] = 4, - ACTIONS(105), 1, + [205398] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4308), 1, + aux_sym_cell_path_repeat1, + STATE(4320), 1, sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2986), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4473), 1, + sym_path, + ACTIONS(973), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(975), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206615] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [205455] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(4321), 1, sym_comment, - ACTIONS(1399), 2, + ACTIONS(4199), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1397), 38, + ACTIONS(4197), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413718,62 +412692,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206666] = 4, - ACTIONS(105), 1, + [205506] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4344), 1, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4322), 1, sym_comment, - ACTIONS(4392), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4390), 38, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4388), 1, + sym_path, + STATE(4624), 1, + sym_cell_path, + ACTIONS(917), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(919), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [206717] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [205563] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4323), 1, sym_comment, - ACTIONS(4388), 2, + ACTIONS(4250), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4386), 38, + ACTIONS(4248), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413812,15 +412789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206768] = 4, + [205614] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4324), 1, sym_comment, - ACTIONS(4136), 2, + ACTIONS(4340), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4134), 38, + ACTIONS(4338), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413859,63 +412836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206819] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8097), 1, - anon_sym_QMARK2, - STATE(4347), 1, - sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [206872] = 4, + [205665] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4348), 1, + STATE(4325), 1, sym_comment, - ACTIONS(4128), 2, + ACTIONS(4203), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4126), 38, + ACTIONS(4201), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -413954,15 +412883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206923] = 4, + [205716] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4349), 1, + STATE(4326), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4370), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4236), 38, + ACTIONS(4368), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -414001,130 +412930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [206974] = 5, + [205767] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8097), 1, - anon_sym_QMARK2, - STATE(4350), 1, + STATE(4327), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(1427), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 36, - anon_sym_EQ, + ACTIONS(1425), 38, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [207027] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4351), 1, - sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(809), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [207078] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(8101), 1, - anon_sym_LF, - STATE(4280), 1, - aux_sym_pipe_element_repeat1, - STATE(4352), 1, - sym_comment, - ACTIONS(8099), 37, - sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414144,85 +412968,42 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [207133] = 6, - ACTIONS(105), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [205818] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8105), 1, + ACTIONS(7894), 1, aux_sym__immediate_decimal_token2, - STATE(4353), 1, + STATE(4328), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 36, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 16, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_filesize_unit, sym_duration_unit, - [207188] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4270), 1, - sym_path, - STATE(4354), 1, - sym_comment, - STATE(4520), 1, - sym_cell_path, - ACTIONS(997), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(999), 25, + aux_sym_unquoted_token6, + ACTIONS(817), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -414244,43 +413025,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [207245] = 13, + [205871] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4355), 1, + STATE(4329), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5901), 1, - sym__immediate_decimal, - ACTIONS(2177), 2, + ACTIONS(4374), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5899), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 28, + ACTIONS(4372), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414300,34 +413063,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [207314] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [205922] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR, - ACTIONS(7796), 1, + ACTIONS(7737), 1, anon_sym_LPAREN, - ACTIONS(7800), 1, + ACTIONS(7741), 1, anon_sym_DOT2, - ACTIONS(7804), 1, + ACTIONS(7745), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, + ACTIONS(7747), 1, anon_sym_DASH2, - ACTIONS(7808), 1, + ACTIONS(7749), 1, anon_sym_PLUS2, - STATE(4356), 1, + STATE(4330), 1, sym_comment, - STATE(5114), 1, + STATE(4970), 1, sym__var, - STATE(5905), 1, + STATE(6030), 1, sym__immediate_decimal, - ACTIONS(2173), 2, + ACTIONS(2108), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5902), 2, + STATE(5954), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 28, + ACTIONS(2106), 28, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -414356,139 +413128,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [207383] = 4, - ACTIONS(3), 1, + [205991] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4357), 1, + STATE(4331), 1, sym_comment, - ACTIONS(815), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(817), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(4257), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4255), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [207434] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8107), 1, - anon_sym_DOT2, - ACTIONS(8110), 1, - aux_sym__immediate_decimal_token2, - STATE(4358), 1, - sym_comment, - ACTIONS(835), 15, - sym_identifier, - anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [207489] = 13, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [206042] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4359), 1, + STATE(4332), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5909), 1, - sym__immediate_decimal, - ACTIONS(2149), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5906), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 28, + ACTIONS(909), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414508,34 +413213,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [207558] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [206093] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR, - ACTIONS(7796), 1, + ACTIONS(7737), 1, anon_sym_LPAREN, - ACTIONS(7800), 1, + ACTIONS(7741), 1, anon_sym_DOT2, - ACTIONS(7804), 1, + ACTIONS(7745), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, + ACTIONS(7747), 1, anon_sym_DASH2, - ACTIONS(7808), 1, + ACTIONS(7749), 1, anon_sym_PLUS2, - STATE(4360), 1, + STATE(4333), 1, sym_comment, - STATE(5114), 1, + STATE(4970), 1, sym__var, - STATE(5911), 1, + STATE(5872), 1, sym__immediate_decimal, - ACTIONS(2128), 2, + ACTIONS(2112), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5910), 2, + STATE(6002), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2126), 28, + ACTIONS(2110), 28, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE, @@ -414564,111 +413278,75 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [207627] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4361), 1, - sym_comment, - ACTIONS(8112), 40, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_COMMA, - 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_AT, - anon_sym_LBRACE, - [207676] = 7, + [206162] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(7936), 1, + anon_sym_LT, + ACTIONS(7938), 1, anon_sym_DOT2, - STATE(4270), 1, - sym_path, - STATE(4362), 1, + ACTIONS(7940), 1, + anon_sym_EQ2, + ACTIONS(7942), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7944), 1, + anon_sym_DASH2, + ACTIONS(7946), 1, + anon_sym_PLUS2, + ACTIONS(7948), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7950), 1, + aux_sym__unquoted_in_list_token7, + STATE(4334), 1, sym_comment, - STATE(4667), 1, - sym_cell_path, - ACTIONS(967), 12, - sym_identifier, - anon_sym_GT, + STATE(6177), 1, + sym__var, + STATE(6616), 1, + sym__immediate_decimal, + STATE(6615), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(7801), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(969), 25, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(7821), 18, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [207733] = 4, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206239] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4363), 1, + STATE(4335), 1, sym_comment, - ACTIONS(4412), 2, + ACTIONS(4291), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4410), 38, + ACTIONS(4289), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -414707,25 +413385,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [207784] = 4, + [206290] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(7942), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7944), 1, + anon_sym_DASH2, + ACTIONS(7946), 1, + anon_sym_PLUS2, + ACTIONS(8074), 1, + anon_sym_LT, + ACTIONS(8076), 1, + anon_sym_DOT2, + ACTIONS(8078), 1, + anon_sym_EQ2, + ACTIONS(8080), 1, + aux_sym_unquoted_token4, + ACTIONS(8082), 1, + aux_sym_unquoted_token6, + STATE(4336), 1, + sym_comment, + STATE(6177), 1, + sym__var, + STATE(6616), 1, + sym__immediate_decimal, + STATE(6615), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(827), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(829), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206367] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4364), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4337), 1, sym_comment, - ACTIONS(4472), 2, + STATE(4970), 1, + sym__var, + STATE(6023), 1, + sym__immediate_decimal, + ACTIONS(2116), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4470), 38, + STATE(5953), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414745,24 +413501,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [207835] = 4, + [206436] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4365), 1, + STATE(4338), 1, sym_comment, - ACTIONS(1284), 2, + ACTIONS(4265), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1282), 38, + ACTIONS(4263), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -414801,25 +413548,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [207886] = 4, + [206487] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4366), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4339), 1, sym_comment, - ACTIONS(4107), 2, + STATE(4970), 1, + sym__var, + STATE(5984), 1, + sym__immediate_decimal, + ACTIONS(2120), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4105), 38, + STATE(5840), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414839,24 +413604,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [207937] = 4, + [206556] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4367), 1, + STATE(4340), 1, sym_comment, - ACTIONS(4116), 2, + ACTIONS(3931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4114), 38, + ACTIONS(3929), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -414895,25 +413651,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [207988] = 4, + [206607] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4368), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4341), 1, sym_comment, - ACTIONS(1319), 2, + STATE(4970), 1, + sym__var, + STATE(5847), 1, + sym__immediate_decimal, + ACTIONS(2124), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1317), 38, + STATE(5963), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414933,34 +413707,43 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [208039] = 4, + [206676] = 13, ACTIONS(105), 1, anon_sym_POUND, - STATE(4369), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4342), 1, sym_comment, - ACTIONS(4476), 2, + STATE(4970), 1, + sym__var, + STATE(6047), 1, + sym__immediate_decimal, + ACTIONS(2128), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4474), 38, + STATE(5944), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 28, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -414980,24 +413763,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - [208090] = 4, + [206745] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4370), 1, + STATE(4343), 1, sym_comment, - ACTIONS(1104), 2, + ACTIONS(1355), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1102), 38, + ACTIONS(1353), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415036,109 +413810,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208141] = 4, - ACTIONS(3), 1, + [206796] = 13, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4371), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4344), 1, sym_comment, - ACTIONS(844), 16, - sym_identifier, - anon_sym_GT, + STATE(4970), 1, + sym__var, + STATE(5955), 1, + sym__immediate_decimal, + ACTIONS(2132), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5825), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [208192] = 4, - ACTIONS(3), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [206865] = 13, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4372), 1, + ACTIONS(3511), 1, + anon_sym_DOLLAR, + ACTIONS(7737), 1, + anon_sym_LPAREN, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(7745), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7747), 1, + anon_sym_DASH2, + ACTIONS(7749), 1, + anon_sym_PLUS2, + STATE(4345), 1, sym_comment, - ACTIONS(889), 16, - sym_identifier, - anon_sym_GT, + STATE(4970), 1, + sym__var, + STATE(5918), 1, + sym__immediate_decimal, + ACTIONS(2136), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(5915), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 28, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [208243] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [206934] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4373), 1, + STATE(4346), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(3891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 38, + ACTIONS(3887), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415177,15 +413969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208294] = 4, + [206985] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4374), 1, + STATE(4347), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(4378), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 38, + ACTIONS(4376), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415224,65 +414016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208345] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DOT2, - STATE(4242), 1, - aux_sym_cell_path_repeat1, - STATE(4375), 1, - sym_comment, - STATE(4549), 1, - sym_path, - ACTIONS(975), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(977), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [208402] = 4, + [207036] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4376), 1, + STATE(4348), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1280), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 38, + ACTIONS(1278), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415321,15 +414063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208453] = 4, + [207087] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4377), 1, + STATE(4349), 1, sym_comment, - ACTIONS(4120), 2, + ACTIONS(4217), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4118), 38, + ACTIONS(4215), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415368,17 +414110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208504] = 4, + [207138] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4378), 1, + ACTIONS(8084), 1, + anon_sym_DOT2, + STATE(4350), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -415389,12 +414132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 24, + ACTIONS(879), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -415415,43 +414158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [208555] = 13, + [207191] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4379), 1, + STATE(4351), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5954), 1, - sym__immediate_decimal, - ACTIONS(2120), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5953), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2118), 28, + ACTIONS(929), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415471,99 +414196,84 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [208624] = 13, - ACTIONS(105), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207242] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, + ACTIONS(8086), 1, anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4380), 1, + STATE(4246), 1, + sym_path, + STATE(4352), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5956), 1, - sym__immediate_decimal, - ACTIONS(2112), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5955), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2110), 28, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, + STATE(4555), 1, + sym_cell_path, + ACTIONS(966), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [208693] = 13, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(968), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [207299] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4381), 1, - sym_comment, - STATE(5114), 1, - sym__var, - STATE(5958), 1, - sym__immediate_decimal, - ACTIONS(2108), 2, - ts_builtin_sym_end, + ACTIONS(8091), 1, anon_sym_LF, - STATE(5957), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2106), 28, + STATE(4353), 1, + sym_comment, + ACTIONS(8089), 39, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415583,43 +414293,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [208762] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207350] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4382), 1, + STATE(4354), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5960), 1, - sym__immediate_decimal, - ACTIONS(2097), 2, + ACTIONS(4313), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5959), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 28, + ACTIONS(4311), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415639,15 +414340,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [208831] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207401] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4383), 1, + STATE(4355), 1, sym_comment, - ACTIONS(4124), 2, + ACTIONS(1084), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4122), 38, + ACTIONS(1082), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -415686,43 +414396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [208882] = 13, + [207452] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4384), 1, + STATE(4356), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5962), 1, - sym__immediate_decimal, - ACTIONS(2093), 2, + ACTIONS(4233), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5961), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 28, + ACTIONS(4231), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415742,43 +414434,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [208951] = 13, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207503] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4385), 1, + STATE(4357), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5964), 1, - sym__immediate_decimal, - ACTIONS(2124), 2, + ACTIONS(4344), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5963), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 28, + ACTIONS(4342), 38, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415798,19 +414481,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [209020] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207554] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8114), 1, - aux_sym__immediate_decimal_token2, - STATE(4386), 1, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4358), 1, sym_comment, - ACTIONS(844), 16, + STATE(4388), 1, + sym_path, + STATE(4704), 1, + sym_cell_path, + ACTIONS(925), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -415819,12 +414514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 23, + ACTIONS(927), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -415846,99 +414540,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209073] = 13, + [207611] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, - anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4387), 1, + STATE(4359), 1, sym_comment, - STATE(5114), 1, - sym__var, - STATE(5969), 1, - sym__immediate_decimal, - ACTIONS(2132), 2, + ACTIONS(4261), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5965), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2130), 28, + ACTIONS(4259), 38, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [209142] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_DOLLAR, - ACTIONS(7796), 1, anon_sym_LPAREN, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(7804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7806), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_PLUS2, - STATE(4388), 1, - sym_comment, - STATE(5114), 1, - sym__var, - STATE(5971), 1, - sym__immediate_decimal, - ACTIONS(2089), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(5970), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 28, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -415958,18 +414578,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [209211] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207662] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - anon_sym_DOT2, - STATE(4389), 1, + ACTIONS(7898), 1, + aux_sym__immediate_decimal_token2, + STATE(4360), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -415980,11 +414610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(863), 25, + aux_sym_unquoted_token6, + ACTIONS(809), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -416006,17 +414635,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209264] = 4, + [207715] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4390), 1, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4361), 1, sym_comment, - ACTIONS(807), 16, + STATE(4388), 1, + sym_path, + STATE(4708), 1, + sym_cell_path, + ACTIONS(959), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -416025,14 +414659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 24, + ACTIONS(961), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -416053,15 +414685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209315] = 4, + [207772] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4391), 1, + STATE(4362), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(1284), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2996), 38, + ACTIONS(1282), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -416100,19 +414732,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [209366] = 5, + [207823] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4363), 1, + sym_comment, + ACTIONS(7991), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7989), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [207874] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8036), 1, - aux_sym__immediate_decimal_token2, - STATE(4392), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token6, + STATE(4364), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(7902), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(8093), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -416121,10 +414805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 22, + ACTIONS(829), 23, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -416147,38 +414829,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209418] = 6, - ACTIONS(105), 1, + [207931] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8118), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8120), 1, - aux_sym__immediate_decimal_token2, - STATE(4393), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(8013), 1, anon_sym_DOT2, - ACTIONS(815), 34, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(4365), 1, + sym_comment, + STATE(4388), 1, + sym_path, + STATE(4710), 1, + sym_cell_path, + ACTIONS(909), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(911), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -416189,38 +414879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [209472] = 6, + [207988] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8122), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token2, - STATE(4394), 1, + STATE(4366), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(1347), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(1345), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -416231,8 +414908,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -416242,65 +414917,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [209526] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8036), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8126), 1, - anon_sym_DOT2, - STATE(4395), 1, - sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [209580] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208039] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8129), 1, + ACTIONS(8013), 1, anon_sym_DOT2, - ACTIONS(8132), 1, - aux_sym__immediate_decimal_token2, - STATE(4396), 1, + STATE(4367), 1, sym_comment, - ACTIONS(835), 15, + STATE(4388), 1, + sym_path, + STATE(4634), 1, + sym_cell_path, + ACTIONS(929), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416313,11 +414950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 22, + ACTIONS(931), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -416339,79 +414976,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209634] = 5, + [208096] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8017), 1, - aux_sym__immediate_decimal_token2, - STATE(4397), 1, + STATE(4368), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(1276), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 36, + ACTIONS(1274), 38, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [209686] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208147] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8136), 1, - anon_sym_LF, - STATE(4398), 1, + STATE(4369), 1, sym_comment, - ACTIONS(8134), 38, - sym_cmd_identifier, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 38, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -416431,65 +415061,70 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [209736] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208198] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(8140), 1, - anon_sym_DOT2, - ACTIONS(8142), 1, - aux_sym_unquoted_token4, - ACTIONS(8144), 1, - aux_sym_unquoted_token6, - STATE(4399), 1, + STATE(4370), 1, sym_comment, - ACTIONS(8138), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 33, + ACTIONS(1343), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1341), 38, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [209794] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8146), 1, + ACTIONS(8095), 1, aux_sym__immediate_decimal_token2, - STATE(4400), 1, + STATE(4371), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(855), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416506,7 +415141,8 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 22, + ACTIONS(857), 23, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -416529,64 +415165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209846] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4401), 1, - sym_comment, - ACTIONS(1261), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [209896] = 7, + [208302] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8148), 1, + ACTIONS(8097), 1, anon_sym_DOT2, - ACTIONS(8150), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8152), 1, - aux_sym_unquoted_token2, - STATE(4402), 1, + STATE(4246), 1, + sym_path, + STATE(4372), 1, sym_comment, - ACTIONS(1005), 12, + STATE(4547), 1, + sym_cell_path, + ACTIONS(933), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416599,11 +415189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1007), 24, + ACTIONS(935), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -416624,17 +415215,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [209952] = 4, + [208359] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + ACTIONS(8100), 1, + anon_sym_DOT2, + ACTIONS(8103), 1, + aux_sym__immediate_decimal_token2, + STATE(4373), 1, sym_comment, - ACTIONS(1098), 13, + ACTIONS(846), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -416643,16 +415237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1100), 26, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -416670,14 +415264,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210002] = 5, + [208414] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4374), 1, + sym_comment, + ACTIONS(4281), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4279), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8154), 1, - anon_sym_QMARK2, - STATE(4404), 1, + STATE(4308), 1, + aux_sym_cell_path_repeat1, + STATE(4375), 1, sym_comment, - ACTIONS(1054), 13, + STATE(4473), 1, + sym_path, + ACTIONS(973), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416691,7 +415334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1056), 25, + ACTIONS(975), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -416717,69 +415360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210054] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - ACTIONS(8156), 1, - anon_sym_GT, - STATE(4405), 1, - sym_comment, - STATE(10430), 1, - sym__all_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(8580), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [210112] = 5, + [208520] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8154), 1, - anon_sym_QMARK2, - STATE(4406), 1, + ACTIONS(7894), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8105), 1, + anon_sym_DOT2, + STATE(4376), 1, sym_comment, - ACTIONS(1054), 13, + ACTIONS(815), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -416788,11 +415382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1056), 25, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -416814,14 +415409,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210164] = 5, + [208575] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4377), 1, + sym_comment, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208626] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4378), 1, + sym_comment, + ACTIONS(3806), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3804), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208677] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4379), 1, + sym_comment, + ACTIONS(4034), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4032), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208728] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8050), 1, + ACTIONS(7904), 1, aux_sym_unquoted_token6, - STATE(4407), 1, + STATE(4380), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(7902), 2, + anon_sym_DOT2, + aux_sym_unquoted_token4, + ACTIONS(8108), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -416834,10 +415576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 24, - anon_sym_COLON, + ACTIONS(829), 23, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -416861,124 +415600,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210216] = 6, + [208785] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8160), 1, - aux_sym__immediate_decimal_token2, - STATE(4408), 1, + STATE(4381), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(4317), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(4315), 38, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [210270] = 6, - ACTIONS(3), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208836] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8162), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token2, - STATE(4409), 1, + STATE(4382), 1, sym_comment, - ACTIONS(817), 14, + ACTIONS(1219), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1217), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(815), 23, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [210324] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208887] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4410), 1, + ACTIONS(8110), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8112), 1, + aux_sym__immediate_decimal_token2, + STATE(4383), 1, sym_comment, - ACTIONS(1191), 3, - ts_builtin_sym_end, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1189), 36, - anon_sym_EQ, + ACTIONS(815), 36, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -417001,42 +415739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, - anon_sym_xor, - anon_sym_or, - [210374] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1823), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8168), 1, - anon_sym_LT, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8172), 1, - anon_sym_EQ2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4411), 1, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [208942] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4384), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6335), 1, - sym__immediate_decimal, - STATE(6334), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1821), 26, + ACTIONS(4332), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4330), 38, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, @@ -417059,19 +415779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [210446] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [208993] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8180), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(8116), 1, anon_sym_LF, - STATE(4412), 1, + STATE(4224), 1, + aux_sym_pipe_element_repeat1, + STATE(4385), 1, sym_comment, - ACTIONS(8056), 38, + ACTIONS(8114), 37, sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_break, @@ -417106,70 +415839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [210496] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - ACTIONS(8182), 1, - anon_sym_GT, - STATE(4413), 1, - sym_comment, - STATE(10802), 1, - sym__all_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(8580), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [210554] = 6, + [209048] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - anon_sym_DOT2, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4414), 1, + STATE(4386), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -417180,7 +415860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(863), 23, + aux_sym_unquoted_token6, + ACTIONS(817), 24, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -417204,38 +415886,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210608] = 5, + [209099] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token2, - STATE(4415), 1, + STATE(4387), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(4336), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 36, + ACTIONS(4334), 38, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [209150] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4320), 1, + aux_sym_cell_path_repeat1, + STATE(4388), 1, + sym_comment, + STATE(4473), 1, + sym_path, + ACTIONS(903), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(905), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -417246,37 +415983,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [209207] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4389), 1, + sym_comment, + ACTIONS(1331), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1329), 38, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [209258] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8013), 1, + anon_sym_DOT2, + STATE(4388), 1, + sym_path, + STATE(4390), 1, + sym_comment, + STATE(4547), 1, + sym_cell_path, + ACTIONS(933), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [210660] = 6, + ACTIONS(935), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [209315] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8186), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8188), 1, - aux_sym__immediate_decimal_token2, - STATE(4416), 1, + STATE(4391), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(4366), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 35, + ACTIONS(4364), 38, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -417287,8 +416109,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -417298,18 +416118,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [210714] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + [209366] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8190), 1, + ACTIONS(8072), 1, aux_sym__immediate_decimal_token2, - STATE(4417), 1, + STATE(4392), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 36, + ACTIONS(807), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -417346,17 +416174,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [210766] = 4, + [209418] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4418), 1, + ACTIONS(8118), 1, + sym_filesize_unit, + ACTIONS(8120), 1, + sym_duration_unit, + STATE(4393), 1, sym_comment, - ACTIONS(889), 16, + ACTIONS(1054), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -417365,12 +416196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 23, + ACTIONS(1056), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -417392,45 +416222,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210816] = 6, - ACTIONS(3), 1, + [209472] = 23, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8192), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8194), 1, - aux_sym__immediate_decimal_token2, - STATE(4419), 1, - sym_comment, - ACTIONS(809), 14, - anon_sym_DASH_DASH, + ACTIONS(8124), 1, + anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, + ACTIONS(8136), 1, + anon_sym_QMARK2, + ACTIONS(8144), 1, + anon_sym_bit_DASHand, + ACTIONS(8146), 1, + anon_sym_bit_DASHxor, + ACTIONS(8148), 1, + anon_sym_bit_DASHor, + ACTIONS(8150), 1, + anon_sym_and, + ACTIONS(8152), 1, + anon_sym_xor, + ACTIONS(8154), 1, + anon_sym_or, + ACTIONS(8156), 1, + sym_filesize_unit, + ACTIONS(8158), 1, + sym_duration_unit, + STATE(4394), 1, + sym_comment, + STATE(4780), 1, + sym_path, + STATE(5493), 1, + sym_cell_path, + ACTIONS(8128), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8138), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(8140), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8142), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8122), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(8130), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8134), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(8126), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [209560] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(7805), 1, + anon_sym_LPAREN, + ACTIONS(7817), 1, + anon_sym_DASH2, + ACTIONS(7819), 1, + anon_sym_PLUS2, + ACTIONS(8160), 1, + anon_sym_LT, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(8164), 1, + anon_sym_EQ2, + ACTIONS(8166), 1, + aux_sym__immediate_decimal_token1, + STATE(4395), 1, + sym_comment, + STATE(6043), 1, + sym__var, + STATE(6440), 1, + sym__immediate_decimal, + STATE(6439), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1971), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(807), 23, - sym_cmd_identifier, + aux_sym__unquoted_in_list_token1, + [209632] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8168), 1, + aux_sym__immediate_decimal_token2, + STATE(4396), 1, + sym_comment, + ACTIONS(857), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -417440,16 +416391,63 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [210870] = 6, + [209684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8170), 1, + aux_sym__immediate_decimal_token2, + STATE(4397), 1, + sym_comment, + ACTIONS(855), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_DOT2, - ACTIONS(8050), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - STATE(4420), 1, + ACTIONS(857), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [209736] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8172), 1, + anon_sym_DOT2, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token2, + STATE(4398), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(846), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417464,8 +416462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(863), 23, - anon_sym_COLON, + aux_sym_unquoted_token6, + ACTIONS(848), 22, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -417488,17 +416486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210924] = 4, + [209790] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4421), 1, + ACTIONS(8031), 1, + anon_sym_DOT2, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4399), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -417509,11 +416510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 23, + ACTIONS(879), 23, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -417534,27 +416534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [210974] = 6, + [209844] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8196), 1, + ACTIONS(8177), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8198), 1, + ACTIONS(8179), 1, aux_sym__immediate_decimal_token2, - STATE(4422), 1, + STATE(4400), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(817), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 35, + ACTIONS(815), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -417582,28 +416581,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [211028] = 4, + aux_sym_unquoted_token6, + [209898] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4423), 1, - sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, + ACTIONS(848), 1, anon_sym_LF, + ACTIONS(8181), 1, anon_sym_DOT2, - ACTIONS(1228), 36, - anon_sym_EQ, + ACTIONS(8184), 1, + aux_sym__immediate_decimal_token2, + STATE(4401), 1, + sym_comment, + ACTIONS(846), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -417628,20 +416627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [211078] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [209952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token6, - STATE(4424), 1, - sym_comment, - ACTIONS(7898), 2, + ACTIONS(8025), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8186), 1, anon_sym_DOT2, - aux_sym_unquoted_token4, - ACTIONS(8200), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 12, + STATE(4402), 1, + sym_comment, + ACTIONS(815), 15, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417654,7 +416652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(825), 22, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 22, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -417677,92 +416678,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211134] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - ACTIONS(8202), 1, - anon_sym_GT, - STATE(4425), 1, - sym_comment, - STATE(10456), 1, - sym__all_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(8580), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [211192] = 4, - ACTIONS(3), 1, + [210006] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4426), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(8191), 1, + anon_sym_DOT2, + ACTIONS(8193), 1, + aux_sym_unquoted_token4, + ACTIONS(8195), 1, + aux_sym_unquoted_token6, + STATE(4403), 1, sym_comment, - ACTIONS(1113), 13, - sym_identifier, + ACTIONS(8189), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1115), 26, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -417773,76 +416725,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211242] = 17, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [210064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8204), 1, - anon_sym_LPAREN, - ACTIONS(8206), 1, - anon_sym_LT, - ACTIONS(8208), 1, + ACTIONS(8031), 1, anon_sym_DOT2, - ACTIONS(8210), 1, - anon_sym_EQ2, - ACTIONS(8212), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8214), 1, - anon_sym_DASH2, - ACTIONS(8216), 1, - anon_sym_PLUS2, - ACTIONS(8218), 1, - aux_sym_unquoted_token4, - ACTIONS(8220), 1, + ACTIONS(8033), 1, aux_sym_unquoted_token6, - STATE(4427), 1, - sym_comment, - STATE(6463), 1, - sym__var, - STATE(6764), 1, - sym__immediate_decimal, - STATE(6759), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(823), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(825), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [211318] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4428), 1, + STATE(4404), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -417853,11 +416752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, - anon_sym_COLON, + ACTIONS(879), 23, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -417878,16 +416776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211368] = 6, + [210118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - sym_filesize_unit, - ACTIONS(8224), 1, - sym_duration_unit, - STATE(4429), 1, + STATE(4405), 1, sym_comment, - ACTIONS(1102), 12, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -417900,7 +416794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1104), 25, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -417926,17 +416822,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211422] = 4, + [210168] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(8197), 1, + anon_sym_DOT2, + ACTIONS(8200), 1, + aux_sym__immediate_decimal_token2, + STATE(4406), 1, + sym_comment, + ACTIONS(846), 36, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [210222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4430), 1, + STATE(4407), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(1177), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -417947,11 +416890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 23, + ACTIONS(1179), 25, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -417972,27 +416916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211472] = 5, + [210272] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8105), 1, - aux_sym__immediate_decimal_token2, - STATE(4431), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(817), 1, anon_sym_LF, + ACTIONS(8059), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8202), 1, anon_sym_DOT2, + STATE(4408), 1, + sym_comment, ACTIONS(815), 36, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -418019,12 +416963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [211524] = 4, + aux_sym_unquoted_token6, + [210326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4432), 1, + STATE(4409), 1, sym_comment, - ACTIONS(844), 16, + ACTIONS(1082), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -418038,16 +416983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 23, + ACTIONS(1084), 26, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -418065,39 +417010,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211574] = 4, - ACTIONS(105), 1, + [210376] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + STATE(4410), 1, sym_comment, - ACTIONS(1224), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 36, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(815), 16, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -418108,20 +417056,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [210426] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4411), 1, + sym_comment, + ACTIONS(877), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [211624] = 5, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [210478] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8054), 1, + ACTIONS(8205), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8207), 1, aux_sym__immediate_decimal_token2, - STATE(4434), 1, + STATE(4412), 1, sym_comment, ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 36, + ACTIONS(815), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -418157,74 +417151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [211676] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1831), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7850), 1, - anon_sym_DASH2, - ACTIONS(7852), 1, - anon_sym_PLUS2, - ACTIONS(8226), 1, - anon_sym_LT, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(8230), 1, - anon_sym_EQ2, - STATE(4435), 1, - sym_comment, - STATE(5879), 1, - sym__var, - STATE(6328), 1, - sym__immediate_decimal, - STATE(6323), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [211748] = 4, + [210532] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4436), 1, + ACTIONS(8209), 1, + anon_sym_QMARK2, + STATE(4413), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(1070), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -418233,9 +417172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 25, + ACTIONS(1072), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -418261,26 +417198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [211798] = 6, + [210584] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8232), 1, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8234), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token2, - STATE(4437), 1, + STATE(4414), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 34, + ACTIONS(815), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -418309,20 +417246,20 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [211852] = 6, + [210638] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(8236), 1, - anon_sym_DOT2, - ACTIONS(8239), 1, + ACTIONS(8215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8217), 1, aux_sym__immediate_decimal_token2, - STATE(4438), 1, + STATE(4415), 1, sym_comment, - ACTIONS(835), 36, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 35, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -418330,7 +417267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -418357,96 +417293,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [211906] = 15, - ACTIONS(105), 1, + aux_sym_unquoted_token6, + [210692] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1815), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token6, + STATE(4416), 1, + sym_comment, + ACTIONS(7902), 2, anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8241), 1, + aux_sym_unquoted_token4, + ACTIONS(8219), 2, anon_sym_LT, - ACTIONS(8243), 1, anon_sym_EQ2, - STATE(4439), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6333), 1, - sym__immediate_decimal, - STATE(6331), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1813), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [211978] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8247), 1, - aux_sym__immediate_decimal_token2, - STATE(4440), 1, - sym_comment, - ACTIONS(809), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(827), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(829), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -418457,43 +417343,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [212032] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8251), 1, - aux_sym__immediate_decimal_token2, - STATE(4441), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + [210748] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8209), 1, + anon_sym_QMARK2, + STATE(4417), 1, + sym_comment, + ACTIONS(1070), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1072), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -418504,75 +417390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [212086] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1807), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8253), 1, - anon_sym_LT, - ACTIONS(8255), 1, - anon_sym_EQ2, - STATE(4442), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6329), 1, - sym__immediate_decimal, - STATE(6327), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [212158] = 4, + [210800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4418), 1, sym_comment, - ACTIONS(889), 16, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -418589,10 +417412,10 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(891), 23, + ACTIONS(817), 23, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -418613,14 +417436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212208] = 5, + [210850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8075), 1, - aux_sym__immediate_decimal_token2, - STATE(4444), 1, + STATE(4419), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -418637,9 +417458,10 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 22, + ACTIONS(809), 23, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -418660,41 +417482,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212260] = 6, + [210900] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, - STATE(4445), 1, - sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, + ACTIONS(8221), 1, anon_sym_LF, - ACTIONS(8257), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PLUS_PLUS_EQ, - ACTIONS(1102), 30, - anon_sym_SEMI, + STATE(4420), 1, + sym_comment, + ACTIONS(7999), 38, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [210950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4421), 1, + sym_comment, + ACTIONS(855), 16, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -418705,86 +417574,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [212314] = 15, - ACTIONS(105), 1, + [211000] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1789), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(8223), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8225), 1, + anon_sym_LT, + ACTIONS(8227), 1, anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8229), 1, + anon_sym_EQ2, + ACTIONS(8231), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(8233), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(8235), 1, anon_sym_PLUS2, - ACTIONS(8261), 1, - anon_sym_LT, - ACTIONS(8263), 1, - anon_sym_EQ2, - STATE(4446), 1, + ACTIONS(8237), 1, + aux_sym_unquoted_token4, + ACTIONS(8239), 1, + aux_sym_unquoted_token6, + STATE(4422), 1, sym_comment, - STATE(5896), 1, + STATE(6324), 1, sym__var, - STATE(6325), 1, + STATE(6828), 1, sym__immediate_decimal, - STATE(6322), 2, + STATE(6826), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, + ACTIONS(827), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(829), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [212386] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [211076] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_LF, - ACTIONS(8017), 1, + ACTIONS(8241), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8243), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8265), 1, - anon_sym_DOT2, - STATE(4447), 1, + STATE(4423), 1, sym_comment, - ACTIONS(807), 36, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -418813,16 +417681,67 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [212440] = 4, + [211130] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4448), 1, + ACTIONS(7888), 1, + anon_sym_list, + ACTIONS(8245), 1, + anon_sym_GT, + STATE(4424), 1, + sym_comment, + STATE(10661), 1, + sym__all_type, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(8389), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [211188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4425), 1, sym_comment, - ACTIONS(1065), 14, + ACTIONS(894), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -418833,12 +417752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(1067), 25, - anon_sym_COLON, + aux_sym_unquoted_token6, + ACTIONS(896), 23, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -418859,17 +417777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212490] = 4, + [211238] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4449), 1, + ACTIONS(8247), 1, + anon_sym_DOT2, + ACTIONS(8249), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8251), 1, + aux_sym_unquoted_token2, + STATE(4426), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(949), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -418878,13 +417801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 23, + ACTIONS(951), 24, anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -418905,102 +417826,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [212540] = 23, - ACTIONS(105), 1, + [211294] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8270), 1, - anon_sym_LF, - ACTIONS(8278), 1, + STATE(4427), 1, + sym_comment, + ACTIONS(807), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_DOT2, - ACTIONS(8282), 1, - anon_sym_QMARK2, - ACTIONS(8290), 1, - anon_sym_bit_DASHand, - ACTIONS(8292), 1, - anon_sym_bit_DASHxor, - ACTIONS(8294), 1, - anon_sym_bit_DASHor, - ACTIONS(8296), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(8298), 1, anon_sym_xor, - ACTIONS(8300), 1, anon_sym_or, - ACTIONS(8302), 1, sym_filesize_unit, - ACTIONS(8304), 1, sym_duration_unit, - STATE(4450), 1, - sym_comment, - STATE(4917), 1, - sym_path, - STATE(5418), 1, - sym_cell_path, - ACTIONS(8274), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8284), 2, + aux_sym_unquoted_token6, + ACTIONS(809), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8286), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8288), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8268), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(8276), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(8280), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(8272), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [212628] = 15, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [211344] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1983), 1, sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(2868), 1, anon_sym_DOLLAR, - ACTIONS(7838), 1, + ACTIONS(8253), 1, anon_sym_LPAREN, - ACTIONS(7850), 1, + ACTIONS(8255), 1, + anon_sym_LT, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8259), 1, + anon_sym_EQ2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, anon_sym_DASH2, - ACTIONS(7852), 1, + ACTIONS(8265), 1, anon_sym_PLUS2, - ACTIONS(8228), 1, + STATE(4428), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6387), 1, + sym__immediate_decimal, + STATE(6386), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1981), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [211416] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(8306), 1, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + ACTIONS(8267), 1, anon_sym_LT, - ACTIONS(8308), 1, + ACTIONS(8269), 1, anon_sym_EQ2, - ACTIONS(8310), 1, + STATE(4429), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6390), 1, + sym__immediate_decimal, + STATE(6389), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [211488] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2009), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, aux_sym__immediate_decimal_token1, - STATE(4451), 1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + ACTIONS(8271), 1, + anon_sym_LT, + ACTIONS(8273), 1, + anon_sym_EQ2, + STATE(4430), 1, sym_comment, - STATE(5879), 1, + STATE(5928), 1, sym__var, - STATE(6346), 1, + STATE(6394), 1, sym__immediate_decimal, - STATE(6332), 2, + STATE(6393), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 26, + ACTIONS(2007), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -419027,87 +418043,99 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [212700] = 6, + [211560] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(8312), 1, + ACTIONS(2017), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token2, - STATE(4452), 1, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + ACTIONS(8275), 1, + anon_sym_LT, + ACTIONS(8277), 1, + anon_sym_EQ2, + STATE(4431), 1, sym_comment, - ACTIONS(835), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + STATE(5928), 1, + sym__var, + STATE(6396), 1, + sym__immediate_decimal, + STATE(6395), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2015), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [211632] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4432), 1, + sym_comment, + ACTIONS(855), 16, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [212754] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_LF, - ACTIONS(8095), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8317), 1, - anon_sym_DOT2, - STATE(4453), 1, - sym_comment, - ACTIONS(807), 36, - anon_sym_SEMI, + ACTIONS(857), 23, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -419118,22 +418146,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [212808] = 5, + [211682] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + ACTIONS(8279), 1, + anon_sym_GT, + STATE(4433), 1, + sym_comment, + STATE(11157), 1, + sym__all_type, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(8389), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [211740] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8095), 1, + ACTIONS(8281), 1, aux_sym__immediate_decimal_token2, - STATE(4454), 1, + STATE(4434), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 36, + ACTIONS(855), 36, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -419170,89 +418243,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [212860] = 4, + [211792] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4455), 1, + ACTIONS(8283), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8285), 1, + aux_sym__immediate_decimal_token2, + STATE(4435), 1, sym_comment, - ACTIONS(844), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(817), 14, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [212910] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8120), 1, - aux_sym__immediate_decimal_token2, - STATE(4456), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 34, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(815), 23, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -419262,60 +418291,12 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [212961] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4457), 1, - sym_comment, - STATE(4556), 1, - aux_sym_cell_path_repeat1, - STATE(4896), 1, - sym_path, - ACTIONS(903), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(905), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [213016] = 4, + [211846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4458), 1, + STATE(4436), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(894), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -419329,11 +418310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1254), 25, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 23, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -419355,22 +418337,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [213065] = 5, + [211896] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + ACTIONS(8287), 1, + anon_sym_GT, + STATE(4437), 1, + sym_comment, + STATE(10915), 1, + sym__all_type, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(8389), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [211954] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8322), 1, - aux_sym__immediate_decimal_token2, - STATE(4459), 1, + ACTIONS(8291), 1, + anon_sym_DOT2, + STATE(4438), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 34, + ACTIONS(8289), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + ACTIONS(1054), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -419398,29 +418435,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [212008] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1876), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(7805), 1, + anon_sym_LPAREN, + ACTIONS(7815), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7817), 1, + anon_sym_DASH2, + ACTIONS(7819), 1, + anon_sym_PLUS2, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(8293), 1, + anon_sym_LT, + ACTIONS(8295), 1, + anon_sym_EQ2, + STATE(4439), 1, + sym_comment, + STATE(6043), 1, + sym__var, + STATE(6438), 1, + sym__immediate_decimal, + STATE(6437), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1874), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [212080] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token2, + STATE(4440), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_filesize_unit, sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [213116] = 5, + [212134] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + STATE(4441), 1, + sym_comment, + ACTIONS(1215), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8324), 1, anon_sym_DOT2, - STATE(4460), 1, - sym_comment, - ACTIONS(861), 36, + ACTIONS(1213), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -419445,141 +418586,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [213167] = 6, + [212184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8326), 1, - anon_sym_DOT2, - STATE(4461), 1, + STATE(4442), 1, sym_comment, - ACTIONS(809), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(807), 23, - sym_cmd_identifier, + ACTIONS(1086), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [213220] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8333), 1, - anon_sym_LT, - ACTIONS(8335), 1, - anon_sym_DOT2, - ACTIONS(8337), 1, - anon_sym_EQ2, - ACTIONS(8339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8341), 1, - anon_sym_DASH2, - ACTIONS(8343), 1, - anon_sym_PLUS2, - STATE(4462), 1, - sym_comment, - STATE(6153), 1, - sym__var, - STATE(6545), 1, - sym__immediate_decimal, - STATE(6613), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1841), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213291] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4463), 1, - sym_comment, - ACTIONS(809), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 36, - anon_sym_SEMI, + ACTIONS(1088), 26, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -419590,48 +418632,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [213340] = 14, + [212234] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8345), 1, - aux_sym_unquoted_token5, - STATE(4464), 1, + ACTIONS(8303), 1, + aux_sym__immediate_decimal_token2, + STATE(4443), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6384), 1, - sym__immediate_decimal, - STATE(6379), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 26, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -419642,6 +418668,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -419649,42 +418677,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [213409] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [212288] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_DOT2, - STATE(4457), 1, - sym_path, - STATE(4465), 1, + ACTIONS(8059), 1, + aux_sym__immediate_decimal_token2, + STATE(4444), 1, sym_comment, - STATE(4749), 1, - sym_cell_path, - ACTIONS(997), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(999), 30, - anon_sym_COMMA, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -419698,24 +418724,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [213464] = 4, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [212340] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4466), 1, - sym_comment, - ACTIONS(891), 2, + ACTIONS(817), 1, anon_sym_LF, + ACTIONS(8112), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8305), 1, anon_sym_DOT2, - ACTIONS(889), 36, + STATE(4445), 1, + sym_comment, + ACTIONS(815), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -419742,44 +418775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [213513] = 6, - ACTIONS(3), 1, + [212394] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8048), 1, - anon_sym_DOT2, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4467), 1, + ACTIONS(8112), 1, + aux_sym__immediate_decimal_token2, + STATE(4446), 1, sym_comment, - ACTIONS(861), 14, - sym_identifier, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 36, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -419790,21 +418817,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [213566] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [212446] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8251), 1, + ACTIONS(8308), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8310), 1, aux_sym__immediate_decimal_token2, - STATE(4468), 1, + STATE(4447), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 35, + ACTIONS(807), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -419835,68 +418870,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [213617] = 14, - ACTIONS(105), 1, + [212500] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8312), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8345), 1, - aux_sym_unquoted_token5, - STATE(4469), 1, + ACTIONS(8314), 1, + aux_sym__immediate_decimal_token2, + STATE(4448), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6417), 1, - sym__immediate_decimal, - STATE(6401), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(809), 14, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [213686] = 4, + ACTIONS(807), 23, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [212554] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4470), 1, + ACTIONS(8025), 1, + aux_sym__immediate_decimal_token2, + STATE(4449), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -419910,11 +418939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1230), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -419936,29 +418965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [213735] = 6, + [212606] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8350), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8352), 1, - aux_sym__immediate_decimal_token2, - STATE(4471), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(8318), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, - anon_sym_SEMI, + STATE(4450), 1, + sym_comment, + ACTIONS(8316), 38, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -419971,8 +419001,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -419982,208 +419010,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [213788] = 6, + anon_sym_CARET, + [212656] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, + STATE(4451), 1, + sym_comment, + ACTIONS(1187), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8354), 1, anon_sym_DOT2, - STATE(4472), 1, - sym_comment, - ACTIONS(807), 35, + ACTIONS(1185), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [213841] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_PIPE, - STATE(4473), 1, - sym_comment, - ACTIONS(8359), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8357), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [213892] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8361), 1, anon_sym_PIPE, - STATE(4474), 1, - sym_comment, - ACTIONS(8365), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8363), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [213943] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8369), 1, - anon_sym_LT, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8373), 1, - anon_sym_EQ2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4475), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6870), 1, - sym__immediate_decimal, - STATE(6812), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1787), 9, + anon_sym_GT, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1789), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214014] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [212706] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4476), 1, + ACTIONS(8029), 1, + aux_sym__immediate_decimal_token2, + STATE(4452), 1, sym_comment, - ACTIONS(815), 16, + ACTIONS(807), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -420200,7 +419081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 22, + ACTIONS(809), 22, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -420223,25 +419104,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [214063] = 5, + [212758] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8381), 1, - aux_sym__immediate_decimal_token2, - STATE(4477), 1, + STATE(4453), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(1223), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 35, + ACTIONS(1221), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420266,76 +419150,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [214114] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8383), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8385), 1, - aux_sym__immediate_decimal_token2, - STATE(4478), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [214167] = 5, + [212808] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8247), 1, + ACTIONS(8055), 1, aux_sym__immediate_decimal_token2, - STATE(4479), 1, + STATE(4454), 1, sym_comment, ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(807), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420362,25 +419197,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [214218] = 5, + [212860] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token2, - STATE(4480), 1, + STATE(4455), 1, sym_comment, - ACTIONS(809), 3, + ACTIONS(1211), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 34, + ACTIONS(1209), 36, + anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PLUS_PLUS_EQ, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420405,30 +419243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [214269] = 6, + [212910] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8387), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8389), 1, - aux_sym__immediate_decimal_token2, - STATE(4481), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(817), 1, anon_sym_LF, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8320), 1, anon_sym_DOT2, - ACTIONS(815), 33, + STATE(4456), 1, + sym_comment, + ACTIONS(815), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420455,25 +419289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [214322] = 4, + aux_sym_unquoted_token6, + [212963] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4482), 1, - sym_comment, - ACTIONS(891), 2, + ACTIONS(817), 1, anon_sym_LF, + ACTIONS(8207), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8323), 1, anon_sym_DOT2, - ACTIONS(889), 36, + STATE(4457), 1, + sym_comment, + ACTIONS(815), 35, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420500,75 +419337,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [214371] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4483), 1, - sym_comment, - STATE(4543), 1, - sym_path, - STATE(5107), 1, - sym_cell_path, - ACTIONS(971), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(973), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [214426] = 6, + [213016] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8393), 1, - aux_sym__immediate_decimal_token2, - STATE(4484), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, + ACTIONS(8326), 1, anon_sym_DOT2, - ACTIONS(807), 33, + STATE(4458), 1, + sym_comment, + ACTIONS(877), 36, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420595,169 +419383,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [214479] = 4, - ACTIONS(3), 1, + [213067] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4485), 1, - sym_comment, - ACTIONS(807), 16, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(8328), 1, anon_sym_DOT2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [214528] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_PIPE, - STATE(4486), 1, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token2, + STATE(4459), 1, sym_comment, - ACTIONS(8397), 16, + ACTIONS(846), 35, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8395), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [214579] = 15, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [213120] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(2868), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, + ACTIONS(8253), 1, anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(8375), 1, + ACTIONS(8261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, + ACTIONS(8263), 1, anon_sym_DASH2, - ACTIONS(8379), 1, + ACTIONS(8265), 1, anon_sym_PLUS2, - ACTIONS(8399), 1, - anon_sym_LT, - ACTIONS(8401), 1, - anon_sym_EQ2, - STATE(4487), 1, + ACTIONS(8335), 1, + sym__entry_separator, + ACTIONS(8337), 1, + aux_sym__unquoted_in_list_token6, + STATE(4460), 1, sym_comment, - STATE(6075), 1, + STATE(5928), 1, sym__var, - STATE(6861), 1, + STATE(6330), 1, sym__immediate_decimal, - STATE(6866), 2, + STATE(6329), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1805), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1807), 17, + ACTIONS(8333), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [214650] = 6, + aux_sym__unquoted_in_list_token1, + [213189] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, + STATE(4461), 1, + sym_comment, + ACTIONS(857), 2, anon_sym_LF, - ACTIONS(8403), 1, anon_sym_DOT2, - ACTIONS(8406), 1, - aux_sym__immediate_decimal_token2, - STATE(4488), 1, - sym_comment, - ACTIONS(835), 35, + ACTIONS(855), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -420789,75 +419530,27 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [214703] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - STATE(4489), 1, - sym_comment, - STATE(8459), 1, - sym__all_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(8580), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [214758] = 6, + [213238] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(8408), 1, - anon_sym_DOT2, - ACTIONS(8411), 1, + ACTIONS(8339), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token2, - STATE(4490), 1, + STATE(4462), 1, sym_comment, - ACTIONS(835), 35, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -420884,99 +419577,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [214811] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8335), 1, - anon_sym_DOT2, - ACTIONS(8339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8341), 1, - anon_sym_DASH2, - ACTIONS(8343), 1, - anon_sym_PLUS2, - ACTIONS(8413), 1, - anon_sym_LT, - ACTIONS(8415), 1, - anon_sym_EQ2, - STATE(4491), 1, - sym_comment, - STATE(6153), 1, - sym__var, - STATE(6577), 1, - sym__immediate_decimal, - STATE(6574), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1831), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214882] = 5, - ACTIONS(3), 1, + [213291] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8194), 1, + ACTIONS(8243), 1, aux_sym__immediate_decimal_token2, - STATE(4492), 1, + STATE(4463), 1, sym_comment, - ACTIONS(809), 14, - anon_sym_DASH_DASH, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, + ACTIONS(807), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(807), 23, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [213342] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4464), 1, + sym_comment, + ACTIONS(1179), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1177), 36, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -420985,192 +419668,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [214933] = 15, + [213391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8419), 1, - anon_sym_LT, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8423), 1, - anon_sym_EQ2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - STATE(4493), 1, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4465), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6708), 1, - sym__immediate_decimal, - STATE(6847), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1787), 8, + ACTIONS(877), 14, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1789), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215004] = 23, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - ACTIONS(8441), 1, - anon_sym_QMARK2, - ACTIONS(8449), 1, - anon_sym_bit_DASHand, - ACTIONS(8451), 1, - anon_sym_bit_DASHxor, - ACTIONS(8453), 1, - anon_sym_bit_DASHor, - ACTIONS(8455), 1, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(8457), 1, anon_sym_xor, - ACTIONS(8459), 1, anon_sym_or, - ACTIONS(8461), 1, sym_filesize_unit, - ACTIONS(8463), 1, sym_duration_unit, - STATE(4494), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(6049), 1, - sym_cell_path, - ACTIONS(8268), 2, - anon_sym_SEMI, + ACTIONS(879), 23, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(8270), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8443), 2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8445), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8447), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8435), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(8439), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(8431), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [215091] = 15, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [213442] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(817), 1, + anon_sym_LF, + ACTIONS(8303), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8343), 1, anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - ACTIONS(8465), 1, - anon_sym_LT, - ACTIONS(8467), 1, - anon_sym_EQ2, - STATE(4495), 1, + STATE(4466), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6712), 1, - sym__immediate_decimal, - STATE(6710), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1807), 18, + ACTIONS(815), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [215162] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [213495] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4496), 1, + STATE(4467), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(879), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(861), 36, + ACTIONS(877), 36, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -421207,35 +419806,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [215211] = 15, + [213544] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8348), 1, + anon_sym_LT, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8352), 1, + anon_sym_EQ2, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - ACTIONS(8469), 1, - anon_sym_LT, - ACTIONS(8471), 1, - anon_sym_EQ2, - STATE(4497), 1, + STATE(4468), 1, sym_comment, - STATE(6206), 1, + STATE(6159), 1, sym__var, - STATE(6737), 1, + STATE(6774), 1, sym__immediate_decimal, - STATE(6714), 2, + STATE(6773), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 8, + ACTIONS(1981), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -421244,7 +419843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1815), 18, + ACTIONS(1983), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -421263,70 +419862,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [215282] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4498), 1, - sym_comment, - ACTIONS(861), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [215333] = 7, + [213615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4499), 1, + STATE(4469), 1, sym_comment, - STATE(4543), 1, + STATE(4508), 1, + aux_sym_cell_path_repeat1, + STATE(4821), 1, sym_path, - STATE(4660), 1, - sym_cell_path, - ACTIONS(979), 5, + ACTIONS(973), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(981), 30, + ACTIONS(975), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -421336,6 +419887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -421357,37 +419909,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [215388] = 5, - ACTIONS(105), 1, + [213668] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8198), 1, - aux_sym__immediate_decimal_token2, - STATE(4500), 1, + STATE(4470), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1185), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1187), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -421398,28 +419954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [215439] = 6, + [213717] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, + ACTIONS(8360), 1, anon_sym_DOT2, - STATE(4896), 1, - sym_path, - STATE(4501), 2, + STATE(4471), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 5, + STATE(4522), 1, + sym_path, + STATE(4738), 1, + sym_cell_path, + ACTIONS(966), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1017), 30, + ACTIONS(968), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -421450,139 +420002,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [215492] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - ACTIONS(8476), 1, - anon_sym_LT, - ACTIONS(8478), 1, - anon_sym_EQ2, - STATE(4502), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6850), 1, - sym__immediate_decimal, - STATE(6854), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1821), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1823), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215563] = 4, + [213772] = 23, ACTIONS(105), 1, anon_sym_POUND, - STATE(4503), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_LF, + ACTIONS(8368), 1, anon_sym_DOT2, - ACTIONS(815), 36, + ACTIONS(8372), 1, + anon_sym_QMARK2, + ACTIONS(8380), 1, + anon_sym_bit_DASHand, + ACTIONS(8382), 1, + anon_sym_bit_DASHxor, + ACTIONS(8384), 1, + anon_sym_bit_DASHor, + ACTIONS(8386), 1, + anon_sym_and, + ACTIONS(8388), 1, + anon_sym_xor, + ACTIONS(8390), 1, + anon_sym_or, + ACTIONS(8392), 1, + sym_filesize_unit, + ACTIONS(8394), 1, + sym_duration_unit, + STATE(4472), 1, + sym_comment, + STATE(4981), 1, + sym_path, + STATE(6011), 1, + sym_cell_path, + ACTIONS(8122), 2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(8124), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8364), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS, + ACTIONS(8374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(8376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8378), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8366), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8370), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(8362), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [215612] = 6, - ACTIONS(105), 1, + [213859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token2, - STATE(4504), 1, + STATE(4473), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1209), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1211), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -421593,35 +420111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [215665] = 8, + [213908] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(8396), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token2, + STATE(4474), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8486), 1, anon_sym_DOT2, - ACTIONS(8488), 1, - aux_sym_unquoted_token4, - ACTIONS(8490), 1, - aux_sym_unquoted_token6, - STATE(4505), 1, - sym_comment, - ACTIONS(8484), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 32, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -421647,17 +420156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [215722] = 4, + sym_filesize_unit, + sym_duration_unit, + [213961] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4506), 1, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token2, + STATE(4475), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 36, + ACTIONS(855), 35, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, @@ -421665,7 +420177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -421692,173 +420203,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [215771] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8496), 1, - anon_sym_list, - STATE(4507), 1, - sym_comment, - STATE(4644), 1, - sym__type_annotation, - ACTIONS(8494), 2, - anon_sym_table, - anon_sym_record, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8492), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [215826] = 15, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + [214012] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(1193), 1, + sym__entry_separator, + ACTIONS(2868), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8253), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8263), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8265), 1, anon_sym_PLUS2, - ACTIONS(8498), 1, - anon_sym_LT, - ACTIONS(8500), 1, - anon_sym_EQ2, - STATE(4508), 1, + ACTIONS(8402), 1, + aux_sym_unquoted_token5, + STATE(4476), 1, sym_comment, - STATE(6206), 1, + STATE(5928), 1, sym__var, - STATE(6741), 1, + STATE(6328), 1, sym__immediate_decimal, - STATE(6740), 2, + STATE(6327), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1823), 18, + ACTIONS(1191), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [215897] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [214081] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_PIPE, - STATE(4509), 1, + ACTIONS(1193), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + ACTIONS(8402), 1, + aux_sym_unquoted_token5, + STATE(4477), 1, sym_comment, - ACTIONS(8504), 16, + STATE(5928), 1, + sym__var, + STATE(6330), 1, + sym__immediate_decimal, + STATE(6329), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1191), 26, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8502), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [215948] = 7, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [214150] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7950), 1, + ACTIONS(7888), 1, anon_sym_list, - STATE(4510), 1, + STATE(4478), 1, sym_comment, - STATE(9879), 1, + STATE(9936), 1, sym__type_annotation, - ACTIONS(7948), 2, + ACTIONS(7886), 2, anon_sym_table, anon_sym_record, - STATE(4361), 3, + STATE(4268), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(7946), 31, + ACTIONS(7884), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -421890,325 +420362,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [216003] = 7, - ACTIONS(3), 1, + [214205] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8506), 1, - anon_sym_DOT2, - STATE(4457), 1, - sym_path, - STATE(4511), 1, + ACTIONS(8303), 1, + aux_sym__immediate_decimal_token2, + STATE(4479), 1, sym_comment, - STATE(4660), 1, - sym_cell_path, - ACTIONS(979), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(981), 30, - anon_sym_COMMA, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [216058] = 5, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [214256] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_PIPE, - STATE(4512), 1, + ACTIONS(8404), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8406), 1, + aux_sym__immediate_decimal_token2, + STATE(4480), 1, sym_comment, - ACTIONS(8511), 16, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 33, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8509), 21, - sym_cmd_identifier, + aux_sym_unquoted_token6, + [214309] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2868), 1, anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + ACTIONS(8335), 1, + sym__entry_separator, + ACTIONS(8337), 1, + aux_sym__unquoted_in_list_token6, + STATE(4481), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6328), 1, + sym__immediate_decimal, + STATE(6327), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(8333), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [216109] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [214378] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - aux_sym__immediate_decimal_token2, - STATE(4513), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(7934), 1, + anon_sym_LPAREN, + ACTIONS(7942), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7944), 1, + anon_sym_DASH2, + ACTIONS(7946), 1, + anon_sym_PLUS2, + ACTIONS(8408), 1, + anon_sym_LT, + ACTIONS(8410), 1, + anon_sym_DOT2, + ACTIONS(8412), 1, + anon_sym_EQ2, + STATE(4482), 1, sym_comment, - ACTIONS(846), 14, + STATE(6177), 1, + sym__var, + STATE(6494), 1, + sym__immediate_decimal, + STATE(6493), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1874), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1876), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(844), 23, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [216160] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - STATE(4514), 1, - sym_comment, - STATE(4644), 1, - sym__type_annotation, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(4361), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [216215] = 4, + [214449] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4515), 1, + ACTIONS(8414), 1, + aux_sym__immediate_decimal_token2, + STATE(4483), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 36, + ACTIONS(855), 35, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_filesize_unit, sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [216264] = 7, + [214500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4501), 1, - aux_sym_cell_path_repeat1, - STATE(4516), 1, + ACTIONS(8416), 1, + aux_sym__immediate_decimal_token2, + STATE(4484), 1, sym_comment, - STATE(4896), 1, - sym_path, - ACTIONS(975), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(977), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(857), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [216319] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8515), 1, - anon_sym_DOT2, - STATE(4517), 1, - sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(807), 34, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(855), 23, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -422218,41 +420658,37 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [216372] = 7, - ACTIONS(3), 1, + [214551] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(8418), 1, anon_sym_DOT2, - STATE(4518), 1, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token2, + STATE(4485), 1, sym_comment, - STATE(4543), 1, - sym_path, - STATE(5106), 1, - sym_cell_path, - ACTIONS(967), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(969), 30, - anon_sym_COMMA, + ACTIONS(846), 35, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -422260,71 +420696,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [216427] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7950), 1, - anon_sym_list, - STATE(4519), 1, - sym_comment, - STATE(8467), 1, - sym__all_type, - ACTIONS(7948), 2, - anon_sym_table, - anon_sym_record, - STATE(8580), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(7946), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [216482] = 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [214604] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4520), 1, + ACTIONS(8423), 1, + anon_sym_DOT2, + STATE(4486), 1, sym_comment, - ACTIONS(1259), 13, + ACTIONS(1054), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -422333,7 +420725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1261), 25, + ACTIONS(1056), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -422359,74 +420751,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [216531] = 15, + [214655] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, - anon_sym_LPAREN, - ACTIONS(7884), 1, - anon_sym_DASH2, - ACTIONS(7886), 1, - anon_sym_PLUS2, - ACTIONS(8518), 1, - anon_sym_LT, - ACTIONS(8520), 1, - anon_sym_DOT2, - ACTIONS(8522), 1, - anon_sym_EQ2, - ACTIONS(8524), 1, - aux_sym__immediate_decimal_token1, - STATE(4521), 1, + ACTIONS(8429), 1, + anon_sym_PIPE, + STATE(4487), 1, sym_comment, - STATE(6205), 1, - sym__var, - STATE(6612), 1, - sym__immediate_decimal, - STATE(6608), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1841), 18, + ACTIONS(8427), 16, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, + anon_sym_PLUS, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [216602] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8425), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [214706] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8526), 1, + ACTIONS(8431), 1, anon_sym_DOT2, - ACTIONS(8528), 1, + ACTIONS(8433), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8530), 1, + ACTIONS(8435), 1, aux_sym_unquoted_token2, - STATE(4522), 1, + STATE(4488), 1, sym_comment, - ACTIONS(1005), 12, + ACTIONS(949), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -422439,10 +420821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1007), 23, + ACTIONS(951), 23, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -422463,39 +420845,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [216657] = 6, - ACTIONS(3), 1, + [214761] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8534), 1, - aux_sym__immediate_decimal_token2, - STATE(4523), 1, + ACTIONS(8439), 1, + anon_sym_DOT2, + ACTIONS(8441), 1, + aux_sym_unquoted_token4, + ACTIONS(8443), 1, + aux_sym_unquoted_token6, + STATE(4489), 1, sym_comment, - ACTIONS(815), 6, + ACTIONS(829), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8437), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(817), 30, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -422509,39 +420894,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [216710] = 6, - ACTIONS(105), 1, + [214818] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(8536), 1, - anon_sym_DOT2, - ACTIONS(8538), 1, + ACTIONS(8033), 1, aux_sym_unquoted_token6, - STATE(4524), 1, + STATE(4490), 1, sym_comment, - ACTIONS(861), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -422552,123 +420940,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [216763] = 6, - ACTIONS(3), 1, + [214869] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8540), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(8447), 1, anon_sym_DOT2, - ACTIONS(8543), 1, - aux_sym__immediate_decimal_token2, - STATE(4525), 1, + ACTIONS(8449), 1, + aux_sym_unquoted_token4, + ACTIONS(8451), 1, + aux_sym_unquoted_token6, + STATE(4491), 1, sym_comment, - ACTIONS(837), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(835), 23, - sym_cmd_identifier, + ACTIONS(8445), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [216816] = 5, - ACTIONS(105), 1, + [214926] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - aux_sym__immediate_decimal_token2, - STATE(4526), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(6134), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + ACTIONS(8453), 1, + anon_sym_LT, + ACTIONS(8455), 1, + anon_sym_EQ2, + STATE(4492), 1, + sym_comment, + STATE(6159), 1, + sym__var, + STATE(6777), 1, + sym__immediate_decimal, + STATE(6776), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 8, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2001), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [216867] = 6, + [214997] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8545), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8547), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token2, - STATE(4527), 1, + STATE(4493), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 33, + ACTIONS(815), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -422697,36 +421091,82 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [216920] = 4, + [215048] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + ACTIONS(8285), 1, + aux_sym__immediate_decimal_token2, + STATE(4494), 1, sym_comment, - ACTIONS(844), 16, - sym_identifier, + ACTIONS(817), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(815), 23, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 22, + [215099] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4495), 1, + sym_comment, + STATE(4522), 1, + sym_path, + STATE(5103), 1, + sym_cell_path, + ACTIONS(913), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(915), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -422742,42 +421182,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [216969] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [215154] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, anon_sym_DOT2, - STATE(4529), 1, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + ACTIONS(8457), 1, + anon_sym_LT, + ACTIONS(8459), 1, + anon_sym_EQ2, + STATE(4496), 1, sym_comment, - ACTIONS(1102), 12, - sym_identifier, - anon_sym_GT, + STATE(6159), 1, + sym__var, + STATE(6783), 1, + sym__immediate_decimal, + STATE(6778), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2007), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1104), 25, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2009), 18, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215225] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(8461), 1, + anon_sym_DOT2, + ACTIONS(8464), 1, + aux_sym__immediate_decimal_token2, + STATE(4497), 1, + sym_comment, + ACTIONS(846), 35, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -422788,27 +421283,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [217020] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [215278] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, + STATE(4498), 1, + sym_comment, + ACTIONS(857), 2, anon_sym_LF, - ACTIONS(8247), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8551), 1, anon_sym_DOT2, - STATE(4530), 1, - sym_comment, - ACTIONS(807), 35, + ACTIONS(855), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -422835,44 +421333,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [217073] = 7, + [215327] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8554), 1, - anon_sym_DOT2, - ACTIONS(8556), 1, + ACTIONS(7888), 1, + anon_sym_list, + STATE(4499), 1, + sym_comment, + STATE(4664), 1, + sym__type_annotation, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [215382] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8466), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8558), 1, - aux_sym_unquoted_token2, - STATE(4531), 1, + ACTIONS(8468), 1, + aux_sym__immediate_decimal_token2, + STATE(4500), 1, sym_comment, - ACTIONS(1005), 12, - sym_identifier, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1007), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -422883,17 +421422,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [217128] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [215435] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8470), 1, + anon_sym_LPAREN, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8474), 1, + anon_sym_LT, + ACTIONS(8476), 1, + anon_sym_DOT2, + ACTIONS(8478), 1, + anon_sym_EQ2, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8482), 1, + anon_sym_DASH2, + ACTIONS(8484), 1, + anon_sym_PLUS2, + STATE(4501), 1, + sym_comment, + STATE(6054), 1, + sym__var, + STATE(6513), 1, + sym__immediate_decimal, + STATE(6512), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1874), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1876), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215506] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8560), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token2, - STATE(4532), 1, + STATE(4502), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 35, + ACTIONS(807), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -422929,82 +421530,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [217179] = 5, + [215557] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4533), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + ACTIONS(8486), 1, + anon_sym_LT, + ACTIONS(8488), 1, + anon_sym_EQ2, + STATE(4503), 1, sym_comment, - ACTIONS(861), 14, - sym_identifier, - anon_sym_GT, + STATE(6159), 1, + sym__var, + STATE(6785), 1, + sym__immediate_decimal, + STATE(6784), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2015), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 23, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2017), 18, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [217230] = 4, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215628] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4469), 1, + aux_sym_cell_path_repeat1, + STATE(4504), 1, sym_comment, - ACTIONS(889), 16, - sym_identifier, + STATE(4821), 1, + sym_path, + ACTIONS(903), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 22, + ACTIONS(905), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -423020,26 +421631,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [217279] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [215683] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8564), 1, - aux_sym__immediate_decimal_token2, - STATE(4535), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, + ACTIONS(8490), 1, anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(8492), 1, + aux_sym_unquoted_token6, + STATE(4505), 1, + sym_comment, + ACTIONS(877), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -423067,36 +421681,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [217332] = 4, - ACTIONS(105), 1, + [215736] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + STATE(4506), 1, sym_comment, - ACTIONS(1067), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1065), 36, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1213), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1215), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -423107,42 +421726,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [217381] = 6, - ACTIONS(105), 1, + [215785] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8566), 1, + ACTIONS(8494), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8568), 1, + ACTIONS(8496), 1, aux_sym__immediate_decimal_token2, - STATE(4537), 1, + STATE(4507), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(815), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 30, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -423156,27 +421772,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [217434] = 7, + [215838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(8498), 1, anon_sym_DOT2, - STATE(4538), 1, - sym_comment, - STATE(4543), 1, + STATE(4821), 1, sym_path, - STATE(4749), 1, - sym_cell_path, - ACTIONS(997), 5, + STATE(4508), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(999), 30, + ACTIONS(944), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -423207,82 +421820,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [217489] = 5, + [215891] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token2, - STATE(4539), 1, + ACTIONS(8429), 1, + anon_sym_PIPE, + STATE(4509), 1, sym_comment, - ACTIONS(817), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(8503), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(815), 23, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8501), 21, sym_cmd_identifier, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [217540] = 4, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [215942] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4540), 1, + ACTIONS(8505), 1, + anon_sym_DOT2, + STATE(4504), 1, + sym_path, + STATE(4510), 1, sym_comment, - ACTIONS(1189), 13, - sym_identifier, + STATE(4602), 1, + sym_cell_path, + ACTIONS(933), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1191), 25, - anon_sym_COLON, + ACTIONS(935), 30, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -423298,78 +421911,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [217589] = 15, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [215997] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, - anon_sym_LPAREN, - ACTIONS(7882), 1, + ACTIONS(8508), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7884), 1, - anon_sym_DASH2, - ACTIONS(7886), 1, - anon_sym_PLUS2, - ACTIONS(8520), 1, - anon_sym_DOT2, - ACTIONS(8570), 1, - anon_sym_LT, - ACTIONS(8572), 1, - anon_sym_EQ2, - STATE(4541), 1, + ACTIONS(8510), 1, + aux_sym__immediate_decimal_token2, + STATE(4511), 1, sym_comment, - STATE(6205), 1, - sym__var, - STATE(6605), 1, - sym__immediate_decimal, - STATE(6600), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1829), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1831), 18, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [217660] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [216050] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, + STATE(4512), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(8160), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8574), 1, anon_sym_DOT2, - STATE(4542), 1, - sym_comment, - ACTIONS(807), 35, + ACTIONS(807), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -423401,120 +422006,25 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [217713] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4516), 1, - aux_sym_cell_path_repeat1, - STATE(4543), 1, - sym_comment, - STATE(4896), 1, - sym_path, - ACTIONS(903), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(905), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [217768] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_list, - STATE(4544), 1, - sym_comment, - STATE(7414), 1, - sym__type_annotation, - ACTIONS(8579), 2, - anon_sym_table, - anon_sym_record, - STATE(7487), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(8577), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [217823] = 5, + [216099] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8160), 1, + ACTIONS(8512), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8514), 1, aux_sym__immediate_decimal_token2, - STATE(4545), 1, + STATE(4513), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(817), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -423543,44 +422053,44 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [217874] = 6, - ACTIONS(105), 1, + [216152] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(8516), 1, anon_sym_DOT2, - ACTIONS(8586), 1, - aux_sym__immediate_decimal_token2, - STATE(4546), 1, - sym_comment, - ACTIONS(837), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(835), 34, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(8519), 1, + aux_sym__immediate_decimal_token2, + STATE(4514), 1, + sym_comment, + ACTIONS(848), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(846), 23, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -423590,31 +422100,33 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [217927] = 6, + [216205] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8588), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8590), 1, - aux_sym__immediate_decimal_token2, - STATE(4547), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4515), 1, sym_comment, - ACTIONS(807), 6, + STATE(4522), 1, + sym_path, + STATE(5107), 1, + sym_cell_path, + ACTIONS(917), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 30, - anon_sym_COLON, + ACTIONS(919), 30, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -423636,59 +422148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [217980] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token2, - STATE(4548), 1, - sym_comment, - ACTIONS(809), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [218031] = 4, + [216260] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4549), 1, + STATE(4516), 1, sym_comment, - ACTIONS(1222), 13, + ACTIONS(894), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -423702,11 +422167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1224), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -423728,27 +422193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [218080] = 6, + [216309] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + STATE(4517), 1, + sym_comment, + ACTIONS(896), 2, anon_sym_LF, - ACTIONS(8538), 1, - aux_sym_unquoted_token6, - ACTIONS(8592), 1, anon_sym_DOT2, - STATE(4550), 1, - sym_comment, - ACTIONS(861), 35, + ACTIONS(894), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -423775,23 +422238,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [218133] = 4, + [216358] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8429), 1, + anon_sym_PIPE, + STATE(4518), 1, + sym_comment, + ACTIONS(8523), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8521), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [216409] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1257), 1, + anon_sym_DASH, + ACTIONS(8423), 1, + anon_sym_DOT2, + STATE(4519), 1, + sym_comment, + ACTIONS(1253), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + ACTIONS(1255), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1385), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [216466] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4551), 1, + ACTIONS(8525), 1, + aux_sym__immediate_decimal_token2, + STATE(4520), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(857), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 36, + ACTIONS(855), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -423820,15 +422379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [218182] = 4, + [216517] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(4521), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(896), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 36, + ACTIONS(894), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -423865,151 +422424,36 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [218231] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8596), 1, - sym__entry_separator, - ACTIONS(8598), 1, - aux_sym__unquoted_in_list_token6, - STATE(4553), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6384), 1, - sym__immediate_decimal, - STATE(6379), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(8594), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [218300] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - ACTIONS(8600), 1, - anon_sym_LT, - ACTIONS(8602), 1, - anon_sym_EQ2, - STATE(4554), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6855), 1, - sym__immediate_decimal, - STATE(6857), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1813), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1815), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [218371] = 8, + [216566] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_DASH, - ACTIONS(8549), 1, + ACTIONS(8360), 1, anon_sym_DOT2, - STATE(4555), 1, + STATE(4522), 1, sym_comment, - ACTIONS(1245), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - ACTIONS(1247), 10, + STATE(4531), 1, + aux_sym_cell_path_repeat1, + STATE(4821), 1, + sym_path, + ACTIONS(903), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 17, + ACTIONS(905), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -424025,22 +422469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [218428] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [216621] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4501), 1, - aux_sym_cell_path_repeat1, - STATE(4556), 1, - sym_comment, - STATE(4896), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4522), 1, sym_path, - ACTIONS(975), 5, + STATE(4523), 1, + sym_comment, + STATE(4602), 1, + sym_cell_path, + ACTIONS(933), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(977), 31, + ACTIONS(935), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -424050,7 +422499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -424072,26 +422520,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [218481] = 5, + [216676] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8604), 1, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8529), 1, aux_sym__immediate_decimal_token2, - STATE(4557), 1, + STATE(4524), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(817), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 35, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -424118,175 +422567,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [218532] = 8, - ACTIONS(3), 1, + [216729] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8608), 1, - anon_sym_DOT2, - ACTIONS(8610), 1, - aux_sym_unquoted_token4, - ACTIONS(8612), 1, - aux_sym_unquoted_token6, - STATE(4558), 1, + ACTIONS(8310), 1, + aux_sym__immediate_decimal_token2, + STATE(4525), 1, sym_comment, - ACTIONS(8606), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(825), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(823), 20, - sym_cmd_identifier, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [218589] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - ACTIONS(8596), 1, - sym__entry_separator, - ACTIONS(8598), 1, - aux_sym__unquoted_in_list_token6, - STATE(4559), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6417), 1, - sym__immediate_decimal, - STATE(6401), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(8594), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [218658] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(8614), 1, - anon_sym_DOT2, - ACTIONS(8617), 1, - aux_sym__immediate_decimal_token2, - STATE(4560), 1, - sym_comment, - ACTIONS(835), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_filesize_unit, sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [218711] = 8, + [216780] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8621), 1, + ACTIONS(8531), 1, anon_sym_DOT2, - ACTIONS(8623), 1, - aux_sym_unquoted_token4, - ACTIONS(8625), 1, - aux_sym_unquoted_token6, - STATE(4561), 1, + ACTIONS(8534), 1, + aux_sym__immediate_decimal_token2, + STATE(4526), 1, sym_comment, - ACTIONS(825), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8619), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 31, + ACTIONS(846), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -424318,95 +422657,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [218768] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8629), 1, - anon_sym_LT, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8633), 1, - anon_sym_EQ2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(4562), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6955), 1, - sym__immediate_decimal, - STATE(6947), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1805), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1807), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [218838] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [216833] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4563), 1, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token2, + STATE(4527), 1, sym_comment, - ACTIONS(1350), 12, - sym_identifier, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1352), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -424417,64 +422700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [218886] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4564), 1, - sym_comment, - ACTIONS(1033), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1035), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [218934] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [216884] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(8641), 1, + ACTIONS(8492), 1, + aux_sym_unquoted_token6, + ACTIONS(8536), 1, anon_sym_DOT2, - STATE(4565), 1, + STATE(4528), 1, sym_comment, - STATE(4656), 1, - aux_sym_cell_path_repeat1, - STATE(4967), 1, - sym_path, - ACTIONS(903), 33, + ACTIONS(877), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -424508,12 +422751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [218988] = 4, + sym_filesize_unit, + sym_duration_unit, + [216937] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4566), 1, + ACTIONS(8538), 1, + anon_sym_DOT2, + ACTIONS(8540), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8542), 1, + aux_sym_unquoted_token2, + STATE(4529), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(949), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -424526,12 +422777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1348), 25, - anon_sym_COLON, + ACTIONS(951), 23, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, @@ -424552,40 +422801,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219036] = 4, - ACTIONS(3), 1, + [216992] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4567), 1, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8544), 1, + anon_sym_DOT2, + STATE(4530), 1, sym_comment, - ACTIONS(1342), 12, - sym_identifier, + ACTIONS(817), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(815), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1344), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -424596,35 +422842,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219084] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [217045] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4508), 1, + aux_sym_cell_path_repeat1, + STATE(4531), 1, sym_comment, - ACTIONS(1294), 12, - sym_identifier, + STATE(4821), 1, + sym_path, + ACTIONS(973), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1296), 25, - anon_sym_COLON, + ACTIONS(975), 30, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -424640,13 +422893,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219132] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [217100] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + ACTIONS(8314), 1, + aux_sym__immediate_decimal_token2, + STATE(4532), 1, sym_comment, - ACTIONS(1298), 12, - sym_identifier, + ACTIONS(809), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(807), 23, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -424654,50 +422927,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1300), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219180] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [217151] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + STATE(4533), 1, + sym_comment, + ACTIONS(817), 2, anon_sym_LF, - ACTIONS(8641), 1, anon_sym_DOT2, - STATE(4570), 1, - sym_comment, - STATE(4588), 1, - sym_path, - STATE(4945), 1, - sym_cell_path, - ACTIONS(979), 33, + ACTIONS(815), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -424731,12 +422984,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [219234] = 4, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [217200] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4571), 1, + ACTIONS(8551), 1, + anon_sym_list, + STATE(4534), 1, + sym_comment, + STATE(7346), 1, + sym__type_annotation, + ACTIONS(8549), 2, + anon_sym_table, + anon_sym_record, + STATE(7526), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8547), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [217255] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8031), 1, + anon_sym_DOT2, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4535), 1, sym_comment, - ACTIONS(1389), 12, + ACTIONS(877), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -424749,11 +423057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1391), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -424775,20 +423082,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219282] = 4, + [217308] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + STATE(4536), 1, + sym_comment, + STATE(8322), 1, + sym__all_type, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(8389), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [217363] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4572), 1, + ACTIONS(8217), 1, + aux_sym__immediate_decimal_token2, + STATE(4537), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 35, + ACTIONS(807), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -424819,40 +423175,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [219330] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token6, + [217414] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4573), 1, + ACTIONS(8553), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8555), 1, + aux_sym__immediate_decimal_token2, + STATE(4538), 1, sym_comment, - ACTIONS(1397), 12, - sym_identifier, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1399), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -424863,225 +423218,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219378] = 13, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [217467] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2177), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8559), 1, + anon_sym_LT, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8563), 1, + anon_sym_EQ2, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4574), 1, + STATE(4539), 1, sym_comment, - STATE(5896), 1, + STATE(6226), 1, sym__var, - STATE(6427), 1, + STATE(6829), 1, sym__immediate_decimal, - STATE(6428), 2, + STATE(6824), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2175), 26, + ACTIONS(1981), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1983), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217538] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + ACTIONS(8571), 1, + anon_sym_LT, + ACTIONS(8573), 1, + anon_sym_EQ2, + STATE(4540), 1, + sym_comment, + STATE(6226), 1, + sym__var, + STATE(6843), 1, + sym__immediate_decimal, + STATE(6832), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2001), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217609] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + ACTIONS(8575), 1, + anon_sym_LT, + ACTIONS(8577), 1, + anon_sym_EQ2, + STATE(4541), 1, + sym_comment, + STATE(6226), 1, + sym__var, + STATE(6847), 1, + sym__immediate_decimal, + STATE(6846), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2007), 9, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2009), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [219444] = 13, - ACTIONS(105), 1, + [217680] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4575), 1, + ACTIONS(8579), 1, + anon_sym_LT, + ACTIONS(8581), 1, + anon_sym_EQ2, + STATE(4542), 1, sym_comment, - STATE(5896), 1, + STATE(6226), 1, sym__var, - STATE(6419), 1, + STATE(6849), 1, sym__immediate_decimal, - STATE(6425), 2, + STATE(6848), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, + ACTIONS(2015), 9, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2017), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [219510] = 13, - ACTIONS(105), 1, + [217751] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2149), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(7934), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(7944), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(7946), 1, anon_sym_PLUS2, - STATE(4576), 1, + ACTIONS(8410), 1, + anon_sym_DOT2, + ACTIONS(8583), 1, + anon_sym_LT, + ACTIONS(8585), 1, + anon_sym_EQ2, + ACTIONS(8587), 1, + aux_sym__immediate_decimal_token1, + STATE(4543), 1, sym_comment, - STATE(5896), 1, + STATE(6177), 1, sym__var, - STATE(6414), 1, + STATE(6496), 1, sym__immediate_decimal, - STATE(6416), 2, + STATE(6495), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 26, + ACTIONS(1971), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1973), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [219576] = 13, - ACTIONS(105), 1, + [217822] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4577), 1, + ACTIONS(8429), 1, + anon_sym_PIPE, + STATE(4544), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6385), 1, - sym__immediate_decimal, - STATE(6358), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 26, + ACTIONS(8591), 16, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8589), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [219642] = 4, + [217873] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4578), 1, + ACTIONS(8285), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8593), 1, + anon_sym_DOT2, + STATE(4545), 1, sym_comment, - ACTIONS(1309), 12, - sym_identifier, + ACTIONS(817), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(815), 23, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -425089,46 +423581,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1311), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219690] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [217926] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(4579), 1, + ACTIONS(8470), 1, + anon_sym_LPAREN, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8476), 1, + anon_sym_DOT2, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8482), 1, + anon_sym_DASH2, + ACTIONS(8484), 1, + anon_sym_PLUS2, + ACTIONS(8596), 1, + anon_sym_LT, + ACTIONS(8598), 1, + anon_sym_EQ2, + STATE(4546), 1, + sym_comment, + STATE(6054), 1, + sym__var, + STATE(6516), 1, + sym__immediate_decimal, + STATE(6515), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1971), 9, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1973), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217997] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4547), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1217), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -425137,7 +423671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1290), 25, + ACTIONS(1219), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -425163,16 +423697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219738] = 4, + [218046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4548), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(815), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -425181,11 +423716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1356), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -425207,107 +423742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [219786] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8352), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8643), 1, - anon_sym_DOT2, - STATE(4581), 1, - sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [219838] = 6, + [218095] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8646), 1, - anon_sym_DOT2, - ACTIONS(8649), 1, + ACTIONS(8600), 1, aux_sym__immediate_decimal_token2, - STATE(4582), 1, - sym_comment, - ACTIONS(837), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(835), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [219890] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4583), 1, + STATE(4549), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 35, + ACTIONS(855), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -425343,34 +423788,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [219938] = 4, - ACTIONS(105), 1, + [218146] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4550), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(807), 16, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -425381,30 +423833,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [219986] = 4, + [218195] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4585), 1, + STATE(4551), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 35, + ACTIONS(815), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -425431,35 +423878,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [220034] = 4, + [218244] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4586), 1, + ACTIONS(8602), 1, + anon_sym_DOT2, + STATE(4504), 1, + sym_path, + STATE(4552), 1, sym_comment, - ACTIONS(1338), 12, - sym_identifier, + STATE(4738), 1, + sym_cell_path, + ACTIONS(966), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1340), 25, - anon_sym_COLON, + ACTIONS(968), 30, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -425475,73 +423923,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220082] = 4, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [218299] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4587), 1, + ACTIONS(8609), 1, + anon_sym_list, + STATE(4553), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [220130] = 7, + STATE(4664), 1, + sym__type_annotation, + ACTIONS(8607), 2, + anon_sym_table, + anon_sym_record, + STATE(4268), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(8605), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [218354] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + STATE(4554), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(8641), 1, anon_sym_DOT2, - STATE(4588), 1, - sym_comment, - STATE(4643), 1, - aux_sym_cell_path_repeat1, - STATE(4967), 1, - sym_path, - ACTIONS(903), 33, + ACTIONS(807), 36, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -425566,16 +424017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [220184] = 4, + sym_filesize_unit, + sym_duration_unit, + [218403] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4589), 1, + STATE(4555), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(1221), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -425584,7 +424038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1340), 25, + ACTIONS(1223), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -425610,16 +424064,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220232] = 4, + [218452] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4590), 1, + ACTIONS(8613), 1, + anon_sym_DOT2, + ACTIONS(8615), 1, + aux_sym_unquoted_token4, + ACTIONS(8617), 1, + aux_sym_unquoted_token6, + STATE(4556), 1, + sym_comment, + ACTIONS(8611), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(829), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(827), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [218509] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7888), 1, + anon_sym_list, + STATE(4557), 1, + sym_comment, + STATE(8330), 1, + sym__all_type, + ACTIONS(7886), 2, + anon_sym_table, + anon_sym_record, + STATE(8389), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(7884), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [218564] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4558), 1, sym_comment, - ACTIONS(1385), 12, + ACTIONS(855), 16, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT2, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -425628,11 +424180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1387), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 22, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -425654,60 +424206,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220280] = 5, - ACTIONS(105), 1, + [218613] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym__immediate_decimal_token2, - STATE(4591), 1, + ACTIONS(8429), 1, + anon_sym_PIPE, + STATE(4559), 1, sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 33, - anon_sym_SEMI, + ACTIONS(8621), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [220330] = 4, + anon_sym_CARET, + ACTIONS(8619), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [218664] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4592), 1, + ACTIONS(8207), 1, + aux_sym__immediate_decimal_token2, + STATE(4560), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(815), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -425743,36 +424298,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [220378] = 5, + [218715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym_unquoted_token5, - STATE(4593), 1, + ACTIONS(8623), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8625), 1, + aux_sym__immediate_decimal_token2, + STATE(4561), 1, sym_comment, - ACTIONS(1193), 12, - sym_identifier, + ACTIONS(807), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1195), 24, + sym_filesize_unit, + ACTIONS(809), 30, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -425788,40 +424341,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220428] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [218768] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4594), 1, + ACTIONS(8468), 1, + aux_sym__immediate_decimal_token2, + STATE(4562), 1, sym_comment, - ACTIONS(1282), 12, - sym_identifier, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1284), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -425832,37 +424384,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220476] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [218818] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4595), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token3, + STATE(4563), 1, sym_comment, - ACTIONS(1098), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1100), 32, + ACTIONS(829), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(827), 34, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -425876,101 +424435,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [220524] = 4, - ACTIONS(3), 1, + [218868] = 21, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4596), 1, - sym_comment, - ACTIONS(1317), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(8132), 1, + anon_sym_DOT2, + ACTIONS(8629), 1, + anon_sym_LF, + ACTIONS(8639), 1, + anon_sym_QMARK2, + ACTIONS(8647), 1, + anon_sym_bit_DASHand, + ACTIONS(8649), 1, + anon_sym_bit_DASHxor, + ACTIONS(8651), 1, + anon_sym_bit_DASHor, + ACTIONS(8653), 1, anon_sym_and, + ACTIONS(8655), 1, anon_sym_xor, + ACTIONS(8657), 1, anon_sym_or, - ACTIONS(1319), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(4564), 1, + sym_comment, + STATE(4780), 1, + sym_path, + STATE(5379), 1, + sym_cell_path, + ACTIONS(8633), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8641), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(8643), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(8645), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [220572] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4597), 1, - sym_comment, - ACTIONS(1193), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(8627), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(8635), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8637), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(8631), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1195), 25, - anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [218950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8661), 1, + anon_sym_LT, + STATE(4565), 1, + sym_comment, + ACTIONS(8659), 36, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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, + [218998] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8663), 1, + anon_sym_LT, + STATE(4566), 1, + sym_comment, + ACTIONS(8659), 36, + anon_sym_COMMA, + 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, + [219046] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8665), 1, + anon_sym_DOT2, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(4567), 1, + sym_comment, + ACTIONS(879), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [220620] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4598), 1, - sym_comment, - ACTIONS(1358), 12, - sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(877), 22, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -425978,46 +424616,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1360), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220668] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [219098] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(961), 1, anon_sym_LF, - ACTIONS(8655), 1, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(4599), 1, + STATE(4568), 1, sym_comment, - ACTIONS(861), 35, + STATE(4636), 1, + sym_path, + STATE(5188), 1, + sym_cell_path, + ACTIONS(959), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -426051,31 +424677,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [220718] = 7, + [219152] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8671), 1, anon_sym_DOT2, - STATE(4600), 1, + STATE(4569), 1, sym_comment, - STATE(4697), 1, - aux_sym_cell_path_repeat1, - STATE(4975), 1, - sym_path, - ACTIONS(903), 33, + ACTIONS(817), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -426100,69 +424721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [220772] = 5, + sym_filesize_unit, + sym_duration_unit, + [219204] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8352), 1, + ACTIONS(8514), 1, aux_sym__immediate_decimal_token2, - STATE(4601), 1, + STATE(4570), 1, sym_comment, - ACTIONS(809), 3, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [220822] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(8538), 1, - aux_sym_unquoted_token6, - STATE(4602), 1, - sym_comment, - ACTIONS(861), 35, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -426190,19 +424767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [220872] = 6, + aux_sym_unquoted_token6, + [219254] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(8657), 1, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(4967), 1, - sym_path, - STATE(4603), 2, + STATE(4571), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 33, + STATE(4636), 1, + sym_path, + STATE(5319), 1, + sym_cell_path, + ACTIONS(909), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -426236,14 +424815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [220924] = 5, + [219308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(4604), 1, + STATE(4572), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(1278), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -426256,10 +424833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 22, + ACTIONS(1280), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -426281,58 +424859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [220974] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4605), 1, - sym_comment, - ACTIONS(8662), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8660), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [221022] = 6, + [219356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8664), 1, + ACTIONS(8674), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8666), 1, + ACTIONS(8676), 1, aux_sym__immediate_decimal_token2, - STATE(4606), 1, + STATE(4573), 1, sym_comment, ACTIONS(815), 8, anon_sym_GT, @@ -426371,14 +424905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [221074] = 6, + [219408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8668), 1, + ACTIONS(8678), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8670), 1, + ACTIONS(8680), 1, aux_sym__immediate_decimal_token2, - STATE(4607), 1, + STATE(4574), 1, sym_comment, ACTIONS(807), 8, anon_sym_GT, @@ -426417,56 +424951,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [221126] = 4, + [219460] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4608), 1, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token2, + STATE(4575), 1, sym_comment, - ACTIONS(809), 14, - anon_sym_DASH_DASH, + ACTIONS(815), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 30, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(807), 23, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [221174] = 5, + [219510] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8389), 1, + ACTIONS(8406), 1, aux_sym__immediate_decimal_token2, - STATE(4609), 1, + STATE(4576), 1, sym_comment, ACTIONS(817), 3, ts_builtin_sym_end, @@ -426474,23 +425009,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT2, ACTIONS(815), 33, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [219560] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4577), 1, + sym_comment, + ACTIONS(1361), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1363), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -426501,24 +425085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [221224] = 4, + [219608] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4610), 1, - sym_comment, - ACTIONS(846), 2, + ACTIONS(915), 1, anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - ACTIONS(844), 35, + STATE(4578), 1, + sym_comment, + STATE(4636), 1, + sym_path, + STATE(5228), 1, + sym_cell_path, + ACTIONS(913), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -426547,28 +425132,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [221272] = 4, + [219662] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4611), 1, + ACTIONS(8510), 1, + aux_sym__immediate_decimal_token2, + STATE(4579), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(809), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 35, + ACTIONS(807), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -426594,23 +425177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [221320] = 6, + [219712] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8672), 1, - anon_sym_DOT2, - ACTIONS(8675), 1, + ACTIONS(8682), 1, aux_sym__immediate_decimal_token2, - STATE(4612), 1, + STATE(4580), 1, sym_comment, - ACTIONS(837), 2, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(835), 33, + anon_sym_DOT2, + ACTIONS(855), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -426640,12 +425221,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [221372] = 5, + aux_sym_unquoted_token6, + [219762] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8684), 1, + aux_sym__immediate_decimal_token2, + STATE(4581), 1, + sym_comment, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [219812] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8590), 1, + ACTIONS(8625), 1, aux_sym__immediate_decimal_token2, - STATE(4613), 1, + STATE(4582), 1, sym_comment, ACTIONS(807), 6, anon_sym_GT, @@ -426685,18 +425312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [221422] = 5, + [219862] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8686), 1, + anon_sym_DOT2, + ACTIONS(8689), 1, aux_sym__immediate_decimal_token2, - STATE(4614), 1, + STATE(4583), 1, sym_comment, - ACTIONS(817), 3, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(846), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -426730,25 +425358,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [221472] = 6, + [219914] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8393), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8677), 1, + ACTIONS(919), 1, + anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(4615), 1, + STATE(4584), 1, sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(807), 33, + STATE(4636), 1, + sym_path, + STATE(5331), 1, + sym_cell_path, + ACTIONS(917), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -426774,127 +425405,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [221524] = 5, + [219968] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8393), 1, + ACTIONS(8406), 1, aux_sym__immediate_decimal_token2, - STATE(4616), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [221574] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(8691), 1, anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - ACTIONS(8680), 1, - anon_sym_LT, - ACTIONS(8682), 1, - anon_sym_EQ2, - STATE(4617), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6889), 1, - sym__immediate_decimal, - STATE(6908), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1787), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1789), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [221644] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4618), 1, + STATE(4585), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(817), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, + ACTIONS(815), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -426920,190 +425451,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [221692] = 4, + [220020] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4619), 1, - sym_comment, - ACTIONS(817), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(815), 23, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [221740] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - STATE(4620), 1, + ACTIONS(8694), 1, + aux_sym_unquoted_token5, + STATE(4586), 1, sym_comment, - STATE(5896), 1, + STATE(6159), 1, sym__var, - STATE(6347), 1, + STATE(6712), 1, sym__immediate_decimal, - STATE(6345), 2, + STATE(6710), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 26, + ACTIONS(1191), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1193), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [221806] = 13, - ACTIONS(105), 1, + [220088] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, - ACTIONS(2847), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8166), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8174), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8178), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - STATE(4621), 1, + ACTIONS(8694), 1, + aux_sym_unquoted_token5, + STATE(4587), 1, sym_comment, - STATE(5896), 1, + STATE(6159), 1, sym__var, - STATE(6253), 1, + STATE(6714), 1, sym__immediate_decimal, - STATE(6348), 2, + STATE(6713), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 26, + ACTIONS(1191), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1193), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [221872] = 4, - ACTIONS(3), 1, + [220156] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4622), 1, + ACTIONS(968), 1, + anon_sym_LF, + ACTIONS(8696), 1, + anon_sym_DOT2, + STATE(4588), 1, sym_comment, - ACTIONS(1278), 12, - sym_identifier, + STATE(4691), 1, + sym_path, + STATE(5010), 1, + sym_cell_path, + ACTIONS(966), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1280), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -427114,85 +425603,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [221920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4623), 1, - sym_comment, - ACTIONS(1274), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1276), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [221968] = 13, + [220210] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4624), 1, + STATE(4589), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6353), 1, - sym__immediate_decimal, - STATE(6352), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2106), 26, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -427203,6 +425638,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -427210,42 +425647,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222034] = 13, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [220258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4625), 1, + STATE(4590), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6355), 1, - sym__immediate_decimal, - STATE(6354), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 26, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -427256,6 +425682,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -427263,29 +425691,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222100] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [220306] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4626), 1, - sym_comment, - ACTIONS(846), 14, - anon_sym_DASH_DASH, + ACTIONS(8699), 1, anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(844), 23, - sym_cmd_identifier, + ACTIONS(8701), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8703), 1, + aux_sym_unquoted_token2, + STATE(4591), 1, + sym_comment, + ACTIONS(949), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -427293,47 +425714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [222148] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8534), 1, - aux_sym__immediate_decimal_token2, - STATE(4627), 1, - sym_comment, - ACTIONS(815), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(817), 30, - anon_sym_COLON, + ACTIONS(951), 22, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -427349,180 +425741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [222198] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4628), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6362), 1, - sym__immediate_decimal, - STATE(6361), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222264] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4629), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6364), 1, - sym__immediate_decimal, - STATE(6363), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222330] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - ACTIONS(8684), 1, - anon_sym_LT, - ACTIONS(8686), 1, - anon_sym_EQ2, - STATE(4630), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6951), 1, - sym__immediate_decimal, - STATE(6969), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1813), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1815), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [222400] = 4, + [220360] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4592), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 35, + ACTIONS(855), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -427558,94 +425785,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [222448] = 13, + [220408] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2132), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4632), 1, + STATE(4593), 1, sym_comment, - STATE(5896), 1, - sym__var, - STATE(6366), 1, - sym__immediate_decimal, - STATE(6365), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2130), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222514] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - sym__entry_separator, - ACTIONS(2847), 1, - anon_sym_DOLLAR, - ACTIONS(8166), 1, - anon_sym_LPAREN, - ACTIONS(8170), 1, + ACTIONS(896), 2, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8176), 1, - anon_sym_DASH2, - ACTIONS(8178), 1, - anon_sym_PLUS2, - STATE(4633), 1, - sym_comment, - STATE(5896), 1, - sym__var, - STATE(6368), 1, - sym__immediate_decimal, - STATE(6367), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 26, + ACTIONS(894), 35, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -427656,6 +425817,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -427663,80 +425826,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [222580] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - ACTIONS(8688), 1, - anon_sym_LT, - ACTIONS(8690), 1, - anon_sym_EQ2, - STATE(4634), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6936), 1, - sym__immediate_decimal, - STATE(6944), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1821), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1823), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [222650] = 5, + aux_sym_unquoted_token6, + [220456] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8564), 1, - aux_sym__immediate_decimal_token2, - STATE(4635), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, + ACTIONS(2251), 1, + aux_sym_unquoted_token6, + ACTIONS(8705), 1, anon_sym_DOT2, - ACTIONS(815), 33, + STATE(4594), 1, + sym_comment, + ACTIONS(877), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -427764,19 +425875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [222700] = 6, + [220508] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8692), 1, - anon_sym_DOT2, - ACTIONS(8694), 1, - aux_sym_unquoted_token6, - STATE(4636), 1, + STATE(4595), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 33, + anon_sym_DOT2, + ACTIONS(815), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -427810,28 +425918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [222752] = 4, + aux_sym_unquoted_token6, + [220556] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4637), 1, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(4596), 1, sym_comment, - ACTIONS(891), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(889), 23, - sym_cmd_identifier, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -427839,52 +425935,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [222800] = 5, - ACTIONS(3), 1, + [220606] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8696), 1, + ACTIONS(8707), 1, + anon_sym_DOT2, + ACTIONS(8710), 1, aux_sym__immediate_decimal_token2, - STATE(4638), 1, + STATE(4597), 1, sym_comment, - ACTIONS(844), 6, + ACTIONS(848), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(846), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(846), 30, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -427898,41 +426007,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [222850] = 7, - ACTIONS(105), 1, + aux_sym_unquoted_token6, + [220658] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(8698), 1, - anon_sym_DOT2, - STATE(4600), 1, - sym_path, - STATE(4639), 1, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1257), 1, + anon_sym_DASH, + STATE(4598), 1, sym_comment, - STATE(5103), 1, - sym_cell_path, - ACTIONS(979), 33, - anon_sym_SEMI, + ACTIONS(1253), 8, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + ACTIONS(1255), 10, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1385), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -427943,15 +426057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [222904] = 4, + [220712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4640), 1, + STATE(4599), 1, sym_comment, - ACTIONS(1405), 12, + ACTIONS(1374), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -427964,7 +426075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1407), 25, + ACTIONS(1376), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -427990,27 +426101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [222952] = 8, + [220760] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_DOT2, - ACTIONS(8705), 1, - aux_sym_unquoted_token4, - ACTIONS(8707), 1, - aux_sym_unquoted_token6, - STATE(4641), 1, + STATE(4600), 1, sym_comment, - ACTIONS(825), 2, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8701), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 30, + anon_sym_DOT2, + ACTIONS(807), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -428038,20 +426142,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [223008] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [220808] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(8709), 1, + ACTIONS(8712), 1, anon_sym_DOT2, - STATE(4565), 1, - sym_path, - STATE(4642), 1, + ACTIONS(8714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8716), 1, + aux_sym_unquoted_token2, + STATE(4601), 1, sym_comment, - STATE(4945), 1, - sym_cell_path, - ACTIONS(979), 33, + ACTIONS(949), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -428085,40 +426192,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [223062] = 7, - ACTIONS(105), 1, + [220862] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(977), 1, - anon_sym_LF, - ACTIONS(8641), 1, - anon_sym_DOT2, - STATE(4603), 1, - aux_sym_cell_path_repeat1, - STATE(4643), 1, + STATE(4602), 1, sym_comment, - STATE(4967), 1, - sym_path, - ACTIONS(975), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1217), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1219), 32, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428132,65 +426236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [223116] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4644), 1, - sym_comment, - ACTIONS(8712), 37, - anon_sym_COMMA, - 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_LBRACE, - [223162] = 5, + [220910] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8714), 1, + ACTIONS(8514), 1, aux_sym__immediate_decimal_token2, - STATE(4645), 1, + ACTIONS(8718), 1, + anon_sym_DOT2, + STATE(4603), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(817), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 33, + ACTIONS(815), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -428220,18 +426281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [223212] = 7, + aux_sym_unquoted_token6, + [220962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8716), 1, - anon_sym_DOT2, - ACTIONS(8718), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8720), 1, - aux_sym_unquoted_token2, - STATE(4646), 1, + STATE(4604), 1, sym_comment, - ACTIONS(1005), 12, + ACTIONS(1381), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -428244,8 +426300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1007), 22, + ACTIONS(1383), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, @@ -428267,36 +426326,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [223266] = 6, - ACTIONS(105), 1, + [221010] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8724), 1, + ACTIONS(8721), 1, aux_sym__immediate_decimal_token2, - STATE(4647), 1, + STATE(4605), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 33, - anon_sym_RBRACK, + ACTIONS(855), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(857), 30, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428310,15 +426370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [223318] = 4, + [221060] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4648), 1, + STATE(4606), 1, sym_comment, - ACTIONS(1313), 12, + ACTIONS(1255), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -428331,7 +426389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1315), 25, + ACTIONS(1385), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -428357,73 +426415,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [223366] = 21, - ACTIONS(105), 1, + [221108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8278), 1, - anon_sym_DOT2, - ACTIONS(8728), 1, - anon_sym_LF, - ACTIONS(8738), 1, - anon_sym_QMARK2, - ACTIONS(8746), 1, - anon_sym_bit_DASHand, - ACTIONS(8748), 1, - anon_sym_bit_DASHxor, - ACTIONS(8750), 1, - anon_sym_bit_DASHor, - ACTIONS(8752), 1, - anon_sym_and, - ACTIONS(8754), 1, - anon_sym_xor, - ACTIONS(8756), 1, - anon_sym_or, - STATE(4649), 1, + STATE(4607), 1, sym_comment, - STATE(4917), 1, - sym_path, - STATE(5416), 1, - sym_cell_path, - ACTIONS(8732), 2, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(8740), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8742), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8744), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(8726), 4, - anon_sym_SEMI, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4608), 1, + sym_comment, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(8734), 4, - anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(8736), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221204] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4609), 1, + sym_comment, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(8730), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [223448] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221252] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4650), 1, + STATE(4610), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1387), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -428436,7 +426565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1334), 25, + ACTIONS(1389), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -428462,31 +426591,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [223496] = 6, + [221300] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, - anon_sym_DOT2, - ACTIONS(8760), 1, - aux_sym_unquoted_token6, - STATE(4651), 1, + STATE(4611), 1, sym_comment, - ACTIONS(863), 13, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(861), 22, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221348] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4612), 1, + sym_comment, + ACTIONS(1387), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -428494,48 +426649,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [223548] = 4, - ACTIONS(105), 1, + [221396] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4652), 1, + STATE(4613), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1387), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428546,43 +426723,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [223596] = 6, - ACTIONS(105), 1, + [221444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - ACTIONS(8762), 1, - anon_sym_DOT2, - STATE(4653), 1, + STATE(4614), 1, sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1387), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428593,41 +426767,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [223648] = 6, - ACTIONS(105), 1, + [221492] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8764), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8766), 1, - aux_sym__immediate_decimal_token2, - STATE(4654), 1, + STATE(4615), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 33, - anon_sym_RBRACK, + ACTIONS(1387), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428638,18 +426811,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [221540] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4616), 1, + sym_comment, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [223700] = 4, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4655), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1102), 12, + ACTIONS(1387), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -428662,7 +426873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1104), 25, + ACTIONS(1389), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -428688,39 +426899,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [223748] = 6, - ACTIONS(105), 1, + [221636] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4603), 1, - aux_sym_cell_path_repeat1, - STATE(4656), 1, + STATE(4618), 1, sym_comment, - STATE(4967), 1, - sym_path, - ACTIONS(977), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1387), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428731,31 +426943,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [221684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4619), 1, + sym_comment, + ACTIONS(1387), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [223800] = 7, + ACTIONS(1389), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [221732] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + STATE(4620), 1, + sym_comment, + ACTIONS(857), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8641), 1, anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4657), 1, - sym_comment, - STATE(5358), 1, - sym_cell_path, - ACTIONS(1033), 33, + ACTIONS(855), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -428781,28 +427028,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [223854] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [221780] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8223), 1, + anon_sym_LPAREN, + ACTIONS(8233), 1, + anon_sym_DASH2, + ACTIONS(8235), 1, + anon_sym_PLUS2, + ACTIONS(8723), 1, + anon_sym_LT, + ACTIONS(8725), 1, + anon_sym_DOT2, + ACTIONS(8727), 1, + anon_sym_EQ2, + ACTIONS(8729), 1, + aux_sym__immediate_decimal_token1, + STATE(4621), 1, + sym_comment, + STATE(6324), 1, + sym__var, + STATE(6842), 1, + sym__immediate_decimal, + STATE(6841), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1971), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1973), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [221850] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + STATE(4622), 1, + sym_comment, + ACTIONS(896), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8768), 1, anon_sym_DOT2, - STATE(4565), 1, - sym_path, - STATE(4658), 1, - sym_comment, - STATE(4958), 1, - sym_cell_path, - ACTIONS(997), 33, + ACTIONS(894), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -428828,26 +427127,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [223908] = 6, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [221898] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8771), 1, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(8731), 1, anon_sym_DOT2, - STATE(4659), 1, + STATE(5045), 1, + sym_path, + STATE(4623), 2, sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(807), 33, + aux_sym_cell_path_repeat1, + ACTIONS(942), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -428872,34 +427176,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [223960] = 4, + [221950] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4660), 1, + STATE(4624), 1, sym_comment, - ACTIONS(1252), 5, + ACTIONS(1368), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1254), 32, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1370), 25, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -428915,40 +427220,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [224008] = 4, - ACTIONS(3), 1, + [221998] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4661), 1, + ACTIONS(8734), 1, + aux_sym__immediate_decimal_token2, + STATE(4625), 1, sym_comment, - ACTIONS(1113), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1115), 32, - anon_sym_COMMA, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 33, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -428962,26 +427263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [224056] = 5, + sym_filesize_unit, + sym_duration_unit, + [222048] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token3, - STATE(4662), 1, + ACTIONS(927), 1, + anon_sym_LF, + ACTIONS(8669), 1, + anon_sym_DOT2, + STATE(4626), 1, sym_comment, - ACTIONS(825), 2, - anon_sym_RBRACK, + STATE(4636), 1, + sym_path, + STATE(5358), 1, + sym_cell_path, + ACTIONS(925), 33, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(823), 34, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429007,70 +427312,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [224106] = 14, + [222102] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - ACTIONS(8774), 1, + ACTIONS(8736), 1, aux_sym_unquoted_token5, - STATE(4663), 1, + STATE(4627), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6845), 1, - sym__immediate_decimal, - STATE(6843), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 8, + ACTIONS(1191), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1195), 18, - anon_sym_LBRACK, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1193), 24, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [222152] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(4526), 1, + anon_sym_DOT2, + ACTIONS(4528), 1, + aux_sym_unquoted_token6, + STATE(4628), 1, + sym_comment, + ACTIONS(877), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [224174] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [222204] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(931), 1, + anon_sym_LF, + ACTIONS(8669), 1, + anon_sym_DOT2, + STATE(4629), 1, + sym_comment, + STATE(4636), 1, + sym_path, + STATE(5310), 1, + sym_cell_path, + ACTIONS(929), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [222258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8776), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - ACTIONS(8778), 1, + ACTIONS(8740), 1, aux_sym_unquoted_token6, - STATE(4664), 1, + STATE(4630), 1, sym_comment, - ACTIONS(863), 13, + ACTIONS(879), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429084,7 +427473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(861), 22, + ACTIONS(877), 22, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -429102,25 +427491,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [224226] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [222310] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4631), 1, + sym_comment, + ACTIONS(1421), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1423), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [222358] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, + STATE(4632), 1, + sym_comment, + STATE(4640), 1, + aux_sym_cell_path_repeat1, + STATE(4994), 1, + sym_path, + ACTIONS(975), 2, anon_sym_LF, - ACTIONS(8641), 1, anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4665), 1, - sym_comment, - STATE(5331), 1, - sym_cell_path, - ACTIONS(909), 33, + ACTIONS(973), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -429154,66 +427586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [224280] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - ACTIONS(8774), 1, - aux_sym_unquoted_token5, - STATE(4666), 1, - sym_comment, - STATE(6206), 1, - sym__var, - STATE(6839), 1, - sym__immediate_decimal, - STATE(6844), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1195), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [224348] = 4, + [222410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4667), 1, + STATE(4633), 1, sym_comment, - ACTIONS(1325), 12, + ACTIONS(1353), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -429226,7 +427604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1327), 25, + ACTIONS(1355), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -429252,40 +427630,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [224396] = 7, - ACTIONS(105), 1, + [222458] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1003), 1, - anon_sym_LF, - ACTIONS(8641), 1, - anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4668), 1, + STATE(4634), 1, sym_comment, - STATE(5269), 1, - sym_cell_path, - ACTIONS(1001), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1282), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1284), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -429296,69 +427674,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [224450] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4669), 1, - sym_comment, - ACTIONS(8782), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(8780), 21, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_do, - anon_sym_if, - anon_sym_match, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [224498] = 4, + [222506] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4670), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(905), 1, anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - ACTIONS(815), 34, + STATE(4635), 1, + sym_comment, + STATE(4639), 1, + aux_sym_cell_path_repeat1, + STATE(5045), 1, + sym_path, + ACTIONS(903), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429384,26 +427721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [224546] = 5, + [222560] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8547), 1, - aux_sym__immediate_decimal_token2, - STATE(4671), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(905), 1, anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - ACTIONS(807), 33, + STATE(4636), 1, + sym_comment, + STATE(4702), 1, + aux_sym_cell_path_repeat1, + STATE(4994), 1, + sym_path, + ACTIONS(903), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429429,26 +427768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [224596] = 6, + [222614] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym_unquoted_token6, - ACTIONS(8784), 1, + ACTIONS(8744), 1, anon_sym_DOT2, - STATE(4672), 1, + ACTIONS(8746), 1, + aux_sym_unquoted_token4, + ACTIONS(8748), 1, + aux_sym_unquoted_token6, + STATE(4637), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 33, + ACTIONS(8742), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -429476,22 +427816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [224648] = 7, + [222670] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + STATE(4638), 1, + sym_comment, + ACTIONS(817), 2, anon_sym_LF, - ACTIONS(8641), 1, anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4673), 1, - sym_comment, - STATE(5277), 1, - sym_cell_path, - ACTIONS(990), 33, + ACTIONS(815), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -429525,23 +427858,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [224702] = 5, + sym_filesize_unit, + sym_duration_unit, + [222718] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8568), 1, - aux_sym__immediate_decimal_token2, - STATE(4674), 1, + STATE(4623), 1, + aux_sym_cell_path_repeat1, + STATE(4639), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + STATE(5045), 1, + sym_path, + ACTIONS(975), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(973), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429567,155 +427906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [224752] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8788), 1, - anon_sym_LT, - STATE(4675), 1, - sym_comment, - ACTIONS(8786), 36, - anon_sym_COMMA, - 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, - [224800] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8790), 1, - anon_sym_LT, - STATE(4676), 1, - sym_comment, - ACTIONS(8786), 36, - anon_sym_COMMA, - 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, - [224848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4677), 1, - sym_comment, - ACTIONS(1321), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1323), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [224896] = 7, + [222770] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(8641), 1, + ACTIONS(8750), 1, anon_sym_DOT2, - STATE(4588), 1, + STATE(4994), 1, sym_path, - STATE(4678), 1, + STATE(4640), 2, sym_comment, - STATE(5280), 1, - sym_cell_path, - ACTIONS(967), 33, + aux_sym_cell_path_repeat1, + ACTIONS(942), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -429749,77 +427952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [224950] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - ACTIONS(8792), 1, - aux_sym__unquoted_in_list_token6, - STATE(4679), 1, - sym_comment, - STATE(6206), 1, - sym__var, - STATE(6839), 1, - sym__immediate_decimal, - STATE(6844), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(8594), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8596), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [225018] = 5, + [222822] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token2, - STATE(4680), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, + ACTIONS(935), 1, anon_sym_LF, + ACTIONS(8753), 1, anon_sym_DOT2, - ACTIONS(844), 33, + STATE(4635), 1, + sym_path, + STATE(4641), 1, + sym_comment, + STATE(5098), 1, + sym_cell_path, + ACTIONS(933), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -429845,37 +427999,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [225068] = 4, - ACTIONS(105), 1, + [222876] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4681), 1, + STATE(4642), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1319), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1321), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -429886,18 +428043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [225116] = 4, + [222924] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4682), 1, + STATE(4643), 1, sym_comment, - ACTIONS(990), 12, + ACTIONS(949), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -429910,7 +428061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(992), 25, + ACTIONS(951), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -429936,26 +428087,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [225164] = 6, + [222972] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8796), 1, - anon_sym_DOT2, - ACTIONS(8799), 1, - aux_sym__immediate_decimal_token2, - STATE(4683), 1, + STATE(4644), 1, sym_comment, - ACTIONS(837), 2, - ts_builtin_sym_end, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(835), 33, + anon_sym_DOT2, + ACTIONS(807), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -429982,24 +428131,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [225216] = 6, - ACTIONS(105), 1, + [223020] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8223), 1, + anon_sym_LPAREN, + ACTIONS(8231), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8233), 1, + anon_sym_DASH2, + ACTIONS(8235), 1, + anon_sym_PLUS2, + ACTIONS(8725), 1, anon_sym_DOT2, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token2, - STATE(4684), 1, + ACTIONS(8756), 1, + anon_sym_LT, + ACTIONS(8758), 1, + anon_sym_EQ2, + STATE(4645), 1, sym_comment, - ACTIONS(837), 2, - ts_builtin_sym_end, + STATE(6324), 1, + sym__var, + STATE(6840), 1, + sym__immediate_decimal, + STATE(6839), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1874), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1876), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [223090] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(935), 1, anon_sym_LF, - ACTIONS(835), 33, + ACTIONS(8669), 1, + anon_sym_DOT2, + STATE(4636), 1, + sym_path, + STATE(4646), 1, + sym_comment, + STATE(5108), 1, + sym_cell_path, + ACTIONS(933), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -430025,78 +428233,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [225268] = 6, - ACTIONS(105), 1, + [223144] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(4706), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8762), 1, + anon_sym_LT, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(4708), 1, - aux_sym_unquoted_token6, - STATE(4685), 1, + ACTIONS(8766), 1, + anon_sym_EQ2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4647), 1, sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, + STATE(6346), 1, + sym__var, + STATE(6911), 1, + sym__immediate_decimal, + STATE(6910), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1981), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1983), 18, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [223214] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + ACTIONS(8774), 1, + anon_sym_LT, + ACTIONS(8776), 1, + anon_sym_EQ2, + STATE(4648), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6913), 1, + sym__immediate_decimal, + STATE(6912), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1999), 7, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2001), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [223284] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + ACTIONS(8778), 1, + anon_sym_LT, + ACTIONS(8780), 1, + anon_sym_EQ2, + STATE(4649), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6916), 1, + sym__immediate_decimal, + STATE(6915), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2007), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(2009), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [225320] = 7, + [223354] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_LF, - ACTIONS(8641), 1, + ACTIONS(8782), 1, anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4686), 1, + ACTIONS(8785), 1, + aux_sym__immediate_decimal_token2, + STATE(4650), 1, sym_comment, - STATE(5282), 1, - sym_cell_path, - ACTIONS(971), 33, + ACTIONS(848), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(846), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -430121,12 +428442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [225374] = 4, + sym_filesize_unit, + sym_duration_unit, + [223406] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4687), 1, + STATE(4651), 1, sym_comment, - ACTIONS(1005), 12, + ACTIONS(1191), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -430139,7 +428462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1007), 25, + ACTIONS(1193), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -430165,77 +428488,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [225422] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4688), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 34, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [225470] = 14, + [223454] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8770), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8772), 1, anon_sym_PLUS2, - ACTIONS(8792), 1, - aux_sym__unquoted_in_list_token6, - STATE(4689), 1, + ACTIONS(8787), 1, + anon_sym_LT, + ACTIONS(8789), 1, + anon_sym_EQ2, + STATE(4652), 1, sym_comment, - STATE(6206), 1, + STATE(6346), 1, sym__var, - STATE(6845), 1, + STATE(6918), 1, sym__immediate_decimal, - STATE(6843), 2, + STATE(6917), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(8594), 8, + ACTIONS(2015), 7, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -430243,13 +428524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8596), 18, + ACTIONS(2017), 18, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -430263,40 +428541,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [225538] = 7, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [223524] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_LF, - ACTIONS(8641), 1, - anon_sym_DOT2, - STATE(4588), 1, - sym_path, - STATE(4690), 1, + STATE(4653), 1, sym_comment, - STATE(4958), 1, - sym_cell_path, - ACTIONS(997), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1425), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1427), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -430307,15 +428587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [225592] = 4, + [223572] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4691), 1, + STATE(4654), 1, sym_comment, - ACTIONS(1305), 12, + ACTIONS(1429), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -430328,7 +428605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1307), 25, + ACTIONS(1431), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -430354,83 +428631,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [225640] = 4, - ACTIONS(105), 1, + [223620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4692), 1, + STATE(4655), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1433), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [225688] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_LF, - ACTIONS(8806), 1, - anon_sym_DOT2, - STATE(4975), 1, - sym_path, - STATE(4693), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 33, - anon_sym_SEMI, + ACTIONS(1435), 25, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -430441,36 +428675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [225740] = 5, + [223668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_QMARK2, - STATE(4694), 1, + STATE(4656), 1, sym_comment, - ACTIONS(1054), 5, + ACTIONS(1266), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1056), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1268), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -430486,36 +428719,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [225790] = 5, + [223716] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_QMARK2, - STATE(4695), 1, + STATE(4657), 1, sym_comment, - ACTIONS(1054), 5, + ACTIONS(1266), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1056), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1268), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -430531,87 +428763,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [225840] = 5, - ACTIONS(105), 1, + [223764] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - aux_sym__immediate_decimal_token2, - STATE(4696), 1, + STATE(4658), 1, sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1082), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [225890] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4693), 1, - aux_sym_cell_path_repeat1, - STATE(4697), 1, - sym_comment, - STATE(4975), 1, - sym_path, - ACTIONS(977), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(1084), 32, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -430625,80 +428807,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [225942] = 15, + [223812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8204), 1, - anon_sym_LPAREN, - ACTIONS(8214), 1, - anon_sym_DASH2, - ACTIONS(8216), 1, - anon_sym_PLUS2, - ACTIONS(8813), 1, - anon_sym_LT, - ACTIONS(8815), 1, - anon_sym_DOT2, - ACTIONS(8817), 1, - anon_sym_EQ2, - ACTIONS(8819), 1, - aux_sym__immediate_decimal_token1, - STATE(4698), 1, + STATE(4659), 1, sym_comment, - STATE(6463), 1, - sym__var, - STATE(6815), 1, - sym__immediate_decimal, - STATE(6818), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1841), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(817), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [226012] = 6, + ACTIONS(815), 23, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [223860] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(8821), 1, + ACTIONS(8791), 1, anon_sym_DOT2, - ACTIONS(8823), 1, + ACTIONS(8793), 1, aux_sym_unquoted_token6, - STATE(4699), 1, + STATE(4660), 1, sym_comment, - ACTIONS(861), 34, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -430726,23 +428897,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [226064] = 4, + [223912] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4700), 1, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token2, + STATE(4661), 1, sym_comment, - ACTIONS(891), 3, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 34, + ACTIONS(807), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -430769,14 +428942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [226112] = 4, + [223962] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4701), 1, + STATE(4662), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(809), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(807), 23, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -430784,26 +428971,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [224010] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4663), 1, + sym_comment, + ACTIONS(857), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 35, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -430814,57 +429025,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226160] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4702), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + [224058] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4664), 1, + sym_comment, + ACTIONS(8795), 37, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + [224104] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4665), 1, + sym_comment, + ACTIONS(857), 14, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4703), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(855), 23, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -430872,125 +429102,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [224152] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4666), 1, + sym_comment, + ACTIONS(896), 14, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(894), 23, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226256] = 15, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [224200] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3301), 1, + ACTIONS(2175), 1, + sym__entry_separator, + ACTIONS(2868), 1, anon_sym_DOLLAR, - ACTIONS(8204), 1, + ACTIONS(8253), 1, anon_sym_LPAREN, - ACTIONS(8212), 1, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8214), 1, + ACTIONS(8263), 1, anon_sym_DASH2, - ACTIONS(8216), 1, + ACTIONS(8265), 1, anon_sym_PLUS2, - ACTIONS(8815), 1, - anon_sym_DOT2, - ACTIONS(8825), 1, - anon_sym_LT, - ACTIONS(8827), 1, - anon_sym_EQ2, - STATE(4704), 1, + STATE(4667), 1, sym_comment, - STATE(6463), 1, + STATE(5928), 1, sym__var, - STATE(6785), 1, + STATE(6349), 1, sym__immediate_decimal, - STATE(6823), 2, + STATE(6348), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1829), 7, + ACTIONS(2173), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1831), 18, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [224266] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4668), 1, + sym_comment, + ACTIONS(8799), 16, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(8797), 21, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [224314] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2077), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4669), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6351), 1, + sym__immediate_decimal, + STATE(6350), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [226326] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [224380] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4705), 1, + ACTIONS(8801), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8803), 1, + aux_sym__immediate_decimal_token2, + STATE(4670), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 33, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431001,84 +429351,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226374] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4706), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [224432] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2081), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4671), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6353), 1, + sym__immediate_decimal, + STATE(6352), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226422] = 4, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [224498] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4707), 1, + ACTIONS(8805), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8807), 1, + aux_sym__immediate_decimal_token2, + STATE(4672), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 33, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431089,40 +429450,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226470] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4708), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [224550] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2073), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4673), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6355), 1, + sym__immediate_decimal, + STATE(6354), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [224616] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token2, + STATE(4674), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431133,35 +429549,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226518] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [224666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4709), 1, + STATE(4675), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(1086), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + ACTIONS(1088), 32, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -431177,40 +429595,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226566] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4710), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + [224714] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4676), 1, + sym_comment, + ACTIONS(896), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 35, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431221,40 +429637,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226614] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [224762] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4711), 1, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(8809), 1, + anon_sym_DOT2, + ACTIONS(8811), 1, + aux_sym_unquoted_token6, + STATE(4677), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(877), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431265,40 +429683,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226662] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [224814] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4712), 1, + ACTIONS(8793), 1, + aux_sym_unquoted_token6, + ACTIONS(8813), 1, + anon_sym_DOT2, + STATE(4678), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431309,168 +429729,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [226710] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4713), 1, - sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + sym_filesize_unit, + sym_duration_unit, + [224866] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4679), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6398), 1, + sym__immediate_decimal, + STATE(6397), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2106), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [224932] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2112), 1, + sym__entry_separator, + ACTIONS(2868), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4680), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6400), 1, + sym__immediate_decimal, + STATE(6399), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2110), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226758] = 4, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [224998] = 13, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4714), 1, + ACTIONS(2116), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4681), 1, sym_comment, - ACTIONS(1263), 12, - sym_identifier, - anon_sym_GT, + STATE(5928), 1, + sym__var, + STATE(6402), 1, + sym__immediate_decimal, + STATE(6401), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 25, - anon_sym_COLON, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [225064] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2120), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4682), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6404), 1, + sym__immediate_decimal, + STATE(6403), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [225130] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2124), 1, + sym__entry_separator, + ACTIONS(2868), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4683), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6407), 1, + sym__immediate_decimal, + STATE(6405), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226806] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [225196] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4715), 1, + ACTIONS(8815), 1, + anon_sym_QMARK2, + STATE(4684), 1, sym_comment, - ACTIONS(1247), 12, - sym_identifier, + ACTIONS(1070), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 25, - anon_sym_COLON, + ACTIONS(1072), 31, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226854] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token2, - STATE(4716), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431484,132 +430044,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [226904] = 4, + [225246] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4717), 1, + ACTIONS(8815), 1, + anon_sym_QMARK2, + STATE(4685), 1, sym_comment, - ACTIONS(1401), 12, - sym_identifier, + ACTIONS(1070), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1403), 25, - anon_sym_COLON, + ACTIONS(1072), 31, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [226952] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8547), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8829), 1, - anon_sym_DOT2, - STATE(4718), 1, - sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(807), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [227004] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LF, - ACTIONS(8832), 1, - anon_sym_DOT2, - ACTIONS(8834), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8836), 1, - aux_sym_unquoted_token2, - STATE(4719), 1, - sym_comment, - ACTIONS(1005), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -431623,12 +430089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [227058] = 4, + [225296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4720), 1, + STATE(4686), 1, sym_comment, - ACTIONS(1393), 12, + ACTIONS(1270), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -431641,7 +430107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1395), 25, + ACTIONS(1272), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -431667,164 +430133,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [227106] = 7, - ACTIONS(3), 1, + [225344] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_DASH, - STATE(4721), 1, + ACTIONS(2128), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4687), 1, sym_comment, - ACTIONS(1245), 8, - anon_sym_COLON, + STATE(5928), 1, + sym__var, + STATE(6409), 1, + sym__immediate_decimal, + STATE(6408), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 26, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(1247), 10, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 17, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [227160] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [225410] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_QMARK2, - STATE(4722), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, + ACTIONS(2132), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(1054), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4688), 1, + sym_comment, + STATE(5928), 1, + sym__var, + STATE(6413), 1, + sym__immediate_decimal, + STATE(6412), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [227209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - STATE(4723), 1, - sym_comment, - ACTIONS(863), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(861), 22, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [227258] = 5, + aux_sym__unquoted_in_list_token1, + [225476] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(4708), 1, - aux_sym_unquoted_token6, - STATE(4724), 1, + ACTIONS(2136), 1, + sym__entry_separator, + ACTIONS(2868), 1, + anon_sym_DOLLAR, + ACTIONS(8253), 1, + anon_sym_LPAREN, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8263), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_PLUS2, + STATE(4689), 1, sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, + STATE(5928), 1, + sym__var, + STATE(6415), 1, + sym__immediate_decimal, + STATE(6414), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 26, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -431835,8 +430284,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -431844,121 +430291,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [227307] = 7, - ACTIONS(105), 1, + aux_sym__unquoted_in_list_token1, + [225542] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_DOT2, - STATE(4725), 1, + STATE(4690), 1, sym_comment, - STATE(4788), 1, - sym_path, - STATE(5423), 1, - sym_cell_path, - ACTIONS(969), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(967), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1437), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [227360] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4726), 1, - sym_comment, - STATE(4732), 1, - aux_sym_cell_path_repeat1, - STATE(5169), 1, - sym_path, - ACTIONS(977), 13, + ACTIONS(1439), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(975), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [227413] = 7, + [225590] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(4727), 1, + STATE(4632), 1, + aux_sym_cell_path_repeat1, + STATE(4691), 1, sym_comment, - STATE(4788), 1, + STATE(4994), 1, sym_path, - STATE(5443), 1, - sym_cell_path, - ACTIONS(992), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(990), 31, + ACTIONS(903), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -431984,24 +430383,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [227466] = 6, + [225644] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2499), 1, - aux_sym_unquoted_token6, - ACTIONS(8844), 1, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(8817), 1, anon_sym_DOT2, - STATE(4728), 1, + STATE(4691), 1, + sym_path, + STATE(4692), 1, sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 32, + STATE(5108), 1, + sym_cell_path, + ACTIONS(933), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432027,23 +430430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [227517] = 7, + [225698] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(8820), 1, anon_sym_DOT2, - STATE(4729), 1, + ACTIONS(8823), 1, + aux_sym__immediate_decimal_token2, + STATE(4693), 1, sym_comment, - STATE(4788), 1, - sym_path, - STATE(5511), 1, - sym_cell_path, - ACTIONS(1003), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1001), 31, + ACTIONS(846), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -432075,170 +430474,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [227570] = 6, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [225750] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(4730), 1, + STATE(4694), 1, sym_comment, - ACTIONS(2998), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 32, - anon_sym_SEMI, + ACTIONS(8827), 16, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [227621] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token2, - STATE(4731), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8825), 21, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, + anon_sym_try, + anon_sym_return, + anon_sym_where, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [227672] = 6, - ACTIONS(3), 1, + [225798] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8854), 1, + ACTIONS(968), 1, + anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(5169), 1, + STATE(4636), 1, sym_path, - STATE(4732), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1015), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [227723] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4733), 1, + STATE(4695), 1, sym_comment, - ACTIONS(889), 6, + STATE(5010), 1, + sym_cell_path, + ACTIONS(966), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(891), 30, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432252,29 +430567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [227770] = 8, + [225852] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(8859), 1, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8829), 1, anon_sym_DOT2, - ACTIONS(8861), 1, - aux_sym_unquoted_token4, - ACTIONS(8863), 1, - aux_sym_unquoted_token6, - STATE(4734), 1, + STATE(4696), 1, sym_comment, - ACTIONS(8857), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 30, - anon_sym_RBRACK, + ACTIONS(817), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(815), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432300,39 +430611,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [227825] = 7, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [225904] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_DOT2, - STATE(4735), 1, + STATE(4697), 1, sym_comment, - STATE(4913), 1, - aux_sym_cell_path_repeat1, - STATE(5137), 1, - sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1357), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1359), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432343,24 +430657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [227878] = 7, + [225952] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_DOT2, - STATE(4736), 1, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token2, + STATE(4698), 1, sym_comment, - STATE(4788), 1, - sym_path, - STATE(5149), 1, - sym_cell_path, - ACTIONS(999), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(997), 31, + anon_sym_DOT2, + ACTIONS(815), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -432392,40 +430700,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [227931] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [226002] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym_unquoted_token5, - STATE(4737), 1, + STATE(4699), 1, sym_comment, - ACTIONS(1193), 12, - sym_identifier, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1195), 23, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432436,73 +430740,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [227980] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [226050] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + STATE(4700), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(8865), 1, anon_sym_DOT2, - STATE(4738), 1, - sym_comment, - STATE(4793), 1, - sym_path, - STATE(5257), 1, - sym_cell_path, - ACTIONS(979), 32, + ACTIONS(807), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [228033] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8868), 1, - anon_sym_DOT2, - STATE(4735), 1, - sym_path, - STATE(4739), 1, - sym_comment, - STATE(5305), 1, - sym_cell_path, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(979), 31, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432528,23 +430787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [228086] = 4, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [226098] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4740), 1, + STATE(4701), 1, sym_comment, - ACTIONS(863), 3, - ts_builtin_sym_end, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(861), 33, + ACTIONS(855), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -432571,27 +430833,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [228133] = 7, + aux_sym_unquoted_token6, + [226146] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(975), 1, + anon_sym_LF, + ACTIONS(8669), 1, anon_sym_DOT2, - STATE(4735), 1, - sym_path, - STATE(4741), 1, + STATE(4640), 1, + aux_sym_cell_path_repeat1, + STATE(4702), 1, sym_comment, - STATE(5149), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 31, + STATE(4994), 1, + sym_path, + ACTIONS(973), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432617,27 +430881,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [228186] = 7, + [226200] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(8555), 1, + aux_sym__immediate_decimal_token2, + STATE(4703), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8278), 1, anon_sym_DOT2, - STATE(4693), 1, - aux_sym_cell_path_repeat1, - STATE(4742), 1, - sym_comment, - STATE(4975), 1, - sym_path, - ACTIONS(975), 32, + ACTIONS(807), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432663,30 +430924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [228239] = 4, + sym_filesize_unit, + sym_duration_unit, + [226250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4743), 1, + STATE(4704), 1, sym_comment, - ACTIONS(844), 6, + ACTIONS(929), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(846), 30, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(931), 25, anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -432702,77 +430970,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [228286] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4744), 1, - sym_comment, - STATE(4761), 1, - aux_sym_cell_path_repeat1, - STATE(5169), 1, - sym_path, - ACTIONS(905), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(903), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [228339] = 7, + [226298] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_DOT2, - STATE(4745), 1, + STATE(4705), 1, sym_comment, - STATE(4788), 1, - sym_path, - STATE(5412), 1, - sym_cell_path, - ACTIONS(973), 2, - ts_builtin_sym_end, + ACTIONS(896), 2, anon_sym_LF, - ACTIONS(971), 31, + anon_sym_DOT2, + ACTIONS(894), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -432798,36 +431011,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [228392] = 4, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [226346] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4746), 1, + STATE(4706), 1, sym_comment, - ACTIONS(1115), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 34, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1054), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1056), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432838,39 +431058,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [226394] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token6, + STATE(4707), 1, + sym_comment, + STATE(6159), 1, + sym__var, + STATE(6712), 1, + sym__immediate_decimal, + STATE(6710), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(8333), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8335), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [226462] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4708), 1, + sym_comment, + ACTIONS(909), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [228439] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4747), 1, - sym_comment, - ACTIONS(1100), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 34, - anon_sym_SEMI, + ACTIONS(911), 25, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -432881,33 +431156,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [228486] = 4, + [226510] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4748), 1, + STATE(4709), 1, sym_comment, - ACTIONS(815), 6, + ACTIONS(1341), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(817), 30, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1343), 25, anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -432923,35 +431200,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [228533] = 4, + [226558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4749), 1, + STATE(4710), 1, sym_comment, - ACTIONS(1259), 5, + ACTIONS(1349), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1261), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1351), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -432967,98 +431244,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [228580] = 21, - ACTIONS(105), 1, + [226606] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8882), 1, - anon_sym_QMARK2, - ACTIONS(8890), 1, - anon_sym_bit_DASHand, - ACTIONS(8892), 1, - anon_sym_bit_DASHxor, - ACTIONS(8894), 1, - anon_sym_bit_DASHor, - ACTIONS(8896), 1, - anon_sym_and, - ACTIONS(8898), 1, - anon_sym_xor, - ACTIONS(8900), 1, - anon_sym_or, - STATE(4750), 1, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token6, + STATE(4711), 1, sym_comment, - STATE(5040), 1, - sym_path, - STATE(6053), 1, - sym_cell_path, - ACTIONS(8726), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8728), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8876), 2, + STATE(6159), 1, + sym__var, + STATE(6714), 1, + sym__immediate_decimal, + STATE(6713), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(8333), 8, anon_sym_DASH, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(8884), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(8886), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(8888), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8878), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(8880), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(8874), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [228661] = 4, - ACTIONS(3), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(8335), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [226674] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4751), 1, + ACTIONS(8834), 1, + aux_sym__immediate_decimal_token2, + STATE(4712), 1, sym_comment, - ACTIONS(807), 6, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 30, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433072,33 +431341,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [228708] = 6, + [226724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8590), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8902), 1, - anon_sym_DOT2, - STATE(4752), 1, + STATE(4713), 1, sym_comment, - ACTIONS(807), 6, + ACTIONS(1303), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 28, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1305), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -433114,35 +431387,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [228759] = 4, + [226772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4753), 1, + STATE(4714), 1, sym_comment, - ACTIONS(1228), 5, + ACTIONS(1307), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1230), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1309), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -433158,27 +431431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [228806] = 7, + [226820] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(8905), 1, + ACTIONS(8836), 1, anon_sym_DOT2, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8909), 1, - aux_sym_unquoted_token2, - STATE(4754), 1, + STATE(4715), 1, sym_comment, - ACTIONS(1005), 32, + ACTIONS(877), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -433207,23 +431474,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [228859] = 4, + sym_filesize_unit, + sym_duration_unit, + [226870] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4755), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, + ACTIONS(8492), 1, + aux_sym_unquoted_token6, + STATE(4716), 1, + sym_comment, + ACTIONS(877), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -433250,33 +431521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [228906] = 7, + [226920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4756), 1, + STATE(4717), 1, sym_comment, - STATE(4779), 1, - sym_path, - STATE(5371), 1, - sym_cell_path, - ACTIONS(969), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(967), 20, - sym_cmd_identifier, + ACTIONS(1329), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -433284,44 +431535,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1331), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [228959] = 6, + [226968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - anon_sym_DOT2, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token2, - STATE(4757), 1, + STATE(4718), 1, sym_comment, - ACTIONS(835), 6, + ACTIONS(1333), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(837), 28, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1335), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -433337,43 +431609,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [229010] = 7, - ACTIONS(105), 1, + [227016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_DOT2, - ACTIONS(8918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8920), 1, - aux_sym_unquoted_token2, - STATE(4758), 1, + STATE(4719), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1005), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1337), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1339), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433384,87 +431653,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [227064] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4720), 1, + sym_comment, + ACTIONS(1274), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [229063] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4759), 1, - sym_comment, - STATE(4829), 1, - aux_sym_cell_path_repeat1, - STATE(5348), 1, - sym_path, - ACTIONS(977), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1276), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [229114] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_DOT2, - STATE(4760), 1, - sym_comment, - STATE(4788), 1, - sym_path, - STATE(5394), 1, - sym_cell_path, - ACTIONS(911), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(909), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433475,35 +431697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [229167] = 6, + [227112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4732), 1, - aux_sym_cell_path_repeat1, - STATE(4761), 1, + STATE(4721), 1, sym_comment, - STATE(5169), 1, - sym_path, - ACTIONS(977), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(975), 20, - sym_cmd_identifier, + ACTIONS(1345), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -433511,47 +431711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [229218] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8922), 1, - anon_sym_DOT2, - STATE(4762), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 33, - anon_sym_SEMI, + ACTIONS(1347), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -433562,21 +431741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [229267] = 4, + [227160] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4763), 1, + ACTIONS(8838), 1, + anon_sym_DOT2, + STATE(4722), 1, sym_comment, - ACTIONS(1067), 3, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1065), 33, + ACTIONS(877), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -433610,28 +431785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [229314] = 8, + [227209] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6103), 1, + ACTIONS(919), 1, anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4764), 1, + STATE(4723), 1, sym_comment, - STATE(4917), 1, + STATE(4780), 1, sym_path, - STATE(5705), 1, + STATE(5375), 1, sym_cell_path, - ACTIONS(6106), 4, + ACTIONS(917), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(909), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -433657,36 +431831,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [229369] = 6, + [227262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token2, - STATE(4765), 1, + STATE(4724), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, + ACTIONS(877), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + ACTIONS(879), 30, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -433702,179 +431870,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [229420] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [227309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4766), 1, + STATE(4725), 1, sym_comment, - STATE(6075), 1, - sym__var, - STATE(6646), 1, - sym__immediate_decimal, - STATE(6867), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + ACTIONS(1177), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2177), 17, - anon_sym_LBRACK, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(1179), 30, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [229485] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4767), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6645), 1, - sym__immediate_decimal, - STATE(6647), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2171), 9, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2173), 17, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [229550] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4768), 1, - sym_comment, - STATE(4779), 1, - sym_path, - STATE(5150), 1, - sym_cell_path, - ACTIONS(981), 13, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(979), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [229603] = 6, + sym_duration_unit, + [227356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8928), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8930), 1, + ACTIONS(8840), 1, + anon_sym_DOT2, + ACTIONS(8843), 1, aux_sym__immediate_decimal_token2, - STATE(4769), 1, + STATE(4726), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(846), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 27, + ACTIONS(848), 26, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -433897,66 +431962,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [229654] = 7, + [227407] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(8847), 1, anon_sym_DOT2, - STATE(4770), 1, + ACTIONS(8849), 1, + aux_sym_unquoted_token4, + ACTIONS(8851), 1, + aux_sym_unquoted_token6, + STATE(4727), 1, sym_comment, - STATE(4779), 1, - sym_path, - STATE(5682), 1, - sym_cell_path, - ACTIONS(992), 13, + ACTIONS(8845), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(829), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(990), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [227462] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4728), 1, + sym_comment, + STATE(4735), 1, + sym_path, + STATE(5431), 1, + sym_cell_path, + ACTIONS(919), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(917), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [229707] = 6, + [227515] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8932), 1, + ACTIONS(8853), 1, anon_sym_DOT2, - STATE(5137), 1, + STATE(4729), 1, + sym_comment, + STATE(4735), 1, sym_path, - ACTIONS(1017), 2, + STATE(5376), 1, + sym_cell_path, + ACTIONS(961), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4771), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 31, + ACTIONS(959), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -433988,129 +432101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [229758] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4772), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6657), 1, - sym__immediate_decimal, - STATE(6654), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2149), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [229823] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4773), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6669), 1, - sym__immediate_decimal, - STATE(6659), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2128), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [229888] = 7, + [227568] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(8855), 1, anon_sym_DOT2, - STATE(4774), 1, + ACTIONS(8857), 1, + aux_sym_unquoted_token6, + STATE(4730), 1, sym_comment, - STATE(4788), 1, - sym_path, - STATE(5409), 1, - sym_cell_path, - ACTIONS(1035), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 31, + ACTIONS(877), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -434138,23 +432144,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [229941] = 4, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [227619] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4775), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4522), 1, + sym_path, + STATE(4731), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + STATE(4742), 1, + sym_cell_path, + ACTIONS(959), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(961), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [227672] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(8859), 1, + sym_filesize_unit, + ACTIONS(8861), 1, + sym_duration_unit, + STATE(4732), 1, + sym_comment, + ACTIONS(1054), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -434179,144 +432237,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [229988] = 14, - ACTIONS(3), 1, + [227723] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, + ACTIONS(951), 1, + anon_sym_LF, + ACTIONS(4989), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - ACTIONS(8935), 1, - aux_sym_unquoted_token5, - STATE(4776), 1, + ACTIONS(8863), 1, + anon_sym_DOT2, + ACTIONS(8865), 1, + aux_sym_unquoted_token2, + STATE(4733), 1, sym_comment, - STATE(6268), 1, - sym__var, - STATE(6962), 1, - sym__immediate_decimal, - STATE(6959), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 7, + ACTIONS(949), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1195), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [230055] = 14, - ACTIONS(3), 1, + [227776] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - ACTIONS(8935), 1, - aux_sym_unquoted_token5, - STATE(4777), 1, + STATE(4734), 1, sym_comment, - STATE(6268), 1, - sym__var, - STATE(6958), 1, - sym__immediate_decimal, - STATE(6956), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1193), 7, + STATE(4814), 1, + aux_sym_cell_path_repeat1, + STATE(5293), 1, + sym_path, + ACTIONS(903), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1195), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [230122] = 6, - ACTIONS(3), 1, + [227829] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8937), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8939), 1, - aux_sym__immediate_decimal_token2, - STATE(4778), 1, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4735), 1, sym_comment, - ACTIONS(815), 15, - sym_identifier, + STATE(4788), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, + sym_path, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 19, - anon_sym_DASH_DASH, + [227882] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8360), 1, anon_sym_DOT2, + STATE(4522), 1, + sym_path, + STATE(4736), 1, + sym_comment, + STATE(5460), 1, + sym_cell_path, + ACTIONS(925), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(927), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -434332,64 +432418,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [230173] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [227935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8869), 1, anon_sym_DOT2, - STATE(4726), 1, - aux_sym_cell_path_repeat1, - STATE(4779), 1, + STATE(4737), 1, sym_comment, - STATE(5169), 1, - sym_path, - ACTIONS(905), 13, + ACTIONS(815), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(903), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [227986] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4738), 1, + sym_comment, + ACTIONS(1221), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1223), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [230226] = 7, + [228033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(8872), 1, anon_sym_DOT2, - STATE(4744), 1, - sym_path, - STATE(4780), 1, + STATE(4739), 1, sym_comment, - STATE(5219), 1, - sym_cell_path, - ACTIONS(999), 13, + STATE(4801), 1, + aux_sym_cell_path_repeat1, + STATE(5142), 1, + sym_path, + ACTIONS(905), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -434403,7 +432534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(997), 20, + ACTIONS(903), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -434424,24 +432555,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [230279] = 4, + [228086] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4781), 1, - sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, + ACTIONS(968), 1, anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - ACTIONS(889), 33, + STATE(4740), 1, + sym_comment, + STATE(4898), 1, + sym_path, + STATE(5698), 1, + sym_cell_path, + ACTIONS(966), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -434455,8 +432592,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -434466,25 +432601,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [230326] = 6, + [228139] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8944), 1, - anon_sym_DOT2, - ACTIONS(8946), 1, - aux_sym_unquoted_token6, - STATE(4782), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, + ACTIONS(1179), 1, anon_sym_LF, - ACTIONS(861), 32, + STATE(4741), 1, + sym_comment, + ACTIONS(1177), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -434512,81 +432644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [230377] = 5, - ACTIONS(105), 1, + [228186] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(8823), 1, - aux_sym_unquoted_token6, - STATE(4783), 1, + STATE(4742), 1, sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(909), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [230426] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_QMARK2, - STATE(4784), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 33, + ACTIONS(911), 31, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -434600,28 +432687,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [230475] = 6, + [228233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8950), 1, - aux_sym__immediate_decimal_token2, - STATE(4785), 1, + STATE(4743), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(8659), 36, + anon_sym_COMMA, + 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, + [228278] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4744), 1, + sym_comment, + ACTIONS(807), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_DOLLAR, + ACTIONS(809), 30, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -434645,16 +432772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [230526] = 4, + [228325] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4786), 1, + STATE(4745), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 33, + ACTIONS(815), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -434688,64 +432815,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, aux_sym_unquoted_token6, - [230573] = 4, + [228372] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4522), 1, + sym_path, + STATE(4746), 1, + sym_comment, + STATE(4890), 1, + sym_cell_path, + ACTIONS(909), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(911), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [228425] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token2, + STATE(4747), 1, + sym_comment, + ACTIONS(807), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [228476] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4748), 1, + sym_comment, + STATE(4907), 1, + aux_sym_cell_path_repeat1, + STATE(5142), 1, + sym_path, + ACTIONS(905), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(903), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [228529] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4787), 1, + STATE(4749), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(1088), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(1086), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [228576] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4750), 1, + sym_comment, + STATE(5452), 1, + sym_cell_path, + ACTIONS(919), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(917), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [228629] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(8811), 1, aux_sym_unquoted_token6, - [230620] = 7, + STATE(4751), 1, + sym_comment, + ACTIONS(877), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [228678] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(8853), 1, anon_sym_DOT2, - STATE(4788), 1, - sym_comment, - STATE(4816), 1, - aux_sym_cell_path_repeat1, - STATE(5137), 1, + STATE(4735), 1, sym_path, - ACTIONS(905), 2, + STATE(4752), 1, + sym_comment, + STATE(5122), 1, + sym_cell_path, + ACTIONS(968), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(903), 31, + ACTIONS(966), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -434777,79 +433131,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [230673] = 20, + [228731] = 20, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8278), 1, + ACTIONS(8132), 1, anon_sym_DOT2, - ACTIONS(8954), 1, + ACTIONS(8880), 1, anon_sym_LF, - ACTIONS(8970), 1, + ACTIONS(8896), 1, anon_sym_bit_DASHand, - ACTIONS(8972), 1, + ACTIONS(8898), 1, anon_sym_bit_DASHxor, - ACTIONS(8974), 1, + ACTIONS(8900), 1, anon_sym_bit_DASHor, - ACTIONS(8976), 1, + ACTIONS(8902), 1, anon_sym_and, - ACTIONS(8978), 1, + ACTIONS(8904), 1, anon_sym_xor, - ACTIONS(8980), 1, + ACTIONS(8906), 1, anon_sym_or, - STATE(4789), 1, + STATE(4753), 1, sym_comment, - STATE(4917), 1, + STATE(4780), 1, sym_path, - STATE(5433), 1, + STATE(5410), 1, sym_cell_path, - ACTIONS(8958), 2, + ACTIONS(8884), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8964), 2, + ACTIONS(8890), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8966), 2, + ACTIONS(8892), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8968), 2, + ACTIONS(8894), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(8952), 4, + ACTIONS(8878), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(8960), 4, + ACTIONS(8886), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(8962), 4, + ACTIONS(8888), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(8956), 6, + ACTIONS(8882), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [230752] = 7, + [228810] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(4728), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8982), 1, - anon_sym_DOT2, - ACTIONS(8984), 1, - aux_sym_unquoted_token2, - STATE(4790), 1, + ACTIONS(4528), 1, + aux_sym_unquoted_token6, + STATE(4754), 1, sym_comment, - ACTIONS(1005), 32, + ACTIONS(877), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -434873,6 +433223,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -434882,200 +433234,248 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [230805] = 4, + [228859] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4791), 1, + STATE(4755), 1, sym_comment, - ACTIONS(809), 3, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 33, + ACTIONS(855), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - aux_sym_unquoted_token6, - [230852] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4779), 1, - sym_path, - STATE(4792), 1, - sym_comment, - STATE(5751), 1, - sym_cell_path, - ACTIONS(1003), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1001), 20, - sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [230905] = 7, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [228906] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(8986), 1, - anon_sym_DOT2, - STATE(4759), 1, - aux_sym_cell_path_repeat1, - STATE(4793), 1, + STATE(4756), 1, sym_comment, - STATE(5348), 1, - sym_path, - ACTIONS(903), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1185), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1187), 31, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [230958] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8988), 1, + anon_sym_EQ_GT, anon_sym_DOT2, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8992), 1, - aux_sym_unquoted_token2, - STATE(4794), 1, - sym_comment, - ACTIONS(1007), 13, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1005), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [228953] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8908), 1, + anon_sym_COMMA, + STATE(4757), 1, + sym_comment, + ACTIONS(8910), 35, + 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, + [229000] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4758), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [231011] = 6, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [229047] = 21, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5074), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - ACTIONS(5076), 1, - aux_sym_unquoted_token6, - STATE(4795), 1, + ACTIONS(8920), 1, + anon_sym_QMARK2, + ACTIONS(8928), 1, + anon_sym_bit_DASHand, + ACTIONS(8930), 1, + anon_sym_bit_DASHxor, + ACTIONS(8932), 1, + anon_sym_bit_DASHor, + ACTIONS(8934), 1, + anon_sym_and, + ACTIONS(8936), 1, + anon_sym_xor, + ACTIONS(8938), 1, + anon_sym_or, + STATE(4759), 1, + sym_comment, + STATE(4981), 1, + sym_path, + STATE(5853), 1, + sym_cell_path, + ACTIONS(8627), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8629), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8914), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8922), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(8924), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8926), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8916), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8918), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(8912), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [229128] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4760), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 32, + anon_sym_DOT2, + ACTIONS(807), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -435108,76 +433508,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [231062] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - STATE(4796), 1, - sym_comment, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [231117] = 6, + aux_sym_unquoted_token6, + [229175] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9002), 1, + ACTIONS(8360), 1, anon_sym_DOT2, - STATE(4797), 1, + STATE(4522), 1, + sym_path, + STATE(4761), 1, sym_comment, - ACTIONS(807), 8, + STATE(5756), 1, + sym_cell_path, + ACTIONS(929), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, + ACTIONS(931), 28, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -435199,21 +433555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [231168] = 7, + [229228] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(931), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(8867), 1, anon_sym_DOT2, - STATE(4798), 1, + STATE(4762), 1, sym_comment, - STATE(4860), 1, + STATE(4898), 1, sym_path, - STATE(5712), 1, + STATE(5435), 1, sym_cell_path, - ACTIONS(1033), 32, + ACTIONS(929), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -435246,28 +433601,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [231221] = 7, + [229281] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + STATE(4763), 1, + sym_comment, + ACTIONS(1179), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9005), 1, anon_sym_DOT2, - STATE(4600), 1, - sym_path, - STATE(4799), 1, - sym_comment, - STATE(5329), 1, - sym_cell_path, - ACTIONS(997), 32, + ACTIONS(1177), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -435292,81 +433642,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [231274] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [229328] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DOT2, - ACTIONS(9011), 1, - aux_sym__immediate_decimal_token2, - STATE(4800), 1, + STATE(4764), 1, sym_comment, - ACTIONS(835), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 26, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, sym_duration_unit, - [231325] = 5, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [229375] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9013), 1, - aux_sym__immediate_decimal_token2, - STATE(4801), 1, + STATE(4765), 1, sym_comment, - ACTIONS(844), 8, + ACTIONS(1084), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1082), 34, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435380,81 +433730,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [231374] = 5, - ACTIONS(3), 1, + [229422] = 20, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8666), 1, - aux_sym__immediate_decimal_token2, - STATE(4802), 1, + ACTIONS(8132), 1, + anon_sym_DOT2, + ACTIONS(8942), 1, + anon_sym_LF, + ACTIONS(8958), 1, + anon_sym_bit_DASHand, + ACTIONS(8960), 1, + anon_sym_bit_DASHxor, + ACTIONS(8962), 1, + anon_sym_bit_DASHor, + ACTIONS(8964), 1, + anon_sym_and, + ACTIONS(8966), 1, + anon_sym_xor, + ACTIONS(8968), 1, + anon_sym_or, + STATE(4766), 1, sym_comment, - ACTIONS(815), 8, - anon_sym_GT, + STATE(4780), 1, + sym_path, + STATE(5374), 1, + sym_cell_path, + ACTIONS(8946), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + ACTIONS(8952), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(8954), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(8956), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8940), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(8948), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8950), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(8944), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [231423] = 5, - ACTIONS(3), 1, + [229501] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token2, - STATE(4803), 1, + STATE(4767), 1, sym_comment, - ACTIONS(807), 8, + ACTIONS(896), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435468,37 +433830,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [231472] = 4, + [229548] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4768), 1, sym_comment, - ACTIONS(1313), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, + STATE(6159), 1, + sym__var, + STATE(6721), 1, + sym__immediate_decimal, + STATE(6720), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 8, + anon_sym_DASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1315), 31, - anon_sym_SEMI, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2175), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [229613] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4769), 1, + sym_comment, + ACTIONS(879), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(877), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435512,37 +433925,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [231519] = 6, + sym_filesize_unit, + sym_duration_unit, + [229660] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token2, - STATE(4805), 1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4770), 1, sym_comment, - ACTIONS(815), 8, - anon_sym_GT, + STATE(6159), 1, + sym__var, + STATE(6724), 1, + sym__immediate_decimal, + STATE(6723), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 8, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2077), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [229725] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8970), 1, anon_sym_DOT2, + ACTIONS(8972), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8974), 1, + aux_sym_unquoted_token2, + STATE(4771), 1, + sym_comment, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435556,38 +434025,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [231570] = 6, - ACTIONS(3), 1, + [229778] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9021), 1, - aux_sym__immediate_decimal_token2, - STATE(4806), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token3, + STATE(4772), 1, sym_comment, - ACTIONS(807), 8, + ACTIONS(829), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(827), 33, + sym_identifier, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -435601,23 +434069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [231621] = 5, + [229827] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8724), 1, - aux_sym__immediate_decimal_token2, - STATE(4807), 1, - sym_comment, - ACTIONS(809), 2, + ACTIONS(8976), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 33, - anon_sym_RBRACK, + STATE(4773), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -435645,63 +434113,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [231670] = 7, - ACTIONS(3), 1, + [229876] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4779), 1, - sym_path, - STATE(4808), 1, + ACTIONS(879), 1, + anon_sym_LF, + STATE(4774), 1, sym_comment, - STATE(5384), 1, - sym_cell_path, - ACTIONS(973), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(971), 20, - sym_cmd_identifier, + ACTIONS(877), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [231723] = 4, + sym_filesize_unit, + sym_duration_unit, + [229923] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4809), 1, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4735), 1, + sym_path, + STATE(4775), 1, sym_comment, - ACTIONS(809), 3, + STATE(5499), 1, + sym_cell_path, + ACTIONS(927), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 33, + ACTIONS(925), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -435733,265 +434202,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [231770] = 5, + [229976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8760), 1, - aux_sym_unquoted_token6, - STATE(4810), 1, + STATE(4776), 1, sym_comment, - ACTIONS(863), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(861), 22, - sym_cmd_identifier, + ACTIONS(855), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, - [231819] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - ACTIONS(9037), 1, - anon_sym_bit_DASHxor, - ACTIONS(9039), 1, - anon_sym_bit_DASHor, - ACTIONS(9041), 1, - anon_sym_and, - ACTIONS(9043), 1, - anon_sym_xor, - ACTIONS(9045), 1, - anon_sym_or, - STATE(4811), 1, - sym_comment, - ACTIONS(8994), 2, + ACTIONS(857), 30, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9031), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9029), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [231898] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - ACTIONS(9037), 1, - anon_sym_bit_DASHxor, - ACTIONS(9039), 1, - anon_sym_bit_DASHor, - ACTIONS(9041), 1, - anon_sym_and, - ACTIONS(9043), 1, - anon_sym_xor, - STATE(4812), 1, - sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9031), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9029), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [231975] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - ACTIONS(9035), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(9037), 1, anon_sym_bit_DASHxor, - ACTIONS(9039), 1, anon_sym_bit_DASHor, - ACTIONS(9041), 1, anon_sym_and, - STATE(4813), 1, - sym_comment, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, anon_sym_xor, anon_sym_or, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9031), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9029), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [232050] = 13, + sym_duration_unit, + [230023] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(8375), 1, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, + ACTIONS(8770), 1, anon_sym_DASH2, - ACTIONS(8379), 1, + ACTIONS(8772), 1, anon_sym_PLUS2, - STATE(4814), 1, + ACTIONS(8978), 1, + aux_sym_unquoted_token5, + STATE(4777), 1, sym_comment, - STATE(6075), 1, + STATE(6346), 1, sym__var, - STATE(6832), 1, + STATE(6885), 1, sym__immediate_decimal, - STATE(6848), 2, + STATE(6882), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 9, + ACTIONS(1191), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2120), 17, + ACTIONS(1193), 18, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -436005,45 +434296,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [232115] = 13, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [230090] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(8375), 1, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, + ACTIONS(8770), 1, anon_sym_DASH2, - ACTIONS(8379), 1, + ACTIONS(8772), 1, anon_sym_PLUS2, - STATE(4815), 1, + ACTIONS(8978), 1, + aux_sym_unquoted_token5, + STATE(4778), 1, sym_comment, - STATE(6075), 1, + STATE(6346), 1, sym__var, - STATE(6830), 1, + STATE(6887), 1, sym__immediate_decimal, - STATE(6853), 2, + STATE(6886), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 9, + ACTIONS(1191), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2112), 17, + ACTIONS(1193), 18, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -436057,27 +434349,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [232180] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [230157] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4779), 1, + sym_comment, + STATE(5181), 1, + sym_cell_path, + ACTIONS(968), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(966), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [230210] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4771), 1, - aux_sym_cell_path_repeat1, - STATE(4816), 1, + STATE(4780), 1, sym_comment, - STATE(5137), 1, + STATE(4851), 1, + aux_sym_cell_path_repeat1, + STATE(5045), 1, sym_path, - ACTIONS(977), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(975), 31, + ACTIONS(903), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -436103,517 +434443,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [232233] = 17, - ACTIONS(3), 1, + [230263] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - ACTIONS(9037), 1, - anon_sym_bit_DASHxor, - ACTIONS(9039), 1, - anon_sym_bit_DASHor, - STATE(4817), 1, + ACTIONS(961), 1, + anon_sym_LF, + ACTIONS(8132), 1, + anon_sym_DOT2, + STATE(4780), 1, + sym_path, + STATE(4781), 1, sym_comment, - ACTIONS(8994), 2, + STATE(5450), 1, + sym_cell_path, + ACTIONS(959), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9031), 3, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9029), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [232306] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4818), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6806), 1, - sym__immediate_decimal, - STATE(6689), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2106), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2108), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [232371] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4819), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6786), 1, - sym__immediate_decimal, - STATE(6787), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2097), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [232436] = 7, + [230316] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(935), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4820), 1, - sym_comment, - STATE(4860), 1, + STATE(4780), 1, sym_path, - STATE(5524), 1, + STATE(4782), 1, + sym_comment, + STATE(5098), 1, sym_cell_path, - ACTIONS(967), 32, + ACTIONS(933), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [232489] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, anon_sym_in, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - ACTIONS(9037), 1, - anon_sym_bit_DASHxor, - STATE(4821), 1, - sym_comment, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9031), 3, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9029), 4, + [230369] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4735), 1, + sym_path, + STATE(4783), 1, + sym_comment, + STATE(5566), 1, + sym_cell_path, + ACTIONS(931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(929), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [232560] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [230422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4822), 1, + STATE(4784), 1, sym_comment, - STATE(6075), 1, - sym__var, - STATE(6739), 1, - sym__immediate_decimal, - STATE(6775), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 9, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, + ACTIONS(894), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2093), 17, - anon_sym_LBRACK, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(896), 30, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [232625] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4823), 1, - sym_comment, - STATE(6075), 1, - sym__var, - STATE(6730), 1, - sym__immediate_decimal, - STATE(6736), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 9, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2124), 17, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [232690] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - STATE(4824), 1, - sym_comment, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9031), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9029), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [232759] = 14, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [230469] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - STATE(4825), 1, + ACTIONS(927), 1, + anon_sym_LF, + ACTIONS(8132), 1, + anon_sym_DOT2, + STATE(4780), 1, + sym_path, + STATE(4785), 1, sym_comment, - ACTIONS(8994), 2, + STATE(5462), 1, + sym_cell_path, + ACTIONS(925), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8996), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9031), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9029), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [232826] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [230522] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8375), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8379), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - STATE(4826), 1, + STATE(4786), 1, sym_comment, - STATE(6075), 1, + STATE(6159), 1, sym__var, - STATE(6720), 1, + STATE(6644), 1, sym__immediate_decimal, - STATE(6727), 2, + STATE(6725), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 9, + ACTIONS(2079), 8, anon_sym_DASH, - anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2132), 17, + aux_sym__unquoted_in_list_token1, + ACTIONS(2081), 18, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -436627,96 +434722,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [232891] = 13, - ACTIONS(3), 1, + [230587] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8377), 1, - anon_sym_DASH2, - ACTIONS(8379), 1, - anon_sym_PLUS2, - STATE(4827), 1, + STATE(4787), 1, sym_comment, - STATE(6075), 1, - sym__var, - STATE(6718), 1, - sym__immediate_decimal, - STATE(6719), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 9, + ACTIONS(896), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym__, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2089), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [232956] = 9, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + aux_sym_unquoted_token6, + [230634] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - STATE(4828), 1, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4788), 1, sym_comment, - ACTIONS(8994), 2, + STATE(4874), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, + sym_path, + ACTIONS(975), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(973), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(8996), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -436727,19 +434808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [233013] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [230687] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(968), 1, anon_sym_LF, - ACTIONS(9047), 1, + ACTIONS(8980), 1, anon_sym_DOT2, - STATE(5348), 1, + STATE(4734), 1, sym_path, - STATE(4829), 2, + STATE(4789), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 32, + STATE(5193), 1, + sym_cell_path, + ACTIONS(966), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -436772,67 +434857,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [233064] = 5, - ACTIONS(3), 1, + [230740] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4830), 1, + ACTIONS(961), 1, + anon_sym_LF, + ACTIONS(8867), 1, + anon_sym_DOT2, + STATE(4790), 1, sym_comment, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(4898), 1, + sym_path, + STATE(5539), 1, + sym_cell_path, + ACTIONS(959), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [233113] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [230793] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(4791), 1, sym_comment, - ACTIONS(817), 3, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 33, + ACTIONS(807), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -436859,85 +434946,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [233160] = 7, + [230840] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - STATE(4832), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4792), 1, sym_comment, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 9, - sym_identifier, - anon_sym_GT, + STATE(6159), 1, + sym__var, + STATE(6729), 1, + sym__immediate_decimal, + STATE(6727), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 8, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 21, - anon_sym_COLON, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2073), 18, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [233213] = 7, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [230905] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4543), 1, - sym_path, - STATE(4833), 1, + ACTIONS(8983), 1, + anon_sym_QMARK2, + STATE(4793), 1, sym_comment, - STATE(5810), 1, - sym_cell_path, - ACTIONS(1033), 5, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1035), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -436951,91 +435042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233266] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9025), 1, - anon_sym_in, - STATE(4834), 1, - sym_comment, - ACTIONS(8994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(8996), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9031), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9029), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [233331] = 7, - ACTIONS(3), 1, + [230954] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(8853), 1, anon_sym_DOT2, - STATE(4543), 1, + STATE(4735), 1, sym_path, - STATE(4804), 1, - sym_cell_path, - STATE(4835), 1, + STATE(4794), 1, sym_comment, - ACTIONS(990), 5, + STATE(5774), 1, + sym_cell_path, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(992), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437049,36 +435088,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233384] = 4, - ACTIONS(3), 1, + [231007] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4836), 1, + STATE(4795), 1, sym_comment, - ACTIONS(990), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(992), 31, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437092,20 +435129,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233431] = 7, + sym_filesize_unit, + sym_duration_unit, + [231054] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(8867), 1, anon_sym_DOT2, - STATE(4837), 1, + STATE(4796), 1, sym_comment, - STATE(4860), 1, + STATE(4898), 1, sym_path, - STATE(5727), 1, + STATE(5606), 1, sym_cell_path, - ACTIONS(990), 32, + ACTIONS(909), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -437138,48 +435177,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [233484] = 11, - ACTIONS(3), 1, + [231107] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_SLASH_SLASH, - STATE(4838), 1, + ACTIONS(8803), 1, + aux_sym__immediate_decimal_token2, + STATE(4797), 1, sym_comment, - ACTIONS(8994), 2, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 33, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8998), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(8996), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9029), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -437188,85 +435215,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [233545] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [231156] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(5991), 1, + anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4779), 1, + STATE(4780), 1, sym_path, - STATE(4839), 1, + STATE(4798), 1, sym_comment, - STATE(5472), 1, + STATE(5462), 1, sym_cell_path, - ACTIONS(911), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(909), 20, - sym_cmd_identifier, + ACTIONS(5994), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(925), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [233598] = 7, + [231211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4543), 1, - sym_path, - STATE(4840), 1, + STATE(4799), 1, sym_comment, - STATE(5758), 1, - sym_cell_path, - ACTIONS(909), 5, + ACTIONS(815), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(911), 28, + sym_filesize_unit, + ACTIONS(817), 30, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [231258] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8807), 1, + aux_sym__immediate_decimal_token2, + STATE(4800), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 33, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437280,18 +435352,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233651] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [231307] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(8872), 1, anon_sym_DOT2, - STATE(4779), 1, - sym_path, - STATE(4841), 1, + STATE(4801), 1, sym_comment, - STATE(5527), 1, - sym_cell_path, - ACTIONS(1035), 13, + STATE(4835), 1, + aux_sym_cell_path_repeat1, + STATE(5142), 1, + sym_path, + ACTIONS(975), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -437305,7 +435380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1033), 20, + ACTIONS(973), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -437326,26 +435401,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233704] = 7, + [231360] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8983), 1, + anon_sym_QMARK2, + STATE(4802), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [231409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8985), 1, anon_sym_DOT2, - STATE(4543), 1, - sym_path, - STATE(4836), 1, - sym_cell_path, - STATE(4842), 1, + STATE(4803), 1, sym_comment, - ACTIONS(1001), 5, + ACTIONS(815), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1003), 28, + sym_filesize_unit, + ACTIONS(817), 28, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -437372,20 +435489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [233757] = 4, + sym_duration_unit, + [231460] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4843), 1, + STATE(4804), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 33, + ACTIONS(807), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -437415,27 +435532,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [233804] = 4, + aux_sym_unquoted_token6, + [231507] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4844), 1, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token2, + STATE(4805), 1, sym_comment, - ACTIONS(1065), 6, + ACTIONS(815), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(1067), 30, - anon_sym_COLON, - anon_sym_COMMA, + aux_sym_unquoted_token6, + ACTIONS(817), 27, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -437458,63 +435577,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [233851] = 7, + [231556] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + STATE(4806), 1, + sym_comment, + ACTIONS(896), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8986), 1, anon_sym_DOT2, - STATE(4845), 1, - sym_comment, - STATE(4860), 1, - sym_path, - STATE(5515), 1, - sym_cell_path, - ACTIONS(971), 32, + ACTIONS(894), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [233904] = 5, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [231603] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8766), 1, + ACTIONS(8988), 1, aux_sym__immediate_decimal_token2, - STATE(4846), 1, + STATE(4807), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(857), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(815), 33, + ACTIONS(855), 33, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -437548,15 +435664,33 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [233953] = 5, + [231652] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym_unquoted_token5, - STATE(4847), 1, + ACTIONS(8990), 1, + anon_sym_DOT2, + STATE(4748), 1, + sym_path, + STATE(4808), 1, sym_comment, - ACTIONS(1193), 12, - sym_identifier, + STATE(5222), 1, + sym_cell_path, + ACTIONS(935), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(933), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -437564,24 +435698,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1195), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + [231705] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(8993), 1, + anon_sym_DOT2, + ACTIONS(8996), 1, + aux_sym__immediate_decimal_token2, + STATE(4809), 1, + sym_comment, + ACTIONS(846), 33, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437592,27 +435749,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [234002] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [231756] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4848), 1, + ACTIONS(8680), 1, + aux_sym__immediate_decimal_token2, + STATE(4810), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(807), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(863), 30, - anon_sym_COLON, - anon_sym_COMMA, + aux_sym_unquoted_token6, + ACTIONS(809), 27, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -437635,22 +435799,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [234049] = 4, + [231805] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4849), 1, - sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(8803), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8998), 1, anon_sym_DOT2, - ACTIONS(889), 33, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(4811), 1, + sym_comment, + ACTIONS(815), 33, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -437678,27 +435843,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [234096] = 7, + aux_sym_unquoted_token6, + [231856] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_LF, - ACTIONS(8278), 1, - anon_sym_DOT2, - STATE(4850), 1, + STATE(4812), 1, sym_comment, - STATE(4917), 1, + STATE(4874), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, sym_path, - STATE(5737), 1, - sym_cell_path, - ACTIONS(967), 32, + ACTIONS(975), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(973), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -437724,20 +435889,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [234149] = 7, - ACTIONS(105), 1, + [231907] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(911), 1, - anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(9001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9003), 1, + aux_sym__immediate_decimal_token2, + STATE(4813), 1, + sym_comment, + ACTIONS(815), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT2, - STATE(4851), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [231958] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4814), 1, sym_comment, - STATE(4860), 1, + STATE(4830), 1, + aux_sym_cell_path_repeat1, + STATE(5293), 1, sym_path, - STATE(5403), 1, - sym_cell_path, - ACTIONS(909), 32, + ACTIONS(975), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(973), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -437770,32 +435979,162 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [234202] = 6, + [232009] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4815), 1, + sym_comment, + ACTIONS(9005), 36, + anon_sym_COMMA, + 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, + [232054] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4816), 1, + sym_comment, + ACTIONS(9007), 36, + anon_sym_COMMA, + 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, + [232099] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4817), 1, + sym_comment, + ACTIONS(9009), 36, + anon_sym_COMMA, + 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, + [232144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, + ACTIONS(9011), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9052), 1, + ACTIONS(9013), 1, aux_sym__immediate_decimal_token2, - STATE(4852), 1, + STATE(4818), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(815), 15, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(817), 19, + anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -437811,80 +436150,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [234253] = 5, - ACTIONS(105), 1, + [232195] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - aux_sym__immediate_decimal_token2, - STATE(4853), 1, - sym_comment, - ACTIONS(846), 2, + ACTIONS(8872), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 33, - anon_sym_RBRACK, + STATE(4739), 1, + sym_path, + STATE(4819), 1, + sym_comment, + STATE(5654), 1, + sym_cell_path, + ACTIONS(927), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(925), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [234302] = 6, + [232248] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, + ACTIONS(9015), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9058), 1, + ACTIONS(9017), 1, aux_sym__immediate_decimal_token2, - STATE(4854), 1, + STATE(4820), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(807), 15, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(809), 19, + anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -437900,89 +436241,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [234353] = 7, + [232299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, - anon_sym_DOT2, - STATE(4744), 1, - sym_path, - STATE(4855), 1, + STATE(4821), 1, sym_comment, - STATE(5150), 1, - sym_cell_path, - ACTIONS(981), 13, - anon_sym_DASH_DASH, + ACTIONS(1209), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1211), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(979), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [234406] = 7, - ACTIONS(105), 1, + [232346] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_LF, - ACTIONS(8278), 1, - anon_sym_DOT2, - STATE(4856), 1, + STATE(4822), 1, sym_comment, - STATE(4917), 1, - sym_path, - STATE(5329), 1, - sym_cell_path, - ACTIONS(997), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9019), 36, + anon_sym_COMMA, + 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, + [232391] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8736), 1, + aux_sym_unquoted_token5, + STATE(4823), 1, + sym_comment, + ACTIONS(1191), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1193), 23, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -437993,22 +436370,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [234459] = 4, + [232440] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4824), 1, + sym_comment, + STATE(6159), 1, + sym__var, + STATE(6804), 1, + sym__immediate_decimal, + STATE(6803), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2106), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2108), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [232505] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(4857), 1, + ACTIONS(9021), 1, + anon_sym_QMARK2, + STATE(4825), 1, sym_comment, - ACTIONS(861), 35, + ACTIONS(1072), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 33, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -438037,25 +436466,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [234506] = 4, + [232554] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4858), 1, + ACTIONS(9021), 1, + anon_sym_QMARK2, + STATE(4826), 1, sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, + ACTIONS(1072), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 33, + ACTIONS(1070), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -438080,27 +436510,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [234553] = 7, + [232603] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4827), 1, + sym_comment, + STATE(6159), 1, + sym__var, + STATE(6806), 1, + sym__immediate_decimal, + STATE(6805), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2110), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2112), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [232668] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token2, + STATE(4828), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_LF, anon_sym_DOT2, - STATE(4788), 1, - sym_path, - STATE(4859), 1, + ACTIONS(2998), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [232719] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, + ACTIONS(9027), 1, + anon_sym_DOT2, + STATE(4829), 1, sym_comment, - STATE(5305), 1, - sym_cell_path, - ACTIONS(981), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 31, + ACTIONS(877), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -438128,20 +436650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [234606] = 7, + sym_filesize_unit, + sym_duration_unit, + [232770] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(9029), 1, anon_sym_DOT2, - STATE(4860), 1, + STATE(5293), 1, + sym_path, + STATE(4830), 2, sym_comment, - STATE(4861), 1, aux_sym_cell_path_repeat1, - STATE(5348), 1, - sym_path, - ACTIONS(903), 32, + ACTIONS(942), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -438174,20 +436697,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [234659] = 7, + [232821] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(927), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(8867), 1, anon_sym_DOT2, - STATE(4829), 1, - aux_sym_cell_path_repeat1, - STATE(4861), 1, + STATE(4831), 1, sym_comment, - STATE(5348), 1, + STATE(4898), 1, sym_path, - ACTIONS(975), 32, + STATE(5701), 1, + sym_cell_path, + ACTIONS(925), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -438220,78 +436743,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [234712] = 4, - ACTIONS(105), 1, + [232874] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1067), 1, - anon_sym_LF, - STATE(4862), 1, + STATE(4832), 1, sym_comment, - ACTIONS(1065), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1213), 5, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [234759] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(837), 1, - sym__entry_separator, - ACTIONS(9063), 1, - anon_sym_DOT2, - ACTIONS(9066), 1, - aux_sym__immediate_decimal_token2, - STATE(4863), 1, - sym_comment, - ACTIONS(835), 33, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(1215), 31, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -438305,23 +436786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [234810] = 7, + [232921] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(968), 1, anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(9032), 1, anon_sym_DOT2, - STATE(4864), 1, - sym_comment, - STATE(4917), 1, + STATE(4635), 1, sym_path, - STATE(5739), 1, + STATE(4833), 1, + sym_comment, + STATE(5151), 1, sym_cell_path, - ACTIONS(971), 32, + ACTIONS(966), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -438354,22 +436832,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [234863] = 4, + [232974] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4865), 1, + STATE(4834), 1, sym_comment, - ACTIONS(809), 3, + ACTIONS(896), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 33, + ACTIONS(894), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -438396,159 +436875,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [234910] = 6, - ACTIONS(105), 1, + [233021] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(9068), 1, - sym_filesize_unit, - ACTIONS(9070), 1, - sym_duration_unit, - STATE(4866), 1, + ACTIONS(9035), 1, + anon_sym_DOT2, + STATE(5142), 1, + sym_path, + STATE(4835), 2, sym_comment, - ACTIONS(1102), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + aux_sym_cell_path_repeat1, + ACTIONS(944), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [234961] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym_unquoted_token6, - STATE(4867), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 33, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(942), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [235010] = 7, - ACTIONS(105), 1, + [233072] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LF, - ACTIONS(8982), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8984), 1, - aux_sym_unquoted_token2, - ACTIONS(9072), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - STATE(4868), 1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4836), 1, sym_comment, - ACTIONS(1005), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6159), 1, + sym__var, + STATE(6808), 1, + sym__immediate_decimal, + STATE(6807), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 8, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2116), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [235063] = 6, + [233137] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(8724), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9074), 1, + ACTIONS(8853), 1, anon_sym_DOT2, - STATE(4869), 1, + STATE(4735), 1, + sym_path, + STATE(4837), 1, sym_comment, - ACTIONS(807), 33, - anon_sym_RBRACK, + STATE(5190), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -438574,420 +437018,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [235114] = 4, - ACTIONS(105), 1, + [233190] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4870), 1, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(4838), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(879), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [235161] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_LF, - ACTIONS(8986), 1, - anon_sym_DOT2, - STATE(4860), 1, - sym_path, - STATE(4871), 1, - sym_comment, - STATE(5733), 1, - sym_cell_path, - ACTIONS(997), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [235214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9077), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9079), 1, - aux_sym__immediate_decimal_token2, - STATE(4872), 1, - sym_comment, - ACTIONS(815), 14, - sym_identifier, + ACTIONS(877), 22, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [235265] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9081), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9083), 1, - aux_sym__immediate_decimal_token2, - STATE(4873), 1, - sym_comment, - ACTIONS(807), 14, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [235316] = 3, + [233239] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4874), 1, - sym_comment, - ACTIONS(8786), 36, - anon_sym_COMMA, - 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, - [235361] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(8872), 1, anon_sym_DOT2, - STATE(4860), 1, + STATE(4739), 1, sym_path, - STATE(4875), 1, + STATE(4839), 1, sym_comment, - STATE(5716), 1, + STATE(5563), 1, sym_cell_path, - ACTIONS(979), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [235414] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4876), 1, - sym_comment, - ACTIONS(1100), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(931), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [235461] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - STATE(4877), 1, - sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(929), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [235510] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4878), 1, - sym_comment, - ACTIONS(9085), 36, - anon_sym_COMMA, - 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, - [235555] = 4, + [233292] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4879), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, + ACTIONS(911), 1, anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - ACTIONS(844), 33, + STATE(4780), 1, + sym_path, + STATE(4840), 1, + sym_comment, + STATE(5784), 1, + sym_cell_path, + ACTIONS(909), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -439013,132 +437154,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [235602] = 7, + [233345] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(8986), 1, + ACTIONS(9038), 1, anon_sym_DOT2, - STATE(4860), 1, - sym_path, - STATE(4880), 1, + ACTIONS(9040), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9042), 1, + aux_sym_unquoted_token2, + STATE(4841), 1, sym_comment, - STATE(5798), 1, - sym_cell_path, - ACTIONS(1001), 32, + ACTIONS(949), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [235655] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - STATE(4881), 1, - sym_comment, - STATE(6206), 1, - sym__var, - STATE(6803), 1, - sym__immediate_decimal, - STATE(6807), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 8, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2177), 18, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [235720] = 13, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [233398] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - STATE(4882), 1, + STATE(4842), 1, sym_comment, - STATE(6206), 1, + STATE(6159), 1, sym__var, - STATE(6825), 1, + STATE(6811), 1, sym__immediate_decimal, - STATE(6789), 2, + STATE(6810), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 8, + ACTIONS(2118), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -439147,7 +437233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2173), 18, + ACTIONS(2120), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -439166,126 +437252,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [235785] = 13, - ACTIONS(3), 1, + [233463] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(931), 1, + anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - STATE(4883), 1, + STATE(4780), 1, + sym_path, + STATE(4843), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6725), 1, - sym__immediate_decimal, - STATE(6726), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 8, + STATE(5797), 1, + sym_cell_path, + ACTIONS(929), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2149), 18, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [233516] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9044), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9046), 1, + aux_sym__immediate_decimal_token2, + STATE(4844), 1, + sym_comment, + ACTIONS(2959), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [235850] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [233567] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9087), 1, - anon_sym_COMMA, - STATE(4884), 1, + STATE(4845), 1, sym_comment, - ACTIONS(9089), 35, - 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, - [235897] = 13, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [233614] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8358), 1, anon_sym_PLUS2, - STATE(4885), 1, + STATE(4846), 1, sym_comment, - STATE(6206), 1, + STATE(6159), 1, sym__var, - STATE(6656), 1, + STATE(6813), 1, sym__immediate_decimal, - STATE(6706), 2, + STATE(6812), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2126), 8, + ACTIONS(2122), 8, anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, @@ -439294,7 +437419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2128), 18, + ACTIONS(2124), 18, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -439313,19 +437438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [235962] = 4, + [233679] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4886), 1, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4812), 1, + aux_sym_cell_path_repeat1, + STATE(4847), 1, sym_comment, - ACTIONS(891), 3, + STATE(5229), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 33, + ACTIONS(903), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -439353,43 +437484,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [236009] = 8, - ACTIONS(3), 1, + [233732] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9093), 1, + ACTIONS(829), 1, + sym__entry_separator, + ACTIONS(9050), 1, anon_sym_DOT2, - ACTIONS(9095), 1, + ACTIONS(9052), 1, aux_sym_unquoted_token4, - ACTIONS(9097), 1, + ACTIONS(9054), 1, aux_sym_unquoted_token6, - STATE(4887), 1, + STATE(4848), 1, sym_comment, - ACTIONS(9091), 2, + ACTIONS(9048), 2, anon_sym_LT, anon_sym_EQ2, - ACTIONS(823), 6, + ACTIONS(827), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(825), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -439403,27 +437531,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236064] = 7, + [233787] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(9056), 1, anon_sym_DOT2, - STATE(4888), 1, - sym_comment, - STATE(4917), 1, + STATE(4847), 1, sym_path, - STATE(5731), 1, + STATE(4849), 1, + sym_comment, + STATE(5190), 1, sym_cell_path, - ACTIONS(1033), 32, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -439449,20 +437577,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236117] = 7, + [233840] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4850), 1, + sym_comment, + STATE(6159), 1, + sym__var, + STATE(6817), 1, + sym__immediate_decimal, + STATE(6814), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 8, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2128), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [233905] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(975), 1, anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4889), 1, + STATE(4623), 1, + aux_sym_cell_path_repeat1, + STATE(4851), 1, sym_comment, - STATE(4917), 1, + STATE(5045), 1, sym_path, - STATE(5724), 1, - sym_cell_path, - ACTIONS(990), 32, + ACTIONS(973), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -439495,27 +437675,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236170] = 7, + [233958] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, - anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(9059), 1, anon_sym_DOT2, - STATE(4890), 1, - sym_comment, - STATE(4917), 1, + STATE(4847), 1, sym_path, - STATE(5705), 1, + STATE(4852), 1, + sym_comment, + STATE(5122), 1, sym_cell_path, - ACTIONS(909), 32, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(966), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -439541,36 +437721,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236223] = 4, - ACTIONS(105), 1, + [234011] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + ACTIONS(9062), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token2, + STATE(4853), 1, sym_comment, - ACTIONS(1115), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -439584,81 +437765,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236270] = 3, + sym_duration_unit, + [234062] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4892), 1, - sym_comment, - ACTIONS(9099), 36, - anon_sym_COMMA, - 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, - [236315] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1003), 1, - anon_sym_LF, - ACTIONS(8278), 1, - anon_sym_DOT2, - STATE(4893), 1, + ACTIONS(9066), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9068), 1, + aux_sym__immediate_decimal_token2, + STATE(4854), 1, sym_comment, - STATE(4917), 1, - sym_path, - STATE(5699), 1, - sym_cell_path, - ACTIONS(1001), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(807), 7, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -439672,20 +437810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [236368] = 7, + sym_duration_unit, + [234113] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(9101), 1, + ACTIONS(8863), 1, anon_sym_DOT2, - STATE(4793), 1, - sym_path, - STATE(4894), 1, + ACTIONS(8865), 1, + aux_sym_unquoted_token2, + ACTIONS(9070), 1, + aux_sym__immediate_decimal_token1, + STATE(4855), 1, sym_comment, - STATE(5299), 1, - sym_cell_path, - ACTIONS(997), 32, + ACTIONS(949), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -439718,83 +437857,317 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [236421] = 13, + [234166] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4856), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [234213] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(2251), 1, + aux_sym_unquoted_token6, + STATE(4857), 1, + sym_comment, + ACTIONS(877), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [234262] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + STATE(4858), 1, + sym_comment, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - STATE(4895), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234323] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + STATE(4859), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6743), 1, - sym__immediate_decimal, - STATE(6742), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2118), 8, + ACTIONS(9074), 2, anon_sym_DASH, - anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2120), 18, - anon_sym_LBRACK, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 21, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [236486] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234378] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4896), 1, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + STATE(4860), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(9072), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9076), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1224), 31, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 12, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234443] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + STATE(4861), 1, + sym_comment, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 9, + sym_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234496] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4862), 1, + sym_comment, + ACTIONS(9078), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(1391), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -439810,230 +438183,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [234545] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + STATE(4863), 1, + sym_comment, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [236533] = 13, + ACTIONS(1393), 19, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234602] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, - anon_sym_DASH2, - ACTIONS(8429), 1, - anon_sym_PLUS2, - STATE(4897), 1, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + STATE(4864), 1, sym_comment, - STATE(6206), 1, - sym__var, - STATE(6746), 1, - sym__immediate_decimal, - STATE(6744), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2110), 8, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, anon_sym_DASH, - anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2112), 18, - anon_sym_LBRACK, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 10, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [236598] = 5, - ACTIONS(105), 1, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234669] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token3, - STATE(4898), 1, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + STATE(4865), 1, sym_comment, - ACTIONS(825), 2, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 9, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - ACTIONS(823), 33, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [234738] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + ACTIONS(9094), 1, + anon_sym_bit_DASHxor, + STATE(4866), 1, + sym_comment, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 8, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_bit_DASHor, + [234809] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, anon_sym_in, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + ACTIONS(9094), 1, + anon_sym_bit_DASHxor, + ACTIONS(9096), 1, + anon_sym_bit_DASHor, + STATE(4867), 1, + sym_comment, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [234882] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + ACTIONS(9094), 1, + anon_sym_bit_DASHxor, + ACTIONS(9096), 1, + anon_sym_bit_DASHor, + ACTIONS(9098), 1, + anon_sym_and, + STATE(4868), 1, + sym_comment, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9078), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9076), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9084), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [234957] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9080), 1, anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + ACTIONS(9094), 1, + anon_sym_bit_DASHxor, + ACTIONS(9096), 1, + anon_sym_bit_DASHor, + ACTIONS(9098), 1, + anon_sym_and, + ACTIONS(9100), 1, + anon_sym_xor, + STATE(4869), 1, + sym_comment, + ACTIONS(1391), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9072), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9074), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9078), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9082), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1393), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [235034] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(9080), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9086), 1, + anon_sym_in, + ACTIONS(9092), 1, anon_sym_bit_DASHand, + ACTIONS(9094), 1, anon_sym_bit_DASHxor, + ACTIONS(9096), 1, anon_sym_bit_DASHor, + ACTIONS(9098), 1, anon_sym_and, + ACTIONS(9100), 1, anon_sym_xor, + ACTIONS(9102), 1, anon_sym_or, - [236647] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4899), 1, + STATE(4870), 1, sym_comment, - ACTIONS(1189), 5, + ACTIONS(9072), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1191), 31, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(9074), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_PLUS, + ACTIONS(9078), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9082), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9076), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9088), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [236694] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token3, - STATE(4900), 1, - sym_comment, - ACTIONS(823), 35, - sym_identifier, + ACTIONS(1393), 7, anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [235113] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8740), 1, + aux_sym_unquoted_token6, + STATE(4871), 1, + sym_comment, + ACTIONS(879), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(877), 22, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [236741] = 13, + sym_filesize_unit, + sym_duration_unit, + [235162] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4901), 1, + STATE(4872), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6752), 1, + STATE(6692), 1, sym__immediate_decimal, - STATE(6751), 2, + STATE(6680), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 8, + ACTIONS(2173), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2108), 18, + aux_sym_unquoted_token1, + ACTIONS(2175), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440047,45 +438719,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [236806] = 13, + [235227] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4902), 1, + STATE(4873), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6762), 1, + STATE(6705), 1, sym__immediate_decimal, - STATE(6758), 2, + STATE(6704), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 8, + ACTIONS(2075), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2097), 18, + aux_sym_unquoted_token1, + ACTIONS(2077), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440099,45 +438771,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [236871] = 13, + [235292] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9104), 1, + anon_sym_DOT2, + STATE(5229), 1, + sym_path, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4874), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [235343] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4903), 1, + STATE(4875), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6766), 1, + STATE(6728), 1, sym__immediate_decimal, - STATE(6765), 2, + STATE(6709), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 8, + ACTIONS(2079), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2093), 18, + aux_sym_unquoted_token1, + ACTIONS(2081), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440151,91 +438868,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [236936] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DOT2, - STATE(4779), 1, - sym_path, - STATE(4904), 1, - sym_comment, - STATE(5219), 1, - sym_cell_path, - ACTIONS(999), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(997), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [236989] = 13, + [235408] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4905), 1, + STATE(4876), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6769), 1, + STATE(6738), 1, sym__immediate_decimal, - STATE(6768), 2, + STATE(6731), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 8, + ACTIONS(2071), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2124), 18, + aux_sym_unquoted_token1, + ACTIONS(2073), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440249,23 +438920,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [237054] = 4, + [235473] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4906), 1, + ACTIONS(8793), 1, + aux_sym_unquoted_token6, + STATE(4877), 1, sym_comment, - ACTIONS(846), 3, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 33, + ACTIONS(877), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -440292,45 +438964,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [237101] = 13, + [235522] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4907), 1, + STATE(4878), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6771), 1, + STATE(6851), 1, sym__immediate_decimal, - STATE(6770), 2, + STATE(6850), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 8, + ACTIONS(2106), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2132), 18, + aux_sym_unquoted_token1, + ACTIONS(2108), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440344,45 +439016,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [237166] = 13, + [235587] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(8425), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8427), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - ACTIONS(8429), 1, + ACTIONS(8569), 1, anon_sym_PLUS2, - STATE(4908), 1, + STATE(4879), 1, sym_comment, - STATE(6206), 1, + STATE(6226), 1, sym__var, - STATE(6778), 1, + STATE(6854), 1, sym__immediate_decimal, - STATE(6773), 2, + STATE(6853), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 8, + ACTIONS(2110), 9, anon_sym_DASH, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2089), 18, + aux_sym_unquoted_token1, + ACTIONS(2112), 17, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, @@ -440396,949 +439068,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [237231] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9104), 1, - anon_sym_DOT2, - STATE(4909), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [237280] = 20, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8278), 1, - anon_sym_DOT2, - ACTIONS(9108), 1, - anon_sym_LF, - ACTIONS(9124), 1, - anon_sym_bit_DASHand, - ACTIONS(9126), 1, - anon_sym_bit_DASHxor, - ACTIONS(9128), 1, - anon_sym_bit_DASHor, - ACTIONS(9130), 1, - anon_sym_and, - ACTIONS(9132), 1, - anon_sym_xor, - ACTIONS(9134), 1, - anon_sym_or, - STATE(4910), 1, - sym_comment, - STATE(4917), 1, - sym_path, - STATE(5419), 1, - sym_cell_path, - ACTIONS(9112), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9118), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9120), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9122), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9106), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9114), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9116), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9110), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [237359] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9136), 1, - anon_sym_QMARK2, - STATE(4911), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237408] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9136), 1, - anon_sym_QMARK2, - STATE(4912), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237457] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4771), 1, - aux_sym_cell_path_repeat1, - STATE(4913), 1, - sym_comment, - STATE(5137), 1, - sym_path, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237508] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4914), 1, - sym_comment, - ACTIONS(9138), 36, - anon_sym_COMMA, - 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, - [237553] = 3, + [235652] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4915), 1, - sym_comment, - ACTIONS(9140), 36, - anon_sym_COMMA, - 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, - [237598] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(8278), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - STATE(4916), 1, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4880), 1, sym_comment, - STATE(4917), 1, - sym_path, - STATE(5103), 1, - sym_cell_path, - ACTIONS(979), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + STATE(6226), 1, + sym__var, + STATE(6858), 1, + sym__immediate_decimal, + STATE(6856), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237651] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(8278), 1, - anon_sym_DOT2, - STATE(4742), 1, - aux_sym_cell_path_repeat1, - STATE(4917), 1, - sym_comment, - STATE(4975), 1, - sym_path, - ACTIONS(903), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2116), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237704] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(4918), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(5921), 1, - sym_cell_path, - ACTIONS(992), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(990), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237756] = 7, - ACTIONS(105), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [235717] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9142), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - STATE(4919), 1, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4881), 1, sym_comment, - STATE(4924), 1, - sym_path, - STATE(5534), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(6226), 1, + sym__var, + STATE(6647), 1, + sym__immediate_decimal, + STATE(6867), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [237808] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - anon_sym_LF, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9145), 1, - anon_sym_DOT2, - STATE(4920), 1, - sym_comment, - ACTIONS(2996), 32, - anon_sym_SEMI, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2120), 17, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [237858] = 6, - ACTIONS(105), 1, + [235782] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(9148), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(9151), 1, - aux_sym__immediate_decimal_token2, - STATE(4921), 1, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4882), 1, sym_comment, - ACTIONS(3489), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6226), 1, + sym__var, + STATE(6651), 1, + sym__immediate_decimal, + STATE(6648), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2124), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [237908] = 20, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - ACTIONS(9167), 1, - anon_sym_bit_DASHand, - ACTIONS(9169), 1, - anon_sym_bit_DASHxor, - ACTIONS(9171), 1, - anon_sym_bit_DASHor, - ACTIONS(9173), 1, - anon_sym_and, - ACTIONS(9175), 1, - anon_sym_xor, - ACTIONS(9177), 1, - anon_sym_or, - STATE(4922), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(6033), 1, - sym_cell_path, - ACTIONS(8952), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8954), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9155), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9161), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9163), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9165), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9157), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9159), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9153), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [237986] = 4, - ACTIONS(105), 1, + [235847] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token3, - STATE(4923), 1, - sym_comment, - ACTIONS(823), 34, - sym_identifier, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(8472), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [238032] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(4924), 1, - sym_comment, - STATE(5050), 1, - aux_sym_cell_path_repeat1, - STATE(5719), 1, - sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [238084] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4925), 1, - sym_comment, - STATE(5084), 1, - aux_sym_cell_path_repeat1, - STATE(5459), 1, - sym_path, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(975), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(8557), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4883), 1, + sym_comment, + STATE(6226), 1, + sym__var, + STATE(6658), 1, + sym__immediate_decimal, + STATE(6656), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 9, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2128), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [238134] = 7, - ACTIONS(105), 1, + [235912] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9179), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - STATE(4926), 1, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4884), 1, sym_comment, - STATE(4931), 1, - sym_path, - STATE(5591), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6226), 1, + sym__var, + STATE(6660), 1, + sym__immediate_decimal, + STATE(6659), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 9, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2132), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [238186] = 20, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - ACTIONS(9196), 1, - anon_sym_bit_DASHand, - ACTIONS(9198), 1, - anon_sym_bit_DASHxor, - ACTIONS(9200), 1, - anon_sym_bit_DASHor, - ACTIONS(9202), 1, - anon_sym_and, - ACTIONS(9204), 1, - anon_sym_xor, - ACTIONS(9206), 1, - anon_sym_or, - STATE(4927), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(5821), 1, - sym_cell_path, - ACTIONS(9106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9108), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9184), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9190), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9192), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9194), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9186), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9188), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9182), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [238264] = 6, + [235977] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(9210), 1, - aux_sym_unquoted_token6, - STATE(4928), 1, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8567), 1, + anon_sym_DASH2, + ACTIONS(8569), 1, + anon_sym_PLUS2, + STATE(4885), 1, sym_comment, - ACTIONS(861), 7, - anon_sym_GT, + STATE(6226), 1, + sym__var, + STATE(6663), 1, + sym__immediate_decimal, + STATE(6661), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym__, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2136), 17, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [238314] = 5, + anon_sym_RBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [236042] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2499), 1, - aux_sym_unquoted_token6, - STATE(4929), 1, + STATE(4886), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 32, + anon_sym_DOT2, + ACTIONS(855), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -441365,74 +439423,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [238362] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_comment, - STATE(4941), 1, - aux_sym_cell_path_repeat1, - STATE(5812), 1, - sym_path, - ACTIONS(903), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [238414] = 7, + [236089] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(915), 1, + anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - STATE(4925), 1, - aux_sym_cell_path_repeat1, - STATE(4931), 1, + STATE(4887), 1, sym_comment, - STATE(5459), 1, + STATE(4898), 1, sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 30, + STATE(5782), 1, + sym_cell_path, + ACTIONS(913), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -441455,191 +439469,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [238466] = 5, + [236142] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token2, - STATE(4932), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4888), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, - anon_sym_GT, + STATE(6159), 1, + sym__var, + STATE(6819), 1, + sym__immediate_decimal, + STATE(6818), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [238514] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9216), 1, - sym_filesize_unit, - ACTIONS(9218), 1, - sym_duration_unit, - STATE(4933), 1, - sym_comment, - ACTIONS(1104), 13, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2132), 18, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1102), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [238564] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - ACTIONS(9220), 1, - anon_sym_DOT2, - STATE(4934), 1, - sym_comment, - ACTIONS(861), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [238614] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(4935), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(5985), 1, - sym_cell_path, - ACTIONS(1003), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1001), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [238666] = 4, + [236207] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4936), 1, + STATE(4889), 1, sym_comment, - ACTIONS(1191), 2, + ACTIONS(1084), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1189), 33, + ACTIONS(1082), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -441649,6 +439539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -441673,34 +439564,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [238712] = 5, + [236254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, - aux_sym__immediate_decimal_token2, - STATE(4937), 1, + STATE(4890), 1, sym_comment, - ACTIONS(815), 15, - sym_identifier, + ACTIONS(1349), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + ACTIONS(1351), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -441716,393 +439604,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [238760] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - ACTIONS(9244), 1, - anon_sym_bit_DASHxor, - ACTIONS(9246), 1, - anon_sym_bit_DASHor, - ACTIONS(9248), 1, anon_sym_and, - ACTIONS(9250), 1, anon_sym_xor, - ACTIONS(9252), 1, anon_sym_or, - STATE(4938), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [238838] = 19, + [236301] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - ACTIONS(9244), 1, - anon_sym_bit_DASHxor, - ACTIONS(9246), 1, - anon_sym_bit_DASHor, - ACTIONS(9248), 1, - anon_sym_and, - ACTIONS(9250), 1, - anon_sym_xor, - STATE(4939), 1, + ACTIONS(9107), 1, + anon_sym_DOT2, + STATE(4748), 1, + sym_path, + STATE(4891), 1, sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, + STATE(5181), 1, + sym_cell_path, + ACTIONS(968), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9236), 4, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [238914] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - ACTIONS(9244), 1, - anon_sym_bit_DASHxor, - ACTIONS(9246), 1, - anon_sym_bit_DASHor, - ACTIONS(9248), 1, - anon_sym_and, - STATE(4940), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [238988] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(977), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4941), 1, - sym_comment, - STATE(5105), 1, - aux_sym_cell_path_repeat1, - STATE(5812), 1, - sym_path, - ACTIONS(975), 31, - anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(966), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [239040] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, anon_sym_bit_DASHand, - ACTIONS(9244), 1, anon_sym_bit_DASHxor, - ACTIONS(9246), 1, anon_sym_bit_DASHor, - STATE(4942), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [239112] = 16, + [236354] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - ACTIONS(9244), 1, - anon_sym_bit_DASHxor, - STATE(4943), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6134), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [239182] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - STATE(4944), 1, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(8354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8356), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_PLUS2, + STATE(4892), 1, sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, + STATE(6159), 1, + sym__var, + STATE(6822), 1, + sym__immediate_decimal, + STATE(6820), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 8, anon_sym_DASH, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 8, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2136), 18, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [239250] = 4, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [236419] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4945), 1, + STATE(4893), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1088), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1252), 33, + ACTIONS(1086), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -442112,6 +439723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -442136,93 +439748,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [239296] = 14, + [236466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4946), 1, + ACTIONS(9110), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9112), 1, + aux_sym__immediate_decimal_token2, + STATE(4894), 1, sym_comment, - ACTIONS(9222), 2, + ACTIONS(815), 14, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9228), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 9, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 20, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [239362] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4947), 1, - sym_comment, - ACTIONS(9224), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -442235,18 +439793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239418] = 5, + [236517] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4948), 1, + ACTIONS(9114), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9116), 1, + aux_sym__immediate_decimal_token2, + STATE(4895), 1, sym_comment, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, + ACTIONS(807), 14, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -442256,13 +439814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 21, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 20, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -442278,29 +439838,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239466] = 7, + [236568] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(975), 1, + anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - STATE(4949), 1, + STATE(4830), 1, + aux_sym_cell_path_repeat1, + STATE(4896), 1, sym_comment, - STATE(5098), 1, + STATE(5293), 1, sym_path, - STATE(6020), 1, - sym_cell_path, - ACTIONS(1003), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1001), 30, + ACTIONS(973), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -442323,37 +439884,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [239518] = 7, + [236621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4950), 1, + ACTIONS(8736), 1, + aux_sym_unquoted_token5, + STATE(4897), 1, sym_comment, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 9, + ACTIONS(1191), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 20, + ACTIONS(1193), 23, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -442368,17 +439928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239570] = 5, + [236670] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9254), 1, - anon_sym_QMARK2, - STATE(4951), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(905), 1, anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - ACTIONS(1054), 32, + STATE(4896), 1, + aux_sym_cell_path_repeat1, + STATE(4898), 1, + sym_comment, + STATE(5293), 1, + sym_path, + ACTIONS(903), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -442411,34 +439974,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [239618] = 5, + [236723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9256), 1, + ACTIONS(9118), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9120), 1, aux_sym__immediate_decimal_token2, - STATE(4952), 1, + STATE(4899), 1, sym_comment, - ACTIONS(844), 15, - sym_identifier, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 19, - anon_sym_DASH_DASH, + ACTIONS(817), 27, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -442454,68 +440015,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239666] = 13, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [236774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_in, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4953), 1, + ACTIONS(9122), 1, + anon_sym_DOT2, + ACTIONS(9125), 1, + aux_sym__immediate_decimal_token2, + STATE(4900), 1, sym_comment, - ACTIONS(9222), 2, + ACTIONS(846), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(9224), 2, + sym_filesize_unit, + ACTIONS(848), 28, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9238), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9236), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 11, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239730] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [236825] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9254), 1, - anon_sym_QMARK2, - STATE(4954), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(919), 1, anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - ACTIONS(1054), 32, + STATE(4898), 1, + sym_path, + STATE(4901), 1, + sym_comment, + STATE(5791), 1, + sym_cell_path, + ACTIONS(917), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -442548,42 +440110,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [239778] = 8, - ACTIONS(3), 1, + [236878] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4955), 1, + STATE(4902), 1, sym_comment, - ACTIONS(9224), 2, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9228), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -442594,35 +440148,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239832] = 6, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [236925] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9127), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9260), 1, + ACTIONS(9129), 1, aux_sym__immediate_decimal_token2, - STATE(4956), 1, + STATE(4903), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(807), 7, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -442636,71 +440197,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, sym_duration_unit, - [239882] = 11, + [236976] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_SLASH_SLASH, - STATE(4957), 1, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4904), 1, sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9224), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9230), 2, + STATE(5443), 1, + sym_cell_path, + ACTIONS(915), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9228), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9236), 4, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, - sym_identifier, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(913), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 14, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + [237029] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4905), 1, + sym_comment, + STATE(5222), 1, + sym_cell_path, + ACTIONS(935), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(933), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [239942] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [237082] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4958), 1, - sym_comment, - ACTIONS(1261), 2, + ACTIONS(968), 1, anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - ACTIONS(1259), 33, + STATE(4780), 1, + sym_path, + STATE(4906), 1, + sym_comment, + STATE(5151), 1, + sym_cell_path, + ACTIONS(966), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -442729,17 +440336,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [239988] = 6, + [237135] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9262), 1, - anon_sym_DOT2, - ACTIONS(9265), 1, - aux_sym__immediate_decimal_token2, - STATE(4959), 1, + STATE(4835), 1, + aux_sym_cell_path_repeat1, + STATE(4907), 1, sym_comment, - ACTIONS(835), 15, - sym_identifier, + STATE(5142), 1, + sym_path, + ACTIONS(975), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(973), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -442747,22 +440369,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 18, + [237186] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8853), 1, + anon_sym_DOT2, + STATE(4735), 1, + sym_path, + STATE(4908), 1, + sym_comment, + STATE(5403), 1, + sym_cell_path, + ACTIONS(915), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(913), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -442773,65 +440424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [240038] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9267), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9269), 1, - aux_sym__immediate_decimal_token2, - STATE(4960), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [240088] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [237239] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5330), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9271), 1, + ACTIONS(5063), 1, anon_sym_DOT2, - ACTIONS(9273), 1, - aux_sym_unquoted_token2, - STATE(4961), 1, + ACTIONS(5065), 1, + aux_sym_unquoted_token6, + STATE(4909), 1, sym_comment, - ACTIONS(1007), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 30, + ACTIONS(877), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -442853,6 +440461,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -442862,119 +440472,122 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [240140] = 6, - ACTIONS(105), 1, + [237290] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9275), 1, + ACTIONS(9131), 1, + anon_sym_DOT2, + ACTIONS(9133), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9277), 1, - aux_sym__immediate_decimal_token2, - STATE(4962), 1, + ACTIONS(9135), 1, + aux_sym_unquoted_token2, + STATE(4910), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(951), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [240190] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9281), 1, - anon_sym_DOT2, - ACTIONS(9283), 1, - aux_sym_unquoted_token4, - ACTIONS(9285), 1, - aux_sym_unquoted_token6, - STATE(4963), 1, - sym_comment, - ACTIONS(9279), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 11, - sym_identifier, + ACTIONS(949), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(825), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + [237343] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4911), 1, + sym_comment, + STATE(5809), 1, + sym_cell_path, + ACTIONS(961), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(959), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [240244] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [237396] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(9137), 1, anon_sym_DOT2, - STATE(4964), 1, - sym_comment, - STATE(5098), 1, + STATE(4734), 1, sym_path, - STATE(6001), 1, + STATE(4912), 1, + sym_comment, + STATE(5238), 1, sym_cell_path, - ACTIONS(992), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(990), 30, + ACTIONS(933), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -442997,64 +440610,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [240296] = 7, + [237449] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9287), 1, + ACTIONS(915), 1, + anon_sym_LF, + ACTIONS(8132), 1, anon_sym_DOT2, - STATE(4931), 1, + STATE(4780), 1, sym_path, - STATE(4965), 1, + STATE(4913), 1, sym_comment, - STATE(5713), 1, + STATE(5371), 1, sym_cell_path, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(979), 30, + ACTIONS(913), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [240348] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9290), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9292), 1, - aux_sym__immediate_decimal_token2, - STATE(4966), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -443084,37 +440656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [240398] = 4, - ACTIONS(105), 1, + [237502] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4967), 1, + ACTIONS(9140), 1, + aux_sym__immediate_decimal_token2, + STATE(4914), 1, sym_comment, - ACTIONS(1224), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(855), 8, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443128,12 +440699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [240444] = 4, + sym_duration_unit, + [237551] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4968), 1, + ACTIONS(8872), 1, + anon_sym_DOT2, + STATE(4739), 1, + sym_path, + STATE(4915), 1, sym_comment, - ACTIONS(863), 13, + STATE(5458), 1, + sym_cell_path, + ACTIONS(911), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -443147,7 +440725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(861), 22, + ACTIONS(909), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -443168,41 +440746,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [240490] = 8, - ACTIONS(3), 1, + [237604] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9093), 1, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(8867), 1, anon_sym_DOT2, - ACTIONS(9095), 1, - aux_sym_unquoted_token4, - ACTIONS(9097), 1, - aux_sym_unquoted_token6, - STATE(4969), 1, + STATE(4898), 1, + sym_path, + STATE(4916), 1, sym_comment, - ACTIONS(9091), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 6, - anon_sym_GT, + STATE(5573), 1, + sym_cell_path, + ACTIONS(933), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(825), 24, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [237657] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7904), 1, + aux_sym_unquoted_token3, + STATE(4917), 1, + sym_comment, + ACTIONS(827), 35, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443216,130 +440835,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [240544] = 14, + [237704] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(4970), 1, + ACTIONS(9112), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9142), 1, + anon_sym_DOT2, + STATE(4918), 1, sym_comment, - ACTIONS(9294), 2, + ACTIONS(815), 14, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9300), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 19, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [240610] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4971), 1, - sym_comment, - ACTIONS(1067), 13, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1065), 22, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [240656] = 5, + [237754] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(1179), 1, anon_sym_LF, - ACTIONS(8144), 1, - aux_sym_unquoted_token3, - STATE(4972), 1, + STATE(4919), 1, sym_comment, - ACTIONS(823), 33, + ACTIONS(1177), 34, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [237800] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + aux_sym__immediate_decimal_token2, + STATE(4920), 1, + sym_comment, + ACTIONS(855), 7, + anon_sym_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 27, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443353,35 +440963,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [240704] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [237848] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4973), 1, - sym_comment, - ACTIONS(1191), 2, - anon_sym_LF, + ACTIONS(9147), 1, anon_sym_DOT2, - ACTIONS(1189), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9150), 1, + aux_sym__immediate_decimal_token2, + STATE(4921), 1, + sym_comment, + ACTIONS(846), 7, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 26, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443395,36 +441007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [240750] = 5, - ACTIONS(105), 1, + sym_duration_unit, + [237898] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(9314), 1, - aux_sym_unquoted_token5, - STATE(4974), 1, + ACTIONS(9120), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9152), 1, + anon_sym_DOT2, + STATE(4922), 1, sym_comment, - ACTIONS(1193), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443438,230 +441051,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [240798] = 4, + sym_duration_unit, + [237948] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4975), 1, + ACTIONS(9155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9157), 1, + aux_sym__immediate_decimal_token2, + STATE(4923), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [237998] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9046), 1, + aux_sym__immediate_decimal_token2, + STATE(4924), 1, sym_comment, - ACTIONS(1224), 2, + ACTIONS(2959), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1222), 33, + ACTIONS(2957), 32, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [240844] = 20, - ACTIONS(3), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [238046] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - ACTIONS(9318), 1, - anon_sym_bit_DASHxor, - ACTIONS(9320), 1, - anon_sym_bit_DASHor, - ACTIONS(9322), 1, - anon_sym_and, - ACTIONS(9324), 1, - anon_sym_xor, - ACTIONS(9326), 1, - anon_sym_or, - STATE(4976), 1, + ACTIONS(5065), 1, + aux_sym_unquoted_token6, + STATE(4925), 1, sym_comment, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [240922] = 19, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [238094] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - ACTIONS(9318), 1, - anon_sym_bit_DASHxor, - ACTIONS(9320), 1, - anon_sym_bit_DASHor, - ACTIONS(9322), 1, - anon_sym_and, - ACTIONS(9324), 1, - anon_sym_xor, - STATE(4977), 1, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4926), 1, sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, + STATE(4973), 1, + sym_path, + STATE(6021), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COLON, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [238146] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9161), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9163), 1, + aux_sym__immediate_decimal_token2, + STATE(4927), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [240998] = 18, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [238196] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - ACTIONS(9318), 1, - anon_sym_bit_DASHxor, - ACTIONS(9320), 1, - anon_sym_bit_DASHor, - ACTIONS(9322), 1, - anon_sym_and, - STATE(4978), 1, + ACTIONS(8368), 1, + anon_sym_DOT2, + STATE(4928), 1, sym_comment, - ACTIONS(9294), 2, + STATE(4939), 1, + aux_sym_cell_path_repeat1, + STATE(5722), 1, + sym_path, + ACTIONS(975), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(973), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(9300), 3, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9308), 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [241072] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [238248] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9328), 1, + ACTIONS(9165), 1, aux_sym__immediate_decimal_token2, - STATE(4979), 1, + STATE(4929), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(3806), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3834), 32, + ACTIONS(3804), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -443694,17 +441359,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [241120] = 5, + [238296] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4930), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6934), 1, + sym__immediate_decimal, + STATE(6933), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2130), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2132), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [238360] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token2, - STATE(4980), 1, + ACTIONS(9167), 1, + anon_sym_QMARK2, + STATE(4931), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(1072), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2986), 32, + ACTIONS(1070), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -443737,59 +441453,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [241168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4981), 1, - sym_comment, - ACTIONS(889), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [241214] = 5, + [238408] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(4982), 1, + ACTIONS(9167), 1, + anon_sym_QMARK2, + STATE(4932), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(1072), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2996), 32, + ACTIONS(1070), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -443822,34 +441496,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [241262] = 4, - ACTIONS(3), 1, + [238456] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4983), 1, + ACTIONS(975), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4933), 1, sym_comment, - ACTIONS(844), 8, + STATE(5101), 1, + aux_sym_cell_path_repeat1, + STATE(5723), 1, + sym_path, + ACTIONS(973), 31, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -443863,319 +441541,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [241308] = 4, - ACTIONS(3), 1, + [238508] = 20, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4984), 1, - sym_comment, - ACTIONS(815), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(8368), 1, anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(9185), 1, anon_sym_bit_DASHand, + ACTIONS(9187), 1, anon_sym_bit_DASHxor, + ACTIONS(9189), 1, anon_sym_bit_DASHor, + ACTIONS(9191), 1, anon_sym_and, + ACTIONS(9193), 1, anon_sym_xor, + ACTIONS(9195), 1, anon_sym_or, - sym_duration_unit, - [241354] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - ACTIONS(9318), 1, - anon_sym_bit_DASHxor, - ACTIONS(9320), 1, - anon_sym_bit_DASHor, - STATE(4985), 1, + STATE(4934), 1, sym_comment, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COLON, - anon_sym_COMMA, + STATE(4981), 1, + sym_path, + STATE(5968), 1, + sym_cell_path, + ACTIONS(8878), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [241426] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - ACTIONS(9318), 1, - anon_sym_bit_DASHxor, - STATE(4986), 1, - sym_comment, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, + ACTIONS(8880), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9173), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9302), 2, + ACTIONS(9179), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, + ACTIONS(9181), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9312), 2, + ACTIONS(9183), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, + ACTIONS(9175), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [241496] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4987), 1, - sym_comment, - ACTIONS(807), 8, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(9177), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9171), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [241542] = 6, + [238586] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9330), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, anon_sym_DOT2, - STATE(4988), 1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4935), 1, sym_comment, - ACTIONS(807), 8, - anon_sym_GT, + STATE(6346), 1, + sym__var, + STATE(6936), 1, + sym__immediate_decimal, + STATE(6935), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2134), 7, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 25, - anon_sym_DASH_DASH, - anon_sym_in, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2136), 18, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [241592] = 15, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [238650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9316), 1, - anon_sym_bit_DASHand, - STATE(4989), 1, + STATE(4936), 1, sym_comment, - ACTIONS(9294), 2, + ACTIONS(1421), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9312), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9300), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 8, - anon_sym_COLON, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1423), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [241660] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9333), 1, - anon_sym_DOT2, - ACTIONS(9336), 1, - aux_sym__immediate_decimal_token2, - STATE(4990), 1, - sym_comment, - ACTIONS(835), 8, - anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 25, - anon_sym_DASH_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -444197,22 +441692,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [241710] = 7, + [238696] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(9197), 1, anon_sym_DOT2, - STATE(4991), 1, + STATE(4937), 1, sym_comment, - STATE(5098), 1, + STATE(4956), 1, sym_path, - STATE(5847), 1, + STATE(5409), 1, sym_cell_path, - ACTIONS(969), 2, + ACTIONS(968), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(967), 30, + ACTIONS(966), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444243,82 +441737,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [241762] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(4992), 1, - sym_comment, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 18, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [241818] = 6, + [238748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4993), 1, + STATE(4938), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, + ACTIONS(807), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 18, + ACTIONS(809), 26, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -444334,84 +441776,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [241868] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [238796] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4994), 1, + ACTIONS(9200), 1, + anon_sym_DOT2, + STATE(5722), 1, + sym_path, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4939), 2, sym_comment, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(942), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [241916] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(4995), 1, - sym_comment, - ACTIONS(9302), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9300), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 9, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444422,78 +441821,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [241968] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_in, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(4996), 1, - sym_comment, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9310), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9308), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [242032] = 5, + [238846] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9341), 1, - aux_sym__immediate_decimal_token2, - STATE(4997), 1, + STATE(4940), 1, sym_comment, - ACTIONS(844), 8, + ACTIONS(1303), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, - anon_sym_DASH_DASH, + ACTIONS(1305), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -444515,138 +441866,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [242080] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9343), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9345), 1, - aux_sym__immediate_decimal_token2, - STATE(4998), 1, - sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [242130] = 8, + [238892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(4999), 1, + STATE(4941), 1, sym_comment, - ACTIONS(9296), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9300), 3, + ACTIONS(1307), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 20, - anon_sym_COLON, + ACTIONS(1309), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [242184] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9304), 1, - anon_sym_SLASH_SLASH, - STATE(5000), 1, - sym_comment, - ACTIONS(9294), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9296), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9302), 2, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9306), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9308), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, - sym_identifier, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -444655,27 +441905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [242244] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [238938] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token2, - STATE(5001), 1, + ACTIONS(9203), 1, + sym_filesize_unit, + ACTIONS(9205), 1, + sym_duration_unit, + STATE(4942), 1, sym_comment, - ACTIONS(815), 8, + ACTIONS(1054), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, - anon_sym_DASH_DASH, + ACTIONS(1056), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -444697,81 +441952,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [242292] = 7, + [238988] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5002), 1, + STATE(4943), 1, sym_comment, - STATE(5098), 1, + STATE(4981), 1, sym_path, - STATE(5840), 1, + STATE(5868), 1, sym_cell_path, - ACTIONS(973), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(971), 30, + ACTIONS(929), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [242344] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9021), 1, - aux_sym__immediate_decimal_token2, - STATE(5003), 1, - sym_comment, - ACTIONS(807), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444785,21 +441997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [242392] = 6, + [239040] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9347), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9349), 1, - aux_sym__immediate_decimal_token2, - STATE(5004), 1, - sym_comment, - ACTIONS(2988), 3, + ACTIONS(9207), 1, + anon_sym_DOT2, + STATE(5700), 1, + sym_path, + ACTIONS(944), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 30, + STATE(4944), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -444830,35 +442041,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [242442] = 4, - ACTIONS(3), 1, + [239090] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5005), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(8195), 1, + aux_sym_unquoted_token3, + STATE(4945), 1, sym_comment, - ACTIONS(1005), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1007), 30, - anon_sym_COMMA, + ACTIONS(827), 33, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -444872,26 +442084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [242488] = 7, + [239138] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5006), 1, + ACTIONS(8857), 1, + aux_sym_unquoted_token6, + STATE(4946), 1, sym_comment, - STATE(5974), 1, - sym_cell_path, - ACTIONS(1001), 31, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 32, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -444917,30 +442125,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [242540] = 7, + sym_filesize_unit, + sym_duration_unit, + [239186] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DOT2, - STATE(5007), 1, + STATE(4947), 1, sym_comment, - STATE(5098), 1, - sym_path, - STATE(5816), 1, - sym_cell_path, - ACTIONS(911), 2, - ts_builtin_sym_end, + ACTIONS(1084), 2, anon_sym_LF, - ACTIONS(909), 30, + anon_sym_DOT2, + ACTIONS(1082), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -444962,21 +442169,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [242592] = 7, + [239232] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5008), 1, + STATE(4948), 1, sym_comment, - STATE(5040), 1, + STATE(4981), 1, sym_path, - STATE(5848), 1, + STATE(5938), 1, sym_cell_path, - ACTIONS(1035), 2, + ACTIONS(927), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 30, + ACTIONS(925), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -445007,110 +442214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [242644] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(992), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5009), 1, - sym_comment, - STATE(5927), 1, - sym_cell_path, - ACTIONS(990), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [242696] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9083), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9351), 1, - anon_sym_DOT2, - STATE(5010), 1, - sym_comment, - ACTIONS(807), 14, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [242746] = 7, + [239284] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DOT2, - STATE(5011), 1, + STATE(4944), 1, + aux_sym_cell_path_repeat1, + STATE(4949), 1, sym_comment, - STATE(5098), 1, + STATE(5700), 1, sym_path, - STATE(5856), 1, - sym_cell_path, - ACTIONS(1035), 2, + ACTIONS(975), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 30, + anon_sym_DOT2, + ACTIONS(973), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -445141,79 +442258,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [242798] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9354), 1, - anon_sym_DOT2, - ACTIONS(9356), 1, - aux_sym_unquoted_token6, - STATE(5012), 1, - sym_comment, - ACTIONS(861), 32, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [242848] = 6, + [239334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9358), 1, - anon_sym_DOT2, - ACTIONS(9361), 1, - aux_sym__immediate_decimal_token2, - STATE(5013), 1, + STATE(4950), 1, sym_comment, - ACTIONS(835), 14, - sym_identifier, + ACTIONS(1319), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 19, + ACTIONS(1321), 30, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -445229,16 +442297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [242898] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [239380] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(4951), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(1084), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1113), 32, + ACTIONS(1082), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -445271,39 +442342,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [242944] = 5, - ACTIONS(3), 1, + [239426] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9363), 1, - aux_sym__immediate_decimal_token2, - STATE(5015), 1, + ACTIONS(9210), 1, + anon_sym_DOT2, + ACTIONS(9212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9214), 1, + aux_sym_unquoted_token2, + STATE(4952), 1, sym_comment, - ACTIONS(844), 14, - sym_identifier, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445314,24 +442384,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [242992] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [239478] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5016), 1, + ACTIONS(8368), 1, + anon_sym_DOT2, + STATE(4953), 1, sym_comment, - ACTIONS(1100), 3, + STATE(5017), 1, + aux_sym_cell_path_repeat1, + STATE(5722), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 32, + ACTIONS(903), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -445356,24 +442432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243038] = 5, + [239530] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(9365), 1, - anon_sym_DOT2, - STATE(5017), 1, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, + STATE(4954), 1, sym_comment, - ACTIONS(1102), 33, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 32, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -445399,39 +442473,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243086] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [239578] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9079), 1, - aux_sym__immediate_decimal_token2, - STATE(5018), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4933), 1, + aux_sym_cell_path_repeat1, + STATE(4955), 1, sym_comment, - ACTIONS(815), 14, - sym_identifier, + STATE(5723), 1, + sym_path, + ACTIONS(903), 31, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445442,31 +442517,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [243134] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [239630] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9369), 1, + ACTIONS(9159), 1, anon_sym_DOT2, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - STATE(5019), 1, + STATE(4949), 1, + aux_sym_cell_path_repeat1, + STATE(4956), 1, sym_comment, - ACTIONS(9367), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 5, + STATE(5700), 1, + sym_path, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [239682] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4957), 1, + sym_comment, + ACTIONS(1329), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(825), 25, + ACTIONS(1331), 30, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -445488,64 +442607,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243188] = 3, - ACTIONS(3), 1, + [239728] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5020), 1, + ACTIONS(5303), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9216), 1, + anon_sym_DOT2, + ACTIONS(9218), 1, + aux_sym_unquoted_token2, + STATE(4958), 1, sym_comment, - ACTIONS(9375), 35, - 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, - [243232] = 7, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [239780] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(8019), 1, - anon_sym_COLON, - ACTIONS(8302), 1, - sym_filesize_unit, - ACTIONS(8304), 1, - sym_duration_unit, - STATE(5021), 1, + ACTIONS(9220), 1, + anon_sym_DOT2, + STATE(4959), 1, sym_comment, - ACTIONS(1102), 31, + ACTIONS(1054), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -445574,78 +442695,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243284] = 5, - ACTIONS(3), 1, + [239828] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9083), 1, - aux_sym__immediate_decimal_token2, - STATE(5022), 1, + ACTIONS(9222), 1, + anon_sym_DOT2, + STATE(4956), 1, + sym_path, + STATE(4960), 1, sym_comment, - ACTIONS(807), 14, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 20, + STATE(5622), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [243332] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [239880] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5023), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token3, + STATE(4961), 1, sym_comment, - ACTIONS(1193), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1195), 30, + ACTIONS(827), 34, + sym_identifier, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445659,23 +442782,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243378] = 4, + [239926] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4962), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6932), 1, + sym__immediate_decimal, + STATE(6931), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2126), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2128), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [239990] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5024), 1, + ACTIONS(9225), 1, + anon_sym_DOT2, + STATE(4953), 1, + sym_path, + STATE(4963), 1, sym_comment, - ACTIONS(1230), 2, + STATE(5475), 1, + sym_cell_path, + ACTIONS(935), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 33, + ACTIONS(933), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -445701,26 +442878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243424] = 7, + [240042] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(5025), 1, - sym_comment, - STATE(5040), 1, - sym_path, - STATE(5949), 1, - sym_cell_path, - ACTIONS(969), 2, - ts_builtin_sym_end, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(967), 30, + ACTIONS(8068), 1, + anon_sym_COLON, + ACTIONS(8156), 1, + sym_filesize_unit, + ACTIONS(8158), 1, + sym_duration_unit, + STATE(4964), 1, + sym_comment, + ACTIONS(1054), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -445746,31 +442923,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243476] = 8, + [240094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_DOT2, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - STATE(5026), 1, + STATE(4965), 1, sym_comment, - ACTIONS(9377), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 5, + ACTIONS(1333), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(825), 25, + ACTIONS(1335), 30, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -445792,18 +442965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243530] = 4, + [240140] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(4966), 1, sym_comment, - ACTIONS(1397), 5, + ACTIONS(1337), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1399), 30, + ACTIONS(1339), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -445834,24 +443007,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243576] = 7, + [240186] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, + STATE(4967), 1, + sym_comment, + ACTIONS(1088), 2, + anon_sym_LF, anon_sym_DOT2, - STATE(5028), 1, + ACTIONS(1086), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [240232] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4968), 1, sym_comment, - STATE(5040), 1, - sym_path, - STATE(6028), 1, - sym_cell_path, - ACTIONS(973), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(971), 30, + ACTIONS(877), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -445879,35 +443089,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243628] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [240278] = 20, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5029), 1, + ACTIONS(8368), 1, + anon_sym_DOT2, + ACTIONS(9242), 1, + anon_sym_bit_DASHand, + ACTIONS(9244), 1, + anon_sym_bit_DASHxor, + ACTIONS(9246), 1, + anon_sym_bit_DASHor, + ACTIONS(9248), 1, + anon_sym_and, + ACTIONS(9250), 1, + anon_sym_xor, + ACTIONS(9252), 1, + anon_sym_or, + STATE(4969), 1, sym_comment, - ACTIONS(1389), 5, - anon_sym_GT, + STATE(4981), 1, + sym_path, + STATE(6013), 1, + sym_cell_path, + ACTIONS(8940), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8942), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9236), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9240), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9232), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9234), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9228), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1391), 30, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [240356] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4970), 1, + sym_comment, + STATE(4973), 1, + sym_path, + STATE(5854), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(966), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [240408] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4971), 1, + sym_comment, + ACTIONS(1215), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -445921,18 +443236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243674] = 4, + [240454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(4972), 1, sym_comment, - ACTIONS(1385), 5, + ACTIONS(1425), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1387), 30, + ACTIONS(1427), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -445963,21 +443278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243720] = 7, + [240500] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9271), 1, + ACTIONS(9159), 1, anon_sym_DOT2, - ACTIONS(9273), 1, - aux_sym_unquoted_token2, - ACTIONS(9379), 1, - aux_sym__immediate_decimal_token1, - STATE(5031), 1, + STATE(4973), 1, sym_comment, - ACTIONS(1007), 2, + STATE(5115), 1, + aux_sym_cell_path_repeat1, + STATE(5700), 1, + sym_path, + ACTIONS(905), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 30, + ACTIONS(903), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -446008,38 +443323,81 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [243772] = 7, - ACTIONS(105), 1, + [240552] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(8847), 1, anon_sym_DOT2, - STATE(5032), 1, + ACTIONS(8849), 1, + aux_sym_unquoted_token4, + ACTIONS(8851), 1, + aux_sym_unquoted_token6, + STATE(4974), 1, sym_comment, - STATE(5040), 1, - sym_path, - STATE(5534), 1, - sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(8845), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(829), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [240606] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9254), 1, + aux_sym__immediate_decimal_token2, + STATE(4975), 1, + sym_comment, + ACTIONS(855), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446053,18 +443411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243824] = 6, + sym_duration_unit, + [240654] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(8302), 1, + ACTIONS(8156), 1, sym_filesize_unit, - ACTIONS(8304), 1, + ACTIONS(8158), 1, sym_duration_unit, - STATE(5033), 1, + STATE(4976), 1, sym_comment, - ACTIONS(1102), 32, + ACTIONS(1054), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -446097,18 +443456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [243874] = 6, + [240704] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(3167), 1, anon_sym_LF, - ACTIONS(9381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9383), 1, + ACTIONS(9256), 1, + anon_sym_DOT2, + ACTIONS(9259), 1, aux_sym__immediate_decimal_token2, - STATE(5034), 1, + STATE(4977), 1, sym_comment, - ACTIONS(2986), 32, + ACTIONS(3165), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -446141,106 +443500,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [243924] = 6, - ACTIONS(105), 1, + [240754] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9385), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9387), 1, - aux_sym__immediate_decimal_token2, - STATE(5035), 1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4978), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6346), 1, + sym__var, + STATE(6895), 1, + sym__immediate_decimal, + STATE(6894), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2079), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [243974] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - anon_sym_LF, - ACTIONS(9389), 1, - anon_sym_DOT2, - ACTIONS(9391), 1, - aux_sym__immediate_decimal_token2, - STATE(5036), 1, - sym_comment, - ACTIONS(2996), 32, - anon_sym_SEMI, + ACTIONS(2081), 18, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [244024] = 6, + [240818] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(9391), 1, + ACTIONS(9025), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9393), 1, - aux_sym__immediate_decimal_token1, - STATE(5037), 1, + ACTIONS(9261), 1, + anon_sym_DOT2, + STATE(4979), 1, sym_comment, - ACTIONS(2996), 32, + ACTIONS(2998), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -446273,73 +443595,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [244074] = 7, + [240868] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(9159), 1, anon_sym_DOT2, - STATE(5038), 1, - sym_comment, - STATE(5098), 1, + STATE(4973), 1, sym_path, - STATE(5977), 1, + STATE(4980), 1, + sym_comment, + STATE(5831), 1, sym_cell_path, - ACTIONS(981), 2, + ACTIONS(915), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [244126] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(9395), 1, - anon_sym_DOT2, - ACTIONS(9397), 1, - aux_sym__immediate_decimal_token2, - STATE(5039), 1, - sym_comment, - ACTIONS(3489), 32, + ACTIONS(913), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -446362,16 +443640,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [244176] = 7, + [240920] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5040), 1, - sym_comment, - STATE(5052), 1, + STATE(4928), 1, aux_sym_cell_path_repeat1, - STATE(5719), 1, + STATE(4981), 1, + sym_comment, + STATE(5722), 1, sym_path, ACTIONS(905), 2, ts_builtin_sym_end, @@ -446407,29 +443685,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [244228] = 6, + [240972] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4982), 1, + sym_comment, + ACTIONS(1345), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1347), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [241018] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + STATE(4983), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 14, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [241078] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9399), 1, + ACTIONS(9278), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9401), 1, + ACTIONS(9280), 1, aux_sym__immediate_decimal_token2, - STATE(5041), 1, + STATE(4984), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(2998), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -446440,8 +443811,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -446449,34 +443818,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [244278] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [241128] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9403), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, anon_sym_DOT2, - STATE(5042), 1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(4985), 1, sym_comment, - ACTIONS(807), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, - anon_sym_DOLLAR, + STATE(6346), 1, + sym__var, + STATE(6928), 1, + sym__immediate_decimal, + STATE(6927), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 7, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2124), 18, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [241192] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + STATE(4986), 1, + sym_comment, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -446491,31 +443917,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + [241246] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9282), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9284), 1, + aux_sym__immediate_decimal_token2, + STATE(4987), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, sym_duration_unit, - [244328] = 4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [241296] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4599), 1, - anon_sym_LF, - STATE(5043), 1, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4973), 1, + sym_path, + STATE(4988), 1, sym_comment, - ACTIONS(4597), 34, + STATE(5834), 1, + sym_cell_path, + ACTIONS(919), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(917), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_catch, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -446537,26 +444006,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [244374] = 6, + [241348] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9406), 1, + ACTIONS(9286), 1, anon_sym_DOT2, - ACTIONS(9409), 1, + ACTIONS(9289), 1, aux_sym__immediate_decimal_token2, - STATE(5044), 1, + STATE(4989), 1, sym_comment, - ACTIONS(835), 7, + ACTIONS(846), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(837), 26, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(848), 25, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -446581,28 +444050,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [244424] = 6, + [241398] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(9411), 1, - anon_sym_DOT2, - ACTIONS(9415), 1, + ACTIONS(9291), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9293), 1, aux_sym__immediate_decimal_token2, - STATE(5045), 1, + STATE(4990), 1, sym_comment, - ACTIONS(3489), 32, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -446625,58 +444094,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [244474] = 6, + [241448] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9417), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9419), 1, - aux_sym__immediate_decimal_token2, - STATE(5046), 1, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + STATE(4991), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(9264), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, + ACTIONS(9266), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_PLUS, + ACTIONS(9270), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9274), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9276), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1393), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [244524] = 5, + [241512] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9421), 1, + ACTIONS(9299), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9301), 1, aux_sym__immediate_decimal_token2, - STATE(5047), 1, + STATE(4992), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(815), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, @@ -446684,8 +444162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(846), 27, - anon_sym_DOLLAR, + ACTIONS(817), 26, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, @@ -446712,36 +444189,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [244572] = 6, - ACTIONS(3), 1, + [241562] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9423), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9425), 1, - aux_sym__immediate_decimal_token2, - STATE(5048), 1, + ACTIONS(1253), 1, + anon_sym_LF, + ACTIONS(1257), 1, + anon_sym_DASH, + ACTIONS(9220), 1, + anon_sym_DOT2, + STATE(4993), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(1251), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + ACTIONS(1255), 27, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, - anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446755,36 +444234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [244622] = 5, - ACTIONS(3), 1, + [241614] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8950), 1, - aux_sym__immediate_decimal_token2, - STATE(5049), 1, + STATE(4994), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(1211), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446798,38 +444276,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [244670] = 6, - ACTIONS(105), 1, + [241660] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5050), 1, + ACTIONS(9303), 1, + anon_sym_QMARK2, + STATE(4995), 1, sym_comment, - STATE(5057), 1, - aux_sym_cell_path_repeat1, - STATE(5719), 1, - sym_path, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1072), 14, + anon_sym_DASH_DASH, anon_sym_DOT2, - ACTIONS(975), 30, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1070), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [241708] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9003), 1, + aux_sym__immediate_decimal_token2, + STATE(4996), 1, + sym_comment, + ACTIONS(815), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446843,14 +444361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [244720] = 5, + sym_duration_unit, + [241756] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym_unquoted_token5, - STATE(5051), 1, + ACTIONS(7902), 1, + aux_sym_unquoted_token4, + ACTIONS(7904), 1, + aux_sym_unquoted_token6, + ACTIONS(9307), 1, + anon_sym_DOT2, + STATE(4997), 1, sym_comment, - ACTIONS(1193), 12, + ACTIONS(9305), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -446863,11 +444389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1195), 22, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(829), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -446886,38 +444408,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [244768] = 7, - ACTIONS(105), 1, + [241810] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(5052), 1, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + STATE(4998), 1, sym_comment, - STATE(5057), 1, - aux_sym_cell_path_repeat1, - STATE(5719), 1, - sym_path, - ACTIONS(977), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(975), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(9270), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9268), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1391), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -446928,33 +444453,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [244820] = 5, + [241862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - aux_sym__immediate_decimal_token2, - STATE(5053), 1, + STATE(4999), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -446970,31 +444496,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [244868] = 4, + [241910] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(5054), 1, + ACTIONS(9309), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9311), 1, + aux_sym__immediate_decimal_token2, + STATE(5000), 1, sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -447014,32 +444538,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [244914] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [241960] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(5001), 1, + sym_comment, + ACTIONS(9313), 35, + 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, + [242004] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + STATE(5002), 1, + sym_comment, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 18, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [242060] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9315), 1, + anon_sym_DOT2, + STATE(4953), 1, + sym_path, + STATE(5003), 1, sym_comment, - ACTIONS(1405), 5, + STATE(5713), 1, + sym_cell_path, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(966), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [242112] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + STATE(5004), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, anon_sym_LT2, - ACTIONS(1407), 30, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 9, + anon_sym_COLON, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [242178] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8736), 1, + aux_sym_unquoted_token5, + STATE(5005), 1, + sym_comment, + ACTIONS(1191), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1193), 22, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -447055,31 +444768,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [242226] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + STATE(5006), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [244960] = 6, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [242294] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(9427), 1, - sym_filesize_unit, - ACTIONS(9429), 1, - sym_duration_unit, - STATE(5056), 1, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4973), 1, + sym_path, + STATE(5007), 1, sym_comment, - ACTIONS(1102), 32, + STATE(5965), 1, + sym_cell_path, + ACTIONS(927), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(925), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -447102,20 +444866,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [245010] = 6, + [242346] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9431), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5719), 1, + STATE(4981), 1, sym_path, - ACTIONS(1017), 2, + STATE(5008), 1, + sym_comment, + STATE(5475), 1, + sym_cell_path, + ACTIONS(935), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5057), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 30, + ACTIONS(933), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -447146,119 +444911,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [245060] = 4, + [242398] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, - anon_sym_LF, - STATE(5058), 1, - sym_comment, - ACTIONS(1065), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(9322), 1, sym_filesize_unit, + ACTIONS(9324), 1, sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [245106] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5059), 1, + STATE(5009), 1, sym_comment, - STATE(6268), 1, - sym__var, - STATE(6930), 1, - sym__immediate_decimal, - STATE(6925), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2087), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2089), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [245170] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1056), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1366), 1, - anon_sym_COLON, - ACTIONS(8302), 1, - sym_filesize_unit, - ACTIONS(8304), 1, - sym_duration_unit, - STATE(5060), 1, - sym_comment, - ACTIONS(1102), 31, + ACTIONS(1054), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -447284,35 +444955,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [245222] = 5, - ACTIONS(3), 1, + [242448] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9058), 1, - aux_sym__immediate_decimal_token2, - STATE(5061), 1, + STATE(5010), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1223), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -447326,69 +444997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [245270] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5062), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6906), 1, - sym__immediate_decimal, - STATE(6898), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2130), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2132), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [245334] = 4, + [242494] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5063), 1, + STATE(5011), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(1187), 2, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 33, - anon_sym_RBRACK, + ACTIONS(1185), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -447417,23 +445039,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [245380] = 4, - ACTIONS(105), 1, + [242540] = 16, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5064), 1, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + STATE(5012), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [242610] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8368), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 33, - anon_sym_RBRACK, + STATE(4981), 1, + sym_path, + STATE(5013), 1, + sym_comment, + STATE(5990), 1, + sym_cell_path, + ACTIONS(915), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(913), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -447459,20 +445138,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [245426] = 5, + [242662] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + ACTIONS(9328), 1, + anon_sym_bit_DASHor, + STATE(5014), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [242734] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5076), 1, - aux_sym_unquoted_token6, - STATE(5065), 1, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4973), 1, + sym_path, + STATE(5015), 1, sym_comment, - ACTIONS(863), 2, + STATE(5817), 1, + sym_cell_path, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 32, + ACTIONS(929), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -447494,8 +445229,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -447505,35 +445238,81 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [245474] = 5, + [242786] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9052), 1, - aux_sym__immediate_decimal_token2, - STATE(5066), 1, + ACTIONS(9330), 1, + sym_filesize_unit, + ACTIONS(9332), 1, + sym_duration_unit, + STATE(5016), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(1056), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1054), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, - anon_sym_COMMA, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [242836] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4939), 1, + aux_sym_cell_path_repeat1, + STATE(5017), 1, + sym_comment, + STATE(5722), 1, + sym_path, + ACTIONS(975), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(973), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -447547,139 +445326,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [245522] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5067), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6897), 1, - sym__immediate_decimal, - STATE(6896), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2122), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2124), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [245586] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5068), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6895), 1, - sym__immediate_decimal, - STATE(6888), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2091), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2093), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [245650] = 6, + [242886] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9434), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9436), 1, - aux_sym__immediate_decimal_token2, - STATE(5069), 1, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + ACTIONS(9328), 1, + anon_sym_bit_DASHor, + ACTIONS(9334), 1, + anon_sym_and, + STATE(5018), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(9264), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9268), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 26, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + [242960] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5019), 1, + sym_comment, + ACTIONS(817), 2, anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 33, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -447693,13 +445421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [245700] = 4, + aux_sym_unquoted_token6, + [243006] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(5020), 1, sym_comment, - ACTIONS(1115), 15, + ACTIONS(1084), 15, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_QMARK2, @@ -447715,7 +445445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1113), 20, + ACTIONS(1082), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -447736,27 +445466,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [245746] = 4, + [243052] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5071), 1, + ACTIONS(9336), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9338), 1, + aux_sym__immediate_decimal_token2, + STATE(5021), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(807), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1276), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -447778,18 +445509,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [245792] = 4, + sym_duration_unit, + [243102] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5072), 1, + ACTIONS(9013), 1, + aux_sym__immediate_decimal_token2, + STATE(5022), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(815), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [243150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5023), 1, + sym_comment, + ACTIONS(1429), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1280), 30, + ACTIONS(1431), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -447820,15 +445595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [245838] = 4, + [243196] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5073), 1, + STATE(5024), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(809), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(815), 33, + ACTIONS(807), 33, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -447862,152 +445637,55 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [245884] = 7, - ACTIONS(105), 1, + [243242] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(5040), 1, - sym_path, - STATE(5074), 1, + ACTIONS(9303), 1, + anon_sym_QMARK2, + STATE(5025), 1, sym_comment, - STATE(5942), 1, - sym_cell_path, - ACTIONS(911), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(909), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(1072), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [245936] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5075), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6917), 1, - sym__immediate_decimal, - STATE(6968), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2095), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2097), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246000] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9438), 1, - sym_filesize_unit, - ACTIONS(9440), 1, - sym_duration_unit, - STATE(5076), 1, - sym_comment, - ACTIONS(1102), 5, + ACTIONS(1070), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [246050] = 4, + [243290] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5077), 1, + STATE(5026), 1, sym_comment, - ACTIONS(1100), 15, + ACTIONS(1088), 15, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_QMARK2, @@ -448023,7 +445701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1098), 20, + ACTIONS(1086), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -448044,32 +445722,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [246096] = 4, - ACTIONS(105), 1, + [243336] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5078), 1, + ACTIONS(9017), 1, + aux_sym__immediate_decimal_token2, + STATE(5027), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 33, - anon_sym_RBRACK, + ACTIONS(807), 15, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448080,79 +445765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [246142] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5079), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6877), 1, - sym__immediate_decimal, - STATE(6976), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2106), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2108), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246206] = 5, + [243384] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8946), 1, - aux_sym_unquoted_token6, - STATE(5080), 1, + STATE(5028), 1, sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 33, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -448180,38 +445806,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [246254] = 7, - ACTIONS(105), 1, + aux_sym_unquoted_token6, + [243430] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9442), 1, - anon_sym_DOT2, - ACTIONS(9444), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9446), 1, - aux_sym_unquoted_token2, - STATE(5081), 1, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + ACTIONS(9328), 1, + anon_sym_bit_DASHor, + ACTIONS(9334), 1, + anon_sym_and, + ACTIONS(9340), 1, + anon_sym_xor, + STATE(5029), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1005), 30, - anon_sym_SEMI, + ACTIONS(1391), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [243506] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9129), 1, + aux_sym__immediate_decimal_token2, + STATE(5030), 1, + sym_comment, + ACTIONS(807), 7, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448225,30 +445906,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [246306] = 4, + sym_duration_unit, + [243554] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5082), 1, + ACTIONS(9342), 1, + aux_sym__immediate_decimal_token2, + STATE(5031), 1, sym_comment, - ACTIONS(1288), 5, + ACTIONS(855), 15, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1290), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -448264,18 +445950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [246352] = 4, + [243602] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5083), 1, - sym_comment, - ACTIONS(1100), 2, + ACTIONS(3167), 1, anon_sym_LF, + ACTIONS(9344), 1, anon_sym_DOT2, - ACTIONS(1098), 33, + ACTIONS(9348), 1, + aux_sym__immediate_decimal_token2, + STATE(5032), 1, + sym_comment, + ACTIONS(3165), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448287,7 +445973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -448309,20 +445994,123 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [246398] = 6, + [243652] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9350), 1, + anon_sym_DOT2, + ACTIONS(9353), 1, + aux_sym__immediate_decimal_token2, + STATE(5033), 1, + sym_comment, + ACTIONS(846), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [243702] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(9272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9295), 1, + anon_sym_in, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + ACTIONS(9328), 1, + anon_sym_bit_DASHor, + ACTIONS(9334), 1, + anon_sym_and, + ACTIONS(9340), 1, + anon_sym_xor, + ACTIONS(9355), 1, + anon_sym_or, + STATE(5034), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9268), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9297), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [243780] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9448), 1, + ACTIONS(9159), 1, anon_sym_DOT2, - STATE(5459), 1, + STATE(4973), 1, sym_path, - ACTIONS(1017), 2, + STATE(5035), 1, + sym_comment, + STATE(5845), 1, + sym_cell_path, + ACTIONS(961), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(5084), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 30, + ACTIONS(959), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -448353,36 +446141,38 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [246448] = 6, - ACTIONS(3), 1, + [243832] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9451), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9453), 1, - aux_sym__immediate_decimal_token2, - STATE(5085), 1, + ACTIONS(8368), 1, + anon_sym_DOT2, + STATE(4981), 1, + sym_path, + STATE(5036), 1, sym_comment, - ACTIONS(815), 7, + STATE(5992), 1, + sym_cell_path, + ACTIONS(919), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(917), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(817), 26, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448396,138 +446186,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [246498] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5086), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6907), 1, - sym__immediate_decimal, - STATE(6909), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2110), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2112), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246562] = 13, - ACTIONS(3), 1, + [243884] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5087), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6912), 1, - sym__immediate_decimal, - STATE(6934), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2118), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2120), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5088), 1, + STATE(4981), 1, + sym_path, + STATE(5037), 1, sym_comment, - ACTIONS(1294), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1296), 30, - anon_sym_COMMA, + STATE(5832), 1, + sym_cell_path, + ACTIONS(961), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(959), 30, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448541,30 +446231,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [246672] = 4, + [243936] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5089), 1, + ACTIONS(9013), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9357), 1, + anon_sym_DOT2, + STATE(5038), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(815), 15, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1300), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -448580,125 +446275,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [246718] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5090), 1, - sym_comment, - ACTIONS(1115), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246764] = 7, + [243986] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DOT2, - STATE(5084), 1, - aux_sym_cell_path_repeat1, - STATE(5091), 1, + STATE(5039), 1, sym_comment, - STATE(5459), 1, - sym_path, - ACTIONS(977), 2, + ACTIONS(1179), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(975), 30, + ACTIONS(1177), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [246816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5092), 1, - sym_comment, - ACTIONS(1309), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1311), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448712,70 +446315,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [246862] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [244032] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9455), 1, - anon_sym_QMARK2, - STATE(5093), 1, + STATE(5040), 1, sym_comment, - ACTIONS(1056), 14, - anon_sym_DASH_DASH, + ACTIONS(1088), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1054), 20, - sym_cmd_identifier, + ACTIONS(1086), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [246910] = 5, + [244078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9457), 1, - aux_sym__immediate_decimal_token2, - STATE(5094), 1, + STATE(5041), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(1433), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 27, + ACTIONS(1435), 30, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -448797,17 +446401,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [246958] = 5, + [244124] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9455), 1, - anon_sym_QMARK2, - STATE(5095), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5042), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6897), 1, + sym__immediate_decimal, + STATE(6896), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2071), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2073), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [244188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5043), 1, sym_comment, - ACTIONS(1056), 14, + ACTIONS(879), 13, anon_sym_DASH_DASH, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -448820,7 +446471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1054), 20, + ACTIONS(877), 22, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -448841,36 +446492,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247006] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [244234] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9459), 1, - anon_sym_DOT2, - ACTIONS(9462), 1, + ACTIONS(9360), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9362), 1, aux_sym__immediate_decimal_token2, - STATE(5096), 1, + STATE(5044), 1, sym_comment, - ACTIONS(835), 7, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 26, - anon_sym_COMMA, + sym_duration_unit, + [244284] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5045), 1, + sym_comment, + ACTIONS(1211), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -448884,29 +446580,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [247056] = 6, + [244330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9058), 1, + ACTIONS(9003), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9464), 1, + ACTIONS(9364), 1, anon_sym_DOT2, - STATE(5097), 1, + STATE(5046), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(815), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 26, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(817), 25, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -448927,173 +446622,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [247106] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DOT2, - STATE(5091), 1, - aux_sym_cell_path_repeat1, - STATE(5098), 1, - sym_comment, - STATE(5459), 1, - sym_path, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [247158] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5099), 1, + anon_sym_or, + sym_duration_unit, + [244380] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4656), 1, + anon_sym_LF, + STATE(5047), 1, sym_comment, - STATE(6268), 1, - sym__var, - STATE(6915), 1, - sym__immediate_decimal, - STATE(6924), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2126), 7, + ACTIONS(4654), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_catch, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2128), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [247222] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5100), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6926), 1, - sym__immediate_decimal, - STATE(6935), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2147), 7, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2149), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [247286] = 8, + [244426] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, + ACTIONS(9369), 1, + anon_sym_DOT2, + ACTIONS(9371), 1, aux_sym_unquoted_token4, - ACTIONS(7900), 1, + ACTIONS(9373), 1, aux_sym_unquoted_token6, - ACTIONS(9469), 1, - anon_sym_DOT2, - STATE(5101), 1, + STATE(5048), 1, sym_comment, - ACTIONS(9467), 2, + ACTIONS(9367), 2, anon_sym_LT, anon_sym_EQ2, - ACTIONS(823), 12, + ACTIONS(827), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -449103,8 +446692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(825), 18, - anon_sym_DASH_DASH, + ACTIONS(829), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -449122,71 +446712,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [247340] = 13, - ACTIONS(3), 1, + [244480] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(9159), 1, anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5102), 1, + STATE(4973), 1, + sym_path, + STATE(5049), 1, sym_comment, - STATE(6268), 1, - sym__var, - STATE(6945), 1, - sym__immediate_decimal, - STATE(6954), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2171), 7, + STATE(5861), 1, + sym_cell_path, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2173), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [247404] = 4, + [244532] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5103), 1, - sym_comment, - ACTIONS(1254), 2, + ACTIONS(1193), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 33, + ACTIONS(9375), 1, + aux_sym_unquoted_token5, + STATE(5050), 1, + sym_comment, + ACTIONS(1191), 33, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -449215,27 +446800,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247450] = 4, + [244580] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5104), 1, + STATE(5051), 1, sym_comment, - ACTIONS(1321), 5, + ACTIONS(815), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1323), 30, - anon_sym_COMMA, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -449257,25 +446841,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247496] = 6, + sym_duration_unit, + [244626] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__entry_separator, - ACTIONS(9471), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5812), 1, + STATE(4981), 1, sym_path, - STATE(5105), 2, + STATE(5052), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 31, + STATE(5938), 1, + sym_cell_path, + ACTIONS(5991), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5994), 2, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(925), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -449301,35 +446888,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247546] = 4, - ACTIONS(3), 1, + [244680] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5106), 1, + ACTIONS(9377), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9379), 1, + aux_sym__immediate_decimal_token2, + STATE(5053), 1, sym_comment, - ACTIONS(1325), 5, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1327), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -449343,114 +446930,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247592] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [244730] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5107), 1, + ACTIONS(3167), 1, + anon_sym_LF, + ACTIONS(9381), 1, + anon_sym_DOT2, + ACTIONS(9383), 1, + aux_sym__immediate_decimal_token2, + STATE(5054), 1, sym_comment, - ACTIONS(1332), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1334), 30, - anon_sym_COMMA, + ACTIONS(3165), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [247638] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_DOLLAR, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - anon_sym_DASH2, - ACTIONS(8639), 1, - anon_sym_PLUS2, - STATE(5108), 1, - sym_comment, - STATE(6268), 1, - sym__var, - STATE(6957), 1, - sym__immediate_decimal, - STATE(6960), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2175), 7, - anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2177), 18, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [247702] = 4, + [244780] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5109), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9385), 1, + anon_sym_DOT2, + ACTIONS(9387), 1, + aux_sym_unquoted_token6, + STATE(5055), 1, sym_comment, - ACTIONS(1067), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1065), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(877), 32, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -449478,37 +447020,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - [247748] = 6, - ACTIONS(105), 1, + [244830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9474), 1, - sym_filesize_unit, - ACTIONS(9476), 1, - sym_duration_unit, - STATE(5110), 1, + STATE(5056), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(949), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(951), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -449522,24 +447062,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247798] = 5, + [244876] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9478), 1, - anon_sym_QMARK2, - STATE(5111), 1, + STATE(5057), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(1215), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1054), 31, + ACTIONS(1213), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -449565,36 +447104,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247846] = 5, - ACTIONS(105), 1, + [244922] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9478), 1, - anon_sym_QMARK2, - STATE(5112), 1, - sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(9391), 1, anon_sym_DOT2, - ACTIONS(1054), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, + STATE(5058), 1, + sym_comment, + ACTIONS(9389), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(829), 25, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -449608,18 +447150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247894] = 4, + [244976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5113), 1, + STATE(5059), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1191), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1284), 30, + ACTIONS(1193), 30, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -449650,81 +447192,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [247940] = 7, + [245022] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(961), 1, + sym__entry_separator, + ACTIONS(9169), 1, anon_sym_DOT2, - STATE(5098), 1, + STATE(4955), 1, sym_path, - STATE(5114), 1, + STATE(5060), 1, sym_comment, - STATE(5862), 1, + STATE(6007), 1, sym_cell_path, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(997), 30, + ACTIONS(959), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [247992] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9482), 1, - aux_sym__immediate_decimal_token2, - STATE(5115), 1, - sym_comment, - ACTIONS(807), 7, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -449738,22 +447237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [248042] = 7, + [245074] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(8368), 1, anon_sym_DOT2, - STATE(5040), 1, + STATE(4981), 1, sym_path, - STATE(5116), 1, + STATE(5061), 1, sym_comment, - STATE(5653), 1, + STATE(5713), 1, sym_cell_path, - ACTIONS(981), 2, + ACTIONS(968), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(979), 30, + ACTIONS(966), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -449784,14 +447282,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248094] = 6, + [245126] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(9397), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9399), 1, + aux_sym__immediate_decimal_token2, + STATE(5062), 1, + sym_comment, + ACTIONS(2998), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [245176] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(9399), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9401), 1, + anon_sym_DOT2, + STATE(5063), 1, + sym_comment, + ACTIONS(2998), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [245226] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9216), 1, + anon_sym_DOT2, + ACTIONS(9218), 1, + aux_sym_unquoted_token2, + ACTIONS(9403), 1, + aux_sym__immediate_decimal_token1, + STATE(5064), 1, + sym_comment, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [245278] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2959), 1, + anon_sym_LF, + ACTIONS(9405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9407), 1, + aux_sym__immediate_decimal_token2, + STATE(5065), 1, + sym_comment, + ACTIONS(2957), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [245328] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9484), 1, + ACTIONS(9409), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9486), 1, + ACTIONS(9411), 1, aux_sym__immediate_decimal_token2, - STATE(5117), 1, + STATE(5066), 1, sym_comment, ACTIONS(815), 7, anon_sym_GT, @@ -449804,7 +447479,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(817), 26, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -449828,60 +447503,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [248144] = 7, - ACTIONS(105), 1, + [245378] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9488), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, anon_sym_DOT2, - STATE(4924), 1, - sym_path, - STATE(5118), 1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5067), 1, sym_comment, - STATE(5653), 1, - sym_cell_path, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(979), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(6346), 1, + sym__var, + STATE(6920), 1, + sym__immediate_decimal, + STATE(6919), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2106), 7, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [248196] = 4, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2108), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [245442] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5119), 1, + ACTIONS(9413), 1, + anon_sym_QMARK2, + STATE(5068), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(1072), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 33, + anon_sym_DOT2, + ACTIONS(1070), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -449913,27 +447597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [248242] = 8, + [245490] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_DOT2, - STATE(5040), 1, - sym_path, - STATE(5120), 1, + ACTIONS(9413), 1, + anon_sym_QMARK2, + STATE(5069), 1, sym_comment, - STATE(5942), 1, - sym_cell_path, - ACTIONS(6103), 2, + ACTIONS(1072), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6106), 2, + anon_sym_DOT2, + ACTIONS(1070), 31, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(909), 28, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -449961,26 +447640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248296] = 7, + [245538] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(1249), 1, - anon_sym_DASH, - ACTIONS(9365), 1, - anon_sym_DOT2, - STATE(5121), 1, + ACTIONS(1292), 1, + anon_sym_COLON, + ACTIONS(8156), 1, + sym_filesize_unit, + ACTIONS(8158), 1, + sym_duration_unit, + STATE(5070), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1054), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(1247), 27, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -450006,34 +447685,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248348] = 4, - ACTIONS(105), 1, + [245590] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_LF, - STATE(5122), 1, + ACTIONS(9415), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9417), 1, + aux_sym__immediate_decimal_token2, + STATE(5071), 1, sym_comment, - ACTIONS(1393), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(807), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -450047,217 +447728,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248393] = 5, - ACTIONS(105), 1, + sym_duration_unit, + [245640] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2988), 1, - anon_sym_LF, - ACTIONS(9383), 1, - aux_sym__immediate_decimal_token2, - STATE(5123), 1, - sym_comment, - ACTIONS(2986), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3313), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5072), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6922), 1, + sym__immediate_decimal, + STATE(6921), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2110), 7, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2112), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [248440] = 18, - ACTIONS(105), 1, + [245704] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1373), 1, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token2, + STATE(5073), 1, + sym_comment, + ACTIONS(815), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT2, - ACTIONS(8270), 1, - anon_sym_LF, - ACTIONS(8290), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(8292), 1, anon_sym_bit_DASHxor, - ACTIONS(8294), 1, anon_sym_bit_DASHor, - ACTIONS(8296), 1, anon_sym_and, - ACTIONS(8298), 1, anon_sym_xor, - ACTIONS(8300), 1, anon_sym_or, - STATE(5124), 1, + sym_duration_unit, + [245752] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5074), 1, sym_comment, - ACTIONS(8274), 2, + ACTIONS(807), 8, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(8284), 2, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8286), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8288), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8268), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(8276), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(8280), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [245798] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9068), 1, + aux_sym__immediate_decimal_token2, + STATE(5075), 1, + sym_comment, + ACTIONS(807), 7, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(8272), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [248513] = 6, - ACTIONS(105), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [245846] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9491), 1, - anon_sym_DOT2, - ACTIONS(9493), 1, + ACTIONS(9419), 1, aux_sym__immediate_decimal_token2, - STATE(5125), 1, + STATE(5076), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(855), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [248562] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9493), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9495), 1, - aux_sym__immediate_decimal_token1, - STATE(5126), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 27, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [248611] = 6, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [245894] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9497), 1, + ACTIONS(9421), 1, anon_sym_DOT2, - ACTIONS(9499), 1, - aux_sym_unquoted_token6, - STATE(5127), 1, + ACTIONS(9424), 1, + aux_sym__immediate_decimal_token2, + STATE(5077), 1, sym_comment, - ACTIONS(861), 13, - sym_identifier, + ACTIONS(846), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 19, - anon_sym_DOLLAR, + aux_sym_unquoted_token6, + ACTIONS(848), 26, + anon_sym_COMMA, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -450273,30 +447991,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [248660] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [245944] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_DOT2, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - STATE(5128), 1, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9426), 1, + anon_sym_DOT2, + STATE(5078), 1, sym_comment, - ACTIONS(9367), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 5, + ACTIONS(815), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(825), 24, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -450318,23 +448038,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248713] = 5, + sym_duration_unit, + [245994] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(9501), 1, - aux_sym_unquoted_token5, - STATE(5129), 1, + ACTIONS(8368), 1, + anon_sym_DOT2, + STATE(4981), 1, + sym_path, + STATE(5079), 1, sym_comment, - ACTIONS(1193), 32, + STATE(5961), 1, + sym_cell_path, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -450360,23 +448084,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [248760] = 5, + [246046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9486), 1, - aux_sym__immediate_decimal_token2, - STATE(5130), 1, + STATE(5080), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(1179), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1177), 22, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, + sym_duration_unit, + [246092] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5081), 1, + sym_comment, + ACTIONS(855), 8, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT2, @@ -450402,16 +448168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [248807] = 5, + [246138] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(5131), 1, + STATE(5082), 1, sym_comment, - ACTIONS(2996), 32, + ACTIONS(877), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -450435,6 +448199,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -450444,25 +448210,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [248854] = 6, + [246184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9503), 1, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + ACTIONS(9429), 1, anon_sym_DOT2, - ACTIONS(9506), 1, - aux_sym__immediate_decimal_token2, - STATE(5132), 1, + STATE(5083), 1, sym_comment, - ACTIONS(835), 7, + ACTIONS(877), 7, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 25, - anon_sym_DASH, + ACTIONS(879), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -450487,79 +448254,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [248903] = 6, - ACTIONS(105), 1, + [246234] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9508), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(9510), 1, - aux_sym__immediate_decimal_token2, - STATE(5133), 1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5084), 1, sym_comment, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3489), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6346), 1, + sym__var, + STATE(6891), 1, + sym__immediate_decimal, + STATE(6890), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2173), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2175), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [248952] = 5, + [246298] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9512), 1, - aux_sym__immediate_decimal_token2, - STATE(5134), 1, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + STATE(5085), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(9431), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, + ACTIONS(9433), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_PLUS, + ACTIONS(9437), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9441), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1391), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -450568,82 +448354,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [246358] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + STATE(5086), 1, + sym_comment, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [248999] = 5, + ACTIONS(1393), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [246412] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9514), 1, - aux_sym_unquoted_token5, - STATE(5135), 1, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + STATE(5087), 1, sym_comment, - ACTIONS(1195), 13, - anon_sym_DASH_DASH, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1393), 11, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1193), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [246476] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + STATE(5088), 1, + sym_comment, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9435), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(1391), 9, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [249046] = 6, - ACTIONS(105), 1, + [246528] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - STATE(5136), 1, + STATE(5089), 1, sym_comment, - ACTIONS(1243), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1247), 28, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 21, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -450654,108 +448539,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [246576] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + STATE(5090), 1, + sym_comment, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [249095] = 4, - ACTIONS(105), 1, + ACTIONS(1393), 18, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [246632] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5137), 1, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + STATE(5091), 1, sym_comment, - ACTIONS(1224), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9431), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(9433), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9437), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 9, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [246698] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + STATE(5092), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9443), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1393), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [246766] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + ACTIONS(9453), 1, + anon_sym_bit_DASHxor, + STATE(5093), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [246836] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + ACTIONS(9453), 1, + anon_sym_bit_DASHxor, + ACTIONS(9455), 1, + anon_sym_bit_DASHor, + STATE(5094), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [246908] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, anon_sym_bit_DASHand, + ACTIONS(9453), 1, anon_sym_bit_DASHxor, + ACTIONS(9455), 1, anon_sym_bit_DASHor, + ACTIONS(9457), 1, anon_sym_and, + STATE(5095), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + sym_identifier, anon_sym_xor, anon_sym_or, - [249140] = 6, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [246982] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9518), 1, - aux_sym__immediate_decimal_token2, - STATE(5138), 1, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + ACTIONS(9453), 1, + anon_sym_bit_DASHxor, + ACTIONS(9455), 1, + anon_sym_bit_DASHor, + ACTIONS(9457), 1, + anon_sym_and, + ACTIONS(9459), 1, + anon_sym_xor, + STATE(5096), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(1391), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(817), 23, - anon_sym_LBRACK, + anon_sym_PLUS, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, + [247058] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(9439), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9445), 1, + anon_sym_in, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + ACTIONS(9453), 1, + anon_sym_bit_DASHxor, + ACTIONS(9455), 1, + anon_sym_bit_DASHor, + ACTIONS(9457), 1, + anon_sym_and, + ACTIONS(9459), 1, + anon_sym_xor, + ACTIONS(9461), 1, + anon_sym_or, + STATE(5097), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9433), 2, + anon_sym_DASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [249189] = 7, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9435), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9447), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [247136] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5139), 1, + STATE(5098), 1, sym_comment, - STATE(5852), 1, - sym_cell_path, - ACTIONS(979), 30, - anon_sym_RBRACK, + ACTIONS(1219), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 33, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -450785,28 +449013,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249240] = 6, + [247182] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5140), 1, + ACTIONS(9463), 1, + anon_sym_DOT2, + ACTIONS(9465), 1, + aux_sym_unquoted_token6, + STATE(5099), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5869), 1, - sym_path, - ACTIONS(975), 6, + ACTIONS(877), 7, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(977), 26, + sym_filesize_unit, + ACTIONS(879), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -450828,26 +449056,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249289] = 5, + sym_duration_unit, + [247232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - aux_sym__immediate_decimal_token2, - STATE(5141), 1, + STATE(5100), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(1357), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(846), 26, - anon_sym_DASH_DASH, + ACTIONS(1359), 30, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -450869,25 +449099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [249336] = 6, + [247278] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1249), 1, - anon_sym_DASH, - STATE(5142), 1, + ACTIONS(944), 1, + sym__entry_separator, + ACTIONS(9467), 1, + anon_sym_DOT2, + STATE(5723), 1, + sym_path, + STATE(5101), 2, sym_comment, - ACTIONS(1243), 5, + aux_sym_cell_path_repeat1, + ACTIONS(942), 31, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(1247), 27, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -450913,35 +449143,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249385] = 5, - ACTIONS(105), 1, + [247328] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - STATE(5143), 1, + ACTIONS(9112), 1, + aux_sym__immediate_decimal_token2, + STATE(5102), 1, sym_comment, - ACTIONS(1102), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -450952,73 +449186,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [249432] = 6, + [247376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9522), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token2, - STATE(5144), 1, + STATE(5103), 1, sym_comment, - ACTIONS(807), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(809), 23, - anon_sym_LBRACK, + ACTIONS(1361), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1363), 30, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [249481] = 7, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [247422] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(9391), 1, anon_sym_DOT2, - STATE(5145), 1, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, + STATE(5104), 1, sym_comment, - STATE(5312), 1, - sym_path, - STATE(6112), 1, - sym_cell_path, - ACTIONS(1033), 6, + ACTIONS(9470), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1035), 25, + ACTIONS(829), 25, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -451042,73 +449274,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249532] = 6, - ACTIONS(105), 1, + [247476] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9528), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9530), 1, - aux_sym__immediate_decimal_token2, - STATE(5146), 1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5105), 1, sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2986), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6346), 1, + sym__var, + STATE(6893), 1, + sym__immediate_decimal, + STATE(6892), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2075), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2077), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [249581] = 6, + [247540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9482), 1, + ACTIONS(9116), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9532), 1, - anon_sym_DOT2, - STATE(5147), 1, + STATE(5106), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(807), 14, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 25, + ACTIONS(809), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -451124,33 +449368,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [249630] = 7, + [247588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5148), 1, + STATE(5107), 1, sym_comment, - STATE(5312), 1, - sym_path, - STATE(6009), 1, - sym_cell_path, - ACTIONS(979), 6, + ACTIONS(1368), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(981), 25, + ACTIONS(1370), 30, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -451172,22 +449410,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249681] = 4, + [247634] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5149), 1, + STATE(5108), 1, sym_comment, - ACTIONS(1261), 3, - ts_builtin_sym_end, + ACTIONS(1219), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1259), 31, + ACTIONS(1217), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -451213,60 +449452,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249726] = 4, - ACTIONS(3), 1, + [247680] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5150), 1, - sym_comment, - ACTIONS(1254), 14, - anon_sym_DASH_DASH, + ACTIONS(911), 1, + sym__entry_separator, + ACTIONS(9169), 1, anon_sym_DOT2, + STATE(4955), 1, + sym_path, + STATE(5109), 1, + sym_comment, + STATE(6046), 1, + sym_cell_path, + ACTIONS(909), 31, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1252), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [247732] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9472), 1, + aux_sym__immediate_decimal_token2, + STATE(5110), 1, + sym_comment, + ACTIONS(855), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [249771] = 6, + [247780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9535), 1, + ACTIONS(9474), 1, anon_sym_DOT2, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, - STATE(5151), 1, + ACTIONS(9477), 1, + aux_sym__immediate_decimal_token2, + STATE(5111), 1, sym_comment, - ACTIONS(861), 14, + ACTIONS(846), 14, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -451278,8 +449563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_filesize_unit, sym_duration_unit, - ACTIONS(863), 18, - anon_sym_DASH_DASH, + aux_sym_unquoted_token6, + ACTIONS(848), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -451297,16 +449584,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [249820] = 5, + [247830] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5112), 1, + sym_comment, + STATE(6346), 1, + sym__var, + STATE(6924), 1, + sym__immediate_decimal, + STATE(6923), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2114), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2116), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [247894] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token2, + STATE(5113), 1, + sym_comment, + ACTIONS(3000), 2, anon_sym_LF, - ACTIONS(5483), 1, anon_sym_DOT2, - STATE(5152), 1, - sym_comment, - ACTIONS(4013), 32, + ACTIONS(2998), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451339,34 +449678,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [249867] = 4, - ACTIONS(105), 1, + [247942] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1284), 1, - anon_sym_LF, - STATE(5153), 1, + STATE(5114), 1, sym_comment, - ACTIONS(1282), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(894), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -451380,15 +449719,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [249912] = 4, + sym_duration_unit, + [247988] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5154), 1, + ACTIONS(9159), 1, + anon_sym_DOT2, + STATE(4944), 1, + aux_sym_cell_path_repeat1, + STATE(5115), 1, sym_comment, - ACTIONS(4599), 2, + STATE(5700), 1, + sym_path, + ACTIONS(975), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4597), 32, + ACTIONS(973), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451396,10 +449742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_else, anon_sym_LBRACE, anon_sym_DOT, - anon_sym_catch, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -451421,35 +449765,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [249957] = 5, - ACTIONS(105), 1, + [248040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9539), 1, - anon_sym_DOT2, - STATE(5155), 1, + ACTIONS(9479), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9481), 1, + aux_sym__immediate_decimal_token2, + STATE(5116), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -451463,34 +449808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250004] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [248090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1403), 1, - anon_sym_LF, - STATE(5156), 1, + ACTIONS(9120), 1, + aux_sym__immediate_decimal_token2, + STATE(5117), 1, sym_comment, - ACTIONS(1401), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -451504,29 +449851,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250049] = 7, + sym_duration_unit, + [248138] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(9483), 1, + sym_filesize_unit, + ACTIONS(9485), 1, + sym_duration_unit, + STATE(5118), 1, + sym_comment, + ACTIONS(1054), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [248188] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(3313), 1, + anon_sym_DOLLAR, + ACTIONS(8760), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, anon_sym_DOT2, - STATE(5157), 1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8770), 1, + anon_sym_DASH2, + ACTIONS(8772), 1, + anon_sym_PLUS2, + STATE(5119), 1, sym_comment, - STATE(5312), 1, - sym_path, - STATE(6240), 1, - sym_cell_path, - ACTIONS(909), 6, + STATE(6346), 1, + sym__var, + STATE(6926), 1, + sym__immediate_decimal, + STATE(6925), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2118), 7, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2120), 18, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [248252] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9487), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9489), 1, + aux_sym__immediate_decimal_token2, + STATE(5120), 1, + sym_comment, + ACTIONS(807), 7, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(911), 25, - anon_sym_DOLLAR, + sym_filesize_unit, + ACTIONS(809), 26, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -451548,22 +449990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250100] = 4, + sym_duration_unit, + [248302] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5158), 1, + STATE(5121), 1, sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(896), 2, anon_sym_DOT2, - ACTIONS(1228), 31, - anon_sym_SEMI, - anon_sym_PIPE, + sym__entry_separator, + ACTIONS(894), 33, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -451589,61 +450030,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250145] = 5, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [248348] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(7572), 1, - aux_sym_unquoted_token3, - STATE(5159), 1, + STATE(5122), 1, sym_comment, - ACTIONS(823), 32, + ACTIONS(1223), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [250192] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [248393] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5105), 1, - aux_sym_cell_path_repeat1, - STATE(5160), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(5123), 1, sym_comment, - STATE(5812), 1, + STATE(5291), 1, + aux_sym_cell_path_repeat1, + STATE(5723), 1, sym_path, - ACTIONS(977), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(975), 30, + ACTIONS(903), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -451674,20 +450118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250241] = 5, + [248444] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9541), 1, - anon_sym_QMARK2, - STATE(5161), 1, + ACTIONS(1347), 1, + anon_sym_LF, + STATE(5124), 1, sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 31, + ACTIONS(1345), 33, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -451716,16 +450159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250288] = 5, + [248489] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4011), 1, + ACTIONS(3905), 1, anon_sym_LF, - ACTIONS(9543), 1, - anon_sym_EQ, - STATE(5162), 1, + ACTIONS(9491), 1, + anon_sym_DOT2, + STATE(5125), 1, sym_comment, - ACTIONS(4007), 32, + ACTIONS(3903), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -451758,107 +450201,108 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [250335] = 7, + [248536] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(9545), 1, + ACTIONS(3911), 1, + anon_sym_LF, + ACTIONS(9493), 1, anon_sym_DOT2, - ACTIONS(9547), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9549), 1, - aux_sym_unquoted_token2, - STATE(5163), 1, + STATE(5126), 1, sym_comment, - ACTIONS(1005), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(3909), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [248583] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9495), 1, + anon_sym_DOT2, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(5127), 1, + sym_comment, + ACTIONS(877), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [250386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5164), 1, - sym_comment, - ACTIONS(1191), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1189), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [250431] = 4, + [248632] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1409), 1, - anon_sym_LF, - STATE(5165), 1, + ACTIONS(9499), 1, + aux_sym_unquoted_token5, + STATE(5128), 1, sym_comment, - ACTIONS(1247), 33, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -451884,41 +450328,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250476] = 9, - ACTIONS(105), 1, + [248679] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5166), 1, + ACTIONS(9481), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9501), 1, + anon_sym_DOT2, + STATE(5129), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(815), 7, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9551), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -451930,23 +450370,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250531] = 4, + sym_duration_unit, + [248728] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(9504), 1, + anon_sym_DOT2, + ACTIONS(9506), 1, + aux_sym__immediate_decimal_token2, + STATE(5130), 1, + sym_comment, + ACTIONS(3167), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5167), 1, + ACTIONS(3165), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [248777] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5131), 1, sym_comment, - ACTIONS(1263), 33, + ACTIONS(1088), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1086), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -451971,32 +450455,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250576] = 7, + [248822] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1427), 1, anon_sym_LF, - STATE(5168), 1, + STATE(5132), 1, sym_comment, - ACTIONS(9553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 25, + ACTIONS(1425), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -452015,28 +450496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250627] = 4, + [248867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5169), 1, + STATE(5133), 1, sym_comment, - ACTIONS(1224), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1222), 20, - sym_cmd_identifier, + ACTIONS(815), 15, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -452044,47 +450510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [250672] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9541), 1, - anon_sym_QMARK2, - STATE(5170), 1, - sym_comment, - ACTIONS(1056), 2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 19, + anon_sym_DASH_DASH, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452095,28 +450537,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [250719] = 4, + [248912] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5171), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5134), 1, sym_comment, - ACTIONS(889), 7, + STATE(5348), 1, + sym_path, + STATE(6119), 1, + sym_cell_path, + ACTIONS(917), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 27, - anon_sym_COMMA, - anon_sym_DASH, + ACTIONS(919), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -452138,23 +450581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [250764] = 4, + [248963] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5172), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9387), 1, + aux_sym_unquoted_token6, + ACTIONS(9510), 1, + anon_sym_DOT2, + STATE(5135), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(877), 31, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -452180,61 +450622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250809] = 10, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5173), 1, - sym_comment, - ACTIONS(9553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [250866] = 4, + sym_filesize_unit, + sym_duration_unit, + [249012] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1423), 1, anon_sym_LF, - STATE(5174), 1, + STATE(5136), 1, sym_comment, - ACTIONS(1263), 33, + ACTIONS(1421), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -452268,36 +450665,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250911] = 6, - ACTIONS(105), 1, + [249057] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5175), 1, + ACTIONS(9512), 1, + anon_sym_DOT2, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5137), 1, sym_comment, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9555), 4, + ACTIONS(877), 6, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 26, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452311,34 +450707,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [250960] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [249106] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5176), 1, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + ACTIONS(9516), 1, + anon_sym_DOT2, + STATE(5138), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452349,38 +450751,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [251005] = 5, + [249155] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5177), 1, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(9518), 1, + anon_sym_DOT2, + ACTIONS(9521), 1, + aux_sym__immediate_decimal_token2, + STATE(5139), 1, sym_comment, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 31, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(846), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [249204] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5140), 1, + sym_comment, + ACTIONS(807), 15, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452391,37 +450835,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [251052] = 4, - ACTIONS(105), 1, + [249249] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5178), 1, + STATE(5141), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(855), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452435,148 +450875,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251097] = 8, - ACTIONS(105), 1, + sym_duration_unit, + [249294] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5179), 1, + STATE(5142), 1, sym_comment, - ACTIONS(9553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, + ACTIONS(1211), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 23, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [251150] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5180), 1, - sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1209), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [251195] = 11, + [249339] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5181), 1, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(9362), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9523), 1, + anon_sym_DOT2, + STATE(5143), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(815), 31, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [251254] = 4, + sym_filesize_unit, + sym_duration_unit, + [249388] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1305), 1, anon_sym_LF, - STATE(5182), 1, + STATE(5144), 1, sym_comment, - ACTIONS(1263), 33, + ACTIONS(1303), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -452610,83 +451001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251299] = 12, - ACTIONS(105), 1, + [249433] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - STATE(5183), 1, + ACTIONS(9526), 1, + anon_sym_DOT2, + STATE(5145), 1, sym_comment, - ACTIONS(9553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, + ACTIONS(877), 6, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [251360] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5184), 1, - sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + sym_filesize_unit, + ACTIONS(879), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -452700,69 +451042,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251405] = 13, - ACTIONS(105), 1, + sym_duration_unit, + [249480] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - ACTIONS(9567), 1, - anon_sym_bit_DASHxor, - STATE(5185), 1, + STATE(5146), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(855), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [251468] = 4, + [249525] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5186), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4955), 1, + sym_path, + STATE(5147), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6037), 1, + sym_cell_path, + ACTIONS(966), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -452791,70 +451128,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251513] = 14, + [249576] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1431), 1, anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - ACTIONS(9567), 1, - anon_sym_bit_DASHxor, - ACTIONS(9569), 1, - anon_sym_bit_DASHor, - STATE(5187), 1, + STATE(5148), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(1429), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [251578] = 4, + [249621] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5188), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(9528), 1, + anon_sym_DOT2, + STATE(5123), 1, + sym_path, + STATE(5149), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6037), 1, + sym_cell_path, + ACTIONS(966), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -452883,71 +451213,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251623] = 15, - ACTIONS(105), 1, + [249672] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - ACTIONS(9567), 1, - anon_sym_bit_DASHxor, - ACTIONS(9569), 1, - anon_sym_bit_DASHor, - ACTIONS(9571), 1, - anon_sym_and, - STATE(5189), 1, + STATE(5150), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(894), 15, + sym_identifier, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9551), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [251690] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [249717] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5190), 1, + STATE(5151), 1, sym_comment, - ACTIONS(1263), 33, + ACTIONS(1223), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -452976,87 +451295,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251735] = 16, + [249762] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - ACTIONS(9567), 1, - anon_sym_bit_DASHxor, - ACTIONS(9569), 1, - anon_sym_bit_DASHor, - ACTIONS(9571), 1, - anon_sym_and, - ACTIONS(9573), 1, - anon_sym_xor, - STATE(5191), 1, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(9284), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9531), 1, + anon_sym_DOT2, + STATE(5152), 1, sym_comment, - ACTIONS(9553), 2, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(9557), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(9551), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [251804] = 4, - ACTIONS(105), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [249811] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5192), 1, + ACTIONS(9534), 1, + anon_sym_DOT2, + ACTIONS(9537), 1, + aux_sym__immediate_decimal_token2, + STATE(5153), 1, sym_comment, - ACTIONS(1263), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(846), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(848), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453070,88 +451380,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251849] = 17, - ACTIONS(105), 1, + sym_duration_unit, + [249860] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_bit_DASHand, - ACTIONS(9567), 1, - anon_sym_bit_DASHxor, - ACTIONS(9569), 1, - anon_sym_bit_DASHor, - ACTIONS(9571), 1, - anon_sym_and, - ACTIONS(9573), 1, - anon_sym_xor, - ACTIONS(9575), 1, - anon_sym_or, - STATE(5193), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5154), 1, sym_comment, - ACTIONS(9553), 2, + STATE(5348), 1, + sym_path, + STATE(5967), 1, + sym_cell_path, + ACTIONS(933), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9557), 2, + anon_sym_LT2, + ACTIONS(935), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9559), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9563), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9555), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9561), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - ACTIONS(9551), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [251920] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [249911] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5194), 1, + ACTIONS(9539), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9541), 1, + aux_sym__immediate_decimal_token2, + STATE(5155), 1, sym_comment, - ACTIONS(1263), 33, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 30, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [249960] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, + anon_sym_DOT2, + ACTIONS(9546), 1, + aux_sym__immediate_decimal_token2, + STATE(5156), 1, + sym_comment, + ACTIONS(846), 7, + anon_sym_GT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 25, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453165,18 +451510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [251965] = 5, + sym_duration_unit, + [250009] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9577), 1, - anon_sym_QMARK2, - STATE(5195), 1, + ACTIONS(9541), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9548), 1, + anon_sym_DOT2, + STATE(5157), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 30, + ACTIONS(2998), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -453207,26 +451554,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [252012] = 5, + [250058] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9577), 1, - anon_sym_QMARK2, - STATE(5196), 1, + STATE(5158), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(1187), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1054), 30, + ACTIONS(1185), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -453249,34 +451595,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [252059] = 6, + [250103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - ACTIONS(9579), 1, - anon_sym_DOT2, - STATE(5197), 1, + STATE(5159), 1, sym_comment, - ACTIONS(861), 14, - sym_identifier, + ACTIONS(855), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 18, + aux_sym_unquoted_token6, + ACTIONS(857), 26, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -453292,34 +451632,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [252108] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [250148] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5198), 1, + STATE(5160), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1084), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1113), 32, + ACTIONS(1082), 31, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250193] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(9550), 1, + anon_sym_DOT2, + STATE(5161), 1, + sym_comment, + ACTIONS(877), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 26, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453333,77 +451719,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252153] = 7, - ACTIONS(105), 1, + sym_duration_unit, + [250242] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5199), 1, + ACTIONS(9552), 1, + aux_sym_unquoted_token5, + STATE(5162), 1, sym_comment, - STATE(5889), 1, - sym_cell_path, - ACTIONS(997), 30, - anon_sym_RBRACK, + ACTIONS(1193), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1191), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [252204] = 4, - ACTIONS(3), 1, + [250289] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5200), 1, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(9554), 1, + anon_sym_DOT2, + ACTIONS(9557), 1, + aux_sym__immediate_decimal_token2, + STATE(5163), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(846), 31, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 27, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453417,22 +451803,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [252249] = 7, + [250338] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(5160), 1, - aux_sym_cell_path_repeat1, - STATE(5201), 1, + ACTIONS(9559), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9561), 1, + aux_sym__immediate_decimal_token2, + STATE(5164), 1, sym_comment, - STATE(5812), 1, - sym_path, - ACTIONS(903), 30, - anon_sym_RBRACK, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250387] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9362), 1, + aux_sym__immediate_decimal_token2, + STATE(5165), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -453462,23 +451888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252300] = 4, + sym_filesize_unit, + sym_duration_unit, + [250434] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5202), 1, + ACTIONS(1359), 1, + anon_sym_LF, + STATE(5166), 1, sym_comment, - ACTIONS(1100), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1098), 32, + ACTIONS(1357), 33, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -453503,26 +451931,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252345] = 5, + [250479] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9453), 1, - aux_sym__immediate_decimal_token2, - STATE(5203), 1, + ACTIONS(9563), 1, + anon_sym_DOT2, + ACTIONS(9565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9567), 1, + aux_sym_unquoted_token2, + STATE(5167), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(949), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(817), 26, + ACTIONS(951), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -453544,21 +451975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [252392] = 4, + [250530] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5204), 1, + ACTIONS(8392), 1, + sym_filesize_unit, + ACTIONS(8394), 1, + sym_duration_unit, + STATE(5168), 1, sym_comment, - ACTIONS(1191), 3, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 31, + ACTIONS(1054), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -453586,23 +452018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252437] = 5, + [250579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8625), 1, - aux_sym_unquoted_token3, - STATE(5205), 1, - sym_comment, - ACTIONS(825), 2, - ts_builtin_sym_end, + ACTIONS(1435), 1, anon_sym_LF, - ACTIONS(823), 31, + STATE(5169), 1, + sym_comment, + ACTIONS(1433), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -453628,25 +452059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252484] = 7, + [250624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_DASH, - ACTIONS(9539), 1, - anon_sym_DOT2, - STATE(5206), 1, - sym_comment, - ACTIONS(1245), 2, - ts_builtin_sym_end, + ACTIONS(1339), 1, anon_sym_LF, - ACTIONS(1243), 3, + STATE(5170), 1, + sym_comment, + ACTIONS(1337), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - ACTIONS(1247), 27, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -453672,12 +452100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252535] = 4, + [250669] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5207), 1, + STATE(5171), 1, sym_comment, - ACTIONS(1230), 14, + ACTIONS(1215), 14, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -453692,7 +452120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1228), 20, + ACTIONS(1213), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -453713,25 +452141,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252580] = 4, + [250714] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5208), 1, + ACTIONS(9512), 1, + anon_sym_DOT2, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5172), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(877), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, + ACTIONS(879), 26, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -453754,27 +452184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [252625] = 6, + [250763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9581), 1, - anon_sym_DOT2, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5209), 1, + ACTIONS(9569), 1, + aux_sym__immediate_decimal_token2, + STATE(5173), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(855), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, + aux_sym_unquoted_token6, + ACTIONS(857), 26, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -453797,19 +452226,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [252674] = 6, + [250810] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9585), 1, + ACTIONS(3979), 1, + anon_sym_LF, + ACTIONS(9571), 1, anon_sym_DOT2, - ACTIONS(9589), 1, - aux_sym__immediate_decimal_token2, - STATE(5210), 1, + STATE(5174), 1, + sym_comment, + ACTIONS(3977), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250857] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5175), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250902] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5176), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250947] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9573), 1, + sym_filesize_unit, + ACTIONS(9575), 1, + sym_duration_unit, + STATE(5177), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [250996] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5178), 1, + sym_comment, + ACTIONS(1179), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3489), 30, + ACTIONS(1177), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -453831,6 +452423,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -453840,14 +452434,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [252723] = 5, + [251041] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1253), 1, + anon_sym_LF, + ACTIONS(1299), 1, + anon_sym_DOT2, + ACTIONS(8068), 1, + anon_sym_COLON, + STATE(5179), 1, + sym_comment, + ACTIONS(1251), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1255), 28, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [251092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, - aux_sym__immediate_decimal_token2, - STATE(5211), 1, + STATE(5180), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(815), 8, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, @@ -453855,7 +452491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(809), 26, + aux_sym_unquoted_token6, + ACTIONS(817), 26, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -453882,33 +452519,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [252770] = 4, + [251137] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5212), 1, + STATE(5181), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1223), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1221), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_COMMA, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [251182] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1253), 1, + anon_sym_LF, + ACTIONS(1257), 1, anon_sym_DASH, - anon_sym_in, + STATE(5182), 1, + sym_comment, + ACTIONS(1251), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_RBRACE, + ACTIONS(1255), 27, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [251231] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9379), 1, + aux_sym__immediate_decimal_token2, + STATE(5183), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -453922,26 +452643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [252815] = 7, + [251278] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1366), 1, - anon_sym_COLON, - ACTIONS(1373), 1, - anon_sym_DOT2, - STATE(5213), 1, + ACTIONS(9577), 1, + aux_sym__immediate_decimal_token2, + STATE(5184), 1, sym_comment, - ACTIONS(1243), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1247), 28, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 31, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -453967,16 +452685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [252866] = 5, + sym_filesize_unit, + sym_duration_unit, + [251325] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(3946), 1, anon_sym_LF, - ACTIONS(9591), 1, - sym_long_flag_identifier, - STATE(5214), 1, + ACTIONS(9579), 1, + anon_sym_EQ, + STATE(5185), 1, sym_comment, - ACTIONS(3947), 32, + ACTIONS(3942), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -454009,77 +452729,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [252913] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9593), 1, - anon_sym_DOT2, - STATE(5215), 1, - sym_comment, - ACTIONS(1104), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1102), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [252960] = 6, - ACTIONS(3), 1, + [251372] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9419), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9595), 1, + ACTIONS(915), 1, + sym__entry_separator, + ACTIONS(9169), 1, anon_sym_DOT2, - STATE(5216), 1, + STATE(4955), 1, + sym_path, + STATE(5186), 1, sym_comment, - ACTIONS(807), 7, + STATE(6228), 1, + sym_cell_path, + ACTIONS(913), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 25, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454093,38 +452773,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253009] = 7, - ACTIONS(3), 1, + [251423] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9598), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(9581), 1, anon_sym_DOT2, - STATE(5217), 1, - sym_comment, - STATE(5309), 1, + STATE(5123), 1, sym_path, - STATE(5817), 1, + STATE(5187), 1, + sym_comment, + STATE(6027), 1, sym_cell_path, - ACTIONS(997), 6, + ACTIONS(933), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(999), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454138,35 +452817,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253060] = 6, - ACTIONS(3), 1, + [251474] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9601), 1, - anon_sym_DOT2, - ACTIONS(9604), 1, - aux_sym__immediate_decimal_token2, - STATE(5218), 1, + ACTIONS(911), 1, + anon_sym_LF, + STATE(5188), 1, sym_comment, - ACTIONS(835), 7, + ACTIONS(909), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 25, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454180,65 +452858,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253109] = 4, - ACTIONS(3), 1, + [251519] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5219), 1, + ACTIONS(1309), 1, + anon_sym_LF, + STATE(5189), 1, sym_comment, - ACTIONS(1261), 14, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 20, - sym_cmd_identifier, + ACTIONS(1307), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [253154] = 5, + [251564] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(8490), 1, - aux_sym_unquoted_token3, - STATE(5220), 1, + STATE(5190), 1, sym_comment, - ACTIONS(823), 32, + ACTIONS(1219), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -454264,22 +452940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253201] = 4, + [251609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5221), 1, + STATE(5191), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(894), 8, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 27, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(896), 26, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_DOT2, @@ -454305,26 +452981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [253246] = 5, + [251654] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9345), 1, - aux_sym__immediate_decimal_token2, - STATE(5222), 1, + STATE(5192), 1, sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, + ACTIONS(2959), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2996), 30, + ACTIONS(2957), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -454347,23 +453022,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [253293] = 5, + [251699] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9606), 1, - anon_sym_QMARK2, - STATE(5223), 1, + STATE(5193), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(1223), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1054), 30, + ACTIONS(1221), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [251744] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(1299), 1, + anon_sym_DOT2, + STATE(5194), 1, + sym_comment, + ACTIONS(1054), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -454389,22 +453105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253340] = 5, + [251791] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9606), 1, - anon_sym_QMARK2, - STATE(5224), 1, + ACTIONS(1257), 1, + anon_sym_DASH, + ACTIONS(9584), 1, + anon_sym_DOT2, + STATE(5195), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(1253), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1054), 30, + ACTIONS(1251), 3, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(1255), 27, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, @@ -454431,23 +453149,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253387] = 5, + [251842] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9608), 1, - aux_sym_unquoted_token5, - STATE(5225), 1, + ACTIONS(4028), 1, + anon_sym_LF, + ACTIONS(9586), 1, + anon_sym_DOT2, + STATE(5196), 1, sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(4026), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [251889] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1385), 1, anon_sym_LF, - ACTIONS(1193), 31, + STATE(5197), 1, + sym_comment, + ACTIONS(1255), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -454473,14 +453232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253434] = 4, + [251934] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1407), 1, + ACTIONS(1376), 1, anon_sym_LF, - STATE(5226), 1, + STATE(5198), 1, sym_comment, - ACTIONS(1405), 33, + ACTIONS(1374), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -454514,25 +453273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253479] = 4, + [251979] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5227), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5199), 1, sym_comment, - ACTIONS(815), 7, + STATE(5202), 1, + aux_sym_cell_path_repeat1, + STATE(6001), 1, + sym_path, + ACTIONS(903), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 27, + ACTIONS(905), 25, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -454554,76 +453317,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253524] = 4, - ACTIONS(3), 1, + [252030] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5228), 1, + ACTIONS(9280), 1, + aux_sym__immediate_decimal_token2, + STATE(5200), 1, sym_comment, - ACTIONS(844), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 27, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [253569] = 5, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [252077] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9610), 1, - aux_sym__immediate_decimal_token2, - STATE(5229), 1, + STATE(5201), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(1088), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1086), 32, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454637,26 +453400,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253616] = 5, + [252122] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9425), 1, - aux_sym__immediate_decimal_token2, - STATE(5230), 1, + STATE(5202), 1, sym_comment, - ACTIONS(815), 7, + STATE(5239), 1, + aux_sym_cell_path_repeat1, + STATE(6001), 1, + sym_path, + ACTIONS(973), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, - anon_sym_DASH, + ACTIONS(975), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -454679,26 +453443,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253663] = 4, + [252171] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5231), 1, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(5203), 1, sym_comment, - ACTIONS(889), 7, + ACTIONS(877), 7, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 27, + ACTIONS(879), 26, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -454721,34 +453485,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [253708] = 5, - ACTIONS(3), 1, + [252218] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9419), 1, - aux_sym__immediate_decimal_token2, - STATE(5232), 1, + ACTIONS(1276), 1, + anon_sym_LF, + STATE(5204), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1274), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454762,21 +453526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253755] = 7, + [252263] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(951), 1, sym__entry_separator, - ACTIONS(9612), 1, + ACTIONS(9588), 1, anon_sym_DOT2, - STATE(5201), 1, - sym_path, - STATE(5233), 1, + ACTIONS(9590), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9592), 1, + aux_sym_unquoted_token2, + STATE(5205), 1, sym_comment, - STATE(5852), 1, - sym_cell_path, - ACTIONS(979), 30, + ACTIONS(949), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -454807,35 +453570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [253806] = 6, - ACTIONS(3), 1, + [252314] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9615), 1, - anon_sym_DOT2, - ACTIONS(9618), 1, - aux_sym__immediate_decimal_token2, - STATE(5234), 1, + STATE(5206), 1, sym_comment, - ACTIONS(835), 7, + ACTIONS(1187), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1185), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(837), 25, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -454849,28 +453611,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [253855] = 5, + [252359] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9401), 1, + ACTIONS(9293), 1, aux_sym__immediate_decimal_token2, - STATE(5235), 1, + STATE(5207), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(2957), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -454881,8 +453644,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -454890,115 +453651,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [253902] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [252406] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9622), 1, - aux_sym__immediate_decimal_token2, - STATE(5236), 1, - sym_comment, - ACTIONS(815), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(919), 1, + sym__entry_separator, + ACTIONS(9169), 1, anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [253951] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9626), 1, - aux_sym__immediate_decimal_token2, - STATE(5237), 1, + STATE(4955), 1, + sym_path, + STATE(5208), 1, sym_comment, - ACTIONS(807), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 23, - anon_sym_LBRACK, - anon_sym_COMMA, + STATE(6057), 1, + sym_cell_path, + ACTIONS(917), 30, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [254000] = 5, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [252457] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9387), 1, + ACTIONS(9594), 1, aux_sym__immediate_decimal_token2, - STATE(5238), 1, + STATE(5209), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(3806), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, + ACTIONS(3804), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -455009,8 +453730,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -455018,36 +453737,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [254047] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [252504] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - STATE(5239), 1, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5210), 1, sym_comment, - ACTIONS(861), 7, - anon_sym_GT, + ACTIONS(9598), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9600), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9596), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [252559] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(927), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4955), 1, + sym_path, + STATE(5211), 1, + sym_comment, + STATE(6193), 1, + sym_cell_path, + ACTIONS(925), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455061,26 +453829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [254094] = 7, + [252610] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(9508), 1, anon_sym_DOT2, - STATE(5240), 1, + STATE(5212), 1, sym_comment, - STATE(5312), 1, + STATE(5348), 1, sym_path, - STATE(6063), 1, + STATE(6107), 1, sym_cell_path, - ACTIONS(971), 6, + ACTIONS(925), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(973), 25, + ACTIONS(927), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -455106,26 +453873,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [254145] = 5, + [252661] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9349), 1, - aux_sym__immediate_decimal_token2, - STATE(5241), 1, - sym_comment, - ACTIONS(2988), 3, - ts_builtin_sym_end, + ACTIONS(3931), 1, anon_sym_LF, + ACTIONS(5440), 1, anon_sym_DOT2, - ACTIONS(2986), 30, + STATE(5213), 1, + sym_comment, + ACTIONS(3929), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -455148,64 +453915,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [254192] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9628), 1, - aux_sym__immediate_decimal_token2, - STATE(5242), 1, - sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [254239] = 7, + [252708] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(9630), 1, - anon_sym_DOT2, - STATE(5201), 1, - sym_path, - STATE(5243), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5214), 1, sym_comment, - STATE(5889), 1, - sym_cell_path, - ACTIONS(997), 30, - anon_sym_RBRACK, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -455234,76 +453956,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [254290] = 5, + [252753] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(1393), 1, anon_sym_LF, - ACTIONS(9633), 1, - aux_sym__immediate_decimal_token2, - STATE(5244), 1, + STATE(5215), 1, sym_comment, - ACTIONS(3834), 32, + ACTIONS(9598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9600), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 25, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [254337] = 5, - ACTIONS(3), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [252804] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9482), 1, - aux_sym__immediate_decimal_token2, - STATE(5245), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5216), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455317,67 +454041,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [254384] = 6, + [252849] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - sym__entry_separator, - ACTIONS(9635), 1, - anon_sym_DOT2, - ACTIONS(9638), 1, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5217), 1, + sym_comment, + ACTIONS(9598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9600), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9596), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [252906] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9608), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9610), 1, aux_sym__immediate_decimal_token2, - STATE(5246), 1, + STATE(5218), 1, sym_comment, - ACTIONS(835), 31, + ACTIONS(815), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [254433] = 4, + [252955] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5247), 1, - sym_comment, - ACTIONS(1100), 3, - ts_builtin_sym_end, + ACTIONS(1389), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 31, + STATE(5219), 1, + sym_comment, + ACTIONS(1387), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -455402,112 +454172,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [254478] = 6, - ACTIONS(105), 1, + [253000] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(9401), 1, + ACTIONS(9612), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9614), 1, aux_sym__immediate_decimal_token2, - ACTIONS(9640), 1, - anon_sym_DOT2, - STATE(5248), 1, + STATE(5220), 1, sym_comment, - ACTIONS(807), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(807), 9, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - [254527] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - anon_sym_LF, - ACTIONS(9391), 1, - aux_sym__immediate_decimal_token2, - STATE(5249), 1, - sym_comment, - ACTIONS(2996), 32, - anon_sym_SEMI, + ACTIONS(809), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [254574] = 6, + [253049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_DOT2, - ACTIONS(9210), 1, - aux_sym_unquoted_token6, - STATE(5250), 1, + ACTIONS(9411), 1, + aux_sym__immediate_decimal_token2, + STATE(5221), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(863), 25, - anon_sym_DASH_DASH, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -455530,79 +454257,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [254623] = 5, - ACTIONS(105), 1, + [253096] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9643), 1, - aux_sym__immediate_decimal_token2, - STATE(5251), 1, + STATE(5222), 1, sym_comment, - ACTIONS(3836), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1219), 14, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [254670] = 7, - ACTIONS(105), 1, + ACTIONS(1217), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [253141] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(973), 1, - sym__entry_separator, - ACTIONS(9212), 1, + ACTIONS(9508), 1, anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5252), 1, + STATE(5223), 1, sym_comment, - STATE(6116), 1, + STATE(5348), 1, + sym_path, + STATE(6250), 1, sym_cell_path, - ACTIONS(971), 30, - anon_sym_RBRACK, + ACTIONS(929), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(931), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455616,121 +454342,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [254721] = 4, - ACTIONS(105), 1, + [253192] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5253), 1, + ACTIONS(9616), 1, + anon_sym_DOT2, + ACTIONS(9618), 1, + aux_sym_unquoted_token6, + STATE(5224), 1, sym_comment, - ACTIONS(1067), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1065), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(877), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [254766] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9645), 1, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - ACTIONS(9647), 1, sym_duration_unit, - STATE(5254), 1, - sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(879), 19, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [254815] = 7, - ACTIONS(105), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [253241] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - ACTIONS(8019), 1, - anon_sym_COLON, - STATE(5255), 1, + STATE(5225), 1, sym_comment, - ACTIONS(1243), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1247), 28, + ACTIONS(807), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455744,23 +454425,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [254866] = 4, + sym_duration_unit, + [253286] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5256), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(861), 32, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(5226), 1, + sym_comment, + ACTIONS(2998), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -455774,8 +454459,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -455785,15 +454468,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [254911] = 4, + [253333] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5257), 1, - sym_comment, - ACTIONS(1254), 2, + ACTIONS(3891), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 32, + ACTIONS(9620), 1, + sym_long_flag_identifier, + STATE(5227), 1, + sym_comment, + ACTIONS(3887), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -455826,35 +454510,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [254956] = 6, - ACTIONS(3), 1, + [253380] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9436), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9649), 1, - anon_sym_DOT2, - STATE(5258), 1, + ACTIONS(1363), 1, + anon_sym_LF, + STATE(5228), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1361), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 25, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455868,26 +454551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [255005] = 7, + [253425] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5259), 1, + STATE(5229), 1, sym_comment, - STATE(6126), 1, - sym_cell_path, - ACTIONS(967), 30, - anon_sym_RBRACK, + ACTIONS(1211), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -455913,34 +454592,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255056] = 4, - ACTIONS(105), 1, + [253470] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1276), 1, - anon_sym_LF, - STATE(5260), 1, + ACTIONS(9417), 1, + aux_sym__immediate_decimal_token2, + STATE(5230), 1, sym_comment, - ACTIONS(1274), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(807), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -455954,22 +454633,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255101] = 4, + sym_duration_unit, + [253517] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, + ACTIONS(1253), 1, anon_sym_LF, - STATE(5261), 1, + ACTIONS(1292), 1, + anon_sym_COLON, + ACTIONS(1299), 1, + anon_sym_DOT2, + STATE(5231), 1, sym_comment, - ACTIONS(1278), 33, + ACTIONS(1251), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1255), 28, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -455995,14 +454678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255146] = 4, + [253568] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1280), 1, anon_sym_LF, - STATE(5262), 1, + STATE(5232), 1, sym_comment, - ACTIONS(1102), 33, + ACTIONS(1278), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -456036,32 +454719,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255191] = 4, + [253613] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5233), 1, + sym_comment, + ACTIONS(3806), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3804), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [253658] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5263), 1, + ACTIONS(9622), 1, + aux_sym__immediate_decimal_token2, + STATE(5234), 1, sym_comment, - ACTIONS(807), 14, - sym_identifier, + ACTIONS(855), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 20, - anon_sym_DOLLAR, + ACTIONS(857), 26, anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -456077,35 +454798,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [255236] = 5, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [253705] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8612), 1, - aux_sym_unquoted_token3, - STATE(5264), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5235), 1, sym_comment, - ACTIONS(825), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(823), 30, - sym_cmd_identifier, + STATE(5348), 1, + sym_path, + STATE(5841), 1, + sym_cell_path, + ACTIONS(966), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(968), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456119,34 +454846,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255283] = 4, - ACTIONS(105), 1, + [253756] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LF, - STATE(5265), 1, + ACTIONS(9624), 1, + anon_sym_DOT2, + ACTIONS(9627), 1, + aux_sym__immediate_decimal_token2, + STATE(5236), 1, sym_comment, - ACTIONS(1288), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(846), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 25, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456160,32 +454888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255328] = 4, + sym_duration_unit, + [253805] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5266), 1, + ACTIONS(9411), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9629), 1, + anon_sym_DOT2, + STATE(5237), 1, sym_comment, - ACTIONS(815), 14, - sym_identifier, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 20, - anon_sym_DOLLAR, + ACTIONS(817), 25, anon_sym_DASH, - anon_sym_DOT2, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -456201,34 +454928,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [255373] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [253854] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(5267), 1, + STATE(5238), 1, sym_comment, - ACTIONS(1294), 33, + ACTIONS(1219), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [253899] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9632), 1, + anon_sym_DOT2, + STATE(6001), 1, + sym_path, + STATE(5239), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(944), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456242,75 +455016,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255418] = 4, + [253948] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, - anon_sym_LF, - STATE(5268), 1, + STATE(5240), 1, sym_comment, - ACTIONS(1298), 33, + ACTIONS(4034), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(4032), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [255463] = 4, - ACTIONS(105), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [253993] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_LF, - STATE(5269), 1, + STATE(5241), 1, sym_comment, - ACTIONS(990), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, + anon_sym_COMMA, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456324,114 +455097,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255508] = 4, + sym_duration_unit, + [254038] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, - anon_sym_LF, - STATE(5270), 1, + ACTIONS(9284), 1, + aux_sym__immediate_decimal_token2, + STATE(5242), 1, sym_comment, - ACTIONS(1305), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [255553] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [254085] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, - anon_sym_LF, - STATE(5271), 1, + ACTIONS(9635), 1, + anon_sym_DOT2, + ACTIONS(9638), 1, + aux_sym__immediate_decimal_token2, + STATE(5243), 1, sym_comment, - ACTIONS(1309), 33, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 30, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [255598] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [254134] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5272), 1, + STATE(5244), 1, sym_comment, - ACTIONS(844), 14, - sym_identifier, + ACTIONS(807), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 20, - anon_sym_DOLLAR, + ACTIONS(809), 27, + anon_sym_COMMA, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -456447,32 +455220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [255643] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [254179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5273), 1, + STATE(5245), 1, sym_comment, - ACTIONS(889), 14, - sym_identifier, + ACTIONS(855), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(891), 20, - anon_sym_DOLLAR, + ACTIONS(857), 27, + anon_sym_COMMA, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -456488,25 +455261,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [255688] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [254224] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(9508), 1, anon_sym_DOT2, - STATE(5274), 1, + STATE(5246), 1, sym_comment, - STATE(5312), 1, + STATE(5348), 1, sym_path, - STATE(5817), 1, + STATE(6180), 1, sym_cell_path, - ACTIONS(997), 6, + ACTIONS(909), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(999), 25, + ACTIONS(911), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -456532,29 +455309,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255739] = 7, + [254275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9652), 1, - anon_sym_DOT2, - STATE(5275), 1, + STATE(5247), 1, sym_comment, - STATE(5309), 1, - sym_path, - STATE(6009), 1, - sym_cell_path, - ACTIONS(979), 6, + ACTIONS(894), 7, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(981), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 27, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -456576,30 +455349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255790] = 8, + sym_duration_unit, + [254320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_DOT2, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - STATE(5276), 1, + STATE(5248), 1, sym_comment, - ACTIONS(9655), 2, - anon_sym_LT, - anon_sym_EQ2, - ACTIONS(823), 5, + ACTIONS(807), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(825), 24, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -456621,34 +455390,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255843] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [254365] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1315), 1, - anon_sym_LF, - STATE(5277), 1, + ACTIONS(9640), 1, + anon_sym_DOT2, + STATE(5199), 1, + sym_path, + STATE(5249), 1, sym_comment, - ACTIONS(1313), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5841), 1, + sym_cell_path, + ACTIONS(966), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(968), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456662,31 +455435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255888] = 7, + [254416] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5278), 1, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5250), 1, sym_comment, - STATE(6139), 1, - sym_cell_path, - ACTIONS(1033), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9600), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -456706,14 +455478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255939] = 4, + [254465] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5279), 1, + STATE(5251), 1, sym_comment, - ACTIONS(1321), 33, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -456747,70 +455519,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [255984] = 4, - ACTIONS(105), 1, + [254510] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1327), 1, - anon_sym_LF, - STATE(5280), 1, + ACTIONS(1251), 1, + sym_cmd_identifier, + ACTIONS(9643), 1, + anon_sym_DOT2, + STATE(5252), 1, sym_comment, - ACTIONS(1325), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1253), 4, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1385), 9, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1255), 19, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [256029] = 5, + [254561] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(5483), 1, - anon_sym_DOT2, - STATE(5281), 1, + ACTIONS(9163), 1, + aux_sym__immediate_decimal_token2, + STATE(5253), 1, sym_comment, - ACTIONS(1102), 32, - anon_sym_SEMI, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -456821,6 +455594,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -456828,16 +455603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [256076] = 4, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [254608] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(1343), 1, anon_sym_LF, - STATE(5282), 1, + STATE(5254), 1, sym_comment, - ACTIONS(1332), 33, + ACTIONS(1341), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -456871,69 +455646,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [256121] = 4, - ACTIONS(105), 1, + [254653] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5283), 1, + ACTIONS(9465), 1, + aux_sym_unquoted_token6, + STATE(5255), 1, sym_comment, - ACTIONS(1230), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(877), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [256166] = 7, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [254700] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - STATE(4930), 1, - sym_path, - STATE(5284), 1, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5256), 1, sym_comment, - STATE(6176), 1, - sym_cell_path, - ACTIONS(909), 30, - anon_sym_RBRACK, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 31, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -456956,34 +455730,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [256217] = 5, + [254747] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9657), 1, + ACTIONS(9495), 1, anon_sym_DOT2, - STATE(5285), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(5257), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - ACTIONS(863), 27, - anon_sym_COMMA, + sym_duration_unit, + ACTIONS(879), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [254796] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5258), 1, + sym_comment, + ACTIONS(1215), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -456997,27 +455814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256264] = 6, + [254841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9659), 1, + ACTIONS(9301), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9645), 1, anon_sym_DOT2, - STATE(5869), 1, - sym_path, - STATE(5286), 2, + STATE(5259), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 6, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1017), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 25, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -457041,33 +455856,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [256313] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [254890] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5287), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5260), 1, sym_comment, - ACTIONS(807), 8, + ACTIONS(1266), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457081,34 +455898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256358] = 4, - ACTIONS(3), 1, + [254935] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5288), 1, + ACTIONS(9584), 1, + anon_sym_DOT2, + STATE(5261), 1, sym_comment, - ACTIONS(815), 8, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457122,38 +455940,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256403] = 7, - ACTIONS(3), 1, + [254982] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5289), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5262), 1, sym_comment, - STATE(5869), 1, - sym_path, - ACTIONS(975), 6, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(977), 25, - anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457167,33 +455981,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [256454] = 4, - ACTIONS(3), 1, + [255027] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5290), 1, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5263), 1, sym_comment, - ACTIONS(844), 8, - anon_sym_GT, + ACTIONS(9598), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9604), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9600), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 23, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457207,26 +456026,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256499] = 4, + [255080] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5291), 1, + ACTIONS(9648), 1, + anon_sym_DOT2, + ACTIONS(9652), 1, + aux_sym__immediate_decimal_token2, + STATE(5264), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3167), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 32, + ACTIONS(3165), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -457249,35 +456069,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [256544] = 6, - ACTIONS(3), 1, + [255129] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9581), 1, - anon_sym_DOT2, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5292), 1, + STATE(5265), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(1084), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1082), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_COMMA, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457291,34 +456110,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256593] = 4, - ACTIONS(3), 1, + [255174] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5293), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5266), 1, sym_comment, - ACTIONS(889), 8, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 26, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457332,64 +456151,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256638] = 4, - ACTIONS(105), 1, + [255219] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5294), 1, + ACTIONS(9654), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9656), 1, + aux_sym__immediate_decimal_token2, + STATE(5267), 1, sym_comment, - ACTIONS(2988), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 32, - anon_sym_SEMI, + ACTIONS(815), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(817), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [256683] = 6, + [255268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9356), 1, - aux_sym_unquoted_token6, - ACTIONS(9662), 1, - anon_sym_DOT2, - STATE(5295), 1, + ACTIONS(951), 1, + anon_sym_LF, + STATE(5268), 1, sym_comment, - ACTIONS(861), 31, - anon_sym_RBRACK, + ACTIONS(949), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -457415,27 +456235,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [256732] = 4, + [255313] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5296), 1, + ACTIONS(9280), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9658), 1, + anon_sym_DOT2, + STATE(5269), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(3000), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 32, + ACTIONS(2998), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -457458,76 +456278,124 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [256777] = 4, + [255362] = 11, ACTIONS(105), 1, anon_sym_POUND, - STATE(5297), 1, - sym_comment, - ACTIONS(3890), 2, + ACTIONS(1393), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3888), 32, + STATE(5270), 1, + sym_comment, + ACTIONS(9598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9661), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9600), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9596), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 11, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [256822] = 6, - ACTIONS(3), 1, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [255421] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(9664), 1, - anon_sym_DOT2, - STATE(5298), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5271), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [255466] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9663), 1, + anon_sym_QMARK2, + STATE(5272), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1070), 31, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -457541,68 +456409,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [256871] = 4, + [255513] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5299), 1, + ACTIONS(9663), 1, + anon_sym_QMARK2, + STATE(5273), 1, sym_comment, - ACTIONS(1261), 2, - anon_sym_LF, + ACTIONS(1072), 2, anon_sym_DOT2, - ACTIONS(1259), 32, + sym__entry_separator, + ACTIONS(1070), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [256916] = 5, - ACTIONS(3), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [255560] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9210), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9387), 1, aux_sym_unquoted_token6, - STATE(5300), 1, + STATE(5274), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(877), 32, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + sym_duration_unit, + [255607] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9301), 1, + aux_sym__immediate_decimal_token2, + STATE(5275), 1, + sym_comment, + ACTIONS(815), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -457625,41 +456535,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [256963] = 11, + [255654] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - STATE(5301), 1, + STATE(5276), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(1391), 5, sym_identifier, anon_sym_in, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 13, + ACTIONS(1393), 13, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457673,24 +456583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257022] = 8, + [255713] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - STATE(5302), 1, + STATE(5277), 1, sym_comment, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, + ACTIONS(1391), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -457698,7 +456608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 19, + ACTIONS(1393), 19, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457718,46 +456628,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257075] = 13, + [255766] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, + ACTIONS(9679), 1, anon_sym_in, - STATE(5303), 1, + STATE(5278), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 10, + ACTIONS(1393), 10, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457768,21 +456678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257138] = 7, + [255829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - STATE(5304), 1, + STATE(5279), 1, sym_comment, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 9, + ACTIONS(1391), 9, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -457792,7 +456702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 19, + ACTIONS(1393), 19, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457812,56 +456722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257189] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5305), 1, - sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [257234] = 5, + [255880] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5306), 1, + STATE(5280), 1, sym_comment, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, + ACTIONS(1391), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -457874,7 +456743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 20, + ACTIONS(1393), 20, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457895,68 +456764,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257281] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5307), 1, - sym_comment, - ACTIONS(1115), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [257326] = 9, + [255927] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - STATE(5308), 1, + STATE(5281), 1, sym_comment, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, + ACTIONS(1391), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -457964,7 +456792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 17, + ACTIONS(1393), 17, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -457982,448 +456810,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [257381] = 7, + [255982] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5140), 1, - aux_sym_cell_path_repeat1, - STATE(5309), 1, + ACTIONS(9673), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9679), 1, + anon_sym_in, + STATE(5282), 1, sym_comment, - STATE(5869), 1, - sym_path, - ACTIONS(903), 6, + ACTIONS(9665), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9667), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(905), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9683), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [257432] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5310), 1, - sym_comment, - ACTIONS(1100), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1098), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [257477] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(9260), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9684), 1, - anon_sym_DOT2, - STATE(5311), 1, - sym_comment, - ACTIONS(807), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1393), 8, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [257526] = 7, + [256047] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5289), 1, - aux_sym_cell_path_repeat1, - STATE(5312), 1, + ACTIONS(9673), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9679), 1, + anon_sym_in, + ACTIONS(9685), 1, + anon_sym_bit_DASHand, + STATE(5283), 1, sym_comment, - STATE(5869), 1, - sym_path, - ACTIONS(903), 6, + ACTIONS(9665), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9667), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(905), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9683), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [257577] = 7, + ACTIONS(9677), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [256114] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9673), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9679), 1, + anon_sym_in, + ACTIONS(9685), 1, + anon_sym_bit_DASHand, ACTIONS(9687), 1, - anon_sym_DOT2, - ACTIONS(9689), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9691), 1, - aux_sym_unquoted_token2, - STATE(5313), 1, + anon_sym_bit_DASHxor, + STATE(5284), 1, sym_comment, - ACTIONS(1005), 6, + ACTIONS(9665), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9667), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1007), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9683), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [257628] = 14, + ACTIONS(9677), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + [256183] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, + ACTIONS(9679), 1, anon_sym_in, - STATE(5314), 1, + ACTIONS(9685), 1, + anon_sym_bit_DASHand, + ACTIONS(9687), 1, + anon_sym_bit_DASHxor, + ACTIONS(9689), 1, + anon_sym_bit_DASHor, + STATE(5285), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9693), 2, + ACTIONS(9683), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 8, + ACTIONS(1393), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [257693] = 15, + [256254] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, + ACTIONS(9679), 1, anon_sym_in, - ACTIONS(9695), 1, + ACTIONS(9685), 1, anon_sym_bit_DASHand, - STATE(5315), 1, + ACTIONS(9687), 1, + anon_sym_bit_DASHxor, + ACTIONS(9689), 1, + anon_sym_bit_DASHor, + ACTIONS(9691), 1, + anon_sym_and, + STATE(5286), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9693), 2, + ACTIONS(9683), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9670), 3, + ACTIONS(1391), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 7, + ACTIONS(1393), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [257760] = 16, + [256327] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, + ACTIONS(9679), 1, anon_sym_in, - ACTIONS(9695), 1, + ACTIONS(9685), 1, anon_sym_bit_DASHand, - ACTIONS(9697), 1, + ACTIONS(9687), 1, anon_sym_bit_DASHxor, - STATE(5316), 1, + ACTIONS(9689), 1, + anon_sym_bit_DASHor, + ACTIONS(9691), 1, + anon_sym_and, + ACTIONS(9693), 1, + anon_sym_xor, + STATE(5287), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(1391), 2, + sym_identifier, + anon_sym_or, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9693), 2, + ACTIONS(9683), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, + ACTIONS(1393), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - [257829] = 17, + [256402] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9674), 1, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(9673), 1, anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, + ACTIONS(9679), 1, anon_sym_in, - ACTIONS(9695), 1, + ACTIONS(9685), 1, anon_sym_bit_DASHand, - ACTIONS(9697), 1, + ACTIONS(9687), 1, anon_sym_bit_DASHxor, - ACTIONS(9699), 1, + ACTIONS(9689), 1, anon_sym_bit_DASHor, - STATE(5317), 1, + ACTIONS(9691), 1, + anon_sym_and, + ACTIONS(9693), 1, + anon_sym_xor, + ACTIONS(9695), 1, + anon_sym_or, + STATE(5288), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9665), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9671), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9675), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9693), 2, + ACTIONS(9683), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9670), 3, + ACTIONS(9669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + ACTIONS(9681), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(9678), 4, + ACTIONS(9677), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 5, + ACTIONS(1393), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [257900] = 6, + [256479] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(8451), 1, + aux_sym_unquoted_token3, + STATE(5289), 1, + sym_comment, + ACTIONS(827), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [256526] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9697), 1, + anon_sym_bit_DASHand, + STATE(5290), 1, + sym_comment, + ACTIONS(9598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9661), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9600), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9596), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [256587] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5101), 1, + aux_sym_cell_path_repeat1, + STATE(5291), 1, + sym_comment, + STATE(5723), 1, + sym_path, + ACTIONS(975), 2, + anon_sym_DOT2, sym__entry_separator, - ACTIONS(9701), 1, + ACTIONS(973), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [256636] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1253), 1, + anon_sym_LF, + ACTIONS(1299), 1, anon_sym_DOT2, - ACTIONS(9704), 1, - aux_sym__immediate_decimal_token2, - STATE(5318), 1, + STATE(5292), 1, sym_comment, - ACTIONS(835), 31, + ACTIONS(1251), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1255), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -458438,91 +457354,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [257949] = 7, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [256685] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5293), 1, + sym_comment, + ACTIONS(1211), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [256730] = 18, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1299), 1, + anon_sym_DOT2, + ACTIONS(8124), 1, + anon_sym_LF, + ACTIONS(8144), 1, + anon_sym_bit_DASHand, + ACTIONS(8146), 1, + anon_sym_bit_DASHxor, + ACTIONS(8148), 1, + anon_sym_bit_DASHor, + ACTIONS(8150), 1, + anon_sym_and, + ACTIONS(8152), 1, + anon_sym_xor, + ACTIONS(8154), 1, + anon_sym_or, + STATE(5294), 1, + sym_comment, + ACTIONS(8128), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8138), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(8140), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8142), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8122), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(8130), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8134), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(8126), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [256803] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_cmd_identifier, - ACTIONS(9593), 1, - anon_sym_DOT2, - STATE(5319), 1, + ACTIONS(9157), 1, + aux_sym__immediate_decimal_token2, + STATE(5295), 1, sym_comment, - ACTIONS(1245), 4, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1409), 9, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1247), 19, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [256850] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5296), 1, + sym_comment, + ACTIONS(894), 7, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [258000] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1340), 1, - anon_sym_LF, - STATE(5320), 1, - sym_comment, - ACTIONS(1338), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 27, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458536,69 +457543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258045] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9674), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, - anon_sym_in, - ACTIONS(9695), 1, - anon_sym_bit_DASHand, - ACTIONS(9697), 1, - anon_sym_bit_DASHxor, - ACTIONS(9699), 1, - anon_sym_bit_DASHor, - ACTIONS(9706), 1, - anon_sym_and, - STATE(5321), 1, - sym_comment, - ACTIONS(9666), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9668), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9672), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9693), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(9670), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9682), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [258118] = 4, + sym_duration_unit, + [256895] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1193), 1, anon_sym_LF, - STATE(5322), 1, + STATE(5297), 1, sym_comment, - ACTIONS(1338), 33, + ACTIONS(1191), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -458632,34 +457585,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258163] = 4, + [256940] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(829), 1, anon_sym_LF, - STATE(5323), 1, + ACTIONS(7580), 1, + aux_sym_unquoted_token3, + STATE(5298), 1, sym_comment, - ACTIONS(1005), 33, + ACTIONS(827), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [256987] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5299), 1, + sym_comment, + STATE(5348), 1, + sym_path, + STATE(6242), 1, + sym_cell_path, + ACTIONS(913), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(915), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -458673,18 +457671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258208] = 5, + [257038] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9708), 1, - aux_sym__immediate_decimal_token2, - STATE(5324), 1, + ACTIONS(1383), 1, + anon_sym_LF, + STATE(5300), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 31, + ACTIONS(1381), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -458713,31 +457712,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [258255] = 7, + [257083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5312), 1, - sym_path, - STATE(5325), 1, + ACTIONS(9699), 1, + aux_sym__immediate_decimal_token2, + STATE(5301), 1, sym_comment, - STATE(6220), 1, - sym_cell_path, - ACTIONS(1001), 6, + ACTIONS(855), 7, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1003), 25, - anon_sym_DOLLAR, + sym_filesize_unit, + ACTIONS(857), 26, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -458759,55 +457753,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258306] = 4, + sym_duration_unit, + [257130] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5326), 1, + ACTIONS(9311), 1, + aux_sym__immediate_decimal_token2, + STATE(5302), 1, sym_comment, - ACTIONS(1230), 2, - anon_sym_LF, + ACTIONS(809), 2, anon_sym_DOT2, - ACTIONS(1228), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + sym__entry_separator, + ACTIONS(807), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [258351] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [257177] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9701), 1, + aux_sym__immediate_decimal_token2, + STATE(5303), 1, + sym_comment, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [257224] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1056), 1, anon_sym_LF, - STATE(5327), 1, + STATE(5304), 1, sym_comment, - ACTIONS(1342), 33, + ACTIONS(1054), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -458841,14 +457879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258396] = 4, + [257269] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(1355), 1, anon_sym_LF, - STATE(5328), 1, + STATE(5305), 1, sym_comment, - ACTIONS(1346), 33, + ACTIONS(1353), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -458882,19 +457920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258441] = 4, + [257314] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5329), 1, - sym_comment, - ACTIONS(1261), 2, + ACTIONS(1389), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 32, + STATE(5306), 1, + sym_comment, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -458923,26 +457961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258486] = 7, + [257359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9526), 1, + ACTIONS(9463), 1, anon_sym_DOT2, - STATE(5312), 1, - sym_path, - STATE(5330), 1, + ACTIONS(9465), 1, + aux_sym_unquoted_token6, + STATE(5307), 1, sym_comment, - STATE(6127), 1, - sym_cell_path, - ACTIONS(990), 6, + ACTIONS(877), 7, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(992), 25, - anon_sym_DOLLAR, + sym_filesize_unit, + ACTIONS(879), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -458967,34 +458003,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258537] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [257408] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(5331), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5308), 1, sym_comment, - ACTIONS(1033), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(5348), 1, + sym_path, + STATE(6161), 1, + sym_cell_path, + ACTIONS(959), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(961), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459008,103 +458048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258582] = 5, + [257459] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, - anon_sym_LF, - ACTIONS(9710), 1, - anon_sym_DOT2, - STATE(5332), 1, + STATE(5309), 1, sym_comment, - ACTIONS(3941), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [258629] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3937), 1, + ACTIONS(1187), 2, anon_sym_LF, - ACTIONS(9712), 1, anon_sym_DOT2, - STATE(5333), 1, - sym_comment, - ACTIONS(3935), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [258676] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(5334), 1, - sym_comment, - ACTIONS(1350), 33, + ACTIONS(1185), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -459133,14 +458089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258721] = 4, + [257504] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(1284), 1, anon_sym_LF, - STATE(5335), 1, + STATE(5310), 1, sym_comment, - ACTIONS(1354), 33, + ACTIONS(1282), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -459174,74 +458130,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [258766] = 19, - ACTIONS(3), 1, + [257549] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9674), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, - anon_sym_in, - ACTIONS(9695), 1, - anon_sym_bit_DASHand, + ACTIONS(1393), 1, + anon_sym_LF, ACTIONS(9697), 1, + anon_sym_bit_DASHand, + ACTIONS(9703), 1, anon_sym_bit_DASHxor, - ACTIONS(9699), 1, - anon_sym_bit_DASHor, - ACTIONS(9706), 1, - anon_sym_and, - ACTIONS(9714), 1, - anon_sym_xor, - STATE(5336), 1, + STATE(5311), 1, sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(9666), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9668), 2, + ACTIONS(9598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9672), 2, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, + ACTIONS(9604), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9693), 2, + ACTIONS(9661), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9670), 3, + ACTIONS(9600), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9682), 3, + anon_sym_SLASH_SLASH, + ACTIONS(9606), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9678), 4, + ACTIONS(9596), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_COMMA, + ACTIONS(1391), 9, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [258841] = 5, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [257612] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9292), 1, - aux_sym__immediate_decimal_token2, - STATE(5337), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5312), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, + ACTIONS(1387), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -459270,41 +458221,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [258888] = 6, + [257657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9535), 1, - anon_sym_DOT2, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, - STATE(5338), 1, + STATE(5313), 1, sym_comment, - ACTIONS(861), 13, - sym_identifier, + ACTIONS(1187), 14, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1185), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 19, - anon_sym_DOLLAR, + [257702] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1193), 1, + anon_sym_LF, + ACTIONS(9705), 1, + aux_sym_unquoted_token5, + STATE(5314), 1, + sym_comment, + ACTIONS(1191), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459315,91 +458301,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [258937] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(9674), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9680), 1, - anon_sym_in, - ACTIONS(9695), 1, - anon_sym_bit_DASHand, - ACTIONS(9697), 1, - anon_sym_bit_DASHxor, - ACTIONS(9699), 1, - anon_sym_bit_DASHor, - ACTIONS(9706), 1, anon_sym_and, - ACTIONS(9714), 1, anon_sym_xor, - ACTIONS(9716), 1, anon_sym_or, - STATE(5339), 1, + [257749] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9391), 1, + anon_sym_DOT2, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, + STATE(5315), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(9470), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9668), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9672), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9676), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9693), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9670), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9682), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [259014] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5340), 1, - sym_comment, - ACTIONS(1115), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1113), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(829), 24, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459413,27 +458349,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [259059] = 5, + [257802] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9277), 1, - aux_sym__immediate_decimal_token2, - STATE(5341), 1, - sym_comment, - ACTIONS(809), 2, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(5440), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + STATE(5316), 1, + sym_comment, + ACTIONS(1054), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -459444,8 +458382,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -459453,29 +458389,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [259106] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [257849] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9269), 1, - aux_sym__immediate_decimal_token2, - STATE(5342), 1, + STATE(5317), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, + ACTIONS(4656), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4654), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, anon_sym_DOT, + anon_sym_catch, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -459486,8 +458423,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -459495,62 +458430,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [259153] = 5, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [257894] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9718), 1, - aux_sym__immediate_decimal_token2, - STATE(5343), 1, + STATE(5318), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(815), 14, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [259200] = 5, + aux_sym_unquoted_token6, + ACTIONS(817), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [257939] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9260), 1, - aux_sym__immediate_decimal_token2, - STATE(5344), 1, + ACTIONS(1351), 1, + anon_sym_LF, + STATE(5319), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(1349), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -459579,39 +458514,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [259247] = 4, - ACTIONS(3), 1, + [257984] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5345), 1, + ACTIONS(8617), 1, + aux_sym_unquoted_token3, + STATE(5320), 1, sym_comment, - ACTIONS(889), 15, - sym_identifier, + ACTIONS(829), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(827), 30, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459622,18 +458553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [259292] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [258031] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, + ACTIONS(848), 1, sym__entry_separator, - ACTIONS(9720), 1, + ACTIONS(9707), 1, anon_sym_DOT2, - ACTIONS(9723), 1, + ACTIONS(9710), 1, aux_sym__immediate_decimal_token2, - STATE(5346), 1, + STATE(5321), 1, sym_comment, - ACTIONS(835), 31, + ACTIONS(846), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -459663,71 +458597,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [259341] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5347), 1, - sym_comment, - ACTIONS(844), 15, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [259386] = 4, + aux_sym__unquoted_in_list_token1, + [258080] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5348), 1, - sym_comment, - ACTIONS(1224), 2, - anon_sym_LF, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(9157), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9712), 1, anon_sym_DOT2, - ACTIONS(1222), 32, - anon_sym_SEMI, + STATE(5322), 1, + sym_comment, + ACTIONS(815), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -459738,6 +458631,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -459745,30 +458640,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [259431] = 6, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [258129] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(9277), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9725), 1, + ACTIONS(4038), 1, + anon_sym_LF, + ACTIONS(9715), 1, anon_sym_DOT2, - STATE(5349), 1, + STATE(5323), 1, sym_comment, - ACTIONS(807), 31, + ACTIONS(4036), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -459779,8 +458675,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -459788,204 +458682,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [259480] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [258176] = 14, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5350), 1, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9697), 1, + anon_sym_bit_DASHand, + ACTIONS(9703), 1, + anon_sym_bit_DASHxor, + ACTIONS(9717), 1, + anon_sym_bit_DASHor, + STATE(5324), 1, sym_comment, - ACTIONS(815), 15, - sym_identifier, - anon_sym_GT, + ACTIONS(9598), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9604), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(9661), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [259525] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - STATE(5351), 1, - sym_comment, - ACTIONS(1193), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(9600), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9606), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [259570] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DOT2, - STATE(5312), 1, - sym_path, - STATE(5352), 1, - sym_comment, - STATE(6067), 1, - sym_cell_path, - ACTIONS(967), 6, + ACTIONS(9596), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(969), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [259621] = 5, - ACTIONS(105), 1, + [258241] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9356), 1, - aux_sym_unquoted_token6, - STATE(5353), 1, + STATE(5325), 1, sym_comment, - ACTIONS(861), 32, - anon_sym_RBRACK, + ACTIONS(807), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [259668] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1284), 1, - anon_sym_LF, - STATE(5354), 1, - sym_comment, - ACTIONS(1282), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -459996,30 +458776,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [259713] = 5, + [258286] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3917), 1, + STATE(5326), 1, + sym_comment, + ACTIONS(1088), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9728), 1, anon_sym_DOT2, - STATE(5355), 1, - sym_comment, - ACTIONS(3915), 32, + ACTIONS(1086), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -460041,14 +458817,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [259760] = 4, + [258331] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(1331), 1, anon_sym_LF, - STATE(5356), 1, + STATE(5327), 1, sym_comment, - ACTIONS(1385), 33, + ACTIONS(1329), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -460082,16 +458858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [259805] = 5, + [258376] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3923), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(9730), 1, - anon_sym_DOT2, - STATE(5357), 1, + ACTIONS(9399), 1, + aux_sym__immediate_decimal_token2, + STATE(5328), 1, sym_comment, - ACTIONS(3921), 32, + ACTIONS(2998), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460124,14 +458900,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [259852] = 4, + [258423] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5358), 1, + STATE(5329), 1, sym_comment, - ACTIONS(1358), 33, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -460165,37 +458941,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [259897] = 4, - ACTIONS(3), 1, + [258468] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5359), 1, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4955), 1, + sym_path, + STATE(5330), 1, sym_comment, - ACTIONS(807), 15, - sym_identifier, + STATE(6027), 1, + sym_cell_path, + ACTIONS(933), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 19, + [258519] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1370), 1, + anon_sym_LF, + STATE(5331), 1, + sym_comment, + ACTIONS(1368), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DOT2, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460206,16 +459023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [259942] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [258564] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3842), 1, anon_sym_LF, - ACTIONS(9732), 1, + ACTIONS(9719), 1, anon_sym_DOT2, - STATE(5360), 1, + STATE(5332), 1, sym_comment, - ACTIONS(3927), 32, + ACTIONS(3840), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460248,141 +459068,109 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [259989] = 4, - ACTIONS(105), 1, + [258611] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5361), 1, + ACTIONS(9721), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9723), 1, + aux_sym__immediate_decimal_token2, + STATE(5333), 1, sym_comment, - ACTIONS(1191), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(807), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [260034] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9734), 1, - anon_sym_DOT2, - ACTIONS(9737), 1, - aux_sym__immediate_decimal_token2, - STATE(5362), 1, - sym_comment, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3489), 30, - anon_sym_SEMI, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(809), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [260083] = 6, + [258660] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8461), 1, - sym_filesize_unit, - ACTIONS(8463), 1, - sym_duration_unit, - STATE(5363), 1, - sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, + ACTIONS(1393), 1, anon_sym_LF, - ACTIONS(1102), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9697), 1, + anon_sym_bit_DASHand, + ACTIONS(9703), 1, + anon_sym_bit_DASHxor, + ACTIONS(9717), 1, + anon_sym_bit_DASHor, + ACTIONS(9725), 1, + anon_sym_and, + STATE(5334), 1, + sym_comment, + ACTIONS(9598), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9661), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9600), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9596), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1391), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [260132] = 4, + [258727] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5364), 1, + STATE(5335), 1, sym_comment, - ACTIONS(1397), 33, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -460416,19 +459204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260177] = 4, + [258772] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, + ACTIONS(1321), 1, anon_sym_LF, - STATE(5365), 1, + STATE(5336), 1, sym_comment, - ACTIONS(1317), 33, + ACTIONS(1319), 33, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -460457,59 +459245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260222] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9345), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9739), 1, - anon_sym_DOT2, - STATE(5366), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [260271] = 5, + [258817] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, + ACTIONS(2959), 1, anon_sym_LF, - ACTIONS(9742), 1, - anon_sym_DOT2, - STATE(5367), 1, + ACTIONS(9407), 1, + aux_sym__immediate_decimal_token2, + STATE(5337), 1, sym_comment, - ACTIONS(3909), 32, + ACTIONS(2957), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460542,34 +459287,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [260318] = 4, - ACTIONS(105), 1, + [258864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1391), 1, - anon_sym_LF, - STATE(5368), 1, + STATE(5338), 1, sym_comment, - ACTIONS(1389), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(855), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460580,17 +459328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260363] = 4, + [258909] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4364), 1, - anon_sym_LF, - STATE(5369), 1, + STATE(5339), 1, sym_comment, - ACTIONS(4362), 32, + ACTIONS(1215), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -460623,97 +459369,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [260407] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5370), 1, - sym_comment, - ACTIONS(815), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [260451] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5371), 1, - sym_comment, - ACTIONS(1327), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1325), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260495] = 4, + [258954] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1409), 1, - anon_sym_LF, - STATE(5372), 1, + ACTIONS(931), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + STATE(4955), 1, + sym_path, + STATE(5340), 1, sym_comment, - ACTIONS(1247), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6175), 1, + sym_cell_path, + ACTIONS(929), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -460743,121 +459413,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260539] = 9, + [259005] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5373), 1, + ACTIONS(9697), 1, + anon_sym_bit_DASHand, + ACTIONS(9703), 1, + anon_sym_bit_DASHxor, + ACTIONS(9717), 1, + anon_sym_bit_DASHor, + ACTIONS(9725), 1, + anon_sym_and, + ACTIONS(9727), 1, + anon_sym_xor, + STATE(5341), 1, sym_comment, - ACTIONS(9746), 2, + ACTIONS(9598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9750), 2, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, + ACTIONS(9604), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9748), 4, + ACTIONS(9661), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9600), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9744), 6, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(9596), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260593] = 4, - ACTIONS(105), 1, + [259074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5374), 1, + STATE(5342), 1, sym_comment, - ACTIONS(1263), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(894), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [260637] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5375), 1, - sym_comment, - ACTIONS(9746), 2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460868,21 +459507,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260687] = 4, + [259119] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(3806), 1, anon_sym_LF, - STATE(5376), 1, + ACTIONS(9729), 1, + aux_sym__immediate_decimal_token2, + STATE(5343), 1, + sym_comment, + ACTIONS(3804), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [259166] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5344), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -460911,79 +459590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260731] = 10, - ACTIONS(105), 1, + [259211] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5377), 1, + ACTIONS(9338), 1, + aux_sym__immediate_decimal_token2, + STATE(5345), 1, sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9748), 4, + ACTIONS(807), 7, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260787] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5378), 1, - sym_comment, - ACTIONS(1263), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -460997,60 +459631,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260831] = 6, + sym_duration_unit, + [259258] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5379), 1, + ACTIONS(9697), 1, + anon_sym_bit_DASHand, + ACTIONS(9703), 1, + anon_sym_bit_DASHxor, + ACTIONS(9717), 1, + anon_sym_bit_DASHor, + ACTIONS(9725), 1, + anon_sym_and, + ACTIONS(9727), 1, + anon_sym_xor, + ACTIONS(9731), 1, + anon_sym_or, + STATE(5346), 1, sym_comment, - ACTIONS(9750), 2, + ACTIONS(9598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9602), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9748), 4, + ACTIONS(9604), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9661), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9600), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 26, + ACTIONS(9606), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9596), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260879] = 4, + [259329] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5380), 1, + STATE(5347), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1387), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -461079,74 +459727,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [260923] = 4, + [259374] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5381), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5348), 1, sym_comment, - ACTIONS(1276), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1274), 20, - sym_cmd_identifier, + STATE(5361), 1, + aux_sym_cell_path_repeat1, + STATE(6001), 1, + sym_path, + ACTIONS(903), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [260967] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5382), 1, - sym_comment, - ACTIONS(9750), 2, + ACTIONS(905), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 30, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -461160,33 +459771,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261013] = 4, - ACTIONS(105), 1, + [259425] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5383), 1, + ACTIONS(9391), 1, + anon_sym_DOT2, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, + STATE(5349), 1, sym_comment, - ACTIONS(1263), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(9733), 2, + anon_sym_LT, + anon_sym_EQ2, + ACTIONS(827), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(829), 24, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -461200,64 +459816,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261057] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5384), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1332), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [261101] = 4, + [259478] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, - anon_sym_LF, - STATE(5385), 1, + ACTIONS(9735), 1, + anon_sym_QMARK2, + STATE(5350), 1, sym_comment, - ACTIONS(1317), 32, + ACTIONS(1072), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -461280,62 +459858,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [261145] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5386), 1, - sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [261197] = 4, + [259525] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1272), 1, anon_sym_LF, - STATE(5387), 1, + STATE(5351), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1270), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -461364,65 +459899,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261241] = 11, - ACTIONS(105), 1, + [259570] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - STATE(5388), 1, + ACTIONS(9643), 1, + anon_sym_DOT2, + STATE(5352), 1, sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, + ACTIONS(1056), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9748), 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1054), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [261299] = 4, + [259617] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1439), 1, anon_sym_LF, - STATE(5389), 1, + STATE(5353), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1437), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -461451,70 +459982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261343] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - STATE(5390), 1, - sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [261403] = 4, + [259662] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5391), 1, + STATE(5354), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1084), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1082), 32, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -461539,67 +460023,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261447] = 13, + [259707] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(9735), 1, + anon_sym_QMARK2, + STATE(5355), 1, + sym_comment, + ACTIONS(1072), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - ACTIONS(9760), 1, - anon_sym_bit_DASHxor, - STATE(5392), 1, + anon_sym_DOT2, + ACTIONS(1070), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [259754] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9737), 1, + aux_sym__immediate_decimal_token2, + STATE(5356), 1, sym_comment, - ACTIONS(9746), 2, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9748), 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [259801] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9481), 1, + aux_sym__immediate_decimal_token2, + STATE(5357), 1, + sym_comment, + ACTIONS(815), 7, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [261509] = 4, + sym_duration_unit, + [259848] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(931), 1, anon_sym_LF, - STATE(5393), 1, + STATE(5358), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(929), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -461628,19 +460190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261553] = 4, + [259893] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5394), 1, + ACTIONS(9739), 1, + anon_sym_QMARK2, + STATE(5359), 1, sym_comment, - ACTIONS(1035), 2, + ACTIONS(1072), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 31, + anon_sym_DOT2, + ACTIONS(1070), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -461668,83 +460232,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261597] = 14, - ACTIONS(105), 1, + [259940] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - ACTIONS(9760), 1, - anon_sym_bit_DASHxor, - ACTIONS(9762), 1, - anon_sym_bit_DASHor, - STATE(5395), 1, + ACTIONS(9741), 1, + anon_sym_DOT2, + STATE(5199), 1, + sym_path, + STATE(5360), 1, sym_comment, - ACTIONS(9746), 2, + STATE(5967), 1, + sym_cell_path, + ACTIONS(933), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9750), 2, + anon_sym_LT2, + ACTIONS(935), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [261661] = 4, - ACTIONS(105), 1, + [259991] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5396), 1, + ACTIONS(9508), 1, + anon_sym_DOT2, + STATE(5239), 1, + aux_sym_cell_path_repeat1, + STATE(5361), 1, sym_comment, - ACTIONS(1263), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6001), 1, + sym_path, + ACTIONS(973), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(975), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -461758,72 +460320,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261705] = 15, + [260042] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - ACTIONS(9760), 1, - anon_sym_bit_DASHxor, - ACTIONS(9762), 1, - anon_sym_bit_DASHor, - ACTIONS(9764), 1, - anon_sym_and, - STATE(5397), 1, + ACTIONS(8443), 1, + aux_sym_unquoted_token3, + STATE(5362), 1, sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(9744), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [261771] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(829), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5398), 1, - sym_comment, - ACTIONS(1263), 32, + ACTIONS(827), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -461849,70 +460362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261815] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - ACTIONS(9760), 1, - anon_sym_bit_DASHxor, - ACTIONS(9762), 1, - anon_sym_bit_DASHor, - ACTIONS(9764), 1, - anon_sym_and, - ACTIONS(9766), 1, - anon_sym_xor, - STATE(5399), 1, - sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9750), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(9744), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [261883] = 4, + [260089] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1321), 1, anon_sym_LF, - STATE(5400), 1, + STATE(5363), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1319), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -461941,74 +460403,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [261927] = 17, - ACTIONS(105), 1, + [260134] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LF, - ACTIONS(9758), 1, - anon_sym_bit_DASHand, - ACTIONS(9760), 1, - anon_sym_bit_DASHxor, - ACTIONS(9762), 1, - anon_sym_bit_DASHor, - ACTIONS(9764), 1, - anon_sym_and, - ACTIONS(9766), 1, - anon_sym_xor, - ACTIONS(9768), 1, - anon_sym_or, - STATE(5401), 1, + STATE(5364), 1, sym_comment, - ACTIONS(9746), 2, - anon_sym_DASH, + ACTIONS(815), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9750), 2, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 27, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9752), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9756), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9748), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9754), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9744), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [261997] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [260179] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, - anon_sym_LF, - STATE(5402), 1, + ACTIONS(9739), 1, + anon_sym_QMARK2, + STATE(5365), 1, sym_comment, - ACTIONS(1263), 32, + ACTIONS(1072), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1070), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -462034,261 +460486,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [262041] = 4, - ACTIONS(105), 1, + [260226] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(5403), 1, + ACTIONS(9489), 1, + aux_sym__immediate_decimal_token2, + STATE(5366), 1, sym_comment, - ACTIONS(1033), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(807), 7, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262085] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5404), 1, - sym_comment, - ACTIONS(1280), 13, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(809), 26, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1278), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [262129] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1356), 1, - anon_sym_LF, - STATE(5405), 1, - sym_comment, - ACTIONS(1354), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262173] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(5406), 1, - sym_comment, - ACTIONS(1350), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262217] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1348), 1, - anon_sym_LF, - STATE(5407), 1, - sym_comment, - ACTIONS(1346), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262261] = 4, + sym_duration_unit, + [260273] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(1335), 1, anon_sym_LF, - STATE(5408), 1, + STATE(5367), 1, sym_comment, - ACTIONS(1342), 32, + ACTIONS(1333), 33, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262305] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5409), 1, - sym_comment, - ACTIONS(1360), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1358), 31, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -462314,118 +460569,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [262349] = 7, - ACTIONS(3), 1, + [260318] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - STATE(5410), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5368), 1, sym_comment, - ACTIONS(9772), 2, + ACTIONS(1266), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9770), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1413), 10, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1411), 17, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [262399] = 6, + [260363] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9776), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9778), 1, - aux_sym__immediate_decimal_token2, - STATE(5411), 1, - sym_comment, - ACTIONS(815), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(817), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [262447] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5412), 1, + STATE(5369), 1, sym_comment, - ACTIONS(1334), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1332), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1266), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1268), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -462439,25 +460650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [262491] = 4, + [260407] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5413), 1, + ACTIONS(1321), 1, + anon_sym_LF, + STATE(5370), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(1319), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -462468,68 +460681,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [262535] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9780), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9782), 1, - aux_sym__immediate_decimal_token2, - STATE(5414), 1, - sym_comment, - ACTIONS(807), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [262583] = 4, + [260451] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - STATE(5415), 1, + ACTIONS(1363), 1, + anon_sym_LF, + STATE(5371), 1, sym_comment, - ACTIONS(861), 32, - anon_sym_RBRACK, + ACTIONS(1361), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -462559,88 +460730,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [262627] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9108), 1, - anon_sym_LF, - ACTIONS(9124), 1, - anon_sym_bit_DASHand, - ACTIONS(9126), 1, - anon_sym_bit_DASHxor, - ACTIONS(9128), 1, - anon_sym_bit_DASHor, - ACTIONS(9130), 1, - anon_sym_and, - ACTIONS(9132), 1, - anon_sym_xor, - ACTIONS(9134), 1, - anon_sym_or, - STATE(5416), 1, - sym_comment, - ACTIONS(9112), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9118), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9120), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9122), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9106), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9114), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9116), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9110), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [262697] = 6, + [260495] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5417), 1, + STATE(5372), 1, sym_comment, - STATE(5640), 1, - aux_sym_cell_path_repeat1, - STATE(6227), 1, - sym_path, - ACTIONS(975), 11, - sym_identifier, + ACTIONS(1387), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(977), 20, + ACTIONS(1389), 28, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -462656,165 +460767,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [262745] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8954), 1, - anon_sym_LF, - ACTIONS(8970), 1, - anon_sym_bit_DASHand, - ACTIONS(8972), 1, - anon_sym_bit_DASHxor, - ACTIONS(8974), 1, - anon_sym_bit_DASHor, - ACTIONS(8976), 1, anon_sym_and, - ACTIONS(8978), 1, anon_sym_xor, - ACTIONS(8980), 1, anon_sym_or, - STATE(5418), 1, + [260539] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9744), 1, + aux_sym__immediate_decimal_token2, + STATE(5373), 1, sym_comment, - ACTIONS(8958), 2, + ACTIONS(855), 9, anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(857), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(8964), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(8966), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(8968), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8952), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(8960), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(8962), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(8956), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [262815] = 17, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [260585] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9786), 1, + ACTIONS(9748), 1, anon_sym_LF, - ACTIONS(9802), 1, + ACTIONS(9764), 1, anon_sym_bit_DASHand, - ACTIONS(9804), 1, + ACTIONS(9766), 1, anon_sym_bit_DASHxor, - ACTIONS(9806), 1, + ACTIONS(9768), 1, anon_sym_bit_DASHor, - ACTIONS(9808), 1, + ACTIONS(9770), 1, anon_sym_and, - ACTIONS(9810), 1, + ACTIONS(9772), 1, anon_sym_xor, - ACTIONS(9812), 1, + ACTIONS(9774), 1, anon_sym_or, - STATE(5419), 1, + STATE(5374), 1, sym_comment, - ACTIONS(9790), 2, + ACTIONS(9752), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9796), 2, + ACTIONS(9758), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9798), 2, + ACTIONS(9760), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9800), 2, + ACTIONS(9762), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9784), 4, + ACTIONS(9746), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(9792), 4, + ACTIONS(9754), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9794), 4, + ACTIONS(9756), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9788), 6, + ACTIONS(9750), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [262885] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5420), 1, - sym_comment, - STATE(5708), 1, - sym_path, - STATE(6062), 1, - sym_cell_path, - ACTIONS(979), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [262935] = 5, + [260655] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9816), 1, - anon_sym_DOT2, - STATE(5421), 1, + ACTIONS(1370), 1, + anon_sym_LF, + STATE(5375), 1, sym_comment, - ACTIONS(861), 31, + ACTIONS(1368), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -462844,58 +460904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [262981] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5422), 1, - sym_comment, - ACTIONS(861), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [263027] = 4, + [260699] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5423), 1, + STATE(5376), 1, sym_comment, - ACTIONS(1327), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1325), 31, + ACTIONS(909), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -462927,18 +460944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [263071] = 7, + [260743] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9818), 1, + ACTIONS(9776), 1, anon_sym_DOT2, - STATE(5424), 1, + STATE(5377), 1, sym_comment, - STATE(5590), 1, + STATE(5422), 1, sym_path, - STATE(6150), 1, + STATE(6388), 1, sym_cell_path, - ACTIONS(997), 11, + ACTIONS(925), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -462950,7 +460967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(999), 19, + ACTIONS(927), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -462970,24 +460987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [263121] = 4, + [260793] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_LF, - STATE(5425), 1, + ACTIONS(9778), 1, + aux_sym__immediate_decimal_token2, + STATE(5378), 1, sym_comment, - ACTIONS(4390), 32, + ACTIONS(3806), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463010,120 +461028,86 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263165] = 4, + [260839] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(8942), 1, anon_sym_LF, - STATE(5426), 1, + ACTIONS(8958), 1, + anon_sym_bit_DASHand, + ACTIONS(8960), 1, + anon_sym_bit_DASHxor, + ACTIONS(8962), 1, + anon_sym_bit_DASHor, + ACTIONS(8964), 1, + anon_sym_and, + ACTIONS(8966), 1, + anon_sym_xor, + ACTIONS(8968), 1, + anon_sym_or, + STATE(5379), 1, sym_comment, - ACTIONS(4386), 32, + ACTIONS(8946), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8952), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(8954), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8956), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8940), 4, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [263209] = 5, + ACTIONS(8948), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8950), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(8944), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [260909] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9821), 1, - anon_sym_DOT2, - STATE(5427), 1, - sym_comment, - ACTIONS(3911), 2, - ts_builtin_sym_end, + ACTIONS(1423), 1, anon_sym_LF, - ACTIONS(3909), 30, + STATE(5380), 1, + sym_comment, + ACTIONS(1421), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [263255] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5428), 1, - sym_comment, - STATE(5708), 1, - sym_path, - STATE(6150), 1, - sym_cell_path, - ACTIONS(997), 11, - sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(999), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -463134,25 +461118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [263305] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [260953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5429), 1, + STATE(5381), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(1054), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, + ACTIONS(1056), 28, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -463174,200 +461161,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [263351] = 5, + [260997] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9823), 1, - anon_sym_DOT2, - STATE(5430), 1, + ACTIONS(1257), 1, + anon_sym_DASH, + STATE(5382), 1, sym_comment, - ACTIONS(3917), 2, + ACTIONS(1253), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3915), 30, + ACTIONS(1251), 3, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [263397] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5431), 1, - sym_comment, - ACTIONS(1284), 13, anon_sym_DASH_DASH, + ACTIONS(1255), 27, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1282), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [261045] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5383), 1, + sym_comment, + ACTIONS(1376), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1374), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [263441] = 4, + [261089] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5432), 1, + STATE(5384), 1, sym_comment, - ACTIONS(1191), 3, + ACTIONS(1427), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 30, + ACTIONS(1425), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [263485] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9827), 1, - anon_sym_LF, - ACTIONS(9843), 1, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(9845), 1, anon_sym_bit_DASHxor, - ACTIONS(9847), 1, anon_sym_bit_DASHor, - ACTIONS(9849), 1, anon_sym_and, - ACTIONS(9851), 1, anon_sym_xor, - ACTIONS(9853), 1, anon_sym_or, - STATE(5433), 1, + [261133] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9780), 1, + anon_sym_DOT2, + STATE(6219), 1, + sym_path, + STATE(5385), 2, sym_comment, - ACTIONS(9831), 2, - anon_sym_DASH, + aux_sym_cell_path_repeat1, + ACTIONS(942), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(9837), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(944), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9839), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9841), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9825), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [261181] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5386), 1, + sym_comment, + ACTIONS(1359), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1357), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(9833), 4, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9835), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9829), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [263555] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [261225] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9855), 1, - anon_sym_DOT2, - STATE(5434), 1, - sym_comment, - ACTIONS(3923), 2, - ts_builtin_sym_end, + ACTIONS(1272), 1, anon_sym_LF, - ACTIONS(3921), 30, + STATE(5387), 1, + sym_comment, + ACTIONS(1270), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463390,25 +461405,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263601] = 5, - ACTIONS(105), 1, + [261269] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7614), 1, - aux_sym_unquoted_token3, - STATE(5435), 1, + STATE(5388), 1, sym_comment, - ACTIONS(825), 2, - ts_builtin_sym_end, + ACTIONS(1387), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [261313] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1439), 1, anon_sym_LF, - ACTIONS(823), 30, + STATE(5389), 1, + sym_comment, + ACTIONS(1437), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463431,17 +461485,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263647] = 5, + [261357] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9857), 1, + ACTIONS(9783), 1, anon_sym_DOT2, - STATE(5436), 1, + STATE(5390), 1, sym_comment, - ACTIONS(3929), 2, + ACTIONS(4038), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3927), 30, + ACTIONS(4036), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -463472,23 +461526,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263693] = 6, + [261403] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, - STATE(5437), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5391), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(1266), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1245), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -463514,104 +461566,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [263741] = 4, - ACTIONS(3), 1, + [261447] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5438), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5392), 1, sym_comment, - ACTIONS(1340), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1338), 20, - sym_cmd_identifier, + ACTIONS(1266), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [263785] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5439), 1, - sym_comment, - ACTIONS(1340), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1338), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [263829] = 4, + [261491] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, - anon_sym_LF, - STATE(5440), 1, + ACTIONS(9785), 1, + anon_sym_DOT2, + STATE(5393), 1, sym_comment, - ACTIONS(1338), 32, + ACTIONS(3842), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3840), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463634,24 +461647,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263873] = 4, + [261537] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, - anon_sym_LF, - STATE(5441), 1, + STATE(5394), 1, sym_comment, - ACTIONS(1338), 32, + ACTIONS(1215), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1213), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463674,73 +461687,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [263917] = 4, - ACTIONS(105), 1, + [261581] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5442), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5395), 1, sym_comment, - ACTIONS(1323), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1321), 31, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(5422), 1, + sym_path, + STATE(6156), 1, + sym_cell_path, + ACTIONS(966), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [263961] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5443), 1, - sym_comment, - ACTIONS(1315), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1313), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(968), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -463751,120 +461730,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264005] = 5, - ACTIONS(105), 1, + [261631] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5636), 1, + ACTIONS(9787), 1, anon_sym_DOT2, - STATE(5444), 1, + ACTIONS(9790), 1, + aux_sym__immediate_decimal_token2, + STATE(5396), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 30, - anon_sym_SEMI, + ACTIONS(846), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(848), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [264051] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(9859), 1, - sym_filesize_unit, - ACTIONS(9861), 1, - sym_duration_unit, - STATE(5445), 1, - sym_comment, - ACTIONS(1102), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264099] = 7, + [261679] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9863), 1, - anon_sym_DOT2, - ACTIONS(9865), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9867), 1, - aux_sym_unquoted_token2, - STATE(5446), 1, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5397), 1, sym_comment, - ACTIONS(1005), 11, - sym_identifier, + ACTIONS(877), 6, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1007), 19, + sym_filesize_unit, + ACTIONS(879), 26, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -463880,24 +461809,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [264149] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [261725] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LF, - STATE(5447), 1, + ACTIONS(9792), 1, + anon_sym_DOT2, + STATE(5398), 1, sym_comment, - ACTIONS(1005), 32, + ACTIONS(3905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3903), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -463920,25 +461854,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [264193] = 4, + [261771] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5448), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(9794), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, + STATE(5399), 1, + sym_comment, + ACTIONS(3911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3909), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -463949,8 +461886,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -463958,59 +461893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [264237] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9869), 1, - anon_sym_DOT2, - STATE(5449), 1, - sym_comment, - STATE(5649), 1, - sym_path, - STATE(6152), 1, - sym_cell_path, - ACTIONS(979), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [264287] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [261817] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(4354), 1, anon_sym_LF, - STATE(5450), 1, + STATE(5400), 1, sym_comment, - ACTIONS(1193), 32, + ACTIONS(4352), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -464043,148 +461935,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [264331] = 7, - ACTIONS(3), 1, + [261861] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5451), 1, + ACTIONS(4366), 1, + anon_sym_LF, + STATE(5401), 1, sym_comment, - STATE(5640), 1, - aux_sym_cell_path_repeat1, - STATE(6227), 1, - sym_path, - ACTIONS(975), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(977), 19, + ACTIONS(4364), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [264381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5452), 1, - sym_comment, - ACTIONS(1323), 13, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1321), 20, - sym_cmd_identifier, - anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264425] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5453), 1, - sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264469] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [261905] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5454), 1, + ACTIONS(6524), 1, + anon_sym_LF, + STATE(5402), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 31, + ACTIONS(6527), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -464195,8 +462006,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -464204,21 +462013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [264513] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [261949] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5455), 1, + STATE(5403), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(1363), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1361), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -464244,69 +462055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [264557] = 4, + [261993] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5456), 1, - sym_comment, - ACTIONS(1098), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1100), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(9796), 1, anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264601] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5457), 1, + STATE(4708), 1, + sym_cell_path, + STATE(5404), 1, sym_comment, - ACTIONS(1344), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1342), 20, - sym_cmd_identifier, + STATE(5425), 1, + sym_path, + ACTIONS(959), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -464314,79 +462075,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [264645] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5458), 1, - sym_comment, - ACTIONS(1348), 13, + ACTIONS(961), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1346), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [264689] = 4, + [262043] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5459), 1, + STATE(5405), 1, sym_comment, - ACTIONS(1224), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(817), 2, anon_sym_DOT2, - ACTIONS(1222), 30, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(815), 31, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -464397,6 +462127,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -464404,256 +462136,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [264733] = 19, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + [262087] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1411), 1, - sym_cmd_identifier, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - ACTIONS(9886), 1, - anon_sym_bit_DASHxor, - ACTIONS(9888), 1, - anon_sym_bit_DASHor, - ACTIONS(9890), 1, - anon_sym_and, - ACTIONS(9892), 1, - anon_sym_xor, - ACTIONS(9894), 1, - anon_sym_or, - STATE(5460), 1, - sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [264807] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - anon_sym_LF, - STATE(5461), 1, + ACTIONS(9656), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9798), 1, + anon_sym_DOT2, + STATE(5406), 1, sym_comment, - ACTIONS(2996), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(815), 9, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [264851] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 31, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(817), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [264895] = 4, + [262135] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5463), 1, + STATE(5407), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, + ACTIONS(1387), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [264939] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - ACTIONS(9886), 1, - anon_sym_bit_DASHxor, - ACTIONS(9888), 1, - anon_sym_bit_DASHor, - ACTIONS(9890), 1, - anon_sym_and, - ACTIONS(9892), 1, - anon_sym_xor, - STATE(5464), 1, - sym_comment, - ACTIONS(1411), 2, - sym_cmd_identifier, - anon_sym_or, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [265011] = 5, + [262179] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9896), 1, - aux_sym__immediate_decimal_token2, - STATE(5465), 1, - sym_comment, - ACTIONS(3836), 2, - ts_builtin_sym_end, + ACTIONS(1343), 1, anon_sym_LF, - ACTIONS(3834), 30, + STATE(5408), 1, + sym_comment, + ACTIONS(1341), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -464676,24 +462260,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [265057] = 4, + [262223] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1284), 1, - anon_sym_LF, - STATE(5466), 1, + STATE(5409), 1, sym_comment, - ACTIONS(1282), 32, + ACTIONS(1223), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -464716,15 +462300,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [265101] = 4, + [262267] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(5467), 1, + ACTIONS(9803), 1, + anon_sym_LF, + ACTIONS(9819), 1, + anon_sym_bit_DASHand, + ACTIONS(9821), 1, + anon_sym_bit_DASHxor, + ACTIONS(9823), 1, + anon_sym_bit_DASHor, + ACTIONS(9825), 1, + anon_sym_and, + ACTIONS(9827), 1, + anon_sym_xor, + ACTIONS(9829), 1, + anon_sym_or, + STATE(5410), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(9807), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9813), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9815), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9817), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9801), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9809), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9811), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9805), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [262337] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5411), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(815), 31, + ACTIONS(807), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -464756,73 +462393,82 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token7, - [265145] = 4, + [262381] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5468), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5412), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, + STATE(5422), 1, + sym_path, + STATE(6411), 1, + sym_cell_path, + ACTIONS(929), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(931), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [262431] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5413), 1, + sym_comment, + STATE(5422), 1, + sym_path, + STATE(6371), 1, + sym_cell_path, + ACTIONS(913), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265189] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5469), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(915), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -464833,28 +462479,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [265233] = 4, + [262481] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5470), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5414), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 31, + ACTIONS(1266), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -464865,8 +462510,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -464874,69 +462517,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [265277] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [262525] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5471), 1, + ACTIONS(1268), 1, + anon_sym_LF, + STATE(5415), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 31, - anon_sym_GT, + ACTIONS(1266), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [265321] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5472), 1, - sym_comment, - ACTIONS(1035), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1033), 20, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [262569] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(4710), 1, + sym_cell_path, + STATE(5416), 1, + sym_comment, + STATE(5425), 1, + sym_path, + ACTIONS(909), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -464944,45 +462579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265365] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5473), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(911), 18, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -464993,203 +462602,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [265409] = 17, + [262619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - ACTIONS(9886), 1, - anon_sym_bit_DASHxor, - ACTIONS(9888), 1, - anon_sym_bit_DASHor, - ACTIONS(9890), 1, - anon_sym_and, - STATE(5474), 1, + STATE(5417), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, + ACTIONS(1387), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_cmd_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(9770), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [265479] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5475), 1, - sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265523] = 16, - ACTIONS(3), 1, + [262663] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - ACTIONS(9886), 1, - anon_sym_bit_DASHxor, - ACTIONS(9888), 1, - anon_sym_bit_DASHor, - STATE(5476), 1, + STATE(5418), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, + ACTIONS(1383), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1381), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 4, - sym_cmd_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [265591] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5477), 1, - sym_comment, - ACTIONS(1265), 13, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, - anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265635] = 4, + [262707] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5478), 1, + STATE(5419), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(857), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(844), 31, + ACTIONS(855), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -465219,54 +462720,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - [265679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5479), 1, - sym_comment, - ACTIONS(1113), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1115), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [265723] = 4, + aux_sym__unquoted_in_list_token7, + [262751] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5480), 1, + STATE(5420), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1359), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -465280,7 +462741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1350), 20, + ACTIONS(1357), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -465301,27 +462762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [265767] = 4, + [262795] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5481), 1, + ACTIONS(9831), 1, + anon_sym_DOT2, + STATE(5421), 1, sym_comment, - ACTIONS(1356), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1354), 20, - sym_cmd_identifier, + STATE(5684), 1, + sym_path, + STATE(6130), 1, + sym_cell_path, + ACTIONS(933), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -465329,269 +462782,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265811] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - ACTIONS(9886), 1, - anon_sym_bit_DASHxor, - STATE(5482), 1, - sym_comment, - ACTIONS(9772), 2, + ACTIONS(935), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, - sym_cmd_identifier, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [265877] = 4, + [262845] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5483), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5422), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + STATE(5430), 1, + aux_sym_cell_path_repeat1, + STATE(6219), 1, + sym_path, + ACTIONS(903), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [265921] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9884), 1, - anon_sym_bit_DASHand, - STATE(5484), 1, - sym_comment, - ACTIONS(9772), 2, + ACTIONS(905), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 6, - sym_cmd_identifier, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [265985] = 4, - ACTIONS(3), 1, + [262895] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5485), 1, + ACTIONS(1272), 1, + anon_sym_LF, + STATE(5423), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + ACTIONS(1270), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266029] = 13, + [262939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - STATE(5486), 1, + STATE(5424), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, + ACTIONS(1387), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(9874), 2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(9876), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9880), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - sym_cmd_identifier, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266091] = 4, + [262983] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5487), 1, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(5425), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + STATE(5748), 1, + aux_sym_cell_path_repeat1, + STATE(6173), 1, + sym_path, + ACTIONS(903), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -465599,204 +462948,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266135] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - STATE(5488), 1, - sym_comment, - ACTIONS(9772), 2, + ACTIONS(905), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9878), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1413), 10, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1411), 13, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [266189] = 4, - ACTIONS(3), 1, + [263033] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5489), 1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(9834), 1, + sym_filesize_unit, + ACTIONS(9836), 1, + sym_duration_unit, + STATE(5426), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + ACTIONS(1054), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266233] = 5, - ACTIONS(3), 1, + [263081] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5490), 1, + ACTIONS(1439), 1, + anon_sym_LF, + STATE(5427), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1413), 11, - anon_sym_DASH_DASH, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1411), 20, - sym_cmd_identifier, + ACTIONS(1437), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266279] = 4, - ACTIONS(3), 1, + [263125] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5491), 1, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(8068), 1, + anon_sym_COLON, + STATE(5428), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266323] = 9, + [263171] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1001), 1, - anon_sym_SEMI, - ACTIONS(1003), 1, - sym__entry_separator, - ACTIONS(9212), 1, - anon_sym_DOT2, - ACTIONS(9900), 1, - anon_sym_RBRACK, - STATE(4930), 1, - sym_path, - STATE(5492), 1, + STATE(5429), 1, sym_comment, - STATE(5974), 1, - sym_cell_path, - ACTIONS(9898), 27, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 31, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -465814,6 +463123,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -465822,100 +463133,260 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [266377] = 4, + aux_sym__unquoted_in_list_token7, + [263215] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5493), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5385), 1, + aux_sym_cell_path_repeat1, + STATE(5430), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, + STATE(6219), 1, + sym_path, + ACTIONS(973), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(975), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [263265] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5431), 1, + sym_comment, + ACTIONS(1370), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1368), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266421] = 12, + [263309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - STATE(5494), 1, + ACTIONS(9838), 1, + anon_sym_DOT2, + ACTIONS(9840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9842), 1, + aux_sym_unquoted_token2, + STATE(5432), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, + ACTIONS(949), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9878), 2, + anon_sym_LT2, + ACTIONS(951), 24, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9770), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [263359] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5433), 1, + sym_comment, + ACTIONS(1431), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1429), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - ACTIONS(9876), 4, - anon_sym_in, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9880), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [263403] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9844), 1, + anon_sym_DOT2, + STATE(5434), 1, + sym_comment, + ACTIONS(877), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [263449] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1284), 1, + anon_sym_LF, + STATE(5435), 1, + sym_comment, + ACTIONS(1282), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1411), 7, - sym_cmd_identifier, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [266481] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [263493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5495), 1, + STATE(5436), 1, sym_comment, - ACTIONS(1265), 13, + ACTIONS(1305), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -465929,7 +463400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1263), 20, + ACTIONS(1303), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -465950,143 +463421,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [266525] = 8, + [263537] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9774), 1, - anon_sym_SLASH_SLASH, - STATE(5496), 1, + ACTIONS(9512), 1, + anon_sym_DOT2, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5437), 1, sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9874), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9770), 3, + ACTIONS(877), 6, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, - ACTIONS(1413), 10, - anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1411), 15, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266577] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [263585] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5497), 1, + STATE(5438), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1263), 20, - sym_cmd_identifier, + ACTIONS(1343), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1341), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [266621] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, anon_sym_SLASH_SLASH, - STATE(5498), 1, - sym_comment, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9874), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9878), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9770), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(9880), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_DASH_DASH, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1411), 11, - sym_cmd_identifier, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266679] = 4, + [263629] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5499), 1, + STATE(5439), 1, sym_comment, - ACTIONS(1409), 13, + ACTIONS(1309), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -466100,7 +463522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1247), 20, + ACTIONS(1307), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -466121,65 +463543,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [266723] = 4, + [263673] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, - sym__entry_separator, - STATE(5500), 1, + ACTIONS(9846), 1, + anon_sym_DOT2, + STATE(5440), 1, sym_comment, - ACTIONS(1065), 32, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(3979), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3977), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [266767] = 5, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [263719] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9530), 1, - aux_sym__immediate_decimal_token2, - STATE(5501), 1, - sym_comment, - ACTIONS(2988), 2, - ts_builtin_sym_end, + ACTIONS(9850), 1, anon_sym_LF, - ACTIONS(2986), 30, + STATE(5441), 1, + sym_comment, + ACTIONS(9848), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -466202,32 +463624,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [266813] = 4, - ACTIONS(3), 1, + [263763] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5502), 1, + STATE(5442), 1, sym_comment, - ACTIONS(889), 7, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 31, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(891), 26, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466241,58 +463662,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + sym_filesize_unit, sym_duration_unit, - [266857] = 4, - ACTIONS(105), 1, + [263807] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5503), 1, + STATE(5443), 1, sym_comment, - ACTIONS(1311), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1309), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1363), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1361), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [266901] = 5, + [263851] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9903), 1, - anon_sym_DOT2, - STATE(5504), 1, + STATE(5444), 1, sym_comment, - ACTIONS(3937), 2, + ACTIONS(3000), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3935), 30, + anon_sym_DOT2, + ACTIONS(2998), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -466323,24 +463744,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [266947] = 4, + [263895] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, - anon_sym_LF, - STATE(5505), 1, + ACTIONS(9852), 1, + anon_sym_DOT2, + STATE(5445), 1, sym_comment, - ACTIONS(1397), 32, + ACTIONS(4028), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4026), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -466363,31 +463785,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [266991] = 7, + [263941] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9905), 1, + ACTIONS(9854), 1, anon_sym_DOT2, - ACTIONS(9907), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9909), 1, - aux_sym_unquoted_token2, - STATE(5506), 1, + STATE(5446), 1, sym_comment, - ACTIONS(1005), 6, + STATE(5678), 1, + sym_path, + STATE(6166), 1, + sym_cell_path, + ACTIONS(933), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1007), 24, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(935), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -466403,28 +463828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [267041] = 5, + [263991] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9911), 1, - anon_sym_DOT2, - STATE(5507), 1, - sym_comment, - ACTIONS(3943), 2, - ts_builtin_sym_end, + ACTIONS(1084), 1, anon_sym_LF, - ACTIONS(3941), 30, + STATE(5447), 1, + sym_comment, + ACTIONS(1082), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -466447,15 +463868,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [267087] = 4, + [264035] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5508), 1, + STATE(5448), 1, sym_comment, - ACTIONS(1007), 2, + ACTIONS(1347), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 31, + ACTIONS(1345), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -466487,33 +463908,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [267131] = 4, - ACTIONS(105), 1, + [264079] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5509), 1, + STATE(5449), 1, sym_comment, - ACTIONS(1307), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1305), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1437), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1439), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466527,63 +463948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [267175] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(5690), 1, - anon_sym_DOT2, - ACTIONS(5692), 1, - aux_sym_unquoted_token6, - STATE(5510), 1, - sym_comment, - ACTIONS(861), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [267223] = 4, + [264123] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5511), 1, - sym_comment, - ACTIONS(992), 2, - ts_builtin_sym_end, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(990), 31, + STATE(5450), 1, + sym_comment, + ACTIONS(909), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -466609,78 +463988,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [267267] = 18, + [264167] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, - ACTIONS(8449), 1, - anon_sym_bit_DASHand, - ACTIONS(8451), 1, - anon_sym_bit_DASHxor, - ACTIONS(8453), 1, - anon_sym_bit_DASHor, - ACTIONS(8455), 1, - anon_sym_and, - ACTIONS(8457), 1, - anon_sym_xor, - ACTIONS(8459), 1, - anon_sym_or, - STATE(5512), 1, + ACTIONS(951), 1, + anon_sym_LF, + STATE(5451), 1, sym_comment, - ACTIONS(8268), 2, + ACTIONS(949), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(8270), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8433), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8443), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(8445), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(8447), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(8435), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(8439), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264211] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5452), 1, + sym_comment, + ACTIONS(1370), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(8431), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [267339] = 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1368), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264255] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, - anon_sym_LF, - STATE(5513), 1, + ACTIONS(5564), 1, + anon_sym_DOT2, + STATE(5453), 1, sym_comment, - ACTIONS(2986), 32, + ACTIONS(3931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3929), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -466703,132 +464109,177 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [267383] = 4, - ACTIONS(105), 1, + [264301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5514), 1, + STATE(5454), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 31, - anon_sym_LBRACK, + ACTIONS(1387), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264345] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(4704), 1, + sym_cell_path, + STATE(5425), 1, + sym_path, + STATE(5455), 1, + sym_comment, + ACTIONS(925), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - [267427] = 4, - ACTIONS(105), 1, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(927), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [264395] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(5515), 1, + ACTIONS(9857), 1, + anon_sym_QMARK2, + STATE(5456), 1, sym_comment, - ACTIONS(1332), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1070), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1072), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [267471] = 4, - ACTIONS(105), 1, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264441] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5516), 1, + ACTIONS(9857), 1, + anon_sym_QMARK2, + STATE(5457), 1, sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(1070), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1072), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [267515] = 4, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264487] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5517), 1, + STATE(5458), 1, sym_comment, - ACTIONS(1403), 13, + ACTIONS(1351), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -466842,7 +464293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1401), 20, + ACTIONS(1349), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -466863,24 +464314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [267559] = 4, + [264531] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4360), 1, - anon_sym_LF, - STATE(5518), 1, + ACTIONS(9859), 1, + sym_long_flag_identifier, + STATE(5459), 1, sym_comment, - ACTIONS(4358), 32, + ACTIONS(3891), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3887), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -466903,34 +464355,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [267603] = 5, - ACTIONS(105), 1, + [264577] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - aux_sym_unquoted_token3, - STATE(5519), 1, + STATE(5460), 1, sym_comment, - ACTIONS(825), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(823), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(929), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(931), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -466944,34 +464395,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [267649] = 7, + [264621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5520), 1, + STATE(5461), 1, sym_comment, - STATE(5708), 1, - sym_path, - STATE(6278), 1, - sym_cell_path, - ACTIONS(967), 11, - sym_identifier, + ACTIONS(1341), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(969), 19, + ACTIONS(1343), 28, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -466987,39 +464432,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [267699] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264665] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4520), 1, - sym_cell_path, - STATE(5521), 1, + ACTIONS(931), 1, + anon_sym_LF, + STATE(5462), 1, sym_comment, - STATE(5783), 1, - sym_path, - ACTIONS(997), 12, - sym_identifier, + ACTIONS(929), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(999), 18, - anon_sym_DASH_DASH, + [264709] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LF, + STATE(5463), 1, + sym_comment, + ACTIONS(1341), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -467030,16 +464512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [267749] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [264753] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5522), 1, + STATE(5464), 1, sym_comment, - ACTIONS(2988), 3, + ACTIONS(2959), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(2986), 30, + ACTIONS(2957), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467070,54 +464555,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [267793] = 4, + [264797] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5523), 1, + ACTIONS(4332), 1, + anon_sym_LF, + STATE(5465), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 31, - anon_sym_GT, + ACTIONS(4330), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - [267837] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [264841] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(4336), 1, anon_sym_LF, - STATE(5524), 1, + STATE(5466), 1, sym_comment, - ACTIONS(1325), 32, + ACTIONS(4334), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467150,153 +464635,159 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [267881] = 4, + [264885] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5525), 1, - sym_comment, - ACTIONS(1300), 2, - ts_builtin_sym_end, + ACTIONS(4340), 1, anon_sym_LF, - ACTIONS(1298), 31, + STATE(5467), 1, + sym_comment, + ACTIONS(4338), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [267925] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5526), 1, - sym_comment, - ACTIONS(1319), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1317), 20, - sym_cmd_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [267969] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [264929] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5527), 1, + ACTIONS(4344), 1, + anon_sym_LF, + STATE(5468), 1, sym_comment, - ACTIONS(1360), 13, + ACTIONS(4342), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1358), 20, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [264973] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1347), 1, + anon_sym_LF, + STATE(5469), 1, + sym_comment, + ACTIONS(1345), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [268013] = 4, - ACTIONS(105), 1, + [265017] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5528), 1, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(4577), 1, + sym_cell_path, + STATE(5425), 1, + sym_path, + STATE(5470), 1, sym_comment, - ACTIONS(1344), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(913), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(915), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -467307,24 +464798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [268057] = 4, + [265067] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5529), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9861), 1, + anon_sym_DOT2, + STATE(5471), 1, sym_comment, - ACTIONS(1348), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1346), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(877), 31, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -467350,61 +464837,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268101] = 4, + sym_filesize_unit, + sym_duration_unit, + [265113] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, + ACTIONS(1276), 1, anon_sym_LF, - STATE(5530), 1, + STATE(5472), 1, sym_comment, - ACTIONS(1321), 32, + ACTIONS(1274), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [268145] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5531), 1, - sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 31, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -467430,27 +464879,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268189] = 4, + [265157] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5532), 1, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(4624), 1, + sym_cell_path, + STATE(5425), 1, + sym_path, + STATE(5473), 1, sym_comment, - ACTIONS(1065), 7, + ACTIONS(917), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(1067), 26, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(919), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -467466,20 +464922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [268233] = 4, + [265207] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5533), 1, + STATE(5474), 1, sym_comment, - ACTIONS(3836), 3, + ACTIONS(3806), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3834), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467510,16 +464962,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268277] = 4, + [265251] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5534), 1, + STATE(5475), 1, sym_comment, - ACTIONS(1261), 3, + ACTIONS(1219), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(1259), 30, + ACTIONS(1217), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -467550,58 +465002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268321] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9915), 1, - sym_filesize_unit, - ACTIONS(9917), 1, - sym_duration_unit, - STATE(5535), 1, - sym_comment, - ACTIONS(1102), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [268369] = 4, + [265295] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5536), 1, + STATE(5476), 1, sym_comment, - ACTIONS(3890), 3, + ACTIONS(4034), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3888), 30, + ACTIONS(4032), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467632,21 +465042,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268413] = 4, + [265339] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5537), 1, - sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, + ACTIONS(1280), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 30, + STATE(5477), 1, + sym_comment, + ACTIONS(1278), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -467672,15 +465082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268457] = 4, + [265383] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5538), 1, + STATE(5478), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1385), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 31, + ACTIONS(1255), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -467712,59 +465122,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268501] = 4, - ACTIONS(3), 1, + [265427] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5539), 1, + ACTIONS(1383), 1, + anon_sym_LF, + STATE(5479), 1, sym_comment, - ACTIONS(1395), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1393), 20, - sym_cmd_identifier, + ACTIONS(1381), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [268545] = 6, - ACTIONS(3), 1, + [265471] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_cmd_identifier, - STATE(5540), 1, + ACTIONS(4392), 1, + anon_sym_LF, + STATE(5480), 1, + sym_comment, + ACTIONS(4390), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [265515] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4396), 1, + anon_sym_LF, + STATE(5481), 1, + sym_comment, + ACTIONS(4394), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [265559] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5482), 1, + sym_comment, + ACTIONS(1187), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1185), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [265603] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(959), 1, + anon_sym_SEMI, + ACTIONS(961), 1, + sym__entry_separator, + ACTIONS(9169), 1, + anon_sym_DOT2, + ACTIONS(9865), 1, + anon_sym_RBRACK, + STATE(4955), 1, + sym_path, + STATE(5483), 1, sym_comment, - ACTIONS(1245), 4, + STATE(6007), 1, + sym_cell_path, + ACTIONS(9863), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1409), 9, + aux_sym__unquoted_in_list_token1, + [265657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5484), 1, + sym_comment, + ACTIONS(951), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -467774,7 +465343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1247), 19, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(949), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -467794,14 +465367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [268593] = 4, + [265701] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4342), 1, + ACTIONS(4400), 1, anon_sym_LF, - STATE(5541), 1, + STATE(5485), 1, sym_comment, - ACTIONS(4340), 32, + ACTIONS(4398), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467834,27 +465407,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268637] = 4, + [265745] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5542), 1, + ACTIONS(9868), 1, + anon_sym_DOT2, + ACTIONS(9870), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9872), 1, + aux_sym_unquoted_token2, + STATE(5486), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(949), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 26, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(951), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -467870,43 +465450,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [268681] = 5, + [265795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8050), 1, - aux_sym_unquoted_token6, - STATE(5543), 1, + STATE(5487), 1, sym_comment, - ACTIONS(861), 14, - sym_identifier, + ACTIONS(1274), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1276), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 18, - anon_sym_DASH_DASH, + [265839] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5488), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9882), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9874), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1391), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -467915,14 +465532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [268727] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [265893] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(4408), 1, anon_sym_LF, - STATE(5544), 1, + STATE(5489), 1, sym_comment, - ACTIONS(3947), 32, + ACTIONS(4406), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -467955,25 +465575,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268771] = 5, + [265937] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9919), 1, - sym_long_flag_identifier, - STATE(5545), 1, - sym_comment, - ACTIONS(3951), 2, - ts_builtin_sym_end, + ACTIONS(4414), 1, anon_sym_LF, - ACTIONS(3947), 30, + STATE(5490), 1, + sym_comment, + ACTIONS(4412), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -467996,14 +465615,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268817] = 4, + [265981] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4334), 1, + ACTIONS(4457), 1, anon_sym_LF, - STATE(5546), 1, + STATE(5491), 1, sym_comment, - ACTIONS(4332), 32, + ACTIONS(4455), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468036,14 +465655,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268861] = 4, + [266025] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4301), 1, + ACTIONS(4464), 1, anon_sym_LF, - STATE(5547), 1, + STATE(5492), 1, sym_comment, - ACTIONS(4299), 32, + ACTIONS(4462), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468076,14 +465695,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268905] = 4, + [266069] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + ACTIONS(8880), 1, anon_sym_LF, - STATE(5548), 1, + ACTIONS(8896), 1, + anon_sym_bit_DASHand, + ACTIONS(8898), 1, + anon_sym_bit_DASHxor, + ACTIONS(8900), 1, + anon_sym_bit_DASHor, + ACTIONS(8902), 1, + anon_sym_and, + ACTIONS(8904), 1, + anon_sym_xor, + ACTIONS(8906), 1, + anon_sym_or, + STATE(5493), 1, + sym_comment, + ACTIONS(8884), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8890), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(8892), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8894), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8878), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(8886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8888), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(8882), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [266139] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4476), 1, + anon_sym_LF, + STATE(5494), 1, sym_comment, - ACTIONS(1389), 32, + ACTIONS(4474), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468116,34 +465788,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [268949] = 7, + [266183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5549), 1, + STATE(5495), 1, sym_comment, - STATE(5708), 1, - sym_path, - STATE(6360), 1, - sym_cell_path, - ACTIONS(971), 11, - sym_identifier, + ACTIONS(815), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(973), 19, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468159,31 +465824,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [268999] = 4, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [266227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5550), 1, + STATE(5496), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 31, + ACTIONS(1355), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1353), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [266271] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5497), 1, + sym_comment, + ACTIONS(855), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(857), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468197,34 +465907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_filesize_unit, sym_duration_unit, - [269043] = 5, + [266315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9499), 1, - aux_sym_unquoted_token6, - STATE(5551), 1, + STATE(5498), 1, sym_comment, - ACTIONS(861), 13, - sym_identifier, + ACTIONS(1278), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 19, + ACTIONS(1280), 28, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468240,79 +465945,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [269089] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [266359] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4107), 1, - anon_sym_LF, - STATE(5552), 1, + STATE(5499), 1, sym_comment, - ACTIONS(4105), 32, + ACTIONS(931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(929), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [269133] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9921), 1, - anon_sym_DOT2, - STATE(5553), 1, - sym_comment, - STATE(5590), 1, - sym_path, - STATE(6062), 1, - sym_cell_path, - ACTIONS(979), 11, - sym_identifier, - anon_sym_GT, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468323,14 +465985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [269183] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [266403] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4480), 1, anon_sym_LF, - STATE(5554), 1, + STATE(5500), 1, sym_comment, - ACTIONS(3834), 32, + ACTIONS(4478), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468363,54 +466028,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269227] = 4, + [266447] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4330), 1, - anon_sym_LF, - STATE(5555), 1, + STATE(5501), 1, sym_comment, - ACTIONS(4328), 32, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [269271] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [266491] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(4484), 1, anon_sym_LF, - STATE(5556), 1, + STATE(5502), 1, sym_comment, - ACTIONS(4013), 32, + ACTIONS(4482), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468443,14 +466108,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269315] = 4, + [266535] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(4088), 1, anon_sym_LF, - STATE(5557), 1, + STATE(5503), 1, sym_comment, - ACTIONS(1385), 32, + ACTIONS(4086), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468483,14 +466148,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269359] = 4, + [266579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4092), 1, anon_sym_LF, - STATE(5558), 1, + STATE(5504), 1, sym_comment, - ACTIONS(3888), 32, + ACTIONS(4090), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468523,64 +466188,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269403] = 4, + [266623] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5559), 1, + ACTIONS(9884), 1, + anon_sym_EQ, + STATE(5505), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(3946), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [269447] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1115), 1, - anon_sym_LF, - STATE(5560), 1, - sym_comment, - ACTIONS(1113), 32, + ACTIONS(3942), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -468603,14 +466229,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269491] = 4, + [266669] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1100), 1, + ACTIONS(4297), 1, anon_sym_LF, - STATE(5561), 1, + STATE(5506), 1, sym_comment, - ACTIONS(1098), 32, + ACTIONS(4295), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468643,14 +466269,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269535] = 4, + [266713] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4116), 1, + ACTIONS(3931), 1, anon_sym_LF, - STATE(5562), 1, + STATE(5507), 1, sym_comment, - ACTIONS(4114), 32, + ACTIONS(3929), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468683,28 +466309,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269579] = 5, + [266757] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9924), 1, + ACTIONS(9796), 1, anon_sym_DOT2, - STATE(5563), 1, + STATE(4634), 1, + sym_cell_path, + STATE(5425), 1, + sym_path, + STATE(5508), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(929), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(931), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468720,18 +466352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [269625] = 4, + [266807] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4120), 1, + ACTIONS(1056), 1, anon_sym_LF, - STATE(5564), 1, + STATE(5509), 1, sym_comment, - ACTIONS(4118), 32, + ACTIONS(1054), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -468764,74 +466392,36 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269669] = 4, + [266851] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4124), 1, - anon_sym_LF, - STATE(5565), 1, + STATE(5510), 1, sym_comment, - ACTIONS(4122), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [269713] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5566), 1, - sym_comment, - ACTIONS(1245), 5, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1409), 23, - anon_sym_DASH, - anon_sym_in, + ACTIONS(9880), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -468845,28 +466435,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [269759] = 4, + [266901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5567), 1, + STATE(5511), 1, sym_comment, - ACTIONS(1393), 5, + ACTIONS(1423), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1421), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, - ACTIONS(1395), 28, - anon_sym_COMMA, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [266945] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5422), 1, + sym_path, + STATE(5512), 1, + sym_comment, + STATE(6337), 1, + sym_cell_path, + ACTIONS(959), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(961), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -468882,97 +466518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [269803] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4128), 1, - anon_sym_LF, - STATE(5568), 1, - sym_comment, - ACTIONS(4126), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [269847] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4136), 1, - anon_sym_LF, - STATE(5569), 1, - sym_comment, - ACTIONS(4134), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [269891] = 4, + [266995] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4140), 1, + ACTIONS(4152), 1, anon_sym_LF, - STATE(5570), 1, + STATE(5513), 1, sym_comment, - ACTIONS(4138), 32, + ACTIONS(4150), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469005,14 +466558,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269935] = 4, + [267039] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4144), 1, + ACTIONS(4166), 1, anon_sym_LF, - STATE(5571), 1, + STATE(5514), 1, sym_comment, - ACTIONS(4142), 32, + ACTIONS(4164), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469045,14 +466598,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [269979] = 4, + [267083] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5515), 1, + sym_comment, + ACTIONS(1193), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1191), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267127] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4148), 1, + ACTIONS(4170), 1, anon_sym_LF, - STATE(5572), 1, + STATE(5516), 1, sym_comment, - ACTIONS(4146), 32, + ACTIONS(4168), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469085,14 +466678,100 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270023] = 4, + [267171] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4160), 1, + STATE(5517), 1, + sym_comment, + ACTIONS(1389), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5573), 1, + ACTIONS(1387), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267215] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5518), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267271] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4174), 1, + anon_sym_LF, + STATE(5519), 1, sym_comment, - ACTIONS(4158), 32, + ACTIONS(4172), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469125,14 +466804,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270067] = 4, + [267315] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5520), 1, + sym_comment, + ACTIONS(1321), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1319), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267359] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4170), 1, + ACTIONS(4178), 1, anon_sym_LF, - STATE(5574), 1, + STATE(5521), 1, sym_comment, - ACTIONS(4168), 32, + ACTIONS(4176), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469165,14 +466884,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270111] = 4, + [267403] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4174), 1, + ACTIONS(4186), 1, anon_sym_LF, - STATE(5575), 1, + STATE(5522), 1, sym_comment, - ACTIONS(4172), 32, + ACTIONS(4184), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469205,14 +466924,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270155] = 4, + [267447] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4178), 1, + ACTIONS(4199), 1, anon_sym_LF, - STATE(5576), 1, + STATE(5523), 1, sym_comment, - ACTIONS(4176), 32, + ACTIONS(4197), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469245,14 +466964,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270199] = 4, + [267491] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4192), 1, + ACTIONS(4203), 1, anon_sym_LF, - STATE(5577), 1, + STATE(5524), 1, sym_comment, - ACTIONS(4190), 32, + ACTIONS(4201), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469285,117 +467004,193 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270243] = 6, + [267535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9926), 1, - anon_sym_DOT2, - STATE(5578), 1, + STATE(5525), 1, sym_comment, - ACTIONS(1245), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(1247), 5, + ACTIONS(1331), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1329), 20, + sym_cmd_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, - ACTIONS(1409), 23, - anon_sym_DASH, - anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267579] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5526), 1, + sym_comment, + ACTIONS(1427), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1425), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [270291] = 5, - ACTIONS(3), 1, + [267623] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token2, - STATE(5579), 1, + ACTIONS(4217), 1, + anon_sym_LF, + STATE(5527), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(4215), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - sym_filesize_unit, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(809), 23, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [267667] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4233), 1, + anon_sym_LF, + STATE(5528), 1, + sym_comment, + ACTIONS(4231), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [270337] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [267711] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9926), 1, - anon_sym_DOT2, - STATE(5580), 1, + STATE(5529), 1, sym_comment, - ACTIONS(1102), 5, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 27, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469409,27 +467204,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [270383] = 4, + [267755] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5581), 1, + STATE(5530), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 31, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -469449,14 +467246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [270427] = 4, + [267803] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4196), 1, + ACTIONS(4261), 1, anon_sym_LF, - STATE(5582), 1, + STATE(5531), 1, sym_comment, - ACTIONS(4194), 32, + ACTIONS(4259), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469489,14 +467286,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270471] = 4, + [267847] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4291), 1, anon_sym_LF, - STATE(5583), 1, + STATE(5532), 1, sym_comment, - ACTIONS(4200), 32, + ACTIONS(4289), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469529,56 +467326,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270515] = 6, - ACTIONS(105), 1, + [267891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9928), 1, - anon_sym_DOT2, - ACTIONS(9930), 1, - aux_sym__unquoted_in_list_token7, - STATE(5584), 1, + STATE(5533), 1, sym_comment, - ACTIONS(861), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(1431), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267935] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5534), 1, + sym_comment, + ACTIONS(1435), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [270563] = 4, + ACTIONS(1433), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [267979] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4222), 1, + ACTIONS(4313), 1, anon_sym_LF, - STATE(5585), 1, + STATE(5535), 1, sym_comment, - ACTIONS(4220), 32, + ACTIONS(4311), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469611,14 +467446,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270607] = 4, + [268023] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4226), 1, + ACTIONS(4317), 1, anon_sym_LF, - STATE(5586), 1, + STATE(5536), 1, sym_comment, - ACTIONS(4224), 32, + ACTIONS(4315), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469651,28 +467486,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270651] = 4, + [268067] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5587), 1, + ACTIONS(9888), 1, + anon_sym_DOT2, + STATE(5537), 1, sym_comment, - ACTIONS(1401), 5, + STATE(5684), 1, + sym_path, + STATE(6163), 1, + sym_cell_path, + ACTIONS(966), 12, + sym_identifier, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1403), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(968), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -469688,28 +467529,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [270695] = 5, - ACTIONS(105), 1, + [268117] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9493), 1, + ACTIONS(9610), 1, aux_sym__immediate_decimal_token2, - STATE(5588), 1, + STATE(5538), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, + ACTIONS(815), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(817), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [268163] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(2996), 30, + STATE(5539), 1, + sym_comment, + ACTIONS(909), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -469732,15 +467610,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270741] = 4, + [268207] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5589), 1, + STATE(5540), 1, sym_comment, - ACTIONS(1104), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1102), 31, + ACTIONS(1387), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -469772,39 +467650,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [270785] = 7, - ACTIONS(3), 1, + [268251] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5417), 1, - aux_sym_cell_path_repeat1, - STATE(5590), 1, + STATE(5541), 1, sym_comment, - STATE(6227), 1, - sym_path, - ACTIONS(903), 11, - sym_identifier, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 29, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(905), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -469815,24 +467688,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [270835] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [268297] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9614), 1, + aux_sym__immediate_decimal_token2, + STATE(5542), 1, + sym_comment, + ACTIONS(807), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(809), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [268343] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5591), 1, + ACTIONS(4250), 1, + anon_sym_LF, + STATE(5543), 1, sym_comment, - ACTIONS(1261), 3, - ts_builtin_sym_end, + ACTIONS(4248), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [268387] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4324), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1259), 30, + STATE(5544), 1, + sym_comment, + ACTIONS(4322), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -469855,15 +467812,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270879] = 4, + [268431] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5592), 1, + STATE(5545), 1, sym_comment, - ACTIONS(1280), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1278), 31, + ACTIONS(1387), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -469895,14 +467852,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [270923] = 4, + [268475] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4230), 1, + STATE(5546), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5593), 1, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [268527] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + anon_sym_LF, + STATE(5547), 1, sym_comment, - ACTIONS(4228), 32, + ACTIONS(4326), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -469935,69 +467936,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [270967] = 4, - ACTIONS(105), 1, + [268571] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4238), 1, - anon_sym_LF, - STATE(5594), 1, + ACTIONS(9891), 1, + aux_sym__immediate_decimal_token2, + STATE(5548), 1, sym_comment, - ACTIONS(4236), 32, - anon_sym_SEMI, + ACTIONS(855), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(857), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [271011] = 8, + [268617] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4543), 1, - sym_path, - STATE(5595), 1, + STATE(5549), 1, sym_comment, - STATE(5758), 1, - sym_cell_path, - ACTIONS(6103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(909), 5, + ACTIONS(807), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(911), 23, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470019,52 +468016,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271063] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [268661] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5596), 1, + ACTIONS(9893), 1, + anon_sym_DOT2, + ACTIONS(9896), 1, + aux_sym__immediate_decimal_token2, + STATE(5550), 1, sym_comment, - ACTIONS(1276), 2, - ts_builtin_sym_end, + ACTIONS(846), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(848), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [268709] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4370), 1, anon_sym_LF, - ACTIONS(1274), 31, + STATE(5551), 1, + sym_comment, + ACTIONS(4368), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [271107] = 5, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [268753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9518), 1, + ACTIONS(9610), 1, aux_sym__immediate_decimal_token2, - STATE(5597), 1, + ACTIONS(9898), 1, + anon_sym_DOT2, + STATE(5552), 1, sym_comment, ACTIONS(815), 9, anon_sym_DASH, @@ -470074,9 +468116,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(817), 23, + ACTIONS(817), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -470084,7 +468126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -470100,14 +468141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [271153] = 4, + [268801] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4242), 1, + ACTIONS(4257), 1, anon_sym_LF, - STATE(5598), 1, + STATE(5553), 1, sym_comment, - ACTIONS(4240), 32, + ACTIONS(4255), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470140,25 +468181,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [271197] = 4, + [268845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5599), 1, + STATE(5554), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(815), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1409), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 26, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470180,32 +468220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271241] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [268889] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5600), 1, + STATE(5555), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(846), 26, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -470219,108 +468261,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [271285] = 4, + [268933] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_LF, - STATE(5601), 1, + STATE(5556), 1, sym_comment, - ACTIONS(4244), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [271329] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9581), 1, - anon_sym_DOT2, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5602), 1, - sym_comment, - ACTIONS(861), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(9880), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9882), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [271377] = 4, + [268991] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5603), 1, + STATE(5557), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1253), 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + ACTIONS(1255), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1385), 23, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470342,94 +468349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271421] = 4, + [269037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5604), 1, + STATE(5558), 1, sym_comment, - ACTIONS(1263), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1268), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1266), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [271465] = 4, - ACTIONS(105), 1, + [269081] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5605), 1, + STATE(5559), 1, sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1193), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1268), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1266), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [271509] = 4, + [269125] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4260), 1, + ACTIONS(4374), 1, anon_sym_LF, - STATE(5606), 1, + STATE(5560), 1, sym_comment, - ACTIONS(4258), 32, + ACTIONS(4372), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470462,14 +468469,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [271553] = 4, + [269169] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4271), 1, + ACTIONS(4378), 1, anon_sym_LF, - STATE(5607), 1, + STATE(5561), 1, sym_comment, - ACTIONS(4269), 32, + ACTIONS(4376), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470502,14 +468509,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [271597] = 4, + [269213] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, + ACTIONS(4382), 1, anon_sym_LF, - STATE(5608), 1, + STATE(5562), 1, sym_comment, - ACTIONS(1309), 32, + ACTIONS(4380), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470542,73 +468549,73 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [271641] = 4, + [269257] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5609), 1, + STATE(5563), 1, sym_comment, - ACTIONS(1263), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1284), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1282), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [271685] = 4, - ACTIONS(3), 1, + [269301] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5610), 1, + ACTIONS(1385), 1, + anon_sym_LF, + STATE(5564), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1255), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -470622,33 +468629,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271729] = 4, - ACTIONS(3), 1, + [269345] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5611), 1, + ACTIONS(1355), 1, + anon_sym_LF, + STATE(5565), 1, sym_comment, - ACTIONS(1263), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, + ACTIONS(1353), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [269389] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5566), 1, + sym_comment, + ACTIONS(1284), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1282), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -470662,25 +468709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271773] = 4, + [269433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5612), 1, + STATE(5567), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(807), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 26, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470702,15 +468748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271817] = 4, + sym_duration_unit, + [269477] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5613), 1, + STATE(5568), 1, sym_comment, - ACTIONS(1319), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1317), 31, + ACTIONS(1387), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -470742,54 +468789,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [271861] = 4, - ACTIONS(3), 1, + [269521] = 12, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5614), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + STATE(5569), 1, sym_comment, - ACTIONS(1263), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(9880), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(9882), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1391), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [271905] = 4, + [269581] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4297), 1, + ACTIONS(4388), 1, anon_sym_LF, - STATE(5615), 1, + STATE(5570), 1, sym_comment, - ACTIONS(4295), 32, + ACTIONS(4386), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -470822,18 +468877,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [271949] = 7, + [269625] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5571), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [269679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(5616), 1, + STATE(5572), 1, sym_comment, - STATE(5644), 1, + STATE(5715), 1, aux_sym_cell_path_repeat1, - STATE(6131), 1, + STATE(6173), 1, sym_path, - ACTIONS(975), 12, + ACTIONS(973), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -470846,8 +468944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(977), 18, + ACTIONS(975), 19, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -470865,66 +468964,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [271999] = 5, - ACTIONS(3), 1, + [269727] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9932), 1, - aux_sym__immediate_decimal_token2, - STATE(5617), 1, + ACTIONS(1219), 1, + anon_sym_LF, + STATE(5573), 1, sym_comment, - ACTIONS(844), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(846), 23, + ACTIONS(1217), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [272045] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [269771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5618), 1, + STATE(5574), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(855), 7, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 26, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -470946,33 +469043,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272089] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [269815] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5619), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5575), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1387), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -470986,73 +469084,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272133] = 4, + [269859] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5620), 1, + STATE(5576), 1, sym_comment, - ACTIONS(1298), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(9907), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272177] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5621), 1, - sym_comment, - ACTIONS(1263), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(9911), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471066,76 +469127,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272221] = 4, + [269909] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5622), 1, + STATE(5577), 1, sym_comment, - ACTIONS(4303), 32, + ACTIONS(1387), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272265] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9934), 1, - anon_sym_DOT2, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9938), 1, - aux_sym_unquoted_token2, - STATE(5623), 1, - sym_comment, - ACTIONS(1005), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1007), 25, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471149,138 +469167,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272315] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - anon_sym_LF, - STATE(5624), 1, - sym_comment, - ACTIONS(4307), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272359] = 4, + [269953] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5625), 1, + STATE(5578), 1, sym_comment, - ACTIONS(4311), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(9907), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272403] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4322), 1, - anon_sym_LF, - STATE(5626), 1, - sym_comment, - ACTIONS(4320), 32, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 12, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272447] = 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5627), 1, + STATE(5579), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1374), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 28, + ACTIONS(1376), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -471309,37 +469253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272491] = 5, - ACTIONS(3), 1, + [270053] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, - STATE(5628), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5580), 1, sym_comment, - ACTIONS(861), 14, - sym_identifier, + ACTIONS(1387), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 18, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471350,25 +469290,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [272537] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270097] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5629), 1, + ACTIONS(9917), 1, + anon_sym_DOT2, + STATE(5581), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1253), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1255), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1385), 23, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -471390,14 +469335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272581] = 4, + [270145] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(3891), 1, anon_sym_LF, - STATE(5630), 1, + STATE(5582), 1, sym_comment, - ACTIONS(1294), 32, + ACTIONS(3887), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -471430,37 +469375,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [272625] = 5, - ACTIONS(3), 1, + [270189] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, - STATE(5631), 1, + STATE(5583), 1, sym_comment, - ACTIONS(861), 13, - sym_identifier, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471471,94 +469412,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [272671] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270233] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4046), 1, - anon_sym_LF, - STATE(5632), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + ACTIONS(9919), 1, + anon_sym_bit_DASHxor, + STATE(5584), 1, sym_comment, - ACTIONS(4044), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272715] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4488), 1, - anon_sym_LF, - STATE(5633), 1, - sym_comment, - ACTIONS(4486), 32, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 7, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272759] = 4, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270295] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1407), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5634), 1, + STATE(5585), 1, sym_comment, - ACTIONS(1405), 32, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -471566,12 +469487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -471591,73 +469506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272803] = 4, + [270343] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5635), 1, + STATE(5586), 1, sym_comment, - ACTIONS(4474), 32, + ACTIONS(1387), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5636), 1, - sym_comment, - ACTIONS(1263), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471671,64 +469546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272891] = 4, + [270387] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4472), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5637), 1, + STATE(5587), 1, sym_comment, - ACTIONS(4470), 32, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [272935] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5638), 1, - sym_comment, - ACTIONS(1399), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1397), 31, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -471751,14 +469587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [272979] = 4, + [270433] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5639), 1, + STATE(5588), 1, sym_comment, - ACTIONS(1385), 32, + ACTIONS(1387), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -471791,33 +469627,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [273023] = 6, + [270477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9940), 1, - anon_sym_DOT2, - STATE(6227), 1, - sym_path, - STATE(5640), 2, + STATE(5589), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 11, - sym_identifier, + ACTIONS(894), 7, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1017), 19, - anon_sym_DOLLAR, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 26, anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -471833,39 +469663,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [273071] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5641), 1, - sym_comment, - STATE(5708), 1, - sym_path, - STATE(6438), 1, - sym_cell_path, - ACTIONS(909), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(911), 19, - anon_sym_DOLLAR, + sym_duration_unit, + [270521] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + STATE(5590), 1, + sym_comment, + ACTIONS(9907), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9913), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -471876,54 +469708,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [273121] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270573] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4468), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5642), 1, + STATE(5591), 1, sym_comment, - ACTIONS(4466), 32, + ACTIONS(1387), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [273165] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270617] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4460), 1, + ACTIONS(4281), 1, anon_sym_LF, - STATE(5643), 1, + STATE(5592), 1, sym_comment, - ACTIONS(4458), 32, + ACTIONS(4279), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -471956,103 +469791,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273209] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9943), 1, - anon_sym_DOT2, - STATE(6131), 1, - sym_path, - STATE(5644), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1017), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [273257] = 4, + [270661] = 11, ACTIONS(105), 1, anon_sym_POUND, - STATE(5645), 1, - sym_comment, - ACTIONS(1391), 2, - ts_builtin_sym_end, + ACTIONS(1393), 1, anon_sym_LF, - ACTIONS(1389), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + STATE(5593), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9909), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [273301] = 4, + [270719] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5646), 1, - sym_comment, - ACTIONS(1387), 2, - ts_builtin_sym_end, + ACTIONS(1389), 1, anon_sym_LF, - ACTIONS(1385), 31, + STATE(5594), 1, + sym_comment, + ACTIONS(1387), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -472078,14 +469878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [273345] = 4, + [270763] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(4404), 1, anon_sym_LF, - STATE(5647), 1, + STATE(5595), 1, sym_comment, - ACTIONS(1288), 32, + ACTIONS(4402), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472118,14 +469918,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273389] = 4, + [270807] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + ACTIONS(1393), 1, anon_sym_LF, - STATE(5648), 1, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + STATE(5596), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [270867] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5597), 1, sym_comment, - ACTIONS(1389), 32, + ACTIONS(1387), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -472158,21 +470006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [273433] = 7, + [270911] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, + ACTIONS(9925), 1, anon_sym_DOT2, - STATE(5649), 1, + STATE(5598), 1, sym_comment, - STATE(5714), 1, - aux_sym_cell_path_repeat1, - STATE(6131), 1, + STATE(5678), 1, sym_path, - ACTIONS(903), 12, + STATE(6156), 1, + sym_cell_path, + ACTIONS(966), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -472182,8 +470029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(905), 18, - anon_sym_DASH_DASH, + ACTIONS(968), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -472201,24 +470049,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [273483] = 7, + [270961] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + ACTIONS(9928), 1, + anon_sym_bit_DASHxor, + STATE(5599), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [271023] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9946), 1, - anon_sym_DOT2, - ACTIONS(9948), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9950), 1, - aux_sym_unquoted_token2, - STATE(5650), 1, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5600), 1, sym_comment, - ACTIONS(1005), 5, + ACTIONS(877), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1007), 25, + sym_filesize_unit, + ACTIONS(879), 26, anon_sym_COMMA, anon_sym_DASH, anon_sym_in, @@ -472244,25 +470138,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [273533] = 5, - ACTIONS(3), 1, + sym_duration_unit, + [271069] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9210), 1, - aux_sym_unquoted_token6, - STATE(5651), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5601), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(1387), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, - anon_sym_DASH_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [271113] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + ACTIONS(9928), 1, + anon_sym_bit_DASHxor, + ACTIONS(9930), 1, + anon_sym_bit_DASHor, + STATE(5602), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [271177] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5603), 1, + sym_comment, + ACTIONS(1387), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -472284,64 +470269,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [273579] = 6, - ACTIONS(3), 1, + [271221] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9952), 1, - anon_sym_DOT2, - ACTIONS(9955), 1, - aux_sym__immediate_decimal_token2, - STATE(5652), 1, + ACTIONS(1389), 1, + anon_sym_LF, + STATE(5604), 1, sym_comment, - ACTIONS(835), 9, + ACTIONS(1387), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(837), 22, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [271265] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + ACTIONS(9928), 1, + anon_sym_bit_DASHxor, + ACTIONS(9930), 1, + anon_sym_bit_DASHor, + ACTIONS(9932), 1, + anon_sym_and, + STATE(5605), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [271331] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1351), 1, + anon_sym_LF, + STATE(5606), 1, + sym_comment, + ACTIONS(1349), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [273627] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [271375] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5653), 1, - sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, + ACTIONS(1389), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 30, + STATE(5607), 1, + sym_comment, + ACTIONS(1387), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -472367,97 +470440,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [273671] = 7, - ACTIONS(3), 1, + [271419] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5654), 1, - sym_comment, - STATE(5708), 1, - sym_path, - STATE(6461), 1, - sym_cell_path, - ACTIONS(1001), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + ACTIONS(9928), 1, + anon_sym_bit_DASHxor, + ACTIONS(9930), 1, + anon_sym_bit_DASHor, + ACTIONS(9932), 1, anon_sym_and, + ACTIONS(9934), 1, anon_sym_xor, - anon_sym_or, - ACTIONS(1003), 19, - anon_sym_DOLLAR, + STATE(5608), 1, + sym_comment, + ACTIONS(9907), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9913), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(9921), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [273721] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5655), 1, - sym_comment, - ACTIONS(1290), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(9905), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1288), 20, - sym_cmd_identifier, + [271487] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5609), 1, + sym_comment, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [273765] = 4, + [271531] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4430), 1, + ACTIONS(4418), 1, anon_sym_LF, - STATE(5656), 1, + STATE(5610), 1, sym_comment, - ACTIONS(4428), 32, + ACTIONS(4416), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472490,14 +470572,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273809] = 4, + [271575] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4424), 1, + ACTIONS(4422), 1, anon_sym_LF, - STATE(5657), 1, + STATE(5611), 1, sym_comment, - ACTIONS(4422), 32, + ACTIONS(4420), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472530,14 +470612,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273853] = 4, + [271619] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5658), 1, + STATE(5612), 1, + sym_comment, + ACTIONS(1387), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [271663] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4426), 1, + anon_sym_LF, + STATE(5613), 1, sym_comment, - ACTIONS(4418), 32, + ACTIONS(4424), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472570,24 +470692,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273897] = 4, + [271707] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4416), 1, - anon_sym_LF, - STATE(5659), 1, + ACTIONS(5564), 1, + anon_sym_DOT2, + STATE(5614), 1, sym_comment, - ACTIONS(4414), 32, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -472610,27 +470733,34 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [273941] = 4, + [271753] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5660), 1, + ACTIONS(9936), 1, + anon_sym_DOT2, + ACTIONS(9938), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9940), 1, + aux_sym_unquoted_token2, + STATE(5615), 1, sym_comment, - ACTIONS(889), 7, + ACTIONS(949), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 26, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(951), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -472646,18 +470776,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [271803] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LF, + ACTIONS(9923), 1, + anon_sym_bit_DASHand, + ACTIONS(9928), 1, + anon_sym_bit_DASHxor, + ACTIONS(9930), 1, + anon_sym_bit_DASHor, + ACTIONS(9932), 1, anon_sym_and, + ACTIONS(9934), 1, anon_sym_xor, + ACTIONS(9942), 1, anon_sym_or, - sym_duration_unit, - [273985] = 4, + STATE(5616), 1, + sym_comment, + ACTIONS(9907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9911), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9913), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9921), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(9909), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9915), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9905), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [271873] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1389), 1, anon_sym_LF, - STATE(5661), 1, + STATE(5617), 1, sym_comment, - ACTIONS(1397), 32, + ACTIONS(1387), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -472690,14 +470869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [274029] = 4, + [271917] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6826), 1, + ACTIONS(4472), 1, anon_sym_LF, - STATE(5662), 1, + STATE(5618), 1, sym_comment, - ACTIONS(6829), 32, + ACTIONS(4470), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472730,14 +470909,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274073] = 4, + [271961] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, + ACTIONS(4488), 1, anon_sym_LF, - STATE(5663), 1, + STATE(5619), 1, sym_comment, - ACTIONS(1305), 32, + ACTIONS(4486), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472770,110 +470949,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274117] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5664), 1, - sym_comment, - STATE(5708), 1, - sym_path, - STATE(6310), 1, - sym_cell_path, - ACTIONS(1033), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1035), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [274167] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4458), 1, - sym_cell_path, - STATE(5665), 1, - sym_comment, - STATE(5783), 1, - sym_path, - ACTIONS(979), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(981), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [274217] = 4, + [272005] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LF, - STATE(5666), 1, + ACTIONS(9541), 1, + aux_sym__immediate_decimal_token2, + STATE(5620), 1, sym_comment, - ACTIONS(4410), 32, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -472896,14 +470990,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274261] = 4, + [272051] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4408), 1, + ACTIONS(4301), 1, anon_sym_LF, - STATE(5667), 1, + STATE(5621), 1, sym_comment, - ACTIONS(4406), 32, + ACTIONS(4299), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -472936,24 +471030,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274305] = 4, + [272095] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_LF, - STATE(5668), 1, + STATE(5622), 1, sym_comment, - ACTIONS(1278), 32, + ACTIONS(1219), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1217), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -472976,73 +471070,39 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274349] = 4, - ACTIONS(105), 1, + [272139] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1276), 1, - anon_sym_LF, - STATE(5669), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5422), 1, + sym_path, + STATE(5623), 1, sym_comment, - ACTIONS(1274), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(6166), 1, + sym_cell_path, + ACTIONS(933), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [274393] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_LF, - STATE(5670), 1, - sym_comment, - ACTIONS(1278), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(935), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473053,57 +471113,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [274437] = 4, + [272189] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(4062), 1, anon_sym_LF, - STATE(5671), 1, + STATE(5624), 1, sym_comment, - ACTIONS(1102), 32, + ACTIONS(4060), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [274481] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [272233] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4400), 1, + ACTIONS(4070), 1, anon_sym_LF, - STATE(5672), 1, + STATE(5625), 1, sym_comment, - ACTIONS(4398), 32, + ACTIONS(4068), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473136,14 +471193,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274525] = 4, + [272277] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4396), 1, + ACTIONS(1193), 1, anon_sym_LF, - STATE(5673), 1, + STATE(5626), 1, sym_comment, - ACTIONS(4394), 32, + ACTIONS(1191), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [272321] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4074), 1, + anon_sym_LF, + STATE(5627), 1, + sym_comment, + ACTIONS(4072), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473176,14 +471273,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274569] = 4, + [272365] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1276), 1, + ACTIONS(4078), 1, anon_sym_LF, - STATE(5674), 1, + STATE(5628), 1, sym_comment, - ACTIONS(1274), 32, + ACTIONS(4076), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473216,22 +471313,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [274613] = 5, + [272409] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, - STATE(5675), 1, + STATE(5629), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -473257,34 +471351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [274659] = 5, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [272453] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_LF, - STATE(5676), 1, + STATE(5630), 1, sym_comment, - ACTIONS(1243), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1247), 28, + ACTIONS(1082), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1084), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473298,142 +471393,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [274705] = 4, - ACTIONS(105), 1, + [272497] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_LF, - STATE(5677), 1, + STATE(5631), 1, sym_comment, - ACTIONS(1288), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(1272), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [274749] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_LF, - STATE(5678), 1, - sym_comment, - ACTIONS(1393), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1270), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [274793] = 7, + [272541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4682), 1, - sym_cell_path, - STATE(5679), 1, + STATE(5632), 1, sym_comment, - STATE(5783), 1, - sym_path, - ACTIONS(1001), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1003), 18, + ACTIONS(1439), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [274843] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9957), 1, - anon_sym_DOT2, - STATE(5649), 1, - sym_path, - STATE(5680), 1, - sym_comment, - STATE(6105), 1, - sym_cell_path, - ACTIONS(997), 12, - sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1437), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -473441,118 +471461,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(999), 18, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [274893] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9626), 1, - aux_sym__immediate_decimal_token2, - STATE(5681), 1, - sym_comment, - ACTIONS(807), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [274939] = 4, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [272585] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5682), 1, + STATE(5633), 1, sym_comment, - ACTIONS(1315), 13, - anon_sym_DASH_DASH, + ACTIONS(855), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 26, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1313), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [272629] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5634), 1, + sym_comment, + ACTIONS(877), 7, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [274983] = 4, + sym_duration_unit, + [272673] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4384), 1, + ACTIONS(1305), 1, anon_sym_LF, - STATE(5683), 1, + STATE(5635), 1, sym_comment, - ACTIONS(4382), 32, + ACTIONS(1303), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473585,94 +471593,104 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [275027] = 4, + [272717] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4380), 1, - anon_sym_LF, - STATE(5684), 1, + ACTIONS(879), 1, + sym__entry_separator, + STATE(5636), 1, sym_comment, - ACTIONS(4378), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(877), 32, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [275071] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + [272761] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4376), 1, - anon_sym_LF, - STATE(5685), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + ACTIONS(9919), 1, + anon_sym_bit_DASHxor, + ACTIONS(9944), 1, + anon_sym_bit_DASHor, + STATE(5637), 1, sym_comment, - ACTIONS(4374), 32, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 6, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [275115] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [272825] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4372), 1, + ACTIONS(1309), 1, anon_sym_LF, - STATE(5686), 1, + STATE(5638), 1, sym_comment, - ACTIONS(4370), 32, + ACTIONS(1307), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -473705,75 +471723,157 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [275159] = 6, + [272869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9524), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9960), 1, - anon_sym_DOT2, - STATE(5687), 1, + STATE(5639), 1, sym_comment, - ACTIONS(807), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(809), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(1335), 13, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [275207] = 4, - ACTIONS(105), 1, + ACTIONS(1333), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [272913] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_LF, - STATE(5688), 1, + ACTIONS(1251), 1, + sym_cmd_identifier, + STATE(5640), 1, sym_comment, - ACTIONS(1294), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1253), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1385), 9, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1255), 19, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [272961] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5641), 1, + sym_comment, + ACTIONS(1376), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1374), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [273005] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9946), 1, + sym_filesize_unit, + ACTIONS(9948), 1, + sym_duration_unit, + STATE(5642), 1, + sym_comment, + ACTIONS(1054), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1056), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -473787,24 +471887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275251] = 4, + [273053] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5689), 1, + ACTIONS(9465), 1, + aux_sym_unquoted_token6, + STATE(5643), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(877), 7, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, - anon_sym_DASH, + ACTIONS(879), 25, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -473827,22 +471928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [275295] = 5, + [273099] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(8019), 1, - anon_sym_COLON, - STATE(5690), 1, + STATE(5644), 1, sym_comment, - ACTIONS(1102), 31, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -473868,21 +471968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275341] = 7, + [273143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4648), 1, - sym_cell_path, - STATE(5691), 1, + STATE(5385), 1, + aux_sym_cell_path_repeat1, + STATE(5645), 1, sym_comment, - STATE(5783), 1, + STATE(6219), 1, sym_path, - ACTIONS(990), 12, + ACTIONS(973), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -473892,10 +471989,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(992), 18, + ACTIONS(975), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [273191] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5646), 1, + sym_comment, + ACTIONS(1177), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(1179), 26, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -473911,21 +472046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [275391] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [273235] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1300), 1, - anon_sym_LF, - STATE(5692), 1, + STATE(5647), 1, sym_comment, - ACTIONS(1298), 32, + ACTIONS(1331), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1329), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -473951,98 +472090,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275435] = 5, + [273279] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9622), 1, - aux_sym__immediate_decimal_token2, - STATE(5693), 1, + ACTIONS(9950), 1, + anon_sym_DOT2, + ACTIONS(9952), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9954), 1, + aux_sym_unquoted_token2, + STATE(5648), 1, sym_comment, - ACTIONS(815), 9, + ACTIONS(949), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(951), 25, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 23, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [273329] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1331), 1, + anon_sym_LF, + STATE(5649), 1, + sym_comment, + ACTIONS(1329), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [275481] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [273373] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5694), 1, + STATE(5650), 1, sym_comment, - ACTIONS(1104), 13, - anon_sym_DASH_DASH, + ACTIONS(1187), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1185), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1102), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [273417] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5651), 1, + sym_comment, + ACTIONS(1387), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [275525] = 4, + [273461] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LF, - STATE(5695), 1, + STATE(5652), 1, sym_comment, - ACTIONS(1193), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -474072,52 +472291,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275569] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [273505] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5696), 1, + ACTIONS(1179), 1, + sym__entry_separator, + STATE(5653), 1, sym_comment, - ACTIONS(1311), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1309), 20, - sym_cmd_identifier, + ACTIONS(1177), 32, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [275613] = 4, + sym_filesize_unit, + sym_duration_unit, + [273549] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5697), 1, + STATE(5654), 1, sym_comment, - ACTIONS(1407), 13, + ACTIONS(931), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -474131,7 +472352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1405), 20, + ACTIONS(929), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -474152,74 +472373,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275657] = 5, + [273593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9963), 1, - aux_sym__immediate_decimal_token2, - STATE(5698), 1, + STATE(5655), 1, sym_comment, - ACTIONS(844), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(846), 23, - anon_sym_LBRACK, + ACTIONS(1387), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [275703] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_LF, - STATE(5699), 1, - sym_comment, - ACTIONS(990), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474233,14 +472413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275747] = 4, + [273637] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(1335), 1, anon_sym_LF, - STATE(5700), 1, + STATE(5656), 1, sym_comment, - ACTIONS(1243), 32, + ACTIONS(1333), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -474273,26 +472453,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [275791] = 5, + [273681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9965), 1, - anon_sym_QMARK2, - STATE(5701), 1, + ACTIONS(9917), 1, + anon_sym_DOT2, + STATE(5657), 1, sym_comment, - ACTIONS(1054), 6, + ACTIONS(1054), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1056), 26, + ACTIONS(1056), 27, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -474314,70 +472494,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [275837] = 5, - ACTIONS(3), 1, + [273727] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9965), 1, - anon_sym_QMARK2, - STATE(5702), 1, + ACTIONS(1339), 1, + anon_sym_LF, + STATE(5658), 1, sym_comment, - ACTIONS(1054), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1056), 26, + ACTIONS(1337), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [275883] = 6, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [273771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9583), 1, + ACTIONS(9497), 1, aux_sym_unquoted_token6, - ACTIONS(9664), 1, - anon_sym_DOT2, - STATE(5703), 1, + STATE(5659), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(877), 13, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - ACTIONS(863), 25, + sym_duration_unit, + ACTIONS(879), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -474393,20 +472575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [275931] = 6, + [273817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9967), 1, - anon_sym_DOT2, - ACTIONS(9970), 1, + ACTIONS(9956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9958), 1, aux_sym__immediate_decimal_token2, - STATE(5704), 1, + STATE(5660), 1, sym_comment, - ACTIONS(835), 9, + ACTIONS(815), 9, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -474415,8 +472594,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, + ACTIONS(817), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [273865] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9656), 1, + aux_sym__immediate_decimal_token2, + STATE(5661), 1, + sym_comment, + ACTIONS(815), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(837), 22, + aux_sym__unquoted_in_list_token7, + ACTIONS(817), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -474424,6 +472642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -474439,61 +472658,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [275979] = 4, + [273911] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(5705), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + ACTIONS(9919), 1, + anon_sym_bit_DASHxor, + ACTIONS(9944), 1, + anon_sym_bit_DASHor, + ACTIONS(9960), 1, + anon_sym_and, + STATE(5662), 1, sym_comment, - ACTIONS(1033), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9880), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9878), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(9886), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, + ACTIONS(1391), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_xor, anon_sym_or, - [276023] = 4, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [273977] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, - anon_sym_LF, - STATE(5706), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9962), 1, + anon_sym_DOT2, + ACTIONS(9964), 1, + aux_sym__unquoted_in_list_token7, + STATE(5663), 1, + sym_comment, + ACTIONS(877), 30, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [274025] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5664), 1, sym_comment, - ACTIONS(1305), 32, + ACTIONS(1268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1266), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -474519,32 +472791,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [276067] = 4, - ACTIONS(3), 1, + [274069] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5707), 1, + STATE(5665), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(1268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1266), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 26, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474558,113 +472831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [276111] = 7, + [274113] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9814), 1, + ACTIONS(9796), 1, anon_sym_DOT2, - STATE(5451), 1, - aux_sym_cell_path_repeat1, - STATE(5708), 1, - sym_comment, - STATE(6227), 1, + STATE(4547), 1, + sym_cell_path, + STATE(5425), 1, sym_path, - ACTIONS(903), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(905), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [276161] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9626), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9972), 1, - anon_sym_DOT2, - STATE(5709), 1, - sym_comment, - ACTIONS(807), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(809), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [276209] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5710), 1, + STATE(5666), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(933), 12, + sym_identifier, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_DOT2, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(935), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -474680,25 +472874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [276253] = 4, + [274163] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, + ACTIONS(1253), 1, anon_sym_LF, - STATE(5711), 1, + STATE(5667), 1, sym_comment, - ACTIONS(1309), 32, + ACTIONS(1251), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1255), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -474724,97 +472915,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [276297] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1360), 1, - anon_sym_LF, - STATE(5712), 1, - sym_comment, - ACTIONS(1358), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [276341] = 4, - ACTIONS(105), 1, + [274209] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5713), 1, + STATE(5668), 1, sym_comment, - ACTIONS(1254), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1252), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1339), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [276385] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5644), 1, - aux_sym_cell_path_repeat1, - STATE(5714), 1, - sym_comment, - STATE(6131), 1, - sym_path, - ACTIONS(975), 12, - sym_identifier, + ACTIONS(1337), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -474822,20 +472943,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(977), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + [274253] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1376), 1, + anon_sym_LF, + STATE(5669), 1, + sym_comment, + ACTIONS(1374), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -474846,54 +472992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [276433] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4354), 1, - anon_sym_LF, - STATE(5715), 1, - sym_comment, - ACTIONS(4352), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [276477] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [274297] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1254), 1, + ACTIONS(1347), 1, anon_sym_LF, - STATE(5716), 1, + STATE(5670), 1, sym_comment, - ACTIONS(1252), 32, + ACTIONS(1345), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -474926,24 +473035,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [276521] = 4, + [274341] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5717), 1, + STATE(5671), 1, sym_comment, - ACTIONS(844), 7, + ACTIONS(1086), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 26, - anon_sym_DASH, + ACTIONS(1088), 27, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -474965,97 +473075,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [276565] = 5, - ACTIONS(105), 1, + [274385] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_EQ, - STATE(5718), 1, + STATE(5672), 1, sym_comment, - ACTIONS(4011), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4007), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1276), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [276611] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5719), 1, - sym_comment, - ACTIONS(1224), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1222), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1274), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [276655] = 4, + [274429] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5720), 1, + STATE(5673), 1, sym_comment, - ACTIONS(1284), 2, + ACTIONS(951), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1282), 31, + ACTIONS(949), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -475087,104 +473155,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [276699] = 4, + [274473] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5721), 1, + STATE(5674), 1, sym_comment, - ACTIONS(807), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 26, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + ACTIONS(1280), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1278), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [276743] = 4, - ACTIONS(105), 1, + [274517] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5722), 1, + ACTIONS(9966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9968), 1, + aux_sym__immediate_decimal_token2, + STATE(5675), 1, sym_comment, - ACTIONS(1230), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1228), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(807), 9, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(809), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [276787] = 4, + [274565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5723), 1, + STATE(5676), 1, sym_comment, - ACTIONS(889), 7, + ACTIONS(1381), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 26, + ACTIONS(1383), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -475206,15 +473277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [276831] = 4, + [274609] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1315), 1, + ACTIONS(1427), 1, anon_sym_LF, - STATE(5724), 1, + STATE(5677), 1, sym_comment, - ACTIONS(1313), 32, + ACTIONS(1425), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -475247,181 +473317,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [276875] = 4, + [274653] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5725), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5645), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, sym_comment, - ACTIONS(1296), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1294), 20, - sym_cmd_identifier, + STATE(6219), 1, + sym_path, + ACTIONS(903), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(905), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [276919] = 4, + [274703] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5726), 1, + STATE(5679), 1, sym_comment, - ACTIONS(1300), 13, - anon_sym_DASH_DASH, + ACTIONS(894), 7, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 26, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1298), 20, - sym_cmd_identifier, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [274747] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5680), 1, + sym_comment, + ACTIONS(1272), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1270), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [276963] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1315), 1, - anon_sym_LF, - STATE(5727), 1, - sym_comment, - ACTIONS(1313), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [277007] = 5, + [274791] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5636), 1, - anon_sym_DOT2, - STATE(5728), 1, + STATE(5681), 1, sym_comment, - ACTIONS(4015), 2, + ACTIONS(1439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4013), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [277053] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_LF, - STATE(5729), 1, - sym_comment, - ACTIONS(6829), 4, + ACTIONS(1437), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(1305), 28, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -475449,21 +473480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277099] = 4, + [274835] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, - anon_sym_LF, - STATE(5730), 1, + STATE(5682), 1, sym_comment, - ACTIONS(1317), 32, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -475489,33 +473520,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277143] = 4, + [274879] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, - anon_sym_LF, - STATE(5731), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + ACTIONS(9919), 1, + anon_sym_bit_DASHxor, + ACTIONS(9944), 1, + anon_sym_bit_DASHor, + ACTIONS(9960), 1, + anon_sym_and, + ACTIONS(9970), 1, + anon_sym_xor, + STATE(5683), 1, sym_comment, - ACTIONS(1358), 32, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_or, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [274947] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(5572), 1, + aux_sym_cell_path_repeat1, + STATE(5684), 1, + sym_comment, + STATE(6173), 1, + sym_path, + ACTIONS(903), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(905), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475526,24 +473615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [277187] = 4, + [274997] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, - anon_sym_LF, - STATE(5732), 1, + STATE(5685), 1, sym_comment, - ACTIONS(1321), 32, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -475569,54 +473655,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277231] = 4, - ACTIONS(105), 1, + [275041] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - anon_sym_LF, - STATE(5733), 1, + ACTIONS(9723), 1, + aux_sym__immediate_decimal_token2, + STATE(5686), 1, sym_comment, - ACTIONS(1259), 32, - anon_sym_SEMI, + ACTIONS(807), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(809), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [277275] = 4, + [275087] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1431), 1, anon_sym_LF, - STATE(5734), 1, + STATE(5687), 1, sym_comment, - ACTIONS(1005), 32, + ACTIONS(1429), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -475649,19 +473736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277319] = 4, + [275131] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5735), 1, + STATE(5688), 1, sym_comment, - ACTIONS(1191), 3, + ACTIONS(1435), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(1189), 30, + ACTIONS(1433), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -475689,34 +473776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277363] = 5, - ACTIONS(105), 1, + [275175] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(1366), 1, - anon_sym_COLON, - STATE(5736), 1, + STATE(5689), 1, sym_comment, - ACTIONS(1102), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1387), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475730,16 +473816,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277409] = 4, + [275219] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(9903), 1, + anon_sym_bit_DASHand, + ACTIONS(9919), 1, + anon_sym_bit_DASHxor, + ACTIONS(9944), 1, + anon_sym_bit_DASHor, + ACTIONS(9960), 1, + anon_sym_and, + ACTIONS(9970), 1, + anon_sym_xor, + ACTIONS(9972), 1, + anon_sym_or, + STATE(5690), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(5737), 1, + ACTIONS(9876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9880), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9882), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9901), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + ACTIONS(9878), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9886), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9874), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [275289] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(1292), 1, + anon_sym_COLON, + STATE(5691), 1, sym_comment, - ACTIONS(1325), 32, + ACTIONS(1054), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -475770,28 +473910,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277453] = 4, + [275335] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5738), 1, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5422), 1, + sym_path, + STATE(5692), 1, sym_comment, - ACTIONS(1350), 5, + STATE(6340), 1, + sym_cell_path, + ACTIONS(909), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1352), 28, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(911), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -475807,24 +473953,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [277497] = 4, + [275385] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, - anon_sym_LF, - STATE(5739), 1, + STATE(5693), 1, sym_comment, - ACTIONS(1332), 32, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -475850,24 +473993,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277541] = 4, + [275429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5694), 1, + sym_comment, + ACTIONS(1383), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1381), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [275473] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9979), 1, - anon_sym_LF, - STATE(5740), 1, + ACTIONS(7619), 1, + aux_sym_unquoted_token3, + STATE(5695), 1, sym_comment, - ACTIONS(9977), 32, + ACTIONS(829), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(827), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -475890,39 +474074,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [277585] = 7, - ACTIONS(3), 1, + [275519] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4564), 1, - sym_cell_path, - STATE(5741), 1, + ACTIONS(1435), 1, + anon_sym_LF, + STATE(5696), 1, sym_comment, - STATE(5783), 1, - sym_path, - ACTIONS(909), 12, - sym_identifier, + ACTIONS(1433), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(911), 18, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475933,32 +474111,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [277635] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [275563] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5742), 1, + STATE(5697), 1, sym_comment, - ACTIONS(807), 7, + ACTIONS(1305), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1303), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(809), 26, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -475972,15 +474154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [277679] = 4, + [275607] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9983), 1, + ACTIONS(1223), 1, anon_sym_LF, - STATE(5743), 1, + STATE(5698), 1, sym_comment, - ACTIONS(9981), 32, + ACTIONS(1221), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476013,75 +474194,161 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [277723] = 4, - ACTIONS(3), 1, + [275651] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5744), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5694), 1, + anon_sym_DOT2, + ACTIONS(5696), 1, + aux_sym_unquoted_token6, + STATE(5699), 1, sym_comment, - ACTIONS(1102), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 28, + ACTIONS(877), 30, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [277767] = 6, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [275699] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_DASH, - STATE(5745), 1, + STATE(5700), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(1211), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1243), 3, + anon_sym_DOT2, + ACTIONS(1209), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [275743] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(931), 1, + anon_sym_LF, + STATE(5701), 1, + sym_comment, + ACTIONS(929), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(1247), 27, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [275787] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9776), 1, + anon_sym_DOT2, + STATE(5422), 1, + sym_path, + STATE(5702), 1, + sym_comment, + STATE(6372), 1, + sym_cell_path, + ACTIONS(917), 11, + sym_identifier, anon_sym_GT, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(919), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -476092,24 +474359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [277815] = 4, + [275837] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5746), 1, + STATE(5703), 1, sym_comment, - ACTIONS(1395), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1393), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 31, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -476135,15 +474397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277859] = 4, + sym_filesize_unit, + sym_duration_unit, + [275881] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5747), 1, + STATE(5704), 1, sym_comment, - ACTIONS(1407), 2, + ACTIONS(1309), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1405), 31, + ACTIONS(1307), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -476175,14 +474439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277903] = 4, + [275925] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1403), 1, + ACTIONS(1305), 1, anon_sym_LF, - STATE(5748), 1, + STATE(5705), 1, sym_comment, - ACTIONS(1401), 32, + ACTIONS(1303), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -476215,14 +474479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277947] = 4, + [275969] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1309), 1, anon_sym_LF, - STATE(5749), 1, + STATE(5706), 1, sym_comment, - ACTIONS(1338), 32, + ACTIONS(1307), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -476255,33 +474519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [277991] = 4, - ACTIONS(105), 1, + [276013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1340), 1, - anon_sym_LF, - STATE(5750), 1, + STATE(5707), 1, sym_comment, - ACTIONS(1338), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1387), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -476295,73 +474559,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278035] = 4, + [276057] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5751), 1, + ACTIONS(9618), 1, + aux_sym_unquoted_token6, + STATE(5708), 1, sym_comment, - ACTIONS(992), 13, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(990), 20, - sym_cmd_identifier, + ACTIONS(877), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [278079] = 4, - ACTIONS(3), 1, + [276103] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5752), 1, + ACTIONS(1056), 1, + anon_sym_LF, + STATE(5709), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1054), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1356), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -476375,27 +474640,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278123] = 4, + [276147] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5753), 1, + ACTIONS(8033), 1, + aux_sym_unquoted_token6, + STATE(5710), 1, sym_comment, - ACTIONS(815), 7, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_filesize_unit, - ACTIONS(817), 26, + sym_duration_unit, + ACTIONS(879), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -476411,23 +474681,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [278167] = 4, + [276193] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5754), 1, + ACTIONS(8291), 1, + anon_sym_DOT2, + STATE(5711), 1, sym_comment, - ACTIONS(1403), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1401), 31, + ACTIONS(1251), 2, anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(1253), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 28, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -476455,33 +474723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278211] = 4, - ACTIONS(105), 1, + [276241] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1344), 1, - anon_sym_LF, - STATE(5755), 1, + STATE(5712), 1, sym_comment, - ACTIONS(1342), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1387), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -476495,21 +474763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278255] = 4, + [276285] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, - anon_sym_LF, - STATE(5756), 1, + STATE(5713), 1, sym_comment, - ACTIONS(1346), 32, + ACTIONS(1223), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1221), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -476535,27 +474803,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278299] = 4, - ACTIONS(3), 1, + [276329] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5757), 1, + ACTIONS(1088), 1, + anon_sym_LF, + STATE(5714), 1, sym_comment, - ACTIONS(1307), 13, + ACTIONS(1086), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1305), 20, - sym_cmd_identifier, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [276373] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9974), 1, + anon_sym_DOT2, + STATE(6173), 1, + sym_path, + STATE(5715), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(942), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -476563,40 +474862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [278343] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5758), 1, - sym_comment, - ACTIONS(1033), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1035), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(944), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -476612,21 +474885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [278387] = 4, + [276421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5759), 1, + STATE(5716), 1, sym_comment, - ACTIONS(1305), 5, + ACTIONS(1387), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1307), 28, + ACTIONS(1389), 28, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH, @@ -476655,65 +474925,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278431] = 4, - ACTIONS(3), 1, + [276465] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5760), 1, + STATE(5717), 1, sym_comment, - ACTIONS(1387), 13, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1385), 20, - sym_cmd_identifier, - anon_sym_GT, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [276509] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1276), 1, + anon_sym_LF, + STATE(5718), 1, + sym_comment, + ACTIONS(1274), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [278475] = 5, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [276553] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(5761), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, + ACTIONS(9979), 1, anon_sym_LF, - ACTIONS(2996), 30, + STATE(5719), 1, + sym_comment, + ACTIONS(9977), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -476736,14 +475045,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [278521] = 4, + [276597] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1280), 1, anon_sym_LF, - STATE(5762), 1, + STATE(5720), 1, sym_comment, - ACTIONS(1102), 32, + ACTIONS(1278), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -476776,33 +475085,73 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [278565] = 4, - ACTIONS(3), 1, + [276641] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5763), 1, + STATE(5721), 1, sym_comment, - ACTIONS(1346), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1348), 28, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 31, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [276685] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5722), 1, + sym_comment, + ACTIONS(1211), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(1209), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -476816,17 +475165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278609] = 4, + [276729] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, - anon_sym_LF, - STATE(5764), 1, + STATE(5723), 1, sym_comment, - ACTIONS(1350), 32, + ACTIONS(1211), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1209), 31, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -476856,21 +475205,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278653] = 4, + [276773] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(951), 1, anon_sym_LF, - STATE(5765), 1, + STATE(5724), 1, sym_comment, - ACTIONS(1354), 32, + ACTIONS(949), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [276817] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5725), 1, + sym_comment, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [276861] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5726), 1, + sym_comment, + ACTIONS(1321), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1319), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -476896,27 +475325,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278697] = 4, - ACTIONS(3), 1, + [276905] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5766), 1, + STATE(5727), 1, sym_comment, - ACTIONS(1391), 13, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1389), 20, - sym_cmd_identifier, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + [276949] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9796), 1, + anon_sym_DOT2, + STATE(4555), 1, + sym_cell_path, + STATE(5425), 1, + sym_path, + STATE(5728), 1, + sym_comment, + ACTIONS(966), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -476924,27 +475385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(968), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [278741] = 4, + [276999] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5767), 1, + STATE(5729), 1, sym_comment, - ACTIONS(1409), 2, + ACTIONS(1335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1247), 31, + ACTIONS(1333), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -476976,25 +475448,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278785] = 4, + [277043] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5768), 1, + STATE(5730), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(894), 7, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1344), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH, + sym_filesize_unit, + ACTIONS(896), 26, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -477016,73 +475487,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278829] = 4, + sym_duration_unit, + [277087] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_LF, - STATE(5769), 1, + STATE(5731), 1, sym_comment, - ACTIONS(4336), 32, + ACTIONS(1339), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1337), 31, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [278873] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5770), 1, - sym_comment, - ACTIONS(1338), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1340), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -477096,33 +475528,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278917] = 4, - ACTIONS(3), 1, + [277131] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5771), 1, + STATE(5732), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1340), 28, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -477136,60 +475568,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [278961] = 9, - ACTIONS(105), 1, + [277175] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5772), 1, + STATE(5733), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(1385), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9993), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9989), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9985), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1255), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279015] = 4, + [277219] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5773), 1, + STATE(5734), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1276), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 31, + ACTIONS(1274), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -477221,31 +475648,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [279059] = 7, + [277263] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5774), 1, + ACTIONS(9981), 1, + aux_sym_unquoted_token5, + STATE(5735), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(1191), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9991), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9989), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -477264,15 +475689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [279109] = 4, + [277309] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5775), 1, + STATE(5736), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1280), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 31, + ACTIONS(1278), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -477304,12 +475729,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [279153] = 4, + [277353] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5776), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5737), 1, + sym_comment, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9989), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9993), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9987), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9995), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 6, + anon_sym_DASH_DASH, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 11, + sym_cmd_identifier, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [277411] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5738), 1, sym_comment, - ACTIONS(1399), 13, + ACTIONS(1389), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477323,7 +475795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1397), 20, + ACTIONS(1387), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -477344,65 +475816,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [279197] = 10, - ACTIONS(105), 1, + [277455] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5777), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5739), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9993), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, + ACTIONS(1393), 10, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 15, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279253] = 7, + [277507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4667), 1, - sym_cell_path, - STATE(5778), 1, + STATE(5740), 1, sym_comment, - STATE(5783), 1, - sym_path, - ACTIONS(967), 12, - sym_identifier, + ACTIONS(1389), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -477410,204 +475888,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(969), 18, - anon_sym_DASH_DASH, + [277551] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5741), 1, + sym_comment, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9987), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(9995), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(9997), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1393), 6, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 7, + sym_cmd_identifier, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [279303] = 4, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [277611] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5779), 1, + STATE(5742), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1389), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279347] = 6, - ACTIONS(105), 1, + [277655] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5780), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5743), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1393), 10, anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 17, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [277705] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5744), 1, + sym_comment, + ACTIONS(1389), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279395] = 4, - ACTIONS(105), 1, + [277749] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5781), 1, + STATE(5745), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9989), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1393), 11, anon_sym_DASH_DASH, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [277795] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5746), 1, + sym_comment, + ACTIONS(1389), 13, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279439] = 5, - ACTIONS(105), 1, + [277839] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5782), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5747), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9991), 2, + ACTIONS(9985), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + ACTIONS(9993), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1393), 10, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1391), 13, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279485] = 7, + [277893] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, + ACTIONS(9796), 1, anon_sym_DOT2, - STATE(5616), 1, + STATE(5715), 1, aux_sym_cell_path_repeat1, - STATE(5783), 1, + STATE(5748), 1, sym_comment, - STATE(6131), 1, + STATE(6173), 1, sym_path, - ACTIONS(903), 12, + ACTIONS(973), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -477620,7 +476221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(905), 18, + ACTIONS(975), 18, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477639,245 +476240,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [279535] = 4, - ACTIONS(105), 1, + [277943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5784), 1, + STATE(5749), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1389), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279579] = 8, - ACTIONS(105), 1, + [277987] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5785), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + STATE(5750), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9989), 4, + ACTIONS(9999), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1393), 4, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(9995), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(9997), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 7, + sym_cmd_identifier, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279631] = 4, - ACTIONS(105), 1, + [278049] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5786), 1, + STATE(5751), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1389), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279675] = 11, - ACTIONS(105), 1, + [278093] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5787), 1, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(9550), 1, + anon_sym_DOT2, + STATE(5752), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, - anon_sym_DASH, + ACTIONS(877), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9991), 2, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9993), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9997), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9989), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279733] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [278141] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5788), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, + anon_sym_bit_DASHand, + STATE(5753), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(9983), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9999), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9987), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(9995), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(9997), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1391), 6, + sym_cmd_identifier, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279777] = 7, + [278205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4650), 1, - sym_cell_path, - STATE(5783), 1, - sym_path, - STATE(5789), 1, + STATE(5754), 1, sym_comment, - ACTIONS(971), 12, - sym_identifier, + ACTIONS(1353), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(973), 18, - anon_sym_DASH_DASH, + ACTIONS(1355), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -477893,12 +476498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [279827] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [278249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5790), 1, + STATE(5755), 1, sym_comment, - ACTIONS(1007), 13, + ACTIONS(1389), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -477912,7 +476520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1005), 20, + ACTIONS(1387), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -477933,34 +476541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [279871] = 7, + [278293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9999), 1, - anon_sym_DOT2, - ACTIONS(10001), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10003), 1, - aux_sym_unquoted_token2, - STATE(5791), 1, + STATE(5756), 1, sym_comment, - ACTIONS(1005), 12, - sym_identifier, + ACTIONS(1282), 5, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1007), 18, - anon_sym_DASH_DASH, + ACTIONS(1284), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -477976,81 +476578,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [279921] = 12, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [278337] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, anon_sym_bit_DASHand, - STATE(5792), 1, + ACTIONS(10003), 1, + anon_sym_bit_DASHxor, + STATE(5757), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9997), 2, + ACTIONS(9999), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, ACTIONS(9995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, + ACTIONS(9997), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 5, + sym_cmd_identifier, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [279981] = 4, - ACTIONS(105), 1, + [278403] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5793), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(5758), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(877), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 18, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478061,15 +476673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [280025] = 4, + [278449] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5794), 1, + STATE(5759), 1, sym_comment, - ACTIONS(1195), 13, + ACTIONS(1389), 13, anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -478083,7 +476692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1193), 20, + ACTIONS(1387), 20, sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, @@ -478104,70 +476713,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280069] = 13, - ACTIONS(105), 1, + [278493] = 7, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(10005), 1, - anon_sym_bit_DASHand, + anon_sym_DOT2, ACTIONS(10007), 1, - anon_sym_bit_DASHxor, - STATE(5795), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10009), 1, + aux_sym_unquoted_token2, + STATE(5760), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, - anon_sym_DASH, + ACTIONS(949), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(9991), 2, + anon_sym_LT2, + ACTIONS(951), 25, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9993), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9997), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9989), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [280131] = 4, + [278543] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5796), 1, + STATE(5761), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, + ACTIONS(1215), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1213), 31, anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -478193,334 +476796,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280175] = 14, - ACTIONS(105), 1, + [278587] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, anon_sym_bit_DASHand, - ACTIONS(10007), 1, + ACTIONS(10003), 1, anon_sym_bit_DASHxor, - ACTIONS(10009), 1, + ACTIONS(10011), 1, anon_sym_bit_DASHor, - STATE(5797), 1, + STATE(5762), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9997), 2, + ACTIONS(9999), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1391), 4, + sym_cmd_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, ACTIONS(9995), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9997), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 6, - anon_sym_SEMI, - anon_sym_PIPE, + [278655] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5763), 1, + sym_comment, + ACTIONS(1389), 13, anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(9985), 6, + [278699] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, + anon_sym_bit_DASHand, + ACTIONS(10003), 1, + anon_sym_bit_DASHxor, + ACTIONS(10011), 1, + anon_sym_bit_DASHor, + ACTIONS(10013), 1, + anon_sym_and, + STATE(5764), 1, + sym_comment, + ACTIONS(9983), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9989), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9993), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9999), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + sym_cmd_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(9987), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(9995), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [280239] = 4, - ACTIONS(105), 1, + ACTIONS(9997), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [278769] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_LF, - STATE(5798), 1, + STATE(5765), 1, sym_comment, - ACTIONS(990), 32, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1389), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [280283] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5799), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1387), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [280327] = 15, - ACTIONS(105), 1, + [278813] = 18, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, anon_sym_bit_DASHand, - ACTIONS(10007), 1, + ACTIONS(10003), 1, anon_sym_bit_DASHxor, - ACTIONS(10009), 1, - anon_sym_bit_DASHor, ACTIONS(10011), 1, + anon_sym_bit_DASHor, + ACTIONS(10013), 1, anon_sym_and, - STATE(5800), 1, + ACTIONS(10015), 1, + anon_sym_xor, + STATE(5766), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(1391), 2, + sym_cmd_identifier, + anon_sym_or, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9997), 2, + ACTIONS(9999), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, ACTIONS(9995), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9997), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 5, - anon_sym_SEMI, - anon_sym_PIPE, + [278885] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5767), 1, + sym_comment, + ACTIONS(1389), 13, anon_sym_DASH_DASH, - anon_sym_xor, - anon_sym_or, - ACTIONS(9985), 6, - anon_sym_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [280393] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5801), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [280437] = 16, - ACTIONS(105), 1, + [278929] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, + ACTIONS(1391), 1, + sym_cmd_identifier, + ACTIONS(9991), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10001), 1, anon_sym_bit_DASHand, - ACTIONS(10007), 1, + ACTIONS(10003), 1, anon_sym_bit_DASHxor, - ACTIONS(10009), 1, - anon_sym_bit_DASHor, ACTIONS(10011), 1, - anon_sym_and, + anon_sym_bit_DASHor, ACTIONS(10013), 1, + anon_sym_and, + ACTIONS(10015), 1, anon_sym_xor, - STATE(5802), 1, + ACTIONS(10017), 1, + anon_sym_or, + STATE(5768), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9987), 2, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9991), 2, + ACTIONS(9989), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, ACTIONS(9993), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9997), 2, + ACTIONS(9999), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_or, - ACTIONS(9989), 4, + ACTIONS(9987), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, ACTIONS(9995), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9997), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, + [279003] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5769), 1, + sym_comment, + ACTIONS(1389), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [280505] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5803), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 31, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1387), 20, + sym_cmd_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [280549] = 4, + [279047] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5804), 1, + ACTIONS(9561), 1, + aux_sym__immediate_decimal_token2, + STATE(5770), 1, sym_comment, - ACTIONS(1191), 2, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279093] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3952), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1189), 31, + STATE(5771), 1, + sym_comment, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 30, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279139] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8291), 1, + anon_sym_DOT2, + STATE(5772), 1, + sym_comment, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -478546,39 +477293,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280593] = 7, - ACTIONS(3), 1, + [279185] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT2, - STATE(4598), 1, - sym_cell_path, - STATE(5783), 1, - sym_path, - STATE(5805), 1, + ACTIONS(8748), 1, + aux_sym_unquoted_token3, + STATE(5773), 1, sym_comment, - ACTIONS(1033), 12, - sym_identifier, + ACTIONS(829), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(827), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1035), 18, - anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478589,39 +477331,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [280643] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [279231] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9814), 1, - anon_sym_DOT2, - STATE(5708), 1, - sym_path, - STATE(5806), 1, + STATE(5774), 1, sym_comment, - STATE(6257), 1, - sym_cell_path, - ACTIONS(990), 11, - sym_identifier, + ACTIONS(1351), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1349), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(992), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478632,68 +477371,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [280693] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(10005), 1, - anon_sym_bit_DASHand, - ACTIONS(10007), 1, - anon_sym_bit_DASHxor, - ACTIONS(10009), 1, - anon_sym_bit_DASHor, - ACTIONS(10011), 1, anon_sym_and, - ACTIONS(10013), 1, anon_sym_xor, - ACTIONS(10015), 1, anon_sym_or, - STATE(5807), 1, - sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, + [279275] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1359), 1, anon_sym_LF, - ACTIONS(9987), 2, + STATE(5775), 1, + sym_comment, + ACTIONS(1357), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(9991), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9993), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9997), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279319] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1193), 1, + anon_sym_LF, + STATE(5776), 1, + sym_comment, + ACTIONS(1191), 32, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(9989), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9985), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [280763] = 4, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279363] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5808), 1, + STATE(5777), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1423), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 31, + ACTIONS(1421), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -478725,23 +477494,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280807] = 6, + [279407] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_LF, + STATE(5778), 1, + sym_comment, + ACTIONS(4490), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279451] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9581), 1, + ACTIONS(9512), 1, anon_sym_DOT2, - ACTIONS(9583), 1, + ACTIONS(9514), 1, aux_sym_unquoted_token6, - STATE(5809), 1, + STATE(5779), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(877), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, sym_filesize_unit, - ACTIONS(863), 25, + ACTIONS(879), 25, anon_sym_DASH, anon_sym_in, anon_sym_EQ_GT, @@ -478767,33 +477576,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_duration_unit, - [280855] = 4, - ACTIONS(3), 1, + [279499] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5810), 1, + ACTIONS(3000), 1, + anon_sym_LF, + STATE(5780), 1, sym_comment, - ACTIONS(1358), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1360), 28, - anon_sym_COMMA, + ACTIONS(2998), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279543] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5781), 1, + sym_comment, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -478807,57 +477656,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280899] = 4, - ACTIONS(3), 1, + [279587] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5811), 1, + ACTIONS(1363), 1, + anon_sym_LF, + STATE(5782), 1, sym_comment, - ACTIONS(1317), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1319), 28, - anon_sym_COMMA, + ACTIONS(1361), 32, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [280943] = 4, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [279631] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5812), 1, + ACTIONS(1331), 1, + anon_sym_LF, + STATE(5783), 1, sym_comment, - ACTIONS(1224), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1222), 31, + ACTIONS(1329), 32, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -478887,22 +477736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [280987] = 5, + [279675] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10017), 1, - aux_sym_unquoted_token5, - STATE(5813), 1, - sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(1351), 1, anon_sym_LF, - ACTIONS(1193), 30, + STATE(5784), 1, + sym_comment, + ACTIONS(1349), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -478928,62 +477776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [281033] = 4, + [279719] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5814), 1, - sym_comment, - ACTIONS(1356), 2, - ts_builtin_sym_end, + ACTIONS(1427), 1, anon_sym_LF, - ACTIONS(1354), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [281076] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5815), 1, + STATE(5785), 1, sym_comment, - ACTIONS(1352), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1350), 30, + ACTIONS(1425), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479006,23 +477816,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281119] = 4, + [279763] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5816), 1, - sym_comment, - ACTIONS(1035), 2, - ts_builtin_sym_end, + ACTIONS(2959), 1, anon_sym_LF, - ACTIONS(1033), 30, + STATE(5786), 1, + sym_comment, + ACTIONS(2957), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479045,62 +477856,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281162] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5817), 1, - sym_comment, - ACTIONS(1259), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1261), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [281205] = 4, + [279807] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5818), 1, - sym_comment, - ACTIONS(1348), 2, - ts_builtin_sym_end, + ACTIONS(1431), 1, anon_sym_LF, - ACTIONS(1346), 30, + STATE(5787), 1, + sym_comment, + ACTIONS(1429), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479123,23 +477896,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281248] = 4, + [279851] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5819), 1, - sym_comment, - ACTIONS(4338), 2, - ts_builtin_sym_end, + ACTIONS(3806), 1, anon_sym_LF, - ACTIONS(4336), 30, + STATE(5788), 1, + sym_comment, + ACTIONS(3804), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479162,23 +477936,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281291] = 4, + [279895] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5820), 1, - sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, + ACTIONS(1435), 1, anon_sym_LF, - ACTIONS(1193), 30, + STATE(5789), 1, + sym_comment, + ACTIONS(1433), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479201,75 +477976,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281334] = 17, + [279939] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10033), 1, - anon_sym_bit_DASHand, - ACTIONS(10035), 1, - anon_sym_bit_DASHxor, - ACTIONS(10037), 1, - anon_sym_bit_DASHor, - ACTIONS(10039), 1, - anon_sym_and, - ACTIONS(10041), 1, - anon_sym_xor, - ACTIONS(10043), 1, - anon_sym_or, - STATE(5821), 1, - sym_comment, - ACTIONS(9784), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9786), 2, - ts_builtin_sym_end, + ACTIONS(4034), 1, anon_sym_LF, - ACTIONS(10021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10027), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10029), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10031), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10023), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10025), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10019), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [281403] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5822), 1, + STATE(5790), 1, sym_comment, - ACTIONS(1344), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 30, + ACTIONS(4032), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479292,65 +478016,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281446] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10045), 1, - anon_sym_DOT2, - ACTIONS(10047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10049), 1, - aux_sym_unquoted_token2, - STATE(5823), 1, - sym_comment, - ACTIONS(1005), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1007), 24, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [281495] = 4, + [279983] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5824), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, + ACTIONS(1370), 1, anon_sym_LF, - ACTIONS(1338), 30, + STATE(5791), 1, + sym_comment, + ACTIONS(1368), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479373,23 +478056,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281538] = 4, + [280027] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5825), 1, - sym_comment, - ACTIONS(1340), 2, - ts_builtin_sym_end, + ACTIONS(4305), 1, anon_sym_LF, - ACTIONS(1338), 30, + STATE(5792), 1, + sym_comment, + ACTIONS(4303), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479412,17 +478096,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281581] = 4, + [280071] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5826), 1, - sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, + ACTIONS(6524), 1, anon_sym_LF, - ACTIONS(1005), 30, + STATE(5793), 1, + sym_comment, + ACTIONS(6527), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(1341), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -479451,35 +478137,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [281624] = 4, - ACTIONS(3), 1, + [280117] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5827), 1, + ACTIONS(1355), 1, + anon_sym_LF, + STATE(5794), 1, sym_comment, - ACTIONS(1065), 13, - sym_identifier, + ACTIONS(1353), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1067), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -479490,37 +478174,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [281667] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280161] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10051), 1, - sym_filesize_unit, - ACTIONS(10053), 1, - sym_duration_unit, - STATE(5828), 1, + STATE(5795), 1, sym_comment, - ACTIONS(1102), 11, - sym_identifier, + ACTIONS(1355), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1353), 31, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1104), 19, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -479531,108 +478214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [281714] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5829), 1, - sym_comment, - ACTIONS(1284), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1282), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [281757] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5830), 1, - sym_comment, - ACTIONS(4354), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4352), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [281800] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280205] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5831), 1, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4522), 1, + sym_path, + STATE(5460), 1, + sym_cell_path, + STATE(5796), 1, sym_comment, - ACTIONS(861), 13, - sym_identifier, + ACTIONS(5991), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(925), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 19, - anon_sym_DOLLAR, + ACTIONS(927), 23, anon_sym_DASH, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -479648,20 +478258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [281843] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280257] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5832), 1, - sym_comment, - ACTIONS(1300), 2, - ts_builtin_sym_end, + ACTIONS(1284), 1, anon_sym_LF, - ACTIONS(1298), 30, + STATE(5797), 1, + sym_comment, + ACTIONS(1282), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479687,23 +478301,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [281886] = 4, - ACTIONS(105), 1, + [280301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5833), 1, + STATE(5798), 1, sym_comment, - ACTIONS(1399), 2, - ts_builtin_sym_end, + ACTIONS(1056), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1054), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280345] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4265), 1, anon_sym_LF, - ACTIONS(1397), 30, + STATE(5799), 1, + sym_comment, + ACTIONS(4263), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479726,32 +478381,87 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [281929] = 4, + [280389] = 18, ACTIONS(105), 1, anon_sym_POUND, - STATE(5834), 1, + ACTIONS(8291), 1, + anon_sym_DOT2, + ACTIONS(8380), 1, + anon_sym_bit_DASHand, + ACTIONS(8382), 1, + anon_sym_bit_DASHxor, + ACTIONS(8384), 1, + anon_sym_bit_DASHor, + ACTIONS(8386), 1, + anon_sym_and, + ACTIONS(8388), 1, + anon_sym_xor, + ACTIONS(8390), 1, + anon_sym_or, + STATE(5800), 1, sym_comment, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1193), 30, + ACTIONS(8122), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(8124), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8364), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(8374), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(8376), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(8378), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(8366), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(8370), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(8362), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [280461] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5801), 1, + sym_comment, + ACTIONS(1266), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1268), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -479765,62 +478475,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [281972] = 4, - ACTIONS(105), 1, + [280505] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5835), 1, + STATE(5802), 1, sym_comment, - ACTIONS(1296), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1347), 13, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1345), 20, + sym_cmd_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [282015] = 4, + [280549] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5836), 1, - sym_comment, - ACTIONS(1319), 2, - ts_builtin_sym_end, + ACTIONS(1253), 1, anon_sym_LF, - ACTIONS(1317), 30, + STATE(5803), 1, + sym_comment, + ACTIONS(1251), 32, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_not, @@ -479843,59 +478555,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [282058] = 4, - ACTIONS(105), 1, + [280593] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5837), 1, + STATE(5804), 1, sym_comment, - ACTIONS(9979), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9977), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(815), 7, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282101] = 4, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(817), 26, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [280637] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5838), 1, - sym_comment, - ACTIONS(1399), 2, - ts_builtin_sym_end, + ACTIONS(1335), 1, anon_sym_LF, - ACTIONS(1397), 30, + STATE(5805), 1, + sym_comment, + ACTIONS(1333), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479921,20 +478635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282144] = 4, + [280681] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5839), 1, - sym_comment, - ACTIONS(1344), 2, - ts_builtin_sym_end, + ACTIONS(1339), 1, anon_sym_LF, - ACTIONS(1342), 30, + STATE(5806), 1, + sym_comment, + ACTIONS(1337), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -479960,151 +478675,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282187] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5840), 1, - sym_comment, - ACTIONS(1334), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1332), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282230] = 6, + [280725] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_DOT2, - ACTIONS(10057), 1, - aux_sym__unquoted_in_list_token7, - STATE(5841), 1, + STATE(5807), 1, sym_comment, - ACTIONS(861), 8, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1270), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [282277] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5842), 1, - sym_comment, - ACTIONS(9983), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9981), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LT2, + ACTIONS(1272), 28, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282320] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5843), 1, - sym_comment, - ACTIONS(1391), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1389), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -480118,20 +478715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282363] = 4, + [280769] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5844), 1, - sym_comment, - ACTIONS(1387), 2, - ts_builtin_sym_end, + ACTIONS(1359), 1, anon_sym_LF, - ACTIONS(1385), 30, + STATE(5808), 1, + sym_comment, + ACTIONS(1357), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -480157,132 +478755,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282406] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5845), 1, - sym_comment, - ACTIONS(1391), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1389), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282449] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5846), 1, - sym_comment, - ACTIONS(1245), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1243), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282492] = 4, - ACTIONS(105), 1, + [280813] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5847), 1, + STATE(5809), 1, sym_comment, - ACTIONS(1327), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1325), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(911), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282535] = 4, + ACTIONS(909), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280857] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5848), 1, + STATE(5810), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1215), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 30, + anon_sym_DOT2, + ACTIONS(1213), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -480313,59 +478835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282578] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5849), 1, - sym_comment, - ACTIONS(4015), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4013), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282621] = 4, + [280901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5850), 1, + STATE(5811), 1, sym_comment, - ACTIONS(1189), 6, + ACTIONS(807), 7, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1191), 26, - anon_sym_DOLLAR, + sym_filesize_unit, + ACTIONS(809), 26, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -480391,71 +478874,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282664] = 4, - ACTIONS(105), 1, + sym_duration_unit, + [280945] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5851), 1, + STATE(5812), 1, sym_comment, - ACTIONS(4330), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4328), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(1343), 13, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282707] = 4, - ACTIONS(105), 1, + ACTIONS(1341), 20, + sym_cmd_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [280989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5852), 1, + STATE(5813), 1, sym_comment, - ACTIONS(1254), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1252), 30, - anon_sym_RBRACK, + ACTIONS(1255), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 28, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -480469,15 +478955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [282750] = 4, + [281033] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5853), 1, + STATE(5814), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(9850), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4332), 30, + ACTIONS(9848), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -480508,15 +478994,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [282793] = 4, + [281076] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5854), 1, + STATE(5815), 1, sym_comment, - ACTIONS(1387), 2, + ACTIONS(4297), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1385), 30, + ACTIONS(4295), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -480547,26 +479033,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [282836] = 4, + [281119] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5855), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(5696), 1, + aux_sym_unquoted_token6, + STATE(5816), 1, sym_comment, - ACTIONS(3951), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3947), 30, - anon_sym_SEMI, + ACTIONS(877), 30, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -480577,6 +479063,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -480584,17 +479072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [282879] = 4, + aux_sym__unquoted_in_list_token1, + [281164] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5856), 1, + STATE(5817), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1284), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 30, + ACTIONS(1282), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -480625,15 +479112,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [282922] = 4, + [281207] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5857), 1, + STATE(5818), 1, sym_comment, - ACTIONS(4342), 2, + ACTIONS(3891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4340), 30, + ACTIONS(3887), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -480664,19 +479151,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [282965] = 6, + [281250] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10059), 1, + ACTIONS(10019), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10061), 1, + ACTIONS(10021), 1, aux_sym__immediate_decimal_token2, - STATE(5858), 1, + STATE(5819), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3000), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(2996), 28, + ACTIONS(2998), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -480705,27 +479192,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [283012] = 7, + [281297] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10063), 1, - anon_sym_DOT2, - ACTIONS(10065), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10067), 1, - aux_sym_unquoted_token2, - STATE(5859), 1, + STATE(5820), 1, sym_comment, - ACTIONS(1005), 5, + ACTIONS(1213), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1007), 24, - anon_sym_DASH, + ACTIONS(1215), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -480747,15 +479231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [283061] = 4, + [281340] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5860), 1, + STATE(5821), 1, sym_comment, - ACTIONS(1323), 2, + ACTIONS(1355), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1321), 30, + ACTIONS(1353), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -480786,20 +479270,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [283104] = 7, + [281383] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(935), 1, sym__entry_separator, - ACTIONS(10069), 1, + ACTIONS(10023), 1, anon_sym_DOT2, - STATE(5861), 1, + STATE(5822), 1, sym_comment, - STATE(6042), 1, + STATE(5856), 1, sym_path, - STATE(6314), 1, + STATE(6524), 1, sym_cell_path, - ACTIONS(979), 28, + ACTIONS(933), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -480828,26 +479312,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [283153] = 4, + [281432] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5862), 1, + STATE(5823), 1, sym_comment, - ACTIONS(1261), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1259), 30, - anon_sym_SEMI, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + STATE(6321), 1, + sym_path, + ACTIONS(975), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(973), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -480865,134 +479352,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [283196] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5863), 1, - sym_comment, - ACTIONS(1319), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1317), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [283239] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5864), 1, - sym_comment, - ACTIONS(1403), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1401), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [283282] = 4, + aux_sym__unquoted_in_list_token1, + [281479] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5865), 1, + STATE(5824), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(4281), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 30, + ACTIONS(4279), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [283325] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [281522] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5866), 1, + STATE(5825), 1, sym_comment, - ACTIONS(4360), 2, + ACTIONS(4062), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4358), 30, + ACTIONS(4060), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -481023,26 +479431,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [283368] = 4, + [281565] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5867), 1, + ACTIONS(10025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10027), 1, + aux_sym__immediate_decimal_token2, + STATE(5826), 1, sym_comment, - ACTIONS(4364), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4362), 30, - anon_sym_SEMI, + ACTIONS(2959), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2957), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -481060,66 +479471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [283411] = 5, + aux_sym__unquoted_in_list_token1, + [281612] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10072), 1, + ACTIONS(10029), 1, anon_sym_DOT2, - STATE(5868), 1, + ACTIONS(10031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10033), 1, + aux_sym_unquoted_token2, + STATE(5827), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(949), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [283456] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5869), 1, - sym_comment, - ACTIONS(1222), 6, - anon_sym_GT, + ACTIONS(951), 24, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1224), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -481141,33 +479514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [283499] = 5, - ACTIONS(3), 1, + [281661] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10074), 1, - aux_sym_unquoted_token5, - STATE(5870), 1, + STATE(5828), 1, sym_comment, - ACTIONS(1193), 6, + ACTIONS(1305), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1303), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1195), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -481181,58 +479553,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [283544] = 4, - ACTIONS(3), 1, + [281704] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5871), 1, + ACTIONS(927), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5829), 1, sym_comment, - ACTIONS(889), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(891), 23, + STATE(5856), 1, + sym_path, + STATE(6604), 1, + sym_cell_path, + ACTIONS(925), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [283587] = 6, + aux_sym__unquoted_in_list_token1, + [281753] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, - sym__entry_separator, - ACTIONS(10076), 1, - anon_sym_DOT2, - STATE(5872), 1, + STATE(5830), 1, sym_comment, - ACTIONS(1243), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1247), 28, + ACTIONS(1251), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1253), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -481261,21 +479635,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [283634] = 5, + [281798] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(10076), 1, - anon_sym_DOT2, - STATE(5873), 1, + STATE(5831), 1, sym_comment, - ACTIONS(1102), 30, - anon_sym_RBRACK, + ACTIONS(1363), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1361), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [281841] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5832), 1, + sym_comment, + ACTIONS(911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(909), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481301,19 +479713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [283679] = 6, + [281884] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10078), 1, + ACTIONS(951), 1, + sym__entry_separator, + ACTIONS(5897), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10080), 1, - aux_sym__immediate_decimal_token2, - STATE(5874), 1, - sym_comment, - ACTIONS(2988), 2, + ACTIONS(10035), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2986), 28, + ACTIONS(10037), 1, + aux_sym_unquoted_token2, + STATE(5833), 1, + sym_comment, + ACTIONS(949), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -481342,32 +479755,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [283726] = 5, - ACTIONS(3), 1, + [281933] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(5875), 1, + STATE(5834), 1, sym_comment, - ACTIONS(861), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1370), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1368), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [281976] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5835), 1, + sym_comment, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -481381,70 +479833,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_duration_unit, - [283771] = 4, - ACTIONS(3), 1, + [282019] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5876), 1, + STATE(5836), 1, sym_comment, - ACTIONS(844), 9, + ACTIONS(1355), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1353), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(846), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [283814] = 7, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [282062] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, + STATE(5837), 1, sym_comment, - STATE(5897), 1, - aux_sym_cell_path_repeat1, - STATE(6400), 1, - sym_path, - ACTIONS(903), 28, + ACTIONS(4332), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4330), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -481462,70 +479909,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [283863] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282105] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5878), 1, + STATE(5838), 1, sym_comment, - ACTIONS(815), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - aux_sym__unquoted_in_list_token1, - ACTIONS(817), 23, + ACTIONS(4336), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4334), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [283906] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282148] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(10084), 1, - anon_sym_DOT2, - STATE(5879), 1, + STATE(5839), 1, sym_comment, - STATE(6042), 1, - sym_path, - STATE(6410), 1, - sym_cell_path, - ACTIONS(997), 28, + ACTIONS(4034), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4032), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -481543,31 +479987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [283955] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282191] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(5818), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10087), 1, - anon_sym_DOT2, - ACTIONS(10089), 1, - aux_sym_unquoted_token2, - STATE(5880), 1, + STATE(5840), 1, sym_comment, - ACTIONS(1005), 28, + ACTIONS(4418), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4416), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -481585,34 +480026,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [284004] = 5, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(8863), 1, - aux_sym_unquoted_token3, - STATE(5881), 1, + STATE(5841), 1, sym_comment, - ACTIONS(823), 30, - anon_sym_RBRACK, + ACTIONS(1221), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1223), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -481626,30 +480067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [284049] = 7, + [282277] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5882), 1, + STATE(5842), 1, sym_comment, - STATE(6497), 1, - sym_cell_path, - ACTIONS(979), 28, + ACTIONS(1305), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1303), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -481667,16 +480104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [284098] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282320] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5883), 1, + STATE(5843), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4340), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4370), 30, + ACTIONS(4338), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -481707,15 +480145,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284141] = 4, + [282363] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5884), 1, + STATE(5844), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4344), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4374), 30, + ACTIONS(4342), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -481746,15 +480184,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284184] = 4, + [282406] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5885), 1, + STATE(5845), 1, sym_comment, - ACTIONS(4380), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4378), 30, + ACTIONS(909), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -481785,15 +480223,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284227] = 4, + [282449] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5886), 1, + STATE(5846), 1, + sym_comment, + ACTIONS(1383), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1381), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [282492] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5847), 1, sym_comment, - ACTIONS(4384), 2, + ACTIONS(4472), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4382), 30, + ACTIONS(4470), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -481824,19 +480301,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284270] = 6, + [282535] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5887), 1, - sym_comment, - STATE(6045), 1, - aux_sym_cell_path_repeat1, - STATE(6400), 1, - sym_path, - ACTIONS(977), 2, - anon_sym_DOT2, + ACTIONS(951), 1, sym__entry_separator, - ACTIONS(975), 28, + ACTIONS(10035), 1, + anon_sym_DOT2, + ACTIONS(10037), 1, + aux_sym_unquoted_token2, + ACTIONS(10039), 1, + aux_sym__immediate_decimal_token1, + STATE(5848), 1, + sym_comment, + ACTIONS(949), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -481865,12 +480343,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [284317] = 4, + [282584] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5849), 1, + sym_comment, + ACTIONS(1272), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1270), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [282627] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5888), 1, + STATE(5850), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(855), 9, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -481878,9 +480395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - ACTIONS(809), 23, + aux_sym__unquoted_in_list_token7, + ACTIONS(857), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -481904,20 +480421,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [284360] = 4, + [282670] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5851), 1, + sym_comment, + ACTIONS(877), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [282715] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5889), 1, + STATE(5852), 1, sym_comment, - ACTIONS(1261), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1259), 30, - anon_sym_RBRACK, + ACTIONS(1280), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1278), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481943,20 +480500,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [284403] = 4, + [282758] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(5890), 1, + ACTIONS(9242), 1, + anon_sym_bit_DASHand, + ACTIONS(9244), 1, + anon_sym_bit_DASHxor, + ACTIONS(9246), 1, + anon_sym_bit_DASHor, + ACTIONS(9248), 1, + anon_sym_and, + ACTIONS(9250), 1, + anon_sym_xor, + ACTIONS(9252), 1, + anon_sym_or, + STATE(5853), 1, sym_comment, - ACTIONS(1230), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1228), 30, - anon_sym_RBRACK, + ACTIONS(8940), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(8942), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9230), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9236), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9240), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9232), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9234), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9228), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [282827] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5854), 1, + sym_comment, + ACTIONS(1223), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1221), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [282870] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5855), 1, + sym_comment, + ACTIONS(1427), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1425), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -481982,26 +480630,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [284446] = 4, + [282913] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5891), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5856), 1, sym_comment, - ACTIONS(6826), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6829), 30, - anon_sym_SEMI, + STATE(5929), 1, + aux_sym_cell_path_repeat1, + STATE(6321), 1, + sym_path, + ACTIONS(903), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482019,73 +480671,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [284489] = 4, - ACTIONS(105), 1, + aux_sym__unquoted_in_list_token1, + [282962] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5892), 1, + ACTIONS(9958), 1, + aux_sym__immediate_decimal_token2, + STATE(5857), 1, sym_comment, - ACTIONS(4388), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4386), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(815), 9, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(817), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284532] = 4, - ACTIONS(105), 1, + [283007] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5893), 1, + ACTIONS(10041), 1, + aux_sym_unquoted_token5, + STATE(5858), 1, sym_comment, - ACTIONS(1407), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1405), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1191), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1193), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482099,15 +480752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [284575] = 4, + [283052] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5894), 1, + STATE(5859), 1, sym_comment, - ACTIONS(1311), 2, + ACTIONS(3806), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1309), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482138,26 +480791,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284618] = 4, + [283095] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5895), 1, + ACTIONS(10043), 1, + aux_sym__immediate_decimal_token2, + STATE(5860), 1, sym_comment, - ACTIONS(4392), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4390), 30, - anon_sym_SEMI, + ACTIONS(3806), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(3804), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482175,32 +480830,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [284661] = 7, + aux_sym__unquoted_in_list_token1, + [283140] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5896), 1, + STATE(5861), 1, sym_comment, - STATE(6538), 1, - sym_cell_path, - ACTIONS(997), 28, + ACTIONS(1351), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1349), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482218,31 +480868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [284710] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [283183] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5897), 1, + STATE(5862), 1, sym_comment, - STATE(6045), 1, - aux_sym_cell_path_repeat1, - STATE(6400), 1, - sym_path, - ACTIONS(975), 28, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482260,17 +480907,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [284759] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [283226] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5842), 1, + ACTIONS(1257), 1, + anon_sym_DASH, + ACTIONS(10045), 1, anon_sym_DOT2, - ACTIONS(5844), 1, - aux_sym_unquoted_token6, - STATE(5898), 1, + STATE(5863), 1, + sym_comment, + ACTIONS(1253), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(1255), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 22, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283275] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5864), 1, sym_comment, - ACTIONS(861), 8, + ACTIONS(815), 9, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -482279,7 +480965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(863), 22, + aux_sym__unquoted_in_list_token7, + ACTIONS(817), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -482287,6 +480974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -482302,26 +480990,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [284806] = 4, + [283318] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5899), 1, + STATE(5865), 1, sym_comment, - ACTIONS(4396), 2, + ACTIONS(1423), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4394), 30, + ACTIONS(1421), 30, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283361] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9964), 1, + aux_sym__unquoted_in_list_token7, + STATE(5866), 1, + sym_comment, + ACTIONS(877), 30, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482332,6 +481059,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -482339,30 +481068,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [284849] = 5, + aux_sym__unquoted_in_list_token1, + [283406] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10091), 1, - aux_sym__immediate_decimal_token2, - STATE(5900), 1, + STATE(5867), 1, sym_comment, - ACTIONS(3836), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(3834), 29, + ACTIONS(1343), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1341), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482380,16 +481106,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [284894] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [283449] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5901), 1, + STATE(5868), 1, sym_comment, - ACTIONS(4400), 2, + ACTIONS(1284), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4398), 30, + ACTIONS(1282), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283492] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5869), 1, + sym_comment, + ACTIONS(4265), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4263), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482420,15 +481186,97 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284937] = 4, + [283535] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5902), 1, + ACTIONS(905), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5823), 1, + aux_sym_cell_path_repeat1, + STATE(5870), 1, sym_comment, - ACTIONS(4408), 2, + STATE(6321), 1, + sym_path, + ACTIONS(903), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [283584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10045), 1, + anon_sym_DOT2, + STATE(5871), 1, + sym_comment, + ACTIONS(1054), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1056), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283629] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5872), 1, + sym_comment, + ACTIONS(4382), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4406), 30, + ACTIONS(4380), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482459,12 +481307,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [284980] = 4, + [283672] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5903), 1, + STATE(5873), 1, sym_comment, - ACTIONS(1098), 11, + ACTIONS(877), 13, sym_identifier, anon_sym_GT, anon_sym_in, @@ -482476,11 +481324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1100), 21, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -482498,15 +481346,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [285023] = 4, + [283715] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5904), 1, + STATE(5874), 1, + sym_comment, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283758] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5875), 1, + sym_comment, + ACTIONS(1385), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283801] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5876), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1321), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 30, + ACTIONS(1319), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482537,15 +481463,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285066] = 4, + [283844] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5905), 1, + STATE(5877), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10049), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283891] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5878), 1, + sym_comment, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [283934] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5879), 1, sym_comment, - ACTIONS(4412), 2, + ACTIONS(4354), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4410), 30, + ACTIONS(4352), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482576,15 +481582,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285109] = 4, + [283977] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5906), 1, + STATE(5880), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4366), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4414), 30, + ACTIONS(4364), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482615,57 +481621,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285152] = 7, - ACTIONS(105), 1, + [284020] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_DOT2, - ACTIONS(10089), 1, - aux_sym_unquoted_token2, - ACTIONS(10093), 1, - aux_sym__immediate_decimal_token1, - STATE(5907), 1, + ACTIONS(9968), 1, + aux_sym__immediate_decimal_token2, + STATE(5881), 1, sym_comment, - ACTIONS(1005), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(807), 9, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(809), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [285201] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [284065] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5908), 1, + STATE(5882), 1, + sym_comment, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10049), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 28, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [284110] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5883), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(4492), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 30, + ACTIONS(4490), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482696,15 +481740,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285244] = 4, + [284153] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5909), 1, + STATE(5884), 1, sym_comment, - ACTIONS(4420), 2, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4418), 30, + ACTIONS(1054), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482735,54 +481779,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285287] = 4, + [284196] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5910), 1, + STATE(5885), 1, sym_comment, - ACTIONS(4424), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4422), 30, + ACTIONS(1387), 30, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [284239] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5945), 1, + anon_sym_DOT2, + ACTIONS(5947), 1, + aux_sym_unquoted_token6, + STATE(5886), 1, + sym_comment, + ACTIONS(877), 8, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [285330] = 4, + [284286] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5911), 1, + STATE(5887), 1, sym_comment, - ACTIONS(4430), 2, + ACTIONS(4305), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4428), 30, + ACTIONS(4303), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -482813,28 +481898,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285373] = 5, + [284329] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10080), 1, - aux_sym__immediate_decimal_token2, - STATE(5912), 1, + STATE(5888), 1, sym_comment, - ACTIONS(2988), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2986), 29, + ACTIONS(1431), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1429), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [284372] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5889), 1, + sym_comment, + ACTIONS(4392), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4390), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -482852,13 +481974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [285418] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [284415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5913), 1, + STATE(5890), 1, sym_comment, - ACTIONS(1113), 11, + ACTIONS(1082), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -482870,7 +481993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1115), 21, + ACTIONS(1084), 21, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT2, @@ -482892,36 +482015,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [285461] = 5, - ACTIONS(3), 1, + [284458] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10095), 1, - anon_sym_QMARK2, - STATE(5914), 1, + STATE(5891), 1, sym_comment, - ACTIONS(1054), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10049), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10051), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(10053), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1056), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(1391), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -482932,17 +482055,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [285506] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [284509] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10095), 1, - anon_sym_QMARK2, - STATE(5915), 1, + ACTIONS(10055), 1, + sym_filesize_unit, + ACTIONS(10057), 1, + sym_duration_unit, + STATE(5892), 1, sym_comment, - ACTIONS(1054), 12, + ACTIONS(1054), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -482953,8 +482080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, ACTIONS(1056), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -482972,211 +482099,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [285551] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5916), 1, - sym_comment, - ACTIONS(4460), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4458), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [285594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5917), 1, - sym_comment, - ACTIONS(889), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(891), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [285637] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5918), 1, - sym_comment, - ACTIONS(4468), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4466), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [285680] = 4, + [284556] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5919), 1, + STATE(5893), 1, sym_comment, - ACTIONS(4472), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4470), 30, + ACTIONS(1387), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [285723] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(10061), 1, - aux_sym__immediate_decimal_token2, - STATE(5920), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(2996), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [285768] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [284599] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5921), 1, + STATE(5894), 1, sym_comment, - ACTIONS(1315), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1313), 30, + ACTIONS(1191), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -483207,15 +482177,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [285811] = 4, + [284642] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + aux_sym__immediate_decimal_token2, + STATE(5895), 1, + sym_comment, + ACTIONS(855), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(857), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [284687] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5922), 1, + STATE(5896), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(4396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4474), 30, + ACTIONS(4394), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483246,27 +482256,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285854] = 4, + [284730] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5923), 1, + STATE(5897), 1, sym_comment, - ACTIONS(1228), 6, + ACTIONS(1177), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1230), 26, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1179), 19, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -483282,29 +482295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [285897] = 4, + [284773] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(5924), 1, + ACTIONS(944), 1, + sym__entry_separator, + ACTIONS(10061), 1, + anon_sym_DOT2, + STATE(6321), 1, + sym_path, + STATE(5898), 2, sym_comment, - ACTIONS(4488), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4486), 30, - anon_sym_SEMI, + aux_sym_cell_path_repeat1, + ACTIONS(942), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -483322,17 +482335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [285940] = 4, + aux_sym__unquoted_in_list_token1, + [284820] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5925), 1, + STATE(5899), 1, sym_comment, - ACTIONS(4046), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4044), 30, + ACTIONS(1266), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483363,15 +482375,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [285983] = 4, + [284863] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5926), 1, + STATE(5900), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(4400), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 30, + ACTIONS(4398), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483402,54 +482414,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286026] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1315), 1, - sym__entry_separator, - STATE(5927), 1, - sym_comment, - ACTIONS(1313), 31, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [286069] = 4, + [284906] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5928), 1, + STATE(5901), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1098), 30, + ACTIONS(1266), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483480,15 +482453,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286112] = 4, + [284949] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5929), 1, + STATE(5902), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4408), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4320), 30, + ACTIONS(4406), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483519,15 +482492,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286155] = 4, + [284992] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5930), 1, + STATE(5903), 1, sym_comment, - ACTIONS(1280), 2, + ACTIONS(4414), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1278), 30, + ACTIONS(4412), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483558,54 +482531,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286198] = 4, - ACTIONS(3), 1, + [285035] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5931), 1, + STATE(5904), 1, sym_comment, - ACTIONS(844), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(846), 23, + ACTIONS(4457), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4455), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [286241] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [285078] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5932), 1, + STATE(5905), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(4464), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4311), 30, + ACTIONS(4462), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483636,15 +482609,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286284] = 4, + [285121] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5933), 1, + STATE(5906), 1, sym_comment, - ACTIONS(4309), 2, + ACTIONS(4476), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4307), 30, + ACTIONS(4474), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483675,54 +482648,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286327] = 4, - ACTIONS(105), 1, + [285164] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5934), 1, + ACTIONS(10064), 1, + anon_sym_DOT2, + ACTIONS(10067), 1, + aux_sym__immediate_decimal_token2, + STATE(5907), 1, sym_comment, - ACTIONS(4305), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4303), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(846), 9, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(848), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286370] = 4, + [285211] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5935), 1, + STATE(5908), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(4480), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4299), 30, + ACTIONS(4478), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483753,15 +482728,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286413] = 4, + [285254] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5936), 1, + STATE(5909), 1, sym_comment, - ACTIONS(4297), 2, + ACTIONS(4484), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4295), 30, + ACTIONS(4482), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483792,15 +482767,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286456] = 4, + [285297] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5937), 1, + STATE(5910), 1, sym_comment, - ACTIONS(1276), 2, + ACTIONS(4088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1274), 30, + ACTIONS(4086), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -483831,14 +482806,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286499] = 5, + [285340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10097), 1, - anon_sym_QMARK2, - STATE(5938), 1, + STATE(5911), 1, sym_comment, - ACTIONS(1054), 11, + ACTIONS(1086), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -483850,10 +482823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1056), 20, + ACTIONS(1088), 21, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -483871,31 +482845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [286544] = 8, + [285383] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - ACTIONS(10101), 1, - anon_sym_RBRACK, - STATE(5877), 1, - sym_path, - STATE(5939), 1, + STATE(5912), 1, sym_comment, - STATE(6535), 1, - sym_cell_path, - ACTIONS(10099), 27, + ACTIONS(4092), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4090), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -483913,134 +482882,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [286595] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [285426] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5940), 1, + STATE(5913), 1, sym_comment, - ACTIONS(1115), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1113), 30, - anon_sym_SEMI, + ACTIONS(807), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token7, + ACTIONS(809), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [286638] = 5, - ACTIONS(3), 1, + [285469] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10097), 1, - anon_sym_QMARK2, - STATE(5941), 1, + STATE(5914), 1, sym_comment, - ACTIONS(1054), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1056), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(10073), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [286683] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5942), 1, - sym_comment, - ACTIONS(1035), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(10047), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1391), 8, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [286726] = 4, + [285526] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5943), 1, + STATE(5915), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4074), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4269), 30, + ACTIONS(4072), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484071,93 +483008,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286769] = 4, - ACTIONS(105), 1, + [285569] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5944), 1, + ACTIONS(9958), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10075), 1, + anon_sym_DOT2, + STATE(5916), 1, sym_comment, - ACTIONS(4260), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4258), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(815), 9, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(817), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286812] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5945), 1, - sym_comment, - ACTIONS(1113), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1115), 20, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [286855] = 4, + [285616] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5946), 1, + STATE(5917), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(1253), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4244), 30, + ACTIONS(1251), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484188,15 +483088,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286898] = 4, + [285659] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5947), 1, + STATE(5918), 1, sym_comment, - ACTIONS(4242), 2, + ACTIONS(4078), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4240), 30, + ACTIONS(4076), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484227,15 +483127,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286941] = 4, + [285702] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5948), 1, + STATE(5919), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(1193), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4236), 30, + ACTIONS(1191), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484266,20 +483166,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [286984] = 4, + [285745] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5949), 1, + ACTIONS(1193), 1, + sym__entry_separator, + ACTIONS(10078), 1, + aux_sym_unquoted_token5, + STATE(5920), 1, sym_comment, - ACTIONS(1327), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1325), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1191), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -484305,15 +483206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [287027] = 4, + [285790] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5950), 1, + STATE(5921), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(1309), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4228), 30, + ACTIONS(1307), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484344,65 +483245,228 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287070] = 4, + [285833] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5951), 1, + STATE(5922), 1, sym_comment, - ACTIONS(4226), 2, + ACTIONS(1276), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4224), 30, + ACTIONS(1274), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [285876] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10080), 1, + anon_sym_QMARK2, + STATE(5923), 1, + sym_comment, + ACTIONS(1070), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1072), 19, anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [285921] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10080), 1, + anon_sym_QMARK2, + STATE(5924), 1, + sym_comment, + ACTIONS(1070), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287113] = 4, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1072), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [285966] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10082), 1, + anon_sym_DOT2, + ACTIONS(10084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10086), 1, + aux_sym_unquoted_token2, + STATE(5925), 1, + sym_comment, + ACTIONS(949), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(951), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286015] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5952), 1, + STATE(5926), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(1376), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4220), 30, + ACTIONS(1374), 30, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286058] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10021), 1, + aux_sym__immediate_decimal_token2, + STATE(5927), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2998), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -484420,28 +483484,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287156] = 4, + aux_sym__unquoted_in_list_token1, + [286103] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5953), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5856), 1, + sym_path, + STATE(5928), 1, sym_comment, - ACTIONS(4202), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4200), 30, - anon_sym_SEMI, + STATE(6525), 1, + sym_cell_path, + ACTIONS(966), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -484459,28 +483526,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287199] = 4, + aux_sym__unquoted_in_list_token1, + [286152] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5954), 1, + ACTIONS(975), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + STATE(5929), 1, sym_comment, - ACTIONS(4196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4194), 30, - anon_sym_SEMI, + STATE(6321), 1, + sym_path, + ACTIONS(973), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -484498,17 +483568,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287242] = 4, + aux_sym__unquoted_in_list_token1, + [286201] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10088), 1, + anon_sym_DOT2, + STATE(5930), 1, + sym_comment, + ACTIONS(877), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_duration_unit, + [286246] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5955), 1, + STATE(5931), 1, sym_comment, - ACTIONS(4192), 2, + ACTIONS(4152), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4190), 30, + ACTIONS(4150), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484539,54 +483648,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287285] = 4, + [286289] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5956), 1, + STATE(5932), 1, sym_comment, - ACTIONS(4178), 2, + ACTIONS(1439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4176), 30, + ACTIONS(1437), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287328] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286332] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5957), 1, + STATE(5933), 1, sym_comment, - ACTIONS(4174), 2, + ACTIONS(4166), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4172), 30, + ACTIONS(4164), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484617,10 +483726,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287371] = 4, + [286375] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5958), 1, + STATE(5934), 1, sym_comment, ACTIONS(4170), 2, ts_builtin_sym_end, @@ -484656,54 +483765,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287414] = 4, + [286418] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5959), 1, + STATE(5935), 1, sym_comment, - ACTIONS(4160), 2, + ACTIONS(1435), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4158), 30, + ACTIONS(1433), 30, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287457] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286461] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5960), 1, + STATE(5936), 1, sym_comment, - ACTIONS(4148), 2, + ACTIONS(9979), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4146), 30, + ACTIONS(9977), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484734,15 +483843,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287500] = 4, + [286504] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5961), 1, + STATE(5937), 1, sym_comment, - ACTIONS(4144), 2, + ACTIONS(1272), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4142), 30, + ACTIONS(1270), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484773,15 +483882,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287543] = 4, + [286547] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5962), 1, + STATE(5938), 1, + sym_comment, + ACTIONS(931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(929), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286590] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5939), 1, sym_comment, - ACTIONS(4140), 2, + ACTIONS(1439), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4138), 30, + ACTIONS(1437), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484812,26 +483960,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287586] = 4, + [286633] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(5963), 1, + ACTIONS(911), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5856), 1, + sym_path, + STATE(5940), 1, sym_comment, - ACTIONS(4136), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4134), 30, - anon_sym_SEMI, + STATE(6553), 1, + sym_cell_path, + ACTIONS(909), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -484849,28 +484001,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287629] = 4, + aux_sym__unquoted_in_list_token1, + [286682] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(5964), 1, + STATE(5941), 1, sym_comment, - ACTIONS(4128), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4126), 30, + ACTIONS(10049), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10053), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10069), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 14, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [286735] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5942), 1, + sym_comment, + ACTIONS(1086), 12, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1088), 20, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [286778] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(935), 1, + sym__entry_separator, + ACTIONS(10090), 1, + anon_sym_DOT2, + STATE(5870), 1, + sym_path, + STATE(5943), 1, + sym_comment, + STATE(6339), 1, + sym_cell_path, + ACTIONS(933), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -484888,17 +484126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [287672] = 4, + aux_sym__unquoted_in_list_token1, + [286827] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5965), 1, + STATE(5944), 1, sym_comment, - ACTIONS(4124), 2, + ACTIONS(4488), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4122), 30, + ACTIONS(4486), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -484929,132 +484166,93 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287715] = 4, - ACTIONS(3), 1, + [286870] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5966), 1, + STATE(5945), 1, sym_comment, - ACTIONS(815), 9, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(817), 23, + ACTIONS(1427), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1425), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [287758] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5967), 1, - sym_comment, - ACTIONS(1307), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1305), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [287801] = 4, - ACTIONS(3), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [286913] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(5968), 1, + STATE(5946), 1, sym_comment, - ACTIONS(1098), 12, - sym_identifier, - anon_sym_GT, + ACTIONS(4328), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4326), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1100), 20, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [287844] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [286956] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5969), 1, + STATE(5947), 1, sym_comment, - ACTIONS(4120), 2, + ACTIONS(1431), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4118), 30, + ACTIONS(1429), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -485085,15 +484283,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287887] = 4, + [286999] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5970), 1, + STATE(5948), 1, sym_comment, - ACTIONS(4116), 2, + ACTIONS(4174), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4114), 30, + ACTIONS(4172), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -485124,15 +484322,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287930] = 4, + [287042] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5971), 1, + STATE(5949), 1, sym_comment, - ACTIONS(4107), 2, + ACTIONS(4178), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4105), 30, + ACTIONS(4176), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -485163,15 +484361,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [287973] = 4, + [287085] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5972), 1, + STATE(5950), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(1435), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3888), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -485202,20 +484400,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [288016] = 7, + [287128] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5973), 1, + ACTIONS(10027), 1, + aux_sym__immediate_decimal_token2, + STATE(5951), 1, sym_comment, - STATE(6506), 1, - sym_cell_path, - ACTIONS(1001), 28, + ACTIONS(2959), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(2957), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -485224,6 +484419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -485244,20 +484440,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [288065] = 4, + [287173] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, - sym__entry_separator, - STATE(5974), 1, + STATE(5952), 1, sym_comment, - ACTIONS(990), 31, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 30, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -485283,30 +484479,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [288108] = 7, + [287216] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5975), 1, + STATE(5953), 1, sym_comment, - STATE(6534), 1, - sym_cell_path, - ACTIONS(990), 28, + ACTIONS(4388), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4386), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -485324,13 +484516,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [288157] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287259] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5954), 1, + sym_comment, + ACTIONS(4370), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4368), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287302] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5955), 1, + sym_comment, + ACTIONS(4070), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4068), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287345] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5976), 1, + STATE(5956), 1, sym_comment, - ACTIONS(807), 9, + ACTIONS(815), 9, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -485338,9 +484609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - ACTIONS(809), 23, + ACTIONS(817), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -485364,15 +484635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [288200] = 4, + [287388] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5977), 1, + STATE(5957), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(4186), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 30, + ACTIONS(4184), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -485403,16 +484674,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [288243] = 5, + [287431] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(10095), 1, + anon_sym_DOT2, + ACTIONS(10097), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10099), 1, sym__entry_separator, - ACTIONS(9930), 1, - aux_sym__unquoted_in_list_token7, - STATE(5978), 1, + ACTIONS(10101), 1, + aux_sym__unquoted_in_list_token2, + STATE(5958), 1, sym_comment, - ACTIONS(861), 30, + ACTIONS(10093), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -485433,8 +484708,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -485443,30 +484716,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [288288] = 7, + [287480] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5979), 1, + STATE(5959), 1, sym_comment, - STATE(6546), 1, - sym_cell_path, - ACTIONS(967), 28, + ACTIONS(6524), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6527), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -485484,24 +484753,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [288337] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287523] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(927), 1, sym__entry_separator, - ACTIONS(10082), 1, + ACTIONS(10023), 1, anon_sym_DOT2, - STATE(5877), 1, + ACTIONS(10105), 1, + anon_sym_RBRACK, + STATE(5856), 1, sym_path, - STATE(5980), 1, + STATE(5960), 1, sym_comment, - STATE(6552), 1, + STATE(6543), 1, sym_cell_path, - ACTIONS(971), 28, + ACTIONS(10103), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -485527,24 +484798,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [288386] = 5, + [287574] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5981), 1, + STATE(5961), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1351), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 28, + ACTIONS(1349), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -485567,70 +484837,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [288431] = 5, + [287617] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(10106), 1, - aux_sym_unquoted_token5, - STATE(5982), 1, + STATE(5962), 1, sym_comment, - ACTIONS(1193), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(4199), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4197), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [288476] = 7, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287660] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5877), 1, - sym_path, - STATE(5983), 1, + STATE(5963), 1, sym_comment, - STATE(6604), 1, - sym_cell_path, - ACTIONS(909), 28, + ACTIONS(4426), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4424), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -485648,99 +484913,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [288525] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287703] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5984), 1, + STATE(5964), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(4203), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(4201), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [288568] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287746] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5985), 1, + STATE(5965), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(990), 30, + ACTIONS(929), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [288611] = 7, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [287789] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(919), 1, sym__entry_separator, - ACTIONS(10082), 1, + ACTIONS(10023), 1, anon_sym_DOT2, - STATE(5877), 1, + STATE(5856), 1, sym_path, - STATE(5986), 1, + STATE(5966), 1, sym_comment, - STATE(6614), 1, + STATE(6564), 1, sym_cell_path, - ACTIONS(1033), 28, + ACTIONS(917), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -485769,84 +485035,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [288660] = 17, - ACTIONS(105), 1, + [287838] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10120), 1, - anon_sym_bit_DASHand, - ACTIONS(10122), 1, - anon_sym_bit_DASHxor, - ACTIONS(10124), 1, - anon_sym_bit_DASHor, - ACTIONS(10126), 1, - anon_sym_and, - ACTIONS(10128), 1, - anon_sym_xor, - ACTIONS(10130), 1, - anon_sym_or, - STATE(5987), 1, + STATE(5967), 1, sym_comment, - ACTIONS(1411), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(1217), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10116), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10118), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [288729] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5988), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1219), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -485860,40 +485074,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [288772] = 16, + [287881] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10120), 1, - anon_sym_bit_DASHand, ACTIONS(10122), 1, - anon_sym_bit_DASHxor, + anon_sym_bit_DASHand, ACTIONS(10124), 1, - anon_sym_bit_DASHor, + anon_sym_bit_DASHxor, ACTIONS(10126), 1, - anon_sym_and, + anon_sym_bit_DASHor, ACTIONS(10128), 1, + anon_sym_and, + ACTIONS(10130), 1, anon_sym_xor, - STATE(5989), 1, + ACTIONS(10132), 1, + anon_sym_or, + STATE(5968), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(9801), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(9803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, ACTIONS(10110), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(10116), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10118), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10118), 2, + ACTIONS(10120), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_or, ACTIONS(10112), 4, anon_sym_in, anon_sym_not_DASHin, @@ -485911,205 +485126,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [288839] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5990), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [288882] = 15, + [287950] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10120), 1, + ACTIONS(10134), 1, anon_sym_bit_DASHand, - ACTIONS(10122), 1, - anon_sym_bit_DASHxor, - ACTIONS(10124), 1, - anon_sym_bit_DASHor, - ACTIONS(10126), 1, - anon_sym_and, - STATE(5991), 1, + STATE(5969), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(10051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10116), 2, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10118), 2, + ACTIONS(10073), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_xor, - anon_sym_or, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [288947] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(5992), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1391), 7, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [288990] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(10120), 1, - anon_sym_bit_DASHand, - ACTIONS(10122), 1, anon_sym_bit_DASHxor, - ACTIONS(10124), 1, anon_sym_bit_DASHor, - STATE(5993), 1, - sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10116), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10118), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 5, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10108), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [289053] = 8, + [288009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1003), 1, - anon_sym_SEMI, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(4836), 1, - sym_cell_path, - STATE(5994), 1, + STATE(5970), 1, sym_comment, - STATE(7150), 1, - sym_path, - ACTIONS(9898), 7, + ACTIONS(807), 9, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token6, aux_sym__unquoted_in_list_token1, - ACTIONS(10132), 21, + ACTIONS(809), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -486117,6 +485196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -486127,19 +485207,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [289104] = 4, + [288052] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(5995), 1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(10136), 1, + anon_sym_DOT2, + STATE(5971), 1, + sym_comment, + ACTIONS(1054), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [288097] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5972), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486170,103 +485291,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289147] = 13, + [288140] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10120), 1, + ACTIONS(10134), 1, anon_sym_bit_DASHand, - ACTIONS(10122), 1, + ACTIONS(10138), 1, anon_sym_bit_DASHxor, - STATE(5996), 1, + STATE(5973), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(10051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10116), 2, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10118), 2, + ACTIONS(10073), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 6, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 6, anon_sym_SEMI, anon_sym_PIPE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10108), 6, + ACTIONS(10069), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [289208] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10136), 1, - anon_sym_DOT2, - STATE(5997), 1, - sym_comment, - ACTIONS(1102), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289253] = 4, + [288201] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5998), 1, + STATE(5974), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1288), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486297,15 +485378,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289296] = 4, + [288244] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5975), 1, + sym_comment, + ACTIONS(855), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(857), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [288287] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(5999), 1, + STATE(5976), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1343), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1341), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486336,101 +485456,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289339] = 12, - ACTIONS(105), 1, + [288330] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10120), 1, - anon_sym_bit_DASHand, - STATE(6000), 1, + STATE(5977), 1, sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(894), 9, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10116), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10118), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289398] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(6001), 1, - sym_comment, - ACTIONS(1315), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1313), 30, - anon_sym_SEMI, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + aux_sym__unquoted_in_list_token1, + ACTIONS(896), 23, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [289441] = 4, + [288373] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6002), 1, + STATE(5978), 1, sym_comment, - ACTIONS(1007), 2, + ACTIONS(1276), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1005), 30, + ACTIONS(1274), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -486461,182 +485534,103 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [289484] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(6003), 1, - sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289527] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(6004), 1, - sym_comment, - ACTIONS(1413), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10116), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10118), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1411), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289584] = 4, + [288416] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6005), 1, + STATE(5979), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1280), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1278), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [288459] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10134), 1, anon_sym_bit_DASHand, + ACTIONS(10138), 1, anon_sym_bit_DASHxor, + ACTIONS(10140), 1, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289627] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(6006), 1, + STATE(5980), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(10051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10116), 2, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10114), 4, + ACTIONS(10073), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 20, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 5, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10069), 6, anon_sym_GT, - anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289678] = 4, + [288522] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6007), 1, + STATE(5981), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486667,15 +485661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289721] = 4, + [288565] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6008), 1, + STATE(5982), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486706,24 +485700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289764] = 4, + [288608] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6009), 1, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(5983), 1, sym_comment, - ACTIONS(1252), 6, + ACTIONS(877), 6, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1254), 26, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + sym_filesize_unit, + ACTIONS(879), 25, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -486745,68 +485739,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289807] = 4, + sym_duration_unit, + [288653] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6010), 1, + STATE(5984), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(4422), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(4420), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289850] = 6, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [288696] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(6011), 1, + STATE(5985), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10114), 4, + ACTIONS(10051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 24, + ACTIONS(1391), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -486825,18 +485821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289897] = 4, + [288745] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(6012), 1, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(8851), 1, + aux_sym_unquoted_token3, + STATE(5986), 1, sym_comment, - ACTIONS(1265), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1263), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(827), 30, + anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -486864,75 +485861,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [289940] = 10, + [288790] = 15, ACTIONS(105), 1, anon_sym_POUND, - STATE(6013), 1, + ACTIONS(10134), 1, + anon_sym_bit_DASHand, + ACTIONS(10138), 1, + anon_sym_bit_DASHxor, + ACTIONS(10140), 1, + anon_sym_bit_DASHor, + ACTIONS(10142), 1, + anon_sym_and, + STATE(5987), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(10051), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10116), 2, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10112), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10114), 4, + ACTIONS(10073), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10047), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [289995] = 7, + [288855] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6014), 1, + STATE(5988), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10114), 4, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -486951,15 +485950,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290044] = 4, + [288898] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6015), 1, + STATE(5989), 1, + sym_comment, + ACTIONS(4217), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4215), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [288941] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5990), 1, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1363), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1263), 30, + ACTIONS(1361), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -486990,39 +486028,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290087] = 9, + [288984] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6016), 1, + STATE(5991), 1, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10104), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10110), 2, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10116), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10114), 4, + anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10108), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -487034,15 +486067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290140] = 4, + [289027] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6017), 1, + STATE(5992), 1, sym_comment, - ACTIONS(1409), 2, + ACTIONS(1370), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1247), 30, + ACTIONS(1368), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -487073,15 +486106,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290183] = 4, + [289070] = 16, ACTIONS(105), 1, anon_sym_POUND, - STATE(6018), 1, + ACTIONS(10134), 1, + anon_sym_bit_DASHand, + ACTIONS(10138), 1, + anon_sym_bit_DASHxor, + ACTIONS(10140), 1, + anon_sym_bit_DASHor, + ACTIONS(10142), 1, + anon_sym_and, + ACTIONS(10144), 1, + anon_sym_xor, + STATE(5993), 1, sym_comment, - ACTIONS(1307), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1305), 30, + ACTIONS(10049), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10051), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10053), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10073), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_or, + ACTIONS(10047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [289137] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(5994), 1, + sym_comment, + ACTIONS(1084), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1082), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -487112,19 +486196,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [290226] = 5, + [289180] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(9097), 1, - aux_sym_unquoted_token3, - STATE(6019), 1, + STATE(5995), 1, sym_comment, - ACTIONS(823), 30, - anon_sym_DOLLAR, + ACTIONS(1389), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1387), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -487152,26 +486235,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290271] = 4, + [289223] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(6020), 1, + ACTIONS(915), 1, + sym__entry_separator, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5856), 1, + sym_path, + STATE(5996), 1, sym_comment, - ACTIONS(992), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(990), 30, - anon_sym_SEMI, + STATE(6561), 1, + sym_cell_path, + ACTIONS(913), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -487189,56 +486276,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [290314] = 4, + aux_sym__unquoted_in_list_token1, + [289272] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(6021), 1, + ACTIONS(10134), 1, + anon_sym_bit_DASHand, + ACTIONS(10138), 1, + anon_sym_bit_DASHxor, + ACTIONS(10140), 1, + anon_sym_bit_DASHor, + ACTIONS(10142), 1, + anon_sym_and, + ACTIONS(10144), 1, + anon_sym_xor, + ACTIONS(10146), 1, + anon_sym_or, + STATE(5997), 1, sym_comment, - ACTIONS(1356), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1354), 30, + ACTIONS(1391), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(1393), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10051), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10073), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [290357] = 4, + [289341] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6022), 1, + STATE(5998), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1389), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -487269,37 +486368,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290400] = 4, + [289384] = 10, ACTIONS(105), 1, anon_sym_POUND, - STATE(6023), 1, + STATE(5999), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1393), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(10049), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10051), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10053), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10071), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10069), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1391), 10, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -487308,15 +486413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290443] = 4, + [289439] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6024), 1, + STATE(6000), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1359), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 30, + ACTIONS(1357), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -487347,27 +486452,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290486] = 7, + [289482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_DASH, - ACTIONS(10136), 1, - anon_sym_DOT2, - STATE(6025), 1, + STATE(6001), 1, sym_comment, - ACTIONS(1245), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(1247), 5, + ACTIONS(1209), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1409), 22, + ACTIONS(1211), 26, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -487389,26 +486491,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290535] = 5, + [289525] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(5692), 1, - aux_sym_unquoted_token6, - STATE(6026), 1, + STATE(6002), 1, sym_comment, - ACTIONS(861), 30, + ACTIONS(4378), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4376), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -487419,8 +486521,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -487428,31 +486528,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [290580] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [289568] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10140), 1, - anon_sym_DOT2, - ACTIONS(10142), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10144), 1, - sym__entry_separator, - ACTIONS(10146), 1, - aux_sym__unquoted_in_list_token2, - STATE(6027), 1, + STATE(6003), 1, sym_comment, - ACTIONS(10138), 28, + ACTIONS(3931), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3929), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -487470,55 +486567,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [289611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6004), 1, + sym_comment, + ACTIONS(894), 9, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym__unquoted_in_list_token1, - [290629] = 4, + aux_sym__unquoted_in_list_token7, + ACTIONS(896), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [289654] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6028), 1, + STATE(6005), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(1088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1332), 30, + ACTIONS(1086), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [290672] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [289697] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6029), 1, + STATE(6006), 1, sym_comment, - ACTIONS(1395), 2, + ACTIONS(1335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1393), 30, + ACTIONS(1333), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -487549,21 +486686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290715] = 5, + [289740] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6030), 1, + ACTIONS(911), 1, + sym__entry_separator, + STATE(6007), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(909), 31, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1245), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1247), 28, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487589,146 +486725,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [290760] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(6031), 1, - sym_comment, - ACTIONS(861), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 25, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [290805] = 4, + [289783] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6032), 1, + STATE(6008), 1, sym_comment, - ACTIONS(1284), 2, + ACTIONS(1331), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1282), 30, + ACTIONS(1329), 30, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [290848] = 17, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [289826] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10162), 1, - anon_sym_bit_DASHand, - ACTIONS(10164), 1, - anon_sym_bit_DASHxor, - ACTIONS(10166), 1, - anon_sym_bit_DASHor, - ACTIONS(10168), 1, - anon_sym_and, - ACTIONS(10170), 1, - anon_sym_xor, - ACTIONS(10172), 1, - anon_sym_or, - STATE(6033), 1, + STATE(6009), 1, sym_comment, - ACTIONS(9825), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9827), 2, + ACTIONS(1335), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(10150), 2, + ACTIONS(1333), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(10156), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10158), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10160), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10152), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10154), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10148), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [290917] = 4, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [289869] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6034), 1, + STATE(6010), 1, sym_comment, - ACTIONS(1104), 2, + ACTIONS(4233), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1102), 30, + ACTIONS(4231), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -487759,59 +486842,73 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [290960] = 4, + [289912] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(6035), 1, + ACTIONS(9185), 1, + anon_sym_bit_DASHand, + ACTIONS(9187), 1, + anon_sym_bit_DASHxor, + ACTIONS(9189), 1, + anon_sym_bit_DASHor, + ACTIONS(9191), 1, + anon_sym_and, + ACTIONS(9193), 1, + anon_sym_xor, + ACTIONS(9195), 1, + anon_sym_or, + STATE(6011), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 30, + ACTIONS(8878), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(8880), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(9173), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(9179), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9181), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9183), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9175), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(9177), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(9171), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [291003] = 4, + [289981] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(6036), 1, + ACTIONS(829), 1, + sym__entry_separator, + ACTIONS(9054), 1, + aux_sym_unquoted_token3, + STATE(6012), 1, sym_comment, - ACTIONS(1280), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1278), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(827), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -487837,93 +486934,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291046] = 4, + [290026] = 17, ACTIONS(105), 1, anon_sym_POUND, - STATE(6037), 1, + ACTIONS(10162), 1, + anon_sym_bit_DASHand, + ACTIONS(10164), 1, + anon_sym_bit_DASHxor, + ACTIONS(10166), 1, + anon_sym_bit_DASHor, + ACTIONS(10168), 1, + anon_sym_and, + ACTIONS(10170), 1, + anon_sym_xor, + ACTIONS(10172), 1, + anon_sym_or, + STATE(6013), 1, sym_comment, - ACTIONS(1276), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1274), 30, + ACTIONS(9746), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(9748), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(10150), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(10156), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10158), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10160), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10152), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10154), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10148), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [291089] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(6038), 1, - sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291132] = 4, + [290095] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6039), 1, + STATE(6014), 1, sym_comment, - ACTIONS(1323), 2, + ACTIONS(1339), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1321), 30, + ACTIONS(1337), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -487954,33 +487025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291175] = 6, - ACTIONS(3), 1, + [290138] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(10174), 1, - anon_sym_DOT2, - STATE(6040), 1, + STATE(6015), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(6524), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6527), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1341), 28, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - sym_filesize_unit, - ACTIONS(863), 24, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -487991,185 +487062,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_duration_unit, - [291222] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9782), 1, - aux_sym__immediate_decimal_token2, - STATE(6041), 1, - sym_comment, - ACTIONS(807), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291267] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - sym__entry_separator, - ACTIONS(10082), 1, - anon_sym_DOT2, - STATE(5887), 1, - aux_sym_cell_path_repeat1, - STATE(6042), 1, - sym_comment, - STATE(6400), 1, - sym_path, - ACTIONS(903), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [291316] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9778), 1, - aux_sym__immediate_decimal_token2, - STATE(6043), 1, - sym_comment, - ACTIONS(815), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(817), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291361] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [290183] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10176), 1, - aux_sym__immediate_decimal_token2, - STATE(6044), 1, + STATE(6016), 1, sym_comment, - ACTIONS(844), 9, - anon_sym_DOLLAR, + ACTIONS(1347), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1345), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(846), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291406] = 6, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [290226] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(931), 1, sym__entry_separator, - ACTIONS(10178), 1, + ACTIONS(10023), 1, anon_sym_DOT2, - STATE(6400), 1, + STATE(5856), 1, sym_path, - STATE(6045), 2, + STATE(6017), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 28, + STATE(6608), 1, + sym_cell_path, + ACTIONS(929), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -488198,97 +487146,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [291453] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10181), 1, - anon_sym_DOT2, - ACTIONS(10184), 1, - aux_sym__immediate_decimal_token2, - STATE(6046), 1, - sym_comment, - ACTIONS(835), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(837), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291500] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9782), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10186), 1, - anon_sym_DOT2, - STATE(6047), 1, - sym_comment, - ACTIONS(807), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [291547] = 4, + [290275] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6048), 1, + STATE(6018), 1, sym_comment, - ACTIONS(1311), 2, + ACTIONS(1331), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1309), 30, + ACTIONS(1329), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -488319,70 +487185,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291590] = 17, + [290318] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9167), 1, + STATE(6019), 1, + sym_comment, + ACTIONS(1187), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1185), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(9169), 1, anon_sym_bit_DASHxor, - ACTIONS(9171), 1, anon_sym_bit_DASHor, - ACTIONS(9173), 1, anon_sym_and, - ACTIONS(9175), 1, anon_sym_xor, - ACTIONS(9177), 1, anon_sym_or, - STATE(6049), 1, + [290361] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6020), 1, sym_comment, - ACTIONS(8952), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(8954), 2, + ACTIONS(1309), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9155), 2, + ACTIONS(1307), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9161), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9163), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9165), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9157), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9159), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9153), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [291659] = 5, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [290404] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6050), 1, + STATE(6021), 1, + sym_comment, + ACTIONS(1219), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1217), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [290447] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6022), 1, sym_comment, - ACTIONS(6826), 2, + ACTIONS(1268), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6829), 2, + ACTIONS(1266), 30, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1305), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, @@ -488411,15 +487341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291704] = 4, + [290490] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6051), 1, + STATE(6023), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(4404), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2986), 30, + ACTIONS(4402), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -488450,15 +487380,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [291747] = 4, + [290533] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6052), 1, + STATE(6024), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(4261), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3834), 30, + ACTIONS(4259), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -488489,71 +487419,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [291790] = 17, + [290576] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9196), 1, - anon_sym_bit_DASHand, - ACTIONS(9198), 1, - anon_sym_bit_DASHxor, - ACTIONS(9200), 1, - anon_sym_bit_DASHor, - ACTIONS(9202), 1, - anon_sym_and, - ACTIONS(9204), 1, - anon_sym_xor, - ACTIONS(9206), 1, - anon_sym_or, - STATE(6053), 1, + ACTIONS(1253), 1, + sym__entry_separator, + ACTIONS(10136), 1, + anon_sym_DOT2, + STATE(6025), 1, sym_comment, - ACTIONS(9106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(9108), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(9184), 2, + ACTIONS(1251), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1255), 28, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9190), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9192), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9194), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9186), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(9188), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9182), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [291859] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [290623] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1311), 1, - sym__entry_separator, - STATE(6054), 1, + STATE(6026), 1, sym_comment, - ACTIONS(1309), 30, - anon_sym_RBRACK, + ACTIONS(1268), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1266), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -488579,31 +487499,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291901] = 4, - ACTIONS(3), 1, + [290666] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6055), 1, + STATE(6027), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1219), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1217), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1276), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488617,33 +487538,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [291943] = 7, + [290709] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10189), 1, + ACTIONS(961), 1, + anon_sym_SEMI, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(6056), 1, + STATE(4742), 1, + sym_cell_path, + STATE(6028), 1, sym_comment, - STATE(6225), 1, + STATE(7163), 1, sym_path, - STATE(6639), 1, - sym_cell_path, - ACTIONS(979), 8, + ACTIONS(9863), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(981), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(10174), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -488658,192 +487581,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [291991] = 6, - ACTIONS(3), 1, + [290760] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10192), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10194), 1, - aux_sym__immediate_decimal_token2, - STATE(6057), 1, + STATE(6029), 1, sym_comment, - ACTIONS(2986), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, + ACTIONS(4291), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4289), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292037] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [290803] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10196), 1, - anon_sym_DOT2, - STATE(6058), 1, + STATE(6030), 1, sym_comment, - STATE(6239), 1, - aux_sym_cell_path_repeat1, - STATE(6631), 1, - sym_path, - ACTIONS(975), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(977), 20, + ACTIONS(4374), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4372), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292085] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [290846] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6059), 1, + STATE(6031), 1, sym_comment, - STATE(6096), 1, - sym_path, - STATE(6711), 1, - sym_cell_path, - ACTIONS(1001), 7, + ACTIONS(1347), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1345), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1003), 21, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [290889] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6032), 1, + sym_comment, + ACTIONS(1339), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1337), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292133] = 5, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [290932] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(9097), 1, - aux_sym_unquoted_token3, - STATE(6060), 1, + ACTIONS(10178), 1, + anon_sym_QMARK2, + STATE(6033), 1, sym_comment, - ACTIONS(823), 29, + ACTIONS(1070), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [292177] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1387), 1, - sym__entry_separator, - STATE(6061), 1, - sym_comment, - ACTIONS(1385), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(1072), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -488854,15 +487777,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [292219] = 4, + [290977] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6034), 1, + sym_comment, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291020] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6062), 1, + ACTIONS(10178), 1, + anon_sym_QMARK2, + STATE(6035), 1, sym_comment, - ACTIONS(1252), 11, + ACTIONS(1070), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -488874,7 +487835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1254), 20, + ACTIONS(1072), 20, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT2, @@ -488895,52 +487856,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [292261] = 4, + [291065] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6063), 1, + ACTIONS(10180), 1, + anon_sym_DOT2, + ACTIONS(10182), 1, + aux_sym__unquoted_in_list_token7, + STATE(6036), 1, sym_comment, - ACTIONS(1332), 6, - anon_sym_GT, + ACTIONS(877), 8, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1334), 25, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [292303] = 4, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [291112] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1284), 1, - sym__entry_separator, - STATE(6064), 1, + STATE(6037), 1, sym_comment, - ACTIONS(1282), 30, + ACTIONS(1223), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1221), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -488971,72 +487936,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292345] = 7, - ACTIONS(3), 1, + [291155] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6065), 1, + STATE(6038), 1, sym_comment, - STATE(6096), 1, - sym_path, - STATE(6658), 1, - sym_cell_path, - ACTIONS(990), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 21, + ACTIONS(4313), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4311), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292393] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291198] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1356), 1, - sym__entry_separator, - STATE(6066), 1, + STATE(6039), 1, sym_comment, - ACTIONS(1354), 30, - anon_sym_RBRACK, + ACTIONS(1082), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1084), 20, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489047,26 +488014,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [292435] = 4, + [291241] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6040), 1, + sym_comment, + ACTIONS(4317), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4315), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291284] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6067), 1, + STATE(6041), 1, sym_comment, - ACTIONS(1325), 6, + ACTIONS(1185), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1327), 25, + ACTIONS(1187), 26, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -489088,19 +488092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292477] = 4, + [291327] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, - sym__entry_separator, - STATE(6068), 1, + STATE(6042), 1, sym_comment, - ACTIONS(1389), 30, - anon_sym_RBRACK, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489126,93 +488131,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292519] = 4, + [291370] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1407), 1, + ACTIONS(968), 1, sym__entry_separator, - STATE(6069), 1, + ACTIONS(10184), 1, + anon_sym_DOT2, + STATE(5870), 1, + sym_path, + STATE(6043), 1, sym_comment, - ACTIONS(1405), 30, + STATE(6342), 1, + sym_cell_path, + ACTIONS(966), 28, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [292561] = 7, - ACTIONS(3), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [291419] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6070), 1, + STATE(6044), 1, sym_comment, - STATE(6182), 1, - aux_sym_cell_path_repeat1, - STATE(6540), 1, - sym_path, - ACTIONS(975), 7, + ACTIONS(4250), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4248), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(977), 21, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291462] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6045), 1, + sym_comment, + ACTIONS(1359), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1357), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292609] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291505] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1351), 1, sym__entry_separator, - STATE(6071), 1, + STATE(6046), 1, sym_comment, - ACTIONS(1397), 30, + ACTIONS(1349), 31, + anon_sym_SEMI, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -489243,31 +488290,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292651] = 4, + [291548] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6047), 1, + sym_comment, + ACTIONS(4301), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4299), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291591] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6048), 1, + sym_comment, + ACTIONS(4257), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4255), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291634] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(961), 1, sym__entry_separator, - STATE(6072), 1, + ACTIONS(10023), 1, + anon_sym_DOT2, + STATE(5856), 1, + sym_path, + STATE(6049), 1, sym_comment, - ACTIONS(1350), 30, + STATE(6541), 1, + sym_cell_path, + ACTIONS(959), 28, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [291683] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(10187), 1, + anon_sym_DOT2, + STATE(6050), 1, + sym_comment, + ACTIONS(877), 6, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_filesize_unit, + ACTIONS(879), 24, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489281,100 +488450,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292693] = 7, - ACTIONS(3), 1, + sym_duration_unit, + [291730] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6073), 1, + STATE(6051), 1, sym_comment, - STATE(6096), 1, - sym_path, - STATE(6790), 1, - sym_cell_path, - ACTIONS(909), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(911), 21, + ACTIONS(4324), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4322), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [292741] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6074), 1, - sym_comment, - STATE(6096), 1, - sym_path, - STATE(6660), 1, - sym_cell_path, - ACTIONS(979), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(981), 21, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291773] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6052), 1, + sym_comment, + ACTIONS(2959), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2957), 30, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292789] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [291816] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6053), 1, + sym_comment, + ACTIONS(1321), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1319), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [291859] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, + ACTIONS(10189), 1, anon_sym_DOT2, - STATE(6075), 1, + STATE(6054), 1, sym_comment, - STATE(6099), 1, + STATE(6194), 1, sym_path, - STATE(6733), 1, + STATE(6519), 1, sym_cell_path, - ACTIONS(997), 8, + ACTIONS(966), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -489383,7 +488588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(999), 20, + ACTIONS(968), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -489404,31 +488609,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [292837] = 4, - ACTIONS(105), 1, + [291907] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1403), 1, - sym__entry_separator, - STATE(6076), 1, + STATE(6055), 1, sym_comment, - ACTIONS(1401), 30, - anon_sym_RBRACK, + ACTIONS(1425), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1427), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489442,20 +488647,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292879] = 5, + [291949] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1253), 1, + anon_sym_DASH_DASH, + ACTIONS(1257), 1, + anon_sym_DASH, + ACTIONS(10192), 1, + anon_sym_DOT2, + STATE(6056), 1, + sym_comment, + ACTIONS(1255), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1385), 17, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [291999] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, - STATE(6077), 1, + ACTIONS(1370), 1, + sym__entry_separator, + STATE(6057), 1, sym_comment, - ACTIONS(823), 29, - anon_sym_DOLLAR, + ACTIONS(1368), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -489481,12 +488727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [292923] = 4, + [292041] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6078), 1, + STATE(6058), 1, sym_comment, - ACTIONS(889), 9, + ACTIONS(807), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -489496,7 +488742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token6, - ACTIONS(891), 22, + ACTIONS(809), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -489519,151 +488765,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [292965] = 7, + [292083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, - anon_sym_DOT2, - ACTIONS(10202), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10204), 1, - aux_sym_unquoted_token2, - STATE(6079), 1, + STATE(6059), 1, sym_comment, - ACTIONS(1005), 7, + ACTIONS(1303), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [293013] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10206), 1, - anon_sym_DOT2, - STATE(6080), 1, - sym_comment, - STATE(6090), 1, - sym_path, - STATE(6643), 1, - sym_cell_path, - ACTIONS(979), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(981), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_LT2, + ACTIONS(1305), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [293061] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6081), 1, - sym_comment, - ACTIONS(844), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(846), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [293103] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1348), 1, - sym__entry_separator, - STATE(6082), 1, - sym_comment, - ACTIONS(1346), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489677,31 +488803,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293145] = 4, - ACTIONS(105), 1, + [292125] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1344), 1, - sym__entry_separator, - STATE(6083), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + STATE(6060), 1, sym_comment, - ACTIONS(1342), 30, - anon_sym_RBRACK, + ACTIONS(1191), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1193), 25, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489715,109 +488842,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293187] = 5, - ACTIONS(105), 1, + [292169] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10209), 1, - anon_sym_QMARK2, - STATE(6084), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(10196), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6061), 1, + sym_comment, + STATE(6252), 1, + aux_sym_cell_path_repeat1, + STATE(6617), 1, + sym_path, + ACTIONS(903), 8, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym__, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [293231] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(10209), 1, - anon_sym_QMARK2, - STATE(6085), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1054), 28, + aux_sym_unquoted_token1, + ACTIONS(905), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [293275] = 4, + [292217] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(6086), 1, + ACTIONS(10212), 1, + anon_sym_bit_DASHand, + ACTIONS(10214), 1, + anon_sym_bit_DASHxor, + ACTIONS(10216), 1, + anon_sym_bit_DASHor, + ACTIONS(10218), 1, + anon_sym_and, + ACTIONS(10220), 1, + anon_sym_xor, + ACTIONS(10222), 1, + anon_sym_or, + STATE(6062), 1, sym_comment, - ACTIONS(1193), 30, + ACTIONS(1391), 2, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(10200), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10210), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10202), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10198), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [292285] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6063), 1, + sym_comment, + ACTIONS(1329), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1331), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -489831,66 +488972,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293317] = 6, + [292327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6038), 1, - anon_sym_DOT2, - ACTIONS(6040), 1, - aux_sym_unquoted_token6, - STATE(6087), 1, - sym_comment, - ACTIONS(861), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(863), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [293363] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6088), 1, + STATE(6064), 1, sym_comment, - ACTIONS(1405), 6, + ACTIONS(1213), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1407), 25, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1215), 19, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -489906,31 +489010,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [293405] = 4, + [292369] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6089), 1, + ACTIONS(10224), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10226), 1, + aux_sym__immediate_decimal_token2, + STATE(6065), 1, sym_comment, - ACTIONS(815), 9, - anon_sym_DOLLAR, + ACTIONS(2998), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(817), 22, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -489940,62 +489046,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [293447] = 7, - ACTIONS(3), 1, + [292415] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6090), 1, + ACTIONS(10228), 1, + anon_sym_QMARK2, + STATE(6066), 1, sym_comment, - STATE(6246), 1, - aux_sym_cell_path_repeat1, - STATE(6540), 1, - sym_path, - ACTIONS(903), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(905), 21, + ACTIONS(1072), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1070), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [293495] = 4, + aux_sym__unquoted_in_list_token1, + [292459] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1340), 1, + ACTIONS(1423), 1, sym__entry_separator, - STATE(6091), 1, + STATE(6067), 1, sym_comment, - ACTIONS(1338), 30, + ACTIONS(1421), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -490026,28 +489127,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293537] = 4, + [292501] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6092), 1, + ACTIONS(10230), 1, + anon_sym_DOT2, + ACTIONS(10232), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10234), 1, + aux_sym__unquoted_in_list_token2, + STATE(6068), 1, sym_comment, - ACTIONS(807), 9, - anon_sym_DOLLAR, + ACTIONS(10093), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(809), 22, + aux_sym__unquoted_in_list_token1, + ACTIONS(10099), 21, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -490057,38 +489164,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [293579] = 4, - ACTIONS(105), 1, + [292549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1340), 1, - sym__entry_separator, - STATE(6093), 1, + STATE(6069), 1, sym_comment, - ACTIONS(1338), 30, - anon_sym_RBRACK, + ACTIONS(1381), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1383), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490102,31 +489206,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293621] = 4, - ACTIONS(3), 1, + [292591] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6094), 1, + ACTIONS(9373), 1, + aux_sym_unquoted_token3, + STATE(6070), 1, sym_comment, - ACTIONS(1321), 6, + ACTIONS(827), 30, + sym_identifier, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1323), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490140,14 +489244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293663] = 4, + [292633] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1435), 1, sym__entry_separator, - STATE(6095), 1, + STATE(6071), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1433), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -490178,18 +489282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293705] = 7, + [292675] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, + ACTIONS(6026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10236), 1, anon_sym_DOT2, - STATE(6070), 1, - aux_sym_cell_path_repeat1, - STATE(6096), 1, + ACTIONS(10238), 1, + aux_sym_unquoted_token2, + STATE(6072), 1, sym_comment, - STATE(6540), 1, - sym_path, - ACTIONS(903), 7, + ACTIONS(949), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -490197,7 +489301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(905), 21, + ACTIONS(951), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -490219,69 +489323,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [293753] = 17, - ACTIONS(105), 1, + [292723] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(10225), 1, - anon_sym_bit_DASHand, - ACTIONS(10227), 1, - anon_sym_bit_DASHxor, - ACTIONS(10229), 1, - anon_sym_bit_DASHor, - ACTIONS(10231), 1, - anon_sym_and, - ACTIONS(10233), 1, - anon_sym_xor, - ACTIONS(10235), 1, - anon_sym_or, - STATE(6097), 1, + STATE(6073), 1, sym_comment, - ACTIONS(1411), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10213), 2, + ACTIONS(1185), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10223), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10215), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10217), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1187), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [293821] = 6, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [292765] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(10061), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10237), 1, - anon_sym_DOT2, - STATE(6098), 1, + ACTIONS(10228), 1, + anon_sym_QMARK2, + STATE(6074), 1, sym_comment, - ACTIONS(2996), 28, + ACTIONS(1072), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1070), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -490310,33 +489400,33 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [293867] = 7, + [292809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, + ACTIONS(10240), 1, anon_sym_DOT2, - STATE(6058), 1, - aux_sym_cell_path_repeat1, - STATE(6099), 1, + STATE(6075), 1, sym_comment, - STATE(6631), 1, + STATE(6251), 1, sym_path, - ACTIONS(903), 8, + STATE(6641), 1, + sym_cell_path, + ACTIONS(933), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(905), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(935), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -490351,31 +489441,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [293915] = 4, + [292857] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1393), 1, sym__entry_separator, - STATE(6100), 1, + ACTIONS(10212), 1, + anon_sym_bit_DASHand, + ACTIONS(10214), 1, + anon_sym_bit_DASHxor, + ACTIONS(10216), 1, + anon_sym_bit_DASHor, + STATE(6076), 1, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(10200), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10210), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10202), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 5, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10198), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [292919] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6077), 1, + sym_comment, + ACTIONS(1319), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1321), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490389,82 +489527,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [293957] = 16, - ACTIONS(105), 1, + [292961] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(10225), 1, - anon_sym_bit_DASHand, - ACTIONS(10227), 1, - anon_sym_bit_DASHxor, - ACTIONS(10229), 1, - anon_sym_bit_DASHor, - ACTIONS(10231), 1, - anon_sym_and, - ACTIONS(10233), 1, - anon_sym_xor, - STATE(6101), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6078), 1, sym_comment, - ACTIONS(10213), 2, + STATE(6090), 1, + sym_path, + STATE(6669), 1, + sym_cell_path, + ACTIONS(10103), 7, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10223), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(10243), 21, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10215), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [294023] = 5, - ACTIONS(105), 1, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [293009] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_RBRACE, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, - STATE(6102), 1, + STATE(6079), 1, sym_comment, - ACTIONS(823), 29, - anon_sym_COMMA, + ACTIONS(1421), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1423), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490478,14 +489606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294067] = 4, + [293051] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1321), 1, sym__entry_separator, - STATE(6103), 1, + STATE(6080), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1319), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -490516,15 +489644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294109] = 4, + [293093] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6104), 1, + STATE(6081), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(2959), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(3888), 29, + ACTIONS(2957), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -490554,34 +489682,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [294151] = 4, - ACTIONS(3), 1, + [293135] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6105), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6082), 1, sym_comment, - ACTIONS(1259), 12, - sym_identifier, + ACTIONS(1387), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1261), 19, - anon_sym_DASH_DASH, - anon_sym_DOT2, + [293177] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6083), 1, + sym_comment, + ACTIONS(1387), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490592,29 +489755,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [294193] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [293219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6106), 1, + STATE(6084), 1, sym_comment, - ACTIONS(1228), 12, - sym_identifier, + ACTIONS(1270), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1230), 19, + ACTIONS(1272), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -490630,63 +489793,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [294235] = 15, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - ACTIONS(10225), 1, - anon_sym_bit_DASHand, - ACTIONS(10227), 1, - anon_sym_bit_DASHxor, - ACTIONS(10229), 1, - anon_sym_bit_DASHor, - ACTIONS(10231), 1, anon_sym_and, - STATE(6107), 1, + anon_sym_xor, + anon_sym_or, + [293261] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6085), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1437), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_LT2, + ACTIONS(1439), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10215), 4, + [293303] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, + STATE(6086), 1, + sym_comment, + ACTIONS(827), 29, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10217), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [294299] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [293347] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(6108), 1, + STATE(6087), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1387), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -490717,15 +489911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294341] = 4, + [293389] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6109), 1, + STATE(6088), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(3000), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(3834), 29, + ACTIONS(2998), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -490755,80 +489949,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [294383] = 14, + [293431] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1305), 1, sym__entry_separator, - ACTIONS(10225), 1, - anon_sym_bit_DASHand, - ACTIONS(10227), 1, - anon_sym_bit_DASHxor, - ACTIONS(10229), 1, - anon_sym_bit_DASHor, - STATE(6110), 1, + STATE(6089), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1303), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10223), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10215), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10217), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [294445] = 6, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [293473] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10240), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10242), 1, - aux_sym__immediate_decimal_token2, - STATE(6111), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, sym_comment, - ACTIONS(2996), 8, + STATE(6245), 1, + aux_sym_cell_path_repeat1, + STATE(6582), 1, + sym_path, + ACTIONS(903), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(905), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -490843,31 +490028,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [294491] = 4, - ACTIONS(3), 1, + [293521] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6112), 1, + ACTIONS(1309), 1, + sym__entry_separator, + STATE(6091), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1307), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1360), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490881,54 +490066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294533] = 6, - ACTIONS(105), 1, + [293563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(10244), 1, - sym_filesize_unit, - ACTIONS(10246), 1, - sym_duration_unit, - STATE(6113), 1, + STATE(6092), 1, sym_comment, - ACTIONS(1102), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1341), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1343), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [294579] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [293605] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1268), 1, sym__entry_separator, - STATE(6114), 1, + STATE(6093), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1266), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -490959,31 +490142,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294621] = 4, - ACTIONS(3), 1, + [293647] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6115), 1, + ACTIONS(1268), 1, + sym__entry_separator, + STATE(6094), 1, sym_comment, - ACTIONS(1317), 6, + ACTIONS(1266), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1319), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -490997,14 +490180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294663] = 4, + [293689] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(1359), 1, sym__entry_separator, - STATE(6116), 1, + STATE(6095), 1, sym_comment, - ACTIONS(1332), 30, + ACTIONS(1357), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -491035,18 +490218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294705] = 7, + [293731] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10200), 1, + ACTIONS(10245), 1, anon_sym_DOT2, - ACTIONS(10204), 1, - aux_sym_unquoted_token2, - STATE(6117), 1, + STATE(6090), 1, + sym_path, + STATE(6096), 1, sym_comment, - ACTIONS(1005), 7, + STATE(6750), 1, + sym_cell_path, + ACTIONS(933), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -491054,7 +490237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 21, + ACTIONS(935), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -491076,18 +490259,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [294753] = 6, + [293779] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6097), 1, + sym_comment, + ACTIONS(1345), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1347), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [293821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6098), 1, + sym_comment, + ACTIONS(855), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(857), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [293863] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(879), 1, sym__entry_separator, - ACTIONS(10248), 1, - anon_sym_DOT2, - ACTIONS(10252), 1, - aux_sym__immediate_decimal_token2, - STATE(6118), 1, + STATE(6099), 1, sym_comment, - ACTIONS(3489), 28, + ACTIONS(877), 30, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -491108,6 +490363,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -491116,99 +490373,101 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [294799] = 13, + [293905] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(10225), 1, + ACTIONS(10212), 1, anon_sym_bit_DASHand, - ACTIONS(10227), 1, + ACTIONS(10214), 1, anon_sym_bit_DASHxor, - STATE(6119), 1, + ACTIONS(10216), 1, + anon_sym_bit_DASHor, + ACTIONS(10218), 1, + anon_sym_and, + STATE(6100), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(10200), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10219), 2, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, + ACTIONS(10208), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10223), 2, + ACTIONS(10210), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10215), 4, + ACTIONS(1391), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10202), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10217), 4, + ACTIONS(10204), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10211), 6, + ACTIONS(10198), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [294859] = 4, + [293969] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6120), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_DOT2, + ACTIONS(1355), 1, sym__entry_separator, - ACTIONS(2986), 29, - anon_sym_LBRACK, - anon_sym_COMMA, + STATE(6101), 1, + sym_comment, + ACTIONS(1353), 30, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [294901] = 4, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [294011] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1335), 1, sym__entry_separator, - STATE(6121), 1, + STATE(6102), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1333), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -491239,77 +490498,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [294943] = 12, + [294053] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1389), 1, sym__entry_separator, - ACTIONS(10225), 1, - anon_sym_bit_DASHand, - STATE(6122), 1, + STATE(6103), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1387), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10215), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [294095] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10192), 1, + anon_sym_DOT2, + STATE(6104), 1, + sym_comment, + ACTIONS(1054), 11, + sym_identifier, + anon_sym_GT, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1056), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10217), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [294139] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6105), 1, + sym_comment, + ACTIONS(1266), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1268), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 7, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [295001] = 6, + [294181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10254), 1, + ACTIONS(10247), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10256), 1, + ACTIONS(10249), 1, aux_sym__immediate_decimal_token2, - STATE(6123), 1, + STATE(6106), 1, sym_comment, - ACTIONS(2986), 8, + ACTIONS(2957), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2988), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(2959), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, @@ -491325,33 +490653,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [295047] = 6, + [294227] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6124), 1, + STATE(6107), 1, sym_comment, - STATE(6239), 1, - aux_sym_cell_path_repeat1, - STATE(6631), 1, - sym_path, - ACTIONS(975), 8, + ACTIONS(929), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(931), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [294269] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6108), 1, + sym_comment, + ACTIONS(894), 9, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, + sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(977), 21, + aux_sym_unquoted_token6, + ACTIONS(896), 22, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -491361,42 +490722,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [295093] = 8, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [294311] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_DASH_DASH, - ACTIONS(1249), 1, - anon_sym_DASH, - ACTIONS(10258), 1, - anon_sym_DOT2, - STATE(6125), 1, + ACTIONS(1253), 1, + sym__entry_separator, + STATE(6109), 1, sym_comment, - ACTIONS(1247), 10, + ACTIONS(1251), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1255), 28, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 17, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491407,14 +490765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [295143] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [294355] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(951), 1, sym__entry_separator, - STATE(6126), 1, + STATE(6110), 1, sym_comment, - ACTIONS(1325), 30, + ACTIONS(949), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -491445,19 +490806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295185] = 4, + [294397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6127), 1, + STATE(6111), 1, sym_comment, - ACTIONS(1313), 6, + ACTIONS(1274), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1315), 25, + ACTIONS(1276), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -491483,55 +490844,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295227] = 7, + [294439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6096), 1, - sym_path, - STATE(6128), 1, + STATE(6112), 1, sym_comment, - STATE(6811), 1, - sym_cell_path, - ACTIONS(1033), 7, + ACTIONS(1278), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1035), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1280), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [295275] = 4, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [294481] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(6129), 1, + STATE(6113), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1054), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -491562,60 +490920,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295317] = 11, + [294523] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1193), 1, sym__entry_separator, - STATE(6130), 1, + STATE(6114), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1191), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10223), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10215), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10217), 4, + anon_sym_RBRACE, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [295373] = 4, + [294565] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6131), 1, + ACTIONS(5947), 1, + aux_sym_unquoted_token6, + STATE(6115), 1, + sym_comment, + ACTIONS(877), 7, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [294609] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6116), 1, + sym_comment, + ACTIONS(1084), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1082), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [294651] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6117), 1, + sym_comment, + ACTIONS(3806), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(3804), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [294693] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6118), 1, sym_comment, - ACTIONS(1222), 12, + ACTIONS(1185), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -491625,8 +491090,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1224), 19, - anon_sym_DASH_DASH, + ACTIONS(1187), 20, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -491645,31 +491111,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [295415] = 4, - ACTIONS(105), 1, + [294735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1323), 1, - sym__entry_separator, - STATE(6132), 1, + STATE(6119), 1, sym_comment, - ACTIONS(1321), 30, - anon_sym_RBRACK, + ACTIONS(1368), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1370), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491683,113 +491149,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295457] = 7, - ACTIONS(3), 1, + [294777] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_DOLLAR, - ACTIONS(10258), 1, - anon_sym_DOT2, - STATE(6133), 1, - sym_comment, - ACTIONS(1247), 10, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(1393), 1, + sym__entry_separator, + ACTIONS(10212), 1, + anon_sym_bit_DASHand, + ACTIONS(10214), 1, + anon_sym_bit_DASHxor, + ACTIONS(10216), 1, + anon_sym_bit_DASHor, + ACTIONS(10218), 1, anon_sym_and, + ACTIONS(10220), 1, anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 18, + STATE(6120), 1, + sym_comment, + ACTIONS(10200), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10208), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10210), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(10202), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10198), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [295505] = 7, - ACTIONS(3), 1, + [294843] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6096), 1, - sym_path, - STATE(6134), 1, + STATE(6121), 1, sym_comment, - STATE(6757), 1, - sym_cell_path, - ACTIONS(10099), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10260), 21, + ACTIONS(1088), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1086), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [295553] = 4, - ACTIONS(105), 1, + aux_sym__unquoted_in_list_token1, + [294885] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(6135), 1, + STATE(6122), 1, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, + ACTIONS(1255), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491803,14 +491275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295595] = 4, + [294927] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1385), 1, sym__entry_separator, - STATE(6136), 1, + STATE(6123), 1, sym_comment, - ACTIONS(1005), 30, + ACTIONS(1255), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -491841,15 +491313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295637] = 4, + [294969] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(6137), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_DOT2, + ACTIONS(3167), 1, sym__entry_separator, - ACTIONS(2996), 29, + ACTIONS(10251), 1, + anon_sym_DOT2, + ACTIONS(10255), 1, + aux_sym__immediate_decimal_token2, + STATE(6124), 1, + sym_comment, + ACTIONS(3165), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -491858,7 +491333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -491879,35 +491353,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [295679] = 8, - ACTIONS(105), 1, + [295015] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(6138), 1, + STATE(6125), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1387), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10217), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 20, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491921,31 +491391,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295729] = 4, - ACTIONS(105), 1, + [295057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1360), 1, - sym__entry_separator, - STATE(6139), 1, + STATE(6126), 1, sym_comment, - ACTIONS(1358), 30, - anon_sym_RBRACK, + ACTIONS(1266), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1268), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491959,31 +491429,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295771] = 4, - ACTIONS(105), 1, + [295099] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym_unquoted_token3, - STATE(6140), 1, + STATE(6127), 1, sym_comment, - ACTIONS(823), 30, - sym_identifier, + ACTIONS(1387), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -491997,22 +491467,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295813] = 7, + [295141] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(10244), 1, + ACTIONS(10257), 1, sym_filesize_unit, - ACTIONS(10246), 1, + ACTIONS(10259), 1, sym_duration_unit, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(6141), 1, + STATE(6128), 1, sym_comment, - ACTIONS(10262), 27, + ACTIONS(1054), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -492038,70 +491507,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [295861] = 5, + [295187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, - aux_sym_unquoted_token6, - STATE(6142), 1, + STATE(6129), 1, sym_comment, - ACTIONS(861), 7, + ACTIONS(1387), 6, + anon_sym_GT, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [295905] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1319), 1, - sym__entry_separator, - STATE(6143), 1, - sym_comment, - ACTIONS(1317), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492115,12 +491545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [295947] = 4, + [295229] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6144), 1, + STATE(6130), 1, sym_comment, - ACTIONS(1189), 12, + ACTIONS(1217), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -492133,7 +491563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1191), 19, + ACTIONS(1219), 19, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_STAR_STAR, @@ -492153,39 +491583,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [295989] = 10, + [295271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6145), 1, + STATE(6131), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1387), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 15, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -492197,72 +491621,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296043] = 6, - ACTIONS(105), 1, + [295313] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2988), 1, - sym__entry_separator, - ACTIONS(10281), 1, + ACTIONS(10236), 1, + anon_sym_DOT2, + ACTIONS(10238), 1, + aux_sym_unquoted_token2, + ACTIONS(10261), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10283), 1, - aux_sym__immediate_decimal_token2, - STATE(6146), 1, + STATE(6132), 1, sym_comment, - ACTIONS(2986), 28, + ACTIONS(949), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(951), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [296089] = 5, - ACTIONS(105), 1, + [295361] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(6147), 1, + STATE(6133), 1, sym_comment, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 28, - anon_sym_RBRACK, + ACTIONS(1307), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1309), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492276,58 +491700,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296133] = 6, + [295403] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(10285), 1, + STATE(6134), 1, + sym_comment, + ACTIONS(10200), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10198), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 14, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295455] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10245), 1, anon_sym_DOT2, - ACTIONS(10287), 1, - aux_sym__immediate_decimal_token2, - STATE(6148), 1, + STATE(6090), 1, + sym_path, + STATE(6135), 1, sym_comment, - ACTIONS(2996), 28, + STATE(6707), 1, + sym_cell_path, + ACTIONS(929), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(931), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [296179] = 6, + [295503] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6136), 1, + sym_comment, + ACTIONS(1387), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295545] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(10287), 1, + ACTIONS(10212), 1, + anon_sym_bit_DASHand, + ACTIONS(10214), 1, + anon_sym_bit_DASHxor, + STATE(6137), 1, + sym_comment, + ACTIONS(10200), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10210), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10202), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10198), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [295605] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(10263), 1, + anon_sym_DOT2, + ACTIONS(10266), 1, aux_sym__immediate_decimal_token2, - ACTIONS(10289), 1, - aux_sym__immediate_decimal_token1, - STATE(6149), 1, + STATE(6138), 1, sym_comment, - ACTIONS(2996), 28, + ACTIONS(3165), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -492356,29 +491909,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [296225] = 4, + [295651] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6150), 1, + ACTIONS(1257), 1, + anon_sym_DASH, + STATE(6139), 1, sym_comment, - ACTIONS(1259), 11, - sym_identifier, + ACTIONS(1253), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(1255), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1261), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 22, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -492394,31 +491946,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [296267] = 4, - ACTIONS(105), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295697] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(6151), 1, + STATE(6140), 1, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, + ACTIONS(1387), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492432,29 +491987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296309] = 4, + [295739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6152), 1, + STATE(6141), 1, sym_comment, - ACTIONS(1252), 12, - sym_identifier, + ACTIONS(1387), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1254), 19, + ACTIONS(1389), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -492470,71 +492022,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [296351] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295781] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10291), 1, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(10021), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10268), 1, anon_sym_DOT2, - STATE(6153), 1, + STATE(6142), 1, sym_comment, - STATE(6225), 1, - sym_path, - STATE(6516), 1, - sym_cell_path, - ACTIONS(997), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(999), 20, + ACTIONS(2998), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [296399] = 5, + aux_sym__unquoted_in_list_token1, + [295827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym_unquoted_token5, - STATE(6154), 1, + STATE(6143), 1, sym_comment, - ACTIONS(1193), 12, - sym_identifier, + ACTIONS(1374), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1195), 18, + ACTIONS(1376), 25, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -492550,68 +492100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [296443] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10294), 1, - anon_sym_DOT2, - ACTIONS(10296), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10298), 1, - aux_sym__unquoted_in_list_token2, - STATE(6155), 1, - sym_comment, - ACTIONS(10138), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10144), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [296491] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295869] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1280), 1, sym__entry_separator, - STATE(6156), 1, + STATE(6144), 1, sym_comment, - ACTIONS(10219), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 24, + ACTIONS(1278), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -492631,31 +492141,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296537] = 4, - ACTIONS(105), 1, + [295911] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(6157), 1, + STATE(6145), 1, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, + ACTIONS(1387), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492669,42 +492179,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296579] = 10, + [295953] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(6158), 1, + ACTIONS(7904), 1, + aux_sym_unquoted_token3, + STATE(6146), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(827), 30, + sym_identifier, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10215), 4, - anon_sym_in, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10217), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [295995] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6147), 1, + sym_comment, + ACTIONS(1387), 6, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 10, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -492713,31 +492255,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296633] = 4, - ACTIONS(105), 1, + [296037] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(6159), 1, + STATE(6148), 1, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, + ACTIONS(1387), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492751,69 +492293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296675] = 6, + [296079] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(1431), 1, sym__entry_separator, - ACTIONS(10300), 1, - anon_sym_DOT2, - ACTIONS(10302), 1, - aux_sym__immediate_decimal_token2, - STATE(6160), 1, + STATE(6149), 1, sym_comment, - ACTIONS(3489), 28, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(1429), 30, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [296721] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - sym__entry_separator, - STATE(6161), 1, - sym_comment, - ACTIONS(10213), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10217), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1411), 22, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -492832,31 +492331,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296769] = 4, - ACTIONS(3), 1, + [296121] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6162), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6150), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1387), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1284), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -492870,33 +492369,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296811] = 7, + [296163] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, + ACTIONS(10196), 1, anon_sym_DOT2, - STATE(6096), 1, + STATE(6061), 1, sym_path, - STATE(6163), 1, + STATE(6151), 1, sym_comment, - STATE(6799), 1, + STATE(6830), 1, sym_cell_path, - ACTIONS(967), 7, + ACTIONS(933), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(969), 21, + aux_sym_unquoted_token1, + ACTIONS(935), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -492911,63 +492410,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [296859] = 4, - ACTIONS(105), 1, + [296211] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1265), 1, - sym__entry_separator, - STATE(6164), 1, + ACTIONS(10271), 1, + anon_sym_DOT2, + STATE(6617), 1, + sym_path, + STATE(6152), 2, sym_comment, - ACTIONS(1263), 30, - anon_sym_RBRACK, - anon_sym_GT, + aux_sym_cell_path_repeat1, + ACTIONS(942), 8, anon_sym_DASH, - anon_sym_in, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(944), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [296901] = 6, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [296257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1249), 1, - anon_sym_DASH, - STATE(6165), 1, + STATE(6153), 1, sym_comment, - ACTIONS(1245), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(1247), 5, + ACTIONS(1387), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1409), 22, + ACTIONS(1389), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -492989,38 +492488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296947] = 9, + [296299] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(6166), 1, + STATE(6154), 1, sym_comment, - ACTIONS(10213), 2, + ACTIONS(1387), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10219), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10221), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10217), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10211), 6, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 14, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -493032,82 +492526,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [296999] = 17, + [296341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - ACTIONS(10312), 1, - anon_sym_bit_DASHor, - ACTIONS(10314), 1, - anon_sym_and, - ACTIONS(10316), 1, - anon_sym_xor, - STATE(6167), 1, + STATE(6155), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1387), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 4, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(10279), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [297067] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1409), 1, - sym__entry_separator, - STATE(6168), 1, - sym_comment, - ACTIONS(1247), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493121,27 +492564,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [297109] = 5, + [296383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - STATE(6169), 1, + STATE(6156), 1, sym_comment, - ACTIONS(1193), 5, + ACTIONS(1221), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1195), 25, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1223), 20, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -493157,34 +492602,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [297153] = 8, + [296425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6170), 1, + STATE(6157), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1387), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1413), 21, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1389), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -493202,16 +492640,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [297203] = 6, + [296467] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10320), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10322), 1, - aux_sym__immediate_decimal_token2, - STATE(6171), 1, + STATE(6158), 1, + sym_comment, + ACTIONS(815), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token6, + ACTIONS(817), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [296509] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, + sym_path, + STATE(6159), 1, sym_comment, - ACTIONS(2996), 7, + STATE(6781), 1, + sym_cell_path, + ACTIONS(966), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -493219,7 +492697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, + ACTIONS(968), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -493227,7 +492705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -493242,43 +492719,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [297249] = 11, - ACTIONS(3), 1, + [296557] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6172), 1, + ACTIONS(1339), 1, + sym__entry_separator, + STATE(6160), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1337), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10273), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 11, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -493287,19 +492757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [297305] = 4, + [296599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6173), 1, + STATE(6161), 1, sym_comment, - ACTIONS(1393), 6, + ACTIONS(909), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1395), 25, + ACTIONS(911), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -493325,30 +492795,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [297347] = 7, + [296641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6174), 1, + STATE(6162), 1, sym_comment, - ACTIONS(10271), 2, + ACTIONS(1213), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 4, - anon_sym_GT, - anon_sym_DASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1413), 21, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1215), 20, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOT2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -493363,72 +492833,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [297395] = 4, - ACTIONS(105), 1, + [296683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1307), 1, - sym__entry_separator, - STATE(6175), 1, + STATE(6163), 1, sym_comment, - ACTIONS(1305), 30, - anon_sym_RBRACK, + ACTIONS(1221), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [297437] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1035), 1, - sym__entry_separator, - STATE(6176), 1, - sym_comment, - ACTIONS(1033), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + ACTIONS(1223), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493439,30 +492871,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [297479] = 5, + [296725] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6177), 1, + ACTIONS(10192), 1, + anon_sym_DOT2, + STATE(6164), 1, sym_comment, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 6, + ACTIONS(1054), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1413), 23, - anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1056), 18, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_mod, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -493478,39 +492910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [297523] = 9, - ACTIONS(3), 1, + [296769] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6178), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6165), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1387), 30, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10273), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1413), 19, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493524,64 +492948,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [297575] = 12, + [296811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6179), 1, + STATE(6166), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1217), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1219), 20, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 9, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [297633] = 7, + [296853] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10296), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10298), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(10324), 1, + ACTIONS(10245), 1, anon_sym_DOT2, - STATE(6180), 1, + STATE(6090), 1, + sym_path, + STATE(6167), 1, sym_comment, - ACTIONS(10138), 7, + STATE(6672), 1, + sym_cell_path, + ACTIONS(909), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -493589,7 +493005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10144), 21, + ACTIONS(911), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -493611,22 +493027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [297681] = 5, + [296901] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10057), 1, - aux_sym__unquoted_in_list_token7, - STATE(6181), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, + sym_path, + STATE(6168), 1, sym_comment, - ACTIONS(861), 7, + STATE(6697), 1, + sym_cell_path, + ACTIONS(10276), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(863), 23, + ACTIONS(10274), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -493634,7 +493054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -493645,260 +493064,271 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [297725] = 6, - ACTIONS(3), 1, + [296949] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10326), 1, - anon_sym_DOT2, - STATE(6540), 1, - sym_path, - STATE(6182), 2, + ACTIONS(2959), 1, + sym__entry_separator, + ACTIONS(10278), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10280), 1, + aux_sym__immediate_decimal_token2, + STATE(6169), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1017), 21, + ACTIONS(2957), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [297771] = 6, - ACTIONS(105), 1, + aux_sym__unquoted_in_list_token1, + [296995] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(10329), 1, + ACTIONS(6103), 1, anon_sym_DOT2, - ACTIONS(10332), 1, - aux_sym__immediate_decimal_token2, - STATE(6183), 1, + ACTIONS(6105), 1, + aux_sym_unquoted_token6, + STATE(6170), 1, sym_comment, - ACTIONS(3489), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(877), 8, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(879), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [297817] = 13, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [297041] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - STATE(6184), 1, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(6171), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 28, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, + anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 8, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [297877] = 14, + [297085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - STATE(6185), 1, + STATE(6172), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1054), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1056), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [297939] = 15, + [297127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - ACTIONS(10312), 1, - anon_sym_bit_DASHor, - STATE(6186), 1, + STATE(6173), 1, sym_comment, - ACTIONS(10267), 2, + ACTIONS(1209), 12, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10273), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1211), 19, + anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 6, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [297169] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, + sym_path, + STATE(6174), 1, + sym_comment, + STATE(6779), 1, + sym_cell_path, + ACTIONS(913), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(915), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [298003] = 4, - ACTIONS(3), 1, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297217] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6187), 1, + ACTIONS(1284), 1, + sym__entry_separator, + STATE(6175), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1282), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1356), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493912,31 +493342,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298045] = 4, - ACTIONS(3), 1, + [297259] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6188), 1, + ACTIONS(1383), 1, + sym__entry_separator, + STATE(6176), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1381), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1352), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493950,31 +493380,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298087] = 4, + [297301] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6189), 1, + ACTIONS(10282), 1, + anon_sym_DOT2, + STATE(6177), 1, sym_comment, - ACTIONS(1278), 6, - anon_sym_GT, + STATE(6251), 1, + sym_path, + STATE(6505), 1, + sym_cell_path, + ACTIONS(966), 7, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1280), 25, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(968), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297349] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(829), 1, + anon_sym_RBRACE, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, + STATE(6178), 1, + sym_comment, + ACTIONS(827), 29, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -493988,81 +493460,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298129] = 16, + [297393] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - ACTIONS(10312), 1, - anon_sym_bit_DASHor, - ACTIONS(10314), 1, - anon_sym_and, - STATE(6190), 1, + ACTIONS(10285), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10287), 1, + aux_sym__immediate_decimal_token2, + STATE(6179), 1, sym_comment, - ACTIONS(10267), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, + ACTIONS(2957), 8, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1413), 5, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - [298195] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1300), 1, - sym__entry_separator, - STATE(6191), 1, + STATE(6180), 1, sym_comment, - ACTIONS(1298), 30, - anon_sym_RBRACK, + ACTIONS(1349), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1351), 25, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494076,18 +493538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298237] = 7, + [297481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, + ACTIONS(10289), 1, anon_sym_DOT2, - STATE(6096), 1, + STATE(6582), 1, sym_path, - STATE(6192), 1, + STATE(6181), 2, sym_comment, - STATE(6828), 1, - sym_cell_path, - ACTIONS(10336), 7, + aux_sym_cell_path_repeat1, + ACTIONS(942), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -494095,7 +493556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10334), 21, + ACTIONS(944), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -494117,14 +493578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [298285] = 4, + [297527] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1395), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(6193), 1, + STATE(6182), 1, sym_comment, - ACTIONS(1393), 30, + ACTIONS(1387), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -494155,20 +493616,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298327] = 5, + [297569] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10292), 1, + anon_sym_DOT2, + STATE(6183), 1, + sym_comment, + STATE(6194), 1, + sym_path, + STATE(6514), 1, + sym_cell_path, + ACTIONS(933), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(935), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297617] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(6194), 1, + STATE(6184), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(1387), 30, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1247), 28, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494194,14 +493695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298371] = 4, + [297659] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6181), 1, + aux_sym_cell_path_repeat1, + STATE(6185), 1, + sym_comment, + STATE(6582), 1, + sym_path, + ACTIONS(973), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(975), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297705] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(1376), 1, sym__entry_separator, - STATE(6195), 1, + STATE(6186), 1, sym_comment, - ACTIONS(1294), 30, + ACTIONS(1374), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -494232,14 +493773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298413] = 4, + [297747] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1265), 1, + ACTIONS(1389), 1, sym__entry_separator, - STATE(6196), 1, + STATE(6187), 1, sym_comment, - ACTIONS(1263), 30, + ACTIONS(1387), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -494270,66 +493811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298455] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - ACTIONS(10312), 1, - anon_sym_bit_DASHor, - ACTIONS(10314), 1, - anon_sym_and, - ACTIONS(10316), 1, - anon_sym_xor, - ACTIONS(10338), 1, - anon_sym_or, - STATE(6197), 1, - sym_comment, - ACTIONS(10267), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10269), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(10279), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [298525] = 4, + [297789] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1331), 1, sym__entry_separator, - STATE(6198), 1, + STATE(6188), 1, sym_comment, - ACTIONS(1288), 30, + ACTIONS(1329), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -494360,14 +493849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298567] = 4, + [297831] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, + ACTIONS(3167), 1, sym__entry_separator, - STATE(6199), 1, + ACTIONS(10295), 1, + anon_sym_DOT2, + ACTIONS(10297), 1, + aux_sym__immediate_decimal_token2, + STATE(6189), 1, sym_comment, - ACTIONS(1065), 30, + ACTIONS(3165), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -494388,8 +493881,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -494398,19 +493889,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [298609] = 4, + [297877] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6200), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, + sym_path, + STATE(6190), 1, + sym_comment, + STATE(6787), 1, + sym_cell_path, + ACTIONS(917), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(919), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [297925] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6191), 1, sym_comment, - ACTIONS(1309), 6, + ACTIONS(1433), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1311), 25, + ACTIONS(1435), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -494436,107 +493968,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298651] = 4, - ACTIONS(105), 1, + [297967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - STATE(6201), 1, + STATE(6192), 1, sym_comment, - ACTIONS(1102), 30, - anon_sym_RBRACK, + ACTIONS(1353), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [298693] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - STATE(6202), 1, - sym_comment, - ACTIONS(861), 30, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1355), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [298735] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1280), 1, - sym__entry_separator, - STATE(6203), 1, - sym_comment, - ACTIONS(1278), 30, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -494550,14 +494006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298777] = 4, + [298009] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1276), 1, + ACTIONS(931), 1, sym__entry_separator, - STATE(6204), 1, + STATE(6193), 1, sym_comment, - ACTIONS(1274), 30, + ACTIONS(929), 30, anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, @@ -494588,74 +494044,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [298819] = 7, + [298051] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10340), 1, + ACTIONS(10196), 1, anon_sym_DOT2, - STATE(6090), 1, - sym_path, - STATE(6205), 1, + STATE(6194), 1, sym_comment, - STATE(6594), 1, - sym_cell_path, - ACTIONS(997), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(999), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [298867] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_DOT2, - STATE(6096), 1, + STATE(6217), 1, + aux_sym_cell_path_repeat1, + STATE(6617), 1, sym_path, - STATE(6206), 1, - sym_comment, - STATE(6682), 1, - sym_cell_path, - ACTIONS(997), 7, + ACTIONS(903), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(999), 21, + aux_sym_unquoted_token1, + ACTIONS(905), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -494670,37 +494085,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [298915] = 5, + [298099] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_DOT2, - STATE(6207), 1, + STATE(6195), 1, sym_comment, - ACTIONS(1102), 12, - sym_identifier, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1104), 18, - anon_sym_DASH_DASH, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1393), 15, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -494709,60 +494126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [298959] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10196), 1, - anon_sym_DOT2, - STATE(6099), 1, - sym_path, - STATE(6208), 1, - sym_comment, - STATE(6804), 1, - sym_cell_path, - ACTIONS(979), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(981), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [299007] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [298153] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9285), 1, - aux_sym_unquoted_token3, - STATE(6209), 1, + ACTIONS(1343), 1, + sym__entry_separator, + STATE(6196), 1, sym_comment, - ACTIONS(823), 30, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1341), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -494788,27 +494167,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299049] = 4, + [298195] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(6210), 1, + STATE(6197), 1, sym_comment, - ACTIONS(1305), 6, + ACTIONS(1391), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1307), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1393), 21, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -494826,36 +494209,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299091] = 4, + [298245] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6211), 1, + STATE(6198), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1340), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(1393), 11, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -494864,27 +494254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299133] = 4, + [298301] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6212), 1, + STATE(6199), 1, sym_comment, - ACTIONS(1338), 6, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1340), 25, + ACTIONS(1393), 21, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -494902,25 +494295,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299175] = 4, + [298349] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6213), 1, + STATE(6200), 1, sym_comment, - ACTIONS(1385), 6, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1387), 25, + ACTIONS(1393), 23, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -494940,26 +494334,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299217] = 4, + [298393] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6214), 1, + ACTIONS(10315), 1, + aux_sym_unquoted_token5, + STATE(6201), 1, sym_comment, - ACTIONS(1389), 6, + ACTIONS(1191), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1391), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1193), 19, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -494975,32 +494373,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [299259] = 4, + [298437] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6215), 1, + STATE(6202), 1, sym_comment, - ACTIONS(1397), 6, + ACTIONS(1391), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1399), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(1393), 19, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -495016,133 +494416,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299301] = 4, + [298489] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(6216), 1, + STATE(6203), 1, sym_comment, - ACTIONS(1189), 11, - sym_identifier, + ACTIONS(10299), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 9, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1191), 20, + [298547] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + sym__entry_separator, + STATE(6204), 1, + sym_comment, + ACTIONS(1177), 30, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT2, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [298589] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + STATE(6205), 1, + sym_comment, + ACTIONS(10299), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1393), 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [299343] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [298649] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(6217), 1, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + ACTIONS(10321), 1, + anon_sym_bit_DASHxor, + STATE(6206), 1, sym_comment, - ACTIONS(1193), 6, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1195), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1393), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [299385] = 4, + [298711] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(10257), 1, + sym_filesize_unit, + ACTIONS(10259), 1, + sym_duration_unit, + ACTIONS(10325), 1, + anon_sym_RBRACK, + STATE(6207), 1, + sym_comment, + ACTIONS(10323), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [298759] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(6218), 1, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + ACTIONS(10321), 1, + anon_sym_bit_DASHxor, + ACTIONS(10328), 1, + anon_sym_bit_DASHor, + STATE(6208), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1393), 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [298823] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10319), 1, anon_sym_bit_DASHand, + ACTIONS(10321), 1, anon_sym_bit_DASHxor, + ACTIONS(10328), 1, anon_sym_bit_DASHor, + ACTIONS(10330), 1, anon_sym_and, + STATE(6209), 1, + sym_comment, + ACTIONS(10299), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_xor, anon_sym_or, - [299427] = 4, + [298889] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6219), 1, + STATE(6210), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1429), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, + ACTIONS(1431), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -495168,31 +494773,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299469] = 4, + [298931] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(6220), 1, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + ACTIONS(10321), 1, + anon_sym_bit_DASHxor, + ACTIONS(10328), 1, + anon_sym_bit_DASHor, + ACTIONS(10330), 1, + anon_sym_and, + ACTIONS(10332), 1, + anon_sym_xor, + STATE(6211), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(992), 25, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [298999] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1347), 1, + sym__entry_separator, + STATE(6212), 1, + sym_comment, + ACTIONS(1345), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495206,31 +494862,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299511] = 4, - ACTIONS(3), 1, + [299041] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6221), 1, + ACTIONS(1427), 1, + sym__entry_separator, + STATE(6213), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1425), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495244,18 +494900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299553] = 7, + [299083] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, + ACTIONS(10232), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10234), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(10334), 1, anon_sym_DOT2, - STATE(6096), 1, - sym_path, - STATE(6222), 1, + STATE(6214), 1, sym_comment, - STATE(6822), 1, - sym_cell_path, - ACTIONS(971), 7, + ACTIONS(10093), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -495263,7 +494919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(973), 21, + ACTIONS(10099), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -495285,94 +494941,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [299601] = 4, + [299131] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6223), 1, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + ACTIONS(10321), 1, + anon_sym_bit_DASHxor, + ACTIONS(10328), 1, + anon_sym_bit_DASHor, + ACTIONS(10330), 1, + anon_sym_and, + ACTIONS(10332), 1, + anon_sym_xor, + ACTIONS(10336), 1, + anon_sym_or, + STATE(6215), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(10299), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10301), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10303), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1300), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10305), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(10311), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [299643] = 4, + [299201] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6224), 1, + ACTIONS(10182), 1, + aux_sym__unquoted_in_list_token7, + STATE(6216), 1, sym_comment, - ACTIONS(1294), 6, - anon_sym_GT, + ACTIONS(877), 7, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1296), 25, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [299685] = 7, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [299245] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, - anon_sym_DOT2, - STATE(6124), 1, + STATE(6152), 1, aux_sym_cell_path_repeat1, - STATE(6225), 1, + STATE(6217), 1, sym_comment, - STATE(6631), 1, + STATE(6617), 1, sym_path, - ACTIONS(903), 8, + ACTIONS(973), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -495381,13 +495050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(905), 20, + ACTIONS(975), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -495402,19 +495072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [299733] = 4, + [299291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6226), 1, + STATE(6218), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1357), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, + ACTIONS(1359), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -495440,12 +495110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299775] = 4, + [299333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6227), 1, + STATE(6219), 1, sym_comment, - ACTIONS(1222), 11, + ACTIONS(1209), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -495457,7 +495127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1224), 20, + ACTIONS(1211), 20, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT2, @@ -495478,19 +495148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [299817] = 4, + [299375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6228), 1, + STATE(6220), 1, sym_comment, - ACTIONS(1005), 6, + ACTIONS(1333), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1007), 25, + ACTIONS(1335), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -495516,147 +495186,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [299859] = 5, - ACTIONS(3), 1, + [299417] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - STATE(6229), 1, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(6221), 1, sym_comment, - ACTIONS(1193), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1195), 25, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [299903] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6230), 1, - sym_comment, - ACTIONS(1342), 6, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(10204), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1344), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [299945] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10343), 1, - aux_sym_unquoted_token5, - STATE(6231), 1, - sym_comment, - ACTIONS(1193), 11, - sym_identifier, + ACTIONS(1391), 24, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1195), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [299989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6232), 1, - sym_comment, - ACTIONS(1346), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1348), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495670,31 +495226,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300031] = 4, - ACTIONS(3), 1, + [299463] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6233), 1, + ACTIONS(1272), 1, + sym__entry_separator, + STATE(6222), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(1270), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1290), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495708,31 +495264,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300073] = 4, - ACTIONS(3), 1, + [299505] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6234), 1, + ACTIONS(1439), 1, + sym__entry_separator, + STATE(6223), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1437), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495746,19 +495302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300115] = 4, + [299547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6235), 1, + STATE(6224), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1337), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, + ACTIONS(1339), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -495784,14 +495340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300157] = 4, + [299589] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6236), 1, + ACTIONS(8736), 1, + aux_sym_unquoted_token5, + STATE(6225), 1, sym_comment, - ACTIONS(1228), 11, + ACTIONS(1191), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -495801,10 +495360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1230), 20, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT2, + ACTIONS(1193), 18, + anon_sym_DASH_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -495822,69 +495379,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [300199] = 4, - ACTIONS(105), 1, + [299633] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6237), 1, - sym_comment, - ACTIONS(1100), 2, + ACTIONS(10196), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1098), 29, + STATE(6061), 1, + sym_path, + STATE(6226), 1, + sym_comment, + STATE(6837), 1, + sym_cell_path, + ACTIONS(966), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(968), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [300241] = 4, - ACTIONS(3), 1, + [299681] = 11, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6238), 1, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(6227), 1, sym_comment, - ACTIONS(1401), 6, - anon_sym_GT, + ACTIONS(10200), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10210), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10202), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10198), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(1403), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1391), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [299737] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1363), 1, + sym__entry_separator, + STATE(6228), 1, + sym_comment, + ACTIONS(1361), 30, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -495898,32 +495503,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300283] = 6, + [299779] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10345), 1, + ACTIONS(10245), 1, anon_sym_DOT2, - STATE(6631), 1, + STATE(6090), 1, sym_path, - STATE(6239), 2, + STATE(6229), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 8, + STATE(6666), 1, + sym_cell_path, + ACTIONS(959), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1017), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(961), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -495938,19 +495544,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [300329] = 4, + [299827] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6240), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6090), 1, + sym_path, + STATE(6230), 1, + sym_comment, + STATE(6694), 1, + sym_cell_path, + ACTIONS(925), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(927), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [299875] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6231), 1, sym_comment, - ACTIONS(1033), 6, + ACTIONS(1191), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1035), 25, + ACTIONS(1193), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -495976,26 +495623,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300371] = 4, + [299917] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6241), 1, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1253), 1, + anon_sym_DOLLAR, + ACTIONS(10192), 1, + anon_sym_DOT2, + STATE(6232), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1255), 10, anon_sym_GT, - anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1385), 18, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -496011,38 +495664,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [300413] = 5, - ACTIONS(3), 1, + [299965] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_DOT2, - STATE(6242), 1, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(6233), 1, sym_comment, - ACTIONS(1102), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1104), 19, - anon_sym_DOLLAR, + ACTIONS(10200), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1391), 22, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496053,31 +495702,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [300457] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [300013] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6243), 1, + ACTIONS(10338), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10340), 1, + aux_sym__immediate_decimal_token2, + STATE(6234), 1, sym_comment, - ACTIONS(1247), 6, - anon_sym_GT, + ACTIONS(2998), 8, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1409), 25, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3000), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [300059] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(8851), 1, + aux_sym_unquoted_token3, + STATE(6235), 1, + sym_comment, + ACTIONS(827), 29, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496091,31 +495784,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300499] = 4, - ACTIONS(3), 1, + [300103] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6244), 1, + ACTIONS(1276), 1, + sym__entry_separator, + STATE(6236), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1274), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496129,31 +495822,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300541] = 4, - ACTIONS(3), 1, + [300145] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6245), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6237), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1387), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496167,71 +495860,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300583] = 6, - ACTIONS(3), 1, + [300187] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6182), 1, - aux_sym_cell_path_repeat1, - STATE(6246), 1, + STATE(6238), 1, sym_comment, - STATE(6540), 1, - sym_path, - ACTIONS(975), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(977), 22, + ACTIONS(4034), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(4032), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [300629] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [300229] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6247), 1, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6239), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1387), 30, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496245,36 +495936,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300671] = 4, - ACTIONS(3), 1, + [300271] = 10, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6248), 1, + ACTIONS(1393), 1, + sym__entry_separator, + STATE(6240), 1, sym_comment, - ACTIONS(1263), 6, - anon_sym_GT, + ACTIONS(10200), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(10208), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10202), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10198), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1391), 10, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -496283,57 +495980,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300713] = 4, + [300325] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(6249), 1, - sym_comment, - ACTIONS(1115), 2, - anon_sym_DOT2, + ACTIONS(1393), 1, sym__entry_separator, - ACTIONS(1113), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6241), 1, + sym_comment, + ACTIONS(10200), 2, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [300755] = 4, + ACTIONS(10206), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10208), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10204), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 20, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [300375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6250), 1, + STATE(6242), 1, sym_comment, - ACTIONS(1102), 6, + ACTIONS(1361), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1104), 25, + ACTIONS(1363), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -496359,19 +496060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300797] = 4, + [300417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6251), 1, + STATE(6243), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(949), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, + ACTIONS(951), 25, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -496397,23 +496098,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300839] = 4, + [300459] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6252), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + STATE(6244), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1191), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1265), 25, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1193), 25, + anon_sym_COMMA, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -496435,53 +496137,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [300881] = 4, - ACTIONS(105), 1, + [300503] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4178), 1, - sym__entry_separator, - STATE(6253), 1, + ACTIONS(10245), 1, + anon_sym_DOT2, + STATE(6181), 1, + aux_sym_cell_path_repeat1, + STATE(6245), 1, sym_comment, - ACTIONS(4176), 29, + STATE(6582), 1, + sym_path, + ACTIONS(973), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(975), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [300922] = 5, + [300551] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, + ACTIONS(3000), 1, sym__entry_separator, - ACTIONS(10348), 1, - anon_sym_DOT2, - STATE(6254), 1, + ACTIONS(10342), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10344), 1, + aux_sym__immediate_decimal_token2, + STATE(6246), 1, sym_comment, - ACTIONS(3941), 28, + ACTIONS(2998), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -496510,158 +496218,117 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [300965] = 4, - ACTIONS(3), 1, + [300597] = 12, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6255), 1, - sym_comment, - ACTIONS(1397), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1399), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1393), 1, + sym__entry_separator, + ACTIONS(10212), 1, anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [301006] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(10352), 1, + STATE(6247), 1, + sym_comment, + ACTIONS(10200), 2, anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, anon_sym_PLUS, - ACTIONS(10372), 1, - anon_sym_bit_DASHand, - ACTIONS(10374), 1, - anon_sym_bit_DASHxor, - ACTIONS(10376), 1, - anon_sym_bit_DASHor, - STATE(6256), 1, - sym_comment, - ACTIONS(10350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10358), 2, + ACTIONS(10206), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, + ACTIONS(10208), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10370), 2, + ACTIONS(10210), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10368), 3, + ACTIONS(10202), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10366), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [301075] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6257), 1, - sym_comment, - ACTIONS(1313), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10204), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1315), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10198), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1391), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301116] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6258), 1, - sym_comment, - ACTIONS(1193), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1195), 19, + [300655] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(10344), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10346), 1, + anon_sym_DOT2, + STATE(6248), 1, + sym_comment, + ACTIONS(2998), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [300701] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1389), 1, + sym__entry_separator, + STATE(6249), 1, + sym_comment, + ACTIONS(1387), 30, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -496672,28 +496339,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301157] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [300743] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6259), 1, + STATE(6250), 1, sym_comment, - ACTIONS(1263), 11, - sym_identifier, + ACTIONS(1282), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, + ACTIONS(1284), 25, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -496709,16 +496377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301198] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [300785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10378), 1, + ACTIONS(10245), 1, anon_sym_DOT2, - ACTIONS(10380), 1, - aux_sym__immediate_decimal_token2, - STATE(6260), 1, + STATE(6185), 1, + aux_sym_cell_path_repeat1, + STATE(6251), 1, sym_comment, - ACTIONS(2996), 7, + STATE(6582), 1, + sym_path, + ACTIONS(903), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -496726,7 +496399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 21, + ACTIONS(905), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -496748,57 +496421,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [301243] = 6, - ACTIONS(105), 1, + [300833] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6115), 1, + ACTIONS(10196), 1, anon_sym_DOT2, - ACTIONS(10384), 1, - anon_sym_RBRACK, - ACTIONS(10387), 1, - sym__entry_separator, - STATE(6261), 1, + STATE(6152), 1, + aux_sym_cell_path_repeat1, + STATE(6252), 1, sym_comment, - ACTIONS(10382), 27, + STATE(6617), 1, + sym_path, + ACTIONS(973), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(975), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [301288] = 7, + [300881] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10389), 1, - anon_sym_DOT2, - ACTIONS(10391), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + STATE(6253), 1, + sym_comment, + ACTIONS(10348), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10354), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 7, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [300942] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10370), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10393), 1, - aux_sym_unquoted_token2, - STATE(6262), 1, + ACTIONS(10372), 1, + aux_sym__immediate_decimal_token2, + STATE(6254), 1, sym_comment, - ACTIONS(1005), 7, + ACTIONS(2998), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -496806,10 +496526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1007), 20, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -496827,32 +496548,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [301335] = 6, + [300987] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10395), 1, + ACTIONS(10374), 1, aux_sym__immediate_decimal_token1, - ACTIONS(10397), 1, + ACTIONS(10376), 1, aux_sym__immediate_decimal_token2, - STATE(6263), 1, + STATE(6255), 1, sym_comment, - ACTIONS(2986), 6, + ACTIONS(2957), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, + ACTIONS(2959), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [301032] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6105), 1, + aux_sym_unquoted_token6, + STATE(6256), 1, + sym_comment, + ACTIONS(877), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(879), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -496862,16 +496618,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [301380] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [301075] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6264), 1, + STATE(6257), 1, sym_comment, - ACTIONS(1401), 11, + ACTIONS(949), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -496883,7 +496642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1403), 19, + ACTIONS(951), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -496903,31 +496662,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301421] = 7, + [301116] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6224), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10389), 1, + ACTIONS(10378), 1, anon_sym_DOT2, - ACTIONS(10393), 1, - aux_sym_unquoted_token2, - STATE(6265), 1, + ACTIONS(10380), 1, + aux_sym__immediate_decimal_token2, + STATE(6258), 1, sym_comment, - ACTIONS(1005), 7, - anon_sym_DOLLAR, + ACTIONS(3165), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1007), 20, + aux_sym_unquoted_token1, + ACTIONS(3167), 20, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -496941,14 +496701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [301468] = 4, + [301161] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6266), 1, + STATE(6259), 1, sym_comment, - ACTIONS(1389), 11, + ACTIONS(1191), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -496960,7 +496718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1391), 19, + ACTIONS(1193), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -496980,31 +496738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301509] = 6, + [301202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10399), 1, - anon_sym_DOT2, - ACTIONS(10401), 1, + ACTIONS(10382), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10384), 1, aux_sym__immediate_decimal_token2, - STATE(6267), 1, + STATE(6260), 1, sym_comment, - ACTIONS(2996), 8, + ACTIONS(2998), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2998), 20, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -497019,31 +496777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [301554] = 7, + [301247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10384), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10386), 1, anon_sym_DOT2, - STATE(6268), 1, + STATE(6261), 1, sym_comment, - STATE(6411), 1, - sym_path, - STATE(6953), 1, - sym_cell_path, - ACTIONS(997), 7, - anon_sym_DOLLAR, + ACTIONS(2998), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(999), 20, + aux_sym_unquoted_token1, + ACTIONS(3000), 20, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -497057,14 +496816,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [301601] = 4, + [301292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6262), 1, + sym_comment, + ACTIONS(1425), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1427), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301333] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10390), 1, + aux_sym__immediate_decimal_token2, + STATE(6263), 1, + sym_comment, + ACTIONS(2957), 7, + anon_sym_DASH, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [301378] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6264), 1, + sym_comment, + ACTIONS(1429), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1431), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301419] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6265), 1, + sym_comment, + ACTIONS(1433), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1435), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301460] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6266), 1, + sym_comment, + ACTIONS(6524), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1341), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1343), 23, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [301503] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1253), 1, + anon_sym_DOLLAR, + STATE(6267), 1, + sym_comment, + ACTIONS(1255), 10, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1385), 18, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301548] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6269), 1, + STATE(6268), 1, sym_comment, - ACTIONS(1321), 11, + ACTIONS(1374), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -497076,7 +497060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1323), 19, + ACTIONS(1376), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -497096,70 +497080,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [301642] = 6, + [301589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10401), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10405), 1, - aux_sym__immediate_decimal_token1, - STATE(6270), 1, - sym_comment, - ACTIONS(2996), 7, - anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [301687] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, - STATE(6271), 1, + STATE(6269), 1, sym_comment, - ACTIONS(823), 28, + ACTIONS(1381), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1383), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -497170,26 +497117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [301730] = 6, + [301630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10380), 1, + ACTIONS(10226), 1, aux_sym__immediate_decimal_token2, - ACTIONS(10407), 1, - aux_sym__immediate_decimal_token1, - STATE(6272), 1, + STATE(6270), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(2998), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, + ACTIONS(3000), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -497197,85 +497140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [301775] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10409), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10411), 1, - aux_sym__immediate_decimal_token2, - STATE(6273), 1, - sym_comment, - ACTIONS(2986), 7, - anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2988), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [301820] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10413), 1, anon_sym_DOT2, - ACTIONS(10415), 1, - aux_sym__immediate_decimal_token2, - STATE(6274), 1, - sym_comment, - ACTIONS(3489), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3491), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -497290,29 +497155,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [301865] = 5, + [301673] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10417), 1, - anon_sym_QMARK2, - STATE(6275), 1, + ACTIONS(10249), 1, + aux_sym__immediate_decimal_token2, + STATE(6271), 1, sym_comment, - ACTIONS(1054), 8, + ACTIONS(2957), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1056), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(2959), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, @@ -497328,88 +497193,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [301908] = 5, + [301716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10417), 1, - anon_sym_QMARK2, - STATE(6276), 1, + ACTIONS(10392), 1, + aux_sym__immediate_decimal_token2, + STATE(6272), 1, sym_comment, - ACTIONS(1054), 8, + ACTIONS(3804), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1056), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [301951] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - sym__entry_separator, - ACTIONS(10419), 1, - aux_sym__immediate_decimal_token2, - STATE(6277), 1, - sym_comment, - ACTIONS(3834), 28, + aux_sym__unquoted_in_list_token1, + ACTIONS(3806), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [301994] = 4, + [301759] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6278), 1, + STATE(6273), 1, sym_comment, - ACTIONS(1325), 11, + ACTIONS(1255), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -497421,7 +497248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1327), 19, + ACTIONS(1385), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -497441,35 +497268,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [302035] = 4, + [301800] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(6279), 1, + ACTIONS(10396), 1, + anon_sym_DASH, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, + anon_sym_PLUS, + STATE(6274), 1, sym_comment, - ACTIONS(1385), 11, - sym_identifier, + ACTIONS(10394), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1387), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1391), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 9, + anon_sym_DOLLAR, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -497478,262 +497313,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [302076] = 19, + [301857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - ACTIONS(10441), 1, - anon_sym_bit_DASHand, - ACTIONS(10443), 1, - anon_sym_bit_DASHxor, - ACTIONS(10445), 1, - anon_sym_bit_DASHor, - ACTIONS(10447), 1, - anon_sym_and, - ACTIONS(10449), 1, - anon_sym_xor, - ACTIONS(10451), 1, - anon_sym_or, - STATE(6280), 1, + STATE(6275), 1, sym_comment, - ACTIONS(1413), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(10421), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [302147] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, anon_sym_PLUS, - ACTIONS(10441), 1, - anon_sym_bit_DASHand, - ACTIONS(10443), 1, - anon_sym_bit_DASHxor, - ACTIONS(10445), 1, - anon_sym_bit_DASHor, - ACTIONS(10447), 1, + anon_sym_LT2, anon_sym_and, - ACTIONS(10449), 1, anon_sym_xor, - STATE(6281), 1, - sym_comment, - ACTIONS(10421), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [302216] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301898] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(10433), 1, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, anon_sym_PLUS, - ACTIONS(10441), 1, - anon_sym_bit_DASHand, - ACTIONS(10443), 1, - anon_sym_bit_DASHxor, - ACTIONS(10445), 1, - anon_sym_bit_DASHor, - ACTIONS(10447), 1, - anon_sym_and, - STATE(6282), 1, + STATE(6276), 1, sym_comment, - ACTIONS(10421), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, + ACTIONS(1393), 15, + anon_sym_DOLLAR, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [302283] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - ACTIONS(10441), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(10443), 1, anon_sym_bit_DASHxor, - ACTIONS(10445), 1, anon_sym_bit_DASHor, - STATE(6283), 1, + [301949] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6277), 1, sym_comment, - ACTIONS(10421), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302348] = 15, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [301990] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(10433), 1, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, anon_sym_PLUS, - ACTIONS(10441), 1, - anon_sym_bit_DASHand, - ACTIONS(10443), 1, - anon_sym_bit_DASHxor, - STATE(6284), 1, + ACTIONS(10410), 1, + anon_sym_in, + STATE(6278), 1, sym_comment, - ACTIONS(10421), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10412), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10437), 4, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1393), 6, + anon_sym_DOLLAR, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302411] = 4, + [302051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6285), 1, + STATE(6279), 1, sym_comment, - ACTIONS(1102), 11, + ACTIONS(1387), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -497745,7 +497493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1104), 19, + ACTIONS(1389), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -497765,105 +497513,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [302452] = 14, + [302092] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - ACTIONS(10441), 1, - anon_sym_bit_DASHand, - STATE(6286), 1, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + STATE(6280), 1, sym_comment, - ACTIONS(10421), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, + ACTIONS(1391), 8, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302513] = 13, + [302139] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - STATE(6287), 1, + STATE(6281), 1, sym_comment, - ACTIONS(10421), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302572] = 4, + [302180] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6288), 1, + STATE(6282), 1, sym_comment, - ACTIONS(1263), 11, + ACTIONS(10400), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -497875,11 +497610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 19, + ACTIONS(1393), 17, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -497895,34 +497628,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [302613] = 10, + [302223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - STATE(6289), 1, + STATE(6283), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1413), 18, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -497935,123 +497665,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302666] = 12, + [302264] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(10465), 1, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, anon_sym_PLUS, - STATE(6290), 1, + STATE(6284), 1, sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10457), 4, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(1391), 7, + sym_identifier, + anon_sym_GT, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1393), 13, + anon_sym_DOLLAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 10, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302723] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6291), 1, - sym_comment, - ACTIONS(861), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(863), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [302764] = 10, + [302317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6292), 1, + STATE(6285), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10477), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10483), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 14, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -498060,120 +497745,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302817] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4488), 1, - sym__entry_separator, - STATE(6293), 1, - sym_comment, - ACTIONS(4486), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [302858] = 17, + [302358] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, + ACTIONS(10402), 1, anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, + ACTIONS(10404), 1, anon_sym_PLUS, - ACTIONS(10372), 1, - anon_sym_bit_DASHand, - ACTIONS(10374), 1, - anon_sym_bit_DASHxor, - STATE(6294), 1, + ACTIONS(10410), 1, + anon_sym_in, + STATE(6286), 1, sym_comment, - ACTIONS(1413), 2, - anon_sym_DOLLAR, - anon_sym_bit_DASHor, - ACTIONS(10350), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10358), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10370), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10356), 3, + ACTIONS(10398), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10368), 3, + ACTIONS(10412), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10366), 4, + ACTIONS(1393), 4, + anon_sym_DOLLAR, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [302925] = 8, + [302421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6295), 1, + STATE(6287), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10477), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(1413), 20, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -498188,59 +497830,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [302974] = 11, + [302462] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(6296), 1, + ACTIONS(10396), 1, + anon_sym_DASH, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, + anon_sym_PLUS, + ACTIONS(10410), 1, + anon_sym_in, + ACTIONS(10416), 1, + anon_sym_bit_DASHand, + STATE(6288), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10483), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1413), 10, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, + ACTIONS(1393), 3, + anon_sym_DOLLAR, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10412), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [303029] = 4, + ACTIONS(10408), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [302527] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6297), 1, + STATE(6289), 1, sym_comment, - ACTIONS(1263), 11, + ACTIONS(1387), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -498252,7 +497896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 19, + ACTIONS(1389), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -498272,111 +497916,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [303070] = 7, + [302568] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(6298), 1, - sym_comment, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 4, - anon_sym_GT, + ACTIONS(10396), 1, anon_sym_DASH, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 20, - anon_sym_DASH_DASH, + ACTIONS(10410), 1, anon_sym_in, - anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(10416), 1, anon_sym_bit_DASHand, + ACTIONS(10418), 1, anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [303117] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6299), 1, + STATE(6290), 1, sym_comment, - ACTIONS(10477), 2, + ACTIONS(1393), 2, + anon_sym_DOLLAR, + anon_sym_bit_DASHor, + ACTIONS(10394), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 6, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(10406), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10414), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10398), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 22, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(10412), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [303160] = 9, + ACTIONS(10408), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [302635] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6300), 1, + STATE(6291), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10477), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1413), 18, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -498389,437 +498003,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [303211] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4046), 1, - sym__entry_separator, - STATE(6301), 1, - sym_comment, - ACTIONS(4044), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [303252] = 12, + [302676] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6302), 1, - sym_comment, - ACTIONS(10471), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, + ACTIONS(1393), 1, + anon_sym_DOLLAR, + ACTIONS(10396), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, + ACTIONS(10402), 1, anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10487), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10483), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10485), 4, + ACTIONS(10404), 1, + anon_sym_PLUS, + ACTIONS(10410), 1, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1413), 8, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(10416), 1, anon_sym_bit_DASHand, + ACTIONS(10418), 1, anon_sym_bit_DASHxor, + ACTIONS(10420), 1, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [303309] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_bit_DASHand, - STATE(6303), 1, + STATE(6292), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10487), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10483), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10412), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 7, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(1391), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - [303368] = 14, + ACTIONS(10408), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [302745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_bit_DASHand, - ACTIONS(10491), 1, - anon_sym_bit_DASHxor, - STATE(6304), 1, + STATE(6293), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10477), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10487), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10483), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1413), 6, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_bit_DASHor, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [303429] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_bit_DASHand, - ACTIONS(10491), 1, - anon_sym_bit_DASHxor, - ACTIONS(10493), 1, - anon_sym_bit_DASHor, - STATE(6305), 1, - sym_comment, - ACTIONS(10471), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, + ACTIONS(1389), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10487), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10483), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1413), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [303492] = 16, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [302786] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, + ACTIONS(1393), 1, + anon_sym_DOLLAR, + ACTIONS(10396), 1, + anon_sym_DASH, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, + anon_sym_PLUS, + ACTIONS(10410), 1, + anon_sym_in, + ACTIONS(10416), 1, anon_sym_bit_DASHand, - ACTIONS(10491), 1, + ACTIONS(10418), 1, anon_sym_bit_DASHxor, - ACTIONS(10493), 1, + ACTIONS(10420), 1, anon_sym_bit_DASHor, - ACTIONS(10495), 1, + ACTIONS(10422), 1, anon_sym_and, - STATE(6306), 1, + STATE(6294), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10487), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1413), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1391), 3, + sym_identifier, anon_sym_xor, anon_sym_or, - ACTIONS(10483), 4, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10412), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [303557] = 17, + [302857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_bit_DASHand, - ACTIONS(10491), 1, - anon_sym_bit_DASHxor, - ACTIONS(10493), 1, - anon_sym_bit_DASHor, - ACTIONS(10495), 1, - anon_sym_and, - ACTIONS(10497), 1, - anon_sym_xor, - STATE(6307), 1, + STATE(6295), 1, sym_comment, - ACTIONS(10471), 2, + ACTIONS(1387), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10477), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10487), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(10483), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [303624] = 16, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [302898] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, + ACTIONS(1393), 1, + anon_sym_DOLLAR, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, + ACTIONS(10402), 1, anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, + ACTIONS(10404), 1, anon_sym_PLUS, - ACTIONS(10372), 1, + ACTIONS(10410), 1, + anon_sym_in, + ACTIONS(10416), 1, anon_sym_bit_DASHand, - STATE(6308), 1, + ACTIONS(10418), 1, + anon_sym_bit_DASHxor, + ACTIONS(10420), 1, + anon_sym_bit_DASHor, + ACTIONS(10422), 1, + anon_sym_and, + ACTIONS(10424), 1, + anon_sym_xor, + STATE(6296), 1, sym_comment, - ACTIONS(10350), 2, + ACTIONS(1391), 2, + sym_identifier, + anon_sym_or, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10358), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10370), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_DOLLAR, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(10356), 3, + ACTIONS(10398), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10368), 3, + ACTIONS(10412), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(10408), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [302971] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6297), 1, + sym_comment, + ACTIONS(1387), 11, sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10366), 4, + ACTIONS(1389), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [303689] = 18, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [303012] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_DOLLAR, + ACTIONS(10396), 1, + anon_sym_DASH, + ACTIONS(10402), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10404), 1, + anon_sym_PLUS, + ACTIONS(10410), 1, + anon_sym_in, + ACTIONS(10416), 1, anon_sym_bit_DASHand, - ACTIONS(10491), 1, + ACTIONS(10418), 1, anon_sym_bit_DASHxor, - ACTIONS(10493), 1, + ACTIONS(10420), 1, anon_sym_bit_DASHor, - ACTIONS(10495), 1, + ACTIONS(10422), 1, anon_sym_and, - ACTIONS(10497), 1, + ACTIONS(10424), 1, anon_sym_xor, - ACTIONS(10499), 1, + ACTIONS(10426), 1, anon_sym_or, - STATE(6309), 1, + STATE(6298), 1, sym_comment, - ACTIONS(1413), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(10471), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10487), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10483), 4, + ACTIONS(10398), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10412), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [303758] = 4, + [303087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6310), 1, + STATE(6299), 1, sym_comment, - ACTIONS(1358), 11, + ACTIONS(1387), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -498831,7 +498341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1360), 19, + ACTIONS(1389), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -498851,51 +498361,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [303799] = 4, - ACTIONS(105), 1, + [303128] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4322), 1, - sym__entry_separator, - STATE(6311), 1, + ACTIONS(10340), 1, + aux_sym__immediate_decimal_token2, + STATE(6300), 1, sym_comment, - ACTIONS(4320), 29, + ACTIONS(2998), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303171] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10287), 1, + aux_sym__immediate_decimal_token2, + STATE(6301), 1, + sym_comment, + ACTIONS(2957), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303214] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10428), 1, + aux_sym__immediate_decimal_token2, + STATE(6302), 1, + sym_comment, + ACTIONS(3804), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3806), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [303257] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10430), 1, + sym_filesize_unit, + ACTIONS(10432), 1, + sym_duration_unit, + STATE(6303), 1, + sym_comment, + ACTIONS(1054), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym__unquoted_in_list_token1, - [303840] = 4, + ACTIONS(1056), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303302] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(6312), 1, + ACTIONS(6259), 1, + anon_sym_DOT2, + STATE(6304), 1, sym_comment, - ACTIONS(4311), 29, + ACTIONS(1054), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -498904,7 +498532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -498925,96 +498552,165 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [303881] = 14, + [303345] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(10434), 1, + anon_sym_DOT2, + ACTIONS(10436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10438), 1, + aux_sym_unquoted_token2, + STATE(6305), 1, + sym_comment, + ACTIONS(949), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(10465), 1, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(951), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - STATE(6313), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [303392] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10440), 1, + anon_sym_QMARK2, + STATE(6306), 1, sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, + ACTIONS(1070), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1072), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [303942] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303435] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6314), 1, + ACTIONS(10440), 1, + anon_sym_QMARK2, + STATE(6307), 1, sym_comment, - ACTIONS(1254), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(1252), 28, + ACTIONS(1070), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1072), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303478] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6308), 1, + sym_comment, + ACTIONS(1082), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1084), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [303983] = 4, + [303519] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6315), 1, + STATE(6309), 1, sym_comment, - ACTIONS(1317), 11, + ACTIONS(1421), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -499026,16 +498722,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1319), 19, + ACTIONS(1423), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [303560] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6310), 1, + sym_comment, + ACTIONS(1086), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1088), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303601] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, + STATE(6311), 1, + sym_comment, + ACTIONS(827), 29, + anon_sym_GT, anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -499046,14 +498813,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [304024] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [303642] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10442), 1, + anon_sym_DOT2, + ACTIONS(10445), 1, + aux_sym__immediate_decimal_token2, + STATE(6312), 1, + sym_comment, + ACTIONS(3165), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3167), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303687] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10226), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10447), 1, + anon_sym_DOT2, + STATE(6313), 1, + sym_comment, + ACTIONS(2998), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303732] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(3891), 1, sym__entry_separator, - STATE(6316), 1, + ACTIONS(10450), 1, + sym_long_flag_identifier, + STATE(6314), 1, sym_comment, - ACTIONS(4307), 29, + ACTIONS(3887), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499062,7 +498912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499083,18 +498932,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304065] = 7, + [303775] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10452), 1, anon_sym_DOT2, - STATE(6317), 1, + STATE(6315), 1, sym_comment, - STATE(6411), 1, + STATE(6325), 1, + aux_sym_cell_path_repeat1, + STATE(6706), 1, sym_path, - STATE(6913), 1, - sym_cell_path, - ACTIONS(990), 7, + ACTIONS(903), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -499102,7 +498951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(992), 20, + ACTIONS(905), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -499123,88 +498972,132 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [304112] = 4, - ACTIONS(105), 1, + [303822] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, - sym__entry_separator, - STATE(6318), 1, + ACTIONS(10454), 1, + anon_sym_DOT2, + ACTIONS(10457), 1, + aux_sym__immediate_decimal_token2, + STATE(6316), 1, sym_comment, - ACTIONS(4303), 29, + ACTIONS(3165), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3167), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [303867] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10340), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10459), 1, + anon_sym_DOT2, + STATE(6317), 1, + sym_comment, + ACTIONS(2998), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3000), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [304153] = 4, + [303912] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6319), 1, + ACTIONS(10462), 1, + anon_sym_DOT2, + STATE(6706), 1, + sym_path, + STATE(6318), 2, sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, + aux_sym_cell_path_repeat1, + ACTIONS(942), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [304194] = 4, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(944), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [303957] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4301), 1, - sym__entry_separator, - STATE(6320), 1, + STATE(6319), 1, sym_comment, - ACTIONS(4299), 29, + ACTIONS(1187), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1185), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499213,7 +499106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499234,14 +499126,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304235] = 4, + [303998] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + anon_sym_DOT2, + STATE(6315), 1, + sym_path, + STATE(6320), 1, + sym_comment, + STATE(6683), 1, + sym_cell_path, + ACTIONS(933), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(935), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [304045] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4297), 1, - sym__entry_separator, STATE(6321), 1, sym_comment, - ACTIONS(4295), 29, + ACTIONS(1211), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1209), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499250,7 +499183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499271,14 +499203,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304276] = 4, + [304086] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4271), 1, - sym__entry_separator, STATE(6322), 1, sym_comment, - ACTIONS(4269), 29, + ACTIONS(1215), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1213), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499287,7 +499220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499308,16 +499240,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304317] = 5, + [304127] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(829), 1, sym__entry_separator, - ACTIONS(10505), 1, - anon_sym_DOT2, + ACTIONS(7880), 1, + aux_sym_unquoted_token3, STATE(6323), 1, sym_comment, - ACTIONS(3927), 28, + ACTIONS(827), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499346,16 +499278,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304360] = 6, + [304170] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10507), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10509), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(10468), 1, + anon_sym_DOT2, + STATE(6315), 1, + sym_path, STATE(6324), 1, sym_comment, - ACTIONS(2996), 7, + STATE(6857), 1, + sym_cell_path, + ACTIONS(966), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(968), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [304217] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6318), 1, + aux_sym_cell_path_repeat1, + STATE(6325), 1, + sym_comment, + STATE(6706), 1, + sym_path, + ACTIONS(973), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -499363,7 +499335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + ACTIONS(975), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -499385,14 +499357,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [304405] = 4, + [304262] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10430), 1, + sym_filesize_unit, + ACTIONS(10432), 1, + sym_duration_unit, + STATE(6326), 1, + sym_comment, + ACTIONS(10323), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(10471), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [304307] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4260), 1, + ACTIONS(4332), 1, sym__entry_separator, - STATE(6325), 1, + STATE(6327), 1, sym_comment, - ACTIONS(4258), 29, + ACTIONS(4330), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499422,62 +499433,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304446] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - STATE(6326), 1, - sym_comment, - ACTIONS(10350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10370), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10368), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 4, - anon_sym_DOLLAR, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(10366), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [304509] = 4, + [304348] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4246), 1, + ACTIONS(4336), 1, sym__entry_separator, - STATE(6327), 1, + STATE(6328), 1, sym_comment, - ACTIONS(4244), 29, + ACTIONS(4334), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499507,16 +499470,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304550] = 5, + [304389] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3923), 1, + ACTIONS(4340), 1, sym__entry_separator, - ACTIONS(10511), 1, - anon_sym_DOT2, - STATE(6328), 1, + STATE(6329), 1, sym_comment, - ACTIONS(3921), 28, + ACTIONS(4338), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499525,6 +499486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499545,14 +499507,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304593] = 4, + [304430] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4242), 1, + ACTIONS(4344), 1, sym__entry_separator, - STATE(6329), 1, + STATE(6330), 1, sym_comment, - ACTIONS(4240), 29, + ACTIONS(4342), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499582,12 +499544,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304634] = 4, + [304471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6330), 1, + STATE(6331), 1, + sym_comment, + ACTIONS(1082), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1084), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [304512] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10473), 1, + anon_sym_DOT2, + ACTIONS(10477), 1, + aux_sym__immediate_decimal_token2, + STATE(6332), 1, sym_comment, - ACTIONS(1098), 7, + ACTIONS(3165), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -499595,7 +499598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1100), 23, + ACTIONS(3167), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499603,6 +499606,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [304557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6333), 1, + sym_comment, + ACTIONS(1086), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1088), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, anon_sym_QMARK2, anon_sym_PLUS, @@ -499619,53 +499657,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [304675] = 4, - ACTIONS(105), 1, + [304598] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4238), 1, - sym__entry_separator, - STATE(6331), 1, + STATE(6334), 1, sym_comment, - ACTIONS(4236), 29, + ACTIONS(877), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(879), 24, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [304639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6335), 1, + sym_comment, + ACTIONS(1054), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1056), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [304680] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6336), 1, + sym_comment, + ACTIONS(1177), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1179), 24, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [304716] = 5, - ACTIONS(105), 1, + [304721] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3917), 1, - sym__entry_separator, - ACTIONS(10513), 1, - anon_sym_DOT2, - STATE(6332), 1, + STATE(6337), 1, + sym_comment, + ACTIONS(909), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(911), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [304762] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6338), 1, + sym_comment, + ACTIONS(1341), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1343), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [304803] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(6339), 1, sym_comment, - ACTIONS(3915), 28, + ACTIONS(1219), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1217), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499694,14 +499879,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304759] = 4, + [304844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6340), 1, + sym_comment, + ACTIONS(1349), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1351), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [304885] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4230), 1, + ACTIONS(3000), 1, sym__entry_separator, - STATE(6333), 1, + ACTIONS(10344), 1, + aux_sym__immediate_decimal_token2, + STATE(6341), 1, sym_comment, - ACTIONS(4228), 29, + ACTIONS(2998), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499710,7 +499934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499731,14 +499954,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304800] = 4, + [304928] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4226), 1, - sym__entry_separator, - STATE(6334), 1, + STATE(6342), 1, sym_comment, - ACTIONS(4224), 29, + ACTIONS(1223), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(1221), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499747,7 +499971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499768,14 +499991,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304841] = 4, + [304969] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4222), 1, + ACTIONS(2959), 1, sym__entry_separator, - STATE(6335), 1, + ACTIONS(10280), 1, + aux_sym__immediate_decimal_token2, + STATE(6343), 1, sym_comment, - ACTIONS(4220), 29, + ACTIONS(2957), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -499784,7 +500009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -499805,16 +500029,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [304882] = 6, + [305012] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10515), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10517), 1, - aux_sym__immediate_decimal_token2, - STATE(6336), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6344), 1, sym_comment, - ACTIONS(2986), 7, + STATE(6369), 1, + sym_path, + STATE(6947), 1, + sym_cell_path, + ACTIONS(933), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -499822,11 +500048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + ACTIONS(935), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -499844,99 +500069,56 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [304927] = 11, - ACTIONS(3), 1, + [305059] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - STATE(6337), 1, + ACTIONS(3806), 1, + sym__entry_separator, + ACTIONS(10479), 1, + aux_sym__immediate_decimal_token2, + STATE(6345), 1, sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 14, + ACTIONS(3804), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_in, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [304982] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6338), 1, - sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [305023] = 7, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [305102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10452), 1, anon_sym_DOT2, - STATE(6339), 1, + STATE(6346), 1, sym_comment, - STATE(6411), 1, + STATE(6369), 1, sym_path, - STATE(6891), 1, + STATE(6877), 1, sym_cell_path, - ACTIONS(1001), 7, + ACTIONS(966), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -499944,7 +500126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1003), 20, + ACTIONS(968), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -499965,176 +500147,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [305070] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - STATE(6340), 1, - sym_comment, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1413), 13, - anon_sym_DOLLAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [305123] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - STATE(6341), 1, - sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1413), 20, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [305174] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6342), 1, - sym_comment, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [305217] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6343), 1, - sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [305258] = 6, + [305149] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6344), 1, - sym_comment, - STATE(6423), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6318), 1, aux_sym_cell_path_repeat1, - STATE(6675), 1, + STATE(6347), 1, + sym_comment, + STATE(6706), 1, sym_path, - ACTIONS(975), 7, + ACTIONS(973), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -500142,11 +500166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(977), 21, + ACTIONS(975), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -500164,14 +500187,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [305303] = 4, + [305196] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4392), 1, sym__entry_separator, - STATE(6345), 1, + STATE(6348), 1, sym_comment, - ACTIONS(4200), 29, + ACTIONS(4390), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500201,16 +500224,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305344] = 5, + [305237] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, + ACTIONS(4396), 1, sym__entry_separator, - ACTIONS(10519), 1, - anon_sym_DOT2, - STATE(6346), 1, + STATE(6349), 1, sym_comment, - ACTIONS(3909), 28, + ACTIONS(4394), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500219,6 +500240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -500239,14 +500261,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305387] = 4, + [305278] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4196), 1, + ACTIONS(4400), 1, sym__entry_separator, - STATE(6347), 1, + STATE(6350), 1, sym_comment, - ACTIONS(4194), 29, + ACTIONS(4398), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500276,14 +500298,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305428] = 4, + [305319] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4192), 1, + ACTIONS(4408), 1, sym__entry_separator, - STATE(6348), 1, + STATE(6351), 1, sym_comment, - ACTIONS(4190), 29, + ACTIONS(4406), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500313,129 +500335,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305469] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_EQ_GT, - ACTIONS(10521), 1, - anon_sym_DOT2, - STATE(6349), 1, - sym_comment, - ACTIONS(1247), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1409), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [305514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6350), 1, - sym_comment, - ACTIONS(1005), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1007), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [305555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10523), 1, - anon_sym_DOT2, - ACTIONS(10527), 1, - aux_sym__immediate_decimal_token2, - STATE(6351), 1, - sym_comment, - ACTIONS(3489), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3491), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [305600] = 4, + [305360] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4174), 1, + ACTIONS(4414), 1, sym__entry_separator, STATE(6352), 1, sym_comment, - ACTIONS(4172), 29, + ACTIONS(4412), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500465,14 +500372,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305641] = 4, + [305401] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4170), 1, + ACTIONS(4457), 1, sym__entry_separator, STATE(6353), 1, sym_comment, - ACTIONS(4168), 29, + ACTIONS(4455), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500502,14 +500409,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305682] = 4, + [305442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4160), 1, + ACTIONS(4464), 1, sym__entry_separator, STATE(6354), 1, sym_comment, - ACTIONS(4158), 29, + ACTIONS(4462), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500539,14 +500446,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305723] = 4, + [305483] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4148), 1, + ACTIONS(4476), 1, sym__entry_separator, STATE(6355), 1, sym_comment, - ACTIONS(4146), 29, + ACTIONS(4474), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500576,26 +500483,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305764] = 5, + [305524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, STATE(6356), 1, sym_comment, - ACTIONS(1193), 5, + ACTIONS(1303), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1195), 24, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1305), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -500611,18 +500520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [305807] = 5, + [305565] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6357), 1, sym_comment, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 11, + ACTIONS(1307), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -500634,9 +500537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 17, + ACTIONS(1309), 19, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -500652,14 +500557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [305850] = 4, + [305606] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4424), 1, + ACTIONS(3000), 1, sym__entry_separator, + ACTIONS(3952), 1, + anon_sym_DOT2, STATE(6358), 1, sym_comment, - ACTIONS(4422), 29, + ACTIONS(2998), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500668,7 +500575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -500689,12 +500595,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [305891] = 4, + [305649] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6359), 1, sym_comment, - ACTIONS(1263), 11, + ACTIONS(1329), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -500706,7 +500612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 19, + ACTIONS(1331), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -500726,12 +500632,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [305932] = 4, - ACTIONS(3), 1, + [305690] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(3946), 1, + sym__entry_separator, + ACTIONS(10481), 1, + anon_sym_EQ, STATE(6360), 1, sym_comment, - ACTIONS(1332), 11, + ACTIONS(3942), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [305733] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6361), 1, + sym_comment, + ACTIONS(1333), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1335), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [305774] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6362), 1, + sym_comment, + ACTIONS(1337), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -500743,7 +500724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1334), 19, + ACTIONS(1339), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -500763,14 +500744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [305973] = 4, + [305815] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4144), 1, + ACTIONS(4480), 1, sym__entry_separator, - STATE(6361), 1, + STATE(6363), 1, sym_comment, - ACTIONS(4142), 29, + ACTIONS(4478), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500800,88 +500781,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [306014] = 4, - ACTIONS(105), 1, + [305856] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4140), 1, - sym__entry_separator, - STATE(6362), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10434), 1, + anon_sym_DOT2, + ACTIONS(10438), 1, + aux_sym_unquoted_token2, + STATE(6364), 1, sym_comment, - ACTIONS(4138), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(949), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [306055] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4136), 1, - sym__entry_separator, - STATE(6363), 1, - sym_comment, - ACTIONS(4134), 29, + ACTIONS(951), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [306096] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [305903] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__entry_separator, - STATE(6364), 1, + STATE(6365), 1, sym_comment, - ACTIONS(4126), 29, + ACTIONS(4482), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500911,14 +500858,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [306137] = 4, + [305944] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4124), 1, + ACTIONS(4088), 1, sym__entry_separator, - STATE(6365), 1, + STATE(6366), 1, sym_comment, - ACTIONS(4122), 29, + ACTIONS(4086), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500948,14 +500895,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [306178] = 4, + [305985] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6367), 1, + sym_comment, + ACTIONS(1345), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1347), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [306026] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4120), 1, + ACTIONS(4092), 1, sym__entry_separator, - STATE(6366), 1, + STATE(6368), 1, sym_comment, - ACTIONS(4118), 29, + ACTIONS(4090), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -500985,100 +500969,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [306219] = 4, - ACTIONS(105), 1, + [306067] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4116), 1, - sym__entry_separator, - STATE(6367), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6347), 1, + aux_sym_cell_path_repeat1, + STATE(6369), 1, sym_comment, - ACTIONS(4114), 29, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + STATE(6706), 1, + sym_path, + ACTIONS(903), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [306260] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4107), 1, - sym__entry_separator, - STATE(6368), 1, - sym_comment, - ACTIONS(4105), 29, + ACTIONS(905), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [306301] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [306114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10521), 1, - anon_sym_DOT2, - STATE(6369), 1, + STATE(6370), 1, sym_comment, - ACTIONS(1102), 5, + ACTIONS(1357), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1104), 24, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1359), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -501094,32 +501046,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306344] = 7, + [306155] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6370), 1, + STATE(6371), 1, sym_comment, - ACTIONS(10459), 2, + ACTIONS(1361), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 3, - anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1413), 21, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1363), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -501134,35 +501083,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306391] = 7, + [306196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - STATE(6371), 1, + STATE(6372), 1, sym_comment, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 8, + ACTIONS(1368), 11, sym_identifier, anon_sym_GT, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 16, + ACTIONS(1370), 19, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -501177,12 +501120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [306438] = 4, + [306237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6372), 1, + STATE(6373), 1, sym_comment, - ACTIONS(1263), 11, + ACTIONS(1319), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -501194,7 +501137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 19, + ACTIONS(1321), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -501214,73 +501157,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [306479] = 14, + [306278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - STATE(6373), 1, + STATE(6374), 1, sym_comment, - ACTIONS(10350), 2, + ACTIONS(1266), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10356), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10368), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10366), 4, + ACTIONS(1268), 19, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_DOLLAR, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [306540] = 5, + [306319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6374), 1, + STATE(6375), 1, sym_comment, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 5, + ACTIONS(1266), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1413), 23, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1268), 19, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_mod, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -501296,180 +501231,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306583] = 4, - ACTIONS(3), 1, + [306360] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6375), 1, + ACTIONS(4152), 1, + sym__entry_separator, + STATE(6376), 1, sym_comment, - ACTIONS(1113), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1115), 22, + ACTIONS(4150), 29, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [306624] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - STATE(6376), 1, - sym_comment, - ACTIONS(10421), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306681] = 9, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [306401] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, + ACTIONS(4166), 1, + sym__entry_separator, STATE(6377), 1, sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1413), 20, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306732] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10531), 1, - sym_filesize_unit, - ACTIONS(10533), 1, - sym_duration_unit, - STATE(6378), 1, - sym_comment, - ACTIONS(10262), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10529), 22, + ACTIONS(4164), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [306777] = 4, + aux_sym__unquoted_in_list_token1, + [306442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4372), 1, + ACTIONS(4170), 1, sym__entry_separator, - STATE(6379), 1, + STATE(6378), 1, sym_comment, - ACTIONS(4370), 29, + ACTIONS(4168), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501499,78 +501342,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [306818] = 11, + [306483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, - anon_sym_PLUS, - STATE(6380), 1, + STATE(6379), 1, sym_comment, - ACTIONS(10421), 2, + ACTIONS(1270), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 14, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [306873] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(1272), 19, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - STATE(6381), 1, - sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(1413), 18, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -501583,100 +501379,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [306926] = 13, + [306524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - STATE(6382), 1, + STATE(6380), 1, sym_comment, - ACTIONS(10453), 2, + ACTIONS(1437), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 8, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [306985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6383), 1, - sym_comment, - ACTIONS(1113), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1439), 19, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [307026] = 4, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [306565] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4376), 1, + ACTIONS(4028), 1, sym__entry_separator, - STATE(6384), 1, + ACTIONS(10483), 1, + anon_sym_DOT2, + STATE(6381), 1, sym_comment, - ACTIONS(4374), 29, + ACTIONS(4026), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501685,7 +501434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -501706,14 +501454,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307067] = 4, + [306608] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4430), 1, + ACTIONS(4178), 1, sym__entry_separator, - STATE(6385), 1, + STATE(6382), 1, sym_comment, - ACTIONS(4428), 29, + ACTIONS(4176), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501743,63 +501491,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307108] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - ACTIONS(10535), 1, - anon_sym_bit_DASHxor, - STATE(6386), 1, - sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [307171] = 4, + [306649] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6387), 1, - sym_comment, - ACTIONS(1191), 2, - anon_sym_DOT2, + ACTIONS(4186), 1, sym__entry_separator, - ACTIONS(1189), 28, + STATE(6383), 1, + sym_comment, + ACTIONS(4184), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501808,6 +501507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -501828,63 +501528,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307212] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - ACTIONS(10535), 1, - anon_sym_bit_DASHxor, - ACTIONS(10537), 1, - anon_sym_bit_DASHor, - STATE(6388), 1, - sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [307277] = 4, + [306690] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(4199), 1, sym__entry_separator, - STATE(6389), 1, + STATE(6384), 1, sym_comment, - ACTIONS(4474), 29, + ACTIONS(4197), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501914,14 +501565,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307318] = 4, + [306731] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4472), 1, + ACTIONS(4203), 1, sym__entry_separator, - STATE(6390), 1, + STATE(6385), 1, sym_comment, - ACTIONS(4470), 29, + ACTIONS(4201), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501951,14 +501602,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307359] = 4, + [306772] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4468), 1, + ACTIONS(4217), 1, sym__entry_separator, - STATE(6391), 1, + STATE(6386), 1, sym_comment, - ACTIONS(4466), 29, + ACTIONS(4215), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -501988,14 +501639,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307400] = 4, + [306813] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4460), 1, + ACTIONS(4233), 1, sym__entry_separator, - STATE(6392), 1, + STATE(6387), 1, sym_comment, - ACTIONS(4458), 29, + ACTIONS(4231), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502025,170 +501676,140 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307441] = 17, + [306854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - ACTIONS(10535), 1, - anon_sym_bit_DASHxor, - ACTIONS(10537), 1, - anon_sym_bit_DASHor, - ACTIONS(10539), 1, - anon_sym_and, - STATE(6393), 1, + STATE(6388), 1, sym_comment, - ACTIONS(10453), 2, + ACTIONS(929), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10461), 2, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(931), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [307508] = 7, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [306895] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6394), 1, + ACTIONS(4261), 1, + sym__entry_separator, + STATE(6389), 1, sym_comment, - STATE(6423), 1, - aux_sym_cell_path_repeat1, - STATE(6675), 1, - sym_path, - ACTIONS(975), 7, + ACTIONS(4259), 29, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(977), 20, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [306936] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4291), 1, + sym__entry_separator, + STATE(6390), 1, + sym_comment, + ACTIONS(4289), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [307555] = 18, + aux_sym__unquoted_in_list_token1, + [306977] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - ACTIONS(10535), 1, - anon_sym_bit_DASHxor, - ACTIONS(10537), 1, - anon_sym_bit_DASHor, - ACTIONS(10539), 1, - anon_sym_and, - ACTIONS(10541), 1, - anon_sym_xor, - STATE(6395), 1, + STATE(6391), 1, sym_comment, - ACTIONS(10453), 2, + ACTIONS(1274), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(10457), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [307624] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6396), 1, - sym_comment, - ACTIONS(10427), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 3, - anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1413), 21, - anon_sym_COMMA, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1276), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -502203,37 +501824,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [307671] = 9, + [307018] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - STATE(6397), 1, + STATE(6392), 1, sym_comment, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(1411), 7, + ACTIONS(1278), 11, sym_identifier, anon_sym_GT, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 15, + ACTIONS(1280), 19, anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -502248,53 +501861,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [307722] = 4, - ACTIONS(3), 1, + [307059] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6398), 1, + ACTIONS(4313), 1, + sym__entry_separator, + STATE(6393), 1, sym_comment, - ACTIONS(1098), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1100), 22, + ACTIONS(4311), 29, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [307763] = 5, + aux_sym__unquoted_in_list_token1, + [307100] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(4317), 1, sym__entry_separator, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(6399), 1, + STATE(6394), 1, sym_comment, - ACTIONS(2996), 28, + ACTIONS(4315), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502303,6 +501914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502323,15 +501935,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307806] = 4, + [307141] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6400), 1, - sym_comment, - ACTIONS(1224), 2, - anon_sym_DOT2, + ACTIONS(4324), 1, sym__entry_separator, - ACTIONS(1222), 28, + STATE(6395), 1, + sym_comment, + ACTIONS(4322), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502340,6 +501951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502360,14 +501972,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307847] = 4, + [307182] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(6401), 1, + STATE(6396), 1, sym_comment, - ACTIONS(4378), 29, + ACTIONS(4326), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502397,105 +502009,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [307888] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - ACTIONS(10372), 1, - anon_sym_bit_DASHand, - ACTIONS(10374), 1, - anon_sym_bit_DASHxor, - ACTIONS(10376), 1, - anon_sym_bit_DASHor, - ACTIONS(10543), 1, - anon_sym_and, - STATE(6402), 1, - sym_comment, - ACTIONS(10350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10370), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10368), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10366), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [307959] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6403), 1, - sym_comment, - ACTIONS(1309), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1311), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [308000] = 5, + [307223] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(10545), 1, - sym_long_flag_identifier, - STATE(6404), 1, + STATE(6397), 1, sym_comment, - ACTIONS(3947), 28, + ACTIONS(4368), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502504,6 +502025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502524,16 +502046,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308043] = 5, + [307264] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(4374), 1, sym__entry_separator, - ACTIONS(6115), 1, - anon_sym_DOT2, - STATE(6405), 1, + STATE(6398), 1, sym_comment, - ACTIONS(4013), 28, + ACTIONS(4372), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502542,6 +502062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502562,53 +502083,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308086] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6406), 1, - sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [308127] = 5, + [307305] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7854), 1, + ACTIONS(4378), 1, sym__entry_separator, - ACTIONS(7858), 1, - aux_sym__unquoted_in_list_token3, - STATE(6407), 1, + STATE(6399), 1, sym_comment, - ACTIONS(7834), 28, + ACTIONS(4376), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502617,6 +502099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502637,89 +502120,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308170] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6408), 1, - sym_comment, - ACTIONS(1305), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1307), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [308211] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6409), 1, - sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [308252] = 4, + [307346] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6410), 1, - sym_comment, - ACTIONS(1261), 2, - anon_sym_DOT2, + ACTIONS(4382), 1, sym__entry_separator, - ACTIONS(1259), 28, + STATE(6400), 1, + sym_comment, + ACTIONS(4380), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502728,6 +502136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502748,96 +502157,88 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308293] = 7, - ACTIONS(3), 1, + [307387] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6394), 1, - aux_sym_cell_path_repeat1, - STATE(6411), 1, + ACTIONS(4388), 1, + sym__entry_separator, + STATE(6401), 1, sym_comment, - STATE(6675), 1, - sym_path, - ACTIONS(903), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(905), 20, + ACTIONS(4386), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [308340] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [307428] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10547), 1, - anon_sym_DOT2, - STATE(6412), 1, + ACTIONS(4404), 1, + sym__entry_separator, + STATE(6402), 1, sym_comment, - STATE(6436), 1, - sym_path, - STATE(6862), 1, - sym_cell_path, - ACTIONS(979), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(981), 20, + ACTIONS(4402), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [308387] = 5, + aux_sym__unquoted_in_list_token1, + [307469] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(4418), 1, sym__entry_separator, - ACTIONS(10287), 1, - aux_sym__immediate_decimal_token2, - STATE(6413), 1, + STATE(6403), 1, sym_comment, - ACTIONS(2996), 28, + ACTIONS(4416), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502846,6 +502247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -502866,14 +502268,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308430] = 4, + [307510] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(4422), 1, sym__entry_separator, - STATE(6414), 1, + STATE(6404), 1, sym_comment, - ACTIONS(4418), 29, + ACTIONS(4420), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502903,67 +502305,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308471] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - ACTIONS(10372), 1, - anon_sym_bit_DASHand, - ACTIONS(10374), 1, - anon_sym_bit_DASHxor, - ACTIONS(10376), 1, - anon_sym_bit_DASHor, - ACTIONS(10543), 1, - anon_sym_and, - ACTIONS(10550), 1, - anon_sym_xor, - STATE(6415), 1, - sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(10350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10370), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10368), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10366), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [308544] = 4, + [307551] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4416), 1, + ACTIONS(4426), 1, sym__entry_separator, - STATE(6416), 1, + STATE(6405), 1, sym_comment, - ACTIONS(4414), 29, + ACTIONS(4424), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -502993,14 +502342,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308585] = 4, + [307592] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + STATE(6406), 1, + sym_comment, + ACTIONS(1191), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1193), 24, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [307635] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4384), 1, + ACTIONS(4472), 1, sym__entry_separator, - STATE(6417), 1, + STATE(6407), 1, sym_comment, - ACTIONS(4382), 29, + ACTIONS(4470), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503030,15 +502417,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308626] = 4, + [307676] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(6418), 1, - sym_comment, - ACTIONS(1230), 2, - anon_sym_DOT2, + ACTIONS(4488), 1, sym__entry_separator, - ACTIONS(1228), 28, + STATE(6408), 1, + sym_comment, + ACTIONS(4486), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503047,6 +502433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -503067,14 +502454,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308667] = 4, + [307717] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4301), 1, sym__entry_separator, - STATE(6419), 1, + STATE(6409), 1, sym_comment, - ACTIONS(4410), 29, + ACTIONS(4299), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503104,12 +502491,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308708] = 4, + [307758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6420), 1, + STATE(6410), 1, sym_comment, - ACTIONS(1354), 11, + ACTIONS(1353), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -503121,7 +502508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1356), 19, + ACTIONS(1355), 19, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_STAR_STAR, @@ -503141,134 +502528,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [308749] = 6, + [307799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10552), 1, - anon_sym_DOT2, - ACTIONS(10554), 1, - aux_sym__immediate_decimal_token2, - STATE(6421), 1, + STATE(6411), 1, sym_comment, - ACTIONS(3489), 7, + ACTIONS(1282), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1284), 19, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3491), 21, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + [307840] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + sym__entry_separator, + STATE(6412), 1, + sym_comment, + ACTIONS(4060), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [308794] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6411), 1, - sym_path, - STATE(6422), 1, - sym_comment, - STATE(6963), 1, - sym_cell_path, - ACTIONS(1033), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1035), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [308841] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [307881] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10556), 1, - anon_sym_DOT2, - STATE(6675), 1, - sym_path, - STATE(6423), 2, + ACTIONS(4070), 1, + sym__entry_separator, + STATE(6413), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1017), 20, + ACTIONS(4068), 29, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [308886] = 5, + aux_sym__unquoted_in_list_token1, + [307922] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, + ACTIONS(4074), 1, sym__entry_separator, - ACTIONS(6115), 1, - anon_sym_DOT2, - STATE(6424), 1, + STATE(6414), 1, sym_comment, - ACTIONS(1102), 28, + ACTIONS(4072), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503277,6 +502655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -503297,14 +502676,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308929] = 4, + [307963] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4408), 1, + ACTIONS(4078), 1, sym__entry_separator, - STATE(6425), 1, + STATE(6415), 1, sym_comment, - ACTIONS(4406), 29, + ACTIONS(4076), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503334,178 +502713,346 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [308970] = 4, + [308004] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6426), 1, + ACTIONS(10485), 1, + anon_sym_QMARK2, + STATE(6416), 1, sym_comment, - ACTIONS(1350), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1352), 19, - anon_sym_DOLLAR, + ACTIONS(1070), 7, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [309011] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4400), 1, - sym__entry_separator, - STATE(6427), 1, - sym_comment, - ACTIONS(4398), 29, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1072), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [309052] = 4, - ACTIONS(105), 1, + [308047] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4396), 1, - sym__entry_separator, - STATE(6428), 1, + ACTIONS(10485), 1, + anon_sym_QMARK2, + STATE(6417), 1, sym_comment, - ACTIONS(4394), 29, + ACTIONS(1070), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1072), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [309093] = 6, - ACTIONS(3), 1, + [308090] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10531), 1, - sym_filesize_unit, - ACTIONS(10533), 1, - sym_duration_unit, - STATE(6429), 1, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, + STATE(6418), 1, sym_comment, - ACTIONS(1102), 6, + ACTIONS(827), 28, + anon_sym_GT, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 22, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308133] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7821), 1, + sym__entry_separator, + ACTIONS(7825), 1, + aux_sym__unquoted_in_list_token3, + STATE(6419), 1, + sym_comment, + ACTIONS(7801), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309138] = 4, + aux_sym__unquoted_in_list_token1, + [308176] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6420), 1, + sym_comment, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 14, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308229] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6421), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1393), 20, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308278] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6430), 1, + STATE(6422), 1, sym_comment, - ACTIONS(1263), 11, - sym_identifier, + ACTIONS(10487), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 10, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308333] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6423), 1, + sym_comment, + ACTIONS(10491), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(1393), 20, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + [308380] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6424), 1, + sym_comment, + ACTIONS(10493), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(1391), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 22, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -503521,32 +503068,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [309179] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308423] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10242), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10559), 1, + ACTIONS(10452), 1, anon_sym_DOT2, - STATE(6431), 1, + STATE(6369), 1, + sym_path, + STATE(6425), 1, sym_comment, - ACTIONS(2996), 8, + STATE(6944), 1, + sym_cell_path, + ACTIONS(959), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 20, + ACTIONS(961), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -503560,31 +503109,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309224] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [308470] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6432), 1, + STATE(6426), 1, sym_comment, - ACTIONS(1263), 11, - sym_identifier, + ACTIONS(1391), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, + ACTIONS(10489), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(1393), 18, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -503597,187 +503150,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [309265] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308521] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10562), 1, - aux_sym__immediate_decimal_token2, - STATE(6433), 1, + STATE(6427), 1, sym_comment, - ACTIONS(3834), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3836), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [309308] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, anon_sym_DASH, - ACTIONS(10465), 1, anon_sym_PLUS, - ACTIONS(10503), 1, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 8, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_bit_DASHand, - ACTIONS(10535), 1, anon_sym_bit_DASHxor, - ACTIONS(10537), 1, anon_sym_bit_DASHor, - ACTIONS(10539), 1, anon_sym_and, - ACTIONS(10541), 1, anon_sym_xor, - ACTIONS(10564), 1, anon_sym_or, - STATE(6434), 1, + [308578] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + STATE(6428), 1, sym_comment, - ACTIONS(1413), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(10453), 2, + ACTIONS(10487), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10459), 2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10461), 2, + ACTIONS(10493), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, + ACTIONS(10495), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, + ACTIONS(10497), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10501), 2, + ACTIONS(10503), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10457), 4, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10469), 4, + ACTIONS(1393), 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308637] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + ACTIONS(10507), 1, + anon_sym_bit_DASHxor, + STATE(6429), 1, + sym_comment, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10499), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [309379] = 6, + ACTIONS(10501), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308698] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10566), 1, - anon_sym_DOT2, - ACTIONS(10569), 1, - aux_sym__immediate_decimal_token2, - STATE(6435), 1, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + ACTIONS(10507), 1, + anon_sym_bit_DASHxor, + ACTIONS(10509), 1, + anon_sym_bit_DASHor, + STATE(6430), 1, sym_comment, - ACTIONS(3489), 8, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3491), 20, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [309424] = 7, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [308761] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6344), 1, - aux_sym_cell_path_repeat1, - STATE(6436), 1, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + ACTIONS(10507), 1, + anon_sym_bit_DASHxor, + ACTIONS(10509), 1, + anon_sym_bit_DASHor, + ACTIONS(10511), 1, + anon_sym_and, + STATE(6431), 1, sym_comment, - STATE(6675), 1, - sym_path, - ACTIONS(903), 7, - anon_sym_DOLLAR, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(905), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [309471] = 7, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [308826] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10452), 1, anon_sym_DOT2, - STATE(6411), 1, + STATE(6369), 1, sym_path, - STATE(6437), 1, + STATE(6432), 1, sym_comment, - STATE(6927), 1, + STATE(6951), 1, sym_cell_path, - ACTIONS(967), 7, + ACTIONS(909), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -503785,7 +503407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(969), 20, + ACTIONS(911), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -503806,67 +503428,132 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [309518] = 4, + [308873] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(6438), 1, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + ACTIONS(10507), 1, + anon_sym_bit_DASHxor, + ACTIONS(10509), 1, + anon_sym_bit_DASHor, + ACTIONS(10511), 1, + anon_sym_and, + ACTIONS(10513), 1, + anon_sym_xor, + STATE(6433), 1, sym_comment, - ACTIONS(1033), 11, - sym_identifier, + ACTIONS(10487), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10489), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10493), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10499), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10501), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [308940] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10505), 1, + anon_sym_bit_DASHand, + ACTIONS(10507), 1, + anon_sym_bit_DASHxor, + ACTIONS(10509), 1, + anon_sym_bit_DASHor, + ACTIONS(10511), 1, anon_sym_and, + ACTIONS(10513), 1, anon_sym_xor, + ACTIONS(10515), 1, anon_sym_or, - ACTIONS(1035), 19, - anon_sym_DOLLAR, + STATE(6434), 1, + sym_comment, + ACTIONS(1393), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(10487), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10489), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10491), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10493), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10495), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10497), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10503), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10499), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10501), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [309559] = 5, + [309009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10256), 1, + ACTIONS(10517), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10519), 1, aux_sym__immediate_decimal_token2, - STATE(6439), 1, + STATE(6435), 1, sym_comment, - ACTIONS(2986), 8, + ACTIONS(2998), 6, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2988), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -503881,54 +503568,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309602] = 5, - ACTIONS(105), 1, + [309054] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3937), 1, - sym__entry_separator, - ACTIONS(10571), 1, - anon_sym_DOT2, - STATE(6440), 1, + ACTIONS(10521), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10523), 1, + aux_sym__immediate_decimal_token2, + STATE(6436), 1, sym_comment, - ACTIONS(3935), 28, + ACTIONS(2957), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2959), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [309645] = 5, + [309099] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4011), 1, + ACTIONS(4038), 1, sym__entry_separator, - ACTIONS(10573), 1, - anon_sym_EQ, - STATE(6441), 1, + ACTIONS(10525), 1, + anon_sym_DOT2, + STATE(6437), 1, sym_comment, - ACTIONS(4007), 28, + ACTIONS(4036), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503957,16 +503645,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [309688] = 5, + [309142] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(3842), 1, sym__entry_separator, - ACTIONS(7973), 1, - aux_sym_unquoted_token3, - STATE(6442), 1, + ACTIONS(10527), 1, + anon_sym_DOT2, + STATE(6438), 1, sym_comment, - ACTIONS(823), 28, + ACTIONS(3840), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -503995,108 +503683,108 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [309731] = 6, - ACTIONS(3), 1, + [309185] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10322), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10575), 1, + ACTIONS(3905), 1, + sym__entry_separator, + ACTIONS(10529), 1, anon_sym_DOT2, - STATE(6443), 1, + STATE(6439), 1, sym_comment, - ACTIONS(2996), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 21, + ACTIONS(3903), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309776] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [309228] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10578), 1, + ACTIONS(3911), 1, + sym__entry_separator, + ACTIONS(10531), 1, anon_sym_DOT2, - ACTIONS(10581), 1, - aux_sym__immediate_decimal_token2, - STATE(6444), 1, + STATE(6440), 1, sym_comment, - ACTIONS(3489), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3491), 21, + ACTIONS(3909), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309821] = 4, - ACTIONS(105), 1, + aux_sym__unquoted_in_list_token1, + [309271] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, - STATE(6445), 1, + ACTIONS(1253), 1, + anon_sym_EQ_GT, + ACTIONS(10533), 1, + anon_sym_DOT2, + STATE(6441), 1, sym_comment, - ACTIONS(823), 29, + ACTIONS(1255), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 23, anon_sym_DASH, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -504110,69 +503798,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [309862] = 5, + [309316] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10583), 1, - anon_sym_QMARK2, - STATE(6446), 1, + ACTIONS(10533), 1, + anon_sym_DOT2, + STATE(6442), 1, sym_comment, - ACTIONS(1054), 7, + ACTIONS(1054), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1056), 24, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 22, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309359] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3931), 1, + sym__entry_separator, + ACTIONS(6259), 1, + anon_sym_DOT2, + STATE(6443), 1, + sym_comment, + ACTIONS(3929), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309905] = 5, + aux_sym__unquoted_in_list_token1, + [309402] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10583), 1, - anon_sym_QMARK2, - STATE(6447), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6369), 1, + sym_path, + STATE(6444), 1, sym_comment, - ACTIONS(1054), 7, + STATE(6972), 1, + sym_cell_path, + ACTIONS(925), 7, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 22, + ACTIONS(927), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -504186,29 +503912,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [309948] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [309449] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6448), 1, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, + STATE(6445), 1, sym_comment, - ACTIONS(1405), 11, - sym_identifier, + ACTIONS(10535), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10539), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 14, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1407), 19, - anon_sym_DOLLAR, + [309504] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, + STATE(6446), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1393), 20, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -504223,43 +503997,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [309989] = 12, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309555] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10352), 1, + ACTIONS(10537), 1, anon_sym_DASH, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, + ACTIONS(10545), 1, anon_sym_PLUS, - STATE(6449), 1, + STATE(6447), 1, sym_comment, - ACTIONS(10350), 2, + ACTIONS(10535), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10358), 2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10356), 3, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309612] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6448), 1, + sym_comment, + ACTIONS(10539), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, anon_sym_mod, - ACTIONS(10366), 4, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 21, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, - sym_identifier, - anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 9, - anon_sym_DOLLAR, + [309659] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6449), 1, + sym_comment, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -504268,204 +504120,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310046] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309702] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10242), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, STATE(6450), 1, sym_comment, - ACTIONS(2996), 8, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1393), 18, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309755] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 21, - anon_sym_LBRACK, + ACTIONS(10545), 1, + anon_sym_PLUS, + STATE(6451), 1, + sym_comment, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 8, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309814] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [310089] = 7, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + STATE(6452), 1, + sym_comment, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309875] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6411), 1, - sym_path, - STATE(6451), 1, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + ACTIONS(10557), 1, + anon_sym_bit_DASHxor, + STATE(6453), 1, sym_comment, - STATE(6929), 1, - sym_cell_path, - ACTIONS(971), 7, - anon_sym_DOLLAR, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [309938] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(973), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(10545), 1, anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [310136] = 21, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + ACTIONS(10557), 1, + anon_sym_bit_DASHxor, + ACTIONS(10559), 1, + anon_sym_bit_DASHor, + STATE(6454), 1, + sym_comment, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310003] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + ACTIONS(10557), 1, + anon_sym_bit_DASHxor, + ACTIONS(10559), 1, + anon_sym_bit_DASHor, + ACTIONS(10561), 1, + anon_sym_and, + STATE(6455), 1, + sym_comment, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [310070] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(10352), 1, + ACTIONS(10537), 1, anon_sym_DASH, - ACTIONS(10354), 1, - anon_sym_in, - ACTIONS(10360), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10362), 1, + ACTIONS(10545), 1, anon_sym_PLUS, - ACTIONS(10372), 1, + ACTIONS(10555), 1, anon_sym_bit_DASHand, - ACTIONS(10374), 1, + ACTIONS(10557), 1, anon_sym_bit_DASHxor, - ACTIONS(10376), 1, + ACTIONS(10559), 1, anon_sym_bit_DASHor, - ACTIONS(10543), 1, + ACTIONS(10561), 1, anon_sym_and, - ACTIONS(10550), 1, + ACTIONS(10563), 1, anon_sym_xor, - ACTIONS(10585), 1, - anon_sym_or, - STATE(6452), 1, + STATE(6456), 1, sym_comment, - ACTIONS(10350), 2, + ACTIONS(10535), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10358), 2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10364), 2, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10370), 2, + ACTIONS(10553), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10356), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10368), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10366), 4, + ACTIONS(1393), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_or, + ACTIONS(10549), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [310211] = 4, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [310139] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(6453), 1, - sym_comment, - ACTIONS(1274), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + ACTIONS(10557), 1, + anon_sym_bit_DASHxor, + ACTIONS(10559), 1, + anon_sym_bit_DASHor, + ACTIONS(10561), 1, anon_sym_and, + ACTIONS(10563), 1, anon_sym_xor, + ACTIONS(10565), 1, anon_sym_or, - ACTIONS(1276), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + STATE(6457), 1, + sym_comment, + ACTIONS(1393), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [310252] = 4, + [310210] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(6454), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + STATE(6458), 1, sym_comment, - ACTIONS(1298), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1300), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1393), 14, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -504474,27 +504550,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310293] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310265] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6455), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + STATE(6459), 1, sym_comment, - ACTIONS(6826), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1305), 5, + ACTIONS(1391), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1307), 23, - anon_sym_DASH, - anon_sym_in, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(1393), 20, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -504512,66 +504595,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [310336] = 4, + [310316] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(6456), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + STATE(6460), 1, sym_comment, - ACTIONS(1294), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1296), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, + ACTIONS(1393), 10, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310377] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310373] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6457), 1, + STATE(6461), 1, sym_comment, - ACTIONS(1278), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 3, + anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1280), 19, + ACTIONS(1393), 21, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -504586,30 +504677,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310418] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_DOLLAR, - STATE(6458), 1, + STATE(6462), 1, sym_comment, - ACTIONS(1247), 10, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 18, + ACTIONS(1393), 23, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -504625,31 +504715,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310463] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310463] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(6459), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + STATE(6463), 1, sym_comment, - ACTIONS(1346), 11, - sym_identifier, + ACTIONS(1391), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1348), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(1393), 18, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -504662,290 +504758,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310504] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310516] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(6460), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + STATE(6464), 1, sym_comment, - ACTIONS(1342), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1344), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1393), 8, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310545] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310575] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(6461), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + STATE(6465), 1, sym_comment, - ACTIONS(990), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(992), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(1393), 6, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_bit_DASHor, - [310586] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310638] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(6462), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + ACTIONS(10569), 1, + anon_sym_bit_DASHor, + STATE(6466), 1, sym_comment, - ACTIONS(1393), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1395), 19, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [310627] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10587), 1, - anon_sym_DOT2, - STATE(6436), 1, - sym_path, - STATE(6463), 1, - sym_comment, - STATE(6838), 1, - sym_cell_path, - ACTIONS(997), 7, + ACTIONS(1393), 5, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(999), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [310674] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [310703] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(6464), 1, - sym_comment, - ACTIONS(1065), 6, + ACTIONS(10350), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1067), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(10360), 1, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [310715] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(6115), 1, - anon_sym_DOT2, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(6465), 1, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + ACTIONS(10569), 1, + anon_sym_bit_DASHor, + ACTIONS(10571), 1, + anon_sym_and, + STATE(6467), 1, sym_comment, - ACTIONS(10262), 27, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(10348), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10354), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [310760] = 4, + anon_sym_xor, + anon_sym_or, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [310770] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6466), 1, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, + anon_sym_PLUS, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + ACTIONS(10569), 1, + anon_sym_bit_DASHor, + ACTIONS(10571), 1, + anon_sym_and, + ACTIONS(10573), 1, + anon_sym_xor, + STATE(6468), 1, sym_comment, - ACTIONS(1288), 11, - sym_identifier, + ACTIONS(10348), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(10354), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 3, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [310839] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10350), 1, + anon_sym_DASH, + ACTIONS(10360), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + ACTIONS(10569), 1, + anon_sym_bit_DASHor, + ACTIONS(10571), 1, anon_sym_and, + ACTIONS(10573), 1, anon_sym_xor, + ACTIONS(10575), 1, anon_sym_or, - ACTIONS(1290), 19, + STATE(6469), 1, + sym_comment, + ACTIONS(1393), 2, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_LBRACE, + ACTIONS(10348), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10354), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10356), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [310801] = 5, + [310910] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, - aux_sym_unquoted_token6, - STATE(6467), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6369), 1, + sym_path, + STATE(6470), 1, sym_comment, - ACTIONS(861), 7, + STATE(6964), 1, + sym_cell_path, + ACTIONS(913), 7, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - sym_filesize_unit, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 22, + ACTIONS(915), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -504957,63 +505091,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [310844] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10322), 1, - aux_sym__immediate_decimal_token2, - STATE(6468), 1, - sym_comment, - ACTIONS(2996), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [310887] = 7, + [310957] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10452), 1, anon_sym_DOT2, - STATE(6411), 1, + STATE(6369), 1, sym_path, - STATE(6469), 1, + STATE(6471), 1, sym_comment, - STATE(6961), 1, + STATE(6965), 1, sym_cell_path, - ACTIONS(979), 7, + ACTIONS(917), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -505021,7 +505116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(981), 20, + ACTIONS(919), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -505042,41 +505137,41 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [310934] = 11, + [311004] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - STATE(6470), 1, + STATE(6472), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10602), 4, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1411), 5, + ACTIONS(1391), 5, sym_identifier, anon_sym_in, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 9, + ACTIONS(1393), 9, anon_sym_DASH_DASH, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -505086,61 +505181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [310989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6471), 1, - sym_comment, - ACTIONS(1247), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1409), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [311030] = 8, + [311059] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - STATE(6472), 1, + STATE(6473), 1, sym_comment, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, + ACTIONS(1391), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -505148,7 +505206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 15, + ACTIONS(1393), 15, anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -505164,104 +505222,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [311079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6473), 1, - sym_comment, - ACTIONS(1263), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1265), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [311120] = 13, + [311108] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, STATE(6474), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10602), 4, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1413), 6, + ACTIONS(1393), 6, anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [311179] = 7, + [311167] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, STATE(6475), 1, sym_comment, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 9, + ACTIONS(1391), 9, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -505271,7 +505292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 15, + ACTIONS(1393), 15, anon_sym_DASH_DASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -505287,15 +505308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [311226] = 5, + [311214] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(6476), 1, sym_comment, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(1411), 12, + ACTIONS(1391), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -505308,7 +505329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 16, + ACTIONS(1393), 16, anon_sym_DASH_DASH, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, @@ -505325,170 +505346,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [311269] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2988), 1, - sym__entry_separator, - ACTIONS(10283), 1, - aux_sym__immediate_decimal_token2, - STATE(6477), 1, - sym_comment, - ACTIONS(2986), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [311312] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(1413), 1, - anon_sym_DASH_DASH, - ACTIONS(10598), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, - anon_sym_in, - ACTIONS(10610), 1, - anon_sym_bit_DASHand, - ACTIONS(10612), 1, - anon_sym_bit_DASHxor, - ACTIONS(10614), 1, - anon_sym_bit_DASHor, - ACTIONS(10616), 1, - anon_sym_and, - ACTIONS(10618), 1, - anon_sym_xor, - ACTIONS(10620), 1, - anon_sym_or, - STATE(6478), 1, - sym_comment, - ACTIONS(10590), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10596), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10608), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10594), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10606), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10602), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [311385] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_DASH_DASH, - ACTIONS(10598), 1, - anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, - anon_sym_in, - ACTIONS(10610), 1, - anon_sym_bit_DASHand, - ACTIONS(10612), 1, - anon_sym_bit_DASHxor, - ACTIONS(10614), 1, - anon_sym_bit_DASHor, - ACTIONS(10616), 1, - anon_sym_and, - ACTIONS(10618), 1, - anon_sym_xor, - STATE(6479), 1, - sym_comment, - ACTIONS(1411), 2, - sym_identifier, - anon_sym_or, - ACTIONS(10590), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10592), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10596), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10608), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10594), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(10606), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10602), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [311456] = 9, + [311257] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - STATE(6480), 1, + STATE(6477), 1, sym_comment, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(1411), 7, + ACTIONS(1391), 7, sym_identifier, anon_sym_GT, anon_sym_in, @@ -505496,7 +505374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 13, + ACTIONS(1393), 13, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -505510,489 +505388,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [311507] = 14, + [311308] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, - STATE(6481), 1, + STATE(6478), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10608), 2, + ACTIONS(10595), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1413), 4, + ACTIONS(1393), 4, anon_sym_DASH_DASH, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - ACTIONS(10602), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [311568] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6482), 1, - sym_comment, - ACTIONS(1338), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1340), 19, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [311609] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10194), 1, - aux_sym__immediate_decimal_token2, - STATE(6483), 1, - sym_comment, - ACTIONS(2986), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [311652] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10622), 1, - aux_sym__immediate_decimal_token2, - STATE(6484), 1, - sym_comment, - ACTIONS(3834), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3836), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [311695] = 18, + [311369] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_DASH_DASH, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, - ACTIONS(10610), 1, + ACTIONS(10597), 1, anon_sym_bit_DASHand, - ACTIONS(10612), 1, - anon_sym_bit_DASHxor, - ACTIONS(10614), 1, - anon_sym_bit_DASHor, - ACTIONS(10616), 1, - anon_sym_and, - STATE(6485), 1, + STATE(6479), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10608), 2, + ACTIONS(10595), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1411), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(10594), 3, + ACTIONS(1393), 3, + anon_sym_DASH_DASH, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10602), 4, + ACTIONS(1391), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [311764] = 15, + [311432] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, - ACTIONS(10610), 1, + ACTIONS(10597), 1, anon_sym_bit_DASHand, - STATE(6486), 1, + ACTIONS(10599), 1, + anon_sym_bit_DASHxor, + STATE(6480), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(1393), 2, + anon_sym_DASH_DASH, + anon_sym_bit_DASHor, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10608), 2, + ACTIONS(10595), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10602), 4, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [311827] = 17, + [311497] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1413), 1, + ACTIONS(1393), 1, anon_sym_DASH_DASH, - ACTIONS(10598), 1, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, - ACTIONS(10610), 1, + ACTIONS(10597), 1, anon_sym_bit_DASHand, - ACTIONS(10612), 1, + ACTIONS(10599), 1, anon_sym_bit_DASHxor, - ACTIONS(10614), 1, + ACTIONS(10601), 1, anon_sym_bit_DASHor, - STATE(6487), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10608), 2, + ACTIONS(10595), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, + ACTIONS(1391), 4, sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(10602), 4, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [311894] = 4, + [311564] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6488), 1, + ACTIONS(1393), 1, + anon_sym_DASH_DASH, + ACTIONS(10585), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10591), 1, + anon_sym_in, + ACTIONS(10597), 1, + anon_sym_bit_DASHand, + ACTIONS(10599), 1, + anon_sym_bit_DASHxor, + ACTIONS(10601), 1, + anon_sym_bit_DASHor, + ACTIONS(10603), 1, + anon_sym_and, + STATE(6482), 1, sym_comment, - ACTIONS(1282), 11, - sym_identifier, + ACTIONS(10577), 2, anon_sym_GT, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1284), 19, - anon_sym_DOLLAR, + ACTIONS(10579), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10595), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1391), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(10581), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10593), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [311935] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10403), 1, - anon_sym_DOT2, - STATE(6411), 1, - sym_path, - STATE(6489), 1, - sym_comment, - STATE(6964), 1, - sym_cell_path, - ACTIONS(909), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(911), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [311982] = 4, + [311633] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(6490), 1, - sym_comment, - ACTIONS(1338), 11, - sym_identifier, - anon_sym_GT, + ACTIONS(1393), 1, + anon_sym_DASH_DASH, + ACTIONS(10585), 1, + anon_sym_SLASH_SLASH, + ACTIONS(10591), 1, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(10597), 1, + anon_sym_bit_DASHand, + ACTIONS(10599), 1, + anon_sym_bit_DASHxor, + ACTIONS(10601), 1, + anon_sym_bit_DASHor, + ACTIONS(10603), 1, anon_sym_and, + ACTIONS(10605), 1, anon_sym_xor, + STATE(6483), 1, + sym_comment, + ACTIONS(1391), 2, + sym_identifier, anon_sym_or, - ACTIONS(1340), 19, - anon_sym_DOLLAR, + ACTIONS(10577), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10579), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(10595), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10581), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(10593), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [312023] = 16, + [311704] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_DASH_DASH, + ACTIONS(10585), 1, anon_sym_SLASH_SLASH, - ACTIONS(10604), 1, + ACTIONS(10591), 1, anon_sym_in, - ACTIONS(10610), 1, + ACTIONS(10597), 1, anon_sym_bit_DASHand, - ACTIONS(10612), 1, + ACTIONS(10599), 1, anon_sym_bit_DASHxor, - STATE(6491), 1, - sym_comment, - ACTIONS(1413), 2, - anon_sym_DASH_DASH, + ACTIONS(10601), 1, anon_sym_bit_DASHor, - ACTIONS(10590), 2, + ACTIONS(10603), 1, + anon_sym_and, + ACTIONS(10605), 1, + anon_sym_xor, + ACTIONS(10607), 1, + anon_sym_or, + STATE(6484), 1, + sym_comment, + ACTIONS(10577), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10592), 2, + ACTIONS(10579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10596), 2, + ACTIONS(10583), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10600), 2, + ACTIONS(10587), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10608), 2, + ACTIONS(10595), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10594), 3, + ACTIONS(10581), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(10606), 3, + ACTIONS(10593), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(1411), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10602), 4, + ACTIONS(10589), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [312088] = 4, + [311777] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4334), 1, + ACTIONS(6259), 1, + anon_sym_DOT2, + ACTIONS(10611), 1, + anon_sym_RBRACK, + ACTIONS(10614), 1, sym__entry_separator, - STATE(6492), 1, + STATE(6485), 1, sym_comment, - ACTIONS(4332), 28, + ACTIONS(10609), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -506018,17 +505777,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [312128] = 4, + [311822] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(6493), 1, + ACTIONS(6259), 1, + anon_sym_DOT2, + ACTIONS(10325), 1, + anon_sym_RBRACK, + STATE(6486), 1, sym_comment, - ACTIONS(3947), 28, + ACTIONS(10323), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -506054,130 +505816,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [312168] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - ACTIONS(10648), 1, - anon_sym_bit_DASHor, - ACTIONS(10650), 1, - anon_sym_and, - ACTIONS(10652), 1, - anon_sym_xor, - STATE(6494), 1, - sym_comment, - ACTIONS(1413), 2, - anon_sym_LBRACE, - anon_sym_or, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [312236] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_LBRACE, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - ACTIONS(10648), 1, - anon_sym_bit_DASHor, - ACTIONS(10650), 1, - anon_sym_and, - ACTIONS(10652), 1, - anon_sym_xor, - ACTIONS(10654), 1, - anon_sym_or, - STATE(6495), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [312306] = 4, + [311867] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6496), 1, + ACTIONS(10452), 1, + anon_sym_DOT2, + STATE(6369), 1, + sym_path, + STATE(6487), 1, sym_comment, - ACTIONS(2996), 8, + STATE(6878), 1, + sym_cell_path, + ACTIONS(929), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 21, + ACTIONS(931), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -506191,171 +505854,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [312346] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [311914] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1254), 1, - sym__entry_separator, - STATE(6497), 1, + ACTIONS(10616), 1, + anon_sym_DOT2, + ACTIONS(10618), 1, + aux_sym__immediate_decimal_token2, + STATE(6488), 1, sym_comment, - ACTIONS(1252), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3165), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [312386] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8596), 1, - sym__entry_separator, - STATE(6498), 1, - sym_comment, - ACTIONS(8594), 28, + ACTIONS(3167), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312426] = 17, + [311959] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - ACTIONS(10648), 1, - anon_sym_bit_DASHor, - ACTIONS(10650), 1, - anon_sym_and, - STATE(6499), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_LBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [312492] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - STATE(6500), 1, + ACTIONS(10519), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10620), 1, + anon_sym_DOT2, + STATE(6489), 1, sym_comment, - ACTIONS(1102), 28, + ACTIONS(2998), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312532] = 4, + [312004] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(3979), 1, sym__entry_separator, - STATE(6501), 1, + ACTIONS(10622), 1, + anon_sym_DOT2, + STATE(6490), 1, sym_comment, - ACTIONS(1294), 28, + ACTIONS(3977), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -506384,14 +505972,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [312572] = 4, + [312047] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1280), 1, + ACTIONS(4174), 1, sym__entry_separator, - STATE(6502), 1, + STATE(6491), 1, sym_comment, - ACTIONS(1278), 28, + ACTIONS(4172), 29, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -506400,6 +505988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -506420,64 +506009,66 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [312612] = 4, - ACTIONS(105), 1, + [312088] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1276), 1, - sym__entry_separator, - STATE(6503), 1, + ACTIONS(6364), 1, + anon_sym_DOT2, + STATE(6492), 1, sym_comment, - ACTIONS(1274), 28, + ACTIONS(10609), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(10624), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312652] = 4, + [312130] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6504), 1, + ACTIONS(10626), 1, + anon_sym_DOT2, + STATE(6493), 1, sym_comment, - ACTIONS(3834), 8, + ACTIONS(4036), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3836), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4038), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -506492,100 +506083,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [312692] = 4, - ACTIONS(105), 1, + [312172] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1300), 1, - sym__entry_separator, - STATE(6505), 1, + ACTIONS(10628), 1, + anon_sym_DOT2, + STATE(6494), 1, sym_comment, - ACTIONS(1298), 28, + ACTIONS(3840), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3842), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312732] = 4, - ACTIONS(105), 1, + [312214] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, - sym__entry_separator, - STATE(6506), 1, + ACTIONS(10630), 1, + anon_sym_DOT2, + STATE(6495), 1, sym_comment, - ACTIONS(990), 28, + ACTIONS(3903), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3905), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312772] = 4, + [312256] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6507), 1, + ACTIONS(10632), 1, + anon_sym_DOT2, + STATE(6496), 1, sym_comment, - ACTIONS(3888), 8, + ACTIONS(3909), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3890), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3911), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -506600,25 +506194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [312812] = 4, + [312298] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6508), 1, + STATE(6497), 1, sym_comment, - ACTIONS(1098), 7, + ACTIONS(877), 6, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1100), 22, + ACTIONS(879), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -506630,155 +506222,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [312852] = 16, + [312338] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - ACTIONS(10648), 1, - anon_sym_bit_DASHor, - STATE(6509), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 4, - anon_sym_LBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [312916] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4354), 1, - sym__entry_separator, - STATE(6510), 1, + STATE(6498), 1, sym_comment, - ACTIONS(4352), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1177), 6, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1179), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [312956] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_EQ_GT, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - ACTIONS(10680), 1, - anon_sym_bit_DASHor, - ACTIONS(10682), 1, - anon_sym_and, - ACTIONS(10684), 1, - anon_sym_xor, - ACTIONS(10686), 1, - anon_sym_or, - STATE(6511), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [313026] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [312378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10690), 1, + ACTIONS(10636), 1, anon_sym_RBRACK, - STATE(6512), 1, + STATE(6499), 1, sym_comment, - ACTIONS(10692), 7, + ACTIONS(10638), 7, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, @@ -506786,7 +506281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10688), 21, + ACTIONS(10634), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -506808,69 +506303,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [313068] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - STATE(6513), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_LBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313130] = 4, + [312420] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1307), 1, - sym__entry_separator, - STATE(6514), 1, + ACTIONS(8082), 1, + aux_sym_unquoted_token3, + STATE(6500), 1, sym_comment, - ACTIONS(1305), 28, + ACTIONS(829), 7, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(827), 21, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -506887,26 +506339,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [313170] = 6, + [312462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10694), 1, + ACTIONS(10640), 1, anon_sym_in, - ACTIONS(10697), 1, + ACTIONS(10643), 1, anon_sym_DOT2, - STATE(6515), 1, + STATE(6501), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(1255), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(1409), 22, + ACTIONS(1385), 22, anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -506929,28 +506378,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [313214] = 4, + [312506] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6516), 1, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(6502), 1, sym_comment, - ACTIONS(1259), 8, + ACTIONS(2998), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1261), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -506965,100 +506415,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [313254] = 14, + [312548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, + ACTIONS(10645), 1, + anon_sym_QMARK2, + STATE(6503), 1, + sym_comment, + ACTIONS(1070), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(10636), 1, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1072), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - STATE(6517), 1, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [312590] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10645), 1, + anon_sym_QMARK2, + STATE(6504), 1, sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, + ACTIONS(1070), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1072), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313314] = 6, - ACTIONS(105), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [312632] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10701), 1, - anon_sym_COMMA, - ACTIONS(10703), 1, - anon_sym_RBRACK, - ACTIONS(10705), 1, - sym__entry_separator, - STATE(6518), 1, + STATE(6505), 1, sym_comment, - ACTIONS(10699), 26, + ACTIONS(1221), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1223), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [312672] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6364), 1, + anon_sym_DOT2, + STATE(6506), 1, + sym_comment, + ACTIONS(3929), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3931), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [313358] = 6, + [312714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10707), 1, + ACTIONS(10647), 1, anon_sym_DOT2, - ACTIONS(10709), 1, + ACTIONS(10650), 1, aux_sym__immediate_decimal_token2, - STATE(6519), 1, + STATE(6507), 1, sym_comment, - ACTIONS(3489), 7, + ACTIONS(3165), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -507066,7 +506579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3491), 20, + ACTIONS(3167), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -507087,94 +506600,133 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [313402] = 4, - ACTIONS(105), 1, + [312758] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1311), 1, - sym__entry_separator, - STATE(6520), 1, + ACTIONS(10652), 1, + anon_sym_DOT2, + STATE(6508), 1, sym_comment, - ACTIONS(1309), 28, + ACTIONS(3977), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3979), 20, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [313442] = 5, - ACTIONS(105), 1, + [312800] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8091), 1, - aux_sym_unquoted_token3, - STATE(6521), 1, + ACTIONS(10654), 1, + anon_sym_DOT2, + STATE(6509), 1, sym_comment, - ACTIONS(825), 7, + ACTIONS(4026), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4028), 20, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(823), 21, - anon_sym_COMMA, + [312842] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10372), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10656), 1, + anon_sym_DOT2, + STATE(6510), 1, + sym_comment, + ACTIONS(2998), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3000), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - aux_sym__unquoted_in_list_token1, - [313484] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [312886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10380), 1, + ACTIONS(10519), 1, aux_sym__immediate_decimal_token2, - STATE(6522), 1, + STATE(6511), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(2998), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, + ACTIONS(3000), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507197,312 +506749,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [313526] = 13, + [312928] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - STATE(6523), 1, + ACTIONS(10659), 1, + anon_sym_DOT2, + STATE(6512), 1, sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, + ACTIONS(4036), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4038), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313584] = 10, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [312970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - STATE(6524), 1, + ACTIONS(10661), 1, + anon_sym_DOT2, + STATE(6513), 1, sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1413), 17, - anon_sym_in, + ACTIONS(3840), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3842), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313636] = 18, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313012] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10658), 1, + STATE(6514), 1, + sym_comment, + ACTIONS(1217), 8, anon_sym_DASH, - ACTIONS(10668), 1, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1219), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - ACTIONS(10680), 1, - anon_sym_bit_DASHor, - ACTIONS(10682), 1, - anon_sym_and, - ACTIONS(10684), 1, - anon_sym_xor, - STATE(6525), 1, - sym_comment, - ACTIONS(1413), 2, - anon_sym_EQ_GT, - anon_sym_or, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [313704] = 5, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313052] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6526), 1, + ACTIONS(10663), 1, + anon_sym_DOT2, + STATE(6515), 1, sym_comment, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 22, + ACTIONS(3903), 8, anon_sym_DASH, - anon_sym_in, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3905), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313746] = 7, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313094] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6527), 1, + ACTIONS(10665), 1, + anon_sym_DOT2, + STATE(6516), 1, sym_comment, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 3, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 20, + ACTIONS(3909), 8, anon_sym_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [313792] = 4, - ACTIONS(105), 1, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3911), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313136] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - STATE(6528), 1, + ACTIONS(10523), 1, + aux_sym__immediate_decimal_token2, + STATE(6517), 1, sym_comment, - ACTIONS(4386), 28, + ACTIONS(2957), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2959), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [313832] = 4, - ACTIONS(105), 1, + [313178] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - sym__entry_separator, - STATE(6529), 1, + ACTIONS(10667), 1, + aux_sym__immediate_decimal_token2, + STATE(6518), 1, sym_comment, - ACTIONS(4390), 28, + ACTIONS(3804), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3806), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [313872] = 4, + [313220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6530), 1, + STATE(6519), 1, sym_comment, - ACTIONS(1113), 7, - anon_sym_DOLLAR, + ACTIONS(1221), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1115), 22, + aux_sym_unquoted_token1, + ACTIONS(1223), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, - anon_sym_QMARK2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -507516,16 +507043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [313912] = 4, + [313260] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(3931), 1, sym__entry_separator, - STATE(6531), 1, + STATE(6520), 1, sym_comment, - ACTIONS(1243), 28, + ACTIONS(3929), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507554,14 +507079,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [313952] = 5, + [313300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6376), 1, + ACTIONS(6364), 1, anon_sym_DOT2, - STATE(6532), 1, + STATE(6521), 1, sym_comment, - ACTIONS(4013), 7, + ACTIONS(10323), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -507569,7 +507094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4015), 21, + ACTIONS(10471), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507591,63 +507116,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [313994] = 17, + [313342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10658), 1, + STATE(6522), 1, + sym_comment, + ACTIONS(2998), 8, anon_sym_DASH, - ACTIONS(10668), 1, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3000), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - ACTIONS(10680), 1, - anon_sym_bit_DASHor, - ACTIONS(10682), 1, - anon_sym_and, - STATE(6533), 1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313382] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10669), 1, + anon_sym_EQ, + STATE(6523), 1, sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 3, - anon_sym_EQ_GT, - anon_sym_xor, - anon_sym_or, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [314060] = 4, + ACTIONS(3942), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3946), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313424] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1315), 1, + ACTIONS(1219), 1, sym__entry_separator, - STATE(6534), 1, + STATE(6524), 1, sym_comment, - ACTIONS(1313), 28, + ACTIONS(1217), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507676,18 +507225,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314100] = 5, + [313464] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(1223), 1, sym__entry_separator, - ACTIONS(10713), 1, - anon_sym_RBRACK, - STATE(6535), 1, + STATE(6525), 1, sym_comment, - ACTIONS(10711), 27, + ACTIONS(1221), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -507713,14 +507261,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314142] = 4, + [313504] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6526), 1, + sym_comment, + ACTIONS(2957), 8, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [313544] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1319), 1, + ACTIONS(10673), 1, sym__entry_separator, - STATE(6536), 1, + STATE(6527), 1, sym_comment, - ACTIONS(1317), 28, + ACTIONS(10671), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507749,29 +507333,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314182] = 6, + [313584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10716), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10718), 1, - aux_sym__immediate_decimal_token2, - STATE(6537), 1, + STATE(6528), 1, sym_comment, - ACTIONS(2996), 6, - anon_sym_DOLLAR, + ACTIONS(3804), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + aux_sym_unquoted_token1, + ACTIONS(3806), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -507785,16 +507369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [314226] = 4, + [313624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1305), 1, sym__entry_separator, - STATE(6538), 1, + STATE(6529), 1, sym_comment, - ACTIONS(1259), 28, + ACTIONS(1303), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507823,16 +507405,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314266] = 6, + [313664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10718), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10720), 1, - anon_sym_DOT2, - STATE(6539), 1, + STATE(6530), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(1082), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -507840,10 +507418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 20, + ACTIONS(1084), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -507861,29 +507441,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [314310] = 4, + [313704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6540), 1, + STATE(6531), 1, sym_comment, - ACTIONS(1222), 7, + ACTIONS(1086), 7, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1224), 22, + ACTIONS(1088), 22, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, + anon_sym_QMARK2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -507897,14 +507475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [314350] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [313744] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1323), 1, + ACTIONS(1309), 1, sym__entry_separator, - STATE(6541), 1, + STATE(6532), 1, sym_comment, - ACTIONS(1321), 28, + ACTIONS(1307), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -507933,184 +507513,86 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314390] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - STATE(6542), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 9, - anon_sym_LBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [314446] = 16, - ACTIONS(3), 1, + [313784] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - ACTIONS(10680), 1, - anon_sym_bit_DASHor, - STATE(6543), 1, + ACTIONS(1084), 1, + sym__entry_separator, + STATE(6533), 1, sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(1413), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [314510] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, + ACTIONS(1082), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - STATE(6544), 1, - sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1413), 19, - anon_sym_in, anon_sym_LBRACE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [314560] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10722), 1, - anon_sym_DOT2, - STATE(6545), 1, - sym_comment, - ACTIONS(3909), 8, - anon_sym_DASH, - anon_sym__, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3911), 20, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [313824] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1088), 1, + sym__entry_separator, + STATE(6534), 1, + sym_comment, + ACTIONS(1086), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [314602] = 4, + aux_sym__unquoted_in_list_token1, + [313864] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1327), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(6546), 1, + STATE(6535), 1, sym_comment, - ACTIONS(1325), 28, + ACTIONS(1054), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508139,51 +507621,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314642] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10697), 1, - anon_sym_DOT2, - STATE(6547), 1, - sym_comment, - ACTIONS(1102), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1104), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [314684] = 4, + [313904] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(1331), 1, sym__entry_separator, - STATE(6548), 1, + STATE(6536), 1, sym_comment, - ACTIONS(3888), 28, + ACTIONS(1329), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508212,29 +507657,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314724] = 6, + [313944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10724), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10726), 1, - aux_sym__immediate_decimal_token2, - STATE(6549), 1, + STATE(6537), 1, sym_comment, - ACTIONS(2986), 6, - anon_sym_DOLLAR, + ACTIONS(4032), 8, anon_sym_DASH, + anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + aux_sym_unquoted_token1, + ACTIONS(4034), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -508248,16 +507693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [314768] = 4, + [313984] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1100), 1, + ACTIONS(4492), 1, sym__entry_separator, - STATE(6550), 1, + STATE(6538), 1, sym_comment, - ACTIONS(1098), 28, + ACTIONS(4490), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508286,61 +507729,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314808] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - STATE(6551), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 5, - anon_sym_EQ_GT, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [314870] = 4, + [314024] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1334), 1, + ACTIONS(1335), 1, sym__entry_separator, - STATE(6552), 1, + STATE(6539), 1, sym_comment, - ACTIONS(1332), 28, + ACTIONS(1333), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508369,352 +507765,282 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [314910] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - STATE(6553), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 6, - anon_sym_EQ_GT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [314970] = 5, - ACTIONS(3), 1, + [314064] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10728), 1, - anon_sym_QMARK2, - STATE(6554), 1, + ACTIONS(1339), 1, + sym__entry_separator, + STATE(6540), 1, sym_comment, - ACTIONS(1054), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1056), 21, + ACTIONS(1337), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [315012] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [314104] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10728), 1, - anon_sym_QMARK2, - STATE(6555), 1, + ACTIONS(911), 1, + sym__entry_separator, + STATE(6541), 1, sym_comment, - ACTIONS(1054), 7, + ACTIONS(909), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1056), 21, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [314144] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4305), 1, + sym__entry_separator, + STATE(6542), 1, + sym_comment, + ACTIONS(4303), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [315054] = 13, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [314184] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - STATE(6556), 1, + ACTIONS(931), 1, + sym__entry_separator, + ACTIONS(10677), 1, + anon_sym_RBRACK, + STATE(6543), 1, sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 7, - anon_sym_EQ_GT, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315112] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, + ACTIONS(10675), 27, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - STATE(6557), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 13, - anon_sym_in, anon_sym_LBRACE, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6558), 1, - sym_comment, - ACTIONS(3888), 7, - anon_sym_DASH, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - ACTIONS(3890), 22, + [314226] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + sym__entry_separator, + STATE(6544), 1, + sym_comment, + ACTIONS(1341), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315206] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [314266] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6559), 1, + ACTIONS(1253), 1, + sym__entry_separator, + STATE(6545), 1, sym_comment, - ACTIONS(3834), 7, + ACTIONS(1251), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - ACTIONS(3836), 22, + [314306] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10099), 1, + sym__entry_separator, + STATE(6546), 1, + sym_comment, + ACTIONS(10093), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315246] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - STATE(6560), 1, - sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1413), 17, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315298] = 5, + aux_sym__unquoted_in_list_token1, + [314346] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10730), 1, + ACTIONS(10680), 1, anon_sym_DOT2, - STATE(6561), 1, + ACTIONS(10682), 1, + aux_sym__immediate_decimal_token2, + STATE(6547), 1, sym_comment, - ACTIONS(3941), 8, + ACTIONS(3165), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3943), 20, + ACTIONS(3167), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -508728,87 +508054,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315340] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [314390] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6562), 1, + ACTIONS(1347), 1, + sym__entry_separator, + STATE(6548), 1, sym_comment, - ACTIONS(2986), 7, + ACTIONS(1345), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, + [314430] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4257), 1, + sym__entry_separator, + STATE(6549), 1, + sym_comment, + ACTIONS(4255), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315380] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6563), 1, - sym_comment, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1411), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 22, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315422] = 4, + aux_sym__unquoted_in_list_token1, + [314470] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(4281), 1, sym__entry_separator, - STATE(6564), 1, + STATE(6550), 1, sym_comment, - ACTIONS(4013), 28, + ACTIONS(4279), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508837,53 +508164,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [315462] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6565), 1, - sym_comment, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1411), 3, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1413), 20, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315508] = 4, + [314510] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10734), 1, + ACTIONS(10686), 1, sym__entry_separator, - STATE(6566), 1, + STATE(6551), 1, sym_comment, - ACTIONS(10732), 28, + ACTIONS(10684), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508912,14 +508200,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [315548] = 4, + [314550] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6552), 1, + sym_comment, + ACTIONS(2998), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3000), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [314590] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(1351), 1, sym__entry_separator, - STATE(6567), 1, + STATE(6553), 1, sym_comment, - ACTIONS(1288), 28, + ACTIONS(1349), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -508948,29 +508272,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [315588] = 4, + [314630] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6568), 1, + ACTIONS(10688), 1, + sym_filesize_unit, + ACTIONS(10690), 1, + sym_duration_unit, + STATE(6554), 1, sym_comment, - ACTIONS(2986), 8, + ACTIONS(1054), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2988), 21, + ACTIONS(1056), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -508984,53 +508308,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315628] = 9, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [314674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10658), 1, + STATE(6555), 1, + sym_comment, + ACTIONS(2957), 7, anon_sym_DASH, - ACTIONS(10668), 1, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2959), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, - STATE(6569), 1, - sym_comment, - ACTIONS(1411), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1413), 19, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315678] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [314714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6570), 1, + STATE(6556), 1, sym_comment, - ACTIONS(1228), 7, + ACTIONS(3804), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -509038,7 +508359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1230), 22, + ACTIONS(3806), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509061,14 +508382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315718] = 4, + [314754] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4342), 1, + ACTIONS(1355), 1, sym__entry_separator, - STATE(6571), 1, + STATE(6557), 1, sym_comment, - ACTIONS(4340), 28, + ACTIONS(1353), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509097,29 +508418,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [315758] = 4, + [314794] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6572), 1, + ACTIONS(10692), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10694), 1, + aux_sym__immediate_decimal_token2, + STATE(6558), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(2998), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, + ACTIONS(3000), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509133,73 +508454,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315798] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - STATE(6573), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 13, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [315852] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [314838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10736), 1, + ACTIONS(10694), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10696), 1, anon_sym_DOT2, - STATE(6574), 1, + STATE(6559), 1, sym_comment, - ACTIONS(3927), 8, + ACTIONS(2998), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3929), 20, + ACTIONS(3000), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509213,65 +508492,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315894] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [314882] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6575), 1, + ACTIONS(1359), 1, + sym__entry_separator, + STATE(6560), 1, sym_comment, - ACTIONS(1189), 7, + ACTIONS(1357), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - ACTIONS(1191), 22, + [314922] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1363), 1, + sym__entry_separator, + STATE(6561), 1, + sym_comment, + ACTIONS(1361), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [315934] = 6, + aux_sym__unquoted_in_list_token1, + [314962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10738), 1, + ACTIONS(6364), 1, anon_sym_DOT2, - ACTIONS(10741), 1, - aux_sym__immediate_decimal_token2, - STATE(6576), 1, + STATE(6562), 1, sym_comment, - ACTIONS(3489), 7, - anon_sym_DOLLAR, + ACTIONS(1054), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3491), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 21, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509285,32 +508603,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [315978] = 5, + [315004] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10743), 1, - anon_sym_DOT2, - STATE(6577), 1, + ACTIONS(10698), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10700), 1, + aux_sym__immediate_decimal_token2, + STATE(6563), 1, sym_comment, - ACTIONS(3921), 8, + ACTIONS(2957), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3923), 20, + ACTIONS(2959), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509324,14 +508639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [316020] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [315048] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(1370), 1, sym__entry_separator, - STATE(6578), 1, + STATE(6564), 1, sym_comment, - ACTIONS(2986), 28, + ACTIONS(1368), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509360,58 +508677,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316060] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_DASH, - ACTIONS(10668), 1, - anon_sym_PLUS, - STATE(6579), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1413), 9, - anon_sym_EQ_GT, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [316116] = 4, + [315088] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1115), 1, + ACTIONS(8335), 1, sym__entry_separator, - STATE(6580), 1, + STATE(6565), 1, sym_comment, - ACTIONS(1113), 28, + ACTIONS(8333), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509440,25 +508713,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316156] = 4, + [315128] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6581), 1, + STATE(6566), 1, sym_comment, - ACTIONS(1065), 6, - anon_sym_DOLLAR, + ACTIONS(4032), 7, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1067), 23, + aux_sym__unquoted_in_list_token1, + ACTIONS(4034), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509468,37 +508745,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [316196] = 6, + [315168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10509), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10745), 1, - anon_sym_DOT2, - STATE(6582), 1, + ACTIONS(10702), 1, + anon_sym_RBRACK, + STATE(6567), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(10638), 7, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(10634), 21, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -509514,50 +508786,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [316240] = 4, - ACTIONS(3), 1, + [315210] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6583), 1, + ACTIONS(3000), 1, + sym__entry_separator, + STATE(6568), 1, sym_comment, - ACTIONS(861), 6, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(863), 23, + ACTIONS(2998), 28, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [316280] = 4, + aux_sym__unquoted_in_list_token1, + [315250] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4338), 1, + ACTIONS(2959), 1, sym__entry_separator, - STATE(6584), 1, + STATE(6569), 1, sym_comment, - ACTIONS(4336), 28, + ACTIONS(2957), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509586,14 +508858,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316320] = 4, + [315290] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4330), 1, + ACTIONS(4250), 1, sym__entry_separator, - STATE(6585), 1, + STATE(6570), 1, sym_comment, - ACTIONS(4328), 28, + ACTIONS(4248), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509622,14 +508894,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316360] = 5, + [315330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10509), 1, + ACTIONS(10372), 1, aux_sym__immediate_decimal_token2, - STATE(6586), 1, + STATE(6571), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(2998), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -509637,7 +508909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -509659,14 +508931,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [316402] = 5, + [315372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10517), 1, + ACTIONS(10643), 1, + anon_sym_DOT2, + STATE(6572), 1, + sym_comment, + ACTIONS(1054), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1056), 23, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [315414] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10376), 1, aux_sym__immediate_decimal_token2, - STATE(6587), 1, + STATE(6573), 1, sym_comment, - ACTIONS(2986), 7, + ACTIONS(2957), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -509674,7 +508983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + ACTIONS(2959), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -509696,14 +509005,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [316444] = 5, + [315456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10748), 1, + ACTIONS(10704), 1, aux_sym__immediate_decimal_token2, - STATE(6588), 1, + STATE(6574), 1, sym_comment, - ACTIONS(3834), 7, + ACTIONS(3804), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -509711,7 +509020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3836), 21, + ACTIONS(3806), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -509733,65 +509042,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [316486] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1284), 1, - sym__entry_separator, - STATE(6589), 1, - sym_comment, - ACTIONS(1282), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [316526] = 5, + [315498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_DOT2, - STATE(6590), 1, + ACTIONS(10384), 1, + aux_sym__immediate_decimal_token2, + STATE(6575), 1, sym_comment, - ACTIONS(10262), 7, + ACTIONS(2998), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10529), 21, + aux_sym_unquoted_token1, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -509806,14 +509079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [316568] = 4, + [315540] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4360), 1, + ACTIONS(4034), 1, sym__entry_separator, - STATE(6591), 1, + STATE(6576), 1, sym_comment, - ACTIONS(4358), 28, + ACTIONS(4032), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -509842,100 +509115,66 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316608] = 4, - ACTIONS(105), 1, + [315580] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4364), 1, - sym__entry_separator, - STATE(6592), 1, + ACTIONS(10390), 1, + aux_sym__immediate_decimal_token2, + STATE(6577), 1, sym_comment, - ACTIONS(4362), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2957), 7, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym__, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [316648] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1340), 1, - sym__entry_separator, - STATE(6593), 1, - sym_comment, - ACTIONS(1338), 28, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [316688] = 4, + [315622] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6594), 1, + ACTIONS(10706), 1, + aux_sym__immediate_decimal_token2, + STATE(6578), 1, sym_comment, - ACTIONS(1259), 7, + ACTIONS(3804), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1261), 22, + aux_sym_unquoted_token1, + ACTIONS(3806), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -509950,86 +509189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [316728] = 4, - ACTIONS(105), 1, + [315664] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1340), 1, - sym__entry_separator, - STATE(6595), 1, + STATE(6579), 1, sym_comment, - ACTIONS(1338), 28, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1185), 7, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316768] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - STATE(6596), 1, - sym_comment, - ACTIONS(1005), 28, + ACTIONS(1187), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [316808] = 4, + [315704] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1344), 1, + ACTIONS(3891), 1, sym__entry_separator, - STATE(6597), 1, + STATE(6580), 1, sym_comment, - ACTIONS(1342), 28, + ACTIONS(3887), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510058,14 +509261,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316848] = 4, + [315744] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1348), 1, + ACTIONS(1321), 1, sym__entry_separator, - STATE(6598), 1, + STATE(6581), 1, sym_comment, - ACTIONS(1346), 28, + ACTIONS(1319), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510094,51 +509297,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [316888] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10750), 1, - sym_long_flag_identifier, - STATE(6599), 1, - sym_comment, - ACTIONS(3947), 11, - anon_sym_DASH, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3951), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [316930] = 5, + [315784] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10752), 1, - anon_sym_DOT2, - STATE(6600), 1, + STATE(6582), 1, sym_comment, - ACTIONS(3927), 7, + ACTIONS(1209), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -510146,7 +509310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3929), 21, + ACTIONS(1211), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510154,6 +509318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -510168,14 +509333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [316972] = 5, + [315824] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10754), 1, - anon_sym_DOT2, - STATE(6601), 1, + STATE(6583), 1, sym_comment, - ACTIONS(3935), 7, + ACTIONS(1213), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -510183,7 +509346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3937), 21, + ACTIONS(1215), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510191,6 +509354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -510205,51 +509369,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317014] = 5, - ACTIONS(3), 1, + [315864] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_DOT2, - STATE(6602), 1, + ACTIONS(1268), 1, + sym__entry_separator, + STATE(6584), 1, sym_comment, - ACTIONS(1102), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 21, + ACTIONS(1266), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317056] = 4, + aux_sym__unquoted_in_list_token1, + [315904] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(1268), 1, sym__entry_separator, - STATE(6603), 1, + STATE(6585), 1, sym_comment, - ACTIONS(2996), 28, + ACTIONS(1266), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510278,14 +509441,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317096] = 4, + [315944] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(951), 1, sym__entry_separator, - STATE(6604), 1, + STATE(6586), 1, sym_comment, - ACTIONS(1033), 28, + ACTIONS(949), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510314,51 +509477,93 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317136] = 5, - ACTIONS(3), 1, + [315984] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10756), 1, - anon_sym_DOT2, - STATE(6605), 1, + ACTIONS(1272), 1, + sym__entry_separator, + STATE(6587), 1, sym_comment, - ACTIONS(3921), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3923), 21, + ACTIONS(1270), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317178] = 4, + aux_sym__unquoted_in_list_token1, + [316024] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + STATE(6588), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 13, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316078] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1352), 1, + ACTIONS(1439), 1, sym__entry_separator, - STATE(6606), 1, + STATE(6589), 1, sym_comment, - ACTIONS(1350), 28, + ACTIONS(1437), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510387,14 +509592,553 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317218] = 4, + [316118] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + STATE(6590), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1393), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316168] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + STATE(6591), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 9, + anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316224] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6592), 1, + sym_comment, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 20, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316270] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6593), 1, + sym_comment, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 22, + anon_sym_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316312] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + STATE(6594), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1393), 17, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316364] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + STATE(6595), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 7, + anon_sym_LBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316422] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + STATE(6596), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 6, + anon_sym_LBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316482] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + STATE(6597), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 5, + anon_sym_LBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [316544] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + ACTIONS(10732), 1, + anon_sym_bit_DASHor, + STATE(6598), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [316608] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + ACTIONS(10732), 1, + anon_sym_bit_DASHor, + ACTIONS(10734), 1, + anon_sym_and, + STATE(6599), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 3, + anon_sym_LBRACE, + anon_sym_xor, + anon_sym_or, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [316674] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + ACTIONS(10732), 1, + anon_sym_bit_DASHor, + ACTIONS(10734), 1, + anon_sym_and, + ACTIONS(10736), 1, + anon_sym_xor, + STATE(6600), 1, + sym_comment, + ACTIONS(1393), 2, + anon_sym_LBRACE, + anon_sym_or, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [316742] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1393), 1, + anon_sym_LBRACE, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + ACTIONS(10732), 1, + anon_sym_bit_DASHor, + ACTIONS(10734), 1, + anon_sym_and, + ACTIONS(10736), 1, + anon_sym_xor, + ACTIONS(10738), 1, + anon_sym_or, + STATE(6601), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [316812] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1356), 1, + ACTIONS(10742), 1, sym__entry_separator, - STATE(6607), 1, + STATE(6602), 1, sym_comment, - ACTIONS(1354), 28, + ACTIONS(10740), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510423,30 +510167,29 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317258] = 5, + [316852] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10758), 1, + ACTIONS(10744), 1, anon_sym_DOT2, - STATE(6608), 1, + ACTIONS(10748), 1, + aux_sym__immediate_decimal_token2, + STATE(6603), 1, sym_comment, - ACTIONS(3915), 7, + ACTIONS(3165), 7, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3917), 21, + ACTIONS(3167), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -510460,14 +510203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317300] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [316896] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(931), 1, sym__entry_separator, - STATE(6609), 1, + STATE(6604), 1, sym_comment, - ACTIONS(3834), 28, + ACTIONS(929), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510496,51 +510241,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317340] = 5, - ACTIONS(3), 1, + [316936] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6376), 1, - anon_sym_DOT2, - STATE(6610), 1, + ACTIONS(1276), 1, + sym__entry_separator, + STATE(6605), 1, sym_comment, - ACTIONS(10382), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10760), 21, + ACTIONS(1274), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317382] = 4, + aux_sym__unquoted_in_list_token1, + [316976] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1280), 1, sym__entry_separator, - STATE(6611), 1, + STATE(6606), 1, sym_comment, - ACTIONS(1193), 28, + ACTIONS(1278), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510569,88 +510313,86 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317422] = 5, - ACTIONS(3), 1, + [317016] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10762), 1, - anon_sym_DOT2, - STATE(6612), 1, + ACTIONS(1193), 1, + sym__entry_separator, + STATE(6607), 1, sym_comment, - ACTIONS(3909), 7, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3911), 21, + ACTIONS(1191), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317464] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [317056] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10764), 1, - anon_sym_DOT2, - STATE(6613), 1, + ACTIONS(1284), 1, + sym__entry_separator, + STATE(6608), 1, sym_comment, - ACTIONS(3915), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3917), 20, + ACTIONS(1282), 28, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317506] = 4, + aux_sym__unquoted_in_list_token1, + [317096] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1360), 1, + ACTIONS(1427), 1, sym__entry_separator, - STATE(6614), 1, + STATE(6609), 1, sym_comment, - ACTIONS(1358), 28, + ACTIONS(1425), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510679,101 +510421,59 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317546] = 6, + [317136] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10766), 1, - anon_sym_DOT2, - ACTIONS(10770), 1, - aux_sym__immediate_decimal_token2, - STATE(6615), 1, + ACTIONS(10750), 1, + sym_long_flag_identifier, + STATE(6610), 1, sym_comment, - ACTIONS(3489), 7, - anon_sym_DOLLAR, + ACTIONS(3887), 11, anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3491), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [317590] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10772), 1, - anon_sym_RBRACK, - STATE(6616), 1, - sym_comment, - ACTIONS(10692), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10688), 21, + ACTIONS(3891), 17, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [317632] = 5, + [317178] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7890), 1, - aux_sym__unquoted_in_list_token3, - STATE(6617), 1, + ACTIONS(1431), 1, + sym__entry_separator, + STATE(6611), 1, sym_comment, - ACTIONS(7854), 8, + ACTIONS(1429), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(7834), 20, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -510790,15 +510490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317674] = 4, + [317218] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1399), 1, + ACTIONS(1435), 1, sym__entry_separator, - STATE(6618), 1, + STATE(6612), 1, sym_comment, - ACTIONS(1397), 28, + ACTIONS(1433), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510827,14 +510530,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317714] = 4, + [317258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10776), 1, + ACTIONS(4297), 1, sym__entry_separator, - STATE(6619), 1, + STATE(6613), 1, sym_comment, - ACTIONS(10774), 28, + ACTIONS(4295), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510863,29 +510566,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317754] = 5, + [317298] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10401), 1, - aux_sym__immediate_decimal_token2, - STATE(6620), 1, + STATE(6614), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(1185), 8, anon_sym_DASH, anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2998), 21, + ACTIONS(1187), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -510900,50 +510602,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317796] = 4, - ACTIONS(105), 1, + [317338] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10780), 1, - sym__entry_separator, - STATE(6621), 1, + ACTIONS(10752), 1, + anon_sym_DOT2, + STATE(6615), 1, sym_comment, - ACTIONS(10778), 28, + ACTIONS(3977), 7, + anon_sym_DASH, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3979), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [317836] = 5, + [317380] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10782), 1, + ACTIONS(10754), 1, anon_sym_DOT2, - STATE(6622), 1, + STATE(6616), 1, sym_comment, - ACTIONS(3941), 7, + ACTIONS(4026), 7, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -510951,7 +510654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3943), 21, + ACTIONS(4028), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -510973,29 +510676,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317878] = 5, + [317422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(6623), 1, + STATE(6617), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(1209), 8, anon_sym_DASH, + anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 21, + aux_sym_unquoted_token1, + ACTIONS(1211), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -511010,14 +510712,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [317920] = 4, + [317462] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + STATE(6618), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 13, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317516] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1391), 1, + ACTIONS(10774), 1, sym__entry_separator, - STATE(6624), 1, + STATE(6619), 1, sym_comment, - ACTIONS(1389), 28, + ACTIONS(10772), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -511046,14 +510791,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [317960] = 4, + [317556] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1387), 1, + ACTIONS(4265), 1, sym__entry_separator, - STATE(6625), 1, + STATE(6620), 1, sym_comment, - ACTIONS(1385), 28, + ACTIONS(4263), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -511082,12 +510827,134 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [318000] = 4, + [317596] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(6626), 1, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + STATE(6621), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1393), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317646] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7950), 1, + aux_sym__unquoted_in_list_token3, + STATE(6622), 1, + sym_comment, + ACTIONS(7821), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(7801), 20, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym__unquoted_in_list_token1, + [317688] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + STATE(6623), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 9, + anon_sym_EQ_GT, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317744] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6624), 1, sym_comment, - ACTIONS(1228), 8, + ACTIONS(1213), 8, anon_sym_DASH, anon_sym__, anon_sym_DOT, @@ -511096,7 +510963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1230), 21, + ACTIONS(1215), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -511118,92 +510985,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318040] = 5, + [317784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10784), 1, - aux_sym__immediate_decimal_token2, + STATE(6625), 1, + sym_comment, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1391), 3, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 20, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317830] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6626), 1, + sym_comment, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1391), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1393), 22, + anon_sym_DASH, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317872] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, STATE(6627), 1, sym_comment, - ACTIONS(3834), 6, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1393), 17, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317924] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + STATE(6628), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 7, + anon_sym_EQ_GT, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [317982] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3836), 22, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + STATE(6629), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 6, + anon_sym_EQ_GT, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [318042] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + STATE(6630), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(1393), 5, + anon_sym_EQ_GT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [318104] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + ACTIONS(10784), 1, + anon_sym_bit_DASHor, + STATE(6631), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [318168] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + ACTIONS(10784), 1, + anon_sym_bit_DASHor, + ACTIONS(10786), 1, + anon_sym_and, + STATE(6632), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(1393), 3, + anon_sym_EQ_GT, + anon_sym_xor, + anon_sym_or, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [318234] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + ACTIONS(10784), 1, + anon_sym_bit_DASHor, + ACTIONS(10786), 1, + anon_sym_and, + ACTIONS(10788), 1, + anon_sym_xor, + STATE(6633), 1, + sym_comment, + ACTIONS(1393), 2, + anon_sym_EQ_GT, + anon_sym_or, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [318302] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4354), 1, + sym__entry_separator, + STATE(6634), 1, + sym_comment, + ACTIONS(4352), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318082] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [318342] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10786), 1, - sym_filesize_unit, - ACTIONS(10788), 1, - sym_duration_unit, - STATE(6628), 1, + ACTIONS(4366), 1, + sym__entry_separator, + STATE(6635), 1, sym_comment, - ACTIONS(1102), 6, + ACTIONS(4364), 28, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 21, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym__unquoted_in_list_token1, + [318382] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(10325), 1, + anon_sym_RBRACK, + STATE(6636), 1, + sym_comment, + ACTIONS(10323), 27, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [318126] = 4, + aux_sym__unquoted_in_list_token1, + [318424] = 5, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(10792), 1, + anon_sym_RBRACK, + ACTIONS(10795), 1, sym__entry_separator, - STATE(6629), 1, + STATE(6637), 1, sym_comment, - ACTIONS(10790), 28, + ACTIONS(10790), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -511229,102 +511534,154 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [318166] = 5, + [318466] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10411), 1, - aux_sym__immediate_decimal_token2, - STATE(6630), 1, - sym_comment, - ACTIONS(2986), 7, + ACTIONS(1393), 1, + anon_sym_EQ_GT, + ACTIONS(10758), 1, anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2988), 21, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + ACTIONS(10784), 1, + anon_sym_bit_DASHor, + ACTIONS(10786), 1, + anon_sym_and, + ACTIONS(10788), 1, + anon_sym_xor, + ACTIONS(10797), 1, + anon_sym_or, + STATE(6638), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [318536] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(10611), 1, + anon_sym_RBRACK, + ACTIONS(10614), 1, + sym__entry_separator, + STATE(6639), 1, + sym_comment, + ACTIONS(10609), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318208] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [318578] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6631), 1, + ACTIONS(10801), 1, + anon_sym_COMMA, + ACTIONS(10803), 1, + anon_sym_RBRACK, + ACTIONS(10805), 1, + sym__entry_separator, + STATE(6640), 1, sym_comment, - ACTIONS(1222), 8, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1224), 21, + ACTIONS(10799), 26, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318248] = 5, + aux_sym__unquoted_in_list_token1, + [318622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10794), 1, - anon_sym_DOT2, - STATE(6632), 1, + STATE(6641), 1, sym_comment, - ACTIONS(3935), 8, + ACTIONS(1217), 7, anon_sym_DASH, - anon_sym__, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3937), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(1219), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -511339,51 +511696,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318290] = 5, - ACTIONS(3), 1, + [318662] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10796), 1, - anon_sym_EQ, - STATE(6633), 1, + ACTIONS(1423), 1, + sym__entry_separator, + STATE(6642), 1, sym_comment, - ACTIONS(4007), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4011), 22, + ACTIONS(1421), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318332] = 4, + aux_sym__unquoted_in_list_token1, + [318702] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10144), 1, + ACTIONS(3806), 1, sym__entry_separator, - STATE(6634), 1, + STATE(6643), 1, sym_comment, - ACTIONS(10138), 28, + ACTIONS(3804), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -511412,28 +511768,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym__unquoted_in_list_token1, - [318372] = 4, + [318742] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6635), 1, + STATE(6644), 1, sym_comment, - ACTIONS(1189), 8, + ACTIONS(4455), 6, anon_sym_DASH, - anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1191), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4457), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -511448,28 +511803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318412] = 5, + [318781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10798), 1, - aux_sym__immediate_decimal_token2, - STATE(6636), 1, + STATE(6645), 1, sym_comment, - ACTIONS(3834), 7, + ACTIONS(4032), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3836), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4034), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -511485,102 +511838,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318454] = 5, - ACTIONS(105), 1, + [318820] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(6637), 1, + STATE(6646), 1, sym_comment, - ACTIONS(10262), 27, + ACTIONS(1341), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1343), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [318496] = 5, - ACTIONS(105), 1, + [318859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10802), 1, - anon_sym_RBRACK, - ACTIONS(10805), 1, - sym__entry_separator, - STATE(6638), 1, + STATE(6647), 1, sym_comment, - ACTIONS(10800), 27, + ACTIONS(4420), 7, + anon_sym_DASH, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4422), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [318538] = 4, + [318898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6639), 1, + STATE(6648), 1, sym_comment, - ACTIONS(1252), 8, + ACTIONS(4424), 7, anon_sym_DASH, anon_sym__, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1254), 21, + ACTIONS(4426), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, @@ -511595,67 +511943,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318578] = 5, - ACTIONS(105), 1, + [318937] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10384), 1, - anon_sym_RBRACK, - ACTIONS(10387), 1, - sym__entry_separator, - STATE(6640), 1, + STATE(6649), 1, sym_comment, - ACTIONS(10382), 27, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2998), 7, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3000), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [318620] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [318976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10397), 1, - aux_sym__immediate_decimal_token2, - STATE(6641), 1, + STATE(6650), 1, sym_comment, - ACTIONS(2986), 6, + ACTIONS(2957), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, + ACTIONS(2959), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -511669,65 +512011,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318662] = 4, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [319015] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1407), 1, - sym__entry_separator, - STATE(6642), 1, + STATE(6651), 1, sym_comment, - ACTIONS(1405), 28, + ACTIONS(4470), 7, + anon_sym_DASH, + anon_sym__, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4472), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym__unquoted_in_list_token1, - [318702] = 4, + [319054] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6643), 1, + STATE(6652), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(3804), 7, + anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1254), 22, + ACTIONS(3806), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -511741,28 +512081,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318742] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [319093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6644), 1, + STATE(6653), 1, sym_comment, - ACTIONS(4352), 6, + ACTIONS(4032), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4354), 22, + ACTIONS(4034), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -511776,12 +512116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318781] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [319132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6645), 1, + STATE(6654), 1, sym_comment, - ACTIONS(4410), 7, + ACTIONS(1251), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -511789,7 +512131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4412), 21, + ACTIONS(1253), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -511811,26 +512153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318820] = 4, + [319171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6646), 1, + STATE(6655), 1, sym_comment, - ACTIONS(4398), 7, + ACTIONS(1054), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4400), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -511846,12 +512188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318859] = 4, + [319210] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6647), 1, + STATE(6656), 1, sym_comment, - ACTIONS(4406), 7, + ACTIONS(4486), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -511859,7 +512201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4408), 21, + ACTIONS(4488), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -511881,222 +512223,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [318898] = 18, + [319249] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6776), 1, + ACTIONS(9907), 1, anon_sym_PLUS, - ACTIONS(6794), 1, - anon_sym_bit_DASHand, - ACTIONS(6796), 1, - anon_sym_bit_DASHxor, - ACTIONS(6798), 1, - anon_sym_bit_DASHor, - ACTIONS(6800), 1, - anon_sym_and, - ACTIONS(6802), 1, - anon_sym_xor, - ACTIONS(6804), 1, - anon_sym_or, ACTIONS(10807), 1, anon_sym_DASH, - STATE(6648), 1, - sym_comment, - ACTIONS(6774), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6780), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6782), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6784), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6786), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6792), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6788), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6790), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [318965] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1479), 1, - anon_sym_PLUS, - ACTIONS(10809), 1, - anon_sym_DASH, - ACTIONS(10823), 1, - anon_sym_bit_DASHand, - ACTIONS(10825), 1, - anon_sym_bit_DASHxor, - ACTIONS(10827), 1, - anon_sym_bit_DASHor, - ACTIONS(10829), 1, - anon_sym_and, - ACTIONS(10831), 1, - anon_sym_xor, - ACTIONS(10833), 1, - anon_sym_or, - STATE(6649), 1, - sym_comment, - ACTIONS(1477), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1483), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10813), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10815), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10817), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10821), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10811), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10819), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [319032] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_PLUS, - ACTIONS(10835), 1, - anon_sym_DASH, - ACTIONS(10849), 1, + ACTIONS(10821), 1, anon_sym_bit_DASHand, - ACTIONS(10851), 1, + ACTIONS(10823), 1, anon_sym_bit_DASHxor, - ACTIONS(10853), 1, + ACTIONS(10825), 1, anon_sym_bit_DASHor, - ACTIONS(10855), 1, + ACTIONS(10827), 1, anon_sym_and, - ACTIONS(10857), 1, + ACTIONS(10829), 1, anon_sym_xor, - ACTIONS(10859), 1, + ACTIONS(10831), 1, anon_sym_or, - STATE(6650), 1, + STATE(6657), 1, sym_comment, - ACTIONS(3479), 2, + ACTIONS(9905), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3483), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10839), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10841), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10843), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10847), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10837), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10845), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [319099] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6316), 1, - anon_sym_PLUS, - ACTIONS(10861), 1, - anon_sym_DASH, - ACTIONS(10875), 1, - anon_sym_bit_DASHand, - ACTIONS(10877), 1, - anon_sym_bit_DASHxor, - ACTIONS(10879), 1, - anon_sym_bit_DASHor, - ACTIONS(10881), 1, - anon_sym_and, - ACTIONS(10883), 1, - anon_sym_xor, - ACTIONS(10885), 1, - anon_sym_or, - STATE(6651), 1, - sym_comment, - ACTIONS(6318), 2, + ACTIONS(9909), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6424), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10865), 2, + ACTIONS(10811), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10867), 2, + ACTIONS(10813), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10869), 2, + ACTIONS(10815), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10873), 2, + ACTIONS(10819), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10863), 4, + ACTIONS(10809), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10871), 4, + ACTIONS(10817), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [319166] = 4, + [319316] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6652), 1, + STATE(6658), 1, sym_comment, - ACTIONS(1309), 6, + ACTIONS(4299), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1311), 22, + aux_sym_unquoted_token1, + ACTIONS(4301), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512112,26 +512307,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319205] = 4, + [319355] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6653), 1, + STATE(6659), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(4060), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1300), 22, + aux_sym_unquoted_token1, + ACTIONS(4062), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512147,12 +512342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319244] = 4, + [319394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6654), 1, + STATE(6660), 1, sym_comment, - ACTIONS(4414), 7, + ACTIONS(4068), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -512160,7 +512355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4416), 21, + ACTIONS(4070), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -512182,26 +512377,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319283] = 4, + [319433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6655), 1, + STATE(6661), 1, sym_comment, - ACTIONS(8594), 6, + ACTIONS(4072), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(8596), 22, + aux_sym_unquoted_token1, + ACTIONS(4074), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512217,19 +512412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319322] = 4, + [319472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6656), 1, + STATE(6662), 1, sym_comment, - ACTIONS(4428), 6, + ACTIONS(10740), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4430), 22, + ACTIONS(10742), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512252,12 +512447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319361] = 4, + [319511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6657), 1, + STATE(6663), 1, sym_comment, - ACTIONS(4418), 7, + ACTIONS(4076), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -512265,7 +512460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4420), 21, + ACTIONS(4078), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -512287,26 +512482,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319400] = 4, + [319550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6658), 1, + STATE(6664), 1, sym_comment, - ACTIONS(1313), 6, + ACTIONS(2957), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1315), 22, + aux_sym_unquoted_token1, + ACTIONS(2959), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512322,54 +512517,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319439] = 4, - ACTIONS(3), 1, + [319589] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(6659), 1, + ACTIONS(8239), 1, + aux_sym_unquoted_token3, + STATE(6665), 1, sym_comment, - ACTIONS(4422), 7, - anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4424), 21, + ACTIONS(829), 8, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(827), 19, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [319478] = 4, + [319630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6660), 1, + STATE(6666), 1, sym_comment, - ACTIONS(1252), 6, + ACTIONS(909), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1254), 22, + ACTIONS(911), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512392,19 +512588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319517] = 4, + [319669] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6661), 1, + STATE(6667), 1, sym_comment, - ACTIONS(1317), 6, + ACTIONS(10835), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1319), 22, + ACTIONS(10833), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512427,27 +512623,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319556] = 5, + [319708] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(6662), 1, + STATE(6668), 1, sym_comment, - ACTIONS(2996), 7, - anon_sym_DOLLAR, + ACTIONS(10839), 6, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(10837), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -512461,21 +512658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [319597] = 4, + [319747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6663), 1, + STATE(6669), 1, sym_comment, - ACTIONS(10262), 6, + ACTIONS(10675), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10529), 22, + ACTIONS(10841), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512498,19 +512693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319636] = 4, + [319786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6664), 1, + STATE(6670), 1, sym_comment, - ACTIONS(10382), 6, + ACTIONS(1303), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10760), 22, + ACTIONS(1305), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512533,19 +512728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319675] = 4, + [319825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6665), 1, + STATE(6671), 1, sym_comment, - ACTIONS(10889), 6, + ACTIONS(1307), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10887), 22, + ACTIONS(1309), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512568,19 +512763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319714] = 4, + [319864] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6666), 1, + STATE(6672), 1, sym_comment, - ACTIONS(10893), 6, + ACTIONS(1349), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10891), 22, + ACTIONS(1351), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512603,19 +512798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319753] = 4, + [319903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6667), 1, + STATE(6673), 1, sym_comment, - ACTIONS(10800), 6, + ACTIONS(1353), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10895), 22, + ACTIONS(1355), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512638,75 +512833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319792] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9987), 1, - anon_sym_PLUS, - ACTIONS(10897), 1, - anon_sym_DASH, - ACTIONS(10911), 1, - anon_sym_bit_DASHand, - ACTIONS(10913), 1, - anon_sym_bit_DASHxor, - ACTIONS(10915), 1, - anon_sym_bit_DASHor, - ACTIONS(10917), 1, - anon_sym_and, - ACTIONS(10919), 1, - anon_sym_xor, - ACTIONS(10921), 1, - anon_sym_or, - STATE(6668), 1, - sym_comment, - ACTIONS(9985), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9989), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10901), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10903), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10905), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10909), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10899), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10907), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [319859] = 4, + [319942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(6674), 1, sym_comment, - ACTIONS(4428), 7, + ACTIONS(1082), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4430), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1084), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512722,19 +512868,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319898] = 4, + [319981] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6670), 1, + ACTIONS(10640), 1, + anon_sym_in, + STATE(6675), 1, + sym_comment, + ACTIONS(1255), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(1385), 22, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [320022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6676), 1, sym_comment, - ACTIONS(4458), 6, + ACTIONS(1086), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4460), 22, + ACTIONS(1088), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512757,28 +512939,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319937] = 4, + [320061] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6671), 1, + ACTIONS(10710), 1, + anon_sym_DASH, + ACTIONS(10718), 1, + anon_sym_PLUS, + ACTIONS(10728), 1, + anon_sym_bit_DASHand, + ACTIONS(10730), 1, + anon_sym_bit_DASHxor, + ACTIONS(10732), 1, + anon_sym_bit_DASHor, + ACTIONS(10734), 1, + anon_sym_and, + ACTIONS(10736), 1, + anon_sym_xor, + ACTIONS(10738), 1, + anon_sym_or, + STATE(6677), 1, + sym_comment, + ACTIONS(10708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10712), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10714), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10716), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10720), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10726), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10724), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [320128] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT2, + STATE(6678), 1, sym_comment, - ACTIONS(4466), 6, + ACTIONS(3929), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4468), 22, + ACTIONS(3931), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -512792,26 +513022,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [319976] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [320169] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6672), 1, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(10843), 1, + anon_sym_DASH, + ACTIONS(10857), 1, + anon_sym_bit_DASHand, + ACTIONS(10859), 1, + anon_sym_bit_DASHxor, + ACTIONS(10861), 1, + anon_sym_bit_DASHor, + ACTIONS(10863), 1, + anon_sym_and, + ACTIONS(10865), 1, + anon_sym_xor, + ACTIONS(10867), 1, + anon_sym_or, + STATE(6679), 1, sym_comment, - ACTIONS(4470), 6, + ACTIONS(3473), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3477), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10847), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10849), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10851), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10855), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10845), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10853), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320236] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6680), 1, + sym_comment, + ACTIONS(4390), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4472), 22, + aux_sym_unquoted_token1, + ACTIONS(4392), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -512827,19 +513108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320015] = 4, + [320275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6673), 1, + STATE(6681), 1, sym_comment, - ACTIONS(4474), 6, + ACTIONS(1251), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4476), 22, + ACTIONS(1253), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512862,12 +513143,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320054] = 4, + [320314] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6674), 1, + ACTIONS(9876), 1, + anon_sym_PLUS, + ACTIONS(10869), 1, + anon_sym_DASH, + ACTIONS(10883), 1, + anon_sym_bit_DASHand, + ACTIONS(10885), 1, + anon_sym_bit_DASHxor, + ACTIONS(10887), 1, + anon_sym_bit_DASHor, + ACTIONS(10889), 1, + anon_sym_and, + ACTIONS(10891), 1, + anon_sym_xor, + ACTIONS(10893), 1, + anon_sym_or, + STATE(6682), 1, + sym_comment, + ACTIONS(9874), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10873), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10875), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10877), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10881), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10871), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10879), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320381] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6683), 1, sym_comment, - ACTIONS(1189), 7, + ACTIONS(1217), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -512875,7 +513205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1191), 21, + ACTIONS(1219), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -512897,24 +513227,123 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [320093] = 4, + [320420] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6675), 1, + ACTIONS(1507), 1, + anon_sym_PLUS, + ACTIONS(10895), 1, + anon_sym_DASH, + ACTIONS(10909), 1, + anon_sym_bit_DASHand, + ACTIONS(10911), 1, + anon_sym_bit_DASHxor, + ACTIONS(10913), 1, + anon_sym_bit_DASHor, + ACTIONS(10915), 1, + anon_sym_and, + ACTIONS(10917), 1, + anon_sym_xor, + ACTIONS(10919), 1, + anon_sym_or, + STATE(6684), 1, + sym_comment, + ACTIONS(1509), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1513), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10899), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10901), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10903), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10907), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10897), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10905), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320487] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2916), 1, + anon_sym_PLUS, + ACTIONS(10921), 1, + anon_sym_DASH, + ACTIONS(10935), 1, + anon_sym_bit_DASHand, + ACTIONS(10937), 1, + anon_sym_bit_DASHxor, + ACTIONS(10939), 1, + anon_sym_bit_DASHor, + ACTIONS(10941), 1, + anon_sym_and, + ACTIONS(10943), 1, + anon_sym_xor, + ACTIONS(10945), 1, + anon_sym_or, + STATE(6685), 1, + sym_comment, + ACTIONS(2914), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2918), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10925), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10927), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10929), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10933), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10923), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10931), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320554] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10947), 1, + anon_sym_EQ, + STATE(6686), 1, sym_comment, - ACTIONS(1222), 7, + ACTIONS(3942), 6, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1224), 21, + ACTIONS(3946), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -512932,19 +513361,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [320132] = 4, + [320595] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6676), 1, + ACTIONS(9598), 1, + anon_sym_PLUS, + ACTIONS(10949), 1, + anon_sym_DASH, + ACTIONS(10963), 1, + anon_sym_bit_DASHand, + ACTIONS(10965), 1, + anon_sym_bit_DASHxor, + ACTIONS(10967), 1, + anon_sym_bit_DASHor, + ACTIONS(10969), 1, + anon_sym_and, + ACTIONS(10971), 1, + anon_sym_xor, + ACTIONS(10973), 1, + anon_sym_or, + STATE(6687), 1, sym_comment, - ACTIONS(4486), 6, + ACTIONS(9596), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9600), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10953), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10955), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10957), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10961), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10951), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10959), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320662] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6688), 1, + sym_comment, + ACTIONS(10684), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4488), 22, + ACTIONS(10686), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -512967,26 +513445,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320171] = 4, + [320701] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6677), 1, + ACTIONS(1479), 1, + anon_sym_PLUS, + ACTIONS(10975), 1, + anon_sym_DASH, + ACTIONS(10989), 1, + anon_sym_bit_DASHand, + ACTIONS(10991), 1, + anon_sym_bit_DASHxor, + ACTIONS(10993), 1, + anon_sym_bit_DASHor, + ACTIONS(10995), 1, + anon_sym_and, + ACTIONS(10997), 1, + anon_sym_xor, + ACTIONS(10999), 1, + anon_sym_or, + STATE(6689), 1, + sym_comment, + ACTIONS(1477), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1481), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10979), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10981), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10983), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10987), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10977), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10985), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [320768] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6690), 1, sym_comment, - ACTIONS(3834), 7, + ACTIONS(1270), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3836), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1272), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -513002,26 +513529,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320210] = 4, + [320807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6678), 1, + STATE(6691), 1, sym_comment, - ACTIONS(1228), 7, - anon_sym_DOLLAR, + ACTIONS(1437), 6, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1230), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1439), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -513035,14 +513564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [320249] = 4, + [320846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6679), 1, + STATE(6692), 1, sym_comment, - ACTIONS(4458), 7, + ACTIONS(4394), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -513050,7 +513577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4460), 21, + ACTIONS(4396), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -513072,68 +513599,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320288] = 18, + [320885] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9296), 1, + ACTIONS(10489), 1, anon_sym_PLUS, - ACTIONS(9316), 1, + ACTIONS(10505), 1, anon_sym_bit_DASHand, - ACTIONS(9318), 1, + ACTIONS(10507), 1, anon_sym_bit_DASHxor, - ACTIONS(9320), 1, + ACTIONS(10509), 1, anon_sym_bit_DASHor, - ACTIONS(10923), 1, - anon_sym_DASH, - ACTIONS(10925), 1, + ACTIONS(10511), 1, anon_sym_and, - ACTIONS(10927), 1, + ACTIONS(10513), 1, anon_sym_xor, - ACTIONS(10929), 1, + ACTIONS(10515), 1, anon_sym_or, - STATE(6680), 1, + ACTIONS(11001), 1, + anon_sym_DASH, + STATE(6693), 1, sym_comment, - ACTIONS(9294), 2, + ACTIONS(10487), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(9300), 2, + ACTIONS(10491), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9302), 2, + ACTIONS(10493), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(9304), 2, + ACTIONS(10495), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(9306), 2, + ACTIONS(10497), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(9312), 2, + ACTIONS(10503), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(9308), 4, + ACTIONS(10499), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(9310), 4, + ACTIONS(10501), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - [320355] = 4, + [320952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6681), 1, + STATE(6694), 1, sym_comment, - ACTIONS(4044), 6, + ACTIONS(929), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4046), 22, + ACTIONS(931), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513156,19 +513683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320394] = 4, + [320991] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6682), 1, + STATE(6695), 1, sym_comment, - ACTIONS(1259), 6, + ACTIONS(11005), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1261), 22, + ACTIONS(11003), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513191,26 +513718,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320433] = 4, + [321030] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6683), 1, + STATE(6696), 1, sym_comment, - ACTIONS(4466), 7, + ACTIONS(11005), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4468), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11003), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -513226,26 +513753,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320472] = 4, + [321069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6684), 1, + STATE(6697), 1, sym_comment, - ACTIONS(4470), 7, + ACTIONS(11009), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4472), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11007), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -513261,19 +513788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320511] = 4, + [321108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6685), 1, + STATE(6698), 1, sym_comment, - ACTIONS(1005), 6, + ACTIONS(949), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 22, + ACTIONS(951), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513296,25 +513823,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320550] = 5, + [321147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10931), 1, - anon_sym_EQ, - STATE(6686), 1, + STATE(6699), 1, sym_comment, - ACTIONS(4007), 6, + ACTIONS(1185), 7, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4011), 21, + ACTIONS(1187), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -513332,222 +513858,68 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [320591] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6687), 1, - sym_comment, - ACTIONS(4332), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4334), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [320630] = 18, + [321186] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10110), 1, + ACTIONS(10200), 1, anon_sym_PLUS, - ACTIONS(10933), 1, + ACTIONS(11011), 1, anon_sym_DASH, - ACTIONS(10947), 1, + ACTIONS(11025), 1, anon_sym_bit_DASHand, - ACTIONS(10949), 1, + ACTIONS(11027), 1, anon_sym_bit_DASHxor, - ACTIONS(10951), 1, + ACTIONS(11029), 1, anon_sym_bit_DASHor, - ACTIONS(10953), 1, + ACTIONS(11031), 1, anon_sym_and, - ACTIONS(10955), 1, + ACTIONS(11033), 1, anon_sym_xor, - ACTIONS(10957), 1, + ACTIONS(11035), 1, anon_sym_or, - STATE(6688), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10108), 2, + ACTIONS(10198), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(10114), 2, + ACTIONS(10204), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10937), 2, + ACTIONS(11015), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10939), 2, + ACTIONS(11017), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(10941), 2, + ACTIONS(11019), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(10945), 2, + ACTIONS(11023), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10935), 4, + ACTIONS(11013), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(10943), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [320697] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6689), 1, - sym_comment, - ACTIONS(4172), 7, - anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4174), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [320736] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9668), 1, - anon_sym_PLUS, - ACTIONS(9695), 1, - anon_sym_bit_DASHand, - ACTIONS(9697), 1, - anon_sym_bit_DASHxor, - ACTIONS(9699), 1, - anon_sym_bit_DASHor, - ACTIONS(10959), 1, - anon_sym_DASH, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_xor, - ACTIONS(10965), 1, - anon_sym_or, - STATE(6690), 1, - sym_comment, - ACTIONS(9666), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9670), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9672), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9674), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9676), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9693), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9678), 4, + ACTIONS(11021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(9682), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [320803] = 4, + [321253] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6691), 1, - sym_comment, - ACTIONS(10778), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10780), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [320842] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6692), 1, + STATE(6701), 1, sym_comment, - ACTIONS(9898), 6, + ACTIONS(1274), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10132), 22, + ACTIONS(1276), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513570,19 +513942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320881] = 4, + [321292] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6693), 1, + STATE(6702), 1, sym_comment, - ACTIONS(4358), 6, + ACTIONS(1329), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4360), 22, + ACTIONS(1331), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513605,19 +513977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320920] = 4, + [321331] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6694), 1, + STATE(6703), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(1278), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1290), 22, + ACTIONS(1280), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513640,12 +514012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320959] = 4, + [321370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6695), 1, + STATE(6704), 1, sym_comment, - ACTIONS(4474), 7, + ACTIONS(4398), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -513653,7 +514025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4476), 21, + ACTIONS(4400), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -513675,26 +514047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [320998] = 4, + [321409] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6696), 1, + STATE(6705), 1, sym_comment, - ACTIONS(1102), 6, + ACTIONS(4406), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1104), 22, + aux_sym_unquoted_token1, + ACTIONS(4408), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -513710,14 +514082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321037] = 5, + [321448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT2, - STATE(6697), 1, + STATE(6706), 1, sym_comment, - ACTIONS(4013), 7, + ACTIONS(1209), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -513725,10 +514095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4015), 20, + ACTIONS(1211), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT2, anon_sym_PLUS, anon_sym_not, anon_sym_null, @@ -513746,19 +514117,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [321078] = 4, + [321487] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6698), 1, + STATE(6707), 1, sym_comment, - ACTIONS(4311), 6, + ACTIONS(1282), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4313), 22, + ACTIONS(1284), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513781,77 +514152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321117] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10213), 1, - anon_sym_PLUS, - ACTIONS(10967), 1, - anon_sym_DASH, - ACTIONS(10981), 1, - anon_sym_bit_DASHand, - ACTIONS(10983), 1, - anon_sym_bit_DASHxor, - ACTIONS(10985), 1, - anon_sym_bit_DASHor, - ACTIONS(10987), 1, - anon_sym_and, - ACTIONS(10989), 1, - anon_sym_xor, - ACTIONS(10991), 1, - anon_sym_or, - STATE(6699), 1, - sym_comment, - ACTIONS(10211), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10217), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10971), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10973), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10975), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10979), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10969), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10977), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [321184] = 4, + [321526] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6700), 1, + STATE(6708), 1, sym_comment, - ACTIONS(4307), 6, + ACTIONS(1213), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4309), 22, + ACTIONS(1215), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -513865,26 +514185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321223] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [321565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6701), 1, + STATE(6709), 1, sym_comment, - ACTIONS(4303), 6, + ACTIONS(4412), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4305), 22, + aux_sym_unquoted_token1, + ACTIONS(4414), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -513900,19 +514222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321262] = 4, + [321604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6702), 1, + STATE(6710), 1, sym_comment, - ACTIONS(4299), 6, + ACTIONS(4330), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4301), 22, + ACTIONS(4332), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -513935,54 +514257,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321301] = 4, + [321643] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6703), 1, - sym_comment, - ACTIONS(4295), 6, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4297), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(9266), 1, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [321340] = 4, + ACTIONS(9320), 1, + anon_sym_bit_DASHand, + ACTIONS(9326), 1, + anon_sym_bit_DASHxor, + ACTIONS(9328), 1, + anon_sym_bit_DASHor, + ACTIONS(11037), 1, + anon_sym_DASH, + ACTIONS(11039), 1, + anon_sym_and, + ACTIONS(11041), 1, + anon_sym_xor, + ACTIONS(11043), 1, + anon_sym_or, + STATE(6711), 1, + sym_comment, + ACTIONS(9264), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9268), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9270), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9272), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9274), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9318), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9276), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9297), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [321710] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6704), 1, + STATE(6712), 1, sym_comment, - ACTIONS(1243), 6, + ACTIONS(4334), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1245), 22, + ACTIONS(4336), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514005,26 +514341,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321379] = 4, + [321749] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6705), 1, + STATE(6713), 1, sym_comment, - ACTIONS(3888), 7, + ACTIONS(4338), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3890), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4340), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514040,19 +514376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321418] = 4, + [321788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6706), 1, + STATE(6714), 1, sym_comment, - ACTIONS(4422), 6, + ACTIONS(4342), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4424), 22, + ACTIONS(4344), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514075,26 +514411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321457] = 4, + [321827] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6707), 1, + STATE(6715), 1, sym_comment, - ACTIONS(4486), 7, + ACTIONS(1421), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4488), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1423), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514110,19 +514446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321496] = 4, + [321866] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6708), 1, + STATE(6716), 1, sym_comment, - ACTIONS(4258), 6, + ACTIONS(4352), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4260), 22, + ACTIONS(4354), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514145,26 +514481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321535] = 4, + [321905] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6709), 1, + STATE(6717), 1, sym_comment, - ACTIONS(4044), 7, + ACTIONS(4364), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4046), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4366), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514180,19 +514516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321574] = 4, + [321944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6710), 1, + STATE(6718), 1, sym_comment, - ACTIONS(4244), 6, + ACTIONS(1333), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4246), 22, + ACTIONS(1335), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514215,19 +514551,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321613] = 4, + [321983] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6711), 1, + ACTIONS(9985), 1, + anon_sym_PLUS, + ACTIONS(11045), 1, + anon_sym_DASH, + ACTIONS(11051), 1, + anon_sym_bit_DASHand, + ACTIONS(11053), 1, + anon_sym_bit_DASHxor, + ACTIONS(11055), 1, + anon_sym_bit_DASHor, + ACTIONS(11057), 1, + anon_sym_and, + ACTIONS(11059), 1, + anon_sym_xor, + ACTIONS(11061), 1, + anon_sym_or, + STATE(6719), 1, + sym_comment, + ACTIONS(9983), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9987), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9989), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9991), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9999), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11049), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9995), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(11047), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [322050] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6720), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(4390), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 22, + ACTIONS(4392), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514250,19 +514635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321652] = 4, + [322089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6712), 1, + STATE(6721), 1, sym_comment, - ACTIONS(4240), 6, + ACTIONS(4394), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4242), 22, + ACTIONS(4396), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514285,55 +514670,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321691] = 5, + [322128] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10694), 1, - anon_sym_in, - STATE(6713), 1, + ACTIONS(9074), 1, + anon_sym_PLUS, + ACTIONS(9092), 1, + anon_sym_bit_DASHand, + ACTIONS(9094), 1, + anon_sym_bit_DASHxor, + ACTIONS(9096), 1, + anon_sym_bit_DASHor, + ACTIONS(11063), 1, + anon_sym_DASH, + ACTIONS(11065), 1, + anon_sym_and, + ACTIONS(11067), 1, + anon_sym_xor, + ACTIONS(11069), 1, + anon_sym_or, + STATE(6722), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(9072), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(9076), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(1409), 22, - anon_sym_DASH, + ACTIONS(9078), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(9080), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(9082), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(9090), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9084), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(9088), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [321732] = 4, + [322195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6714), 1, + STATE(6723), 1, sym_comment, - ACTIONS(4236), 6, + ACTIONS(4398), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4238), 22, + ACTIONS(4400), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514356,19 +514754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321771] = 4, + [322234] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6715), 1, + STATE(6724), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(4406), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1280), 22, + ACTIONS(4408), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514391,19 +514789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321810] = 4, + [322273] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6716), 1, + STATE(6725), 1, sym_comment, - ACTIONS(10790), 6, + ACTIONS(4412), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10792), 22, + ACTIONS(4414), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514426,19 +514824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321849] = 4, + [322312] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6717), 1, + STATE(6726), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1337), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1276), 22, + ACTIONS(1339), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514461,26 +514859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321888] = 4, + [322351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6718), 1, + STATE(6727), 1, sym_comment, - ACTIONS(4105), 7, + ACTIONS(4462), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4107), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4464), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514496,12 +514894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321927] = 4, + [322390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6719), 1, + STATE(6728), 1, sym_comment, - ACTIONS(4114), 7, + ACTIONS(4455), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -514509,7 +514907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4116), 21, + ACTIONS(4457), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -514531,26 +514929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [321966] = 4, + [322429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6720), 1, + STATE(6729), 1, sym_comment, - ACTIONS(4118), 7, + ACTIONS(4474), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4120), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4476), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514566,64 +514964,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322005] = 5, - ACTIONS(105), 1, + [322468] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym_unquoted_token3, - STATE(6721), 1, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(6730), 1, sym_comment, - ACTIONS(825), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(823), 19, + ACTIONS(2998), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [322046] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6722), 1, - sym_comment, - ACTIONS(1193), 6, - anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1195), 22, + ACTIONS(3000), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -514637,12 +514998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322085] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [322509] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6723), 1, + STATE(6731), 1, sym_comment, - ACTIONS(2986), 7, + ACTIONS(4462), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -514650,7 +515013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2988), 21, + ACTIONS(4464), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -514672,68 +515035,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322124] = 18, + [322548] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_PLUS, - ACTIONS(10993), 1, + ACTIONS(10396), 1, anon_sym_DASH, - ACTIONS(11007), 1, + ACTIONS(10404), 1, + anon_sym_PLUS, + ACTIONS(10416), 1, anon_sym_bit_DASHand, - ACTIONS(11009), 1, + ACTIONS(10418), 1, anon_sym_bit_DASHxor, - ACTIONS(11011), 1, + ACTIONS(10420), 1, anon_sym_bit_DASHor, - ACTIONS(11013), 1, + ACTIONS(11071), 1, anon_sym_and, - ACTIONS(11015), 1, + ACTIONS(11073), 1, anon_sym_xor, - ACTIONS(11017), 1, + ACTIONS(11075), 1, anon_sym_or, - STATE(6724), 1, + STATE(6732), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(10394), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1687), 2, + ACTIONS(10398), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10997), 2, + ACTIONS(10400), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(10999), 2, + ACTIONS(10402), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11001), 2, + ACTIONS(10406), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11005), 2, + ACTIONS(10414), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(10995), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11003), 4, + ACTIONS(10408), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [322191] = 4, + ACTIONS(10412), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [322615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6725), 1, + STATE(6733), 1, sym_comment, - ACTIONS(4418), 6, + ACTIONS(4478), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4420), 22, + ACTIONS(4480), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514756,19 +515119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322230] = 4, + [322654] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6726), 1, + STATE(6734), 1, sym_comment, - ACTIONS(4414), 6, + ACTIONS(4482), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4416), 22, + ACTIONS(4484), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -514791,26 +515154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322269] = 4, + [322693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6727), 1, + STATE(6735), 1, sym_comment, - ACTIONS(4122), 7, + ACTIONS(4086), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4124), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4088), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514826,124 +515189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322308] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9224), 1, - anon_sym_PLUS, - ACTIONS(9242), 1, - anon_sym_bit_DASHand, - ACTIONS(9244), 1, - anon_sym_bit_DASHxor, - ACTIONS(9246), 1, - anon_sym_bit_DASHor, - ACTIONS(11019), 1, - anon_sym_DASH, - ACTIONS(11021), 1, - anon_sym_and, - ACTIONS(11023), 1, - anon_sym_xor, - ACTIONS(11025), 1, - anon_sym_or, - STATE(6728), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9228), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9230), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9232), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9234), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9240), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(9238), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [322375] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_PLUS, - ACTIONS(11027), 1, - anon_sym_DASH, - ACTIONS(11033), 1, - anon_sym_bit_DASHand, - ACTIONS(11035), 1, - anon_sym_bit_DASHxor, - ACTIONS(11037), 1, - anon_sym_bit_DASHor, - ACTIONS(11039), 1, - anon_sym_and, - ACTIONS(11041), 1, - anon_sym_xor, - ACTIONS(11043), 1, - anon_sym_or, - STATE(6729), 1, - sym_comment, - ACTIONS(9770), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9772), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9774), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9872), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9882), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11031), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9880), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11029), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [322442] = 4, + [322732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6730), 1, + STATE(6736), 1, sym_comment, - ACTIONS(4126), 7, + ACTIONS(4090), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4128), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4092), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514959,26 +515224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322481] = 4, + [322771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6731), 1, + STATE(6737), 1, sym_comment, - ACTIONS(4320), 7, + ACTIONS(3929), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4322), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3931), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -514994,12 +515259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322520] = 4, + [322810] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6732), 1, + STATE(6738), 1, sym_comment, - ACTIONS(4303), 7, + ACTIONS(4474), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -515007,7 +515272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4305), 21, + ACTIONS(4476), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -515029,12 +515294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322559] = 4, + [322849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6733), 1, + STATE(6739), 1, sym_comment, - ACTIONS(1259), 7, + ACTIONS(3804), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -515042,7 +515307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(1261), 21, + ACTIONS(3806), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -515064,19 +515329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322598] = 4, + [322888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6734), 1, + STATE(6740), 1, sym_comment, - ACTIONS(1321), 6, + ACTIONS(1345), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1323), 22, + ACTIONS(1347), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515099,19 +515364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322637] = 4, + [322927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6735), 1, + STATE(6741), 1, sym_comment, - ACTIONS(4013), 6, + ACTIONS(4150), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4015), 22, + ACTIONS(4152), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515134,54 +515399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6736), 1, - sym_comment, - ACTIONS(4134), 7, - anon_sym_DASH, - anon_sym__, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4136), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [322715] = 4, + [322966] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6737), 1, + STATE(6742), 1, sym_comment, - ACTIONS(4228), 6, + ACTIONS(4164), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4230), 22, + ACTIONS(4166), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515204,19 +515434,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322754] = 4, + [323005] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6738), 1, + ACTIONS(10301), 1, + anon_sym_PLUS, + ACTIONS(10319), 1, + anon_sym_bit_DASHand, + ACTIONS(10321), 1, + anon_sym_bit_DASHxor, + ACTIONS(10328), 1, + anon_sym_bit_DASHor, + ACTIONS(10330), 1, + anon_sym_and, + ACTIONS(10332), 1, + anon_sym_xor, + ACTIONS(10336), 1, + anon_sym_or, + ACTIONS(11077), 1, + anon_sym_DASH, + STATE(6743), 1, + sym_comment, + ACTIONS(10299), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10303), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10305), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10307), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10309), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10317), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10311), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10313), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323072] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6744), 1, sym_comment, - ACTIONS(1397), 6, + ACTIONS(4168), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1399), 22, + ACTIONS(4170), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515239,12 +515518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322793] = 4, + [323111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6739), 1, + STATE(6745), 1, sym_comment, - ACTIONS(4138), 7, + ACTIONS(4478), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -515252,7 +515531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4140), 21, + ACTIONS(4480), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -515274,19 +515553,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322832] = 4, + [323150] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6740), 1, + ACTIONS(10758), 1, + anon_sym_DASH, + ACTIONS(10766), 1, + anon_sym_PLUS, + ACTIONS(10780), 1, + anon_sym_bit_DASHand, + ACTIONS(10782), 1, + anon_sym_bit_DASHxor, + ACTIONS(10784), 1, + anon_sym_bit_DASHor, + ACTIONS(10786), 1, + anon_sym_and, + ACTIONS(10788), 1, + anon_sym_xor, + ACTIONS(10797), 1, + anon_sym_or, + STATE(6746), 1, + sym_comment, + ACTIONS(10756), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10760), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10762), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10764), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10768), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10778), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10770), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10776), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6747), 1, sym_comment, - ACTIONS(4224), 6, + ACTIONS(4248), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4226), 22, + ACTIONS(4250), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515309,19 +515637,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322871] = 4, + [323256] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6741), 1, + ACTIONS(10537), 1, + anon_sym_DASH, + ACTIONS(10545), 1, + anon_sym_PLUS, + ACTIONS(10555), 1, + anon_sym_bit_DASHand, + ACTIONS(10557), 1, + anon_sym_bit_DASHxor, + ACTIONS(10559), 1, + anon_sym_bit_DASHor, + ACTIONS(10561), 1, + anon_sym_and, + ACTIONS(10563), 1, + anon_sym_xor, + ACTIONS(10565), 1, + anon_sym_or, + STATE(6748), 1, + sym_comment, + ACTIONS(10535), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10539), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10541), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10543), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10547), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10553), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10549), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10551), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323323] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7172), 1, + anon_sym_PLUS, + ACTIONS(7190), 1, + anon_sym_bit_DASHand, + ACTIONS(7192), 1, + anon_sym_bit_DASHxor, + ACTIONS(7194), 1, + anon_sym_bit_DASHor, + ACTIONS(7196), 1, + anon_sym_and, + ACTIONS(7198), 1, + anon_sym_xor, + ACTIONS(7200), 1, + anon_sym_or, + ACTIONS(11079), 1, + anon_sym_DASH, + STATE(6749), 1, + sym_comment, + ACTIONS(7170), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7174), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7176), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7178), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7180), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7188), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7186), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323390] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6750), 1, sym_comment, - ACTIONS(4220), 6, + ACTIONS(1217), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4222), 22, + ACTIONS(1219), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515344,61 +515770,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322910] = 4, + [323429] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6742), 1, + ACTIONS(9667), 1, + anon_sym_PLUS, + ACTIONS(9685), 1, + anon_sym_bit_DASHand, + ACTIONS(9687), 1, + anon_sym_bit_DASHxor, + ACTIONS(9689), 1, + anon_sym_bit_DASHor, + ACTIONS(11081), 1, + anon_sym_DASH, + ACTIONS(11083), 1, + anon_sym_and, + ACTIONS(11085), 1, + anon_sym_xor, + ACTIONS(11087), 1, + anon_sym_or, + STATE(6751), 1, sym_comment, - ACTIONS(4200), 6, + ACTIONS(9665), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9671), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9673), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9675), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9683), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9677), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9681), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323496] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9433), 1, + anon_sym_PLUS, + ACTIONS(9451), 1, + anon_sym_bit_DASHand, + ACTIONS(9453), 1, + anon_sym_bit_DASHxor, + ACTIONS(9455), 1, + anon_sym_bit_DASHor, + ACTIONS(11089), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4202), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(11091), 1, + anon_sym_and, + ACTIONS(11093), 1, + anon_sym_xor, + ACTIONS(11095), 1, + anon_sym_or, + STATE(6752), 1, + sym_comment, + ACTIONS(9431), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(9435), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9437), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(9439), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(9441), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(9449), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(9443), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(9447), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323563] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5869), 1, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [322949] = 4, + ACTIONS(11097), 1, + anon_sym_DASH, + ACTIONS(11111), 1, + anon_sym_bit_DASHand, + ACTIONS(11113), 1, + anon_sym_bit_DASHxor, + ACTIONS(11115), 1, + anon_sym_bit_DASHor, + ACTIONS(11117), 1, + anon_sym_and, + ACTIONS(11119), 1, + anon_sym_xor, + ACTIONS(11121), 1, + anon_sym_or, + STATE(6753), 1, + sym_comment, + ACTIONS(5867), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11101), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(11103), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(11105), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(11109), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11099), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(11107), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [323630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6743), 1, + STATE(6754), 1, sym_comment, - ACTIONS(4194), 6, + ACTIONS(4482), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4196), 22, + aux_sym_unquoted_token1, + ACTIONS(4484), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -515414,54 +515952,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [322988] = 4, + [323669] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6744), 1, + ACTIONS(11123), 1, + sym_long_flag_identifier, + STATE(6755), 1, sym_comment, - ACTIONS(4190), 6, + ACTIONS(3887), 12, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4192), 22, + ACTIONS(3891), 15, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323027] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [323710] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6745), 1, + ACTIONS(1715), 1, + anon_sym_PLUS, + ACTIONS(11125), 1, + anon_sym_DASH, + ACTIONS(11131), 1, + anon_sym_bit_DASHand, + ACTIONS(11133), 1, + anon_sym_bit_DASHxor, + ACTIONS(11135), 1, + anon_sym_bit_DASHor, + ACTIONS(11137), 1, + anon_sym_and, + ACTIONS(11139), 1, + anon_sym_xor, + ACTIONS(11141), 1, + anon_sym_or, + STATE(6756), 1, + sym_comment, + ACTIONS(1713), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1717), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1719), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(1721), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(1729), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11129), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(1725), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(11127), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6757), 1, sym_comment, - ACTIONS(1389), 6, + ACTIONS(4172), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1391), 22, + ACTIONS(4174), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515484,19 +516072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323066] = 4, + [323816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6746), 1, + STATE(6758), 1, sym_comment, - ACTIONS(4176), 6, + ACTIONS(1357), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4178), 22, + ACTIONS(1359), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515519,12 +516107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323105] = 4, + [323855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6747), 1, + STATE(6759), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(4086), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -515532,7 +516120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4313), 21, + ACTIONS(4088), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -515554,12 +516142,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323144] = 4, + [323894] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6748), 1, + ACTIONS(10579), 1, + anon_sym_PLUS, + ACTIONS(10597), 1, + anon_sym_bit_DASHand, + ACTIONS(10599), 1, + anon_sym_bit_DASHxor, + ACTIONS(10601), 1, + anon_sym_bit_DASHor, + ACTIONS(11143), 1, + anon_sym_DASH, + ACTIONS(11145), 1, + anon_sym_and, + ACTIONS(11147), 1, + anon_sym_xor, + ACTIONS(11149), 1, + anon_sym_or, + STATE(6760), 1, + sym_comment, + ACTIONS(10577), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10581), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10583), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10585), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10587), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10595), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10589), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(10593), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [323961] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6761), 1, sym_comment, - ACTIONS(4307), 7, + ACTIONS(4090), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -515567,7 +516204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4309), 21, + ACTIONS(4092), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -515589,19 +516226,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323183] = 4, + [324000] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6749), 1, + ACTIONS(5682), 1, + anon_sym_PLUS, + ACTIONS(11151), 1, + anon_sym_DASH, + ACTIONS(11165), 1, + anon_sym_bit_DASHand, + ACTIONS(11167), 1, + anon_sym_bit_DASHxor, + ACTIONS(11169), 1, + anon_sym_bit_DASHor, + ACTIONS(11171), 1, + anon_sym_and, + ACTIONS(11173), 1, + anon_sym_xor, + ACTIONS(11175), 1, + anon_sym_or, + STATE(6762), 1, + sym_comment, + ACTIONS(5680), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(5684), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11155), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(11157), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(11159), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(11163), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11153), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(11161), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [324067] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6763), 1, sym_comment, - ACTIONS(1385), 6, + ACTIONS(4176), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1387), 22, + ACTIONS(4178), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515624,19 +516310,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323222] = 4, + [324106] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6750), 1, + ACTIONS(7230), 1, + anon_sym_PLUS, + ACTIONS(7248), 1, + anon_sym_bit_DASHand, + ACTIONS(7250), 1, + anon_sym_bit_DASHxor, + ACTIONS(7252), 1, + anon_sym_bit_DASHor, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_xor, + ACTIONS(7258), 1, + anon_sym_or, + ACTIONS(11177), 1, + anon_sym_DASH, + STATE(6764), 1, + sym_comment, + ACTIONS(7228), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7234), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(7236), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(7246), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(7240), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7244), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [324173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6765), 1, sym_comment, - ACTIONS(10732), 6, + ACTIONS(4184), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10734), 22, + ACTIONS(4186), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515659,19 +516394,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323261] = 4, + [324212] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6751), 1, + ACTIONS(1443), 1, + anon_sym_PLUS, + ACTIONS(11179), 1, + anon_sym_DASH, + ACTIONS(11193), 1, + anon_sym_bit_DASHand, + ACTIONS(11195), 1, + anon_sym_bit_DASHxor, + ACTIONS(11197), 1, + anon_sym_bit_DASHor, + ACTIONS(11199), 1, + anon_sym_and, + ACTIONS(11201), 1, + anon_sym_xor, + ACTIONS(11203), 1, + anon_sym_or, + STATE(6766), 1, sym_comment, - ACTIONS(4172), 6, + ACTIONS(1441), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11183), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(11185), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(11187), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(11191), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11181), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(11189), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [324279] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6767), 1, + sym_comment, + ACTIONS(4197), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4174), 22, + ACTIONS(4199), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515694,26 +516478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323300] = 4, + [324318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6752), 1, + STATE(6768), 1, sym_comment, - ACTIONS(4168), 6, + ACTIONS(2998), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4170), 22, + aux_sym_unquoted_token1, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -515729,26 +516513,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323339] = 4, + [324357] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6753), 1, + STATE(6769), 1, sym_comment, - ACTIONS(4328), 6, + ACTIONS(4032), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4330), 22, + aux_sym_unquoted_token1, + ACTIONS(4034), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -515764,19 +516548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323378] = 4, + [324396] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6754), 1, + STATE(6770), 1, sym_comment, - ACTIONS(11047), 6, + ACTIONS(4201), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(11045), 22, + ACTIONS(4203), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515799,28 +516583,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323417] = 4, + [324435] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6755), 1, + ACTIONS(6538), 1, + anon_sym_DOT2, + STATE(6771), 1, sym_comment, - ACTIONS(2996), 7, + ACTIONS(1054), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2998), 21, + ACTIONS(1056), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -515834,26 +516617,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323456] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [324476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6756), 1, + STATE(6772), 1, sym_comment, - ACTIONS(11051), 6, + ACTIONS(4342), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11049), 22, + aux_sym_unquoted_token1, + ACTIONS(4344), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -515869,19 +516654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323495] = 4, + [324515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6757), 1, + STATE(6773), 1, sym_comment, - ACTIONS(10711), 6, + ACTIONS(4215), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(11053), 22, + ACTIONS(4217), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515904,19 +516689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323534] = 4, + [324554] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6758), 1, + STATE(6774), 1, sym_comment, - ACTIONS(4158), 6, + ACTIONS(4231), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4160), 22, + ACTIONS(4233), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -515939,27 +516724,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323573] = 5, + [324593] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11055), 1, - anon_sym_DOT2, - STATE(6759), 1, + ACTIONS(1397), 1, + anon_sym_PLUS, + ACTIONS(11205), 1, + anon_sym_DASH, + ACTIONS(11219), 1, + anon_sym_bit_DASHand, + ACTIONS(11221), 1, + anon_sym_bit_DASHxor, + ACTIONS(11223), 1, + anon_sym_bit_DASHor, + ACTIONS(11225), 1, + anon_sym_and, + ACTIONS(11227), 1, + anon_sym_xor, + ACTIONS(11229), 1, + anon_sym_or, + STATE(6775), 1, sym_comment, - ACTIONS(3941), 7, - anon_sym_DOLLAR, + ACTIONS(1395), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1399), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11209), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(11211), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(11213), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(11217), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11207), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(11215), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [324660] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6776), 1, + sym_comment, + ACTIONS(4259), 6, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3943), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(4261), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -515973,21 +516808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [323614] = 4, + [324699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6760), 1, + STATE(6777), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(4289), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1340), 22, + ACTIONS(4291), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516010,19 +516843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323653] = 4, + [324738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6761), 1, + STATE(6778), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(4311), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1340), 22, + ACTIONS(4313), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516045,19 +516878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323692] = 4, + [324777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6762), 1, + STATE(6779), 1, sym_comment, - ACTIONS(4146), 6, + ACTIONS(1361), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4148), 22, + ACTIONS(1363), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516080,26 +516913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323731] = 4, + [324816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6763), 1, + STATE(6780), 1, sym_comment, - ACTIONS(4336), 6, + ACTIONS(4164), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4338), 22, + aux_sym_unquoted_token1, + ACTIONS(4166), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -516115,55 +516948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323770] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11057), 1, - anon_sym_DOT2, - STATE(6764), 1, - sym_comment, - ACTIONS(3935), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3937), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [323811] = 4, + [324855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6765), 1, + STATE(6781), 1, sym_comment, - ACTIONS(4142), 6, + ACTIONS(1221), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4144), 22, + ACTIONS(1223), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516186,54 +516983,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323850] = 4, + [324894] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6766), 1, - sym_comment, - ACTIONS(4138), 6, + ACTIONS(10350), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4140), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(10360), 1, anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [323889] = 4, + ACTIONS(10368), 1, + anon_sym_bit_DASHand, + ACTIONS(10567), 1, + anon_sym_bit_DASHxor, + ACTIONS(10569), 1, + anon_sym_bit_DASHor, + ACTIONS(10571), 1, + anon_sym_and, + ACTIONS(10573), 1, + anon_sym_xor, + ACTIONS(10575), 1, + anon_sym_or, + STATE(6782), 1, + sym_comment, + ACTIONS(10348), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(10354), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(10356), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(10358), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(10362), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(10366), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(10352), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(10364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [324961] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6767), 1, + STATE(6783), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(4315), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1284), 22, + ACTIONS(4317), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516256,19 +517067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323928] = 4, + [325000] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6768), 1, + STATE(6784), 1, sym_comment, - ACTIONS(4134), 6, + ACTIONS(4322), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4136), 22, + ACTIONS(4324), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516291,19 +517102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [323967] = 4, + [325039] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6769), 1, + STATE(6785), 1, sym_comment, - ACTIONS(4126), 6, + ACTIONS(4326), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4128), 22, + ACTIONS(4328), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516326,19 +517137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324006] = 4, + [325078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6770), 1, + STATE(6786), 1, sym_comment, - ACTIONS(4122), 6, + ACTIONS(4255), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4124), 22, + ACTIONS(4257), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516361,19 +517172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324045] = 4, + [325117] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6771), 1, + STATE(6787), 1, sym_comment, - ACTIONS(4118), 6, + ACTIONS(1368), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4120), 22, + ACTIONS(1370), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516396,12 +517207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324084] = 4, + [325156] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6772), 1, + STATE(6788), 1, sym_comment, - ACTIONS(4382), 7, + ACTIONS(4168), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -516409,7 +517220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4384), 21, + ACTIONS(4170), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -516431,19 +517242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324123] = 4, + [325195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6773), 1, + STATE(6789), 1, sym_comment, - ACTIONS(4114), 6, + ACTIONS(8333), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4116), 22, + ACTIONS(8335), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516466,19 +517277,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324162] = 4, + [325234] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(6774), 1, + ACTIONS(1685), 1, + anon_sym_PLUS, + ACTIONS(11231), 1, + anon_sym_DASH, + ACTIONS(11245), 1, + anon_sym_bit_DASHand, + ACTIONS(11247), 1, + anon_sym_bit_DASHxor, + ACTIONS(11249), 1, + anon_sym_bit_DASHor, + ACTIONS(11251), 1, + anon_sym_and, + ACTIONS(11253), 1, + anon_sym_xor, + ACTIONS(11255), 1, + anon_sym_or, + STATE(6790), 1, sym_comment, - ACTIONS(3947), 6, + ACTIONS(1683), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1689), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11235), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(11237), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(11239), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(11243), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(11233), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(11241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [325301] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6791), 1, + sym_comment, + ACTIONS(4263), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3951), 22, + ACTIONS(4265), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516501,12 +517361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324201] = 4, + [325340] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6775), 1, + STATE(6792), 1, sym_comment, - ACTIONS(4142), 7, + ACTIONS(4172), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -516514,7 +517374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4144), 21, + ACTIONS(4174), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -516536,19 +517396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324240] = 4, + [325379] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6776), 1, + STATE(6793), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(3887), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1344), 22, + ACTIONS(3891), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516571,19 +517431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324279] = 4, + [325418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6777), 1, + STATE(6794), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1319), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1348), 22, + ACTIONS(1321), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516606,19 +517466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324318] = 4, + [325457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6778), 1, + STATE(6795), 1, sym_comment, - ACTIONS(4105), 6, + ACTIONS(10323), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4107), 22, + ACTIONS(10471), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516641,96 +517501,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324357] = 4, + [325496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6779), 1, + STATE(6796), 1, sym_comment, - ACTIONS(4378), 7, + ACTIONS(10609), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4380), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(10624), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [324396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6780), 1, - sym_comment, - ACTIONS(3888), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3890), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [324435] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6781), 1, - sym_comment, - ACTIONS(3834), 7, - anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3836), 21, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT2, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -516744,21 +517536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [324474] = 4, + [325535] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6782), 1, + STATE(6797), 1, sym_comment, - ACTIONS(4340), 6, + ACTIONS(11259), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4342), 22, + ACTIONS(11257), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516781,68 +517571,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324513] = 18, + [325574] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2909), 1, + ACTIONS(6556), 1, anon_sym_PLUS, - ACTIONS(11059), 1, - anon_sym_DASH, - ACTIONS(11073), 1, + ACTIONS(6574), 1, anon_sym_bit_DASHand, - ACTIONS(11075), 1, + ACTIONS(6576), 1, anon_sym_bit_DASHxor, - ACTIONS(11077), 1, + ACTIONS(6578), 1, anon_sym_bit_DASHor, - ACTIONS(11079), 1, + ACTIONS(6580), 1, anon_sym_and, - ACTIONS(11081), 1, + ACTIONS(6582), 1, anon_sym_xor, - ACTIONS(11083), 1, + ACTIONS(6584), 1, anon_sym_or, - STATE(6783), 1, + ACTIONS(11261), 1, + anon_sym_DASH, + STATE(6798), 1, sym_comment, - ACTIONS(2911), 2, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2925), 2, + ACTIONS(6560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(6562), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(6564), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(6572), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6566), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6570), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + [325641] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_PLUS, + ACTIONS(11263), 1, + anon_sym_DASH, + ACTIONS(11277), 1, + anon_sym_bit_DASHand, + ACTIONS(11279), 1, + anon_sym_bit_DASHxor, + ACTIONS(11281), 1, + anon_sym_bit_DASHor, + ACTIONS(11283), 1, + anon_sym_and, + ACTIONS(11285), 1, + anon_sym_xor, + ACTIONS(11287), 1, + anon_sym_or, + STATE(6799), 1, + sym_comment, + ACTIONS(6368), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(11063), 2, + ACTIONS(6372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(11267), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11065), 2, + ACTIONS(11269), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11067), 2, + ACTIONS(11271), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11071), 2, + ACTIONS(11275), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11061), 4, + ACTIONS(11265), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11069), 4, + ACTIONS(11273), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [324580] = 4, + [325708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6784), 1, + STATE(6800), 1, sym_comment, - ACTIONS(1405), 6, + ACTIONS(11291), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1407), 22, + ACTIONS(11289), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -516865,62 +517704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324619] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11085), 1, - anon_sym_DOT2, - STATE(6785), 1, - sym_comment, - ACTIONS(3921), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3923), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [324660] = 4, + [325747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6786), 1, + STATE(6801), 1, sym_comment, - ACTIONS(4146), 7, + ACTIONS(10790), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4148), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11293), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -516936,12 +517739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324699] = 4, + [325786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6787), 1, + STATE(6802), 1, sym_comment, - ACTIONS(4158), 7, + ACTIONS(4176), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -516949,7 +517752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4160), 21, + ACTIONS(4178), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -516971,19 +517774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324738] = 4, + [325825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6788), 1, + STATE(6803), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(4368), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2998), 22, + ACTIONS(4370), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517006,19 +517809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324777] = 4, + [325864] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6789), 1, + STATE(6804), 1, sym_comment, - ACTIONS(4406), 6, + ACTIONS(4372), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4408), 22, + ACTIONS(4374), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517041,19 +517844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324816] = 4, + [325903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6790), 1, + STATE(6805), 1, sym_comment, - ACTIONS(1033), 6, + ACTIONS(4376), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1035), 22, + ACTIONS(4378), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517076,26 +517879,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324855] = 4, + [325942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6791), 1, + STATE(6806), 1, sym_comment, - ACTIONS(4299), 7, + ACTIONS(4380), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4301), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4382), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517111,62 +517914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324894] = 5, + [325981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11087), 1, - sym_long_flag_identifier, - STATE(6792), 1, - sym_comment, - ACTIONS(3947), 12, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3951), 15, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_PLUS, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token5, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [324935] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6793), 1, + STATE(6807), 1, sym_comment, - ACTIONS(4295), 7, + ACTIONS(4386), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4297), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4388), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517182,26 +517949,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [324974] = 4, + [326020] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6794), 1, + STATE(6808), 1, sym_comment, - ACTIONS(2986), 7, - anon_sym_DOLLAR, + ACTIONS(4402), 6, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4404), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -517215,14 +517984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [325013] = 4, + [326059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6795), 1, + STATE(6809), 1, sym_comment, - ACTIONS(11091), 7, + ACTIONS(4184), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -517230,7 +517997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(11089), 21, + ACTIONS(4186), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -517252,19 +518019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325052] = 4, + [326098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6796), 1, + STATE(6810), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(4416), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1352), 22, + ACTIONS(4418), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517287,19 +518054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325091] = 4, + [326137] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6797), 1, + STATE(6811), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(4420), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1356), 22, + ACTIONS(4422), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517322,26 +518089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325130] = 4, + [326176] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6798), 1, + STATE(6812), 1, sym_comment, - ACTIONS(11095), 7, + ACTIONS(4424), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(11093), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4426), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517357,19 +518124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325169] = 4, + [326215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6799), 1, + STATE(6813), 1, sym_comment, - ACTIONS(1325), 6, + ACTIONS(4470), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1327), 22, + ACTIONS(4472), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517392,27 +518159,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325208] = 5, + [326254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11099), 1, - anon_sym_COMMA, - STATE(6800), 1, + STATE(6814), 1, sym_comment, - ACTIONS(11101), 7, + ACTIONS(4486), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(11097), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(4488), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517424,80 +518190,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [325249] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6520), 1, - anon_sym_PLUS, - ACTIONS(6538), 1, - anon_sym_bit_DASHand, - ACTIONS(6540), 1, - anon_sym_bit_DASHxor, - ACTIONS(6542), 1, - anon_sym_bit_DASHor, - ACTIONS(6544), 1, - anon_sym_and, - ACTIONS(6546), 1, - anon_sym_xor, - ACTIONS(6656), 1, - anon_sym_or, - ACTIONS(11103), 1, - anon_sym_DASH, - STATE(6801), 1, - sym_comment, - ACTIONS(6518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6524), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6526), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6528), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6530), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6536), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6532), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6534), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [325316] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [326293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10718), 1, - aux_sym__immediate_decimal_token2, - STATE(6802), 1, + STATE(6815), 1, sym_comment, - ACTIONS(2996), 6, - anon_sym_DOLLAR, + ACTIONS(4279), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4281), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -517511,21 +518229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [325357] = 4, + [326332] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6803), 1, + STATE(6816), 1, sym_comment, - ACTIONS(4398), 6, + ACTIONS(2998), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4400), 22, + ACTIONS(3000), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517548,26 +518264,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325396] = 4, + [326371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6804), 1, + STATE(6817), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(4299), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1254), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4301), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517583,19 +518299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325435] = 4, + [326410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6805), 1, + STATE(6818), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(4060), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 22, + ACTIONS(4062), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517618,26 +518334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325474] = 4, + [326449] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6806), 1, + STATE(6819), 1, sym_comment, - ACTIONS(4168), 7, + ACTIONS(4068), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4170), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(4070), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -517653,19 +518369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325513] = 4, + [326488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6807), 1, + STATE(6820), 1, sym_comment, - ACTIONS(4394), 6, + ACTIONS(4072), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4396), 22, + ACTIONS(4074), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517688,75 +518404,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325552] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DASH, - ACTIONS(10636), 1, - anon_sym_PLUS, - ACTIONS(10644), 1, - anon_sym_bit_DASHand, - ACTIONS(10646), 1, - anon_sym_bit_DASHxor, - ACTIONS(10648), 1, - anon_sym_bit_DASHor, - ACTIONS(10650), 1, - anon_sym_and, - ACTIONS(10652), 1, - anon_sym_xor, - ACTIONS(10654), 1, - anon_sym_or, - STATE(6808), 1, - sym_comment, - ACTIONS(10624), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10630), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10632), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10634), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10638), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10642), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10628), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10640), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [325619] = 4, + [326527] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6809), 1, + STATE(6821), 1, sym_comment, - ACTIONS(2996), 7, - anon_sym_DOLLAR, + ACTIONS(4197), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + aux_sym_unquoted_token1, + ACTIONS(4199), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -517770,70 +518439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [325658] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PLUS, - ACTIONS(11105), 1, - anon_sym_DASH, - ACTIONS(11119), 1, - anon_sym_bit_DASHand, - ACTIONS(11121), 1, - anon_sym_bit_DASHxor, - ACTIONS(11123), 1, - anon_sym_bit_DASHor, - ACTIONS(11125), 1, - anon_sym_and, - ACTIONS(11127), 1, - anon_sym_xor, - ACTIONS(11129), 1, - anon_sym_or, - STATE(6810), 1, - sym_comment, - ACTIONS(1415), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11109), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11111), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11113), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11117), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11107), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [325725] = 4, + [326566] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6811), 1, + STATE(6822), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(4076), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1360), 22, + ACTIONS(4078), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517856,12 +518474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325764] = 4, + [326605] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6812), 1, + STATE(6823), 1, sym_comment, - ACTIONS(4269), 7, + ACTIONS(4201), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -517869,7 +518487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4271), 21, + ACTIONS(4203), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -517891,27 +518509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325803] = 5, + [326644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10726), 1, - aux_sym__immediate_decimal_token2, - STATE(6813), 1, + STATE(6824), 1, sym_comment, - ACTIONS(2986), 6, - anon_sym_DOLLAR, + ACTIONS(4215), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + aux_sym_unquoted_token1, + ACTIONS(4217), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -517925,21 +518544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [325844] = 4, + [326683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6814), 1, + STATE(6825), 1, sym_comment, - ACTIONS(2986), 6, + ACTIONS(4295), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2988), 22, + ACTIONS(4297), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -517962,14 +518579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [325883] = 5, + [326722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11131), 1, + ACTIONS(11295), 1, anon_sym_DOT2, - STATE(6815), 1, + STATE(6826), 1, sym_comment, - ACTIONS(3909), 7, + ACTIONS(3977), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT, @@ -517977,7 +518594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3911), 20, + ACTIONS(3979), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -517998,27 +518615,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [325924] = 5, + [326763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11133), 1, - aux_sym__immediate_decimal_token2, - STATE(6816), 1, + STATE(6827), 1, sym_comment, - ACTIONS(3834), 6, - anon_sym_DOLLAR, + ACTIONS(1191), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3836), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1193), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518032,30 +518650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [325965] = 4, + [326802] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6817), 1, + ACTIONS(11297), 1, + anon_sym_DOT2, + STATE(6828), 1, sym_comment, - ACTIONS(1243), 7, + ACTIONS(4026), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1245), 21, + ACTIONS(4028), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518069,27 +518684,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326004] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [326843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11135), 1, - anon_sym_DOT2, - STATE(6818), 1, + STATE(6829), 1, sym_comment, - ACTIONS(3915), 7, - anon_sym_DOLLAR, + ACTIONS(4231), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3917), 20, + aux_sym_unquoted_token1, + ACTIONS(4233), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518103,28 +518721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [326045] = 4, + [326882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6819), 1, + STATE(6830), 1, sym_comment, - ACTIONS(4320), 6, + ACTIONS(1217), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4322), 22, + aux_sym_unquoted_token1, + ACTIONS(1219), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -518140,124 +518756,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326084] = 18, + [326921] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, - anon_sym_DASH, - ACTIONS(10433), 1, + ACTIONS(10051), 1, anon_sym_PLUS, - ACTIONS(10441), 1, + ACTIONS(11299), 1, + anon_sym_DASH, + ACTIONS(11313), 1, anon_sym_bit_DASHand, - ACTIONS(10443), 1, + ACTIONS(11315), 1, anon_sym_bit_DASHxor, - ACTIONS(10445), 1, + ACTIONS(11317), 1, anon_sym_bit_DASHor, - ACTIONS(10447), 1, + ACTIONS(11319), 1, anon_sym_and, - ACTIONS(10449), 1, + ACTIONS(11321), 1, anon_sym_xor, - ACTIONS(10451), 1, + ACTIONS(11323), 1, anon_sym_or, - STATE(6820), 1, + STATE(6831), 1, sym_comment, - ACTIONS(10421), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10427), 2, + ACTIONS(10047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10429), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10431), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10435), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10439), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10425), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10437), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [326151] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5790), 1, - anon_sym_PLUS, - ACTIONS(11137), 1, - anon_sym_DASH, - ACTIONS(11151), 1, - anon_sym_bit_DASHand, - ACTIONS(11153), 1, - anon_sym_bit_DASHxor, - ACTIONS(11155), 1, - anon_sym_bit_DASHor, - ACTIONS(11157), 1, - anon_sym_and, - ACTIONS(11159), 1, - anon_sym_xor, - ACTIONS(11161), 1, - anon_sym_or, - STATE(6821), 1, - sym_comment, - ACTIONS(5788), 2, + ACTIONS(10069), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(5792), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11141), 2, + ACTIONS(11303), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(11143), 2, + ACTIONS(11305), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(11145), 2, + ACTIONS(11307), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(11149), 2, + ACTIONS(11311), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(11139), 4, + ACTIONS(11301), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(11147), 4, + ACTIONS(11309), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [326218] = 4, + [326988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6822), 1, + STATE(6832), 1, sym_comment, - ACTIONS(1332), 6, + ACTIONS(4259), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1334), 22, + aux_sym_unquoted_token1, + ACTIONS(4261), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -518273,27 +518840,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326257] = 5, + [327027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11163), 1, - anon_sym_DOT2, - STATE(6823), 1, + STATE(6833), 1, sym_comment, - ACTIONS(3927), 7, - anon_sym_DOLLAR, + ACTIONS(4490), 6, anon_sym_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3929), 20, + aux_sym__unquoted_in_list_token1, + ACTIONS(4492), 22, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518307,21 +518875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [326298] = 4, + [327066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6824), 1, + STATE(6834), 1, sym_comment, - ACTIONS(10774), 6, + ACTIONS(1425), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10776), 22, + ACTIONS(1427), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -518344,19 +518910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326337] = 4, + [327105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6825), 1, + STATE(6835), 1, sym_comment, - ACTIONS(4410), 6, + ACTIONS(1429), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4412), 22, + ACTIONS(1431), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -518379,19 +518945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326376] = 4, + [327144] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6826), 1, + STATE(6836), 1, sym_comment, - ACTIONS(11167), 6, + ACTIONS(4303), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(11165), 22, + ACTIONS(4305), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -518414,26 +518980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326415] = 4, + [327183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6827), 1, + STATE(6837), 1, sym_comment, - ACTIONS(11167), 6, + ACTIONS(1221), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11165), 22, + aux_sym_unquoted_token1, + ACTIONS(1223), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -518449,19 +519015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326454] = 4, + [327222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6828), 1, + STATE(6838), 1, sym_comment, - ACTIONS(11171), 6, + ACTIONS(10772), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(11169), 22, + ACTIONS(10774), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -518484,28 +519050,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326493] = 4, + [327261] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6829), 1, + ACTIONS(11325), 1, + anon_sym_DOT2, + STATE(6839), 1, sym_comment, - ACTIONS(4390), 6, + ACTIONS(4036), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4392), 22, + ACTIONS(4038), 20, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518519,28 +519084,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326532] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [327302] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6830), 1, + ACTIONS(11327), 1, + anon_sym_DOT2, + STATE(6840), 1, sym_comment, - ACTIONS(4176), 7, + ACTIONS(3840), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4178), 21, + ACTIONS(3842), 20, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518554,26 +519120,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326571] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [327343] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6831), 1, + ACTIONS(11329), 1, + anon_sym_DOT2, + STATE(6841), 1, sym_comment, - ACTIONS(10692), 7, + ACTIONS(3903), 7, anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(10688), 21, + ACTIONS(3905), 20, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [327384] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11331), 1, + anon_sym_DOT2, + STATE(6842), 1, + sym_comment, + ACTIONS(3909), 7, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3911), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518589,12 +519194,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [326610] = 4, + [327425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6832), 1, + STATE(6843), 1, sym_comment, - ACTIONS(4194), 7, + ACTIONS(4289), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -518602,7 +519207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4196), 21, + ACTIONS(4291), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -518624,24 +519229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326649] = 4, + [327464] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6833), 1, + STATE(6844), 1, sym_comment, - ACTIONS(4386), 6, + ACTIONS(10638), 7, + anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4388), 22, + ACTIONS(10634), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, @@ -518659,61 +519262,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326688] = 18, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [327503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10658), 1, + STATE(6845), 1, + sym_comment, + ACTIONS(10671), 6, anon_sym_DASH, - ACTIONS(10668), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(10673), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_PLUS, - ACTIONS(10676), 1, - anon_sym_bit_DASHand, - ACTIONS(10678), 1, - anon_sym_bit_DASHxor, - ACTIONS(10680), 1, - anon_sym_bit_DASHor, - ACTIONS(10682), 1, - anon_sym_and, - ACTIONS(10684), 1, - anon_sym_xor, - ACTIONS(10686), 1, - anon_sym_or, - STATE(6834), 1, - sym_comment, - ACTIONS(10656), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10662), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10664), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10666), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10670), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10674), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10660), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10672), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [326755] = 4, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [327542] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6835), 1, + STATE(6846), 1, sym_comment, - ACTIONS(4374), 7, + ACTIONS(4311), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -518721,7 +519312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4376), 21, + ACTIONS(4313), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -518743,27 +519334,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326794] = 5, + [327581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT2, - STATE(6836), 1, + STATE(6847), 1, sym_comment, - ACTIONS(1102), 7, - anon_sym_DOLLAR, + ACTIONS(4315), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 20, + aux_sym_unquoted_token1, + ACTIONS(4317), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518777,77 +519369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [326835] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10269), 1, - anon_sym_PLUS, - ACTIONS(10308), 1, - anon_sym_bit_DASHand, - ACTIONS(10310), 1, - anon_sym_bit_DASHxor, - ACTIONS(10312), 1, - anon_sym_bit_DASHor, - ACTIONS(10314), 1, - anon_sym_and, - ACTIONS(10316), 1, - anon_sym_xor, - ACTIONS(10338), 1, - anon_sym_or, - ACTIONS(11173), 1, - anon_sym_DASH, - STATE(6837), 1, - sym_comment, - ACTIONS(10267), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10277), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10306), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10279), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10304), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [326902] = 4, + [327620] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6838), 1, + STATE(6848), 1, sym_comment, - ACTIONS(1259), 7, - anon_sym_DOLLAR, + ACTIONS(4322), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1261), 21, + aux_sym_unquoted_token1, + ACTIONS(4324), 21, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -518861,28 +519404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [326941] = 4, + [327659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6839), 1, + STATE(6849), 1, sym_comment, - ACTIONS(4382), 6, + ACTIONS(4326), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4384), 22, + aux_sym_unquoted_token1, + ACTIONS(4328), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -518898,75 +519439,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [326980] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10352), 1, - anon_sym_DASH, - ACTIONS(10362), 1, - anon_sym_PLUS, - ACTIONS(10372), 1, - anon_sym_bit_DASHand, - ACTIONS(10374), 1, - anon_sym_bit_DASHxor, - ACTIONS(10376), 1, - anon_sym_bit_DASHor, - ACTIONS(11175), 1, - anon_sym_and, - ACTIONS(11177), 1, - anon_sym_xor, - ACTIONS(11179), 1, - anon_sym_or, - STATE(6840), 1, - sym_comment, - ACTIONS(10350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10358), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10360), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10364), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10370), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10366), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10368), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [327047] = 4, + [327698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6841), 1, + STATE(6850), 1, sym_comment, - ACTIONS(1098), 6, + ACTIONS(4368), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1100), 22, + aux_sym_unquoted_token1, + ACTIONS(4370), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -518982,12 +519474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327086] = 4, + [327737] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6842), 1, + STATE(6851), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(4372), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -518995,7 +519487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4372), 21, + ACTIONS(4374), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519017,19 +519509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327125] = 4, + [327776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6843), 1, + STATE(6852), 1, sym_comment, - ACTIONS(4370), 6, + ACTIONS(9863), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4372), 22, + ACTIONS(10174), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -519052,26 +519544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327164] = 4, + [327815] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6844), 1, + STATE(6853), 1, sym_comment, - ACTIONS(4378), 6, + ACTIONS(4376), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4380), 22, + aux_sym_unquoted_token1, + ACTIONS(4378), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519087,26 +519579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327203] = 4, + [327854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6845), 1, + STATE(6854), 1, sym_comment, - ACTIONS(4374), 6, + ACTIONS(4380), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4376), 22, + aux_sym_unquoted_token1, + ACTIONS(4382), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519122,68 +519614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327242] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - anon_sym_PLUS, - ACTIONS(11181), 1, - anon_sym_DASH, - ACTIONS(11187), 1, - anon_sym_bit_DASHand, - ACTIONS(11189), 1, - anon_sym_bit_DASHxor, - ACTIONS(11191), 1, - anon_sym_bit_DASHor, - ACTIONS(11193), 1, - anon_sym_and, - ACTIONS(11195), 1, - anon_sym_xor, - ACTIONS(11197), 1, - anon_sym_or, - STATE(6846), 1, - sym_comment, - ACTIONS(1713), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1719), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1721), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(1723), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(1729), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11185), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(1727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(11183), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [327309] = 4, + [327893] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6847), 1, + STATE(6855), 1, sym_comment, - ACTIONS(4269), 6, + ACTIONS(10093), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(4271), 22, + ACTIONS(10099), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -519206,12 +519649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327348] = 4, + [327932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6848), 1, + STATE(6856), 1, sym_comment, - ACTIONS(4200), 7, + ACTIONS(4386), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -519219,7 +519662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4202), 21, + ACTIONS(4388), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519241,28 +519684,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327387] = 4, + [327971] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6849), 1, + STATE(6857), 1, sym_comment, - ACTIONS(1113), 6, + ACTIONS(1221), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(1115), 22, + ACTIONS(1223), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -519276,12 +519717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327426] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [328010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6850), 1, + STATE(6858), 1, sym_comment, - ACTIONS(4220), 7, + ACTIONS(4402), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -519289,7 +519732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4222), 21, + ACTIONS(4404), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519311,19 +519754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327465] = 4, + [328049] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6851), 1, + STATE(6859), 1, sym_comment, - ACTIONS(1305), 6, + ACTIONS(2957), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(1307), 22, + ACTIONS(2959), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -519346,19 +519789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327504] = 4, + [328088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6852), 1, + STATE(6860), 1, sym_comment, - ACTIONS(10138), 6, + ACTIONS(1433), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(10144), 22, + ACTIONS(1435), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -519381,26 +519824,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327543] = 4, + [328127] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6853), 1, + ACTIONS(11335), 1, + anon_sym_COMMA, + STATE(6861), 1, sym_comment, - ACTIONS(4190), 7, + ACTIONS(11337), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4192), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11333), 21, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519416,26 +519860,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327582] = 4, + [328168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6854), 1, + STATE(6862), 1, sym_comment, - ACTIONS(4224), 7, + ACTIONS(1266), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4226), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(1268), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519451,12 +519895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327621] = 4, + [328207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6855), 1, + STATE(6863), 1, sym_comment, - ACTIONS(4228), 7, + ACTIONS(4330), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -519464,7 +519908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4230), 21, + ACTIONS(4332), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519486,61 +519930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327660] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9553), 1, - anon_sym_PLUS, - ACTIONS(11199), 1, - anon_sym_DASH, - ACTIONS(11213), 1, - anon_sym_bit_DASHand, - ACTIONS(11215), 1, - anon_sym_bit_DASHxor, - ACTIONS(11217), 1, - anon_sym_bit_DASHor, - ACTIONS(11219), 1, - anon_sym_and, - ACTIONS(11221), 1, - anon_sym_xor, - ACTIONS(11223), 1, - anon_sym_or, - STATE(6856), 1, - sym_comment, - ACTIONS(9551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9555), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11203), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11205), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11207), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11211), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11201), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11209), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [327727] = 4, + [328246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6857), 1, + STATE(6864), 1, sym_comment, - ACTIONS(4236), 7, + ACTIONS(11341), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -519548,7 +519943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4238), 21, + ACTIONS(11339), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519570,159 +519965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [327766] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10592), 1, - anon_sym_PLUS, - ACTIONS(10610), 1, - anon_sym_bit_DASHand, - ACTIONS(10612), 1, - anon_sym_bit_DASHxor, - ACTIONS(10614), 1, - anon_sym_bit_DASHor, - ACTIONS(11225), 1, - anon_sym_DASH, - ACTIONS(11227), 1, - anon_sym_and, - ACTIONS(11229), 1, - anon_sym_xor, - ACTIONS(11231), 1, - anon_sym_or, - STATE(6858), 1, - sym_comment, - ACTIONS(10590), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10596), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10598), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10600), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10608), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10602), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10606), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [327833] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10473), 1, - anon_sym_PLUS, - ACTIONS(10489), 1, - anon_sym_bit_DASHand, - ACTIONS(10491), 1, - anon_sym_bit_DASHxor, - ACTIONS(10493), 1, - anon_sym_bit_DASHor, - ACTIONS(10495), 1, - anon_sym_and, - ACTIONS(10497), 1, - anon_sym_xor, - ACTIONS(10499), 1, - anon_sym_or, - ACTIONS(11233), 1, - anon_sym_DASH, - STATE(6859), 1, - sym_comment, - ACTIONS(10471), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10477), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10479), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10481), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10487), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10483), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(10485), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [327900] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_PLUS, - ACTIONS(9035), 1, - anon_sym_bit_DASHand, - ACTIONS(9037), 1, - anon_sym_bit_DASHxor, - ACTIONS(9039), 1, - anon_sym_bit_DASHor, - ACTIONS(11235), 1, - anon_sym_DASH, - ACTIONS(11237), 1, - anon_sym_and, - ACTIONS(11239), 1, - anon_sym_xor, - ACTIONS(11241), 1, - anon_sym_or, - STATE(6860), 1, - sym_comment, - ACTIONS(8996), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8998), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(9000), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(9023), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9027), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(9033), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(9029), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(9031), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [327967] = 4, + [328285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6861), 1, + STATE(6865), 1, sym_comment, - ACTIONS(4240), 7, + ACTIONS(11345), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -519730,7 +519978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4242), 21, + ACTIONS(11343), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -519752,26 +520000,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328006] = 4, + [328324] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6862), 1, + ACTIONS(11349), 1, + anon_sym_COMMA, + STATE(6866), 1, sym_comment, - ACTIONS(1252), 7, - anon_sym_DOLLAR, + ACTIONS(11351), 7, anon_sym_DASH, - anon_sym_DOT, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1254), 21, + aux_sym_unquoted_token1, + ACTIONS(11347), 20, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -519785,127 +520036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [328045] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9746), 1, - anon_sym_PLUS, - ACTIONS(11243), 1, - anon_sym_DASH, - ACTIONS(11257), 1, - anon_sym_bit_DASHand, - ACTIONS(11259), 1, - anon_sym_bit_DASHxor, - ACTIONS(11261), 1, - anon_sym_bit_DASHor, - ACTIONS(11263), 1, - anon_sym_and, - ACTIONS(11265), 1, - anon_sym_xor, - ACTIONS(11267), 1, - anon_sym_or, - STATE(6863), 1, - sym_comment, - ACTIONS(9744), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(9748), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11247), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11249), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11251), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11255), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11245), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11253), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [328112] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_PLUS, - ACTIONS(11269), 1, - anon_sym_DASH, - ACTIONS(11283), 1, - anon_sym_bit_DASHand, - ACTIONS(11285), 1, - anon_sym_bit_DASHxor, - ACTIONS(11287), 1, - anon_sym_bit_DASHor, - ACTIONS(11289), 1, - anon_sym_and, - ACTIONS(11291), 1, - anon_sym_xor, - ACTIONS(11293), 1, - anon_sym_or, - STATE(6864), 1, - sym_comment, - ACTIONS(5680), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5684), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11273), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11275), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11277), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11281), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11271), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11279), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [328179] = 5, + [328365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11297), 1, - anon_sym_COMMA, - STATE(6865), 1, + STATE(6867), 1, sym_comment, - ACTIONS(11299), 6, + ACTIONS(4416), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11295), 21, + aux_sym_unquoted_token1, + ACTIONS(4418), 21, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519921,26 +520071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328220] = 4, + [328404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6866), 1, + STATE(6868), 1, sym_comment, - ACTIONS(4244), 7, + ACTIONS(3804), 6, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4246), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(3806), 22, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -519956,28 +520106,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328259] = 4, + [328443] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6867), 1, + ACTIONS(10694), 1, + aux_sym__immediate_decimal_token2, + STATE(6869), 1, sym_comment, - ACTIONS(4394), 7, + ACTIONS(2998), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(4396), 21, + ACTIONS(3000), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -519991,110 +520140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328298] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_DASH, - ACTIONS(10465), 1, - anon_sym_PLUS, - ACTIONS(10503), 1, - anon_sym_bit_DASHand, - ACTIONS(10535), 1, - anon_sym_bit_DASHxor, - ACTIONS(10537), 1, - anon_sym_bit_DASHor, - ACTIONS(10539), 1, - anon_sym_and, - ACTIONS(10541), 1, - anon_sym_xor, - ACTIONS(10564), 1, - anon_sym_or, - STATE(6868), 1, - sym_comment, - ACTIONS(10453), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(10459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(10461), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(10463), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(10467), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(10501), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(10457), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(10469), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [328365] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_PLUS, - ACTIONS(11301), 1, - anon_sym_DASH, - ACTIONS(11315), 1, - anon_sym_bit_DASHand, - ACTIONS(11317), 1, - anon_sym_bit_DASHxor, - ACTIONS(11319), 1, - anon_sym_bit_DASHor, - ACTIONS(11321), 1, - anon_sym_and, - ACTIONS(11323), 1, - anon_sym_xor, - ACTIONS(11325), 1, - anon_sym_or, - STATE(6869), 1, - sym_comment, - ACTIONS(1507), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1513), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11305), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11307), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11309), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11313), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11303), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11311), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [328432] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [328484] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6870), 1, sym_comment, - ACTIONS(4258), 7, + ACTIONS(4334), 7, anon_sym_DASH, anon_sym__, aux_sym__val_number_decimal_token1, @@ -520102,7 +520155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(4260), 21, + ACTIONS(4336), 21, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -520124,28 +520177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328471] = 4, + [328523] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10700), 1, + aux_sym__immediate_decimal_token2, STATE(6871), 1, sym_comment, - ACTIONS(4362), 6, + ACTIONS(2957), 6, + anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(4364), 22, + ACTIONS(2959), 21, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -520159,125 +520211,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328510] = 18, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [328564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_PLUS, - ACTIONS(7318), 1, - anon_sym_bit_DASHand, - ACTIONS(7320), 1, - anon_sym_bit_DASHxor, - ACTIONS(7322), 1, - anon_sym_bit_DASHor, - ACTIONS(7324), 1, - anon_sym_and, - ACTIONS(7326), 1, - anon_sym_xor, - ACTIONS(7328), 1, - anon_sym_or, - ACTIONS(11327), 1, - anon_sym_DASH, + ACTIONS(11353), 1, + aux_sym__immediate_decimal_token2, STATE(6872), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7306), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7308), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7310), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7316), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7314), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [328577] = 18, + ACTIONS(3804), 6, + anon_sym_DOLLAR, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3806), 21, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_not, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [328605] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1443), 1, - anon_sym_PLUS, - ACTIONS(11329), 1, - anon_sym_DASH, - ACTIONS(11343), 1, - anon_sym_bit_DASHand, - ACTIONS(11345), 1, - anon_sym_bit_DASHxor, - ACTIONS(11347), 1, - anon_sym_bit_DASHor, - ACTIONS(11349), 1, - anon_sym_and, - ACTIONS(11351), 1, - anon_sym_xor, - ACTIONS(11353), 1, - anon_sym_or, STATE(6873), 1, sym_comment, - ACTIONS(1441), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1447), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(11333), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(11335), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(11337), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(11341), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(11331), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(11339), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [328644] = 5, + ACTIONS(1266), 6, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(1268), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [328644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11357), 1, - anon_sym_COMMA, STATE(6874), 1, sym_comment, - ACTIONS(10699), 6, + ACTIONS(4338), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11355), 21, + aux_sym_unquoted_token1, + ACTIONS(4340), 21, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -520293,21 +520319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [328685] = 4, + [328683] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11357), 1, + anon_sym_COMMA, STATE(6875), 1, sym_comment, - ACTIONS(3888), 6, + ACTIONS(10799), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3890), 22, + ACTIONS(11355), 21, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -520333,21 +520360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6876), 1, sym_comment, - ACTIONS(3834), 6, + ACTIONS(4150), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3836), 22, + aux_sym_unquoted_token1, + ACTIONS(4152), 21, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, anon_sym_null, @@ -520368,14 +520395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6877), 1, sym_comment, - ACTIONS(4168), 6, + ACTIONS(1221), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4170), 21, + ACTIONS(1223), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520402,14 +520429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6878), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1282), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1280), 21, + ACTIONS(1284), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520436,14 +520463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6879), 1, sym_comment, - ACTIONS(1102), 6, + ACTIONS(3929), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1104), 21, + ACTIONS(3931), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520470,14 +520497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6880), 1, sym_comment, - ACTIONS(1005), 6, + ACTIONS(4248), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1007), 21, + ACTIONS(4250), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520504,14 +520531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6881), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(4255), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1296), 21, + ACTIONS(4257), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520538,14 +520565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6882), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(4330), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1300), 21, + ACTIONS(4332), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520572,14 +520599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6883), 1, sym_comment, - ACTIONS(4307), 6, + ACTIONS(3887), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4309), 21, + ACTIONS(3891), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520606,14 +520633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6884), 1, sym_comment, - ACTIONS(4044), 6, + ACTIONS(4279), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4046), 21, + ACTIONS(4281), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520640,14 +520667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6885), 1, sym_comment, - ACTIONS(4303), 6, + ACTIONS(4334), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4305), 21, + ACTIONS(4336), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520674,14 +520701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6886), 1, sym_comment, - ACTIONS(4320), 6, + ACTIONS(4338), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4322), 21, + ACTIONS(4340), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520708,14 +520735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6887), 1, sym_comment, - ACTIONS(4311), 6, + ACTIONS(4342), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4313), 21, + ACTIONS(4344), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520742,14 +520769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6888), 1, sym_comment, - ACTIONS(4142), 6, + ACTIONS(4490), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4144), 21, + ACTIONS(4492), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520776,14 +520803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6889), 1, sym_comment, - ACTIONS(4258), 6, + ACTIONS(4303), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4260), 21, + ACTIONS(4305), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520810,14 +520837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6890), 1, sym_comment, - ACTIONS(1309), 6, + ACTIONS(4390), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1311), 21, + ACTIONS(4392), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520844,14 +520871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6891), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(4394), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(992), 21, + ACTIONS(4396), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520878,14 +520905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6892), 1, sym_comment, - ACTIONS(1305), 6, + ACTIONS(4398), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1307), 21, + ACTIONS(4400), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520912,14 +520939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6893), 1, sym_comment, - ACTIONS(4474), 6, + ACTIONS(4406), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4476), 21, + ACTIONS(4408), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520946,14 +520973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6894), 1, sym_comment, - ACTIONS(4470), 6, + ACTIONS(4412), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4472), 21, + ACTIONS(4414), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -520980,14 +521007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6895), 1, sym_comment, - ACTIONS(4138), 6, + ACTIONS(4455), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4140), 21, + ACTIONS(4457), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521014,14 +521041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6896), 1, sym_comment, - ACTIONS(4134), 6, + ACTIONS(4462), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4136), 21, + ACTIONS(4464), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521048,14 +521075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6897), 1, sym_comment, - ACTIONS(4126), 6, + ACTIONS(4474), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4128), 21, + ACTIONS(4476), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521082,14 +521109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6898), 1, sym_comment, - ACTIONS(4122), 6, + ACTIONS(4478), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4124), 21, + ACTIONS(4480), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521116,14 +521143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6899), 1, sym_comment, - ACTIONS(4390), 6, + ACTIONS(4482), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4392), 21, + ACTIONS(4484), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521150,14 +521177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6900), 1, sym_comment, - ACTIONS(4386), 6, + ACTIONS(4086), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4388), 21, + ACTIONS(4088), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521184,14 +521211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6901), 1, sym_comment, - ACTIONS(4466), 6, + ACTIONS(4090), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4468), 21, + ACTIONS(4092), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521218,14 +521245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6902), 1, sym_comment, - ACTIONS(4458), 6, + ACTIONS(4150), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4460), 21, + ACTIONS(4152), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521252,14 +521279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6903), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(4164), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2998), 21, + ACTIONS(4166), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521286,14 +521313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6904), 1, sym_comment, - ACTIONS(4299), 6, + ACTIONS(4168), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4301), 21, + ACTIONS(4170), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521320,14 +521347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6905), 1, sym_comment, - ACTIONS(4295), 6, + ACTIONS(4172), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4297), 21, + ACTIONS(4174), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521354,14 +521381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6906), 1, sym_comment, - ACTIONS(4118), 6, + ACTIONS(4176), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4120), 21, + ACTIONS(4178), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521388,14 +521415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6907), 1, sym_comment, - ACTIONS(4176), 6, + ACTIONS(4184), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4178), 21, + ACTIONS(4186), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521422,14 +521449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6908), 1, sym_comment, - ACTIONS(4269), 6, + ACTIONS(4197), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4271), 21, + ACTIONS(4199), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521456,14 +521483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6909), 1, sym_comment, - ACTIONS(4190), 6, + ACTIONS(4201), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4192), 21, + ACTIONS(4203), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521490,14 +521517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6910), 1, sym_comment, - ACTIONS(1113), 6, + ACTIONS(4215), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1115), 21, + ACTIONS(4217), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521524,14 +521551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6911), 1, sym_comment, - ACTIONS(1193), 6, + ACTIONS(4231), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1195), 21, + ACTIONS(4233), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521558,14 +521585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6912), 1, sym_comment, - ACTIONS(4194), 6, + ACTIONS(4259), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4196), 21, + ACTIONS(4261), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521592,14 +521619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6913), 1, sym_comment, - ACTIONS(1313), 6, + ACTIONS(4289), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1315), 21, + ACTIONS(4291), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521626,14 +521653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6914), 1, sym_comment, - ACTIONS(1317), 6, + ACTIONS(1425), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1319), 21, + ACTIONS(1427), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521660,14 +521687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6915), 1, sym_comment, - ACTIONS(4428), 6, + ACTIONS(4311), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4430), 21, + ACTIONS(4313), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521694,14 +521721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6916), 1, sym_comment, - ACTIONS(1397), 6, + ACTIONS(4315), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1399), 21, + ACTIONS(4317), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521728,14 +521755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6917), 1, sym_comment, - ACTIONS(4146), 6, + ACTIONS(4322), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4148), 21, + ACTIONS(4324), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521762,14 +521789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6918), 1, sym_comment, - ACTIONS(4013), 6, + ACTIONS(4326), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4015), 21, + ACTIONS(4328), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521796,14 +521823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6919), 1, sym_comment, - ACTIONS(1098), 6, + ACTIONS(4368), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1100), 21, + ACTIONS(4370), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521830,14 +521857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6920), 1, sym_comment, - ACTIONS(1389), 6, + ACTIONS(4372), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1391), 21, + ACTIONS(4374), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521864,14 +521891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6921), 1, sym_comment, - ACTIONS(4362), 6, + ACTIONS(4376), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4364), 21, + ACTIONS(4378), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521898,14 +521925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6922), 1, sym_comment, - ACTIONS(4358), 6, + ACTIONS(4380), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4360), 21, + ACTIONS(4382), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521932,14 +521959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6923), 1, sym_comment, - ACTIONS(1321), 6, + ACTIONS(4386), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1323), 21, + ACTIONS(4388), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -521966,14 +521993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6924), 1, sym_comment, - ACTIONS(4422), 6, + ACTIONS(4402), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4424), 21, + ACTIONS(4404), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522000,14 +522027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6925), 1, sym_comment, - ACTIONS(4114), 6, + ACTIONS(4416), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4116), 21, + ACTIONS(4418), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522034,14 +522061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6926), 1, sym_comment, - ACTIONS(4418), 6, + ACTIONS(4420), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4420), 21, + ACTIONS(4422), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522068,14 +522095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6927), 1, sym_comment, - ACTIONS(1325), 6, + ACTIONS(4424), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1327), 21, + ACTIONS(4426), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522102,14 +522129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6928), 1, sym_comment, - ACTIONS(4340), 6, + ACTIONS(4470), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4342), 21, + ACTIONS(4472), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522136,14 +522163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6929), 1, sym_comment, - ACTIONS(1332), 6, + ACTIONS(4352), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1334), 21, + ACTIONS(4354), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522170,14 +522197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6930), 1, sym_comment, - ACTIONS(4105), 6, + ACTIONS(4364), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4107), 21, + ACTIONS(4366), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522204,14 +522231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6931), 1, sym_comment, - ACTIONS(3947), 6, + ACTIONS(4486), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3951), 21, + ACTIONS(4488), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522238,14 +522265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6932), 1, sym_comment, - ACTIONS(4332), 6, + ACTIONS(4299), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4334), 21, + ACTIONS(4301), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522272,14 +522299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6933), 1, sym_comment, - ACTIONS(4328), 6, + ACTIONS(4060), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4330), 21, + ACTIONS(4062), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522306,14 +522333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6934), 1, sym_comment, - ACTIONS(4200), 6, + ACTIONS(4068), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4202), 21, + ACTIONS(4070), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522340,14 +522367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6935), 1, sym_comment, - ACTIONS(4414), 6, + ACTIONS(4072), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4416), 21, + ACTIONS(4074), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522374,14 +522401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6936), 1, sym_comment, - ACTIONS(4220), 6, + ACTIONS(4076), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4222), 21, + ACTIONS(4078), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522408,14 +522435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6937), 1, sym_comment, - ACTIONS(4352), 6, + ACTIONS(1429), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4354), 21, + ACTIONS(1431), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522442,22 +522469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6938), 1, sym_comment, - ACTIONS(11361), 6, + ACTIONS(1341), 6, + anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11359), 21, + ACTIONS(1343), 21, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -522471,27 +522496,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [331119] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6939), 1, sym_comment, - ACTIONS(11365), 6, + ACTIONS(1433), 6, + anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(11363), 21, + ACTIONS(1435), 21, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -522505,25 +522530,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [331157] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6940), 1, sym_comment, - ACTIONS(1338), 6, - anon_sym_DOLLAR, + ACTIONS(11361), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1340), 21, + aux_sym_unquoted_token1, + ACTIONS(11359), 20, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -522537,21 +522566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, [331195] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6941), 1, sym_comment, - ACTIONS(1385), 6, + ACTIONS(1054), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1387), 21, + ACTIONS(1056), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522578,14 +522605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6942), 1, sym_comment, - ACTIONS(4336), 6, + ACTIONS(949), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4338), 21, + ACTIONS(951), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522612,14 +522639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6943), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(2998), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1340), 21, + ACTIONS(3000), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522646,14 +522673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6944), 1, sym_comment, - ACTIONS(4224), 6, + ACTIONS(909), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4226), 21, + ACTIONS(911), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522680,14 +522707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6945), 1, sym_comment, - ACTIONS(4410), 6, + ACTIONS(2957), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4412), 21, + ACTIONS(2959), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522714,14 +522741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6946), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(3804), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1290), 21, + ACTIONS(3806), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522748,14 +522775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6947), 1, sym_comment, - ACTIONS(4244), 6, + ACTIONS(1217), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4246), 21, + ACTIONS(1219), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522782,14 +522809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6948), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1082), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1284), 21, + ACTIONS(1084), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522816,22 +522843,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6949), 1, sym_comment, - ACTIONS(11369), 7, + ACTIONS(4032), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(11367), 20, + ACTIONS(4034), 21, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -522845,19 +522870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [331537] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6950), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1086), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1344), 21, + ACTIONS(1088), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522884,14 +522911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6951), 1, sym_comment, - ACTIONS(4228), 6, + ACTIONS(1349), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4230), 21, + ACTIONS(1351), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522918,14 +522945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6952), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1353), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1348), 21, + ACTIONS(1355), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522952,14 +522979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6953), 1, sym_comment, - ACTIONS(1259), 6, + ACTIONS(1251), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1261), 21, + ACTIONS(1253), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -522986,14 +523013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6954), 1, sym_comment, - ACTIONS(4406), 6, + ACTIONS(1303), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4408), 21, + ACTIONS(1305), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523020,14 +523047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6955), 1, sym_comment, - ACTIONS(4240), 6, + ACTIONS(1307), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4242), 21, + ACTIONS(1309), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523054,14 +523081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6956), 1, sym_comment, - ACTIONS(4370), 6, + ACTIONS(4295), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4372), 21, + ACTIONS(4297), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523088,14 +523115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6957), 1, sym_comment, - ACTIONS(4398), 6, + ACTIONS(1329), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4400), 21, + ACTIONS(1331), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523122,14 +523149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6958), 1, sym_comment, - ACTIONS(4374), 6, + ACTIONS(1333), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4376), 21, + ACTIONS(1335), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523156,14 +523183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6959), 1, sym_comment, - ACTIONS(4378), 6, + ACTIONS(1337), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4380), 21, + ACTIONS(1339), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523190,14 +523217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6960), 1, sym_comment, - ACTIONS(4394), 6, + ACTIONS(1319), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4396), 21, + ACTIONS(1321), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523224,14 +523251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6961), 1, sym_comment, - ACTIONS(1252), 6, + ACTIONS(1345), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1254), 21, + ACTIONS(1347), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523258,20 +523285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6962), 1, sym_comment, - ACTIONS(4382), 6, - anon_sym_DOLLAR, + ACTIONS(11365), 7, anon_sym_DASH, + anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4384), 21, + aux_sym_unquoted_token1, + ACTIONS(11363), 20, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -523285,21 +523314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, [332031] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6963), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1357), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1360), 21, + ACTIONS(1359), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523326,14 +523353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6964), 1, sym_comment, - ACTIONS(1033), 6, + ACTIONS(1361), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1035), 21, + ACTIONS(1363), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523360,14 +523387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6965), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1368), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1276), 21, + ACTIONS(1370), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523394,14 +523421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6966), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1266), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1352), 21, + ACTIONS(1268), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523428,14 +523455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6967), 1, sym_comment, - ACTIONS(2986), 6, + ACTIONS(1266), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2988), 21, + ACTIONS(1268), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523462,14 +523489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6968), 1, sym_comment, - ACTIONS(4158), 6, + ACTIONS(1270), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4160), 21, + ACTIONS(1272), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523496,14 +523523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6969), 1, sym_comment, - ACTIONS(4236), 6, + ACTIONS(1437), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4238), 21, + ACTIONS(1439), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523530,14 +523557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6970), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1191), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1356), 21, + ACTIONS(1193), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523564,20 +523591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6971), 1, sym_comment, - ACTIONS(4486), 6, - anon_sym_DOLLAR, + ACTIONS(11369), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4488), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11367), 21, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -523591,21 +523620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, [332373] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6972), 1, sym_comment, - ACTIONS(1243), 6, + ACTIONS(929), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1245), 21, + ACTIONS(931), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523632,20 +523659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6973), 1, sym_comment, - ACTIONS(3888), 6, - anon_sym_DOLLAR, + ACTIONS(11373), 6, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3890), 21, + aux_sym__unquoted_in_list_token1, + ACTIONS(11371), 21, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT, anon_sym_PLUS, - anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -523659,29 +523688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, [332449] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6974), 1, sym_comment, - ACTIONS(11373), 7, + ACTIONS(1274), 6, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(11371), 20, + ACTIONS(1276), 21, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_PLUS, + anon_sym_not, anon_sym_null, anon_sym_true, anon_sym_false, @@ -523695,19 +523720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [332487] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6975), 1, sym_comment, - ACTIONS(3834), 6, + ACTIONS(1278), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3836), 21, + ACTIONS(1280), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523734,14 +523761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(6976), 1, sym_comment, - ACTIONS(4172), 6, + ACTIONS(4263), 6, anon_sym_DOLLAR, anon_sym_DASH, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4174), 21, + ACTIONS(4265), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -523766,9 +523793,9 @@ static const uint16_t ts_small_parse_table[] = { [332563] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, + ACTIONS(2092), 1, anon_sym_DOLLAR, - ACTIONS(5966), 1, + ACTIONS(6032), 1, anon_sym_COLON, ACTIONS(11375), 1, anon_sym_LPAREN, @@ -523788,19 +523815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(11395), 1, aux_sym_unquoted_token1, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1738), 1, sym__inter_double_quotes, - STATE(2072), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(2029), 1, sym_unquoted, STATE(6977), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11389), 2, sym__str_single_quotes, @@ -523809,7 +523836,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2073), 4, + STATE(2016), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, @@ -523817,9 +523844,9 @@ static const uint16_t ts_small_parse_table[] = { [332636] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, + ACTIONS(2092), 1, anon_sym_DOLLAR, - ACTIONS(6098), 1, + ACTIONS(5961), 1, anon_sym_COLON, ACTIONS(11375), 1, anon_sym_LPAREN, @@ -523839,19 +523866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(11395), 1, aux_sym_unquoted_token1, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1738), 1, sym__inter_double_quotes, - STATE(2072), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(2029), 1, sym_unquoted, STATE(6978), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11389), 2, sym__str_single_quotes, @@ -523860,7 +523887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2073), 4, + STATE(2016), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, @@ -523868,7 +523895,7 @@ static const uint16_t ts_small_parse_table[] = { [332709] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2255), 1, anon_sym_DOLLAR, ACTIONS(11377), 1, anon_sym_DASH, @@ -523888,19 +523915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(11411), 1, aux_sym_unquoted_token1, - STATE(1590), 1, + STATE(1649), 1, sym__var, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2102), 1, + STATE(1993), 1, sym__inter_single_quotes, - STATE(2103), 1, + STATE(1994), 1, sym__inter_double_quotes, - STATE(2251), 1, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2303), 1, sym_unquoted, STATE(6979), 1, sym_comment, - STATE(10202), 1, + STATE(10245), 1, sym__val_number_decimal, ACTIONS(11405), 2, sym__str_single_quotes, @@ -523909,7 +523936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2299), 4, + STATE(2298), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, @@ -523917,7 +523944,7 @@ static const uint16_t ts_small_parse_table[] = { [332779] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, + ACTIONS(2092), 1, anon_sym_DOLLAR, ACTIONS(11375), 1, anon_sym_LPAREN, @@ -523937,19 +523964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(11395), 1, aux_sym_unquoted_token1, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1738), 1, sym__inter_double_quotes, - STATE(2072), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(2029), 1, sym_unquoted, STATE(6980), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11389), 2, sym__str_single_quotes, @@ -523958,7 +523985,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2073), 4, + STATE(2016), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, @@ -523966,7 +523993,7 @@ static const uint16_t ts_small_parse_table[] = { [332849] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(6032), 1, anon_sym_COLON, ACTIONS(11375), 1, anon_sym_LPAREN, @@ -523986,15 +524013,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token1, ACTIONS(11413), 1, anon_sym_DOT, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1738), 1, sym__inter_double_quotes, + STATE(1778), 1, + sym__str_double_quotes, STATE(6981), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11389), 2, sym__str_single_quotes, @@ -524003,7 +524030,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1149), 4, + STATE(1179), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524011,7 +524038,7 @@ static const uint16_t ts_small_parse_table[] = { [332913] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, + ACTIONS(5961), 1, anon_sym_COLON, ACTIONS(11375), 1, anon_sym_LPAREN, @@ -524031,15 +524058,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token1, ACTIONS(11413), 1, anon_sym_DOT, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1738), 1, sym__inter_double_quotes, + STATE(1778), 1, + sym__str_double_quotes, STATE(6982), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11389), 2, sym__str_single_quotes, @@ -524048,7 +524075,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1149), 4, + STATE(1179), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524056,42 +524083,42 @@ static const uint16_t ts_small_parse_table[] = { [332977] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11375), 1, - anon_sym_LPAREN, ACTIONS(11377), 1, anon_sym_DASH, ACTIONS(11381), 1, anon_sym_PLUS, ACTIONS(11383), 1, aux_sym__val_number_decimal_token1, - ACTIONS(11387), 1, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(11403), 1, anon_sym_DQUOTE, - ACTIONS(11391), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(11393), 1, + ACTIONS(11409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(11395), 1, + ACTIONS(11411), 1, aux_sym_unquoted_token1, - ACTIONS(11413), 1, + ACTIONS(11415), 1, anon_sym_DOT, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1993), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1994), 1, sym__inter_double_quotes, + STATE(2008), 1, + sym__str_double_quotes, STATE(6983), 1, sym_comment, - STATE(10219), 1, + STATE(10245), 1, sym__val_number_decimal, - ACTIONS(11389), 2, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(11385), 3, + ACTIONS(11401), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1146), 4, + STATE(1229), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524099,42 +524126,42 @@ static const uint16_t ts_small_parse_table[] = { [333038] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11375), 1, - anon_sym_LPAREN, ACTIONS(11377), 1, anon_sym_DASH, ACTIONS(11381), 1, anon_sym_PLUS, ACTIONS(11383), 1, aux_sym__val_number_decimal_token1, - ACTIONS(11387), 1, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(11403), 1, anon_sym_DQUOTE, - ACTIONS(11391), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(11393), 1, + ACTIONS(11409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(11395), 1, + ACTIONS(11411), 1, aux_sym_unquoted_token1, - ACTIONS(11413), 1, + ACTIONS(11415), 1, anon_sym_DOT, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1870), 1, + STATE(1993), 1, sym__inter_single_quotes, - STATE(1872), 1, + STATE(1994), 1, sym__inter_double_quotes, + STATE(2008), 1, + sym__str_double_quotes, STATE(6984), 1, sym_comment, - STATE(10219), 1, + STATE(10245), 1, sym__val_number_decimal, - ACTIONS(11389), 2, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(11385), 3, + ACTIONS(11401), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1149), 4, + STATE(1220), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524142,42 +524169,42 @@ static const uint16_t ts_small_parse_table[] = { [333099] = 18, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11375), 1, + anon_sym_LPAREN, ACTIONS(11377), 1, anon_sym_DASH, ACTIONS(11381), 1, anon_sym_PLUS, ACTIONS(11383), 1, aux_sym__val_number_decimal_token1, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(11403), 1, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(11407), 1, + ACTIONS(11391), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(11409), 1, + ACTIONS(11393), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(11411), 1, + ACTIONS(11395), 1, aux_sym_unquoted_token1, - ACTIONS(11415), 1, + ACTIONS(11413), 1, anon_sym_DOT, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2102), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(2103), 1, + STATE(1738), 1, sym__inter_double_quotes, + STATE(1778), 1, + sym__str_double_quotes, STATE(6985), 1, sym_comment, - STATE(10202), 1, + STATE(10280), 1, sym__val_number_decimal, - ACTIONS(11405), 2, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(11401), 3, + ACTIONS(11385), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1210), 4, + STATE(1191), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524185,42 +524212,42 @@ static const uint16_t ts_small_parse_table[] = { [333160] = 18, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11375), 1, + anon_sym_LPAREN, ACTIONS(11377), 1, anon_sym_DASH, ACTIONS(11381), 1, anon_sym_PLUS, ACTIONS(11383), 1, aux_sym__val_number_decimal_token1, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(11403), 1, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(11407), 1, + ACTIONS(11391), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(11409), 1, + ACTIONS(11393), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(11411), 1, + ACTIONS(11395), 1, aux_sym_unquoted_token1, - ACTIONS(11415), 1, + ACTIONS(11413), 1, anon_sym_DOT, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2102), 1, + STATE(1737), 1, sym__inter_single_quotes, - STATE(2103), 1, + STATE(1738), 1, sym__inter_double_quotes, + STATE(1778), 1, + sym__str_double_quotes, STATE(6986), 1, sym_comment, - STATE(10202), 1, + STATE(10280), 1, sym__val_number_decimal, - ACTIONS(11405), 2, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(11401), 3, + ACTIONS(11385), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1214), 4, + STATE(1179), 4, sym_expr_parenthesized, sym_val_string, sym_val_interpolated, @@ -524246,17 +524273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, STATE(6987), 1, sym_comment, - STATE(7234), 1, + STATE(7184), 1, sym__var, - STATE(7626), 1, + STATE(7436), 1, sym__immediate_decimal, - ACTIONS(1813), 2, + ACTIONS(1874), 2, sym_identifier, anon_sym_DASH, - STATE(7623), 2, + STATE(7434), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1815), 7, + ACTIONS(1876), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524264,77 +524291,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333275] = 15, - ACTIONS(3), 1, + [333275] = 17, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11419), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11423), 1, - anon_sym_DOT2, + ACTIONS(8193), 1, + aux_sym_unquoted_token4, + ACTIONS(8195), 1, + aux_sym_unquoted_token6, ACTIONS(11433), 1, anon_sym_LPAREN, ACTIONS(11435), 1, anon_sym_LT, ACTIONS(11437), 1, - anon_sym_EQ2, + anon_sym_DOT2, ACTIONS(11439), 1, - aux_sym__immediate_decimal_token1, + anon_sym_EQ2, ACTIONS(11441), 1, - anon_sym_DASH2, + aux_sym__immediate_decimal_token1, ACTIONS(11443), 1, + anon_sym_DASH2, + ACTIONS(11445), 1, anon_sym_PLUS2, + STATE(4588), 1, + sym__var, STATE(6988), 1, sym_comment, - STATE(7254), 1, - sym__var, - STATE(7471), 1, + STATE(8039), 1, sym__immediate_decimal, - ACTIONS(1839), 2, - sym_identifier, - anon_sym_DASH, - STATE(7478), 2, + STATE(8037), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1841), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(827), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333329] = 15, + anon_sym_DASH, + anon_sym_RBRACE, + [333333] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11449), 1, + anon_sym_LT, + ACTIONS(11451), 1, + anon_sym_EQ2, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - ACTIONS(11445), 1, - anon_sym_LT, - ACTIONS(11447), 1, - anon_sym_EQ2, STATE(6989), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7640), 1, + STATE(7812), 1, sym__immediate_decimal, - ACTIONS(1821), 2, + ACTIONS(1999), 2, sym_identifier, anon_sym_DASH, - STATE(7629), 2, + STATE(7793), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1823), 7, + ACTIONS(2001), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524342,47 +524371,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333383] = 17, - ACTIONS(105), 1, + [333387] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(3505), 1, - anon_sym_DOLLAR, - ACTIONS(8142), 1, - aux_sym_unquoted_token4, - ACTIONS(8144), 1, - aux_sym_unquoted_token6, - ACTIONS(11449), 1, + ACTIONS(11417), 1, anon_sym_LPAREN, - ACTIONS(11451), 1, - anon_sym_LT, - ACTIONS(11453), 1, + ACTIONS(11419), 1, + anon_sym_DOLLAR, + ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11455), 1, - anon_sym_EQ2, - ACTIONS(11457), 1, + ACTIONS(11427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11459), 1, + ACTIONS(11429), 1, anon_sym_DASH2, - ACTIONS(11461), 1, + ACTIONS(11431), 1, anon_sym_PLUS2, - STATE(4658), 1, - sym__var, + ACTIONS(11459), 1, + anon_sym_LT, + ACTIONS(11461), 1, + anon_sym_EQ2, STATE(6990), 1, sym_comment, - STATE(7902), 1, + STATE(7184), 1, + sym__var, + STATE(7443), 1, sym__immediate_decimal, - STATE(7994), 2, + ACTIONS(1971), 2, + sym_identifier, + anon_sym_DASH, + STATE(7442), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(823), 6, - anon_sym_SEMI, + ACTIONS(1973), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, [333441] = 15, ACTIONS(3), 1, anon_sym_POUND, @@ -524390,13 +524417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11433), 1, + ACTIONS(11447), 1, anon_sym_LPAREN, - ACTIONS(11439), 1, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11441), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11443), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, ACTIONS(11463), 1, anon_sym_LT, @@ -524404,17 +524431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(6991), 1, sym_comment, - STATE(7254), 1, + STATE(7193), 1, sym__var, - STATE(7534), 1, + STATE(7735), 1, sym__immediate_decimal, - ACTIONS(1829), 2, + ACTIONS(1981), 2, sym_identifier, anon_sym_DASH, - STATE(7535), 2, + STATE(7724), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1831), 7, + ACTIONS(1983), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524425,17 +524452,17 @@ static const uint16_t ts_small_parse_table[] = { [333495] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, ACTIONS(11467), 1, anon_sym_LT, @@ -524443,17 +524470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(6992), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7608), 1, + STATE(7604), 1, sym__immediate_decimal, - ACTIONS(1805), 2, + ACTIONS(2015), 2, sym_identifier, anon_sym_DASH, - STATE(7607), 2, + STATE(7601), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1807), 7, + ACTIONS(2017), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524464,17 +524491,17 @@ static const uint16_t ts_small_parse_table[] = { [333549] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, ACTIONS(11471), 1, anon_sym_LT, @@ -524482,17 +524509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, STATE(6993), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7601), 1, + STATE(7563), 1, sym__immediate_decimal, - ACTIONS(1787), 2, + ACTIONS(2007), 2, sym_identifier, anon_sym_DASH, - STATE(7600), 2, + STATE(7562), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1789), 7, + ACTIONS(2009), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524503,11 +524530,11 @@ static const uint16_t ts_small_parse_table[] = { [333603] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(8623), 1, + ACTIONS(8441), 1, aux_sym_unquoted_token4, - ACTIONS(8625), 1, + ACTIONS(8443), 1, aux_sym_unquoted_token6, ACTIONS(11475), 1, anon_sym_LPAREN, @@ -524523,64 +524550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11487), 1, anon_sym_PLUS2, - STATE(4741), 1, + STATE(4852), 1, sym__var, STATE(6994), 1, sym_comment, - STATE(8200), 1, + STATE(8170), 1, sym__immediate_decimal, - ACTIONS(825), 2, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8201), 2, + STATE(8273), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(823), 4, + ACTIONS(827), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [333660] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, - anon_sym_DOLLAR, - ACTIONS(11423), 1, - anon_sym_DOT2, - ACTIONS(11427), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, - anon_sym_DASH2, - ACTIONS(11431), 1, - anon_sym_PLUS2, - STATE(6995), 1, - sym_comment, - STATE(7234), 1, - sym__var, - STATE(7570), 1, - sym__immediate_decimal, - ACTIONS(2147), 2, - sym_identifier, - anon_sym_DASH, - STATE(7566), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2149), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [333708] = 15, + [333660] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1815), 1, + ACTIONS(2017), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -524596,50 +524588,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(6996), 1, + STATE(6995), 1, sym_comment, - STATE(8078), 1, + STATE(8219), 1, sym__immediate_decimal, - STATE(8077), 2, + STATE(8218), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 6, + ACTIONS(2015), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [333760] = 13, + [333712] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(6997), 1, + STATE(6996), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7646), 1, + STATE(7790), 1, sym__immediate_decimal, - ACTIONS(2118), 2, + ACTIONS(2075), 2, sym_identifier, anon_sym_DASH, - STATE(7645), 2, + STATE(7789), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2120), 7, + ACTIONS(2077), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524647,34 +524639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333808] = 13, + [333760] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(6998), 1, + STATE(6997), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7661), 1, + STATE(7792), 1, sym__immediate_decimal, - ACTIONS(2095), 2, + ACTIONS(2079), 2, sym_identifier, anon_sym_DASH, - STATE(7658), 2, + STATE(7791), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 7, + ACTIONS(2081), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524682,34 +524674,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333856] = 13, + [333808] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(6999), 1, + STATE(6998), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7715), 1, + STATE(7795), 1, sym__immediate_decimal, - ACTIONS(2110), 2, + ACTIONS(2071), 2, sym_identifier, anon_sym_DASH, - STATE(7647), 2, + STATE(7794), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2112), 7, + ACTIONS(2073), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524717,108 +524709,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [333904] = 15, - ACTIONS(105), 1, + [333856] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(11449), 1, + ACTIONS(11423), 1, + anon_sym_DOT2, + ACTIONS(11447), 1, anon_sym_LPAREN, - ACTIONS(11459), 1, + ACTIONS(11453), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11461), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11503), 1, - anon_sym_LT, - ACTIONS(11505), 1, - anon_sym_EQ2, - ACTIONS(11507), 1, - aux_sym__immediate_decimal_token1, - STATE(4658), 1, - sym__var, - STATE(7000), 1, + STATE(6999), 1, sym_comment, - STATE(7914), 1, + STATE(7193), 1, + sym__var, + STATE(7616), 1, sym__immediate_decimal, - STATE(7949), 2, + ACTIONS(2118), 2, + sym_identifier, + anon_sym_DASH, + STATE(7615), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 6, - anon_sym_SEMI, + ACTIONS(2120), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [333956] = 15, - ACTIONS(105), 1, + [333904] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1789), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, - anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - ACTIONS(11509), 1, - anon_sym_LT, - ACTIONS(11511), 1, - anon_sym_EQ2, - STATE(4690), 1, - sym__var, - STATE(7001), 1, + STATE(7000), 1, sym_comment, - STATE(8125), 1, + STATE(7193), 1, + sym__var, + STATE(7670), 1, sym__immediate_decimal, - STATE(8129), 2, + ACTIONS(2130), 2, + sym_identifier, + anon_sym_DASH, + STATE(7628), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 6, - anon_sym_SEMI, + ACTIONS(2132), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [334008] = 13, + [333952] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7002), 1, + STATE(7001), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7681), 1, + STATE(7614), 1, sym__immediate_decimal, - ACTIONS(2091), 2, + ACTIONS(2114), 2, sym_identifier, anon_sym_DASH, - STATE(7679), 2, + STATE(7613), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 7, + ACTIONS(2116), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524826,72 +524814,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334056] = 16, - ACTIONS(105), 1, + [334000] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(827), 1, + sym_cmd_identifier, + ACTIONS(11503), 1, + anon_sym_LPAREN, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(7340), 1, + ACTIONS(11507), 1, + anon_sym_LT, + ACTIONS(11509), 1, anon_sym_DOT2, - ACTIONS(7350), 1, - aux_sym_unquoted_token4, - ACTIONS(7352), 1, - aux_sym_unquoted_token6, + ACTIONS(11511), 1, + anon_sym_EQ2, ACTIONS(11513), 1, - anon_sym_LPAREN, + aux_sym__immediate_decimal_token1, ACTIONS(11515), 1, - anon_sym_LT, + anon_sym_DASH2, ACTIONS(11517), 1, - anon_sym_EQ2, + anon_sym_PLUS2, ACTIONS(11519), 1, - aux_sym__immediate_decimal_token1, - STATE(7003), 1, + aux_sym_unquoted_token4, + ACTIONS(11521), 1, + aux_sym_unquoted_token6, + STATE(7002), 1, sym_comment, - STATE(8007), 1, + STATE(8018), 1, sym__var, - STATE(8379), 1, + STATE(8377), 1, sym__immediate_decimal, - ACTIONS(11521), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8381), 2, + STATE(8368), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(823), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [334110] = 13, + ACTIONS(829), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [334056] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7004), 1, + STATE(7003), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7574), 1, + STATE(7612), 1, sym__immediate_decimal, - ACTIONS(2126), 2, + ACTIONS(2110), 2, sym_identifier, anon_sym_DASH, - STATE(7572), 2, + STATE(7611), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2128), 7, + ACTIONS(2112), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524899,34 +524888,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334158] = 13, + [334104] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7005), 1, + STATE(7004), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7704), 1, + STATE(7677), 1, sym__immediate_decimal, - ACTIONS(2087), 2, + ACTIONS(2134), 2, sym_identifier, anon_sym_DASH, - STATE(7703), 2, + STATE(7671), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 7, + ACTIONS(2136), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -524934,147 +524923,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334206] = 17, + [334152] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(823), 1, - sym_cmd_identifier, - ACTIONS(11523), 1, - anon_sym_LPAREN, - ACTIONS(11525), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(11527), 1, - anon_sym_LT, - ACTIONS(11529), 1, + ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11531), 1, - anon_sym_EQ2, - ACTIONS(11533), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11535), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11537), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - ACTIONS(11539), 1, - aux_sym_unquoted_token4, - ACTIONS(11541), 1, - aux_sym_unquoted_token6, - STATE(7006), 1, + STATE(7005), 1, sym_comment, - STATE(7963), 1, + STATE(7193), 1, sym__var, - STATE(8347), 1, + STATE(7626), 1, sym__immediate_decimal, - STATE(8343), 2, + ACTIONS(2126), 2, + sym_identifier, + anon_sym_DASH, + STATE(7625), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(825), 4, + ACTIONS(2128), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [334262] = 15, + [334200] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, - anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(7214), 1, anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, - anon_sym_DASH2, - ACTIONS(11501), 1, - anon_sym_PLUS2, - ACTIONS(11543), 1, + ACTIONS(7224), 1, + aux_sym_unquoted_token4, + ACTIONS(7226), 1, + aux_sym_unquoted_token6, + ACTIONS(11523), 1, + anon_sym_LPAREN, + ACTIONS(11525), 1, anon_sym_LT, - ACTIONS(11545), 1, + ACTIONS(11527), 1, anon_sym_EQ2, - STATE(4690), 1, - sym__var, - STATE(7007), 1, + ACTIONS(11529), 1, + aux_sym__immediate_decimal_token1, + STATE(7006), 1, sym_comment, - STATE(8113), 1, + STATE(7982), 1, + sym__var, + STATE(8562), 1, sym__immediate_decimal, - STATE(8117), 2, + ACTIONS(11531), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8554), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1805), 6, + ACTIONS(827), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [334314] = 15, + [334254] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1823), 1, + ACTIONS(1876), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, + ACTIONS(11433), 1, anon_sym_LPAREN, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11441), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11443), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11445), 1, anon_sym_PLUS2, - ACTIONS(11547), 1, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11533), 1, anon_sym_LT, - ACTIONS(11549), 1, + ACTIONS(11535), 1, anon_sym_EQ2, - STATE(4690), 1, + STATE(4588), 1, sym__var, - STATE(7008), 1, + STATE(7007), 1, sym_comment, - STATE(8085), 1, + STATE(8040), 1, sym__immediate_decimal, - STATE(8073), 2, + STATE(8036), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 6, + ACTIONS(1874), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [334366] = 13, + [334306] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7009), 1, + STATE(7008), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7689), 1, + STATE(7785), 1, sym__immediate_decimal, - ACTIONS(2122), 2, + ACTIONS(2173), 2, sym_identifier, anon_sym_DASH, - STATE(7685), 2, + STATE(7780), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2124), 7, + ACTIONS(2175), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -525082,108 +525068,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334414] = 15, + [334354] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11449), 1, + ACTIONS(11433), 1, anon_sym_LPAREN, - ACTIONS(11457), 1, + ACTIONS(11441), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11459), 1, + ACTIONS(11443), 1, anon_sym_DASH2, - ACTIONS(11461), 1, + ACTIONS(11445), 1, anon_sym_PLUS2, ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11551), 1, + ACTIONS(11537), 1, anon_sym_LT, - ACTIONS(11553), 1, + ACTIONS(11539), 1, anon_sym_EQ2, - STATE(4658), 1, + STATE(4588), 1, sym__var, - STATE(7010), 1, + STATE(7009), 1, sym_comment, - STATE(7968), 1, + STATE(7965), 1, sym__immediate_decimal, - STATE(7975), 2, + STATE(7917), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1829), 6, + ACTIONS(1971), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [334466] = 15, + [334406] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11449), 1, + ACTIONS(11433), 1, anon_sym_LPAREN, - ACTIONS(11457), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11459), 1, + ACTIONS(11443), 1, anon_sym_DASH2, - ACTIONS(11461), 1, + ACTIONS(11445), 1, anon_sym_PLUS2, ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11503), 1, + ACTIONS(11537), 1, anon_sym_LT, - ACTIONS(11505), 1, + ACTIONS(11539), 1, anon_sym_EQ2, - STATE(4658), 1, + ACTIONS(11541), 1, + aux_sym__immediate_decimal_token1, + STATE(4588), 1, sym__var, - STATE(7011), 1, + STATE(7010), 1, sym_comment, - STATE(7914), 1, + STATE(7965), 1, sym__immediate_decimal, - STATE(7949), 2, + STATE(7917), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 6, + ACTIONS(1971), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [334518] = 13, + [334458] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7012), 1, + STATE(7011), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7698), 1, + STATE(7620), 1, sym__immediate_decimal, - ACTIONS(2130), 2, + ACTIONS(2122), 2, sym_identifier, anon_sym_DASH, - STATE(7696), 2, + STATE(7617), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2132), 7, + ACTIONS(2124), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -525191,156 +525177,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334566] = 13, + [334506] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, ACTIONS(11419), 1, anon_sym_DOLLAR, ACTIONS(11423), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11453), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11455), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11457), 1, anon_sym_PLUS2, - STATE(7013), 1, + STATE(7012), 1, sym_comment, - STATE(7234), 1, + STATE(7193), 1, sym__var, - STATE(7565), 1, + STATE(7610), 1, sym__immediate_decimal, - ACTIONS(2171), 2, + ACTIONS(2106), 2, sym_identifier, anon_sym_DASH, - STATE(7564), 2, + STATE(7609), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2173), 7, + ACTIONS(2108), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [334554] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1983), 1, + anon_sym_LF, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(11489), 1, + anon_sym_LPAREN, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11497), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11499), 1, + anon_sym_DASH2, + ACTIONS(11501), 1, + anon_sym_PLUS2, + ACTIONS(11543), 1, + anon_sym_LT, + ACTIONS(11545), 1, + anon_sym_EQ2, + STATE(4695), 1, + sym__var, + STATE(7013), 1, + sym_comment, + STATE(8203), 1, + sym__immediate_decimal, + STATE(8202), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1981), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - [334614] = 13, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [334606] = 15, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(2001), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11423), 1, + ACTIONS(11489), 1, + anon_sym_LPAREN, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11501), 1, anon_sym_PLUS2, + ACTIONS(11547), 1, + anon_sym_LT, + ACTIONS(11549), 1, + anon_sym_EQ2, + STATE(4695), 1, + sym__var, STATE(7014), 1, sym_comment, - STATE(7234), 1, - sym__var, - STATE(7655), 1, + STATE(8207), 1, sym__immediate_decimal, - ACTIONS(2106), 2, - sym_identifier, - anon_sym_DASH, - STATE(7653), 2, + STATE(8206), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2108), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1999), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334662] = 13, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [334658] = 15, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(2009), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11423), 1, + ACTIONS(11489), 1, + anon_sym_LPAREN, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11427), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11429), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11431), 1, + ACTIONS(11501), 1, anon_sym_PLUS2, + ACTIONS(11551), 1, + anon_sym_LT, + ACTIONS(11553), 1, + anon_sym_EQ2, + STATE(4695), 1, + sym__var, STATE(7015), 1, sym_comment, - STATE(7234), 1, - sym__var, - STATE(7563), 1, + STATE(8215), 1, sym__immediate_decimal, - ACTIONS(2175), 2, - sym_identifier, - anon_sym_DASH, - STATE(7562), 2, + STATE(8214), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2177), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2007), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [334710] = 16, - ACTIONS(35), 1, - anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_RBRACE, + [334710] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7370), 1, - anon_sym_DOT2, - ACTIONS(7380), 1, - aux_sym_unquoted_token4, - ACTIONS(7382), 1, - aux_sym_unquoted_token6, - ACTIONS(11555), 1, + ACTIONS(1193), 1, + anon_sym_LF, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(9375), 1, + aux_sym_unquoted_token5, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11557), 1, - anon_sym_LT, - ACTIONS(11559), 1, - anon_sym_EQ2, - ACTIONS(11561), 1, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11499), 1, + anon_sym_DASH2, + ACTIONS(11501), 1, + anon_sym_PLUS2, + STATE(4695), 1, + sym__var, STATE(7016), 1, sym_comment, - STATE(8203), 1, - sym__var, - STATE(9167), 1, + STATE(8119), 1, sym__immediate_decimal, - ACTIONS(823), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(825), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(11563), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9166), 2, + STATE(8118), 2, sym_expr_parenthesized, sym_val_variable, - [334763] = 14, + ACTIONS(1191), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [334759] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1193), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(9314), 1, + ACTIONS(9375), 1, aux_sym_unquoted_token5, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -525352,66 +525377,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, STATE(7017), 1, sym_comment, - STATE(8277), 1, + STATE(8122), 1, sym__immediate_decimal, - STATE(8280), 2, + STATE(8121), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 6, + ACTIONS(1191), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [334812] = 15, + [334808] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - ACTIONS(11567), 1, - anon_sym_LT, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11571), 1, - anon_sym_EQ2, - ACTIONS(11573), 1, + ACTIONS(11483), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11485), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11487), 1, anon_sym_PLUS2, - STATE(4736), 1, + ACTIONS(11555), 1, + anon_sym_LT, + ACTIONS(11557), 1, + anon_sym_DOT2, + ACTIONS(11559), 1, + anon_sym_EQ2, + STATE(4852), 1, sym__var, STATE(7018), 1, sym_comment, - STATE(8338), 1, + STATE(8204), 1, sym__immediate_decimal, - ACTIONS(1823), 2, + ACTIONS(1876), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8339), 2, + STATE(8164), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 4, + ACTIONS(1874), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [334863] = 4, + [334859] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1113), 1, + ACTIONS(1082), 1, anon_sym_DASH, STATE(7019), 1, sym_comment, - ACTIONS(1115), 17, + ACTIONS(1084), 17, anon_sym_EQ, anon_sym_SEMI, sym_cmd_identifier, @@ -525429,71 +525454,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [334892] = 15, + [334888] = 16, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(7370), 1, + anon_sym_DOT2, + ACTIONS(7380), 1, + aux_sym_unquoted_token4, + ACTIONS(7382), 1, + aux_sym_unquoted_token6, + ACTIONS(11561), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11563), 1, + anon_sym_LT, + ACTIONS(11565), 1, + anon_sym_EQ2, + ACTIONS(11567), 1, + aux_sym__immediate_decimal_token1, + STATE(7020), 1, + sym_comment, + STATE(8133), 1, + sym__var, + STATE(8790), 1, + sym__immediate_decimal, + ACTIONS(827), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(829), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11569), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8752), 2, + sym_expr_parenthesized, + sym_val_variable, + [334941] = 15, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(11557), 1, anon_sym_DOT2, + ACTIONS(11571), 1, + anon_sym_LPAREN, ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, + anon_sym_LT, ACTIONS(11575), 1, - anon_sym_DASH2, + anon_sym_EQ2, ACTIONS(11577), 1, - anon_sym_PLUS2, + aux_sym__immediate_decimal_token1, ACTIONS(11579), 1, - anon_sym_LT, + anon_sym_DASH2, ACTIONS(11581), 1, - anon_sym_EQ2, - STATE(4736), 1, + anon_sym_PLUS2, + STATE(4752), 1, sym__var, - STATE(7020), 1, + STATE(7021), 1, sym_comment, - STATE(8344), 1, + STATE(8366), 1, sym__immediate_decimal, - ACTIONS(1807), 2, + ACTIONS(2001), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8345), 2, + STATE(8361), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1805), 4, + ACTIONS(1999), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [334943] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1098), 1, - anon_sym_DASH, - STATE(7021), 1, - sym_comment, - ACTIONS(1100), 17, - anon_sym_EQ, - anon_sym_SEMI, - sym_cmd_identifier, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - anon_sym_QMARK2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [334972] = 15, + [334992] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, ACTIONS(11475), 1, anon_sym_LPAREN, @@ -525501,7 +525538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11487), 1, anon_sym_PLUS2, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, ACTIONS(11583), 1, anon_sym_LT, @@ -525509,27 +525546,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ2, ACTIONS(11587), 1, aux_sym__immediate_decimal_token1, - STATE(4741), 1, + STATE(4852), 1, sym__var, STATE(7022), 1, sym_comment, - STATE(8187), 1, + STATE(8311), 1, sym__immediate_decimal, - ACTIONS(1841), 2, + ACTIONS(1973), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8191), 2, + STATE(8300), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 4, + ACTIONS(1971), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335023] = 15, + [335043] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, ACTIONS(11475), 1, anon_sym_LPAREN, @@ -525539,146 +525576,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11487), 1, anon_sym_PLUS2, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11589), 1, + ACTIONS(11583), 1, anon_sym_LT, - ACTIONS(11591), 1, + ACTIONS(11585), 1, anon_sym_EQ2, - STATE(4741), 1, + STATE(4852), 1, sym__var, STATE(7023), 1, sym_comment, - STATE(8193), 1, + STATE(8311), 1, sym__immediate_decimal, - ACTIONS(1831), 2, + ACTIONS(1973), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8195), 2, + STATE(8300), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1829), 4, + ACTIONS(1971), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335074] = 15, + [335094] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - ACTIONS(11593), 1, + ACTIONS(11589), 1, anon_sym_LT, - ACTIONS(11595), 1, + ACTIONS(11591), 1, anon_sym_EQ2, - STATE(4736), 1, + STATE(4752), 1, sym__var, STATE(7024), 1, sym_comment, - STATE(8350), 1, + STATE(8456), 1, sym__immediate_decimal, - ACTIONS(1789), 2, + ACTIONS(2009), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8351), 2, + STATE(8450), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 4, + ACTIONS(2007), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335125] = 15, + [335145] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1086), 1, + anon_sym_DASH, + STATE(7025), 1, + sym_comment, + ACTIONS(1088), 17, + anon_sym_EQ, + anon_sym_SEMI, + sym_cmd_identifier, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + anon_sym_QMARK2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [335174] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11475), 1, + ACTIONS(11557), 1, + anon_sym_DOT2, + ACTIONS(11571), 1, anon_sym_LPAREN, - ACTIONS(11483), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11485), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11487), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11583), 1, + ACTIONS(11593), 1, anon_sym_LT, - ACTIONS(11585), 1, + ACTIONS(11595), 1, anon_sym_EQ2, - STATE(4741), 1, + STATE(4752), 1, sym__var, - STATE(7025), 1, + STATE(7026), 1, sym_comment, - STATE(8187), 1, + STATE(8550), 1, sym__immediate_decimal, - ACTIONS(1841), 2, + ACTIONS(2017), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8191), 2, + STATE(8509), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 4, + ACTIONS(2015), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335176] = 15, + [335225] = 15, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, ACTIONS(11597), 1, anon_sym_LT, ACTIONS(11599), 1, anon_sym_EQ2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7026), 1, + STATE(7027), 1, sym_comment, - STATE(8340), 1, + STATE(8525), 1, sym__immediate_decimal, - ACTIONS(1815), 2, + ACTIONS(1983), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8342), 2, + STATE(8453), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 4, + ACTIONS(1981), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335227] = 14, + [335276] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(2124), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(9314), 1, - aux_sym_unquoted_token5, ACTIONS(11489), 1, anon_sym_LPAREN, ACTIONS(11493), 1, @@ -525689,203 +525749,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7027), 1, + STATE(7028), 1, sym_comment, - STATE(8281), 1, + STATE(8229), 1, sym__immediate_decimal, - STATE(8283), 2, + STATE(8228), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 6, + ACTIONS(2122), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [335276] = 14, + [335322] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(2112), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(9608), 1, - aux_sym_unquoted_token5, - ACTIONS(11565), 1, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4695), 1, sym__var, - STATE(7028), 1, + STATE(7029), 1, sym_comment, - STATE(8502), 1, + STATE(8223), 1, sym__immediate_decimal, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8503), 2, + STATE(8222), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 4, + ACTIONS(2110), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [335324] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1821), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11603), 1, - anon_sym_LT, - ACTIONS(11605), 1, - anon_sym_DOT2, - ACTIONS(11607), 1, - anon_sym_EQ2, - ACTIONS(11609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7029), 1, - sym_comment, - STATE(8046), 1, - sym__var, - STATE(8724), 1, - sym__immediate_decimal, - STATE(8723), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1823), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [335374] = 13, + anon_sym_RBRACE, + [335368] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, - anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(9499), 1, + aux_sym_unquoted_token5, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4752), 1, sym__var, STATE(7030), 1, sym_comment, - STATE(8231), 1, + STATE(8334), 1, sym__immediate_decimal, - STATE(8233), 2, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8433), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2126), 6, + ACTIONS(1191), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [335420] = 15, - ACTIONS(3), 1, + [335416] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1839), 1, - sym_cmd_identifier, - ACTIONS(11523), 1, - anon_sym_LPAREN, - ACTIONS(11525), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11535), 1, - anon_sym_DASH2, - ACTIONS(11537), 1, - anon_sym_PLUS2, - ACTIONS(11605), 1, + ACTIONS(9499), 1, + aux_sym_unquoted_token5, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11615), 1, - anon_sym_LT, - ACTIONS(11617), 1, - anon_sym_EQ2, - ACTIONS(11619), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11579), 1, + anon_sym_DASH2, + ACTIONS(11581), 1, + anon_sym_PLUS2, + STATE(4752), 1, + sym__var, STATE(7031), 1, sym_comment, - STATE(7963), 1, - sym__var, - STATE(8368), 1, + STATE(8553), 1, sym__immediate_decimal, - STATE(8367), 2, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8449), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1841), 4, + ACTIONS(1191), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [335470] = 15, + anon_sym_DASH, + [335464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1829), 1, - sym_cmd_identifier, - ACTIONS(11523), 1, - anon_sym_LPAREN, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11533), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11535), 1, - anon_sym_DASH2, - ACTIONS(11537), 1, - anon_sym_PLUS2, - ACTIONS(11605), 1, - anon_sym_DOT2, - ACTIONS(11621), 1, - anon_sym_LT, - ACTIONS(11623), 1, - anon_sym_EQ2, STATE(7032), 1, sym_comment, - STATE(7963), 1, - sym__var, - STATE(8360), 1, - sym__immediate_decimal, - STATE(8359), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1831), 4, + ACTIONS(1082), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1084), 15, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [335520] = 4, + [335492] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(7033), 1, sym_comment, - ACTIONS(1098), 2, + ACTIONS(1086), 2, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(1100), 15, + ACTIONS(1088), 15, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -525901,385 +525914,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [335548] = 14, + [335520] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(1831), 1, + ACTIONS(2136), 1, anon_sym_LF, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11513), 1, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11519), 1, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11625), 1, - anon_sym_LT, - ACTIONS(11627), 1, - anon_sym_EQ2, + ACTIONS(11499), 1, + anon_sym_DASH2, + ACTIONS(11501), 1, + anon_sym_PLUS2, + STATE(4695), 1, + sym__var, STATE(7034), 1, sym_comment, - STATE(8007), 1, - sym__var, - STATE(8372), 1, + STATE(8235), 1, sym__immediate_decimal, - ACTIONS(11521), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8373), 2, + STATE(8234), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1829), 4, + ACTIONS(2134), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [335596] = 15, + [335566] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1787), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, ACTIONS(11601), 1, anon_sym_LPAREN, + ACTIONS(11603), 1, + anon_sym_LT, ACTIONS(11605), 1, anon_sym_DOT2, + ACTIONS(11607), 1, + anon_sym_EQ2, ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - ACTIONS(11629), 1, - anon_sym_LT, - ACTIONS(11631), 1, - anon_sym_EQ2, + STATE(4552), 1, + sym__var, STATE(7035), 1, sym_comment, - STATE(8046), 1, - sym__var, - STATE(8716), 1, + STATE(9802), 1, sym__immediate_decimal, - STATE(8742), 2, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9801), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1789), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [335646] = 14, - ACTIONS(105), 1, + ACTIONS(829), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [335616] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(827), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(9608), 1, - aux_sym_unquoted_token5, - ACTIONS(11565), 1, + ACTIONS(11519), 1, + aux_sym_unquoted_token4, + ACTIONS(11521), 1, + aux_sym_unquoted_token6, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11611), 1, + anon_sym_PLUS2, + ACTIONS(11613), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11615), 1, + anon_sym_LT, + ACTIONS(11617), 1, anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11619), 1, + anon_sym_EQ2, + ACTIONS(11621), 1, anon_sym_DASH2, - ACTIONS(11577), 1, - anon_sym_PLUS2, - STATE(4736), 1, - sym__var, STATE(7036), 1, sym_comment, - STATE(8500), 1, + STATE(8243), 1, + sym__var, + STATE(9151), 1, sym__immediate_decimal, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8501), 2, + ACTIONS(829), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(9150), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [335694] = 13, + [335670] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2149), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, - anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(1973), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + ACTIONS(11623), 1, + anon_sym_LT, + ACTIONS(11625), 1, + anon_sym_EQ2, + ACTIONS(11627), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, - anon_sym_DASH2, - ACTIONS(11501), 1, - anon_sym_PLUS2, - STATE(4690), 1, - sym__var, STATE(7037), 1, sym_comment, - STATE(8234), 1, + STATE(7982), 1, + sym__var, + STATE(8473), 1, sym__immediate_decimal, - STATE(8237), 2, + ACTIONS(11531), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8472), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 6, + ACTIONS(1971), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [335740] = 15, + [335718] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1805), 1, + ACTIONS(1981), 1, sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11631), 1, + anon_sym_LT, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11635), 1, + anon_sym_EQ2, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - ACTIONS(11633), 1, - anon_sym_LT, - ACTIONS(11635), 1, - anon_sym_EQ2, STATE(7038), 1, sym_comment, - STATE(8046), 1, + STATE(7983), 1, sym__var, - STATE(8719), 1, + STATE(8863), 1, sym__immediate_decimal, - STATE(8718), 2, + STATE(8862), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1807), 4, + ACTIONS(1983), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [335790] = 13, - ACTIONS(105), 1, + [335768] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(1999), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(4690), 1, - sym__var, + ACTIONS(11643), 1, + anon_sym_LT, + ACTIONS(11645), 1, + anon_sym_EQ2, STATE(7039), 1, sym_comment, - STATE(8138), 1, + STATE(7983), 1, + sym__var, + STATE(8866), 1, sym__immediate_decimal, - STATE(8135), 2, + STATE(8865), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2001), 4, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [335836] = 14, - ACTIONS(105), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [335818] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(2007), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(1841), 1, - anon_sym_LF, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11513), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, ACTIONS(11637), 1, - anon_sym_LT, + aux_sym__immediate_decimal_token1, ACTIONS(11639), 1, - anon_sym_EQ2, + anon_sym_DASH2, ACTIONS(11641), 1, - aux_sym__immediate_decimal_token1, + anon_sym_PLUS2, + ACTIONS(11647), 1, + anon_sym_LT, + ACTIONS(11649), 1, + anon_sym_EQ2, STATE(7040), 1, sym_comment, - STATE(8007), 1, + STATE(7983), 1, sym__var, - STATE(8369), 1, + STATE(8869), 1, sym__immediate_decimal, - ACTIONS(11521), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8370), 2, + STATE(8868), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1839), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [335884] = 13, - ACTIONS(105), 1, + ACTIONS(2009), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [335868] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(2015), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(4690), 1, - sym__var, + ACTIONS(11651), 1, + anon_sym_LT, + ACTIONS(11653), 1, + anon_sym_EQ2, STATE(7041), 1, sym_comment, - STATE(8134), 1, + STATE(7983), 1, + sym__var, + STATE(8874), 1, sym__immediate_decimal, - STATE(8153), 2, + STATE(8873), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2017), 4, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [335930] = 15, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [335918] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, + ACTIONS(1971), 1, sym_cmd_identifier, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11503), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, - anon_sym_DOT2, - ACTIONS(11609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11505), 1, + anon_sym_DOLLAR, + ACTIONS(11515), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11517), 1, anon_sym_PLUS2, - ACTIONS(11643), 1, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11655), 1, anon_sym_LT, - ACTIONS(11645), 1, + ACTIONS(11657), 1, anon_sym_EQ2, + ACTIONS(11659), 1, + aux_sym__immediate_decimal_token1, STATE(7042), 1, sym_comment, - STATE(8046), 1, + STATE(8018), 1, sym__var, - STATE(8722), 1, + STATE(8395), 1, sym__immediate_decimal, - STATE(8720), 2, + STATE(8394), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1815), 4, + ACTIONS(1973), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [335980] = 14, + [335968] = 14, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(1789), 1, + ACTIONS(1876), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11523), 1, anon_sym_LPAREN, - ACTIONS(11649), 1, + ACTIONS(11529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11661), 1, anon_sym_LT, - ACTIONS(11651), 1, + ACTIONS(11663), 1, anon_sym_EQ2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - STATE(4085), 1, - sym__immediate_decimal, STATE(7043), 1, sym_comment, - STATE(7958), 1, + STATE(7982), 1, sym__var, - ACTIONS(11655), 2, + STATE(8451), 1, + sym__immediate_decimal, + ACTIONS(11531), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4087), 2, + STATE(8448), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1787), 4, + ACTIONS(1874), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [336028] = 13, - ACTIONS(105), 1, + [336016] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_LF, - ACTIONS(3505), 1, - anon_sym_DOLLAR, - ACTIONS(11489), 1, + ACTIONS(1874), 1, + sym_cmd_identifier, + ACTIONS(11503), 1, anon_sym_LPAREN, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11505), 1, + anon_sym_DOLLAR, + ACTIONS(11513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11515), 1, anon_sym_DASH2, - ACTIONS(11501), 1, + ACTIONS(11517), 1, anon_sym_PLUS2, - STATE(4690), 1, - sym__var, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11665), 1, + anon_sym_LT, + ACTIONS(11667), 1, + anon_sym_EQ2, STATE(7044), 1, sym_comment, - STATE(8132), 1, + STATE(8018), 1, + sym__var, + STATE(8382), 1, sym__immediate_decimal, - STATE(8120), 2, + STATE(8358), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1876), 4, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [336074] = 13, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [336066] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2173), 1, + ACTIONS(2132), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526291,52 +526314,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, STATE(7045), 1, sym_comment, - STATE(8245), 1, + STATE(8233), 1, sym__immediate_decimal, - STATE(8133), 2, + STATE(8232), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 6, + ACTIONS(2130), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336120] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7046), 1, - sym_comment, - ACTIONS(1113), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1115), 15, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [336148] = 13, + [336112] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2177), 1, + ACTIONS(2120), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526348,63 +526347,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7047), 1, + STATE(7046), 1, sym_comment, - STATE(8248), 1, + STATE(8227), 1, sym__immediate_decimal, - STATE(8250), 2, + STATE(8226), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2175), 6, + ACTIONS(2118), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336194] = 15, + [336158] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - ACTIONS(11657), 1, + ACTIONS(829), 1, + anon_sym_DASH_DASH, + ACTIONS(11669), 1, anon_sym_LPAREN, - ACTIONS(11659), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11673), 1, anon_sym_LT, - ACTIONS(11661), 1, + ACTIONS(11675), 1, anon_sym_DOT2, - ACTIONS(11663), 1, + ACTIONS(11677), 1, anon_sym_EQ2, - ACTIONS(11665), 1, + ACTIONS(11679), 1, aux_sym__immediate_decimal_token1, - STATE(4465), 1, - sym__var, - STATE(7048), 1, - sym_comment, - STATE(9272), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11681), 1, anon_sym_DASH2, + ACTIONS(11683), 1, anon_sym_PLUS2, - STATE(9278), 2, + ACTIONS(11685), 1, + aux_sym_unquoted_token4, + ACTIONS(11687), 1, + aux_sym_unquoted_token6, + STATE(7047), 1, + sym_comment, + STATE(8205), 1, + sym__var, + STATE(8713), 1, + sym__immediate_decimal, + ACTIONS(827), 2, + sym_identifier, + anon_sym_DASH, + STATE(8712), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(825), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [336244] = 13, + [336212] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(2128), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526416,28 +526417,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7049), 1, + STATE(7048), 1, sym_comment, - STATE(8109), 1, + STATE(8231), 1, sym__immediate_decimal, - STATE(8107), 2, + STATE(8230), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 6, + ACTIONS(2126), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336290] = 13, + [336258] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2175), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526449,136 +526450,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7050), 1, + STATE(7049), 1, sym_comment, - STATE(8101), 1, + STATE(8147), 1, sym__immediate_decimal, - STATE(8100), 2, + STATE(8145), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 6, + ACTIONS(2173), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336336] = 14, + [336304] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(1841), 1, + ACTIONS(2077), 1, anon_sym_LF, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11513), 1, - anon_sym_LPAREN, - ACTIONS(11519), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11637), 1, - anon_sym_LT, - ACTIONS(11639), 1, - anon_sym_EQ2, - STATE(7051), 1, - sym_comment, - STATE(8007), 1, - sym__var, - STATE(8369), 1, - sym__immediate_decimal, - ACTIONS(11521), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8370), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1839), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [336384] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11539), 1, - aux_sym_unquoted_token4, - ACTIONS(11541), 1, - aux_sym_unquoted_token6, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11667), 1, - anon_sym_PLUS2, - ACTIONS(11669), 1, - anon_sym_LPAREN, - ACTIONS(11671), 1, - anon_sym_LT, - ACTIONS(11673), 1, - anon_sym_DOT2, - ACTIONS(11675), 1, - anon_sym_EQ2, - ACTIONS(11677), 1, - anon_sym_DASH2, - STATE(7052), 1, - sym_comment, - STATE(8119), 1, - sym__var, - STATE(9128), 1, - sym__immediate_decimal, - ACTIONS(825), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(9127), 2, - sym_expr_parenthesized, - sym_val_variable, - [336438] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_DASH_DASH, - ACTIONS(11679), 1, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11683), 1, - anon_sym_LT, - ACTIONS(11685), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11687), 1, - anon_sym_EQ2, - ACTIONS(11689), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11691), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11693), 1, - anon_sym_PLUS2, - ACTIONS(11695), 1, - aux_sym_unquoted_token4, - ACTIONS(11697), 1, - aux_sym_unquoted_token6, - STATE(7053), 1, - sym_comment, - STATE(8116), 1, + ACTIONS(11501), 1, + anon_sym_PLUS2, + STATE(4695), 1, sym__var, - STATE(8873), 1, + STATE(7050), 1, + sym_comment, + STATE(8150), 1, sym__immediate_decimal, - ACTIONS(823), 2, - sym_identifier, - anon_sym_DASH, - STATE(8872), 2, + STATE(8149), 2, sym_expr_parenthesized, sym_val_variable, - [336492] = 13, + ACTIONS(2075), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [336350] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2081), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526590,28 +526516,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7054), 1, + STATE(7051), 1, sym_comment, - STATE(8098), 1, + STATE(8153), 1, sym__immediate_decimal, - STATE(8097), 2, + STATE(8152), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 6, + ACTIONS(2079), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336538] = 13, + [336396] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2073), 1, anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, ACTIONS(11489), 1, anon_sym_LPAREN, @@ -526623,377 +526549,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, + STATE(4695), 1, sym__var, - STATE(7055), 1, + STATE(7052), 1, sym_comment, - STATE(8090), 1, + STATE(8155), 1, sym__immediate_decimal, - STATE(8088), 2, + STATE(8154), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 6, + ACTIONS(2071), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [336584] = 14, + [336442] = 14, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(1807), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11523), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11529), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11699), 1, + ACTIONS(11623), 1, anon_sym_LT, - ACTIONS(11701), 1, + ACTIONS(11625), 1, anon_sym_EQ2, - STATE(4081), 1, + STATE(7053), 1, + sym_comment, + STATE(7982), 1, + sym__var, + STATE(8473), 1, sym__immediate_decimal, - STATE(7056), 1, + ACTIONS(11531), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8472), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1971), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [336490] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(233), 1, + anon_sym_DOLLAR, + ACTIONS(1983), 1, + anon_sym_LF, + ACTIONS(7456), 1, + anon_sym_DOT2, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + anon_sym_LT, + ACTIONS(11693), 1, + anon_sym_EQ2, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + STATE(4073), 1, + sym__immediate_decimal, + STATE(7054), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4082), 2, + STATE(4068), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1805), 4, + ACTIONS(1981), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [336632] = 14, + [336538] = 14, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(2001), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11703), 1, + ACTIONS(11699), 1, anon_sym_LT, - ACTIONS(11705), 1, + ACTIONS(11701), 1, anon_sym_EQ2, - STATE(4074), 1, + STATE(4075), 1, sym__immediate_decimal, - STATE(7057), 1, + STATE(7055), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4075), 2, + STATE(4074), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1821), 4, + ACTIONS(1999), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [336680] = 13, + [336586] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2112), 1, - anon_sym_LF, - ACTIONS(3505), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11489), 1, - anon_sym_LPAREN, - ACTIONS(11493), 1, + ACTIONS(2009), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11499), 1, + ACTIONS(11703), 1, + anon_sym_LT, + ACTIONS(11705), 1, + anon_sym_EQ2, + STATE(4077), 1, + sym__immediate_decimal, + STATE(7056), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, - ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4690), 1, - sym__var, - STATE(7058), 1, - sym_comment, - STATE(8096), 1, - sym__immediate_decimal, - STATE(8095), 2, + STATE(4076), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 6, + ACTIONS(2007), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [336726] = 14, + [336634] = 14, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(1815), 1, + ACTIONS(2017), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, ACTIONS(11707), 1, anon_sym_LT, ACTIONS(11709), 1, anon_sym_EQ2, - STATE(4078), 1, + STATE(4079), 1, sym__immediate_decimal, - STATE(7059), 1, + STATE(7057), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4101), 2, + STATE(4078), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1813), 4, + ACTIONS(2015), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [336774] = 13, + [336682] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(2108), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4695), 1, sym__var, - STATE(7060), 1, + STATE(7058), 1, sym_comment, - STATE(8325), 1, + STATE(8221), 1, sym__immediate_decimal, - ACTIONS(2108), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8326), 2, + STATE(8220), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 4, + ACTIONS(2106), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [336819] = 13, + anon_sym_RBRACE, + [336728] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(2116), 1, + anon_sym_LF, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11499), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11501), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4695), 1, sym__var, - STATE(7061), 1, + STATE(7059), 1, sym_comment, - STATE(8337), 1, + STATE(8225), 1, sym__immediate_decimal, - ACTIONS(2132), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8321), 2, + STATE(8224), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 4, + ACTIONS(2114), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [336864] = 16, + anon_sym_RBRACE, + [336774] = 14, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(7834), 1, - anon_sym_RBRACK, - ACTIONS(7842), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(7854), 1, - sym__entry_separator, - ACTIONS(7856), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7858), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(11711), 1, + ACTIONS(11561), 1, anon_sym_LPAREN, - ACTIONS(11713), 1, + ACTIONS(11711), 1, anon_sym_LT, - ACTIONS(11715), 1, + ACTIONS(11713), 1, anon_sym_EQ2, - ACTIONS(11717), 1, + ACTIONS(11715), 1, aux_sym__immediate_decimal_token1, - STATE(5243), 1, - sym__var, - STATE(7062), 1, + STATE(7060), 1, sym_comment, - STATE(9804), 1, + STATE(8133), 1, + sym__var, + STATE(9023), 1, sym__immediate_decimal, - ACTIONS(11719), 2, + ACTIONS(1971), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1973), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9801), 2, + STATE(9022), 2, sym_expr_parenthesized, sym_val_variable, - [336915] = 13, + [336821] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7063), 1, + STATE(7061), 1, sym_comment, - STATE(8331), 1, + STATE(8328), 1, sym__immediate_decimal, - ACTIONS(2120), 2, + ACTIONS(2112), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8333), 2, + STATE(8574), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 4, + ACTIONS(2110), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [336960] = 13, + [336866] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(7486), 1, - aux_sym_unquoted_token5, - ACTIONS(11647), 1, + ACTIONS(11571), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(4199), 1, - sym__immediate_decimal, - STATE(7064), 1, - sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(11579), 1, anon_sym_DASH2, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4201), 2, + STATE(4752), 1, + sym__var, + STATE(7062), 1, + sym_comment, + STATE(8384), 1, + sym__immediate_decimal, + ACTIONS(2116), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8359), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 4, + ACTIONS(2114), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [337005] = 13, + anon_sym_DASH_DASH, + anon_sym_DASH, + [336911] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(1195), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(7486), 1, - aux_sym_unquoted_token5, - ACTIONS(11647), 1, + ACTIONS(11571), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(4195), 1, - sym__immediate_decimal, - STATE(7065), 1, - sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(11579), 1, anon_sym_DASH2, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4198), 2, + STATE(4752), 1, + sym__var, + STATE(7063), 1, + sym_comment, + STATE(8393), 1, + sym__immediate_decimal, + ACTIONS(2120), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8387), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1193), 4, + ACTIONS(2118), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [337050] = 13, + anon_sym_DASH_DASH, + anon_sym_DASH, + [336956] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, + ACTIONS(11581), 1, + anon_sym_PLUS2, + STATE(4752), 1, + sym__var, + STATE(7064), 1, + sym_comment, + STATE(8443), 1, + sym__immediate_decimal, + ACTIONS(2124), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8404), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2122), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [337001] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(11557), 1, + anon_sym_DOT2, + ACTIONS(11571), 1, + anon_sym_LPAREN, ACTIONS(11577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11579), 1, + anon_sym_DASH2, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7066), 1, + STATE(7065), 1, sym_comment, - STATE(8433), 1, + STATE(8484), 1, sym__immediate_decimal, ACTIONS(2128), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8434), 2, + STATE(8479), 2, sym_expr_parenthesized, sym_val_variable, ACTIONS(2126), 4, @@ -527001,1354 +526994,1338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337095] = 14, + [337046] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(827), 1, + anon_sym_RBRACK, + ACTIONS(829), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(9052), 1, + aux_sym_unquoted_token4, + ACTIONS(9054), 1, + aux_sym_unquoted_token6, + ACTIONS(11717), 1, + anon_sym_LPAREN, + ACTIONS(11719), 1, + anon_sym_LT, + ACTIONS(11721), 1, + anon_sym_DOT2, + ACTIONS(11723), 1, + anon_sym_EQ2, + ACTIONS(11725), 1, + aux_sym__immediate_decimal_token1, + STATE(5149), 1, + sym__var, + STATE(7066), 1, + sym_comment, + STATE(9550), 1, + sym__immediate_decimal, + ACTIONS(11727), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9809), 2, + sym_expr_parenthesized, + sym_val_variable, + [337097] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, ACTIONS(11601), 1, anon_sym_LPAREN, ACTIONS(11605), 1, anon_sym_DOT2, ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - ACTIONS(11721), 1, - aux_sym_unquoted_token5, + ACTIONS(11729), 1, + anon_sym_LT, + ACTIONS(11731), 1, + anon_sym_EQ2, + STATE(4552), 1, + sym__var, STATE(7067), 1, sym_comment, - STATE(8046), 1, - sym__var, - STATE(8680), 1, + STATE(9802), 1, sym__immediate_decimal, - STATE(8679), 2, + ACTIONS(829), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9801), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1195), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [337142] = 13, + [337146] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, STATE(7068), 1, sym_comment, - STATE(8366), 1, + STATE(8510), 1, sym__immediate_decimal, - ACTIONS(2149), 2, + ACTIONS(2132), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8442), 2, + STATE(8489), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 4, + ACTIONS(2130), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337187] = 14, + [337191] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11561), 1, anon_sym_LPAREN, - ACTIONS(11725), 1, + ACTIONS(11567), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11733), 1, anon_sym_LT, - ACTIONS(11727), 1, + ACTIONS(11735), 1, anon_sym_EQ2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - STATE(4248), 1, - sym__immediate_decimal, STATE(7069), 1, sym_comment, - STATE(8261), 1, + STATE(8133), 1, sym__var, - ACTIONS(1805), 2, + STATE(9011), 1, + sym__immediate_decimal, + ACTIONS(1874), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1807), 2, + ACTIONS(1876), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4264), 2, + STATE(9010), 2, sym_expr_parenthesized, sym_val_variable, - [337234] = 13, + [337238] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, STATE(7070), 1, sym_comment, - STATE(8443), 1, + STATE(8545), 1, sym__immediate_decimal, - ACTIONS(2173), 2, + ACTIONS(2136), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8446), 2, + STATE(8538), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 4, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337279] = 13, + [337283] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(7801), 1, + anon_sym_RBRACK, + ACTIONS(7809), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(7821), 1, + sym__entry_separator, + ACTIONS(7823), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(7825), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(11717), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, - anon_sym_DASH2, - ACTIONS(11577), 1, - anon_sym_PLUS2, - STATE(4736), 1, + ACTIONS(11737), 1, + anon_sym_LT, + ACTIONS(11739), 1, + anon_sym_EQ2, + STATE(5149), 1, sym__var, STATE(7071), 1, sym_comment, - STATE(8329), 1, + STATE(9550), 1, sym__immediate_decimal, - ACTIONS(2112), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8330), 2, + ACTIONS(11727), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9809), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [337324] = 14, + [337334] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11733), 1, + ACTIONS(11743), 1, anon_sym_LT, - ACTIONS(11735), 1, + ACTIONS(11745), 1, anon_sym_EQ2, - STATE(4274), 1, + ACTIONS(11747), 1, + aux_sym__immediate_decimal_token1, + STATE(4356), 1, sym__immediate_decimal, STATE(7072), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(1787), 2, + ACTIONS(1981), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1789), 2, + ACTIONS(1983), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4349), 2, + sym_expr_parenthesized, + sym_val_variable, + [337381] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(233), 1, + anon_sym_DOLLAR, + ACTIONS(1193), 1, + anon_sym_LF, + ACTIONS(7456), 1, + anon_sym_DOT2, + ACTIONS(7500), 1, + aux_sym_unquoted_token5, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + STATE(4161), 1, + sym__immediate_decimal, + STATE(7073), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4282), 2, + STATE(4158), 2, sym_expr_parenthesized, sym_val_variable, - [337371] = 14, + ACTIONS(1191), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [337426] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11555), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11561), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11737), 1, + ACTIONS(11751), 1, anon_sym_LT, - ACTIONS(11739), 1, + ACTIONS(11753), 1, anon_sym_EQ2, - STATE(7073), 1, + STATE(4307), 1, + sym__immediate_decimal, + STATE(7074), 1, sym_comment, - STATE(8203), 1, + STATE(8116), 1, sym__var, - STATE(8988), 1, - sym__immediate_decimal, - ACTIONS(1839), 2, + ACTIONS(2015), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1841), 2, + ACTIONS(2017), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11563), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8989), 2, + STATE(4269), 2, sym_expr_parenthesized, sym_val_variable, - [337418] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, + [337473] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(233), 1, + anon_sym_DOLLAR, + ACTIONS(1193), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11555), 1, + ACTIONS(7500), 1, + aux_sym_unquoted_token5, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11737), 1, - anon_sym_LT, - ACTIONS(11739), 1, - anon_sym_EQ2, - ACTIONS(11741), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(7074), 1, + STATE(4164), 1, + sym__immediate_decimal, + STATE(7075), 1, sym_comment, - STATE(8203), 1, + STATE(8054), 1, sym__var, - STATE(8988), 1, - sym__immediate_decimal, - ACTIONS(1839), 2, + ACTIONS(11697), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4163), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1191), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1841), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(11563), 2, + anon_sym_RBRACE, + [337518] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1191), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, + anon_sym_DOLLAR, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, anon_sym_DASH2, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(8989), 2, + ACTIONS(11755), 1, + aux_sym_unquoted_token5, + STATE(7076), 1, + sym_comment, + STATE(7983), 1, + sym__var, + STATE(8795), 1, + sym__immediate_decimal, + STATE(8794), 2, sym_expr_parenthesized, sym_val_variable, - [337465] = 14, + ACTIONS(1193), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [337565] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11743), 1, + ACTIONS(11757), 1, anon_sym_LT, - ACTIONS(11745), 1, + ACTIONS(11759), 1, anon_sym_EQ2, - STATE(4237), 1, + STATE(4335), 1, sym__immediate_decimal, - STATE(7075), 1, + STATE(7077), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(1813), 2, + ACTIONS(1999), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1815), 2, + ACTIONS(2001), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4349), 2, + STATE(4359), 2, sym_expr_parenthesized, sym_val_variable, - [337512] = 13, - ACTIONS(105), 1, + [337612] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(1191), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(4736), 1, - sym__var, - STATE(7076), 1, + ACTIONS(11755), 1, + aux_sym_unquoted_token5, + STATE(7078), 1, sym_comment, - STATE(8323), 1, + STATE(7983), 1, + sym__var, + STATE(8800), 1, sym__immediate_decimal, - ACTIONS(2097), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8324), 2, + STATE(8798), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1193), 4, anon_sym_DASH_DASH, - anon_sym_DASH, - [337557] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7218), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [337659] = 14, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - ACTIONS(11657), 1, - anon_sym_LPAREN, - ACTIONS(11661), 1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11741), 1, + anon_sym_LPAREN, ACTIONS(11747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11761), 1, anon_sym_LT, - ACTIONS(11749), 1, + ACTIONS(11763), 1, anon_sym_EQ2, - STATE(4465), 1, - sym__var, - STATE(7077), 1, - sym_comment, - STATE(9272), 1, + STATE(4381), 1, sym__immediate_decimal, - ACTIONS(825), 2, + STATE(7079), 1, + sym_comment, + STATE(8116), 1, + sym__var, + ACTIONS(2007), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(11667), 2, + ACTIONS(2009), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9278), 2, + STATE(4354), 2, sym_expr_parenthesized, sym_val_variable, - [337606] = 13, + [337706] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7078), 1, + STATE(7080), 1, sym_comment, - STATE(8458), 1, + STATE(8497), 1, sym__immediate_decimal, - ACTIONS(2177), 2, + ACTIONS(2175), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8464), 2, + STATE(8349), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2175), 4, + ACTIONS(2173), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337651] = 13, + [337751] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7079), 1, + STATE(7081), 1, sym_comment, - STATE(8320), 1, + STATE(8428), 1, sym__immediate_decimal, - ACTIONS(2093), 2, + ACTIONS(2077), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8322), 2, + STATE(8584), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 4, + ACTIONS(2075), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337696] = 13, + [337796] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(11569), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11571), 1, + anon_sym_LPAREN, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7080), 1, + STATE(7082), 1, sym_comment, - STATE(8328), 1, + STATE(8439), 1, sym__immediate_decimal, - ACTIONS(2124), 2, + ACTIONS(2081), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8327), 2, + STATE(8410), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 4, + ACTIONS(2079), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337741] = 14, - ACTIONS(35), 1, - anon_sym_DOLLAR, + [337841] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(3585), 1, + anon_sym_DOLLAR, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11571), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11751), 1, - anon_sym_LT, - ACTIONS(11753), 1, - anon_sym_EQ2, - STATE(4244), 1, - sym__immediate_decimal, - STATE(7081), 1, - sym_comment, - STATE(8261), 1, + ACTIONS(11579), 1, + anon_sym_DASH2, + ACTIONS(11581), 1, + anon_sym_PLUS2, + STATE(4752), 1, sym__var, - ACTIONS(1821), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1823), 2, + STATE(7083), 1, + sym_comment, + STATE(8515), 1, + sym__immediate_decimal, + ACTIONS(2073), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4231), 2, + STATE(8462), 2, sym_expr_parenthesized, sym_val_variable, - [337788] = 14, + ACTIONS(2071), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [337886] = 14, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11555), 1, - anon_sym_LPAREN, ACTIONS(11561), 1, + anon_sym_LPAREN, + ACTIONS(11567), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11755), 1, + ACTIONS(11711), 1, anon_sym_LT, - ACTIONS(11757), 1, + ACTIONS(11713), 1, anon_sym_EQ2, - STATE(7082), 1, + STATE(7084), 1, sym_comment, - STATE(8203), 1, + STATE(8133), 1, sym__var, - STATE(8965), 1, + STATE(9023), 1, sym__immediate_decimal, - ACTIONS(1829), 2, + ACTIONS(1971), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1831), 2, + ACTIONS(1973), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11563), 2, + ACTIONS(11569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8991), 2, + STATE(9022), 2, sym_expr_parenthesized, sym_val_variable, - [337835] = 16, + [337933] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_RBRACK, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3585), 1, anon_sym_DOLLAR, - ACTIONS(8861), 1, - aux_sym_unquoted_token4, - ACTIONS(8863), 1, - aux_sym_unquoted_token6, - ACTIONS(11711), 1, - anon_sym_LPAREN, - ACTIONS(11717), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11759), 1, - anon_sym_LT, - ACTIONS(11761), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11763), 1, - anon_sym_EQ2, - STATE(5243), 1, - sym__var, - STATE(7083), 1, - sym_comment, - STATE(9804), 1, - sym__immediate_decimal, - ACTIONS(11719), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9801), 2, - sym_expr_parenthesized, - sym_val_variable, - [337886] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DOLLAR, - ACTIONS(11565), 1, + ACTIONS(11571), 1, anon_sym_LPAREN, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11575), 1, + ACTIONS(11579), 1, anon_sym_DASH2, - ACTIONS(11577), 1, + ACTIONS(11581), 1, anon_sym_PLUS2, - STATE(4736), 1, + STATE(4752), 1, sym__var, - STATE(7084), 1, + STATE(7085), 1, sym_comment, - STATE(8375), 1, + STATE(8570), 1, sym__immediate_decimal, - ACTIONS(2089), 2, + ACTIONS(2108), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8348), 2, + STATE(8555), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 4, + ACTIONS(2106), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [337931] = 14, + [337978] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, - anon_sym_DOT2, - ACTIONS(11609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - ACTIONS(11721), 1, - aux_sym_unquoted_token5, - STATE(7085), 1, - sym_comment, - STATE(8046), 1, - sym__var, - STATE(8678), 1, - sym__immediate_decimal, - STATE(8677), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1195), 4, + ACTIONS(2009), 1, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [337978] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1789), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, ACTIONS(11765), 1, anon_sym_LPAREN, ACTIONS(11767), 1, anon_sym_LT, ACTIONS(11769), 1, - anon_sym_EQ2, + anon_sym_DOT2, ACTIONS(11771), 1, + anon_sym_EQ2, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, - sym__var, - STATE(6325), 1, - sym__immediate_decimal, - STATE(7086), 1, - sym_comment, - ACTIONS(1787), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(6322), 2, + STATE(7086), 1, + sym_comment, + STATE(7563), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2007), 2, + sym_identifier, + anon_sym_DASH, + STATE(7562), 2, sym_expr_parenthesized, sym_val_variable, - [338024] = 13, + [338026] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2173), 1, sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, STATE(7087), 1, sym_comment, - STATE(8046), 1, + STATE(7983), 1, sym__var, - STATE(8740), 1, + STATE(8833), 1, sym__immediate_decimal, - STATE(8739), 2, + STATE(8831), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 4, + ACTIONS(2175), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [338068] = 15, + [338070] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_DASH_DASH, - ACTIONS(11679), 1, - anon_sym_LPAREN, - ACTIONS(11681), 1, + ACTIONS(2075), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11691), 1, - anon_sym_DASH2, - ACTIONS(11693), 1, - anon_sym_PLUS2, - ACTIONS(11775), 1, - anon_sym_LT, - ACTIONS(11777), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11779), 1, - anon_sym_EQ2, - ACTIONS(11781), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, + anon_sym_DASH2, + ACTIONS(11641), 1, + anon_sym_PLUS2, STATE(7088), 1, sym_comment, - STATE(8116), 1, + STATE(7983), 1, sym__var, - STATE(8901), 1, + STATE(8837), 1, sym__immediate_decimal, - ACTIONS(1839), 2, - sym_identifier, - anon_sym_DASH, - STATE(8900), 2, + STATE(8835), 2, sym_expr_parenthesized, sym_val_variable, - [338116] = 13, + ACTIONS(2077), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [338114] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2126), 1, sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, STATE(7089), 1, sym_comment, - STATE(8046), 1, + STATE(7983), 1, sym__var, - STATE(8726), 1, + STATE(8908), 1, sym__immediate_decimal, - STATE(8725), 2, + STATE(8903), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2120), 4, + ACTIONS(2128), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [338160] = 15, + [338158] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1821), 1, - anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11785), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11779), 1, anon_sym_LT, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11789), 1, + ACTIONS(11783), 1, anon_sym_EQ2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, + STATE(7090), 1, + sym_comment, + STATE(7451), 1, + sym__var, + STATE(7781), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, - ACTIONS(11795), 1, anon_sym_PLUS2, - STATE(7090), 1, + STATE(7771), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(1983), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [338202] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_DASH, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11791), 1, + anon_sym_LT, + ACTIONS(11793), 1, + anon_sym_EQ2, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7091), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7634), 1, + STATE(7799), 1, sym__immediate_decimal, - ACTIONS(1823), 2, + ACTIONS(2017), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(7648), 2, + STATE(7796), 2, sym_expr_parenthesized, sym_val_variable, - [338208] = 15, + [338250] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, + ACTIONS(11605), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, ACTIONS(11797), 1, - anon_sym_LT, + anon_sym_LPAREN, ACTIONS(11799), 1, + anon_sym_LT, + ACTIONS(11801), 1, anon_sym_EQ2, - STATE(7091), 1, + STATE(7092), 1, sym_comment, - STATE(7529), 1, + STATE(8103), 1, sym__var, - STATE(7654), 1, + STATE(8945), 1, sym__immediate_decimal, - ACTIONS(1815), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7659), 2, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8915), 2, sym_expr_parenthesized, sym_val_variable, - [338256] = 13, + [338298] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11801), 1, - anon_sym_LPAREN, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, ACTIONS(11803), 1, anon_sym_LT, ACTIONS(11805), 1, anon_sym_EQ2, - STATE(7092), 1, + STATE(7093), 1, sym_comment, - STATE(8282), 1, + STATE(7451), 1, sym__var, - STATE(8666), 1, + STATE(7784), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8663), 2, + STATE(7783), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1831), 3, + ACTIONS(2001), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [338300] = 13, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [338342] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(7518), 1, - aux_sym_unquoted_token5, - ACTIONS(11723), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - STATE(4290), 1, - sym__immediate_decimal, - STATE(7093), 1, - sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(1193), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4273), 2, - sym_expr_parenthesized, - sym_val_variable, - [338344] = 13, - ACTIONS(35), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(7518), 1, - aux_sym_unquoted_token5, - ACTIONS(11723), 1, - anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(4265), 1, - sym__immediate_decimal, + ACTIONS(11807), 1, + anon_sym_LT, + ACTIONS(11809), 1, + anon_sym_EQ2, STATE(7094), 1, sym_comment, - STATE(8261), 1, + STATE(7451), 1, sym__var, - ACTIONS(1193), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1195), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(11731), 2, + STATE(7788), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4261), 2, + STATE(7787), 2, sym_expr_parenthesized, sym_val_variable, - [338388] = 15, - ACTIONS(3), 1, + ACTIONS(2009), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [338386] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1805), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(2073), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - ACTIONS(11807), 1, - anon_sym_LT, - ACTIONS(11809), 1, - anon_sym_EQ2, + STATE(4197), 1, + sym__immediate_decimal, STATE(7095), 1, sym_comment, - STATE(7529), 1, + STATE(8054), 1, sym__var, - STATE(7660), 1, - sym__immediate_decimal, - ACTIONS(1807), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7666), 2, + ACTIONS(11697), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4195), 2, sym_expr_parenthesized, sym_val_variable, - [338436] = 15, + ACTIONS(2071), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [338428] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(11679), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11681), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11685), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11689), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11695), 1, - aux_sym_unquoted_token4, - ACTIONS(11697), 1, - aux_sym_unquoted_token6, ACTIONS(11811), 1, anon_sym_LT, ACTIONS(11813), 1, anon_sym_EQ2, STATE(7096), 1, sym_comment, - STATE(8116), 1, + STATE(7451), 1, sym__var, - STATE(8873), 1, + STATE(7799), 1, sym__immediate_decimal, - ACTIONS(11693), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8872), 2, + STATE(7796), 2, sym_expr_parenthesized, sym_val_variable, - [338484] = 12, + ACTIONS(2017), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [338472] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(2093), 1, + ACTIONS(2116), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4200), 1, + STATE(4089), 1, sym__immediate_decimal, STATE(7097), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4061), 2, + STATE(4088), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2091), 4, + ACTIONS(2114), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [338526] = 14, + [338514] = 13, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1815), 1, - sym__entry_separator, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(7518), 1, + aux_sym_unquoted_token5, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11815), 1, - anon_sym_LT, - ACTIONS(11817), 1, - anon_sym_EQ2, - STATE(5199), 1, - sym__var, - STATE(6333), 1, + STATE(4387), 1, sym__immediate_decimal, STATE(7098), 1, sym_comment, - ACTIONS(1813), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + STATE(8116), 1, + sym__var, + ACTIONS(1191), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6331), 2, + STATE(4384), 2, sym_expr_parenthesized, sym_val_variable, - [338572] = 14, + [338558] = 13, + ACTIONS(35), 1, + anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1807), 1, - sym__entry_separator, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(7518), 1, + aux_sym_unquoted_token5, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11819), 1, - anon_sym_LT, - ACTIONS(11821), 1, - anon_sym_EQ2, - STATE(5199), 1, - sym__var, - STATE(6329), 1, + STATE(4357), 1, sym__immediate_decimal, STATE(7099), 1, sym_comment, - ACTIONS(1805), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + STATE(8116), 1, + sym__var, + ACTIONS(1191), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1193), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6327), 2, + STATE(4324), 2, sym_expr_parenthesized, sym_val_variable, - [338618] = 13, - ACTIONS(3), 1, + [338602] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2106), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(2120), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, + STATE(4094), 1, + sym__immediate_decimal, STATE(7100), 1, sym_comment, - STATE(8046), 1, + STATE(8054), 1, sym__var, - STATE(8730), 1, - sym__immediate_decimal, - STATE(8729), 2, + ACTIONS(11697), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4092), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2108), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [338662] = 15, + ACTIONS(2118), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [338644] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1787), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(2130), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11795), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - ACTIONS(11823), 1, - anon_sym_LT, - ACTIONS(11825), 1, - anon_sym_EQ2, STATE(7101), 1, sym_comment, - STATE(7529), 1, + STATE(7983), 1, sym__var, - STATE(7668), 1, + STATE(8916), 1, sym__immediate_decimal, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7619), 2, + STATE(8911), 2, sym_expr_parenthesized, sym_val_variable, - [338710] = 15, + ACTIONS(2132), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [338688] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11667), 1, - anon_sym_PLUS2, - ACTIONS(11669), 1, - anon_sym_LPAREN, - ACTIONS(11677), 1, - anon_sym_DASH2, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11827), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + ACTIONS(11817), 1, anon_sym_LT, - ACTIONS(11829), 1, + ACTIONS(11819), 1, anon_sym_EQ2, - ACTIONS(11831), 1, - aux_sym__immediate_decimal_token1, + STATE(4471), 1, + sym__var, STATE(7102), 1, sym_comment, - STATE(8119), 1, - sym__var, - STATE(9136), 1, + STATE(7784), 1, sym__immediate_decimal, - ACTIONS(1841), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(9132), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7783), 2, sym_expr_parenthesized, sym_val_variable, - [338758] = 15, + ACTIONS(2001), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [338732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(2134), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11667), 1, - anon_sym_PLUS2, - ACTIONS(11669), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11677), 1, - anon_sym_DASH2, - ACTIONS(11787), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11827), 1, - anon_sym_LT, - ACTIONS(11829), 1, - anon_sym_EQ2, + ACTIONS(11637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, + anon_sym_DASH2, + ACTIONS(11641), 1, + anon_sym_PLUS2, STATE(7103), 1, sym_comment, - STATE(8119), 1, + STATE(7983), 1, sym__var, - STATE(9136), 1, + STATE(8934), 1, sym__immediate_decimal, - ACTIONS(1841), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(9132), 2, + STATE(8930), 2, sym_expr_parenthesized, sym_val_variable, - [338806] = 14, - ACTIONS(105), 1, + ACTIONS(2136), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [338776] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1823), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11833), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + ACTIONS(11821), 1, anon_sym_LT, - ACTIONS(11835), 1, + ACTIONS(11823), 1, anon_sym_EQ2, - STATE(5199), 1, + STATE(4471), 1, sym__var, - STATE(6335), 1, - sym__immediate_decimal, STATE(7104), 1, sym_comment, - ACTIONS(1821), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + STATE(7788), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6334), 2, + STATE(7787), 2, sym_expr_parenthesized, sym_val_variable, - [338852] = 13, + ACTIONS(2009), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [338820] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - ACTIONS(11839), 1, + ACTIONS(11825), 1, anon_sym_LT, - ACTIONS(11841), 1, + ACTIONS(11827), 1, anon_sym_EQ2, - STATE(4538), 1, + STATE(4471), 1, sym__var, STATE(7105), 1, sym_comment, - STATE(7634), 1, + STATE(7799), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7648), 2, + STATE(7796), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1823), 3, + ACTIONS(2017), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [338896] = 13, - ACTIONS(3), 1, + [338864] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2110), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(2124), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11689), 1, + anon_sym_LPAREN, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7106), 1, - sym_comment, - STATE(8046), 1, - sym__var, - STATE(8728), 1, + STATE(4096), 1, sym__immediate_decimal, - STATE(8727), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2112), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [338940] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - ACTIONS(11661), 1, - anon_sym_DOT2, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11843), 1, - anon_sym_LPAREN, - ACTIONS(11845), 1, - anon_sym_LT, - ACTIONS(11847), 1, - anon_sym_EQ2, - STATE(7107), 1, + STATE(7106), 1, sym_comment, - STATE(9263), 1, + STATE(8054), 1, sym__var, - STATE(10249), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(10248), 2, + STATE(4095), 2, sym_expr_parenthesized, sym_val_variable, - [338988] = 12, + ACTIONS(2122), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [338906] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, ACTIONS(2128), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4155), 1, + STATE(4098), 1, sym__immediate_decimal, - STATE(7108), 1, + STATE(7107), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4158), 2, + STATE(4097), 2, sym_expr_parenthesized, sym_val_variable, ACTIONS(2126), 4, @@ -528356,1157 +528333,1269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [339030] = 12, + [338948] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(2149), 1, + ACTIONS(2132), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4160), 1, + STATE(4101), 1, sym__immediate_decimal, - STATE(7109), 1, + STATE(7108), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4161), 2, + STATE(4099), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2147), 4, + ACTIONS(2130), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [339072] = 12, - ACTIONS(105), 1, + [338990] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(2106), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(2097), 1, - anon_sym_LF, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - STATE(4062), 1, + ACTIONS(11639), 1, + anon_sym_DASH2, + ACTIONS(11641), 1, + anon_sym_PLUS2, + STATE(7109), 1, + sym_comment, + STATE(7983), 1, + sym__var, + STATE(8876), 1, sym__immediate_decimal, + STATE(8875), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2108), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [339034] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(11601), 1, + anon_sym_LPAREN, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11829), 1, + anon_sym_LT, + ACTIONS(11831), 1, + anon_sym_EQ2, + ACTIONS(11833), 1, + aux_sym__immediate_decimal_token1, + STATE(4552), 1, + sym__var, STATE(7110), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + STATE(9578), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4063), 2, + STATE(9577), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2095), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1973), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [339114] = 12, + anon_sym_if, + anon_sym_EQ_GT, + [339078] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(1876), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(2108), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11717), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11725), 1, aux_sym__immediate_decimal_token1, - STATE(4064), 1, - sym__immediate_decimal, + ACTIONS(11835), 1, + anon_sym_LT, + ACTIONS(11837), 1, + anon_sym_EQ2, + STATE(5149), 1, + sym__var, STATE(7111), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + STATE(9362), 1, + sym__immediate_decimal, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11727), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4065), 2, + STATE(9336), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2106), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [339156] = 12, + [339124] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(2124), 1, + ACTIONS(2136), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4123), 1, + STATE(4103), 1, sym__immediate_decimal, STATE(7112), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4121), 2, + STATE(4102), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2122), 4, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [339198] = 15, + [339166] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1789), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11611), 1, + anon_sym_PLUS2, + ACTIONS(11613), 1, anon_sym_LPAREN, - ACTIONS(11851), 1, - anon_sym_LT, - ACTIONS(11853), 1, + ACTIONS(11621), 1, + anon_sym_DASH2, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11855), 1, + ACTIONS(11839), 1, + anon_sym_LT, + ACTIONS(11841), 1, anon_sym_EQ2, - ACTIONS(11857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, STATE(7113), 1, sym_comment, - STATE(7601), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(8243), 1, sym__var, - ACTIONS(1787), 2, - sym_identifier, - anon_sym_DASH, - STATE(7600), 2, + STATE(9153), 1, + sym__immediate_decimal, + ACTIONS(1876), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(9152), 2, sym_expr_parenthesized, sym_val_variable, - [339246] = 12, - ACTIONS(105), 1, + [339214] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(2112), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11797), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - STATE(4067), 1, - sym__immediate_decimal, + ACTIONS(11843), 1, + anon_sym_LT, + ACTIONS(11845), 1, + anon_sym_EQ2, STATE(7114), 1, sym_comment, - STATE(7958), 1, + STATE(8103), 1, sym__var, - ACTIONS(11655), 2, + STATE(9041), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4068), 2, + STATE(9040), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2110), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - [339288] = 13, + [339258] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(2114), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11801), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11863), 1, - anon_sym_LT, - ACTIONS(11865), 1, - anon_sym_EQ2, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, + anon_sym_DASH2, + ACTIONS(11641), 1, + anon_sym_PLUS2, STATE(7115), 1, sym_comment, - STATE(8282), 1, + STATE(7983), 1, sym__var, - STATE(8664), 1, + STATE(8884), 1, sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8665), 2, + STATE(8882), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1841), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [339332] = 12, - ACTIONS(105), 1, + ACTIONS(2116), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [339302] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(2017), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(2132), 1, - anon_sym_LF, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(4129), 1, - sym__immediate_decimal, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + ACTIONS(11847), 1, + anon_sym_LT, + ACTIONS(11849), 1, + anon_sym_EQ2, STATE(7116), 1, sym_comment, - STATE(7958), 1, + STATE(7604), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2015), 2, + sym_identifier, + anon_sym_DASH, + STATE(7601), 2, + sym_expr_parenthesized, + sym_val_variable, + [339350] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + ACTIONS(11851), 1, + anon_sym_LT, + ACTIONS(11853), 1, + anon_sym_EQ2, + STATE(4471), 1, sym__var, - ACTIONS(11655), 2, + STATE(7117), 1, + sym_comment, + STATE(7781), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4127), 2, + STATE(7771), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2130), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1983), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [339374] = 12, + anon_sym_if, + anon_sym_EQ_GT, + [339394] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(2120), 1, + ACTIONS(2175), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4069), 1, + STATE(4176), 1, sym__immediate_decimal, - STATE(7117), 1, + STATE(7118), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4073), 2, + STATE(4175), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2118), 4, + ACTIONS(2173), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [339416] = 12, - ACTIONS(105), 1, + [339436] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(2079), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(2177), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, + anon_sym_DASH2, + ACTIONS(11641), 1, + anon_sym_PLUS2, + STATE(7119), 1, + sym_comment, + STATE(7983), 1, + sym__var, + STATE(8839), 1, + sym__immediate_decimal, + STATE(8838), 2, + sym_expr_parenthesized, + sym_val_variable, + ACTIONS(2081), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [339480] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + anon_sym_DASH_DASH, + ACTIONS(11669), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11681), 1, + anon_sym_DASH2, + ACTIONS(11683), 1, + anon_sym_PLUS2, + ACTIONS(11855), 1, + anon_sym_LT, + ACTIONS(11857), 1, + anon_sym_DOT2, + ACTIONS(11859), 1, + anon_sym_EQ2, + ACTIONS(11861), 1, aux_sym__immediate_decimal_token1, - STATE(4172), 1, + STATE(7120), 1, + sym_comment, + STATE(8205), 1, + sym__var, + STATE(8792), 1, sym__immediate_decimal, - STATE(7118), 1, + ACTIONS(1971), 2, + sym_identifier, + anon_sym_DASH, + STATE(8791), 2, + sym_expr_parenthesized, + sym_val_variable, + [339528] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + ACTIONS(11863), 1, + anon_sym_LT, + ACTIONS(11865), 1, + anon_sym_EQ2, + STATE(7121), 1, sym_comment, - STATE(7958), 1, + STATE(7812), 1, + sym__immediate_decimal, + STATE(8167), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(1999), 2, + sym_identifier, + anon_sym_DASH, + STATE(7793), 2, + sym_expr_parenthesized, + sym_val_variable, + [339576] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, + anon_sym_DOLLAR, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(11637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11639), 1, anon_sym_DASH2, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(4173), 2, + STATE(7122), 1, + sym_comment, + STATE(7983), 1, + sym__var, + STATE(8842), 1, + sym__immediate_decimal, + STATE(8841), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2175), 4, - anon_sym_SEMI, + ACTIONS(2073), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [339620] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1319), 1, + anon_sym_DASH, + STATE(7123), 1, + sym_comment, + ACTIONS(1321), 14, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [339458] = 12, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [339646] = 12, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(2173), 1, + ACTIONS(2077), 1, anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(4168), 1, + STATE(4183), 1, sym__immediate_decimal, - STATE(7119), 1, + STATE(7124), 1, sym_comment, - STATE(7958), 1, + STATE(8054), 1, sym__var, - ACTIONS(11655), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4169), 2, + STATE(4182), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2171), 4, + ACTIONS(2075), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [339500] = 15, + [339688] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1971), 1, anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11667), 1, + ACTIONS(11611), 1, anon_sym_PLUS2, - ACTIONS(11669), 1, + ACTIONS(11613), 1, anon_sym_LPAREN, - ACTIONS(11677), 1, + ACTIONS(11621), 1, anon_sym_DASH2, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, ACTIONS(11867), 1, anon_sym_LT, ACTIONS(11869), 1, anon_sym_EQ2, - STATE(7120), 1, + STATE(7125), 1, sym_comment, - STATE(8119), 1, + STATE(8243), 1, sym__var, - STATE(9131), 1, + STATE(9155), 1, sym__immediate_decimal, - ACTIONS(1831), 2, + ACTIONS(1973), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(9130), 2, + STATE(9154), 2, sym_expr_parenthesized, sym_val_variable, - [339548] = 15, + [339736] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1815), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(1971), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11611), 1, + anon_sym_PLUS2, + ACTIONS(11613), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11621), 1, + anon_sym_DASH2, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11833), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - ACTIONS(11871), 1, + ACTIONS(11867), 1, anon_sym_LT, - ACTIONS(11873), 1, + ACTIONS(11869), 1, anon_sym_EQ2, - STATE(7121), 1, + STATE(7126), 1, sym_comment, - STATE(7626), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(8243), 1, sym__var, - ACTIONS(1813), 2, - sym_identifier, - anon_sym_DASH, - STATE(7623), 2, + STATE(9155), 1, + sym__immediate_decimal, + ACTIONS(1973), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(9154), 2, sym_expr_parenthesized, sym_val_variable, - [339596] = 12, + [339784] = 14, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(233), 1, + ACTIONS(1983), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(2089), 1, - anon_sym_LF, - ACTIONS(7442), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11647), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11653), 1, + ACTIONS(11873), 1, + anon_sym_LT, + ACTIONS(11875), 1, + anon_sym_EQ2, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(4131), 1, + STATE(5147), 1, + sym__var, + STATE(6387), 1, sym__immediate_decimal, - STATE(7122), 1, + STATE(7127), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(1981), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4130), 2, + STATE(6386), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2087), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [339638] = 15, - ACTIONS(3), 1, + [339830] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1823), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - ACTIONS(11875), 1, + ACTIONS(11881), 1, anon_sym_LT, - ACTIONS(11877), 1, + ACTIONS(11883), 1, anon_sym_EQ2, - STATE(7123), 1, - sym_comment, - STATE(7640), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(5147), 1, sym__var, - ACTIONS(1821), 2, - sym_identifier, - anon_sym_DASH, - STATE(7629), 2, + STATE(6390), 1, + sym__immediate_decimal, + STATE(7128), 1, + sym_comment, + ACTIONS(1999), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6389), 2, sym_expr_parenthesized, sym_val_variable, - [339686] = 13, - ACTIONS(3), 1, + [339876] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2009), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11879), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11885), 1, anon_sym_LT, - ACTIONS(11881), 1, + ACTIONS(11887), 1, anon_sym_EQ2, - STATE(4538), 1, + STATE(5147), 1, sym__var, - STATE(7124), 1, - sym_comment, - STATE(7654), 1, + STATE(6394), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7129), 1, + sym_comment, + ACTIONS(2007), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7659), 2, + STATE(6393), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1815), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [339730] = 13, - ACTIONS(3), 1, + [339922] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2017), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11657), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11831), 1, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11883), 1, + ACTIONS(11889), 1, anon_sym_LT, - ACTIONS(11885), 1, + ACTIONS(11891), 1, anon_sym_EQ2, - STATE(4465), 1, + STATE(5147), 1, sym__var, - STATE(7125), 1, - sym_comment, - STATE(9827), 1, + STATE(6396), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + STATE(7130), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9826), 2, + STATE(6395), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1841), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [339774] = 13, + [339968] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(827), 1, + sym_identifier, + ACTIONS(11669), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11675), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11679), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7126), 1, + ACTIONS(11685), 1, + aux_sym_unquoted_token4, + ACTIONS(11687), 1, + aux_sym_unquoted_token6, + ACTIONS(11893), 1, + anon_sym_LT, + ACTIONS(11895), 1, + anon_sym_EQ2, + STATE(7131), 1, sym_comment, - STATE(8046), 1, + STATE(8205), 1, sym__var, - STATE(8732), 1, + STATE(8713), 1, sym__immediate_decimal, - STATE(8731), 2, + ACTIONS(11683), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8712), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [339818] = 13, + [340016] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(829), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, + ACTIONS(9393), 1, + aux_sym_unquoted_token4, + ACTIONS(9395), 1, + aux_sym_unquoted_token6, ACTIONS(11605), 1, anon_sym_DOT2, ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7127), 1, + ACTIONS(11897), 1, + anon_sym_LPAREN, + ACTIONS(11899), 1, + anon_sym_LT, + ACTIONS(11901), 1, + anon_sym_EQ2, + STATE(7132), 1, sym_comment, - STATE(8046), 1, + STATE(9770), 1, sym__var, - STATE(8734), 1, + STATE(10282), 1, sym__immediate_decimal, - STATE(8667), 2, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(10281), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [339862] = 13, + [340064] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, ACTIONS(11601), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, - anon_sym_DOT2, ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7128), 1, - sym_comment, - STATE(8046), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11903), 1, + anon_sym_LT, + ACTIONS(11905), 1, + anon_sym_EQ2, + STATE(4552), 1, sym__var, - STATE(8736), 1, + STATE(7133), 1, + sym_comment, + STATE(9576), 1, sym__immediate_decimal, - STATE(8735), 2, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9575), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2124), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [339906] = 13, + ACTIONS(1876), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [340108] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(2118), 1, sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(7129), 1, + STATE(7134), 1, sym_comment, - STATE(8046), 1, + STATE(7983), 1, sym__var, - STATE(8738), 1, + STATE(8891), 1, sym__immediate_decimal, - STATE(8737), 2, + STATE(8886), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2132), 4, + ACTIONS(2120), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [339950] = 15, - ACTIONS(3), 1, + [340152] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(9371), 1, - aux_sym_unquoted_token4, - ACTIONS(9373), 1, - aux_sym_unquoted_token6, - ACTIONS(11661), 1, + ACTIONS(2108), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11801), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11887), 1, - anon_sym_LT, - ACTIONS(11889), 1, - anon_sym_EQ2, - STATE(7130), 1, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + STATE(4083), 1, + sym__immediate_decimal, + STATE(7135), 1, sym_comment, - STATE(8282), 1, + STATE(8054), 1, sym__var, - STATE(8674), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8675), 2, + STATE(4080), 2, sym_expr_parenthesized, sym_val_variable, - [339998] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_DASH, - STATE(7131), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2106), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [340024] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11891), 1, - anon_sym_LT, - ACTIONS(11893), 1, - anon_sym_EQ2, - STATE(7132), 1, - sym_comment, - STATE(7529), 1, - sym__var, - STATE(7668), 1, - sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7619), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1789), 3, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, - [340068] = 13, - ACTIONS(3), 1, + [340194] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(2112), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11895), 1, - anon_sym_LT, - ACTIONS(11897), 1, - anon_sym_EQ2, - STATE(4538), 1, - sym__var, - STATE(7133), 1, - sym_comment, - STATE(7668), 1, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + STATE(4086), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7136), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7619), 2, + STATE(4085), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1789), 3, + ACTIONS(2110), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [340112] = 15, + anon_sym_RBRACE, + [340236] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(1876), 1, anon_sym_DASH_DASH, - ACTIONS(11679), 1, + ACTIONS(11669), 1, anon_sym_LPAREN, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11689), 1, + ACTIONS(11679), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11691), 1, + ACTIONS(11681), 1, anon_sym_DASH2, - ACTIONS(11693), 1, + ACTIONS(11683), 1, anon_sym_PLUS2, - ACTIONS(11777), 1, + ACTIONS(11857), 1, anon_sym_DOT2, - ACTIONS(11899), 1, + ACTIONS(11907), 1, anon_sym_LT, - ACTIONS(11901), 1, + ACTIONS(11909), 1, anon_sym_EQ2, - STATE(7134), 1, + STATE(7137), 1, sym_comment, - STATE(8116), 1, + STATE(8205), 1, sym__var, - STATE(8899), 1, + STATE(8788), 1, sym__immediate_decimal, - ACTIONS(1829), 2, + ACTIONS(1874), 2, sym_identifier, anon_sym_DASH, - STATE(8897), 2, + STATE(8787), 2, sym_expr_parenthesized, sym_val_variable, - [340160] = 15, + [340284] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(2110), 1, + sym_cmd_identifier, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11861), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - ACTIONS(11903), 1, - anon_sym_LT, - ACTIONS(11905), 1, - anon_sym_EQ2, - STATE(7135), 1, + STATE(7138), 1, sym_comment, - STATE(7608), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(7983), 1, sym__var, - ACTIONS(1805), 2, - sym_identifier, - anon_sym_DASH, - STATE(7607), 2, + STATE(8878), 1, + sym__immediate_decimal, + STATE(8877), 2, sym_expr_parenthesized, sym_val_variable, - [340208] = 13, + ACTIONS(2112), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [340328] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(1983), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11907), 1, - anon_sym_LT, - ACTIONS(11909), 1, - anon_sym_EQ2, - STATE(7136), 1, - sym_comment, - STATE(7529), 1, - sym__var, - STATE(7634), 1, - sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(7648), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(1823), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [340252] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, ACTIONS(11911), 1, anon_sym_LT, ACTIONS(11913), 1, anon_sym_EQ2, - STATE(7137), 1, + STATE(7139), 1, sym_comment, - STATE(7529), 1, - sym__var, - STATE(7660), 1, + STATE(7735), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7666), 2, + STATE(8167), 1, + sym__var, + ACTIONS(1981), 2, + sym_identifier, + anon_sym_DASH, + STATE(7724), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1807), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [340296] = 13, + [340376] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, + ACTIONS(2122), 1, sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, + ACTIONS(11639), 1, anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11641), 1, anon_sym_PLUS2, - STATE(7138), 1, + STATE(7140), 1, sym_comment, - STATE(8046), 1, + STATE(7983), 1, sym__var, - STATE(8695), 1, + STATE(8897), 1, sym__immediate_decimal, - STATE(8694), 2, + STATE(8896), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2128), 4, + ACTIONS(2124), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [340340] = 14, + [340420] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1831), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(233), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(2081), 1, + anon_sym_LF, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11711), 1, + ACTIONS(11689), 1, anon_sym_LPAREN, - ACTIONS(11717), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11915), 1, - anon_sym_LT, - ACTIONS(11917), 1, - anon_sym_EQ2, - STATE(5243), 1, - sym__var, - STATE(7139), 1, - sym_comment, - STATE(9453), 1, + STATE(4186), 1, sym__immediate_decimal, - ACTIONS(1829), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11719), 2, + STATE(7141), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9450), 2, + STATE(4184), 2, sym_expr_parenthesized, sym_val_variable, - [340386] = 13, + ACTIONS(2079), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [340462] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(1981), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11919), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + ACTIONS(11915), 1, anon_sym_LT, - ACTIONS(11921), 1, + ACTIONS(11917), 1, anon_sym_EQ2, - STATE(7140), 1, + STATE(7142), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7654), 1, + STATE(7781), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7659), 2, + ACTIONS(1983), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7771), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [340430] = 13, + [340510] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2147), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(1999), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7141), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + ACTIONS(11919), 1, + anon_sym_LT, + ACTIONS(11921), 1, + anon_sym_EQ2, + STATE(7143), 1, sym_comment, - STATE(8046), 1, + STATE(7451), 1, sym__var, - STATE(8693), 1, + STATE(7784), 1, sym__immediate_decimal, - STATE(8692), 2, + ACTIONS(2001), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7783), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2149), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [340474] = 13, + [340558] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2007), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, ACTIONS(11923), 1, anon_sym_LT, ACTIONS(11925), 1, anon_sym_EQ2, - STATE(4538), 1, - sym__var, - STATE(7142), 1, + STATE(7144), 1, sym_comment, - STATE(7660), 1, + STATE(7451), 1, + sym__var, + STATE(7788), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7666), 2, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7787), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1807), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [340518] = 13, + [340606] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2175), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, - anon_sym_DOT2, ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, - anon_sym_PLUS2, - STATE(7143), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11797), 1, + anon_sym_LPAREN, + ACTIONS(11927), 1, + anon_sym_LT, + ACTIONS(11929), 1, + anon_sym_EQ2, + STATE(7145), 1, sym_comment, - STATE(8046), 1, + STATE(8103), 1, sym__var, - STATE(8683), 1, + STATE(9020), 1, sym__immediate_decimal, - STATE(8682), 2, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9013), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2177), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [340562] = 13, + ACTIONS(1876), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [340650] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(1193), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11657), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11927), 1, - anon_sym_LT, - ACTIONS(11929), 1, - anon_sym_EQ2, - STATE(4465), 1, - sym__var, - STATE(7144), 1, - sym_comment, - STATE(9825), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(9824), 2, + ACTIONS(11931), 1, + aux_sym_unquoted_token5, + STATE(7146), 1, + sym_comment, + STATE(7717), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(1191), 2, + sym_identifier, + anon_sym_DASH, + STATE(7715), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1831), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [340606] = 13, + [340695] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2171), 1, - sym_cmd_identifier, - ACTIONS(11525), 1, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(11755), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11609), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11611), 1, - anon_sym_DASH2, - ACTIONS(11613), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7145), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7147), 1, sym_comment, - STATE(8046), 1, + STATE(7451), 1, sym__var, - STATE(8689), 1, + STATE(7682), 1, sym__immediate_decimal, - STATE(8688), 2, + ACTIONS(1193), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2173), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [340650] = 4, + [340740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, + ACTIONS(1319), 1, anon_sym_DASH, - STATE(7146), 1, + STATE(7148), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1321), 13, anon_sym_EQ, sym_cmd_identifier, anon_sym_COLON, @@ -529520,111 +529609,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [340675] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1193), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + [340765] = 12, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(11721), 1, - aux_sym_unquoted_token5, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11741), 1, + anon_sym_LPAREN, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7147), 1, + STATE(4243), 1, + sym__immediate_decimal, + STATE(7149), 1, sym_comment, - STATE(7529), 1, + STATE(8116), 1, sym__var, - STATE(7678), 1, - sym__immediate_decimal, - ACTIONS(1195), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7673), 2, - sym_expr_parenthesized, - sym_val_variable, - [340720] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1193), 1, - anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11721), 1, - aux_sym_unquoted_token5, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, + ACTIONS(2071), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2073), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11749), 2, anon_sym_DASH2, - ACTIONS(11795), 1, anon_sym_PLUS2, - STATE(7148), 1, - sym_comment, - STATE(7529), 1, - sym__var, - STATE(7706), 1, - sym__immediate_decimal, - ACTIONS(1195), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7691), 2, + STATE(4242), 2, sym_expr_parenthesized, sym_val_variable, - [340765] = 12, + [340806] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4366), 1, + STATE(4256), 1, sym__immediate_decimal, - STATE(7149), 1, + STATE(7150), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2087), 2, + ACTIONS(2130), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2089), 2, + ACTIONS(2132), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4367), 2, + STATE(4239), 2, sym_expr_parenthesized, sym_val_variable, - [340806] = 7, + [340847] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(7150), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7151), 1, sym_comment, - STATE(7177), 1, + STATE(7451), 1, + sym__var, + STATE(7644), 1, + sym__immediate_decimal, + ACTIONS(1193), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7546), 2, + sym_expr_parenthesized, + sym_val_variable, + [340892] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1070), 1, + anon_sym_DASH, + ACTIONS(11933), 1, + anon_sym_QMARK2, + STATE(7152), 1, + sym_comment, + ACTIONS(1072), 12, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT2, + [340919] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(7153), 1, + sym_comment, + STATE(7169), 1, aux_sym_cell_path_repeat1, - STATE(7241), 1, + STATE(7259), 1, sym_path, - ACTIONS(905), 10, + ACTIONS(975), 10, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -529635,335 +529744,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [340837] = 12, - ACTIONS(3), 1, + [340950] = 14, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(1971), 1, + anon_sym_RBRACK, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11717), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(11935), 1, + anon_sym_LT, + ACTIONS(11937), 1, + anon_sym_EQ2, + ACTIONS(11939), 1, + aux_sym__immediate_decimal_token1, + STATE(5149), 1, sym__var, - STATE(7151), 1, + STATE(7154), 1, sym_comment, - STATE(7678), 1, + STATE(9405), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11727), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(9402), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1195), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [340878] = 12, + [340995] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(1193), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(10318), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + ACTIONS(11931), 1, aux_sym_unquoted_token5, - ACTIONS(11787), 1, + STATE(7155), 1, + sym_comment, + STATE(7709), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(1191), 2, + sym_identifier, + anon_sym_DASH, + STATE(7708), 2, + sym_expr_parenthesized, + sym_val_variable, + [341040] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7152), 1, + STATE(7156), 1, sym_comment, - STATE(7706), 1, + STATE(7682), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(1195), 3, + ACTIONS(1193), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [340919] = 12, + [341081] = 14, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11717), 1, + anon_sym_LPAREN, + ACTIONS(11725), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11935), 1, + anon_sym_LT, + ACTIONS(11937), 1, + anon_sym_EQ2, + STATE(5149), 1, + sym__var, + STATE(7157), 1, + sym_comment, + STATE(9405), 1, + sym__immediate_decimal, + ACTIONS(11727), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(9402), 2, + sym_expr_parenthesized, + sym_val_variable, + [341126] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4281), 1, + STATE(4259), 1, sym__immediate_decimal, - STATE(7153), 1, + STATE(7158), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2175), 2, + ACTIONS(2134), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2177), 2, + ACTIONS(2136), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4224), 2, + STATE(4257), 2, sym_expr_parenthesized, sym_val_variable, - [340960] = 12, + [341167] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4226), 1, + STATE(4245), 1, sym__immediate_decimal, - STATE(7154), 1, + STATE(7159), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2126), 2, + ACTIONS(2110), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2128), 2, + ACTIONS(2112), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4252), 2, + STATE(4347), 2, sym_expr_parenthesized, sym_val_variable, - [341001] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(11931), 1, - anon_sym_DOLLAR, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(7155), 1, - sym_comment, - STATE(7250), 1, - sym__flag, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1554), 2, - sym__blosure, - sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [341046] = 12, + [341208] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4295), 1, + STATE(4241), 1, sym__immediate_decimal, - STATE(7156), 1, + STATE(7160), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2147), 2, + ACTIONS(2079), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2149), 2, + ACTIONS(2081), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4305), 2, + STATE(4240), 2, sym_expr_parenthesized, sym_val_variable, - [341087] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DASH, - ACTIONS(11937), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(7157), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 10, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [341116] = 12, + [341249] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4363), 1, + STATE(4280), 1, sym__immediate_decimal, - STATE(7158), 1, + STATE(7161), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2171), 2, + ACTIONS(2122), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2173), 2, + ACTIONS(2124), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4313), 2, + STATE(4267), 2, sym_expr_parenthesized, sym_val_variable, - [341157] = 12, + [341290] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4228), 1, + STATE(4237), 1, sym__immediate_decimal, - STATE(7159), 1, + STATE(7162), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2118), 2, + ACTIONS(2075), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2120), 2, + ACTIONS(2077), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(4236), 2, sym_expr_parenthesized, sym_val_variable, - [341198] = 14, + [341331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(903), 1, + anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(7153), 1, + aux_sym_cell_path_repeat1, + STATE(7163), 1, + sym_comment, + STATE(7259), 1, + sym_path, + ACTIONS(905), 10, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(11681), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [341362] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - ACTIONS(11940), 1, - aux_sym_unquoted_token5, - STATE(7160), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, + sym__var, + STATE(7164), 1, sym_comment, - STATE(7554), 1, + STATE(7644), 1, sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(1193), 2, - sym_identifier, - anon_sym_DASH, - STATE(7575), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7546), 2, sym_expr_parenthesized, sym_val_variable, - [341243] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(1193), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [341403] = 12, + ACTIONS(35), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11741), 1, + anon_sym_LPAREN, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - ACTIONS(11940), 1, - aux_sym_unquoted_token5, - STATE(7161), 1, - sym_comment, - STATE(7560), 1, + STATE(4314), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(7165), 1, + sym_comment, + STATE(8116), 1, sym__var, - ACTIONS(1193), 2, - sym_identifier, - anon_sym_DASH, - STATE(7555), 2, + ACTIONS(2126), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2128), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(11749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4296), 2, sym_expr_parenthesized, sym_val_variable, - [341288] = 5, + [341444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1054), 1, + ACTIONS(1070), 1, anon_sym_DASH, - ACTIONS(11942), 1, + ACTIONS(11933), 1, anon_sym_QMARK2, - STATE(7162), 1, + STATE(7166), 1, sym_comment, - ACTIONS(1056), 12, + ACTIONS(1072), 12, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -529976,218 +530115,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - [341315] = 12, + [341471] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4294), 1, + STATE(4329), 1, sym__immediate_decimal, - STATE(7163), 1, + STATE(7167), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2110), 2, + ACTIONS(2106), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2112), 2, + ACTIONS(2108), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4284), 2, + STATE(4326), 2, sym_expr_parenthesized, sym_val_variable, - [341356] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11946), 1, - anon_sym_EQ, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(11950), 1, - anon_sym_COMMA, - ACTIONS(11952), 1, - anon_sym_LPAREN, - ACTIONS(11954), 1, - anon_sym_DASH, - STATE(7164), 1, - sym_comment, - STATE(7362), 1, - sym_flag_capsule, - STATE(7449), 1, - sym_param_value, - STATE(7740), 1, - sym_param_type, - ACTIONS(11944), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [341395] = 14, + [341512] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, + ACTIONS(3017), 1, anon_sym_DASH_DASH, - ACTIONS(6098), 1, + ACTIONS(5961), 1, anon_sym_COLON, - ACTIONS(11931), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(11935), 1, + ACTIONS(11945), 1, anon_sym_LBRACE, - STATE(4871), 1, + STATE(4740), 1, sym__var, - STATE(5740), 1, + STATE(5441), 1, sym_block, - STATE(5743), 1, + STATE(5719), 1, sym_val_closure, - STATE(7165), 1, + STATE(7168), 1, sym_comment, - STATE(7250), 1, + STATE(7200), 1, sym__flag, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(1554), 2, + STATE(1643), 2, sym__blosure, sym_val_variable, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [341440] = 14, + [341557] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(942), 1, + anon_sym_DASH, + ACTIONS(11947), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(7169), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(944), 10, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [341586] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11952), 1, + anon_sym_EQ, + ACTIONS(11954), 1, + anon_sym_COLON, ACTIONS(11956), 1, + anon_sym_COMMA, + ACTIONS(11958), 1, + anon_sym_LPAREN, + ACTIONS(11960), 1, + anon_sym_DASH, + STATE(7170), 1, + sym_comment, + STATE(7370), 1, + sym_flag_capsule, + STATE(7496), 1, + sym_param_value, + STATE(7820), 1, + sym_param_type, + ACTIONS(11950), 6, sym_identifier, - ACTIONS(11961), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(11964), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11967), 1, anon_sym_DASH_DASH, + [341625] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11962), 1, + sym_identifier, + ACTIONS(11967), 1, + anon_sym_DOLLAR, ACTIONS(11970), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11973), 1, + anon_sym_DASH_DASH, + ACTIONS(11976), 1, anon_sym_DASH, - STATE(7164), 1, + STATE(7170), 1, sym_param_long_flag, - STATE(7392), 1, + STATE(7412), 1, sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, + STATE(7497), 1, sym_param_rest, - STATE(8055), 1, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, sym_parameter, - ACTIONS(11959), 2, + ACTIONS(11965), 2, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7166), 2, + STATE(7171), 2, sym_comment, aux_sym_parameter_parens_repeat1, - [341485] = 14, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_RBRACE, - ACTIONS(1841), 1, - sym__entry_separator, - ACTIONS(3343), 1, - anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(11711), 1, - anon_sym_LPAREN, - ACTIONS(11717), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11973), 1, - anon_sym_LT, - ACTIONS(11975), 1, - anon_sym_EQ2, - STATE(5243), 1, - sym__var, - STATE(7167), 1, - sym_comment, - STATE(9460), 1, - sym__immediate_decimal, - ACTIONS(11719), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9456), 2, - sym_expr_parenthesized, - sym_val_variable, - [341530] = 12, + [341670] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4377), 1, + STATE(4234), 1, sym__immediate_decimal, - STATE(7168), 1, + STATE(7172), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2130), 2, + ACTIONS(2173), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2132), 2, + ACTIONS(2175), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4383), 2, + STATE(4232), 2, sym_expr_parenthesized, sym_val_variable, - [341571] = 12, + [341711] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4348), 1, + STATE(4249), 1, sym__immediate_decimal, - STATE(7169), 1, + STATE(7173), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2122), 2, + ACTIONS(2114), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2124), 2, + ACTIONS(2116), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4346), 2, + STATE(4248), 2, sym_expr_parenthesized, sym_val_variable, - [341612] = 14, + [341752] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, + ACTIONS(6032), 1, anon_sym_COLON, ACTIONS(11377), 1, anon_sym_DASH, @@ -530199,150 +530330,438 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, ACTIONS(11395), 1, aux_sym_unquoted_token1, - ACTIONS(11977), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(1745), 1, + STATE(1740), 1, sym_val_variable, - STATE(1749), 1, + STATE(1741), 1, sym_unquoted, - STATE(7170), 1, + STATE(7174), 1, sym_comment, - STATE(10219), 1, + STATE(10280), 1, + sym__val_number_decimal, + ACTIONS(11385), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [341797] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(11377), 1, + anon_sym_DASH, + ACTIONS(11379), 1, + anon_sym_DOT, + ACTIONS(11381), 1, + anon_sym_PLUS, + ACTIONS(11383), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(11395), 1, + aux_sym_unquoted_token1, + ACTIONS(11979), 1, + anon_sym_DOLLAR, + STATE(1469), 1, + sym__var, + STATE(1740), 1, + sym_val_variable, + STATE(1741), 1, + sym_unquoted, + STATE(7175), 1, + sym_comment, + STATE(10280), 1, sym__val_number_decimal, ACTIONS(11385), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - [341657] = 12, + [341842] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(11941), 1, + anon_sym_DOLLAR, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(11945), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym__var, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(7176), 1, + sym_comment, + STATE(7200), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1643), 2, + sym__blosure, + sym_val_variable, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [341887] = 12, ACTIONS(35), 1, anon_sym_DOLLAR, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11723), 1, + ACTIONS(11741), 1, anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(4337), 1, + STATE(4254), 1, sym__immediate_decimal, - STATE(7171), 1, + STATE(7177), 1, sym_comment, - STATE(8261), 1, + STATE(8116), 1, sym__var, - ACTIONS(2091), 2, + ACTIONS(2118), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2093), 2, + ACTIONS(2120), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(11731), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4336), 2, + STATE(4250), 2, sym_expr_parenthesized, sym_val_variable, - [341698] = 12, - ACTIONS(35), 1, - anon_sym_DOLLAR, - ACTIONS(105), 1, + [341928] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11723), 1, - anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(4332), 1, - sym__immediate_decimal, - STATE(7172), 1, - sym_comment, - STATE(8261), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - ACTIONS(2095), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2097), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(11731), 2, + STATE(7178), 1, + sym_comment, + STATE(7579), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4320), 2, + STATE(7578), 2, sym_expr_parenthesized, sym_val_variable, - [341739] = 12, - ACTIONS(35), 1, + ACTIONS(2077), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [341966] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11983), 1, + anon_sym_RBRACK, + ACTIONS(11985), 1, + anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + STATE(7170), 1, + sym_param_long_flag, + STATE(7179), 1, + sym_comment, + STATE(7191), 1, + aux_sym_parameter_parens_repeat1, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342012] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(11993), 1, + anon_sym_RPAREN, + STATE(7170), 1, + sym_param_long_flag, + STATE(7180), 1, + sym_comment, + STATE(7192), 1, + aux_sym_parameter_parens_repeat1, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342058] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(11723), 1, - anon_sym_LPAREN, - ACTIONS(11729), 1, + ACTIONS(11995), 1, aux_sym__immediate_decimal_token1, - STATE(4251), 1, - sym__immediate_decimal, - STATE(7173), 1, + ACTIONS(11997), 1, + aux_sym__immediate_decimal_token2, + STATE(7181), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(2106), 2, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 9, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2108), 2, - ts_builtin_sym_end, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [342086] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(11999), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12001), 1, + aux_sym__immediate_decimal_token2, + STATE(7182), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4316), 2, - sym_expr_parenthesized, + anon_sym_DOT2, + ACTIONS(807), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [342114] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3221), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12005), 1, + anon_sym_LBRACE, + STATE(4970), 1, + sym__var, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, + STATE(7183), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8274), 1, + sym__flag, + STATE(1860), 2, + sym__blosure, sym_val_variable, - [341780] = 14, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342156] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(12007), 1, + anon_sym_DOT2, + STATE(7184), 1, + sym_comment, + STATE(7208), 1, + sym_path, + STATE(7510), 1, + sym_cell_path, + ACTIONS(968), 9, + sym_identifier, anon_sym_COLON, - ACTIONS(11377), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [342186] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7185), 1, + sym_comment, + STATE(7234), 1, + aux_sym_cell_path_repeat1, + STATE(7430), 1, + sym_path, + ACTIONS(973), 2, anon_sym_DASH, - ACTIONS(11379), 1, - anon_sym_DOT, - ACTIONS(11381), 1, - anon_sym_PLUS, - ACTIONS(11383), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(11395), 1, - aux_sym_unquoted_token1, - ACTIONS(11977), 1, + anon_sym_DOT2, + ACTIONS(975), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [342214] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(12003), 1, anon_sym_DOLLAR, - STATE(1506), 1, + ACTIONS(12005), 1, + anon_sym_LBRACE, + STATE(4970), 1, sym__var, - STATE(1745), 1, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, + STATE(7186), 1, + sym_comment, + STATE(7188), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1827), 2, + sym__blosure, sym_val_variable, - STATE(1749), 1, - sym_unquoted, - STATE(7174), 1, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342256] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(933), 1, + anon_sym_DASH, + ACTIONS(12010), 1, + anon_sym_DOT2, + STATE(7187), 1, sym_comment, - STATE(10219), 1, - sym__val_number_decimal, - ACTIONS(11385), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [341825] = 5, + STATE(7222), 1, + sym_path, + STATE(7456), 1, + sym_cell_path, + ACTIONS(935), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [342286] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1054), 1, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(11942), 1, - anon_sym_QMARK2, - STATE(7175), 1, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12005), 1, + anon_sym_LBRACE, + STATE(4970), 1, + sym__var, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, + STATE(7188), 1, + sym_comment, + STATE(7189), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1789), 2, + sym__blosure, + sym_val_variable, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342328] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12005), 1, + anon_sym_LBRACE, + STATE(4970), 1, + sym__var, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, + STATE(7183), 1, + sym__flag, + STATE(7189), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1837), 2, + sym__blosure, + sym_val_variable, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342370] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_DASH, + STATE(7190), 1, sym_comment, - ACTIONS(1056), 12, + ACTIONS(1215), 12, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -530355,154 +530774,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - [341852] = 14, - ACTIONS(105), 1, + [342394] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12012), 1, anon_sym_RBRACK, - ACTIONS(1841), 1, - sym__entry_separator, - ACTIONS(3343), 1, + STATE(7170), 1, + sym_param_long_flag, + STATE(7171), 1, + aux_sym_parameter_parens_repeat1, + STATE(7191), 1, + sym_comment, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342440] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12014), 1, + anon_sym_RPAREN, + STATE(7170), 1, + sym_param_long_flag, + STATE(7171), 1, + aux_sym_parameter_parens_repeat1, + STATE(7192), 1, + sym_comment, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342486] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(12010), 1, anon_sym_DOT2, - ACTIONS(11711), 1, - anon_sym_LPAREN, - ACTIONS(11973), 1, - anon_sym_LT, - ACTIONS(11975), 1, - anon_sym_EQ2, - ACTIONS(11979), 1, - aux_sym__immediate_decimal_token1, - STATE(5243), 1, - sym__var, - STATE(7176), 1, + STATE(7193), 1, sym_comment, - STATE(9460), 1, - sym__immediate_decimal, - ACTIONS(11719), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9456), 2, - sym_expr_parenthesized, - sym_val_variable, - [341897] = 7, + STATE(7222), 1, + sym_path, + STATE(7510), 1, + sym_cell_path, + ACTIONS(968), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [342516] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(973), 1, anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(12010), 1, anon_sym_DOT2, - STATE(7157), 1, - aux_sym_cell_path_repeat1, - STATE(7177), 1, + STATE(7194), 1, sym_comment, - STATE(7241), 1, + STATE(7234), 1, + aux_sym_cell_path_repeat1, + STATE(7430), 1, sym_path, - ACTIONS(977), 10, - anon_sym_EQ, - anon_sym_SEMI, + ACTIONS(975), 9, + sym_identifier, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [341928] = 12, + [342546] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(11956), 1, + anon_sym_COMMA, + ACTIONS(11958), 1, + anon_sym_LPAREN, + ACTIONS(11960), 1, + anon_sym_DASH, + ACTIONS(12016), 1, + anon_sym_EQ, + STATE(7195), 1, + sym_comment, + STATE(7496), 1, + sym_param_value, + STATE(7498), 1, + sym_flag_capsule, + STATE(7865), 1, + sym_param_type, + ACTIONS(11950), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [342584] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12018), 1, + anon_sym_PIPE, + STATE(7195), 1, + sym_param_long_flag, + STATE(7196), 1, + sym_comment, + STATE(7227), 1, + aux_sym_parameter_parens_repeat1, + STATE(7495), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342630] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(8333), 1, + anon_sym_RBRACK, + ACTIONS(8335), 1, + sym__entry_separator, + ACTIONS(8337), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(5147), 1, sym__var, - STATE(6385), 1, + STATE(6328), 1, sym__immediate_decimal, - STATE(7178), 1, + STATE(7197), 1, sym_comment, - ACTIONS(2126), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6358), 2, + STATE(6327), 2, sym_expr_parenthesized, sym_val_variable, - [341968] = 13, - ACTIONS(105), 1, + [342672] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, - anon_sym_RBRACK, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(10106), 1, - aux_sym_unquoted_token5, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, - aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(11945), 1, + anon_sym_LBRACE, + STATE(4740), 1, sym__var, - STATE(6384), 1, - sym__immediate_decimal, - STATE(7179), 1, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(7198), 1, sym_comment, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6379), 2, - sym_expr_parenthesized, + STATE(7200), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1643), 2, + sym__blosure, sym_val_variable, - [342010] = 13, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342714] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(11377), 1, anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(11379), 1, + anon_sym_DOT, + ACTIONS(11381), 1, + anon_sym_PLUS, + ACTIONS(11383), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(11395), 1, + aux_sym_unquoted_token1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7180), 1, - sym_comment, - STATE(7529), 1, + STATE(1469), 1, sym__var, - STATE(7770), 1, - sym__immediate_decimal, - ACTIONS(2120), 2, + STATE(1740), 1, + sym_val_variable, + STATE(1741), 1, + sym_unquoted, + STATE(7199), 1, + sym_comment, + STATE(10280), 1, + sym__val_number_decimal, + ACTIONS(11385), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + [342756] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3017), 1, anon_sym_DASH_DASH, + ACTIONS(11941), 1, + anon_sym_DOLLAR, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(11945), 1, anon_sym_LBRACE, - STATE(7622), 2, - sym_expr_parenthesized, + STATE(4740), 1, + sym__var, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(7200), 1, + sym_comment, + STATE(7203), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1610), 2, + sym__blosure, sym_val_variable, - [342052] = 15, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342798] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11981), 1, sym_identifier, - ACTIONS(11983), 1, - anon_sym_RBRACK, ACTIONS(11985), 1, anon_sym_DOLLAR, ACTIONS(11987), 1, @@ -530511,623 +531069,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(11991), 1, anon_sym_DASH, - STATE(7164), 1, + ACTIONS(12020), 1, + anon_sym_RBRACK, + STATE(7170), 1, sym_param_long_flag, - STATE(7181), 1, + STATE(7201), 1, sym_comment, - STATE(7208), 1, + STATE(7204), 1, aux_sym_parameter_parens_repeat1, - STATE(7392), 1, + STATE(7412), 1, sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, sym_param_opt, - STATE(7506), 1, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342844] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12022), 1, + anon_sym_RPAREN, + STATE(7170), 1, + sym_param_long_flag, + STATE(7202), 1, + sym_comment, + STATE(7205), 1, + aux_sym_parameter_parens_repeat1, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, sym_param_rest, - STATE(8055), 1, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, sym_parameter, - [342098] = 6, + [342890] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11993), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11995), 1, - aux_sym__immediate_decimal_token2, - STATE(7182), 1, + ACTIONS(3017), 1, + anon_sym_DASH_DASH, + ACTIONS(11941), 1, + anon_sym_DOLLAR, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(11945), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym__var, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(7203), 1, sym_comment, - ACTIONS(2986), 3, + STATE(7206), 1, + sym__flag, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(1675), 2, + sym__blosure, + sym_val_variable, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [342932] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, sym_identifier, + ACTIONS(11985), 1, + anon_sym_DOLLAR, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2988), 8, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(12024), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(7170), 1, + sym_param_long_flag, + STATE(7171), 1, + aux_sym_parameter_parens_repeat1, + STATE(7204), 1, + sym_comment, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [342978] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, + ACTIONS(11987), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, anon_sym_DASH_DASH, - [342126] = 12, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12026), 1, + anon_sym_RPAREN, + STATE(7170), 1, + sym_param_long_flag, + STATE(7171), 1, + aux_sym_parameter_parens_repeat1, + STATE(7205), 1, + sym_comment, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [343024] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(3221), 1, + anon_sym_DASH_DASH, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(11945), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym__var, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(7206), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8291), 1, + sym__flag, + STATE(1647), 2, + sym__blosure, + sym_val_variable, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [343066] = 13, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(8333), 1, + anon_sym_RBRACK, + ACTIONS(8335), 1, + sym__entry_separator, + ACTIONS(8337), 1, + aux_sym__unquoted_in_list_token6, + ACTIONS(11871), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(7183), 1, - sym_comment, - STATE(7706), 1, + STATE(6330), 1, sym__immediate_decimal, - ACTIONS(1195), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(11795), 2, + STATE(7207), 1, + sym_comment, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(6329), 2, sym_expr_parenthesized, sym_val_variable, - [342166] = 11, + [343108] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(11950), 1, - anon_sym_COMMA, - ACTIONS(11952), 1, - anon_sym_LPAREN, - ACTIONS(11954), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(11997), 1, - anon_sym_EQ, - STATE(7184), 1, + ACTIONS(12010), 1, + anon_sym_DOT2, + STATE(7185), 1, + aux_sym_cell_path_repeat1, + STATE(7208), 1, sym_comment, - STATE(7448), 1, - sym_flag_capsule, - STATE(7449), 1, - sym_param_value, - STATE(7868), 1, - sym_param_type, - ACTIONS(11944), 5, + STATE(7430), 1, + sym_path, + ACTIONS(905), 9, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [342204] = 13, - ACTIONS(3), 1, + [343138] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1815), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(1191), 1, + anon_sym_RBRACK, + ACTIONS(1193), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - ACTIONS(12001), 1, - anon_sym_LT, - ACTIONS(12003), 1, - anon_sym_EQ2, - STATE(7185), 1, - sym_comment, - STATE(7654), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7659), 2, - sym_expr_parenthesized, - sym_val_variable, - [342246] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(10078), 1, + aux_sym_unquoted_token5, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(7186), 1, - sym_comment, - STATE(7529), 1, + STATE(5147), 1, sym__var, - STATE(7786), 1, + STATE(6328), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7209), 1, + sym_comment, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7784), 2, + STATE(6327), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2173), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [342284] = 12, + [343180] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2177), 1, + ACTIONS(1191), 1, + anon_sym_RBRACK, + ACTIONS(1193), 1, sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(10078), 1, + aux_sym_unquoted_token5, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(5147), 1, sym__var, - STATE(6427), 1, + STATE(6330), 1, sym__immediate_decimal, - STATE(7187), 1, + STATE(7210), 1, sym_comment, - ACTIONS(2175), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6428), 2, + STATE(6329), 2, sym_expr_parenthesized, sym_val_variable, - [342324] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3559), 1, - anon_sym_DASH_DASH, - ACTIONS(11931), 1, - anon_sym_DOLLAR, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(7188), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8232), 1, - sym__flag, - STATE(1643), 2, - sym__blosure, - sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [342366] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12005), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7166), 1, - aux_sym_parameter_parens_repeat1, - STATE(7189), 1, - sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [342412] = 11, + [343222] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7190), 1, + STATE(7211), 1, sym_comment, - STATE(7700), 1, + STATE(7568), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7692), 2, + STATE(7567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 3, + ACTIONS(2175), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342450] = 11, + [343260] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7191), 1, + STATE(7212), 1, sym_comment, - STATE(7687), 1, + STATE(7619), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7680), 2, + STATE(7603), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2132), 3, + ACTIONS(2081), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342488] = 13, + [343298] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2177), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7192), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, + sym__var, + STATE(7213), 1, sym_comment, - STATE(7563), 1, + STATE(7633), 1, sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(2175), 2, - sym_identifier, - anon_sym_DASH, - STATE(7562), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7632), 2, sym_expr_parenthesized, sym_val_variable, - [342530] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12007), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7193), 1, - sym_comment, - STATE(7212), 1, - aux_sym_parameter_parens_repeat1, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [342576] = 13, + ACTIONS(2073), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [343336] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - ACTIONS(12009), 1, - anon_sym_LT, - ACTIONS(12011), 1, - anon_sym_EQ2, - STATE(7194), 1, + STATE(4471), 1, + sym__var, + STATE(7214), 1, sym_comment, - STATE(7660), 1, + STATE(7802), 1, sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7666), 2, + STATE(7800), 2, sym_expr_parenthesized, sym_val_variable, - [342618] = 13, + ACTIONS(2108), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [343374] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1789), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - ACTIONS(12013), 1, - anon_sym_LT, - ACTIONS(12015), 1, - anon_sym_EQ2, - STATE(7195), 1, + STATE(4471), 1, + sym__var, + STATE(7215), 1, sym_comment, - STATE(7668), 1, + STATE(7805), 1, sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7619), 2, + STATE(7803), 2, sym_expr_parenthesized, sym_val_variable, - [342660] = 11, + ACTIONS(2112), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [343412] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7196), 1, + STATE(7216), 1, sym_comment, - STATE(7675), 1, + STATE(7811), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7801), 2, + STATE(7810), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2124), 3, + ACTIONS(2116), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342698] = 11, + [343450] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7197), 1, + STATE(7217), 1, sym_comment, - STATE(7548), 1, + STATE(7823), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7558), 2, + STATE(7822), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 3, + ACTIONS(2120), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342736] = 11, + [343488] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7198), 1, + STATE(7218), 1, sym_comment, - STATE(7559), 1, + STATE(7829), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7573), 2, + STATE(7828), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 3, + ACTIONS(2124), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342774] = 13, + [343526] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7199), 1, - sym_comment, - STATE(7529), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - STATE(7794), 1, + STATE(7219), 1, + sym_comment, + STATE(7720), 1, sym__immediate_decimal, - ACTIONS(2128), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7793), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7830), 2, sym_expr_parenthesized, sym_val_variable, - [342816] = 11, + ACTIONS(2128), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [343564] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7200), 1, + STATE(7220), 1, sym_comment, - STATE(7579), 1, + STATE(7574), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7587), 2, + STATE(7659), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2108), 3, + ACTIONS(2132), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [342854] = 12, - ACTIONS(105), 1, + [343602] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - STATE(6347), 1, - sym__immediate_decimal, - STATE(7201), 1, + STATE(7221), 1, sym_comment, - ACTIONS(2118), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + STATE(7565), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6345), 2, + STATE(7548), 2, sym_expr_parenthesized, sym_val_variable, - [342894] = 13, + ACTIONS(2136), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [343640] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(12010), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7202), 1, - sym_comment, - STATE(7529), 1, - sym__var, - STATE(7700), 1, - sym__immediate_decimal, - ACTIONS(2089), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7692), 2, - sym_expr_parenthesized, - sym_val_variable, - [342936] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12019), 1, - aux_sym__immediate_decimal_token2, - STATE(7203), 1, + STATE(7194), 1, + aux_sym_cell_path_repeat1, + STATE(7222), 1, sym_comment, - ACTIONS(2996), 3, + STATE(7430), 1, + sym_path, + ACTIONS(905), 9, sym_identifier, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2998), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -531136,121 +531668,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [342964] = 11, + [343670] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - STATE(7204), 1, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12028), 1, + anon_sym_RBRACK, + STATE(7170), 1, + sym_param_long_flag, + STATE(7223), 1, sym_comment, - STATE(7529), 1, - sym__var, - STATE(7579), 1, - sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7587), 2, - sym_expr_parenthesized, - sym_val_variable, - ACTIONS(2108), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [343002] = 13, + STATE(7225), 1, + aux_sym_parameter_parens_repeat1, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [343716] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2171), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7205), 1, - sym_comment, - STATE(7529), 1, - sym__var, - STATE(7786), 1, - sym__immediate_decimal, - ACTIONS(2173), 2, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7784), 2, - sym_expr_parenthesized, - sym_val_variable, - [343044] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2175), 1, + ACTIONS(11991), 1, anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7206), 1, + ACTIONS(12030), 1, + anon_sym_RPAREN, + STATE(7170), 1, + sym_param_long_flag, + STATE(7224), 1, sym_comment, - STATE(7529), 1, - sym__var, - STATE(7781), 1, - sym__immediate_decimal, - ACTIONS(2177), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7769), 2, - sym_expr_parenthesized, - sym_val_variable, - [343086] = 13, - ACTIONS(105), 1, + STATE(7226), 1, + aux_sym_parameter_parens_repeat1, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [343762] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3343), 1, + ACTIONS(11981), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(8594), 1, + ACTIONS(11987), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, + anon_sym_DASH_DASH, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12032), 1, anon_sym_RBRACK, - ACTIONS(8596), 1, - sym__entry_separator, - ACTIONS(8598), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, - aux_sym__immediate_decimal_token1, - STATE(5199), 1, - sym__var, - STATE(6417), 1, - sym__immediate_decimal, - STATE(7207), 1, + STATE(7170), 1, + sym_param_long_flag, + STATE(7171), 1, + aux_sym_parameter_parens_repeat1, + STATE(7225), 1, sym_comment, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6401), 2, - sym_expr_parenthesized, - sym_val_variable, - [343128] = 15, + STATE(7412), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [343808] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11981), 1, @@ -531263,395 +531774,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(11991), 1, anon_sym_DASH, - ACTIONS(12021), 1, - anon_sym_RBRACK, - STATE(7164), 1, + ACTIONS(12034), 1, + anon_sym_RPAREN, + STATE(7170), 1, sym_param_long_flag, - STATE(7166), 1, + STATE(7171), 1, aux_sym_parameter_parens_repeat1, - STATE(7208), 1, + STATE(7226), 1, sym_comment, - STATE(7392), 1, + STATE(7412), 1, sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, + STATE(7497), 1, sym_param_rest, - STATE(8055), 1, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, sym_parameter, - [343174] = 13, + [343854] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(11962), 1, + sym_identifier, + ACTIONS(11965), 1, + anon_sym_PIPE, + ACTIONS(11967), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11970), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11973), 1, + anon_sym_DASH_DASH, + ACTIONS(11976), 1, + anon_sym_DASH, + STATE(7195), 1, + sym_param_long_flag, + STATE(7495), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + STATE(7227), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + [343898] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12036), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7209), 1, + ACTIONS(12038), 1, + aux_sym__immediate_decimal_token2, + STATE(7228), 1, sym_comment, - STATE(7704), 1, - sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(2087), 2, + ACTIONS(2998), 3, sym_identifier, anon_sym_DASH, - STATE(7703), 2, - sym_expr_parenthesized, - sym_val_variable, - [343216] = 6, - ACTIONS(105), 1, + anon_sym_DOT2, + ACTIONS(3000), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [343926] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12023), 1, + ACTIONS(12040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12025), 1, + ACTIONS(12042), 1, aux_sym__immediate_decimal_token2, - STATE(7210), 1, + STATE(7229), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_LF, + ACTIONS(2957), 3, + sym_identifier, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(807), 9, - anon_sym_SEMI, + ACTIONS(2959), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [343244] = 11, + [343954] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7211), 1, + STATE(7230), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7559), 1, + STATE(7568), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7573), 2, + STATE(7567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2097), 3, + ACTIONS(2175), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [343282] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12027), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7166), 1, - aux_sym_parameter_parens_repeat1, - STATE(7212), 1, - sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [343328] = 13, + [343992] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7213), 1, + STATE(7231), 1, sym_comment, - STATE(7698), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(7451), 1, sym__var, - ACTIONS(2130), 2, - sym_identifier, - anon_sym_DASH, - STATE(7696), 2, + STATE(7579), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7578), 2, sym_expr_parenthesized, sym_val_variable, - [343370] = 13, + ACTIONS(2077), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344030] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7214), 1, + STATE(7232), 1, sym_comment, - STATE(7689), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(7451), 1, sym__var, - ACTIONS(2122), 2, - sym_identifier, - anon_sym_DASH, - STATE(7685), 2, + STATE(7619), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7603), 2, sym_expr_parenthesized, sym_val_variable, - [343412] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - anon_sym_DASH, - ACTIONS(12029), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12031), 1, - aux_sym__immediate_decimal_token2, - STATE(7215), 1, - sym_comment, - ACTIONS(2988), 10, + ACTIONS(2081), 3, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [343440] = 11, + [344068] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7216), 1, + STATE(7233), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7548), 1, + STATE(7633), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7558), 2, + STATE(7632), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2093), 3, + ACTIONS(2073), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [343478] = 13, + [344106] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(11931), 1, - anon_sym_DOLLAR, - ACTIONS(11933), 1, + ACTIONS(942), 1, anon_sym_DASH, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(7188), 1, - sym__flag, - STATE(7217), 1, + ACTIONS(12044), 1, + anon_sym_DOT2, + STATE(7430), 1, + sym_path, + STATE(7234), 2, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1633), 2, - sym__blosure, - sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [343520] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, + aux_sym_cell_path_repeat1, + ACTIONS(944), 9, sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12033), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7189), 1, - aux_sym_parameter_parens_repeat1, - STATE(7218), 1, - sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [343566] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(11987), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12035), 1, - anon_sym_RBRACK, - STATE(7164), 1, - sym_param_long_flag, - STATE(7219), 1, - sym_comment, - STATE(7228), 1, - aux_sym_parameter_parens_repeat1, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [343612] = 12, - ACTIONS(105), 1, + [344134] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(1973), 1, + anon_sym_EQ_GT, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(11601), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11829), 1, + anon_sym_LT, + ACTIONS(11831), 1, + anon_sym_EQ2, + STATE(4552), 1, sym__var, - STATE(6366), 1, - sym__immediate_decimal, - STATE(7220), 1, + STATE(7235), 1, sym_comment, - ACTIONS(2130), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + STATE(9578), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6365), 2, + STATE(9577), 2, sym_expr_parenthesized, sym_val_variable, - [343652] = 7, + [344176] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH, - ACTIONS(12037), 1, - anon_sym_DOT2, - STATE(7221), 1, - sym_comment, - STATE(7267), 1, - sym_path, - STATE(7476), 1, - sym_cell_path, - ACTIONS(981), 9, + ACTIONS(11981), 1, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11985), 1, anon_sym_DOLLAR, + ACTIONS(11987), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11989), 1, anon_sym_DASH_DASH, - [343682] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7222), 1, + ACTIONS(11991), 1, + anon_sym_DASH, + ACTIONS(12047), 1, + anon_sym_PIPE, + STATE(7195), 1, + sym_param_long_flag, + STATE(7196), 1, + aux_sym_parameter_parens_repeat1, + STATE(7236), 1, sym_comment, - STATE(7293), 1, - aux_sym_cell_path_repeat1, - STATE(7451), 1, - sym_path, - ACTIONS(975), 2, + STATE(7495), 1, + sym__param_name, + STATE(7497), 1, + sym_param_rest, + STATE(7500), 1, + sym_param_opt, + STATE(7502), 1, + sym_param_short_flag, + STATE(7946), 1, + sym_parameter, + [344222] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1251), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(977), 9, + STATE(7237), 1, + sym_comment, + ACTIONS(1253), 12, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -531661,444 +532073,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [343710] = 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [344246] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(2134), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7223), 1, - sym_comment, - STATE(7681), 1, - sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(2091), 2, - sym_identifier, - anon_sym_DASH, - STATE(7679), 2, - sym_expr_parenthesized, - sym_val_variable, - [343752] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2106), 1, - anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(11789), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7224), 1, + anon_sym_DASH2, + STATE(7238), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7579), 1, + STATE(7565), 1, sym__immediate_decimal, - ACTIONS(2108), 2, + ACTIONS(2136), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(7587), 2, + STATE(7548), 2, sym_expr_parenthesized, sym_val_variable, - [343794] = 13, + [344288] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7225), 1, + STATE(7239), 1, sym_comment, - STATE(7661), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(7451), 1, sym__var, - ACTIONS(2095), 2, - sym_identifier, - anon_sym_DASH, - STATE(7658), 2, + STATE(7805), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7803), 2, sym_expr_parenthesized, sym_val_variable, - [343836] = 11, + ACTIONS(2112), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344326] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7226), 1, + STATE(7240), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7603), 1, + STATE(7811), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7618), 2, + STATE(7810), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2112), 3, + ACTIONS(2116), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - [343874] = 13, + [344364] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7227), 1, + STATE(7241), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7559), 1, + STATE(7823), 1, sym__immediate_decimal, - ACTIONS(2097), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7573), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7822), 2, sym_expr_parenthesized, sym_val_variable, - [343916] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12040), 1, - anon_sym_RBRACK, - STATE(7164), 1, - sym_param_long_flag, - STATE(7166), 1, - aux_sym_parameter_parens_repeat1, - STATE(7228), 1, - sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [343962] = 13, + ACTIONS(2120), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344402] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11843), 1, - anon_sym_LPAREN, - ACTIONS(12042), 1, - anon_sym_LT, - ACTIONS(12044), 1, - anon_sym_EQ2, - STATE(7229), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + STATE(7242), 1, sym_comment, - STATE(9263), 1, + STATE(7451), 1, sym__var, - STATE(10173), 1, + STATE(7829), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(10226), 2, + STATE(7828), 2, sym_expr_parenthesized, sym_val_variable, - [344004] = 13, + ACTIONS(2124), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344440] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, - anon_sym_PLUS2, - STATE(7230), 1, + STATE(7243), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7687), 1, + STATE(7720), 1, sym__immediate_decimal, - ACTIONS(2132), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7680), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7830), 2, sym_expr_parenthesized, sym_val_variable, - [344046] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_DASH, - ACTIONS(12046), 1, - anon_sym_DOT2, - STATE(7231), 1, - sym_comment, - STATE(7294), 1, - aux_sym_cell_path_repeat1, - STATE(7451), 1, - sym_path, - ACTIONS(905), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(2128), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [344076] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3559), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12048), 1, - anon_sym_DOLLAR, - ACTIONS(12050), 1, anon_sym_LBRACE, - STATE(5114), 1, - sym__var, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, - STATE(7232), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8194), 1, - sym__flag, - STATE(1893), 2, - sym__blosure, - sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [344118] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12054), 1, - aux_sym__immediate_decimal_token2, - STATE(7233), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [344146] = 7, + [344478] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_DASH, - ACTIONS(12046), 1, - anon_sym_DOT2, - STATE(7231), 1, - sym_path, - STATE(7234), 1, - sym_comment, - STATE(7488), 1, - sym_cell_path, - ACTIONS(999), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [344176] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(7244), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(6253), 1, + STATE(7574), 1, sym__immediate_decimal, - STATE(7235), 1, - sym_comment, - ACTIONS(2110), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6348), 2, + STATE(7659), 2, sym_expr_parenthesized, sym_val_variable, - [344216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1243), 1, - anon_sym_DASH, - STATE(7236), 1, - sym_comment, - ACTIONS(1245), 12, - sym_identifier, - anon_sym_COLON, + ACTIONS(2132), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - [344240] = 13, + [344516] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12048), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12050), 1, - anon_sym_LBRACE, - STATE(5114), 1, - sym__var, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, - STATE(7237), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + STATE(7245), 1, sym_comment, - STATE(7286), 1, - sym__flag, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1794), 2, - sym__blosure, + STATE(7451), 1, + sym__var, + STATE(7565), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7548), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [344282] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12056), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7238), 1, - sym_comment, - STATE(7279), 1, - aux_sym_parameter_parens_repeat1, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [344328] = 13, + ACTIONS(2136), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344554] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11377), 1, @@ -532111,218 +532307,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(11411), 1, aux_sym_unquoted_token1, - ACTIONS(12058), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR, - STATE(1590), 1, + STATE(1649), 1, sym__var, - STATE(1957), 1, - sym_unquoted, - STATE(2007), 1, + STATE(2042), 1, sym_val_variable, - STATE(7239), 1, + STATE(2043), 1, + sym_unquoted, + STATE(7246), 1, sym_comment, - STATE(10202), 1, + STATE(10245), 1, sym__val_number_decimal, ACTIONS(11401), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - [344370] = 11, + [344596] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(2175), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(7240), 1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7247), 1, sym_comment, - STATE(7529), 1, - sym__var, - STATE(7675), 1, + STATE(7785), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(8167), 1, + sym__var, + ACTIONS(2173), 2, + sym_identifier, + anon_sym_DASH, + STATE(7780), 2, + sym_expr_parenthesized, + sym_val_variable, + [344638] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2077), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(7801), 2, + STATE(7248), 1, + sym_comment, + STATE(7790), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2075), 2, + sym_identifier, + anon_sym_DASH, + STATE(7789), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2124), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [344408] = 4, + [344680] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1222), 1, - anon_sym_DASH, - STATE(7241), 1, - sym_comment, - ACTIONS(1224), 12, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOLLAR, + ACTIONS(2081), 1, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - [344432] = 11, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7249), 1, + sym_comment, + STATE(7792), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2079), 2, + sym_identifier, + anon_sym_DASH, + STATE(7791), 2, + sym_expr_parenthesized, + sym_val_variable, + [344722] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(2073), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7250), 1, + sym_comment, + STATE(7795), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2071), 2, + sym_identifier, + anon_sym_DASH, + STATE(7794), 2, + sym_expr_parenthesized, + sym_val_variable, + [344764] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11797), 1, + anon_sym_LPAREN, + ACTIONS(11833), 1, aux_sym__immediate_decimal_token1, - STATE(7242), 1, + ACTIONS(11843), 1, + anon_sym_LT, + ACTIONS(11845), 1, + anon_sym_EQ2, + STATE(7251), 1, sym_comment, - STATE(7529), 1, + STATE(8103), 1, sym__var, - STATE(7687), 1, + STATE(9041), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7680), 2, + STATE(9040), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2132), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [344470] = 11, + [344806] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(1973), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11833), 1, aux_sym__immediate_decimal_token1, - STATE(7243), 1, + ACTIONS(11897), 1, + anon_sym_LPAREN, + ACTIONS(12051), 1, + anon_sym_LT, + ACTIONS(12053), 1, + anon_sym_EQ2, + STATE(7252), 1, sym_comment, - STATE(7529), 1, + STATE(9770), 1, sym__var, - STATE(7794), 1, + STATE(10274), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7793), 2, + STATE(10273), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2128), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [344508] = 13, + [344848] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(11931), 1, + ACTIONS(1876), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(7244), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11897), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + anon_sym_LT, + ACTIONS(12057), 1, + anon_sym_EQ2, + STATE(7253), 1, sym_comment, - STATE(7250), 1, - sym__flag, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1554), 2, - sym__blosure, + STATE(9770), 1, + sym__var, + STATE(10272), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(10271), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [344550] = 13, + [344890] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(1983), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(12061), 1, + anon_sym_LT, + ACTIONS(12063), 1, + anon_sym_EQ2, + STATE(7254), 1, + sym_comment, + STATE(7781), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7771), 2, + sym_expr_parenthesized, + sym_val_variable, + [344932] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + ACTIONS(12065), 1, + anon_sym_LT, + ACTIONS(12067), 1, + anon_sym_EQ2, + STATE(7255), 1, + sym_comment, + STATE(7784), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, - ACTIONS(11861), 1, anon_sym_PLUS2, - STATE(7245), 1, + STATE(7783), 2, + sym_expr_parenthesized, + sym_val_variable, + [344974] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2009), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + ACTIONS(12069), 1, + anon_sym_LT, + ACTIONS(12071), 1, + anon_sym_EQ2, + STATE(7256), 1, sym_comment, - STATE(7655), 1, + STATE(7788), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(9645), 1, sym__var, - ACTIONS(2106), 2, - sym_identifier, - anon_sym_DASH, - STATE(7653), 2, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7787), 2, sym_expr_parenthesized, sym_val_variable, - [344592] = 13, - ACTIONS(105), 1, + [345016] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3343), 1, + ACTIONS(2017), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(8594), 1, - anon_sym_RBRACK, - ACTIONS(8596), 1, - sym__entry_separator, - ACTIONS(8598), 1, - aux_sym__unquoted_in_list_token6, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + ACTIONS(12073), 1, + anon_sym_LT, + ACTIONS(12075), 1, + anon_sym_EQ2, + STATE(7257), 1, + sym_comment, + STATE(7799), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7796), 2, + sym_expr_parenthesized, + sym_val_variable, + [345058] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, + anon_sym_DOLLAR, ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, - sym__var, - STATE(6384), 1, - sym__immediate_decimal, - STATE(7246), 1, - sym_comment, - ACTIONS(11773), 2, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(6379), 2, + STATE(7258), 1, + sym_comment, + STATE(7610), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2106), 2, + sym_identifier, + anon_sym_DASH, + STATE(7609), 2, sym_expr_parenthesized, sym_val_variable, - [344634] = 4, + [345100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1189), 1, + ACTIONS(1209), 1, anon_sym_DASH, - STATE(7247), 1, + STATE(7259), 1, sym_comment, - ACTIONS(1191), 12, + ACTIONS(1211), 12, anon_sym_EQ, anon_sym_SEMI, anon_sym_COLON, @@ -532335,243 +532691,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT2, - [344658] = 12, - ACTIONS(105), 1, + [345124] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(2112), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, - sym__var, - STATE(6353), 1, - sym__immediate_decimal, - STATE(7248), 1, - sym_comment, - ACTIONS(2106), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(6352), 2, + STATE(7260), 1, + sym_comment, + STATE(7612), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2110), 2, + sym_identifier, + anon_sym_DASH, + STATE(7611), 2, sym_expr_parenthesized, sym_val_variable, - [344698] = 13, + [345166] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2116), 1, anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11775), 1, anon_sym_DASH2, - ACTIONS(11861), 1, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(7249), 1, + STATE(7261), 1, sym_comment, - STATE(7715), 1, + STATE(7614), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(8167), 1, sym__var, - ACTIONS(2110), 2, + ACTIONS(2114), 2, sym_identifier, anon_sym_DASH, - STATE(7647), 2, + STATE(7613), 2, sym_expr_parenthesized, sym_val_variable, - [344740] = 13, + [345208] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, + ACTIONS(2120), 1, anon_sym_DASH_DASH, - ACTIONS(11931), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(7217), 1, - sym__flag, - STATE(7250), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7262), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1546), 2, - sym__blosure, + STATE(7616), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2118), 2, + sym_identifier, + anon_sym_DASH, + STATE(7615), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [344782] = 11, + [345250] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(2124), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(7251), 1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7263), 1, sym_comment, - STATE(7529), 1, - sym__var, - STATE(7700), 1, + STATE(7620), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(8167), 1, + sym__var, + ACTIONS(2122), 2, + sym_identifier, + anon_sym_DASH, + STATE(7617), 2, + sym_expr_parenthesized, + sym_val_variable, + [345292] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2128), 1, + anon_sym_DASH_DASH, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, anon_sym_DASH2, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(7692), 2, + STATE(7264), 1, + sym_comment, + STATE(7626), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2126), 2, + sym_identifier, + anon_sym_DASH, + STATE(7625), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2089), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [344820] = 15, + [345334] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, + ACTIONS(2132), 1, anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12060), 1, - anon_sym_RBRACK, - STATE(7164), 1, - sym_param_long_flag, - STATE(7166), 1, - aux_sym_parameter_parens_repeat1, - STATE(7252), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(11773), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11775), 1, + anon_sym_DASH2, + ACTIONS(11777), 1, + anon_sym_PLUS2, + STATE(7265), 1, sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [344866] = 13, + STATE(7670), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(2130), 2, + sym_identifier, + anon_sym_DASH, + STATE(7628), 2, + sym_expr_parenthesized, + sym_val_variable, + [345376] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2136), 1, anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, + ACTIONS(11775), 1, anon_sym_DASH2, - ACTIONS(11861), 1, + ACTIONS(11777), 1, anon_sym_PLUS2, - STATE(7253), 1, + STATE(7266), 1, sym_comment, - STATE(7646), 1, + STATE(7677), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(8167), 1, sym__var, - ACTIONS(2118), 2, + ACTIONS(2134), 2, sym_identifier, anon_sym_DASH, - STATE(7645), 2, + STATE(7671), 2, sym_expr_parenthesized, sym_val_variable, - [344908] = 7, + [345418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(2998), 1, anon_sym_DASH, - ACTIONS(12062), 1, - anon_sym_DOT2, - STATE(7254), 1, - sym_comment, + ACTIONS(12077), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12079), 1, + aux_sym__immediate_decimal_token2, STATE(7267), 1, - sym_path, - STATE(7488), 1, - sym_cell_path, - ACTIONS(999), 9, - sym_identifier, - anon_sym_COLON, + sym_comment, + ACTIONS(3000), 10, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [344938] = 13, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [345446] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(2175), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, + sym__var, + STATE(6349), 1, + sym__immediate_decimal, + STATE(7268), 1, + sym_comment, + ACTIONS(2173), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6348), 2, + sym_expr_parenthesized, + sym_val_variable, + [345486] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2077), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, + STATE(5147), 1, + sym__var, + STATE(6351), 1, + sym__immediate_decimal, + STATE(7269), 1, + sym_comment, + ACTIONS(2075), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, - ACTIONS(11795), 1, anon_sym_PLUS2, - STATE(7255), 1, + STATE(6350), 2, + sym_expr_parenthesized, + sym_val_variable, + [345526] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2081), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, + sym__var, + STATE(6353), 1, + sym__immediate_decimal, + STATE(7270), 1, sym_comment, - STATE(7529), 1, + ACTIONS(2079), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6352), 2, + sym_expr_parenthesized, + sym_val_variable, + [345566] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2073), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(7675), 1, + STATE(6355), 1, sym__immediate_decimal, - ACTIONS(2124), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - STATE(7801), 2, + STATE(7271), 1, + sym_comment, + ACTIONS(2071), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6354), 2, sym_expr_parenthesized, sym_val_variable, - [344980] = 6, + [345606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(2957), 1, anon_sym_DASH, - ACTIONS(12065), 1, + ACTIONS(12081), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12067), 1, + ACTIONS(12083), 1, aux_sym__immediate_decimal_token2, - STATE(7256), 1, + STATE(7272), 1, sym_comment, - ACTIONS(2998), 10, + ACTIONS(2959), 10, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -532582,1038 +533050,952 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_DOT2, - [345008] = 11, + [345634] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(933), 1, + anon_sym_DASH, + ACTIONS(12085), 1, + anon_sym_DOT2, + STATE(7208), 1, + sym_path, + STATE(7273), 1, + sym_comment, + STATE(7456), 1, + sym_cell_path, + ACTIONS(935), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(11787), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [345664] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, + ACTIONS(3361), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(7257), 1, - sym_comment, - STATE(7529), 1, + STATE(5147), 1, sym__var, - STATE(7789), 1, + STATE(6398), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7274), 1, + sym_comment, + ACTIONS(2106), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7787), 2, + STATE(6397), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2149), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [345046] = 13, - ACTIONS(3), 1, + [345704] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12048), 1, + ACTIONS(2112), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(12050), 1, - anon_sym_LBRACE, - STATE(5114), 1, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, - STATE(7232), 1, - sym__flag, - STATE(7258), 1, + STATE(6400), 1, + sym__immediate_decimal, + STATE(7275), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1892), 2, - sym__blosure, + ACTIONS(2110), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6399), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [345088] = 11, - ACTIONS(3), 1, + [345744] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(2116), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11871), 1, + anon_sym_LPAREN, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(7259), 1, - sym_comment, - STATE(7529), 1, + STATE(5147), 1, sym__var, - STATE(7770), 1, + STATE(6402), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7276), 1, + sym_comment, + ACTIONS(2114), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7622), 2, + STATE(6401), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2120), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [345126] = 11, - ACTIONS(3), 1, + [345784] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2120), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(7260), 1, - sym_comment, - STATE(7603), 1, + STATE(6404), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7277), 1, + sym_comment, + ACTIONS(2118), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7618), 2, + STATE(6403), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2112), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [345164] = 12, - ACTIONS(3), 1, + [345824] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2124), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(7261), 1, - sym_comment, - STATE(7678), 1, + STATE(6407), 1, sym__immediate_decimal, - ACTIONS(1195), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(11795), 2, + STATE(7278), 1, + sym_comment, + ACTIONS(2122), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(6405), 2, sym_expr_parenthesized, sym_val_variable, - [345204] = 12, + [345864] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2128), 1, sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(5147), 1, sym__var, - STATE(6368), 1, + STATE(6409), 1, sym__immediate_decimal, - STATE(7262), 1, + STATE(7279), 1, sym_comment, - ACTIONS(2087), 2, + ACTIONS(2126), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6367), 2, + STATE(6408), 2, sym_expr_parenthesized, sym_val_variable, - [345244] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12069), 1, - anon_sym_PIPE, - STATE(7184), 1, - sym_param_long_flag, - STATE(7263), 1, - sym_comment, - STATE(7287), 1, - aux_sym_parameter_parens_repeat1, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(7511), 1, - sym__param_name, - STATE(8055), 1, - sym_parameter, - [345290] = 13, - ACTIONS(3), 1, + [345904] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(2132), 1, + sym__entry_separator, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11831), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11843), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(12071), 1, - anon_sym_LT, - ACTIONS(12073), 1, - anon_sym_EQ2, - STATE(7264), 1, - sym_comment, - STATE(9263), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + STATE(5147), 1, sym__var, - STATE(10210), 1, + STATE(6413), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + STATE(7280), 1, + sym_comment, + ACTIONS(2130), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(10170), 2, + STATE(6412), 2, sym_expr_parenthesized, sym_val_variable, - [345332] = 12, + [345944] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2136), 1, sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(11871), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(5147), 1, sym__var, - STATE(6355), 1, + STATE(6415), 1, sym__immediate_decimal, - STATE(7265), 1, + STATE(7281), 1, sym_comment, - ACTIONS(2095), 2, + ACTIONS(2134), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6354), 2, + STATE(6414), 2, sym_expr_parenthesized, sym_val_variable, - [345372] = 11, + [345984] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7266), 1, + STATE(7282), 1, sym_comment, - STATE(7781), 1, + STATE(7682), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(1193), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7769), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2177), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [345410] = 7, + [346024] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_DASH, - ACTIONS(12046), 1, + ACTIONS(7262), 1, + anon_sym_DOLLAR, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(7222), 1, - aux_sym_cell_path_repeat1, - STATE(7267), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, + sym__var, + STATE(7283), 1, sym_comment, - STATE(7451), 1, - sym_path, - ACTIONS(905), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(7644), 1, + sym__immediate_decimal, + ACTIONS(1193), 2, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [345440] = 11, + anon_sym_EQ_GT, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7546), 2, + sym_expr_parenthesized, + sym_val_variable, + [346064] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(2173), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7268), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7284), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7781), 1, + STATE(7568), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7769), 2, + ACTIONS(2175), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7567), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2177), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [345478] = 11, + [346106] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2075), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, anon_sym_LPAREN, - STATE(4538), 1, - sym__var, - STATE(7269), 1, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7285), 1, sym_comment, - STATE(7770), 1, + STATE(7451), 1, + sym__var, + STATE(7579), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7622), 2, + ACTIONS(2077), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7578), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2120), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [345516] = 12, - ACTIONS(105), 1, + [346148] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2149), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(2079), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7286), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(6414), 1, + STATE(7619), 1, sym__immediate_decimal, - STATE(7270), 1, - sym_comment, - ACTIONS(2147), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6416), 2, + ACTIONS(2081), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7603), 2, sym_expr_parenthesized, sym_val_variable, - [345556] = 11, + [346190] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2071), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, anon_sym_LPAREN, - STATE(4538), 1, - sym__var, - STATE(7271), 1, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7287), 1, sym_comment, - STATE(7794), 1, + STATE(7451), 1, + sym__var, + STATE(7633), 1, sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7793), 2, + ACTIONS(2073), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7632), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2128), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [345594] = 13, + [346232] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(2106), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11801), 1, - anon_sym_LPAREN, - ACTIONS(11831), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11863), 1, - anon_sym_LT, - ACTIONS(11865), 1, - anon_sym_EQ2, - STATE(7272), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7288), 1, sym_comment, - STATE(8282), 1, + STATE(7451), 1, sym__var, - STATE(8664), 1, + STATE(7802), 1, sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8665), 2, + ACTIONS(2108), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7800), 2, sym_expr_parenthesized, sym_val_variable, - [345636] = 13, + [346274] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2110), 1, anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7273), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7289), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7603), 1, + STATE(7805), 1, sym__immediate_decimal, ACTIONS(2112), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(7618), 2, + STATE(7803), 2, sym_expr_parenthesized, sym_val_variable, - [345678] = 7, + [346316] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, + ACTIONS(2114), 1, anon_sym_DASH, - ACTIONS(12046), 1, - anon_sym_DOT2, - STATE(7231), 1, - sym_path, - STATE(7274), 1, - sym_comment, - STATE(7476), 1, - sym_cell_path, - ACTIONS(981), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [345708] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_EQ_GT, - ACTIONS(7218), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11657), 1, - anon_sym_LPAREN, - ACTIONS(11665), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11883), 1, - anon_sym_LT, - ACTIONS(11885), 1, - anon_sym_EQ2, - STATE(4465), 1, - sym__var, - STATE(7275), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7290), 1, sym_comment, - STATE(9827), 1, + STATE(7451), 1, + sym__var, + STATE(7811), 1, sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9826), 2, + ACTIONS(2116), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7810), 2, sym_expr_parenthesized, sym_val_variable, - [345750] = 13, + [346358] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2147), 1, + ACTIONS(2118), 1, anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7276), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7291), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7789), 1, + STATE(7823), 1, sym__immediate_decimal, - ACTIONS(2149), 2, + ACTIONS(2120), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(7787), 2, + STATE(7822), 2, sym_expr_parenthesized, sym_val_variable, - [345792] = 12, - ACTIONS(105), 1, + [346400] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(2122), 1, + anon_sym_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7292), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(6362), 1, + STATE(7829), 1, sym__immediate_decimal, - STATE(7277), 1, - sym_comment, - ACTIONS(2091), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6361), 2, + ACTIONS(2124), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7828), 2, sym_expr_parenthesized, sym_val_variable, - [345832] = 13, + [346442] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2126), 1, anon_sym_DASH, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11793), 1, - anon_sym_DASH2, - ACTIONS(11795), 1, + ACTIONS(11787), 1, anon_sym_PLUS2, - STATE(7278), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7293), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7548), 1, + STATE(7720), 1, sym__immediate_decimal, - ACTIONS(2093), 2, + ACTIONS(2128), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(7558), 2, + STATE(7830), 2, sym_expr_parenthesized, sym_val_variable, - [345874] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12075), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_param_long_flag, - STATE(7166), 1, - aux_sym_parameter_parens_repeat1, - STATE(7279), 1, - sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [345920] = 14, + [346484] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11956), 1, - sym_identifier, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11961), 1, - anon_sym_DOLLAR, - ACTIONS(11964), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11967), 1, - anon_sym_DASH_DASH, - ACTIONS(11970), 1, + ACTIONS(2130), 1, anon_sym_DASH, - STATE(7184), 1, - sym_param_long_flag, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(7511), 1, - sym__param_name, - STATE(8055), 1, - sym_parameter, - STATE(7280), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - [345964] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11765), 1, - anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + ACTIONS(11787), 1, + anon_sym_PLUS2, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(11795), 1, + anon_sym_DASH2, + STATE(7294), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(6364), 1, + STATE(7574), 1, sym__immediate_decimal, - STATE(7281), 1, - sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6363), 2, + ACTIONS(2132), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + STATE(7659), 2, sym_expr_parenthesized, sym_val_variable, - [346004] = 13, + [346526] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1823), 1, - anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - ACTIONS(12077), 1, - anon_sym_LT, - ACTIONS(12079), 1, - anon_sym_EQ2, - STATE(7282), 1, + STATE(7295), 1, sym_comment, - STATE(7634), 1, - sym__immediate_decimal, - STATE(9717), 1, + STATE(7451), 1, sym__var, - ACTIONS(11795), 2, + STATE(7802), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7648), 2, + STATE(7800), 2, sym_expr_parenthesized, sym_val_variable, - [346046] = 11, + ACTIONS(2108), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [346564] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12088), 1, + anon_sym_LT, + ACTIONS(12090), 1, + anon_sym_EQ2, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, - anon_sym_LPAREN, - STATE(4538), 1, + STATE(6159), 1, sym__var, - STATE(7283), 1, - sym_comment, - STATE(7789), 1, + STATE(6736), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7296), 1, + sym_comment, + ACTIONS(8358), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7787), 2, + STATE(6735), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2149), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [346084] = 15, + [346603] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, + ACTIONS(6546), 1, + anon_sym_not, + ACTIONS(12094), 1, + anon_sym_LPAREN, + ACTIONS(12096), 1, anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, + ACTIONS(12098), 1, anon_sym_DASH, - ACTIONS(12081), 1, - anon_sym_RBRACK, - STATE(7164), 1, - sym_param_long_flag, - STATE(7252), 1, - aux_sym_parameter_parens_repeat1, - STATE(7284), 1, + STATE(5061), 1, + sym__var, + STATE(5926), 1, + sym__expr_unary_minus, + STATE(7297), 1, sym_comment, - STATE(7392), 1, - sym__param_name, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(8055), 1, - sym_parameter, - [346130] = 13, + ACTIONS(3567), 2, + anon_sym_true, + anon_sym_false, + STATE(5846), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [346638] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(6826), 1, + anon_sym_not, + ACTIONS(12100), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(11857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7285), 1, - sym_comment, - STATE(7574), 1, - sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(2126), 2, - sym_identifier, + ACTIONS(12102), 1, + anon_sym_DOLLAR, + ACTIONS(12104), 1, anon_sym_DASH, - STATE(7572), 2, + STATE(4251), 1, + sym__var, + STATE(4599), 1, + sym__expr_unary_minus, + STATE(7298), 1, + sym_comment, + ACTIONS(6830), 2, + anon_sym_true, + anon_sym_false, + STATE(4604), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [346172] = 13, + [346673] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3804), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12048), 1, + ACTIONS(8470), 1, + anon_sym_LPAREN, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(12050), 1, - anon_sym_LBRACE, - STATE(5114), 1, + ACTIONS(8476), 1, + anon_sym_DOT2, + ACTIONS(12106), 1, + anon_sym_LT, + ACTIONS(12108), 1, + anon_sym_EQ2, + ACTIONS(12110), 1, + aux_sym__immediate_decimal_token1, + STATE(6054), 1, sym__var, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, - STATE(7258), 1, - sym__flag, - STATE(7286), 1, + STATE(6509), 1, + sym__immediate_decimal, + STATE(7299), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(1902), 2, - sym__blosure, + ACTIONS(8484), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6508), 2, + sym_expr_parenthesized, sym_val_variable, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [346214] = 15, + [346712] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11981), 1, - sym_identifier, - ACTIONS(11985), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, - anon_sym_DASH_DASH, - ACTIONS(11991), 1, - anon_sym_DASH, - ACTIONS(12083), 1, - anon_sym_PIPE, - STATE(7184), 1, - sym_param_long_flag, - STATE(7280), 1, - aux_sym_parameter_parens_repeat1, - STATE(7287), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(12112), 1, + anon_sym_LT, + ACTIONS(12114), 1, + anon_sym_EQ2, + ACTIONS(12116), 1, + aux_sym__immediate_decimal_token1, + STATE(7300), 1, sym_comment, - STATE(7458), 1, - sym_param_short_flag, - STATE(7505), 1, - sym_param_opt, - STATE(7506), 1, - sym_param_rest, - STATE(7511), 1, - sym__param_name, - STATE(8055), 1, - sym_parameter, - [346260] = 13, + STATE(7983), 1, + sym__var, + STATE(8847), 1, + sym__immediate_decimal, + ACTIONS(11641), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8846), 2, + sym_expr_parenthesized, + sym_val_variable, + [346751] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11629), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(12116), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7288), 1, + ACTIONS(12118), 1, + anon_sym_LT, + ACTIONS(12120), 1, + anon_sym_EQ2, + STATE(7301), 1, sym_comment, - STATE(7565), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(7983), 1, sym__var, - ACTIONS(2171), 2, - sym_identifier, - anon_sym_DASH, - STATE(7564), 2, + STATE(8849), 1, + sym__immediate_decimal, + ACTIONS(11641), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8848), 2, sym_expr_parenthesized, sym_val_variable, - [346302] = 13, + [346790] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11377), 1, + ACTIONS(3165), 1, anon_sym_DASH, - ACTIONS(11379), 1, - anon_sym_DOT, - ACTIONS(11381), 1, - anon_sym_PLUS, - ACTIONS(11383), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(11395), 1, - aux_sym_unquoted_token1, - ACTIONS(11977), 1, + ACTIONS(12122), 1, + anon_sym_DOT2, + ACTIONS(12125), 1, + aux_sym__immediate_decimal_token2, + STATE(7302), 1, + sym_comment, + ACTIONS(3167), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [346817] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6842), 1, + anon_sym_not, + ACTIONS(12127), 1, + anon_sym_LPAREN, + ACTIONS(12129), 1, anon_sym_DOLLAR, - STATE(1506), 1, + ACTIONS(12131), 1, + anon_sym_DASH, + STATE(4779), 1, sym__var, - STATE(1745), 1, - sym_val_variable, - STATE(1749), 1, - sym_unquoted, - STATE(7289), 1, + STATE(5641), 1, + sym__expr_unary_minus, + STATE(7303), 1, sym_comment, - STATE(10219), 1, - sym__val_number_decimal, - ACTIONS(11385), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - [346344] = 12, - ACTIONS(105), 1, + ACTIONS(6846), 2, + anon_sym_true, + anon_sym_false, + STATE(5694), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [346852] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(11765), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(4588), 1, + anon_sym_DOT2, + ACTIONS(12133), 1, + anon_sym_LT, + ACTIONS(12135), 1, + anon_sym_EQ2, + ACTIONS(12137), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, + STATE(2898), 1, sym__var, - STATE(6419), 1, + STATE(3095), 1, sym__immediate_decimal, - STATE(7290), 1, + STATE(7304), 1, sym_comment, - ACTIONS(2171), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(11773), 2, + ACTIONS(4596), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6425), 2, + STATE(3094), 2, sym_expr_parenthesized, sym_val_variable, - [346384] = 13, - ACTIONS(105), 1, + [346891] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, - anon_sym_RBRACK, - ACTIONS(1195), 1, - sym__entry_separator, - ACTIONS(3343), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(10106), 1, - aux_sym_unquoted_token5, ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11771), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12139), 1, + anon_sym_LT, + ACTIONS(12141), 1, + anon_sym_EQ2, + ACTIONS(12143), 1, aux_sym__immediate_decimal_token1, - STATE(5199), 1, - sym__var, - STATE(6417), 1, - sym__immediate_decimal, - STATE(7291), 1, + STATE(7305), 1, sym_comment, - ACTIONS(11773), 2, + STATE(7836), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6401), 2, + STATE(7835), 2, sym_expr_parenthesized, sym_val_variable, - [346426] = 13, + [346930] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2149), 1, - anon_sym_DASH_DASH, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11859), 1, - anon_sym_DASH2, - ACTIONS(11861), 1, - anon_sym_PLUS2, - STATE(7292), 1, + ACTIONS(12143), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12145), 1, + anon_sym_LT, + ACTIONS(12147), 1, + anon_sym_EQ2, + STATE(7306), 1, sym_comment, - STATE(7570), 1, + STATE(7838), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(8167), 1, sym__var, - ACTIONS(2147), 2, - sym_identifier, - anon_sym_DASH, - STATE(7566), 2, + ACTIONS(11777), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7837), 2, sym_expr_parenthesized, sym_val_variable, - [346468] = 6, + [346969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DASH, - ACTIONS(12085), 1, - anon_sym_DOT2, - STATE(7451), 1, - sym_path, - STATE(7293), 2, + ACTIONS(12038), 1, + aux_sym__immediate_decimal_token2, + STATE(7307), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 9, + ACTIONS(2998), 3, sym_identifier, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(3000), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -533622,225 +534004,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [346496] = 7, + [346994] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH, - ACTIONS(12046), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(7293), 1, - aux_sym_cell_path_repeat1, - STATE(7294), 1, - sym_comment, - STATE(7451), 1, - sym_path, - ACTIONS(977), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12149), 1, + anon_sym_LPAREN, + ACTIONS(12151), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [346526] = 11, + ACTIONS(12153), 1, + anon_sym_LT, + ACTIONS(12155), 1, + anon_sym_EQ2, + STATE(7308), 1, + sym_comment, + STATE(7982), 1, + sym__var, + STATE(8562), 1, + sym__immediate_decimal, + ACTIONS(11531), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8554), 2, + sym_expr_parenthesized, + sym_val_variable, + [347033] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(1193), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - STATE(4538), 1, - sym__var, - STATE(7295), 1, + STATE(7309), 1, sym_comment, - STATE(7786), 1, + STATE(7682), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7784), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - ACTIONS(2173), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [346564] = 12, + [347072] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, + ACTIONS(1193), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11519), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12088), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - ACTIONS(12090), 1, - anon_sym_DOLLAR, - ACTIONS(12092), 1, - anon_sym_LT, - ACTIONS(12094), 1, - anon_sym_EQ2, - STATE(7296), 1, + STATE(7310), 1, sym_comment, - STATE(8007), 1, - sym__var, - STATE(8379), 1, + STATE(7644), 1, sym__immediate_decimal, - ACTIONS(11521), 2, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8381), 2, + STATE(7546), 2, sym_expr_parenthesized, sym_val_variable, - [346603] = 6, + [347111] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(6876), 1, + anon_sym_not, + ACTIONS(12157), 1, + anon_sym_LPAREN, + ACTIONS(12159), 1, + anon_sym_DOLLAR, + ACTIONS(12161), 1, anon_sym_DASH, - ACTIONS(12067), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12096), 1, - anon_sym_DOT2, - STATE(7297), 1, + STATE(5395), 1, + sym__var, + STATE(6268), 1, + sym__expr_unary_minus, + STATE(7311), 1, sym_comment, - ACTIONS(2998), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [346630] = 12, + ACTIONS(6880), 2, + anon_sym_true, + anon_sym_false, + STATE(6269), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [347146] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(4140), 1, anon_sym_DOT2, - ACTIONS(12099), 1, + ACTIONS(12163), 1, + anon_sym_LPAREN, + ACTIONS(12165), 1, + anon_sym_DOLLAR, + ACTIONS(12167), 1, anon_sym_LT, - ACTIONS(12101), 1, + ACTIONS(12169), 1, anon_sym_EQ2, - ACTIONS(12103), 1, + ACTIONS(12171), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, + STATE(2708), 1, sym__var, - STATE(3826), 1, + STATE(2979), 1, sym__immediate_decimal, - STATE(7298), 1, + STATE(7312), 1, sym_comment, - ACTIONS(4624), 2, + ACTIONS(4148), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3825), 2, + STATE(2975), 2, sym_expr_parenthesized, sym_val_variable, - [346669] = 12, + [347185] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12105), 1, + ACTIONS(12173), 1, anon_sym_LT, - ACTIONS(12107), 1, + ACTIONS(12175), 1, anon_sym_EQ2, - STATE(2585), 1, + STATE(6159), 1, sym__var, - STATE(3821), 1, + STATE(6734), 1, sym__immediate_decimal, - STATE(7299), 1, + STATE(7313), 1, sym_comment, - ACTIONS(4624), 2, + ACTIONS(8358), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3820), 2, + STATE(6733), 2, sym_expr_parenthesized, sym_val_variable, - [346708] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3126), 1, - anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7300), 1, - sym_comment, - STATE(7431), 1, - aux_sym_decl_def_repeat1, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8937), 1, - sym_long_flag, - STATE(9678), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [346749] = 12, + [347224] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11801), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11789), 1, anon_sym_LPAREN, - ACTIONS(12111), 1, + ACTIONS(12177), 1, anon_sym_LT, - ACTIONS(12113), 1, + ACTIONS(12179), 1, anon_sym_EQ2, - STATE(7301), 1, + STATE(7314), 1, sym_comment, - STATE(8282), 1, + STATE(7451), 1, sym__var, - STATE(8674), 1, + STATE(7575), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8675), 2, + STATE(7545), 2, sym_expr_parenthesized, sym_val_variable, - [346788] = 6, + [347263] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, + ACTIONS(2998), 1, anon_sym_DASH, - ACTIONS(12115), 1, - anon_sym_DOT2, - ACTIONS(12118), 1, + ACTIONS(12079), 1, aux_sym__immediate_decimal_token2, - STATE(7302), 1, + ACTIONS(12181), 1, + anon_sym_DOT2, + STATE(7315), 1, sym_comment, - ACTIONS(3491), 9, + ACTIONS(3000), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -533850,68 +534212,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [346815] = 10, + [347290] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6948), 1, + ACTIONS(6226), 1, anon_sym_not, - ACTIONS(12120), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12122), 1, + ACTIONS(12185), 1, anon_sym_DOLLAR, - ACTIONS(12124), 1, + ACTIONS(12187), 1, anon_sym_DASH, - STATE(368), 1, + STATE(2686), 1, sym__var, - STATE(604), 1, + STATE(3624), 1, sym__expr_unary_minus, - STATE(7303), 1, + STATE(7316), 1, sym_comment, - ACTIONS(6952), 2, + ACTIONS(6230), 2, anon_sym_true, anon_sym_false, - STATE(596), 4, + STATE(3676), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [346850] = 10, + [347325] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6500), 1, - anon_sym_not, - ACTIONS(12126), 1, + ACTIONS(11419), 1, + anon_sym_DOLLAR, + ACTIONS(11447), 1, anon_sym_LPAREN, - ACTIONS(12128), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12189), 1, + anon_sym_LT, + ACTIONS(12191), 1, + anon_sym_EQ2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + STATE(7193), 1, + sym__var, + STATE(7317), 1, + sym_comment, + STATE(7836), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7835), 2, + sym_expr_parenthesized, + sym_val_variable, + [347364] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(12130), 1, - anon_sym_DASH, - STATE(4904), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12195), 1, + anon_sym_LT, + ACTIONS(12197), 1, + anon_sym_EQ2, + STATE(7193), 1, sym__var, - STATE(5539), 1, - sym__expr_unary_minus, - STATE(7304), 1, + STATE(7318), 1, sym_comment, - ACTIONS(6504), 2, - anon_sym_true, - anon_sym_false, - STATE(5517), 4, - sym_expr_unary, + STATE(7838), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7837), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [346885] = 5, + [347403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12134), 1, - anon_sym_QMARK, - ACTIONS(12136), 1, - anon_sym_DASH, - STATE(7305), 1, + ACTIONS(12042), 1, + aux_sym__immediate_decimal_token2, + STATE(7319), 1, sym_comment, - ACTIONS(12132), 10, - anon_sym_EQ, + ACTIONS(2957), 3, sym_identifier, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(2959), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -533920,614 +534311,554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [346910] = 10, + [347428] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6922), 1, + ACTIONS(6956), 1, anon_sym_not, - ACTIONS(12138), 1, + ACTIONS(12199), 1, anon_sym_LPAREN, - ACTIONS(12140), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR, - ACTIONS(12142), 1, + ACTIONS(12203), 1, anon_sym_DASH, - STATE(4856), 1, + STATE(2318), 1, sym__var, - STATE(5678), 1, + STATE(2646), 1, sym__expr_unary_minus, - STATE(7306), 1, + STATE(7320), 1, sym_comment, - ACTIONS(3748), 2, + ACTIONS(6960), 2, anon_sym_true, anon_sym_false, - STATE(5748), 4, + STATE(2539), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [346945] = 12, + [347463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, + ACTIONS(12205), 1, + aux_sym__immediate_decimal_token2, + STATE(7321), 1, + sym_comment, + ACTIONS(3804), 3, + sym_identifier, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, - anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(3806), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [347488] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(12003), 1, anon_sym_DOLLAR, - ACTIONS(12148), 1, + ACTIONS(12207), 1, + anon_sym_LPAREN, + ACTIONS(12209), 1, anon_sym_LT, - ACTIONS(12150), 1, + ACTIONS(12211), 1, anon_sym_EQ2, - STATE(4736), 1, + ACTIONS(12213), 1, + aux_sym__immediate_decimal_token1, + STATE(4970), 1, sym__var, - STATE(7307), 1, + STATE(5909), 1, + sym__immediate_decimal, + STATE(7322), 1, sym_comment, - STATE(8386), 1, + ACTIONS(7749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5908), 2, + sym_expr_parenthesized, + sym_val_variable, + [347527] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12207), 1, + anon_sym_LPAREN, + ACTIONS(12213), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12215), 1, + anon_sym_LT, + ACTIONS(12217), 1, + anon_sym_EQ2, + STATE(4970), 1, + sym__var, + STATE(5912), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + STATE(7323), 1, + sym_comment, + ACTIONS(7749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8371), 2, + STATE(5910), 2, sym_expr_parenthesized, sym_val_variable, - [346984] = 10, + [347566] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7172), 1, + ACTIONS(6986), 1, anon_sym_not, - ACTIONS(12152), 1, + ACTIONS(12219), 1, anon_sym_LPAREN, - ACTIONS(12154), 1, + ACTIONS(12221), 1, anon_sym_DOLLAR, - ACTIONS(12156), 1, + ACTIONS(12223), 1, anon_sym_DASH, - STATE(2580), 1, + STATE(821), 1, sym__var, - STATE(3051), 1, + STATE(951), 1, sym__expr_unary_minus, - STATE(7308), 1, + STATE(7324), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(6990), 2, anon_sym_true, anon_sym_false, - STATE(3006), 4, + STATE(952), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [347019] = 12, + [347601] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(11561), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12158), 1, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12160), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12162), 1, + ACTIONS(12229), 1, anon_sym_LT, - ACTIONS(12164), 1, + ACTIONS(12231), 1, anon_sym_EQ2, - STATE(7309), 1, - sym_comment, - STATE(8203), 1, + ACTIONS(12233), 1, + aux_sym__immediate_decimal_token1, + STATE(5928), 1, sym__var, - STATE(9167), 1, + STATE(6365), 1, sym__immediate_decimal, - ACTIONS(11563), 2, + STATE(7325), 1, + sym_comment, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9166), 2, + STATE(6363), 2, sym_expr_parenthesized, sym_val_variable, - [347058] = 10, + [347640] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_not, - ACTIONS(12166), 1, + ACTIONS(8257), 1, + anon_sym_DOT2, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12168), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12170), 1, - anon_sym_DASH, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(5521), 1, - sym__var, - STATE(7310), 1, - sym_comment, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - STATE(4717), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [347093] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11653), 1, + ACTIONS(12233), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, - anon_sym_DOLLAR, - ACTIONS(12172), 1, - anon_sym_LPAREN, - ACTIONS(12174), 1, + ACTIONS(12235), 1, anon_sym_LT, - ACTIONS(12176), 1, + ACTIONS(12237), 1, anon_sym_EQ2, - STATE(4126), 1, + STATE(5928), 1, + sym__var, + STATE(6368), 1, sym__immediate_decimal, - STATE(7311), 1, + STATE(7326), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4128), 2, + STATE(6366), 2, sym_expr_parenthesized, sym_val_variable, - [347132] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - ACTIONS(12067), 1, - aux_sym__immediate_decimal_token2, - STATE(7312), 1, - sym_comment, - ACTIONS(2998), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [347157] = 10, + [347679] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6812), 1, + ACTIONS(7002), 1, anon_sym_not, - ACTIONS(12178), 1, + ACTIONS(12104), 1, + anon_sym_DASH, + ACTIONS(12239), 1, anon_sym_LPAREN, - ACTIONS(12180), 1, + ACTIONS(12241), 1, anon_sym_DOLLAR, - ACTIONS(12182), 1, - anon_sym_DASH, - STATE(5428), 1, - sym__var, - STATE(6462), 1, + STATE(4599), 1, sym__expr_unary_minus, - STATE(7313), 1, + STATE(5728), 1, + sym__var, + STATE(7327), 1, sym_comment, - ACTIONS(6816), 2, + ACTIONS(6830), 2, anon_sym_true, anon_sym_false, - STATE(6264), 4, + STATE(4604), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [347192] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_QMARK2, - STATE(7314), 1, - sym_comment, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1056), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [347217] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_QMARK2, - STATE(7315), 1, - sym_comment, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1056), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [347242] = 12, + [347714] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(4685), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(12186), 1, + ACTIONS(12243), 1, anon_sym_LT, - ACTIONS(12188), 1, + ACTIONS(12245), 1, anon_sym_EQ2, - ACTIONS(12190), 1, + ACTIONS(12247), 1, aux_sym__immediate_decimal_token1, - STATE(2742), 1, + STATE(6226), 1, sym__var, - STATE(3481), 1, + STATE(6754), 1, sym__immediate_decimal, - STATE(7316), 1, + STATE(7328), 1, sym_comment, - ACTIONS(4697), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3480), 2, + STATE(6745), 2, sym_expr_parenthesized, sym_val_variable, - [347281] = 12, + [347753] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(12172), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(12192), 1, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(12247), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12249), 1, anon_sym_LT, - ACTIONS(12194), 1, + ACTIONS(12251), 1, anon_sym_EQ2, - STATE(4136), 1, + STATE(6226), 1, + sym__var, + STATE(6761), 1, sym__immediate_decimal, - STATE(7317), 1, + STATE(7329), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4138), 2, + STATE(6759), 2, sym_expr_parenthesized, sym_val_variable, - [347320] = 10, + [347792] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(7016), 1, anon_sym_not, - ACTIONS(12196), 1, + ACTIONS(12253), 1, anon_sym_LPAREN, - ACTIONS(12198), 1, + ACTIONS(12255), 1, anon_sym_DOLLAR, - ACTIONS(12200), 1, + ACTIONS(12257), 1, anon_sym_DASH, - STATE(483), 1, + STATE(2045), 1, sym__var, - STATE(740), 1, + STATE(2448), 1, sym__expr_unary_minus, - STATE(7318), 1, + STATE(7330), 1, sym_comment, - ACTIONS(6598), 2, + ACTIONS(7020), 2, anon_sym_true, anon_sym_false, - STATE(732), 4, + STATE(2451), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [347355] = 10, + [347827] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6980), 1, - anon_sym_not, - ACTIONS(12202), 1, - anon_sym_LPAREN, - ACTIONS(12204), 1, + ACTIONS(7635), 1, + anon_sym_DOT2, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(12206), 1, - anon_sym_DASH, - STATE(1194), 1, + ACTIONS(12259), 1, + anon_sym_LPAREN, + ACTIONS(12261), 1, + anon_sym_LT, + ACTIONS(12263), 1, + anon_sym_EQ2, + ACTIONS(12265), 1, + aux_sym__immediate_decimal_token1, + STATE(4740), 1, sym__var, - STATE(1375), 1, - sym__expr_unary_minus, - STATE(7319), 1, + STATE(5502), 1, + sym__immediate_decimal, + STATE(7331), 1, sym_comment, - ACTIONS(6984), 2, - anon_sym_true, - anon_sym_false, - STATE(1378), 4, - sym_expr_unary, + ACTIONS(7643), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5500), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [347390] = 6, + [347866] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, - anon_sym_DASH, - ACTIONS(12118), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12208), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - STATE(7320), 1, - sym_comment, - ACTIONS(3491), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(11941), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [347417] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(12210), 1, + ACTIONS(12259), 1, anon_sym_LPAREN, - ACTIONS(12212), 1, - anon_sym_DOLLAR, - ACTIONS(12214), 1, + ACTIONS(12265), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12267), 1, anon_sym_LT, - ACTIONS(12216), 1, + ACTIONS(12269), 1, anon_sym_EQ2, - ACTIONS(12218), 1, - aux_sym__immediate_decimal_token1, - STATE(5896), 1, + STATE(4740), 1, sym__var, - STATE(6389), 1, + STATE(5504), 1, sym__immediate_decimal, - STATE(7321), 1, + STATE(7332), 1, sym_comment, - ACTIONS(8178), 2, + ACTIONS(7643), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6390), 2, + STATE(5503), 2, sym_expr_parenthesized, sym_val_variable, - [347456] = 6, - ACTIONS(3), 1, + [347905] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12019), 1, + ACTIONS(817), 1, + anon_sym_LF, + ACTIONS(11997), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12220), 1, + ACTIONS(12271), 1, anon_sym_DOT2, - STATE(7322), 1, + STATE(7333), 1, sym_comment, - ACTIONS(2996), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(815), 9, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [347483] = 13, + anon_sym_DASH, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [347932] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3126), 1, - anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7323), 1, + ACTIONS(6166), 1, + anon_sym_not, + ACTIONS(12274), 1, + anon_sym_LPAREN, + ACTIONS(12276), 1, + anon_sym_DOLLAR, + ACTIONS(12278), 1, + anon_sym_DASH, + STATE(2873), 1, + sym__var, + STATE(3844), 1, + sym__expr_unary_minus, + STATE(7334), 1, sym_comment, - STATE(7431), 1, - aux_sym_decl_def_repeat1, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8937), 1, - sym_long_flag, - STATE(9678), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [347524] = 12, + ACTIONS(6170), 2, + anon_sym_true, + anon_sym_false, + STATE(3845), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [347967] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11419), 1, - anon_sym_DOLLAR, - ACTIONS(11433), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(8764), 1, anon_sym_DOT2, - ACTIONS(12222), 1, + ACTIONS(12280), 1, + anon_sym_DOLLAR, + ACTIONS(12282), 1, anon_sym_LT, - ACTIONS(12224), 1, + ACTIONS(12284), 1, anon_sym_EQ2, - ACTIONS(12226), 1, + ACTIONS(12286), 1, aux_sym__immediate_decimal_token1, - STATE(7254), 1, + STATE(6346), 1, sym__var, - STATE(7324), 1, - sym_comment, - STATE(7479), 1, + STATE(6899), 1, sym__immediate_decimal, - ACTIONS(11443), 2, + STATE(7335), 1, + sym_comment, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7474), 2, + STATE(6898), 2, sym_expr_parenthesized, sym_val_variable, - [347563] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3016), 1, - anon_sym_DASH_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12228), 1, - sym_identifier, - STATE(7325), 1, - sym_comment, - STATE(8186), 1, - sym__variable_name, - STATE(8410), 1, - sym__var, - STATE(8977), 1, - sym_val_variable, - STATE(9124), 1, - sym__flag, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [347604] = 12, + [348006] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(12210), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(12212), 1, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(12280), 1, anon_sym_DOLLAR, - ACTIONS(12218), 1, + ACTIONS(12286), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12230), 1, + ACTIONS(12288), 1, anon_sym_LT, - ACTIONS(12232), 1, + ACTIONS(12290), 1, anon_sym_EQ2, - STATE(5896), 1, + STATE(6346), 1, sym__var, - STATE(6391), 1, + STATE(6901), 1, sym__immediate_decimal, - STATE(7326), 1, + STATE(7336), 1, sym_comment, - ACTIONS(8178), 2, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6392), 2, + STATE(6900), 2, sym_expr_parenthesized, sym_val_variable, - [347643] = 4, + [348045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12236), 1, + ACTIONS(12294), 1, + anon_sym_QMARK, + ACTIONS(12296), 1, anon_sym_DASH, - STATE(7327), 1, + STATE(7337), 1, sym_comment, - ACTIONS(12234), 11, + ACTIONS(12292), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [347666] = 10, + [348070] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6754), 1, + ACTIONS(7056), 1, anon_sym_not, - ACTIONS(12238), 1, + ACTIONS(12298), 1, anon_sym_LPAREN, - ACTIONS(12240), 1, + ACTIONS(12300), 1, anon_sym_DOLLAR, - ACTIONS(12242), 1, + ACTIONS(12302), 1, anon_sym_DASH, - STATE(830), 1, + STATE(349), 1, sym__var, - STATE(950), 1, + STATE(583), 1, sym__expr_unary_minus, - STATE(7328), 1, + STATE(7338), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(7060), 2, anon_sym_true, anon_sym_false, - STATE(930), 4, + STATE(584), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [347701] = 12, + [348105] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(12048), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(12244), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(12246), 1, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(12304), 1, anon_sym_LT, - ACTIONS(12248), 1, + ACTIONS(12306), 1, anon_sym_EQ2, - ACTIONS(12250), 1, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(5114), 1, + STATE(2634), 1, sym__var, - STATE(5922), 1, + STATE(3770), 1, sym__immediate_decimal, - STATE(7329), 1, + STATE(7339), 1, + sym_comment, + ACTIONS(4700), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3769), 2, + sym_expr_parenthesized, + sym_val_variable, + [348144] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, + anon_sym_DOLLAR, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(12308), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12310), 1, + anon_sym_LT, + ACTIONS(12312), 1, + anon_sym_EQ2, + STATE(2634), 1, + sym__var, + STATE(3772), 1, + sym__immediate_decimal, + STATE(7340), 1, sym_comment, - ACTIONS(7808), 2, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5919), 2, + STATE(3771), 2, sym_expr_parenthesized, sym_val_variable, - [347740] = 6, + [348183] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12252), 1, + ACTIONS(12314), 1, anon_sym_DOT2, - ACTIONS(12254), 1, + ACTIONS(12317), 1, aux_sym__immediate_decimal_token2, - STATE(7330), 1, + STATE(7341), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3165), 2, sym_identifier, anon_sym_DASH, - ACTIONS(3491), 8, + ACTIONS(3167), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -534536,152 +534867,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [347767] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7331), 1, - sym_comment, - STATE(7706), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7691), 2, - sym_expr_parenthesized, - sym_val_variable, - [347806] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7332), 1, - sym_comment, - STATE(7678), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7673), 2, - sym_expr_parenthesized, - sym_val_variable, - [347845] = 10, + [348210] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7056), 1, + ACTIONS(7088), 1, anon_sym_not, - ACTIONS(12256), 1, + ACTIONS(12319), 1, anon_sym_LPAREN, - ACTIONS(12258), 1, + ACTIONS(12321), 1, anon_sym_DOLLAR, - ACTIONS(12260), 1, + ACTIONS(12323), 1, anon_sym_DASH, - STATE(309), 1, + STATE(313), 1, sym__var, - STATE(488), 1, + STATE(486), 1, sym__expr_unary_minus, - STATE(7333), 1, + STATE(7342), 1, sym_comment, - ACTIONS(7060), 2, + ACTIONS(7092), 2, anon_sym_true, anon_sym_false, - STATE(490), 4, + STATE(488), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [347880] = 12, + [348245] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, + ACTIONS(2998), 1, + anon_sym_DASH, + ACTIONS(12079), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12325), 1, + anon_sym_DOT2, + STATE(7343), 1, + sym_comment, + ACTIONS(3000), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [348272] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2045), 1, anon_sym_DOT2, - ACTIONS(12262), 1, + ACTIONS(12328), 1, + anon_sym_LPAREN, + ACTIONS(12330), 1, + anon_sym_DOLLAR, + ACTIONS(12332), 1, anon_sym_LT, - ACTIONS(12264), 1, + ACTIONS(12334), 1, anon_sym_EQ2, - ACTIONS(12266), 1, + ACTIONS(12336), 1, aux_sym__immediate_decimal_token1, - STATE(7334), 1, - sym_comment, - STATE(7583), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(1371), 1, sym__var, - ACTIONS(11861), 2, + STATE(1899), 1, + sym__immediate_decimal, + STATE(7344), 1, + sym_comment, + ACTIONS(2053), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7649), 2, + STATE(1898), 2, sym_expr_parenthesized, sym_val_variable, - [347919] = 12, + [348311] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, + ACTIONS(2045), 1, anon_sym_DOT2, - ACTIONS(12048), 1, - anon_sym_DOLLAR, - ACTIONS(12244), 1, + ACTIONS(12328), 1, anon_sym_LPAREN, - ACTIONS(12250), 1, + ACTIONS(12330), 1, + anon_sym_DOLLAR, + ACTIONS(12336), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12268), 1, + ACTIONS(12338), 1, anon_sym_LT, - ACTIONS(12270), 1, + ACTIONS(12340), 1, anon_sym_EQ2, - STATE(5114), 1, + STATE(1371), 1, sym__var, - STATE(5918), 1, + STATE(1901), 1, sym__immediate_decimal, - STATE(7335), 1, + STATE(7345), 1, sym_comment, - ACTIONS(7808), 2, + ACTIONS(2053), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5916), 2, + STATE(1900), 2, sym_expr_parenthesized, sym_val_variable, - [347958] = 5, + [348350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11995), 1, - aux_sym__immediate_decimal_token2, - STATE(7336), 1, + ACTIONS(12344), 1, + anon_sym_AT, + ACTIONS(12346), 1, + anon_sym_DASH, + STATE(7346), 1, sym_comment, - ACTIONS(2986), 3, + STATE(7653), 1, + sym_param_cmd, + ACTIONS(12342), 9, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2988), 8, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -534689,947 +534988,923 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [347983] = 12, + [348377] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(7118), 1, + anon_sym_not, + ACTIONS(12348), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(12350), 1, + anon_sym_DOLLAR, + ACTIONS(12352), 1, + anon_sym_DASH, + STATE(791), 1, + sym__var, + STATE(892), 1, + sym__expr_unary_minus, + STATE(7347), 1, + sym_comment, + ACTIONS(7122), 2, + anon_sym_true, + anon_sym_false, + STATE(900), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [348412] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1989), 1, anon_sym_DOT2, - ACTIONS(12272), 1, + ACTIONS(12354), 1, + anon_sym_LPAREN, + ACTIONS(12356), 1, + anon_sym_DOLLAR, + ACTIONS(12358), 1, anon_sym_LT, - ACTIONS(12274), 1, + ACTIONS(12360), 1, anon_sym_EQ2, - ACTIONS(12276), 1, + ACTIONS(12362), 1, aux_sym__immediate_decimal_token1, - STATE(7337), 1, - sym_comment, - STATE(8046), 1, + STATE(1310), 1, sym__var, - STATE(8700), 1, + STATE(1721), 1, sym__immediate_decimal, - ACTIONS(11613), 2, + STATE(7348), 1, + sym_comment, + ACTIONS(1997), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8699), 2, + STATE(1717), 2, sym_expr_parenthesized, sym_val_variable, - [348022] = 12, + [348451] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(1989), 1, anon_sym_DOT2, - ACTIONS(11397), 1, + ACTIONS(12354), 1, anon_sym_LPAREN, - ACTIONS(12058), 1, + ACTIONS(12356), 1, anon_sym_DOLLAR, - ACTIONS(12278), 1, + ACTIONS(12362), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12364), 1, anon_sym_LT, - ACTIONS(12280), 1, + ACTIONS(12366), 1, anon_sym_EQ2, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, + STATE(1310), 1, sym__var, - STATE(2253), 1, + STATE(1553), 1, sym__immediate_decimal, - STATE(7338), 1, + STATE(7349), 1, sym_comment, - ACTIONS(2257), 2, + ACTIONS(1997), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2254), 2, + STATE(1551), 2, sym_expr_parenthesized, sym_val_variable, - [348061] = 12, + [348490] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11940), 1, + ACTIONS(11931), 1, aux_sym_unquoted_token5, - STATE(7339), 1, + STATE(7350), 1, sym_comment, - STATE(7560), 1, + STATE(7709), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(8167), 1, sym__var, - ACTIONS(11861), 2, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7555), 2, + STATE(7708), 2, sym_expr_parenthesized, sym_val_variable, - [348100] = 12, + [348529] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN, - ACTIONS(8331), 1, + ACTIONS(1191), 1, + sym_identifier, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(8335), 1, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(12284), 1, - anon_sym_LT, - ACTIONS(12286), 1, - anon_sym_EQ2, - ACTIONS(12288), 1, + ACTIONS(11773), 1, aux_sym__immediate_decimal_token1, - STATE(6153), 1, - sym__var, - STATE(6632), 1, - sym__immediate_decimal, - STATE(7340), 1, + ACTIONS(11931), 1, + aux_sym_unquoted_token5, + STATE(7351), 1, sym_comment, - ACTIONS(8343), 2, + STATE(7717), 1, + sym__immediate_decimal, + STATE(8167), 1, + sym__var, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6561), 2, + STATE(7715), 2, sym_expr_parenthesized, sym_val_variable, - [348139] = 12, + [348568] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11669), 1, + ACTIONS(5484), 1, + anon_sym_not, + ACTIONS(12368), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(12290), 1, - anon_sym_LT, - ACTIONS(12292), 1, - anon_sym_EQ2, - STATE(7341), 1, - sym_comment, - STATE(8119), 1, + ACTIONS(12370), 1, + anon_sym_DOLLAR, + ACTIONS(12372), 1, + anon_sym_DASH, + STATE(2683), 1, sym__var, - STATE(9128), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9127), 2, + STATE(3145), 1, + sym__expr_unary_minus, + STATE(7352), 1, + sym_comment, + ACTIONS(5488), 2, + anon_sym_true, + anon_sym_false, + STATE(3146), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [348178] = 12, + [348603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(3804), 1, + anon_sym_DASH, + ACTIONS(12374), 1, + aux_sym__immediate_decimal_token2, + STATE(7353), 1, + sym_comment, + ACTIONS(3806), 10, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, + [348628] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(12294), 1, + ACTIONS(12376), 1, + anon_sym_LPAREN, + ACTIONS(12378), 1, anon_sym_LT, - ACTIONS(12296), 1, + ACTIONS(12380), 1, anon_sym_EQ2, - ACTIONS(12298), 1, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(1506), 1, + STATE(2661), 1, sym__var, - STATE(1986), 1, + STATE(3210), 1, sym__immediate_decimal, - STATE(7342), 1, + STATE(7354), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1983), 2, + STATE(3209), 2, sym_expr_parenthesized, sym_val_variable, - [348217] = 10, + [348667] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - anon_sym_not, - ACTIONS(12300), 1, - anon_sym_LPAREN, - ACTIONS(12302), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(12304), 1, - anon_sym_DASH, - STATE(373), 1, + ACTIONS(12376), 1, + anon_sym_LPAREN, + ACTIONS(12382), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12384), 1, + anon_sym_LT, + ACTIONS(12386), 1, + anon_sym_EQ2, + STATE(2661), 1, sym__var, - STATE(646), 1, - sym__expr_unary_minus, - STATE(7343), 1, + STATE(3212), 1, + sym__immediate_decimal, + STATE(7355), 1, sym_comment, - ACTIONS(6898), 2, - anon_sym_true, - anon_sym_false, - STATE(652), 4, - sym_expr_unary, + ACTIONS(4058), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3211), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [348252] = 10, + [348706] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, - anon_sym_not, - ACTIONS(12306), 1, - anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(3763), 1, + anon_sym_DASH_DASH, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12310), 1, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(11943), 1, anon_sym_DASH, - STATE(5199), 1, - sym__var, - STATE(6193), 1, - sym__expr_unary_minus, - STATE(7344), 1, + ACTIONS(12388), 1, + sym_identifier, + STATE(7356), 1, sym_comment, - ACTIONS(3357), 2, - anon_sym_true, - anon_sym_false, - STATE(6076), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(8302), 1, + sym__variable_name, + STATE(8540), 1, + sym__var, + STATE(8947), 1, sym_val_variable, - [348287] = 5, + STATE(9148), 1, + sym__flag, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [348747] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(12038), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12390), 1, + anon_sym_DOT2, + STATE(7357), 1, + sym_comment, + ACTIONS(2998), 2, + sym_identifier, anon_sym_DASH, - ACTIONS(12031), 1, + ACTIONS(3000), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [348774] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12317), 1, aux_sym__immediate_decimal_token2, - STATE(7345), 1, + ACTIONS(12393), 1, + anon_sym_DOT2, + STATE(7358), 1, sym_comment, - ACTIONS(2988), 10, + ACTIONS(3165), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3167), 8, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [348312] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8228), 1, - anon_sym_DOT2, - ACTIONS(11717), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12308), 1, - anon_sym_DOLLAR, - ACTIONS(12312), 1, - anon_sym_LPAREN, - ACTIONS(12314), 1, - anon_sym_LT, - ACTIONS(12316), 1, - anon_sym_EQ2, - STATE(5243), 1, - sym__var, - STATE(7346), 1, - sym_comment, - STATE(9804), 1, - sym__immediate_decimal, - ACTIONS(11719), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(9801), 2, - sym_expr_parenthesized, - sym_val_variable, - [348351] = 10, + [348801] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6706), 1, + ACTIONS(7148), 1, anon_sym_not, - ACTIONS(12144), 1, + ACTIONS(12395), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(12397), 1, anon_sym_DOLLAR, - ACTIONS(12318), 1, + ACTIONS(12399), 1, anon_sym_DASH, - STATE(4736), 1, + STATE(2561), 1, sym__var, - STATE(5746), 1, + STATE(2971), 1, sym__expr_unary_minus, - STATE(7347), 1, + STATE(7359), 1, sym_comment, - ACTIONS(3417), 2, + ACTIONS(7152), 2, anon_sym_true, anon_sym_false, - STATE(5754), 4, + STATE(2961), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [348386] = 12, + [348836] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(12320), 1, + ACTIONS(5977), 1, + anon_sym_not, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(12322), 1, - anon_sym_LT, - ACTIONS(12324), 1, - anon_sym_EQ2, - ACTIONS(12326), 1, - aux_sym__immediate_decimal_token1, - STATE(6268), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + anon_sym_DASH, + STATE(4471), 1, sym__var, - STATE(6893), 1, - sym__immediate_decimal, - STATE(7348), 1, + STATE(5579), 1, + sym__expr_unary_minus, + STATE(7360), 1, sym_comment, - ACTIONS(8639), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6894), 2, + ACTIONS(3233), 2, + anon_sym_true, + anon_sym_false, + STATE(5676), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [348425] = 12, + [348871] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(12320), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12326), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12328), 1, - anon_sym_LT, - ACTIONS(12330), 1, - anon_sym_EQ2, - STATE(6268), 1, - sym__var, - STATE(6901), 1, - sym__immediate_decimal, - STATE(7349), 1, - sym_comment, - ACTIONS(8639), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6902), 2, - sym_expr_parenthesized, - sym_val_variable, - [348464] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12332), 1, + ACTIONS(11797), 1, anon_sym_LPAREN, - ACTIONS(12334), 1, - anon_sym_DOLLAR, - ACTIONS(12336), 1, + ACTIONS(12403), 1, anon_sym_LT, - ACTIONS(12338), 1, + ACTIONS(12405), 1, anon_sym_EQ2, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(7361), 1, + sym_comment, + STATE(8103), 1, sym__var, - STATE(3556), 1, + STATE(8945), 1, sym__immediate_decimal, - STATE(7350), 1, - sym_comment, - ACTIONS(4456), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3555), 2, + STATE(8915), 2, sym_expr_parenthesized, sym_val_variable, - [348503] = 12, + [348910] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(12266), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12342), 1, - anon_sym_LT, - ACTIONS(12344), 1, - anon_sym_EQ2, - STATE(7351), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, + anon_sym_DASH_DASH, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7362), 1, sym_comment, - STATE(7585), 1, - sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(11861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7584), 2, - sym_expr_parenthesized, - sym_val_variable, - [348542] = 12, + STATE(7536), 1, + aux_sym_decl_def_repeat1, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, + sym_long_flag, + STATE(9524), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [348951] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(11657), 1, - anon_sym_LPAREN, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(12346), 1, + ACTIONS(11567), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12409), 1, + anon_sym_LPAREN, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12413), 1, anon_sym_LT, - ACTIONS(12348), 1, + ACTIONS(12415), 1, anon_sym_EQ2, - STATE(4465), 1, - sym__var, - STATE(7352), 1, + STATE(7363), 1, sym_comment, - STATE(9272), 1, + STATE(8133), 1, + sym__var, + STATE(8790), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(9278), 2, + STATE(8752), 2, sym_expr_parenthesized, sym_val_variable, - [348581] = 12, + [348990] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(12350), 1, + ACTIONS(12417), 1, anon_sym_LPAREN, - ACTIONS(12352), 1, + ACTIONS(12419), 1, anon_sym_DOLLAR, - ACTIONS(12354), 1, + ACTIONS(12421), 1, anon_sym_LT, - ACTIONS(12356), 1, + ACTIONS(12423), 1, anon_sym_EQ2, - ACTIONS(12358), 1, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - STATE(3970), 1, + STATE(3990), 1, sym__var, - STATE(4369), 1, + STATE(4261), 1, sym__immediate_decimal, - STATE(7353), 1, + STATE(7364), 1, sym_comment, - ACTIONS(7500), 2, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4364), 2, + STATE(4260), 2, sym_expr_parenthesized, sym_val_variable, - [348620] = 12, + [349029] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(7482), 1, + anon_sym_DOT2, + ACTIONS(12417), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(12419), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12360), 1, + ACTIONS(12427), 1, anon_sym_LT, - ACTIONS(12362), 1, + ACTIONS(12429), 1, anon_sym_EQ2, - STATE(7354), 1, - sym_comment, - STATE(7529), 1, + STATE(3990), 1, sym__var, - STATE(7841), 1, - sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7820), 2, - sym_expr_parenthesized, - sym_val_variable, - [348659] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, - anon_sym_DOLLAR, - ACTIONS(12364), 1, - anon_sym_LPAREN, - ACTIONS(12366), 1, - anon_sym_LT, - ACTIONS(12368), 1, - anon_sym_EQ2, - STATE(4369), 1, + STATE(4264), 1, sym__immediate_decimal, - STATE(7355), 1, + STATE(7365), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4364), 2, + STATE(4262), 2, sym_expr_parenthesized, sym_val_variable, - [348698] = 12, + [349068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(2957), 1, + anon_sym_DASH, + ACTIONS(12083), 1, + aux_sym__immediate_decimal_token2, + STATE(7366), 1, + sym_comment, + ACTIONS(2959), 10, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(11787), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, - anon_sym_LPAREN, - ACTIONS(12370), 1, - anon_sym_LT, - ACTIONS(12372), 1, - anon_sym_EQ2, - STATE(4538), 1, - sym__var, - STATE(7356), 1, - sym_comment, - STATE(7804), 1, - sym__immediate_decimal, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7818), 2, - sym_expr_parenthesized, - sym_val_variable, - [348737] = 12, + [349093] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12374), 1, + ACTIONS(12433), 1, + anon_sym_DOLLAR, + ACTIONS(12435), 1, anon_sym_LT, - ACTIONS(12376), 1, + ACTIONS(12437), 1, anon_sym_EQ2, - STATE(4538), 1, + STATE(5147), 1, sym__var, - STATE(7357), 1, - sym_comment, - STATE(7841), 1, + STATE(6365), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7367), 1, + sym_comment, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7820), 2, + STATE(6363), 2, sym_expr_parenthesized, sym_val_variable, - [348776] = 10, + [349132] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_not, - ACTIONS(12378), 1, - anon_sym_LPAREN, - ACTIONS(12380), 1, - anon_sym_DOLLAR, - ACTIONS(12382), 1, - anon_sym_DASH, - STATE(2680), 1, - sym__var, - STATE(3615), 1, - sym__expr_unary_minus, - STATE(7358), 1, + ACTIONS(12038), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12439), 1, + anon_sym_DOT2, + STATE(7368), 1, sym_comment, - ACTIONS(5418), 2, - anon_sym_true, - anon_sym_false, - STATE(3577), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [348811] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6858), 1, - anon_sym_not, - ACTIONS(12384), 1, - anon_sym_LPAREN, - ACTIONS(12386), 1, - anon_sym_DOLLAR, - ACTIONS(12388), 1, + ACTIONS(2998), 2, + sym_identifier, anon_sym_DASH, - STATE(2302), 1, - sym__var, - STATE(2574), 1, - sym__expr_unary_minus, - STATE(7359), 1, - sym_comment, - ACTIONS(6862), 2, - anon_sym_true, - anon_sym_false, - STATE(2607), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [348846] = 13, + ACTIONS(3000), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [349159] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3016), 1, + ACTIONS(3763), 1, anon_sym_DASH_DASH, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(6098), 1, + ACTIONS(5961), 1, anon_sym_COLON, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(12228), 1, + ACTIONS(12388), 1, sym_identifier, - STATE(7360), 1, + STATE(7369), 1, sym_comment, - STATE(8186), 1, + STATE(8302), 1, sym__variable_name, - STATE(8410), 1, + STATE(8540), 1, sym__var, - STATE(8977), 1, + STATE(8947), 1, sym_val_variable, - STATE(9124), 1, + STATE(9148), 1, sym__flag, - STATE(9841), 1, + STATE(9540), 1, sym_long_flag_equals_value, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [348887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - ACTIONS(12067), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12390), 1, - anon_sym_DOT2, - STATE(7361), 1, - sym_comment, - ACTIONS(2998), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [348914] = 9, + [349200] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11946), 1, + ACTIONS(11952), 1, anon_sym_EQ, - ACTIONS(11948), 1, + ACTIONS(11954), 1, anon_sym_COLON, - ACTIONS(12394), 1, + ACTIONS(12443), 1, anon_sym_COMMA, - ACTIONS(12396), 1, + ACTIONS(12445), 1, anon_sym_DASH, - STATE(7362), 1, + STATE(7370), 1, sym_comment, - STATE(7447), 1, + STATE(7467), 1, sym_param_value, - STATE(7737), 1, + STATE(7821), 1, sym_param_type, - ACTIONS(12392), 6, + ACTIONS(12441), 6, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [348947] = 10, + [349233] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6740), 1, - anon_sym_not, - ACTIONS(12398), 1, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12400), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - ACTIONS(12402), 1, - anon_sym_DASH, - STATE(4690), 1, + ACTIONS(12447), 1, + anon_sym_LT, + ACTIONS(12449), 1, + anon_sym_EQ2, + STATE(5147), 1, sym__var, - STATE(5122), 1, - sym__expr_unary_minus, - STATE(7363), 1, + STATE(6368), 1, + sym__immediate_decimal, + STATE(7371), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_true, - anon_sym_false, - STATE(5156), 4, - sym_expr_unary, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6366), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [348982] = 5, + [349272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(12453), 1, anon_sym_DASH, - ACTIONS(12404), 1, - aux_sym__immediate_decimal_token2, - STATE(7364), 1, + STATE(7372), 1, sym_comment, - ACTIONS(3836), 10, + ACTIONS(12451), 11, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [349007] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_DOT2, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12406), 1, - anon_sym_LPAREN, - ACTIONS(12408), 1, - anon_sym_LT, - ACTIONS(12410), 1, - anon_sym_EQ2, - ACTIONS(12412), 1, - aux_sym__immediate_decimal_token1, - STATE(1553), 1, - sym__var, - STATE(2015), 1, - sym__immediate_decimal, - STATE(7365), 1, - sym_comment, - ACTIONS(2282), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2016), 2, - sym_expr_parenthesized, - sym_val_variable, - [349046] = 10, + [349295] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5652), 1, + ACTIONS(6682), 1, anon_sym_not, - ACTIONS(12414), 1, + ACTIONS(12455), 1, anon_sym_LPAREN, - ACTIONS(12416), 1, + ACTIONS(12457), 1, anon_sym_DOLLAR, - ACTIONS(12418), 1, + ACTIONS(12459), 1, anon_sym_DASH, - STATE(5274), 1, + STATE(1178), 1, sym__var, - STATE(6173), 1, + STATE(1388), 1, sym__expr_unary_minus, - STATE(7366), 1, + STATE(7373), 1, sym_comment, - ACTIONS(3816), 2, + ACTIONS(6686), 2, anon_sym_true, anon_sym_false, - STATE(6238), 4, + STATE(1393), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [349081] = 12, + [349330] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(11857), 1, + ACTIONS(11483), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11940), 1, - aux_sym_unquoted_token5, - STATE(7367), 1, + ACTIONS(11557), 1, + anon_sym_DOT2, + ACTIONS(12461), 1, + anon_sym_LPAREN, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12465), 1, + anon_sym_LT, + ACTIONS(12467), 1, + anon_sym_EQ2, + STATE(4852), 1, + sym__var, + STATE(7374), 1, sym_comment, - STATE(7554), 1, + STATE(8170), 1, sym__immediate_decimal, - STATE(8128), 1, - sym__var, - ACTIONS(11861), 2, + ACTIONS(11487), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7575), 2, + STATE(8273), 2, sym_expr_parenthesized, sym_val_variable, - [349120] = 12, + [349369] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11931), 1, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12151), 1, anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(12469), 1, anon_sym_LPAREN, - ACTIONS(12422), 1, + ACTIONS(12471), 1, anon_sym_LT, - ACTIONS(12424), 1, + ACTIONS(12473), 1, anon_sym_EQ2, - ACTIONS(12426), 1, - aux_sym__immediate_decimal_token1, - STATE(4871), 1, - sym__var, - STATE(5635), 1, + STATE(4199), 1, sym__immediate_decimal, - STATE(7368), 1, + STATE(7375), 1, sym_comment, - ACTIONS(7714), 2, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5637), 2, + STATE(4198), 2, sym_expr_parenthesized, sym_val_variable, - [349159] = 12, + [349408] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4210), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(12334), 1, + ACTIONS(11695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12151), 1, anon_sym_DOLLAR, - ACTIONS(12428), 1, + ACTIONS(12469), 1, anon_sym_LPAREN, - ACTIONS(12430), 1, + ACTIONS(12475), 1, anon_sym_LT, - ACTIONS(12432), 1, + ACTIONS(12477), 1, anon_sym_EQ2, - ACTIONS(12434), 1, - aux_sym__immediate_decimal_token1, - STATE(2697), 1, - sym__var, - STATE(3007), 1, + STATE(4219), 1, sym__immediate_decimal, - STATE(7369), 1, + STATE(7376), 1, sym_comment, - ACTIONS(4218), 2, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3009), 2, + STATE(4206), 2, sym_expr_parenthesized, sym_val_variable, - [349198] = 6, + [349447] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12436), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12438), 1, + ACTIONS(12001), 1, aux_sym__immediate_decimal_token2, - STATE(7370), 1, + STATE(7377), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 7, + ACTIONS(807), 9, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [349225] = 12, + [349472] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6710), 1, + anon_sym_not, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + ACTIONS(12481), 1, + anon_sym_DASH, + STATE(4752), 1, + sym__var, + STATE(5383), 1, + sym__expr_unary_minus, + STATE(7378), 1, + sym_comment, + ACTIONS(3599), 2, + anon_sym_true, + anon_sym_false, + STATE(5418), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [349507] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12483), 1, + anon_sym_QMARK2, + STATE(7379), 1, + sym_comment, + ACTIONS(1070), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1072), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [349532] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, + ACTIONS(2299), 1, anon_sym_DOT2, - ACTIONS(11977), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR, - ACTIONS(12440), 1, + ACTIONS(12485), 1, anon_sym_LPAREN, - ACTIONS(12442), 1, + ACTIONS(12487), 1, anon_sym_LT, - ACTIONS(12444), 1, + ACTIONS(12489), 1, anon_sym_EQ2, - ACTIONS(12446), 1, + ACTIONS(12491), 1, aux_sym__immediate_decimal_token1, - STATE(1497), 1, + STATE(1616), 1, sym__var, - STATE(1805), 1, + STATE(2060), 1, sym__immediate_decimal, - STATE(7371), 1, + STATE(7380), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2307), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1806), 2, + STATE(2058), 2, sym_expr_parenthesized, sym_val_variable, - [349264] = 12, + [349571] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12448), 1, + ACTIONS(12493), 1, anon_sym_LT, - ACTIONS(12450), 1, + ACTIONS(12495), 1, anon_sym_EQ2, - STATE(7372), 1, + STATE(7381), 1, sym_comment, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7804), 1, + STATE(7766), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(7818), 2, sym_expr_parenthesized, sym_val_variable, - [349303] = 5, + [349610] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12497), 1, + anon_sym_LT, + ACTIONS(12499), 1, + anon_sym_EQ2, + STATE(7382), 1, + sym_comment, + STATE(7451), 1, + sym__var, + STATE(7575), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7545), 2, + sym_expr_parenthesized, + sym_val_variable, + [349649] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12452), 1, + ACTIONS(11997), 1, aux_sym__immediate_decimal_token2, - STATE(7373), 1, + STATE(7383), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(817), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 9, + ACTIONS(815), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -535639,558 +535914,538 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [349328] = 12, + [349674] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - ACTIONS(12454), 1, + ACTIONS(12501), 1, anon_sym_LT, - ACTIONS(12456), 1, + ACTIONS(12503), 1, anon_sym_EQ2, - STATE(4690), 1, - sym__var, - STATE(7374), 1, + STATE(7384), 1, sym_comment, - STATE(8215), 1, + STATE(7766), 1, sym__immediate_decimal, - ACTIONS(11501), 2, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8220), 2, + STATE(7818), 2, sym_expr_parenthesized, sym_val_variable, - [349367] = 12, + [349713] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12458), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, anon_sym_LPAREN, - ACTIONS(12460), 1, - anon_sym_DOLLAR, - ACTIONS(12462), 1, + ACTIONS(12505), 1, anon_sym_LT, - ACTIONS(12464), 1, + ACTIONS(12507), 1, anon_sym_EQ2, - ACTIONS(12466), 1, - aux_sym__immediate_decimal_token1, - STATE(3943), 1, - sym__var, - STATE(4126), 1, - sym__immediate_decimal, - STATE(7375), 1, + STATE(7385), 1, sym_comment, - ACTIONS(7464), 2, + STATE(7575), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4128), 2, + STATE(7545), 2, sym_expr_parenthesized, sym_val_variable, - [349406] = 12, + [349752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1795), 1, + ACTIONS(12483), 1, + anon_sym_QMARK2, + STATE(7386), 1, + sym_comment, + ACTIONS(1070), 2, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(12468), 1, - anon_sym_LPAREN, - ACTIONS(12470), 1, + ACTIONS(1072), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12472), 1, - anon_sym_LT, - ACTIONS(12474), 1, - anon_sym_EQ2, - ACTIONS(12476), 1, - aux_sym__immediate_decimal_token1, - STATE(1266), 1, - sym__var, - STATE(1716), 1, - sym__immediate_decimal, - STATE(7376), 1, - sym_comment, - ACTIONS(1803), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1714), 2, - sym_expr_parenthesized, - sym_val_variable, - [349445] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [349777] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6676), 1, + ACTIONS(6602), 1, anon_sym_not, - ACTIONS(12478), 1, + ACTIONS(12509), 1, anon_sym_LPAREN, - ACTIONS(12480), 1, + ACTIONS(12511), 1, anon_sym_DOLLAR, - ACTIONS(12482), 1, + ACTIONS(12513), 1, anon_sym_DASH, - STATE(1119), 1, + STATE(527), 1, sym__var, - STATE(1316), 1, + STATE(688), 1, sym__expr_unary_minus, - STATE(7377), 1, + STATE(7387), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6606), 2, anon_sym_true, anon_sym_false, - STATE(1313), 4, + STATE(708), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [349480] = 10, + [349812] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6261), 1, - anon_sym_not, - ACTIONS(12484), 1, + ACTIONS(11441), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(12515), 1, anon_sym_LPAREN, - ACTIONS(12486), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(12488), 1, - anon_sym_DASH, - STATE(2888), 1, + ACTIONS(12519), 1, + anon_sym_LT, + ACTIONS(12521), 1, + anon_sym_EQ2, + STATE(4588), 1, sym__var, - STATE(3747), 1, - sym__expr_unary_minus, - STATE(7378), 1, + STATE(7388), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_true, - anon_sym_false, - STATE(3742), 4, - sym_expr_unary, + STATE(8039), 1, + sym__immediate_decimal, + ACTIONS(11445), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8037), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [349515] = 10, + [349851] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12523), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12525), 1, + aux_sym__immediate_decimal_token2, + STATE(7389), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [349878] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12527), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12529), 1, + aux_sym__immediate_decimal_token2, + STATE(7390), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [349905] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6718), 1, - anon_sym_not, - ACTIONS(12490), 1, - anon_sym_LPAREN, - ACTIONS(12492), 1, - anon_sym_DOLLAR, - ACTIONS(12494), 1, + ACTIONS(12531), 1, + anon_sym_LT, + ACTIONS(12533), 1, anon_sym_DASH, - STATE(5032), 1, - sym__var, - STATE(6029), 1, - sym__expr_unary_minus, - STATE(7379), 1, + STATE(7391), 1, sym_comment, - ACTIONS(3589), 2, - anon_sym_true, - anon_sym_false, - STATE(5864), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [349550] = 12, + ACTIONS(8659), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [349930] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(11397), 1, + ACTIONS(12535), 1, anon_sym_LPAREN, - ACTIONS(12058), 1, + ACTIONS(12537), 1, anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12496), 1, + ACTIONS(12539), 1, anon_sym_LT, - ACTIONS(12498), 1, + ACTIONS(12541), 1, anon_sym_EQ2, - STATE(1590), 1, + ACTIONS(12543), 1, + aux_sym__immediate_decimal_token1, + STATE(3945), 1, sym__var, - STATE(2233), 1, + STATE(4199), 1, sym__immediate_decimal, - STATE(7380), 1, + STATE(7392), 1, sym_comment, - ACTIONS(2257), 2, + ACTIONS(7452), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2248), 2, + STATE(4198), 2, sym_expr_parenthesized, sym_val_variable, - [349589] = 12, + [349969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11483), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(12146), 1, - anon_sym_DOLLAR, - ACTIONS(12500), 1, - anon_sym_LPAREN, - ACTIONS(12502), 1, + ACTIONS(12533), 1, + anon_sym_DASH, + ACTIONS(12545), 1, anon_sym_LT, - ACTIONS(12504), 1, - anon_sym_EQ2, - STATE(4741), 1, - sym__var, - STATE(7381), 1, - sym_comment, - STATE(8200), 1, - sym__immediate_decimal, - ACTIONS(11487), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8201), 2, - sym_expr_parenthesized, - sym_val_variable, - [349628] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_LF, - ACTIONS(12025), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12506), 1, - anon_sym_DOT2, - STATE(7382), 1, + STATE(7393), 1, sym_comment, - ACTIONS(807), 9, - anon_sym_SEMI, + ACTIONS(8659), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [349655] = 12, + [349994] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(11931), 1, - anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(12535), 1, anon_sym_LPAREN, - ACTIONS(12426), 1, + ACTIONS(12537), 1, + anon_sym_DOLLAR, + ACTIONS(12543), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12509), 1, + ACTIONS(12547), 1, anon_sym_LT, - ACTIONS(12511), 1, + ACTIONS(12549), 1, anon_sym_EQ2, - STATE(4871), 1, + STATE(3945), 1, sym__var, - STATE(5642), 1, + STATE(4219), 1, sym__immediate_decimal, - STATE(7383), 1, + STATE(7394), 1, sym_comment, - ACTIONS(7714), 2, + ACTIONS(7452), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5643), 2, + STATE(4206), 2, sym_expr_parenthesized, sym_val_variable, - [349694] = 12, + [350033] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(12350), 1, - anon_sym_LPAREN, - ACTIONS(12352), 1, - anon_sym_DOLLAR, - ACTIONS(12358), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12513), 1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_LPAREN, + ACTIONS(12553), 1, anon_sym_LT, - ACTIONS(12515), 1, + ACTIONS(12555), 1, anon_sym_EQ2, - STATE(3970), 1, - sym__var, - STATE(4341), 1, + STATE(4261), 1, sym__immediate_decimal, - STATE(7384), 1, + STATE(7395), 1, sym_comment, - ACTIONS(7500), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4339), 2, + STATE(4260), 2, sym_expr_parenthesized, sym_val_variable, - [349733] = 10, + [350072] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6139), 1, - anon_sym_not, - ACTIONS(12517), 1, + ACTIONS(1193), 1, + anon_sym_LBRACE, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(12519), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12521), 1, - anon_sym_DASH, - STATE(2709), 1, - sym__var, - STATE(3304), 1, - sym__expr_unary_minus, - STATE(7385), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + STATE(7396), 1, sym_comment, - ACTIONS(6143), 2, - anon_sym_true, - anon_sym_false, - STATE(3257), 4, - sym_expr_unary, + STATE(7451), 1, + sym__var, + STATE(7682), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7630), 2, sym_expr_parenthesized, - sym_val_bool, sym_val_variable, - [349768] = 12, + [350111] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - anon_sym_DOT2, - ACTIONS(12523), 1, + ACTIONS(1193), 1, + anon_sym_LBRACE, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(12525), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12527), 1, - anon_sym_LT, - ACTIONS(12529), 1, - anon_sym_EQ2, - ACTIONS(12531), 1, + ACTIONS(10194), 1, + aux_sym_unquoted_token5, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(1360), 1, + STATE(7397), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(1824), 1, + STATE(7644), 1, sym__immediate_decimal, - STATE(7386), 1, - sym_comment, - ACTIONS(2053), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1823), 2, + STATE(7546), 2, sym_expr_parenthesized, sym_val_variable, - [349807] = 12, + [350150] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(12523), 1, - anon_sym_LPAREN, - ACTIONS(12525), 1, - anon_sym_DOLLAR, - ACTIONS(12531), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12533), 1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_LPAREN, + ACTIONS(12557), 1, anon_sym_LT, - ACTIONS(12535), 1, + ACTIONS(12559), 1, anon_sym_EQ2, - STATE(1360), 1, - sym__var, - STATE(1822), 1, + STATE(4264), 1, sym__immediate_decimal, - STATE(7387), 1, + STATE(7398), 1, sym_comment, - ACTIONS(2053), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1821), 2, + STATE(4262), 2, sym_expr_parenthesized, sym_val_variable, - [349846] = 5, + [350189] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12019), 1, - aux_sym__immediate_decimal_token2, - STATE(7388), 1, - sym_comment, - ACTIONS(2996), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2998), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_not, + ACTIONS(12561), 1, + anon_sym_LPAREN, + ACTIONS(12563), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [349871] = 12, + ACTIONS(12565), 1, + anon_sym_DASH, + STATE(1109), 1, + sym__var, + STATE(1334), 1, + sym__expr_unary_minus, + STATE(7399), 1, + sym_comment, + ACTIONS(6744), 2, + anon_sym_true, + anon_sym_false, + STATE(1238), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [350224] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(2142), 1, + anon_sym_DOT2, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(12567), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(12537), 1, + ACTIONS(12569), 1, anon_sym_LT, - ACTIONS(12539), 1, + ACTIONS(12571), 1, anon_sym_EQ2, - ACTIONS(12541), 1, + ACTIONS(12573), 1, aux_sym__immediate_decimal_token1, - STATE(6206), 1, + STATE(1490), 1, sym__var, - STATE(6671), 1, + STATE(1804), 1, sym__immediate_decimal, - STATE(7389), 1, + STATE(7400), 1, sym_comment, - ACTIONS(8429), 2, + ACTIONS(2150), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6670), 2, + STATE(1803), 2, sym_expr_parenthesized, sym_val_variable, - [349910] = 12, + [350263] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(12541), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12543), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + ACTIONS(12575), 1, anon_sym_LT, - ACTIONS(12545), 1, + ACTIONS(12577), 1, anon_sym_EQ2, - STATE(6206), 1, + STATE(4752), 1, sym__var, - STATE(6673), 1, - sym__immediate_decimal, - STATE(7390), 1, + STATE(7401), 1, sym_comment, - ACTIONS(8429), 2, + STATE(8529), 1, + sym__immediate_decimal, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6672), 2, + STATE(8522), 2, sym_expr_parenthesized, sym_val_variable, - [349949] = 12, + [350302] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11771), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, - anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(12463), 1, anon_sym_DOLLAR, - ACTIONS(12547), 1, + ACTIONS(12479), 1, + anon_sym_LPAREN, + ACTIONS(12579), 1, anon_sym_LT, - ACTIONS(12549), 1, + ACTIONS(12581), 1, anon_sym_EQ2, - STATE(5199), 1, + STATE(4752), 1, sym__var, - STATE(6389), 1, - sym__immediate_decimal, - STATE(7391), 1, + STATE(7402), 1, sym_comment, - ACTIONS(11773), 2, + STATE(8356), 1, + sym__immediate_decimal, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6390), 2, + STATE(8348), 2, sym_expr_parenthesized, sym_val_variable, - [349988] = 9, + [350341] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11946), 1, - anon_sym_EQ, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(12553), 1, - anon_sym_COMMA, - ACTIONS(12555), 1, + ACTIONS(2998), 1, anon_sym_DASH, - STATE(7392), 1, + ACTIONS(12079), 1, + aux_sym__immediate_decimal_token2, + STATE(7403), 1, sym_comment, - STATE(7452), 1, - sym_param_value, - STATE(7742), 1, - sym_param_type, - ACTIONS(12551), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3000), 10, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [350021] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [350366] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6558), 1, + ACTIONS(6768), 1, anon_sym_not, - ACTIONS(12557), 1, - anon_sym_LPAREN, - ACTIONS(12559), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(12561), 1, + ACTIONS(12583), 1, + anon_sym_LPAREN, + ACTIONS(12585), 1, anon_sym_DASH, - STATE(2147), 1, + STATE(4695), 1, sym__var, - STATE(2516), 1, + STATE(5198), 1, sym__expr_unary_minus, - STATE(7393), 1, + STATE(7404), 1, sym_comment, - ACTIONS(6562), 2, + ACTIONS(3138), 2, anon_sym_true, anon_sym_false, - STATE(2503), 4, + STATE(5300), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [350056] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11525), 1, - anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, - anon_sym_DOT2, - ACTIONS(12276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12563), 1, - anon_sym_LT, - ACTIONS(12565), 1, - anon_sym_EQ2, - STATE(7394), 1, - sym_comment, - STATE(8046), 1, - sym__var, - STATE(8697), 1, - sym__immediate_decimal, - ACTIONS(11613), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8696), 2, - sym_expr_parenthesized, - sym_val_variable, - [350095] = 5, + [350401] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12054), 1, + ACTIONS(12587), 1, aux_sym__immediate_decimal_token2, - STATE(7395), 1, + STATE(7405), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(815), 9, + ACTIONS(855), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -536200,271 +536455,229 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [350120] = 10, + [350426] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_not, - ACTIONS(12170), 1, - anon_sym_DASH, - ACTIONS(12567), 1, - anon_sym_LPAREN, - ACTIONS(12569), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - STATE(4354), 1, - sym__var, - STATE(4720), 1, - sym__expr_unary_minus, - STATE(7396), 1, - sym_comment, - ACTIONS(6634), 2, - anon_sym_true, - anon_sym_false, - STATE(4717), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [350155] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACE, - ACTIONS(3870), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11613), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - STATE(7397), 1, + ACTIONS(12589), 1, + anon_sym_LT, + ACTIONS(12591), 1, + anon_sym_EQ2, + STATE(7406), 1, sym_comment, - STATE(7529), 1, + STATE(8243), 1, sym__var, - STATE(7706), 1, + STATE(9151), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(9150), 2, sym_expr_parenthesized, sym_val_variable, - [350194] = 12, + [350465] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACE, - ACTIONS(3870), 1, + ACTIONS(2259), 1, + anon_sym_DOT2, + ACTIONS(11397), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR, - ACTIONS(10318), 1, - aux_sym_unquoted_token5, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12593), 1, + anon_sym_LT, + ACTIONS(12595), 1, + anon_sym_EQ2, + ACTIONS(12597), 1, aux_sym__immediate_decimal_token1, - STATE(7398), 1, - sym_comment, - STATE(7529), 1, + STATE(1649), 1, sym__var, - STATE(7678), 1, + STATE(2370), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7407), 1, + sym_comment, + ACTIONS(2267), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(2369), 2, sym_expr_parenthesized, sym_val_variable, - [350233] = 12, + [350504] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(2259), 1, anon_sym_DOT2, - ACTIONS(12332), 1, + ACTIONS(11397), 1, anon_sym_LPAREN, - ACTIONS(12334), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR, - ACTIONS(12340), 1, + ACTIONS(12597), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12571), 1, + ACTIONS(12599), 1, anon_sym_LT, - ACTIONS(12573), 1, + ACTIONS(12601), 1, anon_sym_EQ2, - STATE(2673), 1, + STATE(1649), 1, sym__var, - STATE(3558), 1, + STATE(2271), 1, sym__immediate_decimal, - STATE(7399), 1, + STATE(7408), 1, sym_comment, - ACTIONS(4456), 2, + ACTIONS(2267), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3557), 2, + STATE(2371), 2, sym_expr_parenthesized, sym_val_variable, - [350272] = 12, + [350543] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, + ACTIONS(6650), 1, + anon_sym_not, + ACTIONS(12603), 1, anon_sym_LPAREN, - ACTIONS(12400), 1, + ACTIONS(12605), 1, anon_sym_DOLLAR, - ACTIONS(12575), 1, - anon_sym_LT, - ACTIONS(12577), 1, - anon_sym_EQ2, - STATE(4690), 1, + ACTIONS(12607), 1, + anon_sym_DASH, + STATE(377), 1, sym__var, - STATE(7400), 1, + STATE(608), 1, + sym__expr_unary_minus, + STATE(7409), 1, sym_comment, - STATE(8222), 1, - sym__immediate_decimal, - ACTIONS(11501), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8230), 2, + ACTIONS(6654), 2, + anon_sym_true, + anon_sym_false, + STATE(658), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [350311] = 5, + [350578] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12579), 1, - anon_sym_LT, - ACTIONS(12581), 1, - anon_sym_DASH, - STATE(7401), 1, - sym_comment, - ACTIONS(8786), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11725), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [350336] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11417), 1, + ACTIONS(12609), 1, anon_sym_LPAREN, - ACTIONS(11419), 1, - anon_sym_DOLLAR, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(12583), 1, + ACTIONS(12611), 1, anon_sym_LT, - ACTIONS(12585), 1, + ACTIONS(12613), 1, anon_sym_EQ2, - ACTIONS(12587), 1, - aux_sym__immediate_decimal_token1, - STATE(7234), 1, + STATE(5149), 1, sym__var, - STATE(7402), 1, + STATE(7410), 1, sym_comment, - STATE(7585), 1, + STATE(9550), 1, sym__immediate_decimal, - ACTIONS(11431), 2, + ACTIONS(11727), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7584), 2, + STATE(9809), 2, sym_expr_parenthesized, sym_val_variable, - [350375] = 12, + [350617] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, - anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12589), 1, + ACTIONS(12517), 1, + anon_sym_DOLLAR, + ACTIONS(12583), 1, + anon_sym_LPAREN, + ACTIONS(12615), 1, anon_sym_LT, - ACTIONS(12591), 1, + ACTIONS(12617), 1, anon_sym_EQ2, - STATE(7234), 1, + STATE(4695), 1, sym__var, - STATE(7403), 1, + STATE(7411), 1, sym_comment, - STATE(7583), 1, + STATE(8172), 1, sym__immediate_decimal, - ACTIONS(11431), 2, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7649), 2, + STATE(8161), 2, sym_expr_parenthesized, sym_val_variable, - [350414] = 5, + [350656] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12593), 1, - aux_sym__immediate_decimal_token2, - STATE(7404), 1, - sym_comment, - ACTIONS(3834), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(3836), 8, + ACTIONS(11952), 1, + anon_sym_EQ, + ACTIONS(11954), 1, anon_sym_COLON, + ACTIONS(12621), 1, anon_sym_COMMA, + ACTIONS(12623), 1, + anon_sym_DASH, + STATE(7412), 1, + sym_comment, + STATE(7485), 1, + sym_param_value, + STATE(7819), 1, + sym_param_type, + ACTIONS(12619), 6, + sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [350439] = 12, + [350689] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11771), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, - anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(12595), 1, + ACTIONS(12583), 1, + anon_sym_LPAREN, + ACTIONS(12625), 1, anon_sym_LT, - ACTIONS(12597), 1, + ACTIONS(12627), 1, anon_sym_EQ2, - STATE(5199), 1, + STATE(4695), 1, sym__var, - STATE(6391), 1, - sym__immediate_decimal, - STATE(7405), 1, + STATE(7413), 1, sym_comment, - ACTIONS(11773), 2, + STATE(8175), 1, + sym__immediate_decimal, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6392), 2, + STATE(8174), 2, sym_expr_parenthesized, sym_val_variable, - [350478] = 5, + [350728] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12025), 1, - aux_sym__immediate_decimal_token2, - STATE(7406), 1, - sym_comment, - ACTIONS(809), 2, + ACTIONS(848), 1, anon_sym_LF, + ACTIONS(12629), 1, anon_sym_DOT2, - ACTIONS(807), 9, + ACTIONS(12632), 1, + aux_sym__immediate_decimal_token2, + STATE(7414), 1, + sym_comment, + ACTIONS(846), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -536474,443 +536687,371 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [350503] = 10, + [350755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5982), 1, - anon_sym_not, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(11837), 1, - anon_sym_LPAREN, - ACTIONS(12599), 1, + ACTIONS(3165), 1, anon_sym_DASH, - STATE(4538), 1, - sym__var, - STATE(5567), 1, - sym__expr_unary_minus, - STATE(7407), 1, - sym_comment, - ACTIONS(3070), 2, - anon_sym_true, - anon_sym_false, - STATE(5587), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [350538] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(12601), 1, - anon_sym_DOT2, - ACTIONS(12604), 1, + ACTIONS(12125), 1, aux_sym__immediate_decimal_token2, - STATE(7408), 1, + ACTIONS(12634), 1, + anon_sym_DOT2, + STATE(7415), 1, sym_comment, - ACTIONS(835), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3167), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [350565] = 10, + anon_sym_EQ_GT, + [350782] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7010), 1, + ACTIONS(5590), 1, anon_sym_not, - ACTIONS(12606), 1, + ACTIONS(12636), 1, anon_sym_LPAREN, - ACTIONS(12608), 1, + ACTIONS(12638), 1, anon_sym_DOLLAR, - ACTIONS(12610), 1, + ACTIONS(12640), 1, anon_sym_DASH, - STATE(788), 1, + STATE(5235), 1, sym__var, - STATE(868), 1, + STATE(6143), 1, sym__expr_unary_minus, - STATE(7409), 1, + STATE(7416), 1, sym_comment, - ACTIONS(7014), 2, + ACTIONS(3029), 2, anon_sym_true, anon_sym_false, - STATE(863), 4, + STATE(6069), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [350600] = 12, + [350817] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, + ACTIONS(11417), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(12612), 1, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12642), 1, anon_sym_LT, - ACTIONS(12614), 1, + ACTIONS(12644), 1, anon_sym_EQ2, - STATE(4736), 1, + ACTIONS(12646), 1, + aux_sym__immediate_decimal_token1, + STATE(7184), 1, sym__var, - STATE(7410), 1, + STATE(7417), 1, sym_comment, - STATE(8377), 1, + STATE(7505), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + ACTIONS(11431), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8383), 2, + STATE(7504), 2, sym_expr_parenthesized, sym_val_variable, - [350639] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12581), 1, - anon_sym_DASH, - ACTIONS(12616), 1, - anon_sym_LT, - STATE(7411), 1, - sym_comment, - ACTIONS(8786), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [350664] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12019), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12618), 1, - anon_sym_DOT2, - STATE(7412), 1, - sym_comment, - ACTIONS(2996), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [350691] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12621), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12623), 1, - aux_sym__immediate_decimal_token2, - STATE(7413), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [350718] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12627), 1, - anon_sym_AT, - ACTIONS(12629), 1, - anon_sym_DASH, - STATE(7414), 1, - sym_comment, - STATE(7815), 1, - sym_param_cmd, - ACTIONS(12625), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [350745] = 12, + [350856] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(2096), 1, anon_sym_DOT2, - ACTIONS(12458), 1, + ACTIONS(11375), 1, anon_sym_LPAREN, - ACTIONS(12460), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(12466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12631), 1, + ACTIONS(12648), 1, anon_sym_LT, - ACTIONS(12633), 1, + ACTIONS(12650), 1, anon_sym_EQ2, - STATE(3943), 1, + ACTIONS(12652), 1, + aux_sym__immediate_decimal_token1, + STATE(1469), 1, sym__var, - STATE(4136), 1, + STATE(2134), 1, sym__immediate_decimal, - STATE(7415), 1, + STATE(7418), 1, sym_comment, - ACTIONS(7464), 2, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4138), 2, + STATE(2133), 2, sym_expr_parenthesized, sym_val_variable, - [350784] = 12, + [350895] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(2096), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11375), 1, + anon_sym_LPAREN, + ACTIONS(11979), 1, + anon_sym_DOLLAR, + ACTIONS(12652), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12635), 1, + ACTIONS(12654), 1, anon_sym_LT, - ACTIONS(12637), 1, + ACTIONS(12656), 1, anon_sym_EQ2, - STATE(7416), 1, - sym_comment, - STATE(7529), 1, + STATE(1469), 1, sym__var, - STATE(7804), 1, + STATE(2138), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7419), 1, + sym_comment, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7818), 2, + STATE(2137), 2, sym_expr_parenthesized, sym_val_variable, - [350823] = 12, + [350934] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(6514), 1, + anon_sym_not, + ACTIONS(12658), 1, anon_sym_LPAREN, - ACTIONS(12639), 1, - anon_sym_LT, - ACTIONS(12641), 1, - anon_sym_EQ2, - STATE(7417), 1, + ACTIONS(12660), 1, + anon_sym_DOLLAR, + ACTIONS(12662), 1, + anon_sym_DASH, + STATE(4906), 1, + sym__var, + STATE(5669), 1, + sym__expr_unary_minus, + STATE(7420), 1, sym_comment, - STATE(7841), 1, - sym__immediate_decimal, - STATE(9717), 1, + ACTIONS(3685), 2, + anon_sym_true, + anon_sym_false, + STATE(5479), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [350969] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6808), 1, + anon_sym_not, + ACTIONS(12431), 1, + anon_sym_LPAREN, + ACTIONS(12433), 1, + anon_sym_DOLLAR, + ACTIONS(12664), 1, + anon_sym_DASH, + STATE(5147), 1, sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7820), 2, + STATE(6186), 1, + sym__expr_unary_minus, + STATE(7421), 1, + sym_comment, + ACTIONS(3375), 2, + anon_sym_true, + anon_sym_false, + STATE(6176), 4, + sym_expr_unary, sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [350862] = 12, + [351004] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(11601), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12643), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(12666), 1, anon_sym_LT, - ACTIONS(12645), 1, + ACTIONS(12668), 1, anon_sym_EQ2, - STATE(7418), 1, - sym_comment, - STATE(7529), 1, + STATE(4552), 1, sym__var, - STATE(7841), 1, + STATE(7422), 1, + sym_comment, + STATE(9802), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7820), 2, + STATE(9801), 2, sym_expr_parenthesized, sym_val_variable, - [350901] = 12, + [351043] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - ACTIONS(12647), 1, + ACTIONS(12670), 1, anon_sym_LT, - ACTIONS(12649), 1, + ACTIONS(12672), 1, anon_sym_EQ2, - STATE(7419), 1, + STATE(4471), 1, + sym__var, + STATE(7423), 1, sym_comment, - STATE(7804), 1, + STATE(7766), 1, sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(7818), 2, sym_expr_parenthesized, sym_val_variable, - [350940] = 12, + [351082] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12651), 1, - anon_sym_LT, - ACTIONS(12653), 1, - anon_sym_EQ2, - ACTIONS(12655), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(6075), 1, - sym__var, - STATE(6695), 1, - sym__immediate_decimal, - STATE(7420), 1, - sym_comment, - ACTIONS(8379), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6684), 2, - sym_expr_parenthesized, - sym_val_variable, - [350979] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1795), 1, - anon_sym_DOT2, - ACTIONS(12468), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - ACTIONS(12470), 1, - anon_sym_DOLLAR, - ACTIONS(12476), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12657), 1, + ACTIONS(12674), 1, anon_sym_LT, - ACTIONS(12659), 1, + ACTIONS(12676), 1, anon_sym_EQ2, - STATE(1266), 1, + STATE(4471), 1, sym__var, - STATE(1718), 1, - sym__immediate_decimal, - STATE(7421), 1, + STATE(7424), 1, sym_comment, - ACTIONS(1803), 2, + STATE(7575), 1, + sym__immediate_decimal, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1717), 2, + STATE(7545), 2, sym_expr_parenthesized, sym_val_variable, - [351018] = 12, + [351121] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12655), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12661), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + ACTIONS(12678), 1, anon_sym_LT, - ACTIONS(12663), 1, + ACTIONS(12680), 1, anon_sym_EQ2, - STATE(6075), 1, + STATE(7425), 1, + sym_comment, + STATE(7451), 1, sym__var, - STATE(6683), 1, + STATE(7766), 1, sym__immediate_decimal, - STATE(7422), 1, - sym_comment, - ACTIONS(8379), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6679), 2, + STATE(7818), 2, sym_expr_parenthesized, sym_val_variable, - [351057] = 12, + [351160] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, + anon_sym_DASH_DASH, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7426), 1, + sym_comment, + STATE(7536), 1, + aux_sym_decl_def_repeat1, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, + sym_long_flag, + STATE(9524), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [351201] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4032), 1, + anon_sym_DASH, + STATE(7427), 1, + sym_comment, + ACTIONS(4034), 10, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, - ACTIONS(11375), 1, + [351223] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_DQUOTE, + ACTIONS(12535), 1, anon_sym_LPAREN, - ACTIONS(11977), 1, + ACTIONS(12537), 1, anon_sym_DOLLAR, - ACTIONS(12298), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12665), 1, - anon_sym_LT, - ACTIONS(12667), 1, - anon_sym_EQ2, - STATE(1506), 1, + ACTIONS(12682), 1, + sym_cmd_identifier, + STATE(3945), 1, sym__var, - STATE(1995), 1, - sym__immediate_decimal, - STATE(7423), 1, + STATE(4140), 1, + sym__str_double_quotes, + STATE(7428), 1, sym_comment, - ACTIONS(2085), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1994), 2, + ACTIONS(3657), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1107), 3, sym_expr_parenthesized, sym_val_variable, - [351096] = 6, + sym_val_string, + [351257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12254), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12669), 1, - anon_sym_DOT2, - STATE(7424), 1, + ACTIONS(12686), 1, + anon_sym_DASH, + STATE(7429), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(12684), 10, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - ACTIONS(3491), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -536919,347 +537060,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [351123] = 12, + [351279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + STATE(7430), 1, + sym_comment, + ACTIONS(1209), 2, + anon_sym_DASH, anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, + ACTIONS(1211), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12364), 1, - anon_sym_LPAREN, - ACTIONS(12672), 1, - anon_sym_LT, - ACTIONS(12674), 1, - anon_sym_EQ2, - STATE(4341), 1, - sym__immediate_decimal, - STATE(7425), 1, - sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4339), 2, - sym_expr_parenthesized, - sym_val_variable, - [351162] = 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351301] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11457), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(12400), 1, + ACTIONS(12688), 1, + anon_sym_DASH, + STATE(7431), 1, + sym_comment, + ACTIONS(9019), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12676), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351323] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3655), 1, + anon_sym_DQUOTE, + ACTIONS(12535), 1, anon_sym_LPAREN, - ACTIONS(12678), 1, - anon_sym_LT, - ACTIONS(12680), 1, - anon_sym_EQ2, - STATE(4658), 1, + ACTIONS(12537), 1, + anon_sym_DOLLAR, + ACTIONS(12690), 1, + sym_cmd_identifier, + STATE(3945), 1, sym__var, - STATE(7426), 1, + STATE(4140), 1, + sym__str_double_quotes, + STATE(7432), 1, sym_comment, - STATE(7902), 1, - sym__immediate_decimal, - ACTIONS(11461), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7994), 2, + ACTIONS(3657), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1088), 3, sym_expr_parenthesized, sym_val_variable, - [351201] = 11, + sym_val_string, + [351357] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7427), 1, + ACTIONS(12694), 1, + anon_sym_DASH, + STATE(7433), 1, sym_comment, - STATE(7794), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7793), 2, - sym_expr_parenthesized, - sym_val_variable, - [351237] = 11, + ACTIONS(12692), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(4036), 1, + anon_sym_DASH, + ACTIONS(12696), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7428), 1, + STATE(7434), 1, sym_comment, - STATE(7687), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7680), 2, - sym_expr_parenthesized, - sym_val_variable, - [351273] = 4, + ACTIONS(4038), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(12700), 1, anon_sym_DASH, - STATE(7429), 1, + STATE(7435), 1, sym_comment, - ACTIONS(2988), 10, + ACTIONS(12698), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [351295] = 12, + [351425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(3840), 1, + anon_sym_DASH, + ACTIONS(12702), 1, + anon_sym_DOT2, + STATE(7436), 1, + sym_comment, + ACTIONS(3842), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7430), 1, + [351449] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(7437), 1, sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(7953), 1, - aux_sym_decl_def_repeat1, - STATE(8037), 1, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [351471] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4098), 1, + anon_sym_LF, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, + anon_sym_DASH, + STATE(4177), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(7438), 1, + sym_comment, + STATE(8735), 1, + sym__flag, + STATE(4174), 2, + sym_short_flag, sym_long_flag, - STATE(9745), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [351333] = 12, - ACTIONS(3), 1, + ACTIONS(4096), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [351503] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(4098), 1, + anon_sym_LF, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7431), 1, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7439), 1, sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(7953), 1, - aux_sym_decl_def_repeat1, - STATE(8037), 1, + STATE(7452), 1, + sym__flag, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(8176), 2, + sym_short_flag, sym_long_flag, - STATE(9737), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [351371] = 12, - ACTIONS(3), 1, + ACTIONS(4096), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [351535] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(4098), 1, + anon_sym_LF, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7430), 1, - aux_sym_decl_def_repeat1, - STATE(7432), 1, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7440), 1, sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, + STATE(7453), 1, + sym__flag, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(8176), 2, + sym_short_flag, sym_long_flag, - STATE(9735), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [351409] = 12, - ACTIONS(3), 1, + ACTIONS(4096), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [351567] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(4098), 1, + anon_sym_LF, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7431), 1, - aux_sym_decl_def_repeat1, - STATE(7433), 1, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7441), 1, sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, + STATE(7454), 1, + sym__flag, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(8176), 2, + sym_short_flag, sym_long_flag, - STATE(9678), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [351447] = 12, + ACTIONS(4096), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [351599] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(3903), 1, + anon_sym_DASH, + ACTIONS(12710), 1, + anon_sym_DOT2, + STATE(7442), 1, + sym_comment, + ACTIONS(3905), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7434), 1, + [351623] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3909), 1, + anon_sym_DASH, + ACTIONS(12712), 1, + anon_sym_DOT2, + STATE(7443), 1, sym_comment, - STATE(7457), 1, - aux_sym_decl_def_repeat1, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8937), 1, - sym_long_flag, - STATE(9605), 1, - sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3911), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7444), 1, + sym_comment, + ACTIONS(1213), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1215), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351669] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12716), 1, + aux_sym__immediate_decimal_token2, + STATE(7445), 1, + sym_comment, + ACTIONS(815), 4, + sym_cmd_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 5, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [351485] = 12, + [351695] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3016), 1, - anon_sym_DASH_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11933), 1, + ACTIONS(12718), 1, anon_sym_DASH, - ACTIONS(12228), 1, + STATE(7446), 1, + sym_comment, + ACTIONS(9005), 10, + anon_sym_EQ, sym_identifier, - STATE(7435), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [351717] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4213), 1, + anon_sym_LF, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7447), 1, sym_comment, - STATE(8142), 1, - sym__variable_name, - STATE(8410), 1, - sym__var, - STATE(8630), 1, + STATE(7541), 1, sym__flag, - STATE(8977), 1, - sym_val_variable, - STATE(9841), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8821), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - [351523] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(7436), 1, - sym_comment, - ACTIONS(891), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 9, + ACTIONS(4211), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, + [351749] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12720), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12722), 1, + aux_sym__immediate_decimal_token2, + STATE(7448), 1, + sym_comment, + ACTIONS(807), 4, + sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [351545] = 4, + ACTIONS(809), 5, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [351775] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7437), 1, - sym_comment, - ACTIONS(1228), 2, + ACTIONS(12724), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1230), 9, + STATE(7449), 1, + sym_comment, + ACTIONS(9007), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [351567] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - STATE(7438), 1, - sym_comment, - ACTIONS(2998), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [351589] = 4, + [351797] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(7439), 1, + STATE(7450), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(809), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 9, + ACTIONS(807), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -537269,268 +537477,146 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [351611] = 9, - ACTIONS(105), 1, + [351819] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(7163), 1, + sym_path, + STATE(7451), 1, + sym_comment, + STATE(7618), 1, + sym_cell_path, + ACTIONS(968), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4287), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [351847] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4156), 1, anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, anon_sym_DASH, - STATE(7440), 1, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7452), 1, sym_comment, - STATE(7466), 1, + STATE(8793), 1, sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, + STATE(4174), 2, sym_short_flag, sym_long_flag, - ACTIONS(4285), 4, + ACTIONS(4154), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [351643] = 9, + [351879] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4287), 1, + ACTIONS(4156), 1, anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7441), 1, + STATE(7453), 1, sym_comment, - STATE(7467), 1, + STATE(7462), 1, sym__flag, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4285), 4, + ACTIONS(4154), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [351675] = 9, + [351911] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4287), 1, + ACTIONS(4156), 1, anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7442), 1, + STATE(7454), 1, sym_comment, - STATE(7469), 1, + STATE(7463), 1, sym__flag, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4285), 4, + ACTIONS(4154), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [351707] = 4, + [351943] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(7443), 1, - sym_comment, - ACTIONS(809), 2, + ACTIONS(4156), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4158), 1, anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [351729] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3126), 1, - anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7444), 1, + STATE(7455), 1, sym_comment, - STATE(7463), 1, - aux_sym_decl_def_repeat1, - STATE(7888), 1, - sym_val_string, - STATE(8037), 1, + STATE(7464), 1, + sym__flag, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(8176), 2, + sym_short_flag, sym_long_flag, - STATE(9626), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [351767] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7445), 1, - sym_comment, - STATE(7548), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7558), 2, - sym_expr_parenthesized, - sym_val_variable, - [351803] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7446), 1, - sym_comment, - STATE(7559), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7573), 2, - sym_expr_parenthesized, - sym_val_variable, - [351839] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(12686), 1, - anon_sym_COMMA, - ACTIONS(12688), 1, - anon_sym_DASH, - STATE(7447), 1, - sym_comment, - STATE(7846), 1, - sym_param_type, - ACTIONS(12684), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(4154), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [351867] = 9, + anon_sym_RBRACE, + [351975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(11997), 1, - anon_sym_EQ, - ACTIONS(12394), 1, - anon_sym_COMMA, - ACTIONS(12396), 1, - anon_sym_DASH, - STATE(7447), 1, - sym_param_value, - STATE(7448), 1, + STATE(7456), 1, sym_comment, - STATE(7859), 1, - sym_param_type, - ACTIONS(12392), 5, + ACTIONS(1217), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(1219), 9, sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [351899] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11948), 1, anon_sym_COLON, - ACTIONS(12692), 1, anon_sym_COMMA, - ACTIONS(12694), 1, - anon_sym_DASH, - STATE(7449), 1, - sym_comment, - STATE(7860), 1, - sym_param_type, - ACTIONS(12690), 7, - sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [351927] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7450), 1, - sym_comment, - STATE(7579), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7587), 2, - sym_expr_parenthesized, - sym_val_variable, - [351963] = 4, + [351997] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7451), 1, + STATE(7457), 1, sym_comment, - ACTIONS(1222), 2, + ACTIONS(1185), 2, anon_sym_DASH, anon_sym_DOT2, - ACTIONS(1224), 9, + ACTIONS(1187), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -537540,199 +537626,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [351985] = 7, - ACTIONS(3), 1, + [352019] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(12698), 1, - anon_sym_COMMA, - ACTIONS(12700), 1, + ACTIONS(4182), 1, + anon_sym_LF, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, anon_sym_DASH, - STATE(7452), 1, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7458), 1, sym_comment, - STATE(7861), 1, - sym_param_type, - ACTIONS(12696), 7, - sym_identifier, - anon_sym_RBRACK, + STATE(8683), 1, + sym__flag, + STATE(4174), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4180), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352013] = 9, + anon_sym_RBRACE, + [352051] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4054), 1, - anon_sym_LF, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(4182), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7453), 1, - sym_comment, - STATE(7477), 1, + STATE(7438), 1, sym__flag, - STATE(8165), 1, + STATE(7459), 1, + sym_comment, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4052), 4, + ACTIONS(4180), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352045] = 4, - ACTIONS(3), 1, + [352083] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12704), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4182), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7454), 1, + STATE(7439), 1, + sym__flag, + STATE(7460), 1, sym_comment, - ACTIONS(12702), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4180), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352067] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [352115] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(7455), 1, - sym_comment, - ACTIONS(1189), 2, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4182), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1191), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7440), 1, + sym__flag, + STATE(7461), 1, + sym_comment, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4180), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352089] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2112), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7456), 1, - sym_comment, - STATE(7603), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7618), 2, - sym_expr_parenthesized, - sym_val_variable, - [352125] = 12, - ACTIONS(3), 1, + anon_sym_RBRACE, + [352147] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3126), 1, + ACTIONS(4239), 1, + anon_sym_LF, + ACTIONS(12704), 1, anon_sym_DASH_DASH, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7457), 1, - sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(7953), 1, - aux_sym_decl_def_repeat1, - STATE(8037), 1, + ACTIONS(12706), 1, + anon_sym_DASH, + STATE(4177), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(7462), 1, + sym_comment, + STATE(8809), 1, + sym__flag, + STATE(4174), 2, + sym_short_flag, sym_long_flag, - STATE(9572), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [352163] = 4, - ACTIONS(3), 1, + ACTIONS(4237), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [352179] = 9, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4239), 1, + anon_sym_LF, ACTIONS(12708), 1, anon_sym_DASH, - STATE(7458), 1, + STATE(7463), 1, sym_comment, - ACTIONS(12706), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7469), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4237), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352185] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [352211] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12710), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4239), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7459), 1, + STATE(7464), 1, sym_comment, - ACTIONS(9099), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7470), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4237), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352207] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [352243] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12712), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4239), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7460), 1, + STATE(7465), 1, sym_comment, - ACTIONS(9085), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7471), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4237), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352229] = 4, + anon_sym_RBRACE, + [352275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12716), 1, + ACTIONS(12728), 1, anon_sym_DASH, - STATE(7461), 1, + STATE(7466), 1, sym_comment, - ACTIONS(12714), 10, + ACTIONS(12726), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -537743,348 +537828,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352251] = 4, + [352297] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12720), 1, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(12732), 1, + anon_sym_COMMA, + ACTIONS(12734), 1, anon_sym_DASH, - STATE(7462), 1, + STATE(7467), 1, sym_comment, - ACTIONS(12718), 10, - anon_sym_EQ, + STATE(7897), 1, + sym_param_type, + ACTIONS(12730), 7, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352273] = 12, + [352325] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3126), 1, - anon_sym_DASH_DASH, - ACTIONS(3150), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(3441), 1, + anon_sym_DASH_DASH, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(7463), 1, + STATE(7468), 1, sym_comment, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(7953), 1, + STATE(7913), 1, aux_sym_decl_def_repeat1, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8937), 1, + STATE(8698), 1, sym_long_flag, - STATE(9191), 1, + STATE(9223), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [352311] = 4, - ACTIONS(3), 1, + [352363] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12724), 1, + ACTIONS(4246), 1, + anon_sym_LF, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, anon_sym_DASH, - STATE(7464), 1, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7469), 1, sym_comment, - ACTIONS(12722), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(8815), 1, + sym__flag, + STATE(4174), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4244), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352333] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12728), 1, - aux_sym__immediate_decimal_token2, - STATE(7465), 1, - sym_comment, - ACTIONS(807), 4, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 5, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [352359] = 9, + anon_sym_RBRACE, + [352395] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4092), 1, - anon_sym_LF, - ACTIONS(12730), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(12732), 1, + ACTIONS(4246), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7466), 1, + STATE(7470), 1, sym_comment, - STATE(8765), 1, + STATE(7473), 1, sym__flag, - STATE(4152), 2, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4090), 4, + ACTIONS(4244), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352391] = 9, + [352427] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4092), 1, - anon_sym_LF, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(4246), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7467), 1, + STATE(7471), 1, sym_comment, - STATE(7507), 1, + STATE(7474), 1, sym__flag, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4090), 4, + ACTIONS(4244), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352423] = 4, - ACTIONS(3), 1, + [352459] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(7468), 1, - sym_comment, - ACTIONS(3888), 2, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4246), 1, + anon_sym_LF, + ACTIONS(12708), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(3890), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7472), 1, + sym_comment, + STATE(7475), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4244), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352445] = 9, + anon_sym_RBRACE, + [352491] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4092), 1, - anon_sym_LF, - ACTIONS(4094), 1, + ACTIONS(12704), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(12706), 1, anon_sym_DASH, - STATE(7469), 1, + ACTIONS(12738), 1, + anon_sym_LF, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7473), 1, sym_comment, - STATE(7510), 1, + STATE(8820), 1, sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, + STATE(4174), 2, sym_short_flag, sym_long_flag, - ACTIONS(4090), 4, + ACTIONS(12736), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352477] = 9, + [352523] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4092), 1, - anon_sym_LF, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7470), 1, + ACTIONS(12738), 1, + anon_sym_LF, + STATE(7474), 1, sym_comment, - STATE(7512), 1, + STATE(7478), 1, sym__flag, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4090), 4, + ACTIONS(12736), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352509] = 5, - ACTIONS(3), 1, + [352555] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3909), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - ACTIONS(12734), 1, - anon_sym_DOT2, - STATE(7471), 1, + ACTIONS(12738), 1, + anon_sym_LF, + STATE(7475), 1, sym_comment, - ACTIONS(3911), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(7479), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12736), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352533] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [352587] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7472), 1, + ACTIONS(12738), 1, + anon_sym_LF, + STATE(7476), 1, sym_comment, - ACTIONS(3836), 10, - anon_sym_COMMA, + STATE(7480), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12736), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [352555] = 6, + [352619] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12736), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12738), 1, - aux_sym__immediate_decimal_token2, - STATE(7473), 1, + STATE(7477), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(807), 7, + ACTIONS(855), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [352581] = 5, - ACTIONS(3), 1, + [352641] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3941), 1, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, anon_sym_DASH, - ACTIONS(12740), 1, - anon_sym_DOT2, - STATE(7474), 1, + ACTIONS(12742), 1, + anon_sym_LF, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7478), 1, sym_comment, - ACTIONS(3943), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(8832), 1, + sym__flag, + STATE(4174), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12740), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352605] = 9, + anon_sym_RBRACE, + [352673] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(4256), 1, - anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7441), 1, - sym__flag, - STATE(7475), 1, + ACTIONS(12742), 1, + anon_sym_LF, + STATE(7479), 1, sym_comment, - STATE(8165), 1, + STATE(7481), 1, + sym__flag, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4254), 4, + ACTIONS(12740), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352637] = 4, - ACTIONS(3), 1, + [352705] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(7476), 1, - sym_comment, - ACTIONS(1252), 2, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1254), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(12742), 1, + anon_sym_LF, + STATE(7480), 1, + sym_comment, + STATE(7482), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12740), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [352659] = 9, + anon_sym_RBRACE, + [352737] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(12704), 1, anon_sym_DASH_DASH, - ACTIONS(4256), 1, - anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(12706), 1, anon_sym_DASH, - STATE(7440), 1, + ACTIONS(12746), 1, + anon_sym_LF, + STATE(4177), 1, + sym_long_flag_equals_value, + STATE(7481), 1, + sym_comment, + STATE(8834), 1, sym__flag, - STATE(7477), 1, + STATE(4174), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12744), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [352769] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(12708), 1, + anon_sym_DASH, + ACTIONS(12746), 1, + anon_sym_LF, + STATE(7482), 1, sym_comment, - STATE(8165), 1, + STATE(7483), 1, + sym__flag, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(12744), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [352801] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12704), 1, + anon_sym_DASH_DASH, + ACTIONS(12706), 1, + anon_sym_DASH, + ACTIONS(12750), 1, + anon_sym_LF, + STATE(4177), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(7483), 1, + sym_comment, + STATE(8836), 1, + sym__flag, + STATE(4174), 2, sym_short_flag, sym_long_flag, - ACTIONS(4254), 4, + ACTIONS(12748), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [352691] = 5, + [352833] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3915), 1, + STATE(7484), 1, + sym_comment, + ACTIONS(2957), 2, anon_sym_DASH, - ACTIONS(12742), 1, anon_sym_DOT2, - STATE(7478), 1, - sym_comment, - ACTIONS(3917), 9, + ACTIONS(2959), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -538094,110 +538233,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352715] = 5, + [352855] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3935), 1, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(12754), 1, + anon_sym_COMMA, + ACTIONS(12756), 1, anon_sym_DASH, - ACTIONS(12744), 1, - anon_sym_DOT2, - STATE(7479), 1, + STATE(7485), 1, sym_comment, - ACTIONS(3937), 9, + STATE(7896), 1, + sym_param_type, + ACTIONS(12752), 7, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352739] = 4, + [352883] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(7480), 1, + ACTIONS(3763), 1, + anon_sym_DASH_DASH, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(12388), 1, + sym_identifier, + STATE(7486), 1, sym_comment, - ACTIONS(3834), 2, + STATE(8302), 1, + sym__variable_name, + STATE(8540), 1, + sym__var, + STATE(8947), 1, + sym_val_variable, + STATE(9148), 1, + sym__flag, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [352921] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12758), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(3836), 9, + STATE(7487), 1, + sym_comment, + ACTIONS(9009), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352761] = 6, + [352943] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4190), 1, anon_sym_LF, - ACTIONS(8536), 1, - anon_sym_DOT2, - ACTIONS(8538), 1, - aux_sym_unquoted_token6, - STATE(7481), 1, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7458), 1, + sym__flag, + STATE(7488), 1, sym_comment, - ACTIONS(861), 8, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4188), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [352787] = 6, + [352975] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12746), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12748), 1, - aux_sym__immediate_decimal_token2, - STATE(7482), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4190), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 7, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7459), 1, + sym__flag, + STATE(7489), 1, + sym_comment, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4188), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [352813] = 4, + [353007] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(7483), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(4158), 1, + anon_sym_DASH_DASH, + ACTIONS(4190), 1, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 9, + ACTIONS(12708), 1, + anon_sym_DASH, + STATE(7460), 1, + sym__flag, + STATE(7490), 1, + sym_comment, + STATE(8198), 1, + sym_long_flag_equals_value, + STATE(8176), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(4188), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, + [353039] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7491), 1, + sym_comment, + STATE(7877), 1, + sym_val_string, + STATE(7913), 1, + aux_sym_decl_def_repeat1, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, + sym_long_flag, + STATE(9599), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [353077] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2957), 1, anon_sym_DASH, + STATE(7492), 1, + sym_comment, + ACTIONS(2959), 10, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [352835] = 4, + anon_sym_EQ_GT, + anon_sym_DOT2, + [353099] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12760), 1, + anon_sym_LT, + STATE(7493), 1, + sym_comment, + ACTIONS(8659), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [353121] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3804), 1, + anon_sym_DASH, + STATE(7494), 1, + sym_comment, + ACTIONS(3806), 10, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT2, + [353143] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(12016), 1, + anon_sym_EQ, + ACTIONS(12621), 1, + anon_sym_COMMA, + ACTIONS(12623), 1, + anon_sym_DASH, + STATE(7485), 1, + sym_param_value, + STATE(7495), 1, + sym_comment, + STATE(7854), 1, + sym_param_type, + ACTIONS(12619), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [353175] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(12764), 1, + anon_sym_COMMA, + ACTIONS(12766), 1, + anon_sym_DASH, + STATE(7496), 1, + sym_comment, + STATE(7850), 1, + sym_param_type, + ACTIONS(12762), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [353203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7484), 1, - sym_comment, - ACTIONS(2986), 2, + ACTIONS(12770), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(2988), 9, + STATE(7497), 1, + sym_comment, + ACTIONS(12768), 10, + anon_sym_EQ, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -538207,142 +538509,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352857] = 11, + [353225] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2177), 1, - anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7485), 1, + ACTIONS(11954), 1, + anon_sym_COLON, + ACTIONS(12016), 1, + anon_sym_EQ, + ACTIONS(12443), 1, + anon_sym_COMMA, + ACTIONS(12445), 1, + anon_sym_DASH, + STATE(7467), 1, + sym_param_value, + STATE(7498), 1, sym_comment, - STATE(7781), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7769), 2, - sym_expr_parenthesized, - sym_val_variable, - [352893] = 9, - ACTIONS(105), 1, + STATE(7851), 1, + sym_param_type, + ACTIONS(12441), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [353257] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12730), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - ACTIONS(12752), 1, - anon_sym_LF, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7486), 1, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7468), 1, + aux_sym_decl_def_repeat1, + STATE(7499), 1, sym_comment, - STATE(8757), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, sym_long_flag, - ACTIONS(12750), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [352925] = 4, + STATE(9581), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [353295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12754), 1, + ACTIONS(12774), 1, anon_sym_DASH, - STATE(7487), 1, + STATE(7500), 1, sym_comment, - ACTIONS(8112), 10, + ACTIONS(12772), 10, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352947] = 4, + [353317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7488), 1, - sym_comment, - ACTIONS(1259), 2, + ACTIONS(2998), 1, anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(1261), 9, - sym_identifier, - anon_sym_COLON, + STATE(7501), 1, + sym_comment, + ACTIONS(3000), 10, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [352969] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2173), 1, anon_sym_in, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7489), 1, - sym_comment, - STATE(7786), 1, - sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7784), 2, - sym_expr_parenthesized, - sym_val_variable, - [353005] = 4, + [353339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12581), 1, + ACTIONS(12778), 1, anon_sym_DASH, - STATE(7490), 1, + STATE(7502), 1, sym_comment, - ACTIONS(8786), 10, + ACTIONS(12776), 10, anon_sym_EQ, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [353027] = 4, + [353361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7491), 1, + ACTIONS(12780), 1, + anon_sym_LT, + STATE(7503), 1, sym_comment, - ACTIONS(2996), 2, + ACTIONS(8659), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [353383] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3977), 1, anon_sym_DASH, + ACTIONS(12782), 1, anon_sym_DOT2, - ACTIONS(2998), 9, + STATE(7504), 1, + sym_comment, + ACTIONS(3979), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -538352,34 +538649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [353049] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12623), 1, - aux_sym__immediate_decimal_token2, - STATE(7492), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [353073] = 4, + [353407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12758), 1, + ACTIONS(4026), 1, anon_sym_DASH, - STATE(7493), 1, + ACTIONS(12784), 1, + anon_sym_DOT2, + STATE(7505), 1, sym_comment, - ACTIONS(12756), 10, - anon_sym_EQ, + ACTIONS(4028), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -538389,423 +538668,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [353095] = 11, + [353431] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2149), 1, + ACTIONS(2175), 1, anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - STATE(7494), 1, + STATE(7506), 1, sym_comment, - STATE(7789), 1, + STATE(7568), 1, sym__immediate_decimal, - STATE(9717), 1, + STATE(9645), 1, sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7787), 2, + STATE(7567), 2, sym_expr_parenthesized, sym_val_variable, - [353131] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(12682), 1, - anon_sym_DASH, - ACTIONS(12752), 1, - anon_sym_LF, - STATE(7495), 1, - sym_comment, - STATE(7518), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12750), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353163] = 11, + [353467] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2077), 1, anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - STATE(7496), 1, + STATE(7507), 1, sym_comment, - STATE(7770), 1, + STATE(7579), 1, sym__immediate_decimal, - STATE(9717), 1, + STATE(9645), 1, sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7622), 2, + STATE(7578), 2, sym_expr_parenthesized, sym_val_variable, - [353199] = 6, + [353503] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12762), 1, - aux_sym__immediate_decimal_token2, - STATE(7497), 1, - sym_comment, - ACTIONS(815), 4, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_DASH_DASH, + ACTIONS(2081), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [353225] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12764), 1, - anon_sym_LT, - STATE(7498), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7508), 1, sym_comment, - ACTIONS(8786), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [353247] = 11, + STATE(7619), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7603), 2, + sym_expr_parenthesized, + sym_val_variable, + [353539] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2073), 1, anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - STATE(7499), 1, + STATE(7509), 1, sym_comment, - STATE(7675), 1, + STATE(7633), 1, sym__immediate_decimal, - STATE(9717), 1, + STATE(9645), 1, sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7801), 2, + STATE(7632), 2, sym_expr_parenthesized, sym_val_variable, - [353283] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12438), 1, - aux_sym__immediate_decimal_token2, - STATE(7500), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [353307] = 4, + [353575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12766), 1, - anon_sym_LT, - STATE(7501), 1, + STATE(7510), 1, sym_comment, - ACTIONS(8786), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [353329] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12768), 1, + ACTIONS(1221), 2, anon_sym_DASH, - STATE(7502), 1, - sym_comment, - ACTIONS(9138), 10, - anon_sym_EQ, + anon_sym_DOT2, + ACTIONS(1223), 9, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [353351] = 4, + [353597] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12770), 1, - anon_sym_DASH, - STATE(7503), 1, - sym_comment, - ACTIONS(9140), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2108), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [353373] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - ACTIONS(12774), 1, - anon_sym_LF, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7504), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7511), 1, sym_comment, - STATE(8752), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12772), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353405] = 4, + STATE(7802), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7800), 2, + sym_expr_parenthesized, + sym_val_variable, + [353633] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12778), 1, - anon_sym_DASH, - STATE(7505), 1, - sym_comment, - ACTIONS(12776), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2112), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [353427] = 4, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7512), 1, + sym_comment, + STATE(7805), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7803), 2, + sym_expr_parenthesized, + sym_val_variable, + [353669] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12782), 1, - anon_sym_DASH, - STATE(7506), 1, - sym_comment, - ACTIONS(12780), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2116), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [353449] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4182), 1, - anon_sym_LF, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7507), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7513), 1, sym_comment, - STATE(8763), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353481] = 11, + STATE(7811), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7810), 2, + sym_expr_parenthesized, + sym_val_variable, + [353705] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2120), 1, anon_sym_in, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - STATE(7508), 1, + STATE(7514), 1, sym_comment, - STATE(7700), 1, + STATE(7823), 1, sym__immediate_decimal, - STATE(9717), 1, + STATE(9645), 1, sym__var, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7692), 2, + STATE(7822), 2, sym_expr_parenthesized, sym_val_variable, - [353517] = 5, - ACTIONS(105), 1, + [353741] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12784), 1, - aux_sym__immediate_decimal_token2, - STATE(7509), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2124), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(844), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [353541] = 9, - ACTIONS(105), 1, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7515), 1, + sym_comment, + STATE(7829), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7828), 2, + sym_expr_parenthesized, + sym_val_variable, + [353777] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4182), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7510), 1, + ACTIONS(2128), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7516), 1, sym_comment, - STATE(7523), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353573] = 9, + STATE(7720), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7830), 2, + sym_expr_parenthesized, + sym_val_variable, + [353813] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11948), 1, - anon_sym_COLON, - ACTIONS(11997), 1, - anon_sym_EQ, - ACTIONS(12553), 1, - anon_sym_COMMA, - ACTIONS(12555), 1, - anon_sym_DASH, - STATE(7452), 1, - sym_param_value, - STATE(7511), 1, + ACTIONS(2132), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7517), 1, sym_comment, - STATE(7867), 1, - sym_param_type, - ACTIONS(12551), 5, - sym_identifier, - anon_sym_PIPE, + STATE(7574), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7659), 2, + sym_expr_parenthesized, + sym_val_variable, + [353849] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2136), 1, + anon_sym_in, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [353605] = 9, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7518), 1, + sym_comment, + STATE(7565), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7548), 2, + sym_expr_parenthesized, + sym_val_variable, + [353885] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4182), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7512), 1, + ACTIONS(8490), 1, + anon_sym_DOT2, + ACTIONS(8492), 1, + aux_sym_unquoted_token6, + STATE(7519), 1, sym_comment, - STATE(7524), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4180), 4, + ACTIONS(877), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [353637] = 6, + sym_filesize_unit, + sym_duration_unit, + [353911] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12786), 1, - anon_sym_DOT2, - ACTIONS(12789), 1, + ACTIONS(12525), 1, aux_sym__immediate_decimal_token2, - STATE(7513), 1, + STATE(7520), 1, sym_comment, - ACTIONS(837), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(835), 7, + anon_sym_DOT2, + ACTIONS(815), 7, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, @@ -538813,87 +539025,63 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [353663] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - ACTIONS(12793), 1, - anon_sym_LF, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7514), 1, - sym_comment, - STATE(8754), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12791), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353695] = 9, - ACTIONS(105), 1, + [353935] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(3763), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(12797), 1, - anon_sym_LF, - STATE(7515), 1, + ACTIONS(12388), 1, + sym_identifier, + STATE(7521), 1, sym_comment, - STATE(7522), 1, + STATE(8257), 1, + sym__variable_name, + STATE(8540), 1, + sym__var, + STATE(8947), 1, + sym_val_variable, + STATE(9091), 1, sym__flag, - STATE(8165), 1, + STATE(9540), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - ACTIONS(12795), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353727] = 9, + [353973] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(12682), 1, - anon_sym_DASH, - ACTIONS(12797), 1, - anon_sym_LF, - STATE(7514), 1, - sym__flag, - STATE(7516), 1, + ACTIONS(12786), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12788), 1, + aux_sym__immediate_decimal_token2, + STATE(7522), 1, sym_comment, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12795), 4, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [353759] = 6, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [353999] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12623), 1, + ACTIONS(12529), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12799), 1, - anon_sym_DOT2, - STATE(7517), 1, + STATE(7523), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, + anon_sym_DOT2, ACTIONS(807), 7, anon_sym_SEMI, anon_sym_PIPE, @@ -538902,377 +539090,320 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [353785] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - ACTIONS(12797), 1, - anon_sym_LF, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7518), 1, - sym_comment, - STATE(8755), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12795), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353817] = 4, + [354023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3888), 1, + ACTIONS(12533), 1, anon_sym_DASH, - STATE(7519), 1, + STATE(7524), 1, sym_comment, - ACTIONS(3890), 10, + ACTIONS(8659), 10, + anon_sym_EQ, + sym_identifier, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT2, - [353839] = 9, + [354045] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(12682), 1, - anon_sym_DASH, - ACTIONS(12752), 1, - anon_sym_LF, - STATE(7515), 1, - sym__flag, - STATE(7520), 1, + ACTIONS(12790), 1, + aux_sym__immediate_decimal_token2, + STATE(7525), 1, sym_comment, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12750), 4, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [353871] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4094), 1, anon_sym_DASH_DASH, - ACTIONS(12682), 1, anon_sym_DASH, - ACTIONS(12752), 1, - anon_sym_LF, - STATE(7516), 1, - sym__flag, - STATE(7521), 1, - sym_comment, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12750), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [353903] = 9, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [354069] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(12682), 1, + ACTIONS(12792), 1, anon_sym_DASH, - ACTIONS(12793), 1, - anon_sym_LF, - STATE(7504), 1, - sym__flag, - STATE(7522), 1, + STATE(7526), 1, sym_comment, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(12791), 4, - anon_sym_SEMI, + ACTIONS(8021), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [353935] = 9, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [354091] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_LF, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7523), 1, + ACTIONS(12794), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12796), 1, + aux_sym__immediate_decimal_token2, + STATE(7527), 1, sym_comment, - STATE(8761), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4490), 4, + ACTIONS(809), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [353967] = 9, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [354117] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4492), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7524), 1, - sym_comment, + ACTIONS(12798), 1, + anon_sym_DOT2, + ACTIONS(12801), 1, + aux_sym__immediate_decimal_token2, STATE(7528), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4490), 4, + sym_comment, + ACTIONS(848), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(846), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [353999] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4094), 1, anon_sym_DASH_DASH, - ACTIONS(4492), 1, - anon_sym_LF, - ACTIONS(12682), 1, anon_sym_DASH, - STATE(7525), 1, - sym_comment, - STATE(7530), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4490), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354031] = 9, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [354143] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4492), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7526), 1, + ACTIONS(12525), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12803), 1, + anon_sym_DOT2, + STATE(7529), 1, sym_comment, - STATE(7531), 1, - sym__flag, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4490), 4, + ACTIONS(817), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(815), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [354063] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4094), 1, anon_sym_DASH_DASH, - ACTIONS(4182), 1, - anon_sym_LF, - ACTIONS(12682), 1, anon_sym_DASH, - STATE(7525), 1, - sym__flag, - STATE(7527), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [354169] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, + anon_sym_DASH_DASH, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7491), 1, + aux_sym_decl_def_repeat1, + STATE(7530), 1, sym_comment, - STATE(8165), 1, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, + STATE(8698), 1, sym_long_flag, - ACTIONS(4180), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354095] = 9, - ACTIONS(105), 1, + STATE(9750), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [354207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4442), 1, - anon_sym_LF, - ACTIONS(12730), 1, - anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7528), 1, + STATE(7531), 1, sym_comment, - STATE(8751), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4440), 4, - anon_sym_SEMI, + ACTIONS(4032), 2, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(4034), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [354127] = 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [354229] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3830), 1, + anon_sym_DQUOTE, + ACTIONS(12417), 1, + anon_sym_LPAREN, + ACTIONS(12419), 1, + anon_sym_DOLLAR, + ACTIONS(12806), 1, + sym_cmd_identifier, + STATE(3990), 1, + sym__var, + STATE(4288), 1, + sym__str_double_quotes, + STATE(7532), 1, + sym_comment, + ACTIONS(3832), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1102), 3, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + [354263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(12810), 1, anon_sym_DASH, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(7150), 1, - sym_path, - STATE(7529), 1, + STATE(7533), 1, sym_comment, - STATE(7597), 1, - sym_cell_path, - ACTIONS(999), 7, + ACTIONS(12808), 10, anon_sym_EQ, + sym_identifier, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [354155] = 9, - ACTIONS(105), 1, + [354285] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, - ACTIONS(4442), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7530), 1, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7534), 1, sym_comment, - STATE(7533), 1, - sym__flag, - STATE(8165), 1, + STATE(7536), 1, + aux_sym_decl_def_repeat1, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, + STATE(8698), 1, sym_long_flag, - ACTIONS(4440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354187] = 9, - ACTIONS(105), 1, + STATE(9524), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [354323] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, - ACTIONS(4442), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7531), 1, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7535), 1, sym_comment, - STATE(7536), 1, - sym__flag, - STATE(8165), 1, + STATE(7537), 1, + aux_sym_decl_def_repeat1, + STATE(7877), 1, + sym_val_string, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, + STATE(8698), 1, sym_long_flag, - ACTIONS(4440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354219] = 9, - ACTIONS(105), 1, + STATE(9542), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [354361] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, - ACTIONS(4442), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7532), 1, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7536), 1, sym_comment, - STATE(7537), 1, - sym__flag, - STATE(8165), 1, + STATE(7877), 1, + sym_val_string, + STATE(7913), 1, + aux_sym_decl_def_repeat1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, + STATE(8698), 1, sym_long_flag, - ACTIONS(4440), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354251] = 9, - ACTIONS(105), 1, + STATE(9543), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [354399] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4434), 1, - anon_sym_LF, - ACTIONS(12730), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, anon_sym_DASH_DASH, - ACTIONS(12732), 1, - anon_sym_DASH, - STATE(4175), 1, - sym_long_flag_equals_value, - STATE(7533), 1, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7537), 1, sym_comment, - STATE(8758), 1, - sym__flag, - STATE(4152), 2, - sym_short_flag, + STATE(7877), 1, + sym_val_string, + STATE(7913), 1, + aux_sym_decl_def_repeat1, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, sym_long_flag, - ACTIONS(4432), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [354283] = 5, + STATE(9547), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [354437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3921), 1, + STATE(7538), 1, + sym_comment, + ACTIONS(3804), 2, anon_sym_DASH, - ACTIONS(12802), 1, anon_sym_DOT2, - STATE(7534), 1, - sym_comment, - ACTIONS(3923), 9, + ACTIONS(3806), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539282,16 +539413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [354307] = 5, + [354459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3927), 1, + STATE(7539), 1, + sym_comment, + ACTIONS(2998), 2, anon_sym_DASH, - ACTIONS(12804), 1, anon_sym_DOT2, - STATE(7535), 1, - sym_comment, - ACTIONS(3929), 9, + ACTIONS(3000), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539301,407 +539431,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [354331] = 9, + [354481] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(4434), 1, + ACTIONS(4348), 1, anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7486), 1, + STATE(7489), 1, sym__flag, - STATE(7536), 1, + STATE(7540), 1, sym_comment, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4432), 4, + ACTIONS(4346), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [354363] = 9, + [354513] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(4158), 1, anon_sym_DASH_DASH, - ACTIONS(4434), 1, + ACTIONS(4348), 1, anon_sym_LF, - ACTIONS(12682), 1, + ACTIONS(12708), 1, anon_sym_DASH, - STATE(7495), 1, + STATE(7488), 1, sym__flag, - STATE(7537), 1, + STATE(7541), 1, sym_comment, - STATE(8165), 1, + STATE(8198), 1, sym_long_flag_equals_value, - STATE(8166), 2, + STATE(8176), 2, sym_short_flag, sym_long_flag, - ACTIONS(4432), 4, + ACTIONS(4346), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [354395] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3016), 1, - anon_sym_DASH_DASH, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12228), 1, - sym_identifier, - STATE(7538), 1, - sym_comment, - STATE(8186), 1, - sym__variable_name, - STATE(8410), 1, - sym__var, - STATE(8977), 1, - sym_val_variable, - STATE(9124), 1, - sym__flag, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [354433] = 9, + [354545] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4094), 1, - anon_sym_DASH_DASH, - ACTIONS(4434), 1, - anon_sym_LF, - ACTIONS(12682), 1, - anon_sym_DASH, - STATE(7521), 1, - sym__flag, - STATE(7539), 1, + STATE(7542), 1, sym_comment, - STATE(8165), 1, - sym_long_flag_equals_value, - STATE(8166), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(4432), 4, + ACTIONS(896), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [354465] = 10, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [354567] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(12298), 1, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(1506), 1, + STATE(2634), 1, sym__var, - STATE(2013), 1, + STATE(3780), 1, sym__immediate_decimal, - STATE(7540), 1, + STATE(7543), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2010), 2, + STATE(3779), 2, sym_expr_parenthesized, sym_val_variable, - [354498] = 10, + [354600] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1795), 1, - anon_sym_DOT2, - ACTIONS(12468), 1, - anon_sym_LPAREN, - ACTIONS(12470), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(12476), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(12116), 1, aux_sym__immediate_decimal_token1, - STATE(1266), 1, + STATE(7544), 1, + sym_comment, + STATE(7983), 1, sym__var, - STATE(1539), 1, + STATE(8860), 1, sym__immediate_decimal, - STATE(7541), 1, - sym_comment, - ACTIONS(1803), 2, + ACTIONS(11641), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1722), 2, + STATE(8859), 2, sym_expr_parenthesized, sym_val_variable, - [354531] = 4, - ACTIONS(105), 1, + [354633] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7542), 1, + ACTIONS(4086), 1, + anon_sym_DASH, + STATE(7545), 1, sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 7, - anon_sym_SEMI, + ACTIONS(4088), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [354552] = 4, - ACTIONS(105), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [354654] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7543), 1, + ACTIONS(4338), 1, + anon_sym_DASH, + STATE(7546), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 7, - anon_sym_SEMI, + ACTIONS(4340), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [354573] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [354675] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(12266), 1, + ACTIONS(12417), 1, + anon_sym_LPAREN, + ACTIONS(12419), 1, + anon_sym_DOLLAR, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - STATE(7544), 1, - sym_comment, - STATE(7590), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(3990), 1, sym__var, - ACTIONS(11861), 2, + STATE(4300), 1, + sym__immediate_decimal, + STATE(7547), 1, + sym_comment, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7589), 2, + STATE(4299), 2, sym_expr_parenthesized, sym_val_variable, - [354606] = 4, - ACTIONS(105), 1, + [354708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7545), 1, + ACTIONS(4072), 1, + anon_sym_DASH, + STATE(7548), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 7, - anon_sym_SEMI, + ACTIONS(4074), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [354627] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [354729] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(12458), 1, + ACTIONS(12417), 1, anon_sym_LPAREN, - ACTIONS(12460), 1, + ACTIONS(12419), 1, anon_sym_DOLLAR, - ACTIONS(12466), 1, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - STATE(3943), 1, + STATE(3990), 1, sym__var, - STATE(4099), 1, + STATE(4304), 1, sym__immediate_decimal, - STATE(7546), 1, + STATE(7549), 1, sym_comment, - ACTIONS(7464), 2, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4102), 2, + STATE(4301), 2, sym_expr_parenthesized, sym_val_variable, - [354660] = 10, + [354762] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(4050), 1, anon_sym_DOT2, - ACTIONS(12458), 1, - anon_sym_LPAREN, - ACTIONS(12460), 1, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(12466), 1, + ACTIONS(12376), 1, + anon_sym_LPAREN, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(3943), 1, + STATE(2661), 1, sym__var, - STATE(4096), 1, + STATE(3194), 1, sym__immediate_decimal, - STATE(7547), 1, + STATE(7550), 1, sym_comment, - ACTIONS(7464), 2, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4097), 2, + STATE(3192), 2, sym_expr_parenthesized, sym_val_variable, - [354693] = 4, + [354795] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4138), 1, - anon_sym_DASH, - STATE(7548), 1, - sym_comment, - ACTIONS(4140), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [354714] = 10, + ACTIONS(12376), 1, + anon_sym_LPAREN, + ACTIONS(12382), 1, + aux_sym__immediate_decimal_token1, + STATE(2661), 1, + sym__var, + STATE(3197), 1, + sym__immediate_decimal, + STATE(7551), 1, + sym_comment, + ACTIONS(4058), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3195), 2, + sym_expr_parenthesized, + sym_val_variable, + [354828] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(12458), 1, + ACTIONS(12417), 1, anon_sym_LPAREN, - ACTIONS(12460), 1, + ACTIONS(12419), 1, anon_sym_DOLLAR, - ACTIONS(12466), 1, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - STATE(3943), 1, + STATE(3990), 1, sym__var, - STATE(4094), 1, + STATE(4309), 1, sym__immediate_decimal, - STATE(7549), 1, + STATE(7552), 1, sym_comment, - ACTIONS(7464), 2, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4095), 2, + STATE(4305), 2, sym_expr_parenthesized, sym_val_variable, - [354747] = 10, + [354861] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7456), 1, + ACTIONS(7482), 1, anon_sym_DOT2, - ACTIONS(12458), 1, + ACTIONS(12417), 1, anon_sym_LPAREN, - ACTIONS(12460), 1, + ACTIONS(12419), 1, anon_sym_DOLLAR, - ACTIONS(12466), 1, + ACTIONS(12425), 1, aux_sym__immediate_decimal_token1, - STATE(3943), 1, + STATE(3990), 1, sym__var, - STATE(4090), 1, + STATE(4325), 1, sym__immediate_decimal, - STATE(7550), 1, + STATE(7553), 1, sym_comment, - ACTIONS(7464), 2, + ACTIONS(7490), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4092), 2, + STATE(4321), 2, sym_expr_parenthesized, sym_val_variable, - [354780] = 10, + [354894] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(12143), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - STATE(4690), 1, - sym__var, - STATE(7551), 1, + STATE(7554), 1, sym_comment, - STATE(8277), 1, + STATE(7711), 1, sym__immediate_decimal, - ACTIONS(11501), 2, + STATE(8167), 1, + sym__var, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8280), 2, + STATE(7843), 2, sym_expr_parenthesized, sym_val_variable, - [354813] = 10, + [354927] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11497), 1, + ACTIONS(12143), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - STATE(4690), 1, + STATE(7555), 1, + sym_comment, + STATE(7587), 1, + sym__immediate_decimal, + STATE(8167), 1, sym__var, - STATE(7552), 1, + ACTIONS(11777), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7767), 2, + sym_expr_parenthesized, + sym_val_variable, + [354960] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11671), 1, + anon_sym_DOLLAR, + ACTIONS(11765), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12143), 1, + aux_sym__immediate_decimal_token1, + STATE(7556), 1, sym_comment, - STATE(8281), 1, + STATE(7716), 1, sym__immediate_decimal, - ACTIONS(11501), 2, + STATE(8167), 1, + sym__var, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8283), 2, + STATE(7723), 2, sym_expr_parenthesized, sym_val_variable, - [354846] = 10, + [354993] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, + ACTIONS(11671), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(11765), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(12266), 1, + ACTIONS(12143), 1, aux_sym__immediate_decimal_token1, - STATE(7553), 1, + STATE(7557), 1, sym_comment, - STATE(7588), 1, + STATE(7721), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(8167), 1, sym__var, - ACTIONS(11861), 2, + ACTIONS(11777), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7586), 2, + STATE(7719), 2, sym_expr_parenthesized, sym_val_variable, - [354879] = 4, + [355026] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7558), 1, + sym_comment, + STATE(7560), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(12740), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12742), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [355057] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7559), 1, + sym_comment, + STATE(7561), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(12740), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12742), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [355088] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12814), 1, + anon_sym_DASH_DASH, + ACTIONS(12816), 1, + anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, + STATE(7560), 1, + sym_comment, + STATE(9565), 1, + sym__flag, + ACTIONS(12744), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12746), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4338), 2, + sym_short_flag, + sym_long_flag, + [355119] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7561), 1, + sym_comment, + STATE(7566), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(12744), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12746), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [355150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4374), 1, + ACTIONS(4311), 1, anon_sym_DASH, - STATE(7554), 1, + STATE(7562), 1, sym_comment, - ACTIONS(4376), 9, + ACTIONS(4313), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539711,14 +539927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [354900] = 4, + [355171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4378), 1, + ACTIONS(4315), 1, anon_sym_DASH, - STATE(7555), 1, + STATE(7563), 1, sym_comment, - ACTIONS(4380), 9, + ACTIONS(4317), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539728,60 +539944,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [354921] = 10, + [355192] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12814), 1, + anon_sym_DASH_DASH, + ACTIONS(12816), 1, + anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, + STATE(7564), 1, + sym_comment, + STATE(9535), 1, + sym__flag, + ACTIONS(12736), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12738), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4338), 2, + sym_short_flag, + sym_long_flag, + [355223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(12332), 1, - anon_sym_LPAREN, - ACTIONS(12334), 1, + ACTIONS(4076), 1, + anon_sym_DASH, + STATE(7565), 1, + sym_comment, + ACTIONS(4078), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12340), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [355244] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12814), 1, + anon_sym_DASH_DASH, + ACTIONS(12816), 1, + anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, + STATE(7566), 1, + sym_comment, + STATE(9573), 1, + sym__flag, + ACTIONS(12748), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12750), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4338), 2, + sym_short_flag, + sym_long_flag, + [355275] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4390), 1, + anon_sym_DASH, + STATE(7567), 1, + sym_comment, + ACTIONS(4392), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [355296] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4394), 1, + anon_sym_DASH, + STATE(7568), 1, + sym_comment, + ACTIONS(4396), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [355317] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7569), 1, + sym_comment, + STATE(7687), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4346), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4348), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [355348] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(6159), 1, sym__var, - STATE(3517), 1, + STATE(6742), 1, sym__immediate_decimal, - STATE(7556), 1, + STATE(7570), 1, sym_comment, - ACTIONS(4456), 2, + ACTIONS(8358), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3516), 2, + STATE(6741), 2, sym_expr_parenthesized, sym_val_variable, - [354954] = 10, + [355381] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(11849), 1, + ACTIONS(8346), 1, anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(8350), 1, anon_sym_DOT2, - ACTIONS(12266), 1, + ACTIONS(12092), 1, aux_sym__immediate_decimal_token1, - STATE(7557), 1, + STATE(6159), 1, + sym__var, + STATE(6757), 1, + sym__immediate_decimal, + STATE(7571), 1, sym_comment, - STATE(7593), 1, + ACTIONS(8358), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6744), 2, + sym_expr_parenthesized, + sym_val_variable, + [355414] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token1, + STATE(6159), 1, + sym__var, + STATE(6765), 1, sym__immediate_decimal, - STATE(8128), 1, + STATE(7572), 1, + sym_comment, + ACTIONS(8358), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6763), 2, + sym_expr_parenthesized, + sym_val_variable, + [355447] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(8346), 1, + anon_sym_LPAREN, + ACTIONS(8350), 1, + anon_sym_DOT2, + ACTIONS(12092), 1, + aux_sym__immediate_decimal_token1, + STATE(6159), 1, sym__var, - ACTIONS(11861), 2, + STATE(6770), 1, + sym__immediate_decimal, + STATE(7573), 1, + sym_comment, + ACTIONS(8358), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7592), 2, + STATE(6767), 2, sym_expr_parenthesized, sym_val_variable, - [354987] = 4, + [355480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4142), 1, + ACTIONS(4068), 1, anon_sym_DASH, - STATE(7558), 1, + STATE(7574), 1, sym_comment, - ACTIONS(4144), 9, + ACTIONS(4070), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -539791,14 +540170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [355008] = 4, + [355501] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4146), 1, + ACTIONS(4090), 1, anon_sym_DASH, - STATE(7559), 1, + STATE(7575), 1, sym_comment, - ACTIONS(4148), 9, + ACTIONS(4092), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -539808,14 +540187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [355029] = 4, + [355522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4382), 1, + ACTIONS(12820), 1, anon_sym_DASH, - STATE(7560), 1, + STATE(7576), 1, sym_comment, - ACTIONS(4384), 9, + ACTIONS(12818), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539825,99 +540204,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355050] = 4, + [355543] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, + anon_sym_LPAREN, + ACTIONS(12433), 1, + anon_sym_DOLLAR, + STATE(5147), 1, + sym__var, + STATE(6328), 1, + sym__immediate_decimal, + STATE(7577), 1, + sym_comment, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6327), 2, + sym_expr_parenthesized, + sym_val_variable, + [355576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4532), 1, + ACTIONS(4398), 1, anon_sym_DASH, - STATE(7561), 1, + STATE(7578), 1, sym_comment, - ACTIONS(4534), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(4400), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355071] = 4, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [355597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4394), 1, + ACTIONS(4406), 1, anon_sym_DASH, - STATE(7562), 1, + STATE(7579), 1, sym_comment, - ACTIONS(4396), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4408), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355092] = 4, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [355618] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4398), 1, - anon_sym_DASH, - STATE(7563), 1, + ACTIONS(11419), 1, + anon_sym_DOLLAR, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + STATE(7193), 1, + sym__var, + STATE(7580), 1, sym_comment, - ACTIONS(4400), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(7711), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7843), 2, + sym_expr_parenthesized, + sym_val_variable, + [355651] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11419), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [355113] = 4, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + STATE(7193), 1, + sym__var, + STATE(7581), 1, + sym_comment, + STATE(7587), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7767), 2, + sym_expr_parenthesized, + sym_val_variable, + [355684] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4406), 1, - anon_sym_DASH, - STATE(7564), 1, + ACTIONS(11419), 1, + anon_sym_DOLLAR, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + STATE(7193), 1, + sym__var, + STATE(7582), 1, sym_comment, - ACTIONS(4408), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(7716), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7723), 2, + sym_expr_parenthesized, + sym_val_variable, + [355717] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11419), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, + anon_sym_DOT2, + ACTIONS(12193), 1, + aux_sym__immediate_decimal_token1, + STATE(7193), 1, + sym__var, + STATE(7583), 1, + sym_comment, + STATE(7721), 1, + sym__immediate_decimal, + ACTIONS(11457), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7719), 2, + sym_expr_parenthesized, + sym_val_variable, + [355750] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8162), 1, + anon_sym_DOT2, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, + anon_sym_LPAREN, + ACTIONS(12433), 1, + anon_sym_DOLLAR, + STATE(5147), 1, + sym__var, + STATE(6330), 1, + sym__immediate_decimal, + STATE(7584), 1, + sym_comment, + ACTIONS(11879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6329), 2, + sym_expr_parenthesized, + sym_val_variable, + [355783] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12822), 1, + aux_sym__immediate_decimal_token2, + STATE(7585), 1, + sym_comment, + ACTIONS(855), 4, + sym_cmd_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 5, anon_sym_DASH_DASH, - [355134] = 4, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [355806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4410), 1, - anon_sym_DASH, - STATE(7565), 1, + STATE(7586), 1, sym_comment, - ACTIONS(4412), 9, + ACTIONS(9019), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [355155] = 4, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [355825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4414), 1, + ACTIONS(4172), 1, anon_sym_DASH, - STATE(7566), 1, + STATE(7587), 1, sym_comment, - ACTIONS(4416), 9, + ACTIONS(4174), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -539927,75 +540427,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355176] = 4, + [355846] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4536), 1, + ACTIONS(2096), 1, + anon_sym_DOT2, + ACTIONS(11375), 1, + anon_sym_LPAREN, + ACTIONS(11979), 1, + anon_sym_DOLLAR, + ACTIONS(12652), 1, + aux_sym__immediate_decimal_token1, + STATE(1469), 1, + sym__var, + STATE(2107), 1, + sym__immediate_decimal, + STATE(7588), 1, + sym_comment, + ACTIONS(2104), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2106), 2, + sym_expr_parenthesized, + sym_val_variable, + [355879] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2259), 1, + anon_sym_DOT2, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, + sym__var, + STATE(2149), 1, + sym__immediate_decimal, + STATE(7589), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2272), 2, + sym_expr_parenthesized, + sym_val_variable, + [355912] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7567), 1, + STATE(7590), 1, sym_comment, - ACTIONS(4538), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(7753), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4154), 2, + anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(4156), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [355943] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(12003), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [355197] = 10, + ACTIONS(12207), 1, + anon_sym_LPAREN, + ACTIONS(12213), 1, + aux_sym__immediate_decimal_token1, + STATE(4970), 1, + sym__var, + STATE(5933), 1, + sym__immediate_decimal, + STATE(7591), 1, + sym_comment, + ACTIONS(7749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5931), 2, + sym_expr_parenthesized, + sym_val_variable, + [355976] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(7741), 1, anon_sym_DOT2, - ACTIONS(12332), 1, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12207), 1, anon_sym_LPAREN, - ACTIONS(12334), 1, + ACTIONS(12213), 1, + aux_sym__immediate_decimal_token1, + STATE(4970), 1, + sym__var, + STATE(5948), 1, + sym__immediate_decimal, + STATE(7592), 1, + sym_comment, + ACTIONS(7749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5934), 2, + sym_expr_parenthesized, + sym_val_variable, + [356009] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + anon_sym_DOT2, + ACTIONS(12003), 1, anon_sym_DOLLAR, - ACTIONS(12340), 1, + ACTIONS(12207), 1, + anon_sym_LPAREN, + ACTIONS(12213), 1, aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(4970), 1, sym__var, - STATE(3514), 1, + STATE(5957), 1, sym__immediate_decimal, - STATE(7568), 1, + STATE(7593), 1, sym_comment, - ACTIONS(4456), 2, + ACTIONS(7749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3513), 2, + STATE(5949), 2, sym_expr_parenthesized, sym_val_variable, - [355230] = 6, + [356042] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, - anon_sym_DASH, - ACTIONS(12806), 1, + ACTIONS(7741), 1, anon_sym_DOT2, - ACTIONS(12810), 1, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12207), 1, + anon_sym_LPAREN, + ACTIONS(12213), 1, + aux_sym__immediate_decimal_token1, + STATE(4970), 1, + sym__var, + STATE(5964), 1, + sym__immediate_decimal, + STATE(7594), 1, + sym_comment, + ACTIONS(7749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(5962), 2, + sym_expr_parenthesized, + sym_val_variable, + [356075] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12824), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12826), 1, aux_sym__immediate_decimal_token2, - STATE(7569), 1, + STATE(7595), 1, sym_comment, - ACTIONS(3491), 7, + ACTIONS(3000), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 6, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [355255] = 4, + anon_sym_DASH, + anon_sym_RBRACE, + [356100] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4418), 1, + ACTIONS(2259), 1, + anon_sym_DOT2, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, + sym__var, + STATE(2151), 1, + sym__immediate_decimal, + STATE(7596), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2150), 2, + sym_expr_parenthesized, + sym_val_variable, + [356133] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2259), 1, + anon_sym_DOT2, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, + sym__var, + STATE(2153), 1, + sym__immediate_decimal, + STATE(7597), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2152), 2, + sym_expr_parenthesized, + sym_val_variable, + [356166] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2259), 1, + anon_sym_DOT2, + ACTIONS(11397), 1, + anon_sym_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, + sym__var, + STATE(2156), 1, + sym__immediate_decimal, + STATE(7598), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2154), 2, + sym_expr_parenthesized, + sym_val_variable, + [356199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4646), 1, anon_sym_DASH, - STATE(7570), 1, + STATE(7599), 1, sym_comment, - ACTIONS(4420), 9, + ACTIONS(4648), 9, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -540003,37 +540692,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355276] = 10, + [356220] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, - anon_sym_DOLLAR, - ACTIONS(11849), 1, - anon_sym_LPAREN, - ACTIONS(11853), 1, + ACTIONS(2096), 1, anon_sym_DOT2, - ACTIONS(12266), 1, + ACTIONS(11375), 1, + anon_sym_LPAREN, + ACTIONS(11979), 1, + anon_sym_DOLLAR, + ACTIONS(12652), 1, aux_sym__immediate_decimal_token1, - STATE(7571), 1, - sym_comment, - STATE(7596), 1, - sym__immediate_decimal, - STATE(8128), 1, + STATE(1469), 1, sym__var, - ACTIONS(11861), 2, + STATE(2111), 1, + sym__immediate_decimal, + STATE(7600), 1, + sym_comment, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7595), 2, + STATE(2110), 2, sym_expr_parenthesized, sym_val_variable, - [355309] = 4, + [356253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4422), 1, + ACTIONS(4322), 1, anon_sym_DASH, - STATE(7572), 1, + STATE(7601), 1, sym_comment, - ACTIONS(4424), 9, + ACTIONS(4324), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540043,48 +540732,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355330] = 4, + [356274] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4158), 1, + ACTIONS(4650), 1, anon_sym_DASH, - STATE(7573), 1, + STATE(7602), 1, sym_comment, - ACTIONS(4160), 9, + ACTIONS(4652), 9, + anon_sym_EQ, + sym_identifier, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [355351] = 4, + [356295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4428), 1, + ACTIONS(4412), 1, anon_sym_DASH, - STATE(7574), 1, + STATE(7603), 1, sym_comment, - ACTIONS(4430), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4414), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355372] = 4, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [356316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4326), 1, anon_sym_DASH, - STATE(7575), 1, + STATE(7604), 1, sym_comment, - ACTIONS(4372), 9, + ACTIONS(4328), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540094,156 +540783,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355393] = 10, + [356337] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(12350), 1, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12352), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12358), 1, + ACTIONS(12233), 1, aux_sym__immediate_decimal_token1, - STATE(3970), 1, + STATE(5928), 1, sym__var, - STATE(4292), 1, + STATE(6377), 1, sym__immediate_decimal, - STATE(7576), 1, + STATE(7605), 1, sym_comment, - ACTIONS(7500), 2, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4300), 2, + STATE(6376), 2, sym_expr_parenthesized, sym_val_variable, - [355426] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12814), 1, - anon_sym_DASH, - STATE(7577), 1, - sym_comment, - ACTIONS(12812), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [355447] = 10, + [356370] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(12350), 1, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12352), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12358), 1, + ACTIONS(12233), 1, aux_sym__immediate_decimal_token1, - STATE(3970), 1, + STATE(5928), 1, sym__var, - STATE(4304), 1, + STATE(6491), 1, sym__immediate_decimal, - STATE(7578), 1, + STATE(7606), 1, sym_comment, - ACTIONS(7500), 2, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4310), 2, + STATE(6378), 2, sym_expr_parenthesized, sym_val_variable, - [355480] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4168), 1, - anon_sym_DASH, - STATE(7579), 1, - sym_comment, - ACTIONS(4170), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [355501] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7580), 1, - sym_comment, - ACTIONS(9085), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [355520] = 10, + [356403] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(12350), 1, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12352), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12358), 1, + ACTIONS(12233), 1, aux_sym__immediate_decimal_token1, - STATE(3970), 1, + STATE(5928), 1, sym__var, - STATE(4318), 1, + STATE(6383), 1, sym__immediate_decimal, - STATE(7581), 1, + STATE(7607), 1, sym_comment, - ACTIONS(7500), 2, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4322), 2, + STATE(6382), 2, sym_expr_parenthesized, sym_val_variable, - [355553] = 10, + [356436] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7492), 1, + ACTIONS(8257), 1, anon_sym_DOT2, - ACTIONS(12350), 1, + ACTIONS(12225), 1, anon_sym_LPAREN, - ACTIONS(12352), 1, + ACTIONS(12227), 1, anon_sym_DOLLAR, - ACTIONS(12358), 1, + ACTIONS(12233), 1, aux_sym__immediate_decimal_token1, - STATE(3970), 1, + STATE(5928), 1, sym__var, - STATE(4227), 1, + STATE(6385), 1, sym__immediate_decimal, - STATE(7582), 1, + STATE(7608), 1, sym_comment, - ACTIONS(7500), 2, + ACTIONS(8265), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4331), 2, + STATE(6384), 2, sym_expr_parenthesized, sym_val_variable, - [355586] = 4, + [356469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4368), 1, anon_sym_DASH, - STATE(7583), 1, + STATE(7609), 1, sym_comment, - ACTIONS(4468), 9, + ACTIONS(4370), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540253,14 +540892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355607] = 4, + [356490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, + ACTIONS(4372), 1, anon_sym_DASH, - STATE(7584), 1, + STATE(7610), 1, sym_comment, - ACTIONS(4472), 9, + ACTIONS(4374), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540270,14 +540909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355628] = 4, + [356511] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4474), 1, + ACTIONS(4376), 1, anon_sym_DASH, - STATE(7585), 1, + STATE(7611), 1, sym_comment, - ACTIONS(4476), 9, + ACTIONS(4378), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540287,14 +540926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355649] = 4, + [356532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4486), 1, + ACTIONS(4380), 1, anon_sym_DASH, - STATE(7586), 1, + STATE(7612), 1, sym_comment, - ACTIONS(4488), 9, + ACTIONS(4382), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540304,31 +540943,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355670] = 4, + [356553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4172), 1, + ACTIONS(4386), 1, anon_sym_DASH, - STATE(7587), 1, + STATE(7613), 1, sym_comment, - ACTIONS(4174), 9, + ACTIONS(4388), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [355691] = 4, + [356574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4044), 1, + ACTIONS(4402), 1, anon_sym_DASH, - STATE(7588), 1, + STATE(7614), 1, sym_comment, - ACTIONS(4046), 9, + ACTIONS(4404), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540338,14 +540977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355712] = 4, + [356595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(4416), 1, anon_sym_DASH, - STATE(7589), 1, + STATE(7615), 1, sym_comment, - ACTIONS(4322), 9, + ACTIONS(4418), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540355,14 +540994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355733] = 4, + [356616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4311), 1, + ACTIONS(4420), 1, anon_sym_DASH, - STATE(7590), 1, + STATE(7616), 1, sym_comment, - ACTIONS(4313), 9, + ACTIONS(4422), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540372,30 +541011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355754] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7591), 1, - sym_comment, - ACTIONS(9099), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [355773] = 4, + [356637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4307), 1, + ACTIONS(4424), 1, anon_sym_DASH, - STATE(7592), 1, + STATE(7617), 1, sym_comment, - ACTIONS(4309), 9, + ACTIONS(4426), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540405,71 +541028,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355794] = 4, + [356658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(1221), 1, anon_sym_DASH, - STATE(7593), 1, + STATE(7618), 1, sym_comment, - ACTIONS(4305), 9, - sym_identifier, + ACTIONS(1223), 9, + anon_sym_EQ, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355815] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7442), 1, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, - anon_sym_DOLLAR, - ACTIONS(12172), 1, - anon_sym_LPAREN, - STATE(4090), 1, - sym__immediate_decimal, - STATE(7594), 1, - sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4092), 2, - sym_expr_parenthesized, - sym_val_variable, - [355848] = 4, + [356679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4299), 1, + ACTIONS(4455), 1, anon_sym_DASH, - STATE(7595), 1, + STATE(7619), 1, sym_comment, - ACTIONS(4301), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4457), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355869] = 4, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [356700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4295), 1, + ACTIONS(4470), 1, anon_sym_DASH, - STATE(7596), 1, + STATE(7620), 1, sym_comment, - ACTIONS(4297), 9, + ACTIONS(4472), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540479,77 +541079,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355890] = 4, + [356721] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1259), 1, - anon_sym_DASH, - STATE(7597), 1, - sym_comment, - ACTIONS(1261), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(8472), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - [355911] = 10, + ACTIONS(12247), 1, + aux_sym__immediate_decimal_token1, + STATE(6226), 1, + sym__var, + STATE(6780), 1, + sym__immediate_decimal, + STATE(7621), 1, + sym_comment, + ACTIONS(8569), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6876), 2, + sym_expr_parenthesized, + sym_val_variable, + [356754] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(12172), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - STATE(4094), 1, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(12247), 1, + aux_sym__immediate_decimal_token1, + STATE(6226), 1, + sym__var, + STATE(6792), 1, sym__immediate_decimal, - STATE(7598), 1, + STATE(7622), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4095), 2, + STATE(6788), 2, sym_expr_parenthesized, sym_val_variable, - [355944] = 10, + [356787] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(11653), 1, + ACTIONS(12247), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, + STATE(6226), 1, + sym__var, + STATE(6809), 1, + sym__immediate_decimal, + STATE(7623), 1, + sym_comment, + ACTIONS(8569), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(6802), 2, + sym_expr_parenthesized, + sym_val_variable, + [356820] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(12172), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - STATE(4096), 1, + ACTIONS(8561), 1, + anon_sym_DOT2, + ACTIONS(12247), 1, + aux_sym__immediate_decimal_token1, + STATE(6226), 1, + sym__var, + STATE(6823), 1, sym__immediate_decimal, - STATE(7599), 1, + STATE(7624), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4097), 2, + STATE(6821), 2, sym_expr_parenthesized, sym_val_variable, - [355977] = 4, + [356853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4269), 1, + ACTIONS(4486), 1, anon_sym_DASH, - STATE(7600), 1, + STATE(7625), 1, sym_comment, - ACTIONS(4271), 9, + ACTIONS(4488), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540559,14 +541188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [355998] = 4, + [356874] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, + ACTIONS(4299), 1, anon_sym_DASH, - STATE(7601), 1, + STATE(7626), 1, sym_comment, - ACTIONS(4260), 9, + ACTIONS(4301), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -540576,37 +541205,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [356019] = 10, + [356895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, + ACTIONS(12828), 1, anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, + ACTIONS(12831), 1, + aux_sym__immediate_decimal_token2, + STATE(7627), 1, + sym_comment, + ACTIONS(846), 4, + sym_cmd_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [356920] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4060), 1, + anon_sym_DASH, + STATE(7628), 1, + sym_comment, + ACTIONS(4062), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12172), 1, - anon_sym_LPAREN, - STATE(4099), 1, - sym__immediate_decimal, - STATE(7602), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [356941] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7629), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4102), 2, - sym_expr_parenthesized, - sym_val_variable, - [356052] = 4, + STATE(7749), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4244), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4246), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [356972] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4176), 1, + ACTIONS(4330), 1, anon_sym_DASH, - STATE(7603), 1, + STATE(7630), 1, sym_comment, - ACTIONS(4178), 9, + ACTIONS(4332), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -540616,319 +541280,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [356073] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, - anon_sym_DOLLAR, - ACTIONS(12298), 1, - aux_sym__immediate_decimal_token1, - STATE(1506), 1, - sym__var, - STATE(1937), 1, - sym__immediate_decimal, - STATE(7604), 1, - sym_comment, - ACTIONS(2085), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1935), 2, - sym_expr_parenthesized, - sym_val_variable, - [356106] = 5, + [356993] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - ACTIONS(8538), 1, - aux_sym_unquoted_token6, - STATE(7605), 1, - sym_comment, - ACTIONS(861), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4714), 1, anon_sym_DASH_DASH, + ACTIONS(12812), 1, anon_sym_DASH, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [356129] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, - anon_sym_DOLLAR, - ACTIONS(12298), 1, - aux_sym__immediate_decimal_token1, - STATE(1506), 1, - sym__var, - STATE(1942), 1, - sym__immediate_decimal, - STATE(7606), 1, + STATE(7631), 1, sym_comment, - ACTIONS(2085), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(1939), 2, - sym_expr_parenthesized, - sym_val_variable, - [356162] = 4, + STATE(7752), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4244), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4246), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [357024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4244), 1, + ACTIONS(4462), 1, anon_sym_DASH, - STATE(7607), 1, + STATE(7632), 1, sym_comment, - ACTIONS(4246), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4464), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [356183] = 4, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [357045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4240), 1, + ACTIONS(4474), 1, anon_sym_DASH, - STATE(7608), 1, + STATE(7633), 1, sym_comment, - ACTIONS(4242), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4476), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [356204] = 10, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [357066] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(12332), 1, - anon_sym_LPAREN, - ACTIONS(12334), 1, - anon_sym_DOLLAR, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token1, - STATE(2673), 1, - sym__var, - STATE(3572), 1, - sym__immediate_decimal, - STATE(7609), 1, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7634), 1, sym_comment, - ACTIONS(4456), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3571), 2, - sym_expr_parenthesized, - sym_val_variable, - [356237] = 10, + STATE(7801), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4154), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4156), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [357097] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(12364), 1, - anon_sym_LPAREN, - STATE(4290), 1, - sym__immediate_decimal, - STATE(7610), 1, - sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4273), 2, - sym_expr_parenthesized, - sym_val_variable, - [356270] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(12332), 1, + ACTIONS(12259), 1, anon_sym_LPAREN, - ACTIONS(12334), 1, - anon_sym_DOLLAR, - ACTIONS(12340), 1, + ACTIONS(12265), 1, aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(4740), 1, sym__var, - STATE(3570), 1, + STATE(5514), 1, sym__immediate_decimal, - STATE(7611), 1, + STATE(7635), 1, sym_comment, - ACTIONS(4456), 2, + ACTIONS(7643), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3569), 2, + STATE(5513), 2, sym_expr_parenthesized, sym_val_variable, - [356303] = 10, + [357130] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4448), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(12332), 1, - anon_sym_LPAREN, - ACTIONS(12334), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(12340), 1, - aux_sym__immediate_decimal_token1, - STATE(2673), 1, - sym__var, - STATE(3568), 1, - sym__immediate_decimal, - STATE(7612), 1, - sym_comment, - ACTIONS(4456), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3567), 2, - sym_expr_parenthesized, - sym_val_variable, - [356336] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4448), 1, - anon_sym_DOT2, - ACTIONS(12332), 1, + ACTIONS(12259), 1, anon_sym_LPAREN, - ACTIONS(12334), 1, - anon_sym_DOLLAR, - ACTIONS(12340), 1, + ACTIONS(12265), 1, aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(4740), 1, sym__var, - STATE(3566), 1, + STATE(5519), 1, sym__immediate_decimal, - STATE(7613), 1, + STATE(7636), 1, sym_comment, - ACTIONS(4456), 2, + ACTIONS(7643), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3565), 2, + STATE(5516), 2, sym_expr_parenthesized, sym_val_variable, - [356369] = 10, + [357163] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7442), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(12172), 1, + ACTIONS(12259), 1, anon_sym_LPAREN, - STATE(4195), 1, - sym__immediate_decimal, - STATE(7614), 1, - sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4198), 2, - sym_expr_parenthesized, - sym_val_variable, - [356402] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12265), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7615), 1, - sym_comment, - STATE(7825), 1, - sym__immediate_decimal, - STATE(9717), 1, + STATE(4740), 1, sym__var, - ACTIONS(11795), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7826), 2, - sym_expr_parenthesized, - sym_val_variable, - [356435] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7442), 1, - anon_sym_DOT2, - ACTIONS(11653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12090), 1, - anon_sym_DOLLAR, - ACTIONS(12172), 1, - anon_sym_LPAREN, - STATE(4199), 1, + STATE(5522), 1, sym__immediate_decimal, - STATE(7616), 1, + STATE(7637), 1, sym_comment, - STATE(7958), 1, - sym__var, - ACTIONS(11655), 2, + ACTIONS(7643), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4201), 2, + STATE(5521), 2, sym_expr_parenthesized, sym_val_variable, - [356468] = 10, + [357196] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7635), 1, anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(12364), 1, + ACTIONS(12259), 1, anon_sym_LPAREN, - STATE(4265), 1, + ACTIONS(12265), 1, + aux_sym__immediate_decimal_token1, + STATE(4740), 1, + sym__var, + STATE(5524), 1, sym__immediate_decimal, - STATE(7617), 1, + STATE(7638), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, + ACTIONS(7643), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4261), 2, + STATE(5523), 2, sym_expr_parenthesized, sym_val_variable, - [356501] = 4, + [357229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4190), 1, + ACTIONS(4150), 1, anon_sym_DASH, - STATE(7618), 1, + STATE(7639), 1, sym_comment, - ACTIONS(4192), 9, + ACTIONS(4152), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -540938,14 +541467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [356522] = 4, + [357250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4269), 1, + ACTIONS(4164), 1, anon_sym_DASH, - STATE(7619), 1, + STATE(7640), 1, sym_comment, - ACTIONS(4271), 9, + ACTIONS(4166), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -540955,60 +541484,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [356543] = 10, + [357271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(12716), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12833), 1, anon_sym_DOT2, - ACTIONS(12541), 1, - aux_sym__immediate_decimal_token1, - STATE(6206), 1, - sym__var, - STATE(6681), 1, - sym__immediate_decimal, - STATE(7620), 1, + STATE(7641), 1, sym_comment, - ACTIONS(8429), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6676), 2, - sym_expr_parenthesized, - sym_val_variable, - [356576] = 10, + ACTIONS(815), 4, + sym_cmd_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [357296] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12193), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7621), 1, + STATE(7193), 1, + sym__var, + STATE(7642), 1, sym_comment, - STATE(7720), 1, + STATE(7709), 1, sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, + ACTIONS(11457), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7670), 2, + STATE(7708), 2, sym_expr_parenthesized, sym_val_variable, - [356609] = 4, + [357329] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4200), 1, + ACTIONS(4168), 1, anon_sym_DASH, - STATE(7622), 1, + STATE(7643), 1, sym_comment, - ACTIONS(4202), 9, + ACTIONS(4170), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -541018,242 +541543,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [356630] = 4, + [357350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4236), 1, + ACTIONS(4342), 1, anon_sym_DASH, - STATE(7623), 1, + STATE(7644), 1, sym_comment, - ACTIONS(4238), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4344), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [356651] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [357371] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, anon_sym_LPAREN, - STATE(7624), 1, - sym_comment, - STATE(7709), 1, + STATE(4387), 1, sym__immediate_decimal, - STATE(9717), 1, + STATE(7645), 1, + sym_comment, + STATE(8116), 1, sym__var, - ACTIONS(11795), 2, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7711), 2, + STATE(4384), 2, sym_expr_parenthesized, sym_val_variable, - [356684] = 10, + [357404] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(11419), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(11447), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(11769), 1, anon_sym_DOT2, - ACTIONS(12541), 1, + ACTIONS(12193), 1, aux_sym__immediate_decimal_token1, - STATE(6206), 1, + STATE(7193), 1, sym__var, - STATE(6698), 1, - sym__immediate_decimal, - STATE(7625), 1, - sym_comment, - ACTIONS(8429), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6819), 2, - sym_expr_parenthesized, - sym_val_variable, - [356717] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4228), 1, - anon_sym_DASH, - STATE(7626), 1, - sym_comment, - ACTIONS(4230), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [356738] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11999), 1, - anon_sym_LPAREN, - STATE(7627), 1, + STATE(7646), 1, sym_comment, - STATE(7690), 1, + STATE(7717), 1, sym__immediate_decimal, - STATE(9717), 1, - sym__var, - ACTIONS(11795), 2, + ACTIONS(11457), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7702), 2, + STATE(7715), 2, sym_expr_parenthesized, sym_val_variable, - [356771] = 10, + [357437] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(12280), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12286), 1, + aux_sym__immediate_decimal_token1, + STATE(6346), 1, sym__var, - STATE(7628), 1, - sym_comment, - STATE(8358), 1, + STATE(6903), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + STATE(7647), 1, + sym_comment, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8363), 2, + STATE(6902), 2, sym_expr_parenthesized, sym_val_variable, - [356804] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DASH, - STATE(7629), 1, - sym_comment, - ACTIONS(4226), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [356825] = 10, + [357470] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(12280), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12286), 1, + aux_sym__immediate_decimal_token1, + STATE(6346), 1, sym__var, - STATE(7630), 1, - sym_comment, - STATE(8356), 1, + STATE(6905), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + STATE(7648), 1, + sym_comment, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8357), 2, + STATE(6904), 2, sym_expr_parenthesized, sym_val_variable, - [356858] = 10, + [357503] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(12280), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12286), 1, + aux_sym__immediate_decimal_token1, + STATE(6346), 1, sym__var, - STATE(7631), 1, - sym_comment, - STATE(8500), 1, + STATE(6907), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + STATE(7649), 1, + sym_comment, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8501), 2, + STATE(6906), 2, sym_expr_parenthesized, sym_val_variable, - [356891] = 10, + [357536] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_DOT2, - ACTIONS(11573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, + ACTIONS(8760), 1, anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(8764), 1, + anon_sym_DOT2, + ACTIONS(12280), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12286), 1, + aux_sym__immediate_decimal_token1, + STATE(6346), 1, sym__var, - STATE(7632), 1, - sym_comment, - STATE(8354), 1, + STATE(6909), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + STATE(7650), 1, + sym_comment, + ACTIONS(8772), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8355), 2, + STATE(6908), 2, sym_expr_parenthesized, sym_val_variable, - [356924] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7633), 1, - sym_comment, - ACTIONS(8786), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [356943] = 4, + [357569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4220), 1, + ACTIONS(4172), 1, anon_sym_DASH, - STATE(7634), 1, + STATE(7651), 1, sym_comment, - ACTIONS(4222), 9, + ACTIONS(4174), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -541263,388 +541715,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [356964] = 10, + [357590] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7590), 1, + sym__flag, + STATE(7652), 1, + sym_comment, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4096), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4098), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [357621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(12838), 1, + anon_sym_DASH, + STATE(7653), 1, + sym_comment, + ACTIONS(12836), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(11605), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [357642] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(12276), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(7635), 1, - sym_comment, - STATE(8046), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, sym__var, - STATE(8715), 1, + STATE(7654), 1, + sym_comment, + STATE(8442), 1, sym__immediate_decimal, - ACTIONS(11613), 2, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8713), 2, + STATE(8417), 2, sym_expr_parenthesized, sym_val_variable, - [356997] = 10, + [357675] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, - anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12583), 1, + anon_sym_LPAREN, + STATE(4695), 1, sym__var, - STATE(7636), 1, + STATE(7655), 1, sym_comment, - STATE(8352), 1, + STATE(8183), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8353), 2, + STATE(8182), 2, sym_expr_parenthesized, sym_val_variable, - [357030] = 10, + [357708] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(4692), 1, anon_sym_DOT2, - ACTIONS(12276), 1, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(7637), 1, - sym_comment, - STATE(8046), 1, + STATE(2634), 1, sym__var, - STATE(8712), 1, + STATE(3774), 1, sym__immediate_decimal, - ACTIONS(11613), 2, + STATE(7656), 1, + sym_comment, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8711), 2, + STATE(3773), 2, sym_expr_parenthesized, sym_val_variable, - [357063] = 10, + [357741] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(4692), 1, anon_sym_DOT2, - ACTIONS(12276), 1, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(7638), 1, - sym_comment, - STATE(8046), 1, + STATE(2634), 1, sym__var, - STATE(8708), 1, + STATE(3776), 1, sym__immediate_decimal, - ACTIONS(11613), 2, + STATE(7657), 1, + sym_comment, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8705), 2, + STATE(3775), 2, sym_expr_parenthesized, sym_val_variable, - [357096] = 10, + [357774] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(11601), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(11605), 1, + ACTIONS(4692), 1, anon_sym_DOT2, - ACTIONS(12276), 1, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(7639), 1, - sym_comment, - STATE(8046), 1, + STATE(2634), 1, sym__var, - STATE(8702), 1, + STATE(3778), 1, sym__immediate_decimal, - ACTIONS(11613), 2, + STATE(7658), 1, + sym_comment, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8701), 2, + STATE(3777), 2, sym_expr_parenthesized, sym_val_variable, - [357129] = 4, + [357807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4220), 1, + ACTIONS(4060), 1, anon_sym_DASH, - STATE(7640), 1, + STATE(7659), 1, sym_comment, - ACTIONS(4222), 9, - sym_identifier, - anon_sym_COLON, + ACTIONS(4062), 9, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [357150] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [357828] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11573), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12144), 1, - anon_sym_LPAREN, - ACTIONS(12146), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - STATE(4736), 1, + ACTIONS(12583), 1, + anon_sym_LPAREN, + STATE(4695), 1, sym__var, - STATE(7641), 1, + STATE(7660), 1, sym_comment, - STATE(8502), 1, + STATE(8186), 1, sym__immediate_decimal, - ACTIONS(11577), 2, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(8503), 2, + STATE(8184), 2, sym_expr_parenthesized, sym_val_variable, - [357183] = 10, + [357861] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_DOLLAR, - ACTIONS(8417), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(12541), 1, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - STATE(6206), 1, - sym__var, - STATE(6701), 1, - sym__immediate_decimal, - STATE(7642), 1, - sym_comment, - ACTIONS(8429), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6700), 2, - sym_expr_parenthesized, - sym_val_variable, - [357216] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(8417), 1, + ACTIONS(12583), 1, anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT2, - ACTIONS(12541), 1, - aux_sym__immediate_decimal_token1, - STATE(6206), 1, + STATE(4695), 1, sym__var, - STATE(6703), 1, - sym__immediate_decimal, - STATE(7643), 1, + STATE(7661), 1, sym_comment, - ACTIONS(8429), 2, + STATE(8189), 1, + sym__immediate_decimal, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6702), 2, + STATE(8188), 2, sym_expr_parenthesized, sym_val_variable, - [357249] = 7, + [357894] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(8834), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12816), 1, + ACTIONS(12840), 1, anon_sym_DOT2, - ACTIONS(12818), 1, + ACTIONS(12842), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12844), 1, aux_sym_unquoted_token2, - STATE(7644), 1, + STATE(7662), 1, sym_comment, - ACTIONS(1005), 6, + ACTIONS(949), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [357276] = 4, + [357921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DASH, - STATE(7645), 1, + STATE(7663), 1, sym_comment, - ACTIONS(4202), 9, + ACTIONS(8659), 10, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [357297] = 4, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [357940] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4194), 1, - anon_sym_DASH, - STATE(7646), 1, - sym_comment, - ACTIONS(4196), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11497), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [357318] = 4, + ACTIONS(12583), 1, + anon_sym_LPAREN, + STATE(4695), 1, + sym__var, + STATE(7664), 1, + sym_comment, + STATE(8191), 1, + sym__immediate_decimal, + ACTIONS(11501), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8190), 2, + sym_expr_parenthesized, + sym_val_variable, + [357973] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4190), 1, - anon_sym_DASH, - STATE(7647), 1, - sym_comment, - ACTIONS(4192), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT2, + ACTIONS(12328), 1, + anon_sym_LPAREN, + ACTIONS(12330), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [357339] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DASH, - STATE(7648), 1, + ACTIONS(12336), 1, + aux_sym__immediate_decimal_token1, + STATE(1371), 1, + sym__var, + STATE(1903), 1, + sym__immediate_decimal, + STATE(7665), 1, sym_comment, - ACTIONS(4226), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [357360] = 4, + ACTIONS(2053), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1902), 2, + sym_expr_parenthesized, + sym_val_variable, + [358006] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4458), 1, - anon_sym_DASH, - STATE(7649), 1, - sym_comment, - ACTIONS(4460), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT2, + ACTIONS(12328), 1, + anon_sym_LPAREN, + ACTIONS(12330), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [357381] = 10, + ACTIONS(12336), 1, + aux_sym__immediate_decimal_token1, + STATE(1371), 1, + sym__var, + STATE(1905), 1, + sym__immediate_decimal, + STATE(7666), 1, + sym_comment, + ACTIONS(2053), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1904), 2, + sym_expr_parenthesized, + sym_val_variable, + [358039] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1795), 1, + ACTIONS(2045), 1, anon_sym_DOT2, - ACTIONS(12468), 1, + ACTIONS(12328), 1, anon_sym_LPAREN, - ACTIONS(12470), 1, + ACTIONS(12330), 1, anon_sym_DOLLAR, - ACTIONS(12476), 1, + ACTIONS(12336), 1, aux_sym__immediate_decimal_token1, - STATE(1266), 1, + STATE(1371), 1, sym__var, - STATE(1649), 1, + STATE(1907), 1, sym__immediate_decimal, - STATE(7650), 1, + STATE(7667), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(2053), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1651), 2, + STATE(1906), 2, sym_expr_parenthesized, sym_val_variable, - [357414] = 10, + [358072] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1795), 1, + ACTIONS(2045), 1, anon_sym_DOT2, - ACTIONS(12468), 1, + ACTIONS(12328), 1, anon_sym_LPAREN, - ACTIONS(12470), 1, + ACTIONS(12330), 1, anon_sym_DOLLAR, - ACTIONS(12476), 1, + ACTIONS(12336), 1, aux_sym__immediate_decimal_token1, - STATE(1266), 1, + STATE(1371), 1, sym__var, - STATE(1654), 1, + STATE(1909), 1, sym__immediate_decimal, - STATE(7651), 1, + STATE(7668), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(2053), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1655), 2, + STATE(1908), 2, sym_expr_parenthesized, sym_val_variable, - [357447] = 9, + [358105] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7652), 1, + STATE(7669), 1, sym_comment, - STATE(9509), 1, + STATE(7690), 1, sym__flag, - ACTIONS(4090), 2, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4346), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4092), 2, + ACTIONS(4348), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4256), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [357478] = 4, + [358136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4172), 1, + ACTIONS(4068), 1, anon_sym_DASH, - STATE(7653), 1, + STATE(7670), 1, sym_comment, - ACTIONS(4174), 9, + ACTIONS(4070), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -541654,31 +542122,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [357499] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4228), 1, - anon_sym_DASH, - STATE(7654), 1, - sym_comment, - ACTIONS(4230), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [357520] = 4, + [358157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4168), 1, + ACTIONS(4072), 1, anon_sym_DASH, - STATE(7655), 1, + STATE(7671), 1, sym_comment, - ACTIONS(4170), 9, + ACTIONS(4074), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -541688,110 +542139,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [357541] = 10, + [358178] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7494), 1, + anon_sym_DOT2, + ACTIONS(11747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_LPAREN, + STATE(4357), 1, + sym__immediate_decimal, + STATE(7672), 1, + sym_comment, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4324), 2, + sym_expr_parenthesized, + sym_val_variable, + [358211] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1795), 1, + ACTIONS(1989), 1, anon_sym_DOT2, - ACTIONS(12468), 1, + ACTIONS(12354), 1, anon_sym_LPAREN, - ACTIONS(12470), 1, + ACTIONS(12356), 1, anon_sym_DOLLAR, - ACTIONS(12476), 1, + ACTIONS(12362), 1, aux_sym__immediate_decimal_token1, - STATE(1266), 1, + STATE(1310), 1, sym__var, - STATE(1657), 1, + STATE(1570), 1, sym__immediate_decimal, - STATE(7656), 1, + STATE(7673), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1997), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1661), 2, + STATE(1565), 2, sym_expr_parenthesized, sym_val_variable, - [357574] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7657), 1, - sym_comment, - STATE(7833), 1, - sym__flag, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4090), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4092), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [357605] = 4, + [358244] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4158), 1, - anon_sym_DASH, - STATE(7658), 1, - sym_comment, - ACTIONS(4160), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1989), 1, + anon_sym_DOT2, + ACTIONS(12354), 1, + anon_sym_LPAREN, + ACTIONS(12356), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [357626] = 4, + ACTIONS(12362), 1, + aux_sym__immediate_decimal_token1, + STATE(1310), 1, + sym__var, + STATE(1572), 1, + sym__immediate_decimal, + STATE(7674), 1, + sym_comment, + ACTIONS(1997), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1571), 2, + sym_expr_parenthesized, + sym_val_variable, + [358277] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4236), 1, - anon_sym_DASH, - STATE(7659), 1, - sym_comment, - ACTIONS(4238), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1989), 1, + anon_sym_DOT2, + ACTIONS(12354), 1, + anon_sym_LPAREN, + ACTIONS(12356), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [357647] = 4, + ACTIONS(12362), 1, + aux_sym__immediate_decimal_token1, + STATE(1310), 1, + sym__var, + STATE(1580), 1, + sym__immediate_decimal, + STATE(7675), 1, + sym_comment, + ACTIONS(1997), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1573), 2, + sym_expr_parenthesized, + sym_val_variable, + [358310] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4240), 1, - anon_sym_DASH, - STATE(7660), 1, - sym_comment, - ACTIONS(4242), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1989), 1, + anon_sym_DOT2, + ACTIONS(12354), 1, + anon_sym_LPAREN, + ACTIONS(12356), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [357668] = 4, + ACTIONS(12362), 1, + aux_sym__immediate_decimal_token1, + STATE(1310), 1, + sym__var, + STATE(1587), 1, + sym__immediate_decimal, + STATE(7676), 1, + sym_comment, + ACTIONS(1997), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1585), 2, + sym_expr_parenthesized, + sym_val_variable, + [358343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4146), 1, + ACTIONS(4076), 1, anon_sym_DASH, - STATE(7661), 1, + STATE(7677), 1, sym_comment, - ACTIONS(4148), 9, + ACTIONS(4078), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -541801,138 +542271,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [357689] = 9, + [358364] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(12814), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12816), 1, anon_sym_DASH, - STATE(7662), 1, + STATE(4346), 1, + sym_long_flag_equals_value, + STATE(7678), 1, sym_comment, - STATE(7779), 1, + STATE(9442), 1, sym__flag, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4254), 2, + ACTIONS(4096), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4098), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(4338), 2, sym_short_flag, sym_long_flag, - [357720] = 4, - ACTIONS(3), 1, + [358395] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_DASH, - STATE(7663), 1, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(8492), 1, + aux_sym_unquoted_token6, + STATE(7679), 1, sym_comment, - ACTIONS(1230), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(877), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [357741] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, - anon_sym_DOT2, - ACTIONS(12103), 1, - aux_sym__immediate_decimal_token1, - STATE(2585), 1, - sym__var, - STATE(3802), 1, - sym__immediate_decimal, - STATE(7664), 1, - sym_comment, - ACTIONS(4624), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3801), 2, - sym_expr_parenthesized, - sym_val_variable, - [357774] = 9, + sym_filesize_unit, + sym_duration_unit, + [358418] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7665), 1, - sym_comment, - STATE(7829), 1, - sym__flag, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4090), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4092), 2, - ts_builtin_sym_end, + ACTIONS(951), 1, anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [357805] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4244), 1, - anon_sym_DASH, - STATE(7666), 1, + ACTIONS(8714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12840), 1, + anon_sym_DOT2, + ACTIONS(12844), 1, + aux_sym_unquoted_token2, + STATE(7680), 1, sym_comment, - ACTIONS(4246), 9, - anon_sym_COMMA, + ACTIONS(949), 6, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, + anon_sym_DASH, anon_sym_RBRACE, - anon_sym_EQ_GT, - [357826] = 10, + [358445] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, sym__var, - STATE(7667), 1, + STATE(7681), 1, sym_comment, - STATE(7690), 1, + STATE(8446), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7702), 2, + STATE(8444), 2, sym_expr_parenthesized, sym_val_variable, - [357859] = 4, + [358478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, + ACTIONS(4334), 1, anon_sym_DASH, - STATE(7668), 1, + STATE(7682), 1, sym_comment, - ACTIONS(4260), 9, + ACTIONS(4336), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -541942,422 +542371,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [357880] = 10, + [358499] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(12376), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(2661), 1, sym__var, - STATE(7669), 1, - sym_comment, - STATE(7709), 1, + STATE(3214), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7683), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7711), 2, + STATE(3213), 2, sym_expr_parenthesized, sym_val_variable, - [357913] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DASH, - STATE(7670), 1, - sym_comment, - ACTIONS(4322), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [357934] = 10, + [358532] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(12376), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(2661), 1, sym__var, - STATE(7671), 1, - sym_comment, - STATE(7720), 1, + STATE(3216), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7684), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7670), 2, + STATE(3215), 2, sym_expr_parenthesized, sym_val_variable, - [357967] = 10, + [358565] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(12376), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(2661), 1, sym__var, - STATE(7672), 1, - sym_comment, - STATE(7825), 1, + STATE(3218), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7685), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7826), 2, + STATE(3217), 2, sym_expr_parenthesized, sym_val_variable, - [358000] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - anon_sym_DASH, - STATE(7673), 1, - sym_comment, - ACTIONS(4372), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358021] = 10, + [358598] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(4050), 1, + anon_sym_DOT2, + ACTIONS(12165), 1, anon_sym_DOLLAR, - ACTIONS(11783), 1, + ACTIONS(12376), 1, anon_sym_LPAREN, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12382), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(2661), 1, sym__var, - STATE(7674), 1, - sym_comment, - STATE(7706), 1, + STATE(3220), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7686), 1, + sym_comment, + ACTIONS(4058), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(3219), 2, sym_expr_parenthesized, sym_val_variable, - [358054] = 4, - ACTIONS(3), 1, + [358631] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4126), 1, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7675), 1, + STATE(7687), 1, sym_comment, - ACTIONS(4128), 9, - anon_sym_COMMA, + STATE(7772), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4188), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358075] = 10, + ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [358662] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, sym__var, - STATE(3785), 1, - sym__immediate_decimal, - STATE(7676), 1, + STATE(7688), 1, sym_comment, - ACTIONS(4624), 2, + STATE(8470), 1, + sym__immediate_decimal, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3781), 2, + STATE(8461), 2, sym_expr_parenthesized, sym_val_variable, - [358108] = 10, + [358695] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(11787), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, - sym__var, - STATE(7677), 1, - sym_comment, - STATE(7678), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4161), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7689), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(4158), 2, sym_expr_parenthesized, sym_val_variable, - [358141] = 4, - ACTIONS(3), 1, + [358728] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4374), 1, - anon_sym_DASH, - STATE(7678), 1, - sym_comment, - ACTIONS(4376), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358162] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4142), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7679), 1, + STATE(7690), 1, sym_comment, - ACTIONS(4144), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(7773), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4188), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [358183] = 4, - ACTIONS(3), 1, + ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [358759] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4122), 1, - anon_sym_DASH, - STATE(7680), 1, - sym_comment, - ACTIONS(4124), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358204] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4138), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7681), 1, + STATE(7691), 1, sym_comment, - ACTIONS(4140), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(7776), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4188), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [358225] = 10, + ACTIONS(4190), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [358790] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, - sym__var, - STATE(7682), 1, - sym_comment, - STATE(7690), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4164), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7692), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7702), 2, + STATE(4163), 2, sym_expr_parenthesized, sym_val_variable, - [358258] = 10, + [358823] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7234), 1, + STATE(7451), 1, sym__var, - STATE(7588), 1, + STATE(7682), 1, sym__immediate_decimal, - STATE(7683), 1, + STATE(7693), 1, sym_comment, - ACTIONS(11431), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7586), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - [358291] = 10, + [358856] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7234), 1, + STATE(7451), 1, sym__var, - STATE(7590), 1, + STATE(7644), 1, sym__immediate_decimal, - STATE(7684), 1, + STATE(7694), 1, sym_comment, - ACTIONS(11431), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7589), 2, + STATE(7546), 2, sym_expr_parenthesized, sym_val_variable, - [358324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4134), 1, - anon_sym_DASH, - STATE(7685), 1, - sym_comment, - ACTIONS(4136), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [358345] = 10, + [358889] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7234), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - STATE(7593), 1, + STATE(7682), 1, sym__immediate_decimal, - STATE(7686), 1, + STATE(7695), 1, sym_comment, - ACTIONS(11431), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7592), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - [358378] = 4, + [358922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_DASH, - STATE(7687), 1, + STATE(7696), 1, sym_comment, - ACTIONS(4120), 9, + ACTIONS(9005), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_GT, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358399] = 10, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [358941] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, - anon_sym_DOLLAR, - ACTIONS(11853), 1, - anon_sym_DOT2, - ACTIONS(12587), 1, - aux_sym__immediate_decimal_token1, - STATE(7234), 1, - sym__var, - STATE(7596), 1, - sym__immediate_decimal, - STATE(7688), 1, + STATE(7697), 1, sym_comment, - ACTIONS(11431), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(7595), 2, - sym_expr_parenthesized, - sym_val_variable, - [358432] = 4, + ACTIONS(9007), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [358960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4126), 1, + ACTIONS(12848), 1, anon_sym_DASH, - STATE(7689), 1, + STATE(7698), 1, sym_comment, - ACTIONS(4128), 9, + ACTIONS(12846), 9, + anon_sym_EQ, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, @@ -542365,265 +542716,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [358453] = 4, + [358981] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4295), 1, - anon_sym_DASH, - STATE(7690), 1, - sym_comment, - ACTIONS(4297), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(7262), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358474] = 4, - ACTIONS(3), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, + sym__var, + STATE(7644), 1, + sym__immediate_decimal, + STATE(7699), 1, + sym_comment, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7546), 2, + sym_expr_parenthesized, + sym_val_variable, + [359014] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4378), 1, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7691), 1, + STATE(7700), 1, sym_comment, - ACTIONS(4380), 9, - anon_sym_COMMA, + STATE(7718), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4096), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358495] = 4, - ACTIONS(3), 1, + ACTIONS(4098), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [359045] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4114), 1, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7692), 1, + STATE(7569), 1, + sym__flag, + STATE(7701), 1, sym_comment, - ACTIONS(4116), 9, - anon_sym_COMMA, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4211), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358516] = 10, + ACTIONS(4213), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [359076] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(12523), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12525), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - ACTIONS(12531), 1, - aux_sym__immediate_decimal_token1, - STATE(1360), 1, + STATE(5147), 1, sym__var, - STATE(1835), 1, + STATE(6377), 1, sym__immediate_decimal, - STATE(7693), 1, + STATE(7702), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1834), 2, + STATE(6376), 2, sym_expr_parenthesized, sym_val_variable, - [358549] = 10, + [359109] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(12523), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12525), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - ACTIONS(12531), 1, - aux_sym__immediate_decimal_token1, - STATE(1360), 1, + STATE(5147), 1, sym__var, - STATE(1833), 1, + STATE(6491), 1, sym__immediate_decimal, - STATE(7694), 1, + STATE(7703), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1832), 2, + STATE(6378), 2, sym_expr_parenthesized, sym_val_variable, - [358582] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(7695), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [358603] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4122), 1, - anon_sym_DASH, - STATE(7696), 1, - sym_comment, - ACTIONS(4124), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [358624] = 10, + [359142] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(11771), 1, + ACTIONS(11877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - STATE(5199), 1, + STATE(5147), 1, sym__var, - STATE(6384), 1, + STATE(6383), 1, sym__immediate_decimal, - STATE(7697), 1, + STATE(7704), 1, sym_comment, - ACTIONS(11773), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6379), 2, + STATE(6382), 2, sym_expr_parenthesized, sym_val_variable, - [358657] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_DASH, - STATE(7698), 1, - sym_comment, - ACTIONS(4120), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [358678] = 10, + [359175] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(8162), 1, anon_sym_DOT2, - ACTIONS(12523), 1, + ACTIONS(11877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12431), 1, anon_sym_LPAREN, - ACTIONS(12525), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - ACTIONS(12531), 1, - aux_sym__immediate_decimal_token1, - STATE(1360), 1, + STATE(5147), 1, sym__var, - STATE(1831), 1, + STATE(6385), 1, sym__immediate_decimal, - STATE(7699), 1, + STATE(7705), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(11879), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1830), 2, + STATE(6384), 2, sym_expr_parenthesized, sym_val_variable, - [358711] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4105), 1, - anon_sym_DASH, - STATE(7700), 1, - sym_comment, - ACTIONS(4107), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358732] = 10, + [359208] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(2096), 1, anon_sym_DOT2, - ACTIONS(11771), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, + ACTIONS(11375), 1, anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - STATE(5199), 1, + ACTIONS(12652), 1, + aux_sym__immediate_decimal_token1, + STATE(1469), 1, sym__var, - STATE(6417), 1, + STATE(2141), 1, sym__immediate_decimal, - STATE(7701), 1, + STATE(7706), 1, sym_comment, - ACTIONS(11773), 2, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6401), 2, + STATE(2140), 2, sym_expr_parenthesized, sym_val_variable, - [358765] = 4, + [359241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4299), 1, + ACTIONS(877), 1, anon_sym_DASH, - STATE(7702), 1, + STATE(7707), 1, sym_comment, - ACTIONS(4301), 9, - anon_sym_COMMA, + ACTIONS(879), 9, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - [358786] = 4, + sym_filesize_unit, + sym_duration_unit, + [359262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4114), 1, + ACTIONS(4330), 1, anon_sym_DASH, - STATE(7703), 1, + STATE(7708), 1, sym_comment, - ACTIONS(4116), 9, + ACTIONS(4332), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -542633,14 +542932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [358807] = 4, + [359283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4105), 1, + ACTIONS(4334), 1, anon_sym_DASH, - STATE(7704), 1, + STATE(7709), 1, sym_comment, - ACTIONS(4107), 9, + ACTIONS(4336), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -542650,218 +542949,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [358828] = 10, + [359304] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(2096), 1, anon_sym_DOT2, - ACTIONS(12523), 1, + ACTIONS(11375), 1, anon_sym_LPAREN, - ACTIONS(12525), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(12531), 1, + ACTIONS(12652), 1, aux_sym__immediate_decimal_token1, - STATE(1360), 1, + STATE(1469), 1, sym__var, - STATE(1829), 1, + STATE(2143), 1, sym__immediate_decimal, - STATE(7705), 1, + STATE(7710), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1827), 2, + STATE(2142), 2, sym_expr_parenthesized, sym_val_variable, - [358861] = 4, + [359337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4382), 1, + ACTIONS(4164), 1, anon_sym_DASH, - STATE(7706), 1, + STATE(7711), 1, sym_comment, - ACTIONS(4384), 9, + ACTIONS(4166), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358882] = 10, + [359358] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(2096), 1, + anon_sym_DOT2, + ACTIONS(11375), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(12652), 1, + aux_sym__immediate_decimal_token1, + STATE(1469), 1, + sym__var, + STATE(1951), 1, + sym__immediate_decimal, + STATE(7712), 1, + sym_comment, + ACTIONS(2104), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2146), 2, + sym_expr_parenthesized, + sym_val_variable, + [359391] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, sym__var, - STATE(7707), 1, + STATE(7713), 1, sym_comment, - STATE(7709), 1, + STATE(8563), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7711), 2, + STATE(8542), 2, sym_expr_parenthesized, sym_val_variable, - [358915] = 9, + [359424] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7708), 1, + ACTIONS(12850), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12852), 1, + aux_sym__immediate_decimal_token2, + STATE(7714), 1, sym_comment, - STATE(7828), 1, - sym__flag, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4090), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4092), 2, + ACTIONS(817), 3, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [358946] = 4, + anon_sym_DOT2, + ACTIONS(815), 5, + anon_sym_SEMI, + anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [359449] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(4338), 1, anon_sym_DASH, - STATE(7709), 1, + STATE(7715), 1, sym_comment, - ACTIONS(4305), 9, + ACTIONS(4340), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [358967] = 9, - ACTIONS(105), 1, + [359470] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(4184), 1, anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7710), 1, + STATE(7716), 1, sym_comment, - STATE(9713), 1, - sym__flag, - ACTIONS(12772), 2, - anon_sym_SEMI, + ACTIONS(4186), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(12774), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4256), 2, - sym_short_flag, - sym_long_flag, - [358998] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [359491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4307), 1, + ACTIONS(4342), 1, anon_sym_DASH, - STATE(7711), 1, + STATE(7717), 1, sym_comment, - ACTIONS(4309), 9, + ACTIONS(4344), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [359019] = 9, + [359512] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(12814), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12816), 1, anon_sym_DASH, - STATE(7710), 1, - sym__flag, - STATE(7712), 1, - sym_comment, - STATE(8483), 1, + STATE(4346), 1, sym_long_flag_equals_value, - ACTIONS(12791), 2, + STATE(7718), 1, + sym_comment, + STATE(9687), 1, + sym__flag, + ACTIONS(4154), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(12793), 2, + ACTIONS(4156), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(4338), 2, sym_short_flag, sym_long_flag, - [359050] = 5, + [359543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12728), 1, - aux_sym__immediate_decimal_token2, - STATE(7713), 1, + ACTIONS(4197), 1, + anon_sym_DASH, + STATE(7719), 1, sym_comment, - ACTIONS(807), 4, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 5, + ACTIONS(4199), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [359073] = 10, + [359564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, - sym__var, - STATE(2216), 1, - sym__immediate_decimal, - STATE(7714), 1, + ACTIONS(4299), 1, + anon_sym_DASH, + STATE(7720), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2218), 2, - sym_expr_parenthesized, - sym_val_variable, - [359106] = 4, + ACTIONS(4301), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [359585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4176), 1, + ACTIONS(4201), 1, anon_sym_DASH, - STATE(7715), 1, + STATE(7721), 1, sym_comment, - ACTIONS(4178), 9, + ACTIONS(4203), 9, sym_identifier, anon_sym_COLON, anon_sym_COMMA, @@ -542871,12 +543178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [359127] = 5, + [359606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12762), 1, + ACTIONS(12716), 1, aux_sym__immediate_decimal_token2, - STATE(7716), 1, + STATE(7722), 1, sym_comment, ACTIONS(815), 4, sym_cmd_identifier, @@ -542889,82 +543196,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [359150] = 10, + [359629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, - sym__var, - STATE(2201), 1, - sym__immediate_decimal, - STATE(7717), 1, + ACTIONS(4176), 1, + anon_sym_DASH, + STATE(7723), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2206), 2, - sym_expr_parenthesized, - sym_val_variable, - [359183] = 10, + ACTIONS(4178), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [359650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, - sym__var, - STATE(2156), 1, - sym__immediate_decimal, - STATE(7718), 1, + ACTIONS(4215), 1, + anon_sym_DASH, + STATE(7724), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2289), 2, - sym_expr_parenthesized, - sym_val_variable, - [359216] = 9, + ACTIONS(4217), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [359671] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7719), 1, + STATE(7725), 1, sym_comment, - STATE(7780), 1, + STATE(7746), 1, sym__flag, - STATE(8483), 1, + STATE(8374), 1, sym_long_flag_equals_value, - ACTIONS(4254), 2, + ACTIONS(4154), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4256), 2, + ACTIONS(4156), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [359247] = 4, + [359702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4311), 1, + ACTIONS(4176), 1, anon_sym_DASH, - STATE(7720), 1, + STATE(7726), 1, sym_comment, - ACTIONS(4313), 9, + ACTIONS(4178), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -542974,796 +543269,702 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [359268] = 10, + [359723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, - sym__var, - STATE(2158), 1, - sym__immediate_decimal, - STATE(7721), 1, - sym_comment, - ACTIONS(2257), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2157), 2, - sym_expr_parenthesized, - sym_val_variable, - [359301] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(1177), 1, anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7722), 1, + STATE(7727), 1, sym_comment, - STATE(9711), 1, - sym__flag, - ACTIONS(12791), 2, - anon_sym_SEMI, + ACTIONS(1179), 9, anon_sym_PIPE, - ACTIONS(12793), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4256), 2, - sym_short_flag, - sym_long_flag, - [359332] = 9, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + sym_filesize_unit, + sym_duration_unit, + [359744] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7712), 1, - sym__flag, - STATE(7723), 1, + ACTIONS(8793), 1, + aux_sym_unquoted_token6, + ACTIONS(8813), 1, + anon_sym_DOT2, + STATE(7728), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(12795), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12797), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359363] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7722), 1, - sym__flag, - STATE(7724), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(12795), 2, + ACTIONS(877), 6, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(12797), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359394] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + [359769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1065), 1, - anon_sym_DASH, - STATE(7725), 1, + ACTIONS(12854), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12856), 1, + aux_sym__immediate_decimal_token2, + STATE(7729), 1, sym_comment, - ACTIONS(1067), 9, - anon_sym_PIPE, + ACTIONS(815), 3, + anon_sym_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, - sym_filesize_unit, + anon_sym_DOT2, sym_duration_unit, - [359415] = 4, + [359794] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11557), 1, + anon_sym_DOT2, + ACTIONS(11577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, + sym__var, + STATE(7730), 1, + sym_comment, + STATE(8334), 1, + sym__immediate_decimal, + ACTIONS(11581), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(8433), 2, + sym_expr_parenthesized, + sym_val_variable, + [359827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(861), 1, + ACTIONS(4184), 1, anon_sym_DASH, - STATE(7726), 1, + STATE(7731), 1, sym_comment, - ACTIONS(863), 9, + ACTIONS(4186), 9, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - sym_filesize_unit, - sym_duration_unit, - [359436] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_DASH_DASH, - ACTIONS(12822), 1, - anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7727), 1, - sym_comment, - STATE(9765), 1, - sym__flag, - ACTIONS(12795), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12797), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4256), 2, - sym_short_flag, - sym_long_flag, - [359467] = 10, + [359848] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11557), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11577), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + ACTIONS(12463), 1, + anon_sym_DOLLAR, + ACTIONS(12479), 1, + anon_sym_LPAREN, + STATE(4752), 1, sym__var, - STATE(7720), 1, - sym__immediate_decimal, - STATE(7728), 1, + STATE(7732), 1, sym_comment, - ACTIONS(11795), 2, + STATE(8553), 1, + sym__immediate_decimal, + ACTIONS(11581), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7670), 2, + STATE(8449), 2, sym_expr_parenthesized, sym_val_variable, - [359500] = 5, + [359881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12826), 1, - aux_sym__immediate_decimal_token2, - STATE(7729), 1, + ACTIONS(4197), 1, + anon_sym_DASH, + STATE(7733), 1, sym_comment, - ACTIONS(844), 4, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 5, + ACTIONS(4199), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [359523] = 9, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [359902] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7723), 1, - sym__flag, - STATE(7730), 1, + ACTIONS(12858), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12860), 1, + aux_sym__immediate_decimal_token2, + STATE(7734), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(12750), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12752), 2, + ACTIONS(809), 3, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359554] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7724), 1, - sym__flag, - STATE(7731), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(12750), 2, + anon_sym_DOT2, + ACTIONS(807), 5, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(12752), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359585] = 9, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [359927] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(4231), 1, anon_sym_DASH, - STATE(7727), 1, - sym__flag, - STATE(7732), 1, + STATE(7735), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(12750), 2, - anon_sym_SEMI, + ACTIONS(4233), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(12752), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359616] = 10, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [359948] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, - sym__var, - STATE(3839), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4060), 1, sym__immediate_decimal, - STATE(7733), 1, + STATE(7736), 1, sym_comment, - ACTIONS(4624), 2, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3837), 2, + STATE(4188), 2, sym_expr_parenthesized, sym_val_variable, - [359649] = 10, + [359981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(12862), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12864), 1, + aux_sym__immediate_decimal_token2, + STATE(7737), 1, + sym_comment, + ACTIONS(807), 3, + anon_sym_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 5, anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [360006] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, - sym__var, - STATE(3834), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4062), 1, sym__immediate_decimal, - STATE(7734), 1, + STATE(7738), 1, sym_comment, - ACTIONS(4624), 2, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3833), 2, + STATE(4061), 2, sym_expr_parenthesized, sym_val_variable, - [359682] = 10, + [360039] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(8472), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(8557), 1, anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(12247), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, + STATE(6226), 1, sym__var, - STATE(3830), 1, + STATE(6870), 1, sym__immediate_decimal, - STATE(7735), 1, + STATE(7739), 1, sym_comment, - ACTIONS(4624), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3829), 2, + STATE(6863), 2, sym_expr_parenthesized, sym_val_variable, - [359715] = 10, + [360072] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3872), 1, - anon_sym_DOLLAR, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(12103), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(2585), 1, - sym__var, - STATE(3828), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4065), 1, sym__immediate_decimal, - STATE(7736), 1, + STATE(7740), 1, sym_comment, - ACTIONS(4624), 2, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3827), 2, + STATE(4064), 2, sym_expr_parenthesized, sym_val_variable, - [359748] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12686), 1, - anon_sym_COMMA, - ACTIONS(12688), 1, - anon_sym_DASH, - ACTIONS(12828), 1, - anon_sym_EQ, - STATE(7737), 1, - sym_comment, - STATE(7846), 1, - sym_param_value, - ACTIONS(12684), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [359775] = 10, + [360105] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11695), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, - sym__var, - STATE(7738), 1, - sym_comment, - STATE(7825), 1, + ACTIONS(12151), 1, + anon_sym_DOLLAR, + ACTIONS(12469), 1, + anon_sym_LPAREN, + STATE(4067), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7741), 1, + sym_comment, + STATE(8054), 1, + sym__var, + ACTIONS(11697), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7826), 2, + STATE(4066), 2, sym_expr_parenthesized, sym_val_variable, - [359808] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7731), 1, - sym__flag, - STATE(7739), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4432), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4434), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359839] = 7, + [360138] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12692), 1, - anon_sym_COMMA, - ACTIONS(12694), 1, - anon_sym_DASH, - ACTIONS(12828), 1, - anon_sym_EQ, - STATE(7740), 1, - sym_comment, - STATE(7860), 1, - sym_param_value, - ACTIONS(12690), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [359866] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7732), 1, - sym__flag, - STATE(7741), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4432), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4434), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [359897] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12700), 1, - anon_sym_DASH, - ACTIONS(12828), 1, - anon_sym_EQ, - ACTIONS(12830), 1, - anon_sym_COMMA, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7640), 1, + sym__immediate_decimal, STATE(7742), 1, sym_comment, - STATE(7864), 1, - sym_param_value, - ACTIONS(12696), 6, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [359924] = 4, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7639), 2, + sym_expr_parenthesized, + sym_val_variable, + [360171] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12834), 1, - anon_sym_DASH, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7651), 1, + sym__immediate_decimal, STATE(7743), 1, sym_comment, - ACTIONS(12832), 9, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [359945] = 10, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7643), 2, + sym_expr_parenthesized, + sym_val_variable, + [360204] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(12048), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12244), 1, - anon_sym_LPAREN, - ACTIONS(12250), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5114), 1, - sym__var, - STATE(5925), 1, + ACTIONS(12059), 1, + anon_sym_LPAREN, + STATE(7731), 1, sym__immediate_decimal, STATE(7744), 1, sym_comment, - ACTIONS(7808), 2, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5924), 2, + STATE(7726), 2, sym_expr_parenthesized, sym_val_variable, - [359978] = 10, + [360237] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11771), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, + ACTIONS(12059), 1, anon_sym_LPAREN, - ACTIONS(12308), 1, - anon_sym_DOLLAR, - STATE(5199), 1, - sym__var, - STATE(6321), 1, - sym__immediate_decimal, STATE(7745), 1, sym_comment, - ACTIONS(11773), 2, + STATE(7751), 1, + sym__immediate_decimal, + STATE(9645), 1, + sym__var, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6320), 2, + STATE(7733), 2, sym_expr_parenthesized, sym_val_variable, - [360011] = 9, + [360270] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(12814), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12816), 1, anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, STATE(7746), 1, sym_comment, - STATE(7756), 1, + STATE(9227), 1, sym__flag, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4432), 2, + ACTIONS(4237), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4434), 2, + ACTIONS(4239), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(4338), 2, sym_short_flag, sym_long_flag, - [360042] = 10, + [360301] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(8472), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, anon_sym_DOT2, - ACTIONS(11771), 1, + ACTIONS(12247), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, - anon_sym_LPAREN, - ACTIONS(12308), 1, - anon_sym_DOLLAR, - STATE(5199), 1, + STATE(6226), 1, sym__var, - STATE(6318), 1, + STATE(6772), 1, sym__immediate_decimal, STATE(7747), 1, sym_comment, - ACTIONS(11773), 2, + ACTIONS(8569), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6316), 2, + STATE(6874), 2, sym_expr_parenthesized, sym_val_variable, - [360075] = 6, - ACTIONS(3), 1, + [360334] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12836), 1, - anon_sym_DOT2, - ACTIONS(12839), 1, + ACTIONS(12788), 1, aux_sym__immediate_decimal_token2, STATE(7748), 1, sym_comment, - ACTIONS(835), 4, - sym_cmd_identifier, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(837), 4, + [360357] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [360100] = 10, - ACTIONS(3), 1, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7749), 1, + sym_comment, + STATE(7817), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(12736), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12738), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [360388] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8228), 1, + STATE(7750), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(11771), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, - anon_sym_LPAREN, - ACTIONS(12308), 1, - anon_sym_DOLLAR, - STATE(5199), 1, - sym__var, - STATE(6312), 1, - sym__immediate_decimal, - STATE(7749), 1, + ACTIONS(815), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [360409] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4201), 1, + anon_sym_DASH, + STATE(7751), 1, sym_comment, - ACTIONS(11773), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6311), 2, - sym_expr_parenthesized, - sym_val_variable, - [360133] = 9, + ACTIONS(4203), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [360430] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7719), 1, + STATE(7558), 1, sym__flag, - STATE(7750), 1, + STATE(7752), 1, sym_comment, - STATE(8483), 1, + STATE(8374), 1, sym_long_flag_equals_value, - ACTIONS(4052), 2, + ACTIONS(12736), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4054), 2, + ACTIONS(12738), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [360164] = 10, - ACTIONS(3), 1, + [360461] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7753), 1, + sym_comment, + STATE(7834), 1, + sym__flag, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4237), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4239), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [360492] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7800), 1, + STATE(7754), 1, + sym_comment, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(12048), 1, + ACTIONS(807), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [360513] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(12244), 1, - anon_sym_LPAREN, - ACTIONS(12250), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(5114), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - STATE(5932), 1, + STATE(7640), 1, sym__immediate_decimal, - STATE(7751), 1, + STATE(7755), 1, sym_comment, - ACTIONS(7808), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5929), 2, + STATE(7639), 2, sym_expr_parenthesized, sym_val_variable, - [360197] = 10, + [360546] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(2259), 1, anon_sym_DOT2, - ACTIONS(11771), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12306), 1, + ACTIONS(11397), 1, anon_sym_LPAREN, - ACTIONS(12308), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR, - STATE(5199), 1, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, sym__var, - STATE(6301), 1, + STATE(2342), 1, sym__immediate_decimal, - STATE(7752), 1, + STATE(7756), 1, sym_comment, - ACTIONS(11773), 2, + ACTIONS(2267), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6293), 2, + STATE(2341), 2, sym_expr_parenthesized, sym_val_variable, - [360230] = 9, + [360579] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_DASH_DASH, - ACTIONS(12822), 1, - anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7753), 1, + STATE(7757), 1, sym_comment, - STATE(9663), 1, - sym__flag, - ACTIONS(4432), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4434), 2, + ACTIONS(857), 3, ts_builtin_sym_end, anon_sym_LF, - STATE(4256), 2, - sym_short_flag, - sym_long_flag, - [360261] = 10, + anon_sym_DOT2, + ACTIONS(855), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [360600] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7690), 1, + STATE(7651), 1, sym__immediate_decimal, - STATE(7754), 1, + STATE(7758), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7702), 2, + STATE(7643), 2, sym_expr_parenthesized, sym_val_variable, - [360294] = 10, + [360633] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(2259), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11397), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(12597), 1, + aux_sym__immediate_decimal_token1, + STATE(1649), 1, sym__var, - STATE(7709), 1, + STATE(2346), 1, sym__immediate_decimal, - STATE(7755), 1, + STATE(7759), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(2267), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7711), 2, + STATE(2345), 2, sym_expr_parenthesized, sym_val_variable, - [360327] = 9, + [360666] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_DASH_DASH, - ACTIONS(12822), 1, - anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7756), 1, + ACTIONS(12796), 1, + aux_sym__immediate_decimal_token2, + STATE(7760), 1, sym_comment, - STATE(9704), 1, - sym__flag, - ACTIONS(12750), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12752), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(4256), 2, - sym_short_flag, - sym_long_flag, - [360358] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(809), 1, + ACTIONS(809), 2, anon_sym_LF, - ACTIONS(12738), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12841), 1, anon_sym_DOT2, - STATE(7757), 1, - sym_comment, ACTIONS(807), 7, anon_sym_SEMI, anon_sym_RPAREN, @@ -543772,262 +543973,218 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [360383] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7741), 1, - sym__flag, - STATE(7758), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4442), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [360414] = 10, + [360689] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(11815), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4471), 1, sym__var, - STATE(7720), 1, + STATE(7731), 1, sym__immediate_decimal, - STATE(7759), 1, + STATE(7761), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7670), 2, + STATE(7726), 2, sym_expr_parenthesized, sym_val_variable, - [360447] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_LF, - ACTIONS(12844), 1, - anon_sym_DOT2, - ACTIONS(12847), 1, - aux_sym__immediate_decimal_token2, - STATE(7760), 1, - sym_comment, - ACTIONS(835), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [360472] = 5, + [360722] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12849), 1, - aux_sym__immediate_decimal_token2, - STATE(7761), 1, + STATE(7762), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(896), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 7, + ACTIONS(894), 7, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_DASH, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [360495] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7746), 1, - sym__flag, - STATE(7762), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4440), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4442), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [360526] = 10, + [360743] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(7262), 1, anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7234), 1, + ACTIONS(11815), 1, + anon_sym_LPAREN, + STATE(4471), 1, sym__var, - STATE(7554), 1, + STATE(7751), 1, sym__immediate_decimal, STATE(7763), 1, sym_comment, - ACTIONS(11431), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7575), 2, + STATE(7733), 2, sym_expr_parenthesized, sym_val_variable, - [360559] = 5, - ACTIONS(105), 1, + [360776] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12748), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, + aux_sym__immediate_decimal_token1, + STATE(7451), 1, + sym__var, + STATE(7640), 1, + sym__immediate_decimal, STATE(7764), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [360582] = 9, + ACTIONS(11787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(7639), 2, + sym_expr_parenthesized, + sym_val_variable, + [360809] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7753), 1, + STATE(7559), 1, sym__flag, STATE(7765), 1, sym_comment, - STATE(8483), 1, + STATE(8374), 1, sym_long_flag_equals_value, - ACTIONS(4440), 2, + ACTIONS(12736), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4442), 2, + ACTIONS(12738), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [360613] = 10, + [360840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11417), 1, + ACTIONS(4482), 1, + anon_sym_DASH, + STATE(7766), 1, + sym_comment, + ACTIONS(4484), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [360861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4168), 1, + anon_sym_DASH, + STATE(7767), 1, + sym_comment, + ACTIONS(4170), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [360882] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(11419), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11853), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12587), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(7234), 1, + STATE(7451), 1, sym__var, - STATE(7560), 1, + STATE(7651), 1, sym__immediate_decimal, - STATE(7766), 1, + STATE(7768), 1, sym_comment, - ACTIONS(11431), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7555), 2, + STATE(7643), 2, sym_expr_parenthesized, sym_val_variable, - [360646] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12738), 1, - aux_sym__immediate_decimal_token2, - STATE(7767), 1, - sym_comment, - ACTIONS(809), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [360669] = 10, + [360915] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(3957), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, - anon_sym_LPAREN, - STATE(4538), 1, + STATE(7451), 1, sym__var, - STATE(7768), 1, - sym_comment, - STATE(7825), 1, + STATE(7731), 1, sym__immediate_decimal, - ACTIONS(11795), 2, + STATE(7769), 1, + sym_comment, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7826), 2, + STATE(7726), 2, sym_expr_parenthesized, sym_val_variable, - [360702] = 4, + [360948] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4394), 1, - anon_sym_DASH, - STATE(7769), 1, + STATE(7770), 1, sym_comment, - ACTIONS(4396), 9, + ACTIONS(9009), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_GT, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [360723] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [360967] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4194), 1, + ACTIONS(4215), 1, anon_sym_DASH, - STATE(7770), 1, + STATE(7771), 1, sym_comment, - ACTIONS(4196), 9, + ACTIONS(4217), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544037,240 +544194,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [360744] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(12048), 1, - anon_sym_DOLLAR, - ACTIONS(12244), 1, - anon_sym_LPAREN, - ACTIONS(12250), 1, - aux_sym__immediate_decimal_token1, - STATE(5114), 1, - sym__var, - STATE(5934), 1, - sym__immediate_decimal, - STATE(7771), 1, - sym_comment, - ACTIONS(7808), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(5933), 2, - sym_expr_parenthesized, - sym_val_variable, - [360777] = 10, - ACTIONS(3), 1, + [360988] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7800), 1, - anon_sym_DOT2, - ACTIONS(12048), 1, - anon_sym_DOLLAR, - ACTIONS(12244), 1, - anon_sym_LPAREN, - ACTIONS(12250), 1, - aux_sym__immediate_decimal_token1, - STATE(5114), 1, - sym__var, - STATE(5936), 1, - sym__immediate_decimal, + ACTIONS(12814), 1, + anon_sym_DASH_DASH, + ACTIONS(12816), 1, + anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, STATE(7772), 1, sym_comment, - ACTIONS(7808), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(5935), 2, - sym_expr_parenthesized, - sym_val_variable, - [360810] = 9, + STATE(9703), 1, + sym__flag, + ACTIONS(4180), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4182), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4338), 2, + sym_short_flag, + sym_long_flag, + [361019] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, + STATE(7678), 1, + sym__flag, STATE(7773), 1, sym_comment, - STATE(9588), 1, - sym__flag, - ACTIONS(4440), 2, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4180), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4442), 2, + ACTIONS(4182), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4256), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [360841] = 10, + [361050] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(12320), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12326), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(6268), 1, + STATE(7451), 1, sym__var, - STATE(6905), 1, + STATE(7751), 1, sym__immediate_decimal, STATE(7774), 1, sym_comment, - ACTIONS(8639), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6904), 2, + STATE(7733), 2, sym_expr_parenthesized, sym_val_variable, - [360874] = 10, - ACTIONS(3), 1, + [361083] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(12320), 1, - anon_sym_DOLLAR, - ACTIONS(12326), 1, - aux_sym__immediate_decimal_token1, - STATE(6268), 1, - sym__var, - STATE(6885), 1, - sym__immediate_decimal, + ACTIONS(12866), 1, + aux_sym__immediate_decimal_token2, STATE(7775), 1, sym_comment, - ACTIONS(8639), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6883), 2, - sym_expr_parenthesized, - sym_val_variable, - [360907] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, - anon_sym_DOT2, - ACTIONS(12320), 1, - anon_sym_DOLLAR, - ACTIONS(12326), 1, - aux_sym__immediate_decimal_token1, - STATE(6268), 1, - sym__var, - STATE(6887), 1, - sym__immediate_decimal, - STATE(7776), 1, - sym_comment, - ACTIONS(8639), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6886), 2, - sym_expr_parenthesized, - sym_val_variable, - [360940] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_LPAREN, - ACTIONS(8631), 1, + ACTIONS(857), 2, + anon_sym_LF, anon_sym_DOT2, - ACTIONS(12320), 1, - anon_sym_DOLLAR, - ACTIONS(12326), 1, - aux_sym__immediate_decimal_token1, - STATE(6268), 1, - sym__var, - STATE(6884), 1, - sym__immediate_decimal, - STATE(7777), 1, - sym_comment, - ACTIONS(8639), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6971), 2, - sym_expr_parenthesized, - sym_val_variable, - [360973] = 9, + ACTIONS(855), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [361106] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7665), 1, + STATE(7700), 1, sym__flag, - STATE(7778), 1, + STATE(7776), 1, sym_comment, - STATE(8483), 1, + STATE(8374), 1, sym_long_flag_equals_value, - ACTIONS(4285), 2, + ACTIONS(4180), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4287), 2, + ACTIONS(4182), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [361004] = 9, + [361137] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3165), 1, + anon_sym_DASH, + ACTIONS(12868), 1, + anon_sym_DOT2, + ACTIONS(12872), 1, + aux_sym__immediate_decimal_token2, + STATE(7777), 1, + sym_comment, + ACTIONS(3167), 7, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [361162] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(7657), 1, - sym__flag, - STATE(7779), 1, + STATE(7778), 1, sym_comment, - STATE(8483), 1, + STATE(7813), 1, + sym__flag, + STATE(8374), 1, sym_long_flag_equals_value, - ACTIONS(4285), 2, + ACTIONS(4180), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4287), 2, + ACTIONS(4182), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(8424), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [361035] = 9, + [361193] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(12874), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12876), 1, + aux_sym__immediate_decimal_token2, + STATE(7779), 1, + sym_comment, + ACTIONS(2959), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(12824), 1, anon_sym_DASH, - STATE(7652), 1, - sym__flag, + anon_sym_RBRACE, + [361218] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4390), 1, + anon_sym_DASH, STATE(7780), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4285), 2, - anon_sym_SEMI, + ACTIONS(4392), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4287), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [361066] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4398), 1, + ACTIONS(4231), 1, anon_sym_DASH, STATE(7781), 1, sym_comment, - ACTIONS(4400), 9, + ACTIONS(4233), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544280,53 +544395,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361087] = 6, - ACTIONS(105), 1, + [361260] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12851), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12853), 1, + ACTIONS(12722), 1, aux_sym__immediate_decimal_token2, STATE(7782), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(807), 4, + sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [361112] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LF, - ACTIONS(12816), 1, + ACTIONS(809), 5, + anon_sym_DASH_DASH, anon_sym_DOT2, - ACTIONS(12818), 1, - aux_sym_unquoted_token2, - ACTIONS(12855), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [361283] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4259), 1, + anon_sym_DASH, STATE(7783), 1, sym_comment, - ACTIONS(1005), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4261), 9, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - [361139] = 4, + anon_sym_EQ_GT, + [361304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4406), 1, + ACTIONS(4289), 1, anon_sym_DASH, STATE(7784), 1, sym_comment, - ACTIONS(4408), 9, + ACTIONS(4291), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544336,50 +544447,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361160] = 6, - ACTIONS(105), 1, + [361325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12859), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4394), 1, + anon_sym_DASH, STATE(7785), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 5, - anon_sym_SEMI, + ACTIONS(4396), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [361185] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4410), 1, + ACTIONS(1185), 1, anon_sym_DASH, STATE(7786), 1, sym_comment, - ACTIONS(4412), 9, + ACTIONS(1187), 9, + anon_sym_EQ, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - [361206] = 4, + anon_sym_DOT2, + [361367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4414), 1, + ACTIONS(4311), 1, anon_sym_DASH, STATE(7787), 1, sym_comment, - ACTIONS(4416), 9, + ACTIONS(4313), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544389,37 +544498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361227] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - STATE(4690), 1, - sym__var, - STATE(7788), 1, - sym_comment, - STATE(8211), 1, - sym__immediate_decimal, - ACTIONS(11501), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8214), 2, - sym_expr_parenthesized, - sym_val_variable, - [361260] = 4, + [361388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4418), 1, + ACTIONS(4315), 1, anon_sym_DASH, - STATE(7789), 1, + STATE(7788), 1, sym_comment, - ACTIONS(4420), 9, + ACTIONS(4317), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544429,248 +544515,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361281] = 10, + [361409] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, + ACTIONS(4398), 1, + anon_sym_DASH, + STATE(7789), 1, + sym_comment, + ACTIONS(4400), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - STATE(4690), 1, - sym__var, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361430] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4406), 1, + anon_sym_DASH, STATE(7790), 1, sym_comment, - STATE(8192), 1, - sym__immediate_decimal, - ACTIONS(11501), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8206), 2, - sym_expr_parenthesized, - sym_val_variable, - [361314] = 10, + ACTIONS(4408), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361451] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - STATE(4690), 1, - sym__var, + ACTIONS(4412), 1, + anon_sym_DASH, STATE(7791), 1, sym_comment, - STATE(8173), 1, - sym__immediate_decimal, - ACTIONS(11501), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8188), 2, - sym_expr_parenthesized, - sym_val_variable, - [361347] = 10, + ACTIONS(4414), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361472] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DOT2, - ACTIONS(11497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12398), 1, - anon_sym_LPAREN, - ACTIONS(12400), 1, - anon_sym_DOLLAR, - STATE(4690), 1, - sym__var, + ACTIONS(4455), 1, + anon_sym_DASH, STATE(7792), 1, sym_comment, - STATE(8141), 1, - sym__immediate_decimal, - ACTIONS(11501), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(8161), 2, - sym_expr_parenthesized, - sym_val_variable, - [361380] = 4, + ACTIONS(4457), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4422), 1, + ACTIONS(4259), 1, anon_sym_DASH, STATE(7793), 1, sym_comment, - ACTIONS(4424), 9, + ACTIONS(4261), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [361401] = 4, + [361514] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4428), 1, + ACTIONS(4462), 1, anon_sym_DASH, STATE(7794), 1, sym_comment, - ACTIONS(4430), 9, + ACTIONS(4464), 9, + sym_identifier, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [361422] = 9, - ACTIONS(105), 1, + [361535] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(4474), 1, anon_sym_DASH, - STATE(7762), 1, - sym__flag, STATE(7795), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4490), 2, - anon_sym_SEMI, + ACTIONS(4476), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4492), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [361453] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12728), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12861), 1, - anon_sym_DOT2, + ACTIONS(4322), 1, + anon_sym_DASH, STATE(7796), 1, sym_comment, - ACTIONS(807), 4, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, + ACTIONS(4324), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [361478] = 10, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361577] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(12878), 1, anon_sym_DOT2, - ACTIONS(12655), 1, - aux_sym__immediate_decimal_token1, - STATE(6075), 1, - sym__var, - STATE(6772), 1, - sym__immediate_decimal, + ACTIONS(12881), 1, + aux_sym__immediate_decimal_token2, STATE(7797), 1, sym_comment, - ACTIONS(8379), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6779), 2, - sym_expr_parenthesized, - sym_val_variable, - [361511] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7765), 1, - sym__flag, - STATE(7798), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4490), 2, + ACTIONS(846), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4492), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [361542] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(12655), 1, - aux_sym__immediate_decimal_token1, - STATE(6075), 1, - sym__var, - STATE(6835), 1, - sym__immediate_decimal, - STATE(7799), 1, - sym_comment, - ACTIONS(8379), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6842), 2, - sym_expr_parenthesized, - sym_val_variable, - [361575] = 9, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [361602] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7773), 1, - sym__flag, - STATE(7800), 1, + ACTIONS(817), 1, + anon_sym_LF, + ACTIONS(12788), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12883), 1, + anon_sym_DOT2, + STATE(7798), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4490), 2, + ACTIONS(815), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4492), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [361606] = 4, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [361627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4134), 1, + ACTIONS(4326), 1, anon_sym_DASH, - STATE(7801), 1, + STATE(7799), 1, sym_comment, - ACTIONS(4136), 9, + ACTIONS(4328), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544680,52 +544706,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361627] = 3, + [361648] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7802), 1, + ACTIONS(4368), 1, + anon_sym_DASH, + STATE(7800), 1, sym_comment, - ACTIONS(9140), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, + ACTIONS(4370), 9, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [361646] = 9, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361669] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, + ACTIONS(4714), 1, anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(12812), 1, anon_sym_DASH, - STATE(4257), 1, - sym_long_flag_equals_value, - STATE(7803), 1, + STATE(7801), 1, sym_comment, - STATE(9644), 1, + STATE(7839), 1, sym__flag, - ACTIONS(4490), 2, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4237), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4492), 2, + ACTIONS(4239), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4256), 2, + STATE(8440), 2, sym_short_flag, sym_long_flag, - [361677] = 4, + [361700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4372), 1, anon_sym_DASH, - STATE(7804), 1, + STATE(7802), 1, sym_comment, - ACTIONS(4468), 9, + ACTIONS(4374), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -544735,292 +544762,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [361698] = 10, + [361721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, + ACTIONS(4376), 1, + anon_sym_DASH, + STATE(7803), 1, + sym_comment, + ACTIONS(4378), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12282), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361742] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11493), 1, + anon_sym_DOT2, + ACTIONS(11497), 1, aux_sym__immediate_decimal_token1, - STATE(1590), 1, + ACTIONS(12517), 1, + anon_sym_DOLLAR, + ACTIONS(12583), 1, + anon_sym_LPAREN, + STATE(4695), 1, sym__var, - STATE(2327), 1, - sym__immediate_decimal, - STATE(7805), 1, + STATE(7804), 1, sym_comment, - ACTIONS(2257), 2, + STATE(8119), 1, + sym__immediate_decimal, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2328), 2, + STATE(8118), 2, sym_expr_parenthesized, sym_val_variable, - [361731] = 10, + [361775] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(4380), 1, + anon_sym_DASH, + STATE(7805), 1, + sym_comment, + ACTIONS(4382), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361796] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11931), 1, + ACTIONS(11747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12411), 1, anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(12551), 1, anon_sym_LPAREN, - ACTIONS(12426), 1, - aux_sym__immediate_decimal_token1, - STATE(4871), 1, - sym__var, - STATE(5615), 1, + STATE(4300), 1, sym__immediate_decimal, STATE(7806), 1, sym_comment, - ACTIONS(7714), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5547), 2, + STATE(4299), 2, sym_expr_parenthesized, sym_val_variable, - [361764] = 10, + [361829] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(11931), 1, + ACTIONS(11747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12411), 1, anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(12551), 1, anon_sym_LPAREN, - ACTIONS(12426), 1, - aux_sym__immediate_decimal_token1, - STATE(4871), 1, - sym__var, - STATE(5622), 1, + STATE(4304), 1, sym__immediate_decimal, STATE(7807), 1, sym_comment, - ACTIONS(7714), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5624), 2, + STATE(4301), 2, sym_expr_parenthesized, sym_val_variable, - [361797] = 10, + [361862] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(12210), 1, - anon_sym_LPAREN, - ACTIONS(12212), 1, - anon_sym_DOLLAR, - ACTIONS(12218), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(5896), 1, - sym__var, - STATE(6301), 1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_LPAREN, + STATE(4309), 1, sym__immediate_decimal, STATE(7808), 1, sym_comment, - ACTIONS(8178), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6293), 2, + STATE(4305), 2, sym_expr_parenthesized, sym_val_variable, - [361830] = 10, + [361895] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, + ACTIONS(7494), 1, anon_sym_DOT2, - ACTIONS(12210), 1, - anon_sym_LPAREN, - ACTIONS(12212), 1, - anon_sym_DOLLAR, - ACTIONS(12218), 1, + ACTIONS(11747), 1, aux_sym__immediate_decimal_token1, - STATE(5896), 1, - sym__var, - STATE(6312), 1, + ACTIONS(12411), 1, + anon_sym_DOLLAR, + ACTIONS(12551), 1, + anon_sym_LPAREN, + STATE(4325), 1, sym__immediate_decimal, STATE(7809), 1, sym_comment, - ACTIONS(8178), 2, + STATE(8116), 1, + sym__var, + ACTIONS(11749), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6311), 2, + STATE(4321), 2, sym_expr_parenthesized, sym_val_variable, - [361863] = 10, + [361928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(12210), 1, - anon_sym_LPAREN, - ACTIONS(12212), 1, - anon_sym_DOLLAR, - ACTIONS(12218), 1, - aux_sym__immediate_decimal_token1, - STATE(5896), 1, - sym__var, - STATE(6318), 1, - sym__immediate_decimal, + ACTIONS(4386), 1, + anon_sym_DASH, STATE(7810), 1, sym_comment, - ACTIONS(8178), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6316), 2, - sym_expr_parenthesized, - sym_val_variable, - [361896] = 10, + ACTIONS(4388), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, - anon_sym_DOT2, - ACTIONS(12210), 1, - anon_sym_LPAREN, - ACTIONS(12212), 1, + ACTIONS(4402), 1, + anon_sym_DASH, + STATE(7811), 1, + sym_comment, + ACTIONS(4404), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [361970] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4289), 1, + anon_sym_DASH, + STATE(7812), 1, + sym_comment, + ACTIONS(4291), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [361991] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7725), 1, + sym__flag, + STATE(7813), 1, + sym_comment, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4096), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4098), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [362022] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(12218), 1, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(5896), 1, + STATE(2634), 1, sym__var, - STATE(6321), 1, + STATE(3829), 1, sym__immediate_decimal, - STATE(7811), 1, + STATE(7814), 1, sym_comment, - ACTIONS(8178), 2, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6320), 2, + STATE(3811), 2, sym_expr_parenthesized, sym_val_variable, - [361929] = 10, + [362055] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DOT2, - ACTIONS(11931), 1, + ACTIONS(3959), 1, anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(12426), 1, + ACTIONS(4692), 1, + anon_sym_DOT2, + ACTIONS(12308), 1, aux_sym__immediate_decimal_token1, - STATE(4871), 1, + STATE(2634), 1, sym__var, - STATE(5625), 1, + STATE(3837), 1, sym__immediate_decimal, - STATE(7812), 1, + STATE(7815), 1, sym_comment, - ACTIONS(7714), 2, + ACTIONS(4700), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5626), 2, + STATE(3836), 2, sym_expr_parenthesized, sym_val_variable, - [361962] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7813), 1, - sym_comment, - ACTIONS(9138), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [361981] = 10, + [362088] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(11493), 1, anon_sym_DOT2, - ACTIONS(11931), 1, + ACTIONS(11497), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(12420), 1, + ACTIONS(12583), 1, anon_sym_LPAREN, - ACTIONS(12426), 1, - aux_sym__immediate_decimal_token1, - STATE(4871), 1, + STATE(4695), 1, sym__var, - STATE(5632), 1, - sym__immediate_decimal, - STATE(7814), 1, + STATE(7816), 1, sym_comment, - ACTIONS(7714), 2, + STATE(8122), 1, + sym__immediate_decimal, + ACTIONS(11501), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(5633), 2, + STATE(8121), 2, sym_expr_parenthesized, sym_val_variable, - [362014] = 4, + [362121] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12814), 1, + anon_sym_DASH_DASH, + ACTIONS(12816), 1, + anon_sym_DASH, + STATE(4346), 1, + sym_long_flag_equals_value, + STATE(7817), 1, + sym_comment, + STATE(9560), 1, + sym__flag, + ACTIONS(12740), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12742), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(4338), 2, + sym_short_flag, + sym_long_flag, + [362152] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12866), 1, + ACTIONS(4478), 1, anon_sym_DASH, - STATE(7815), 1, + STATE(7818), 1, sym_comment, - ACTIONS(12864), 9, + ACTIONS(4480), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [362173] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12756), 1, + anon_sym_DASH, + ACTIONS(12886), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(12888), 1, anon_sym_COMMA, + STATE(7819), 1, + sym_comment, + STATE(7902), 1, + sym_param_value, + ACTIONS(12752), 6, + sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [362035] = 6, - ACTIONS(105), 1, + [362200] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym_unquoted_token6, - ACTIONS(8784), 1, - anon_sym_DOT2, - STATE(7816), 1, + ACTIONS(12764), 1, + anon_sym_COMMA, + ACTIONS(12766), 1, + anon_sym_DASH, + ACTIONS(12886), 1, + anon_sym_EQ, + STATE(7820), 1, sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 6, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(7850), 1, + sym_param_value, + ACTIONS(12762), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - [362060] = 6, + [362227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12868), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12870), 1, - aux_sym__immediate_decimal_token2, - STATE(7817), 1, - sym_comment, - ACTIONS(807), 3, + ACTIONS(12732), 1, + anon_sym_COMMA, + ACTIONS(12734), 1, anon_sym_DASH, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 5, + ACTIONS(12886), 1, + anon_sym_EQ, + STATE(7821), 1, + sym_comment, + STATE(7897), 1, + sym_param_value, + ACTIONS(12730), 6, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [362085] = 4, + [362254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4458), 1, + ACTIONS(4416), 1, anon_sym_DASH, - STATE(7818), 1, + STATE(7822), 1, sym_comment, - ACTIONS(4460), 9, + ACTIONS(4418), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -545030,33 +545169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [362106] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12872), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12874), 1, - aux_sym__immediate_decimal_token2, - STATE(7819), 1, - sym_comment, - ACTIONS(815), 3, - anon_sym_DASH, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [362131] = 4, + [362275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, + ACTIONS(4420), 1, anon_sym_DASH, - STATE(7820), 1, + STATE(7823), 1, sym_comment, - ACTIONS(4472), 9, + ACTIONS(4422), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -545066,106 +545186,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [362152] = 10, - ACTIONS(3), 1, + [362296] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_DOT2, - ACTIONS(11397), 1, - anon_sym_LPAREN, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(12282), 1, - aux_sym__immediate_decimal_token1, - STATE(1590), 1, - sym__var, - STATE(2185), 1, - sym__immediate_decimal, - STATE(7821), 1, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7629), 1, + sym__flag, + STATE(7824), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2304), 2, - sym_expr_parenthesized, - sym_val_variable, - [362185] = 10, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4237), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4239), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [362327] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12116), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, - anon_sym_LPAREN, - STATE(4538), 1, + STATE(7825), 1, + sym_comment, + STATE(7983), 1, sym__var, - STATE(7678), 1, + STATE(8851), 1, sym__immediate_decimal, - STATE(7822), 1, - sym_comment, - ACTIONS(11795), 2, + ACTIONS(11641), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(8850), 2, sym_expr_parenthesized, sym_val_variable, - [362218] = 10, + [362360] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(11791), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11837), 1, + ACTIONS(12535), 1, anon_sym_LPAREN, - STATE(4538), 1, + ACTIONS(12537), 1, + anon_sym_DOLLAR, + ACTIONS(12543), 1, + aux_sym__immediate_decimal_token1, + STATE(3945), 1, sym__var, - STATE(7706), 1, + STATE(4060), 1, sym__immediate_decimal, - STATE(7823), 1, + STATE(7826), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(7452), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(4188), 2, sym_expr_parenthesized, sym_val_variable, - [362251] = 10, + [362393] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(7444), 1, + anon_sym_DOT2, + ACTIONS(12535), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(12537), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, - anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12543), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(3945), 1, sym__var, - STATE(7678), 1, + STATE(4062), 1, sym__immediate_decimal, - STATE(7824), 1, + STATE(7827), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(7452), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7673), 2, + STATE(4061), 2, sym_expr_parenthesized, sym_val_variable, - [362284] = 4, + [362426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4044), 1, + ACTIONS(4424), 1, anon_sym_DASH, - STATE(7825), 1, + STATE(7828), 1, sym_comment, - ACTIONS(4046), 9, + ACTIONS(4426), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -545175,14 +545294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [362305] = 4, + [362447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4486), 1, + ACTIONS(4470), 1, anon_sym_DASH, - STATE(7826), 1, + STATE(7829), 1, sym_comment, - ACTIONS(4488), 9, + ACTIONS(4472), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DOLLAR, @@ -545192,435 +545311,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [362326] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7798), 1, - sym__flag, - STATE(7827), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [362357] = 9, - ACTIONS(105), 1, + [362468] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_DASH_DASH, - ACTIONS(12824), 1, + ACTIONS(4486), 1, anon_sym_DASH, - STATE(7800), 1, - sym__flag, - STATE(7828), 1, + STATE(7830), 1, sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4180), 2, - anon_sym_SEMI, + ACTIONS(4488), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [362388] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4528), 1, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(12824), 1, - anon_sym_DASH, - STATE(7803), 1, - sym__flag, - STATE(7829), 1, - sym_comment, - STATE(8483), 1, - sym_long_flag_equals_value, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8424), 2, - sym_short_flag, - sym_long_flag, - [362419] = 10, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [362489] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(11787), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, anon_sym_DOT2, - ACTIONS(11791), 1, + ACTIONS(12116), 1, aux_sym__immediate_decimal_token1, - STATE(7529), 1, + STATE(7831), 1, + sym_comment, + STATE(7983), 1, sym__var, - STATE(7706), 1, + STATE(8853), 1, sym__immediate_decimal, - STATE(7830), 1, - sym_comment, - ACTIONS(11795), 2, + ACTIONS(11641), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(7691), 2, + STATE(8852), 2, sym_expr_parenthesized, sym_val_variable, - [362452] = 6, - ACTIONS(105), 1, + [362522] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12876), 1, + ACTIONS(7444), 1, + anon_sym_DOT2, + ACTIONS(12535), 1, + anon_sym_LPAREN, + ACTIONS(12537), 1, + anon_sym_DOLLAR, + ACTIONS(12543), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12878), 1, - aux_sym__immediate_decimal_token2, - STATE(7831), 1, + STATE(3945), 1, + sym__var, + STATE(4065), 1, + sym__immediate_decimal, + STATE(7832), 1, sym_comment, - ACTIONS(2998), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [362477] = 10, + ACTIONS(7452), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(4064), 2, + sym_expr_parenthesized, + sym_val_variable, + [362555] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7444), 1, anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, - anon_sym_DOLLAR, - ACTIONS(12364), 1, + ACTIONS(12535), 1, anon_sym_LPAREN, - STATE(4292), 1, + ACTIONS(12537), 1, + anon_sym_DOLLAR, + ACTIONS(12543), 1, + aux_sym__immediate_decimal_token1, + STATE(3945), 1, + sym__var, + STATE(4067), 1, sym__immediate_decimal, - STATE(7832), 1, + STATE(7833), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, + ACTIONS(7452), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4300), 2, + STATE(4066), 2, sym_expr_parenthesized, sym_val_variable, - [362510] = 9, + [362588] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12820), 1, + ACTIONS(12814), 1, anon_sym_DASH_DASH, - ACTIONS(12822), 1, + ACTIONS(12816), 1, anon_sym_DASH, - STATE(4257), 1, + STATE(4346), 1, sym_long_flag_equals_value, - STATE(7833), 1, + STATE(7834), 1, sym_comment, - STATE(9591), 1, + STATE(9370), 1, sym__flag, - ACTIONS(4180), 2, + ACTIONS(4244), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4182), 2, + ACTIONS(4246), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(4256), 2, + STATE(4338), 2, sym_short_flag, sym_long_flag, - [362541] = 10, + [362619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(4478), 1, + anon_sym_DASH, + STATE(7835), 1, + sym_comment, + ACTIONS(4480), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, - anon_sym_DOT2, - ACTIONS(12655), 1, - aux_sym__immediate_decimal_token1, - STATE(6075), 1, - sym__var, - STATE(6793), 1, - sym__immediate_decimal, - STATE(7834), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [362640] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4482), 1, + anon_sym_DASH, + STATE(7836), 1, sym_comment, - ACTIONS(8379), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(6791), 2, - sym_expr_parenthesized, - sym_val_variable, - [362574] = 10, + ACTIONS(4484), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [362661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, - anon_sym_DOT2, - ACTIONS(11729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, + ACTIONS(4086), 1, + anon_sym_DASH, + STATE(7837), 1, + sym_comment, + ACTIONS(4088), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(12364), 1, - anon_sym_LPAREN, - STATE(4304), 1, - sym__immediate_decimal, - STATE(7835), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [362682] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4090), 1, + anon_sym_DASH, + STATE(7838), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(4310), 2, - sym_expr_parenthesized, - sym_val_variable, - [362607] = 10, + ACTIONS(4092), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [362703] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4714), 1, + anon_sym_DASH_DASH, + ACTIONS(12812), 1, + anon_sym_DASH, + STATE(7564), 1, + sym__flag, + STATE(7839), 1, + sym_comment, + STATE(8374), 1, + sym_long_flag_equals_value, + ACTIONS(4244), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4246), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8440), 2, + sym_short_flag, + sym_long_flag, + [362734] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11729), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, - anon_sym_DOLLAR, - ACTIONS(12364), 1, + ACTIONS(11789), 1, anon_sym_LPAREN, - STATE(4318), 1, + STATE(7451), 1, + sym__var, + STATE(7682), 1, sym__immediate_decimal, - STATE(7836), 1, + STATE(7840), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4322), 2, + STATE(7630), 2, sym_expr_parenthesized, sym_val_variable, - [362640] = 10, + [362767] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11729), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12160), 1, - anon_sym_DOLLAR, - ACTIONS(12364), 1, + ACTIONS(11789), 1, anon_sym_LPAREN, - STATE(4227), 1, + STATE(7451), 1, + sym__var, + STATE(7644), 1, sym__immediate_decimal, - STATE(7837), 1, + STATE(7841), 1, sym_comment, - STATE(8261), 1, - sym__var, - ACTIONS(11731), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(4331), 2, + STATE(7546), 2, sym_expr_parenthesized, sym_val_variable, - [362673] = 10, + [362800] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, + ACTIONS(11505), 1, anon_sym_DOLLAR, - ACTIONS(12298), 1, + ACTIONS(11629), 1, + anon_sym_LPAREN, + ACTIONS(11633), 1, + anon_sym_DOT2, + ACTIONS(12116), 1, aux_sym__immediate_decimal_token1, - STATE(1506), 1, + STATE(7842), 1, + sym_comment, + STATE(7983), 1, sym__var, - STATE(2020), 1, + STATE(8856), 1, sym__immediate_decimal, - STATE(7838), 1, - sym_comment, - ACTIONS(2085), 2, + ACTIONS(11641), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2018), 2, + STATE(8854), 2, sym_expr_parenthesized, sym_val_variable, - [362706] = 6, - ACTIONS(105), 1, + [362833] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12880), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12882), 1, - aux_sym__immediate_decimal_token2, - STATE(7839), 1, + ACTIONS(4150), 1, + anon_sym_DASH, + STATE(7843), 1, sym_comment, - ACTIONS(2988), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 6, - anon_sym_SEMI, + ACTIONS(4152), 9, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [362731] = 10, + [362854] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12655), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(6075), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + STATE(7451), 1, sym__var, - STATE(6732), 1, + STATE(7640), 1, sym__immediate_decimal, - STATE(7840), 1, + STATE(7844), 1, sym_comment, - ACTIONS(8379), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6748), 2, + STATE(7639), 2, sym_expr_parenthesized, sym_val_variable, - [362764] = 4, + [362887] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4474), 1, - anon_sym_DASH, - STATE(7841), 1, - sym_comment, - ACTIONS(4476), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3983), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [362785] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(11375), 1, - anon_sym_LPAREN, - ACTIONS(11977), 1, - anon_sym_DOLLAR, - ACTIONS(12298), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(1506), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + STATE(7451), 1, sym__var, - STATE(2006), 1, + STATE(7651), 1, sym__immediate_decimal, - STATE(7842), 1, + STATE(7845), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2004), 2, + STATE(7643), 2, sym_expr_parenthesized, sym_val_variable, - [362818] = 10, + [362920] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12655), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(6075), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + STATE(7451), 1, sym__var, - STATE(6747), 1, + STATE(7731), 1, sym__immediate_decimal, - STATE(7843), 1, + STATE(7846), 1, sym_comment, - ACTIONS(8379), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6731), 2, + STATE(7726), 2, sym_expr_parenthesized, sym_val_variable, - [362851] = 10, + [362953] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(8367), 1, - anon_sym_LPAREN, - ACTIONS(8371), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - ACTIONS(12655), 1, + ACTIONS(11785), 1, aux_sym__immediate_decimal_token1, - STATE(6075), 1, + ACTIONS(11789), 1, + anon_sym_LPAREN, + STATE(7451), 1, sym__var, - STATE(6709), 1, + STATE(7751), 1, sym__immediate_decimal, - STATE(7844), 1, + STATE(7847), 1, sym_comment, - ACTIONS(8379), 2, + ACTIONS(11787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(6707), 2, + STATE(7733), 2, sym_expr_parenthesized, sym_val_variable, - [362884] = 10, + [362986] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(2096), 1, anon_sym_DOT2, ACTIONS(11375), 1, anon_sym_LPAREN, - ACTIONS(11977), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(12298), 1, + ACTIONS(12652), 1, aux_sym__immediate_decimal_token1, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(2002), 1, + STATE(2145), 1, sym__immediate_decimal, - STATE(7845), 1, + STATE(7848), 1, sym_comment, - ACTIONS(2085), 2, + ACTIONS(2104), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(1998), 2, + STATE(2144), 2, sym_expr_parenthesized, sym_val_variable, - [362917] = 5, + [363019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12886), 1, + ACTIONS(2998), 1, + anon_sym_DASH, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(7849), 1, + sym_comment, + ACTIONS(3000), 7, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [363041] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12892), 1, anon_sym_COMMA, - ACTIONS(12888), 1, + ACTIONS(12894), 1, anon_sym_DASH, - STATE(7846), 1, + STATE(7850), 1, sym_comment, - ACTIONS(12884), 7, + ACTIONS(12890), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -545628,66 +545744,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [362939] = 6, - ACTIONS(105), 1, + [363063] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(12890), 1, - anon_sym_DOT2, - ACTIONS(12892), 1, - aux_sym__immediate_decimal_token2, - STATE(7847), 1, + ACTIONS(12732), 1, + anon_sym_COMMA, + ACTIONS(12734), 1, + anon_sym_DASH, + ACTIONS(12896), 1, + anon_sym_EQ, + STATE(7851), 1, sym_comment, - ACTIONS(3489), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(7897), 1, + sym_param_value, + ACTIONS(12730), 5, + sym_identifier, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [362963] = 4, + [363089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7848), 1, + STATE(7852), 1, sym_comment, - ACTIONS(815), 4, + ACTIONS(807), 4, sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(817), 5, + ACTIONS(809), 5, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [362983] = 6, + [363109] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(12826), 1, + aux_sym__immediate_decimal_token2, + STATE(7853), 1, + sym_comment, + ACTIONS(3000), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [363131] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12756), 1, + anon_sym_DASH, + ACTIONS(12888), 1, + anon_sym_COMMA, + ACTIONS(12896), 1, + anon_sym_EQ, + STATE(7854), 1, + sym_comment, + STATE(7902), 1, + sym_param_value, + ACTIONS(12752), 5, + sym_identifier, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [363157] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12876), 1, + aux_sym__immediate_decimal_token2, + STATE(7855), 1, + sym_comment, + ACTIONS(2959), 2, anon_sym_LF, - ACTIONS(12894), 1, anon_sym_DOT2, + ACTIONS(2957), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [363179] = 5, + ACTIONS(105), 1, + anon_sym_POUND, ACTIONS(12898), 1, aux_sym__immediate_decimal_token2, - STATE(7849), 1, + STATE(7856), 1, + sym_comment, + ACTIONS(3806), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(3804), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [363201] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_LF, + ACTIONS(8859), 1, + sym_filesize_unit, + ACTIONS(8861), 1, + sym_duration_unit, + STATE(7857), 1, sym_comment, - ACTIONS(3489), 6, + ACTIONS(1054), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [363007] = 6, + [363225] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12900), 1, aux_sym__immediate_decimal_token1, ACTIONS(12902), 1, aux_sym__immediate_decimal_token2, - STATE(7850), 1, + STATE(7858), 1, sym_comment, ACTIONS(815), 2, sym_filesize_unit, @@ -545698,489 +545885,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [363031] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - ACTIONS(12904), 1, - anon_sym_RBRACK, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7851), 1, - sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(7899), 1, - aux_sym_command_list_repeat1, - STATE(8550), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [363063] = 4, + [363249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7852), 1, + STATE(7859), 1, sym_comment, - ACTIONS(844), 4, + ACTIONS(855), 4, sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 5, + ACTIONS(857), 5, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [363083] = 7, + [363269] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12906), 1, + ACTIONS(3167), 1, + anon_sym_LF, + ACTIONS(12904), 1, anon_sym_DOT2, ACTIONS(12908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12910), 1, - aux_sym_unquoted_token2, - STATE(7853), 1, + aux_sym__immediate_decimal_token2, + STATE(7860), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1005), 4, + ACTIONS(3165), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [363109] = 10, + anon_sym_RBRACE, + [363293] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, + ACTIONS(12910), 1, + aux_sym__immediate_decimal_token1, ACTIONS(12912), 1, - anon_sym_RBRACK, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7854), 1, - sym_comment, - STATE(7881), 1, - aux_sym_command_list_repeat1, - STATE(7888), 1, - sym_val_string, - STATE(8550), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [363141] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12870), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12914), 1, - anon_sym_DOT2, - STATE(7855), 1, + STATE(7861), 1, sym_comment, - ACTIONS(807), 3, - anon_sym_DASH, + ACTIONS(807), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(809), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT2, sym_duration_unit, - [363165] = 4, + [363317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7856), 1, + STATE(7862), 1, sym_comment, - ACTIONS(889), 4, + ACTIONS(894), 4, sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(891), 5, + ACTIONS(896), 5, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [363185] = 6, + [363337] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(3167), 1, anon_sym_LF, - ACTIONS(12878), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12917), 1, + ACTIONS(12914), 1, anon_sym_DOT2, - STATE(7857), 1, + ACTIONS(12916), 1, + aux_sym__immediate_decimal_token2, + STATE(7863), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(3165), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [363209] = 6, + [363361] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(12892), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12920), 1, + ACTIONS(8972), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12918), 1, anon_sym_DOT2, - STATE(7858), 1, + ACTIONS(12920), 1, + aux_sym_unquoted_token2, + STATE(7864), 1, sym_comment, - ACTIONS(3489), 6, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(949), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [363233] = 7, + [363387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12686), 1, + ACTIONS(12764), 1, anon_sym_COMMA, - ACTIONS(12688), 1, + ACTIONS(12766), 1, anon_sym_DASH, - ACTIONS(12923), 1, + ACTIONS(12896), 1, anon_sym_EQ, - STATE(7846), 1, + STATE(7850), 1, sym_param_value, - STATE(7859), 1, - sym_comment, - ACTIONS(12684), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [363259] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12927), 1, - anon_sym_COMMA, - ACTIONS(12929), 1, - anon_sym_DASH, - STATE(7860), 1, - sym_comment, - ACTIONS(12925), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [363281] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12933), 1, - anon_sym_COMMA, - ACTIONS(12935), 1, - anon_sym_DASH, - STATE(7861), 1, + STATE(7865), 1, sym_comment, - ACTIONS(12931), 7, + ACTIONS(12762), 5, sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [363303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8776), 1, - anon_sym_DOT2, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - STATE(7862), 1, - sym_comment, - ACTIONS(861), 3, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [363327] = 6, - ACTIONS(3), 1, + [363413] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12937), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12939), 1, + ACTIONS(12852), 1, aux_sym__immediate_decimal_token2, - STATE(7863), 1, + STATE(7866), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym_duration_unit, - [363351] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12935), 1, - anon_sym_DASH, - ACTIONS(12941), 1, - anon_sym_COMMA, - STATE(7864), 1, - sym_comment, - ACTIONS(12931), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(815), 5, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [363373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12943), 1, - anon_sym_DOT2, - ACTIONS(12946), 1, - aux_sym__immediate_decimal_token2, - STATE(7865), 1, - sym_comment, - ACTIONS(835), 3, - anon_sym_DASH, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_duration_unit, - [363397] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(9068), 1, sym_filesize_unit, - ACTIONS(9070), 1, sym_duration_unit, - STATE(7866), 1, - sym_comment, - ACTIONS(1102), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [363421] = 7, + aux_sym_unquoted_token6, + [363435] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12700), 1, - anon_sym_DASH, - ACTIONS(12830), 1, - anon_sym_COMMA, - ACTIONS(12923), 1, - anon_sym_EQ, - STATE(7864), 1, - sym_param_value, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + ACTIONS(12922), 1, + anon_sym_RBRACK, + STATE(7148), 1, + sym__str_double_quotes, STATE(7867), 1, sym_comment, - ACTIONS(12696), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [363447] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12692), 1, - anon_sym_COMMA, - ACTIONS(12694), 1, - anon_sym_DASH, - ACTIONS(12923), 1, - anon_sym_EQ, - STATE(7860), 1, - sym_param_value, - STATE(7868), 1, - sym_comment, - ACTIONS(12690), 5, - sym_identifier, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [363473] = 4, + STATE(7877), 1, + sym_val_string, + STATE(7883), 1, + aux_sym_command_list_repeat1, + STATE(8475), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [363467] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(7869), 1, + ACTIONS(12860), 1, + aux_sym__immediate_decimal_token2, + STATE(7868), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(809), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(889), 7, + ACTIONS(807), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363493] = 4, + [363489] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(7870), 1, + ACTIONS(12924), 1, + aux_sym__immediate_decimal_token2, + STATE(7869), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(857), 3, + ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - ACTIONS(844), 7, + ACTIONS(855), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363513] = 5, + [363511] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8694), 1, - aux_sym_unquoted_token6, - STATE(7871), 1, + ACTIONS(12926), 1, + anon_sym_DOT2, + ACTIONS(12929), 1, + aux_sym__immediate_decimal_token2, + STATE(7870), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 6, + ACTIONS(846), 5, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, sym_filesize_unit, sym_duration_unit, - [363535] = 4, + aux_sym_unquoted_token6, + [363535] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(7872), 1, + ACTIONS(12852), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12931), 1, + anon_sym_DOT2, + STATE(7871), 1, sym_comment, ACTIONS(817), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 7, + ACTIONS(815), 5, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363555] = 4, + [363559] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1067), 1, + ACTIONS(3000), 1, anon_sym_LF, - STATE(7873), 1, - sym_comment, - ACTIONS(1065), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [363575] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12878), 1, + ACTIONS(12826), 1, aux_sym__immediate_decimal_token2, - STATE(7874), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_LF, + ACTIONS(12934), 1, anon_sym_DOT2, - ACTIONS(2996), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [363597] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(7875), 1, + STATE(7872), 1, sym_comment, - ACTIONS(861), 8, + ACTIONS(2998), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [363617] = 5, + [363583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12948), 1, - aux_sym__immediate_decimal_token2, - STATE(7876), 1, + STATE(7873), 1, sym_comment, - ACTIONS(844), 3, - anon_sym_DASH, + ACTIONS(815), 4, + sym_cmd_identifier, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(846), 5, - anon_sym_DOLLAR, + ACTIONS(817), 5, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT2, - sym_duration_unit, - [363639] = 7, - ACTIONS(105), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [363603] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12906), 1, - anon_sym_DOT2, - ACTIONS(12910), 1, - aux_sym_unquoted_token2, - STATE(7877), 1, + STATE(7874), 1, sym_comment, - ACTIONS(1007), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1005), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [363665] = 4, + ACTIONS(4648), 9, + anon_sym_EQ, + sym_cmd_identifier, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [363621] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(7878), 1, + STATE(7875), 1, sym_comment, ACTIONS(809), 2, anon_sym_LF, @@ -546193,106 +546183,79 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363685] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12882), 1, - aux_sym__immediate_decimal_token2, - STATE(7879), 1, - sym_comment, - ACTIONS(2988), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [363707] = 5, + [363641] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12950), 1, - aux_sym__immediate_decimal_token2, - STATE(7880), 1, + STATE(7876), 1, sym_comment, - ACTIONS(3836), 2, + ACTIONS(857), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3834), 6, + ACTIONS(855), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [363729] = 10, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [363661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, + STATE(7877), 1, + sym_comment, + ACTIONS(4652), 9, + anon_sym_EQ, sym_cmd_identifier, - ACTIONS(12952), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7881), 1, - sym_comment, - STATE(7888), 1, - sym_val_string, - STATE(7899), 1, - aux_sym_command_list_repeat1, - STATE(8550), 1, - sym__command_name, - ACTIONS(3152), 2, + anon_sym_LPAREN, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [363761] = 6, + [363679] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12859), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(12954), 1, - anon_sym_DOT2, - STATE(7882), 1, + STATE(7878), 1, sym_comment, - ACTIONS(809), 2, - ts_builtin_sym_end, + ACTIONS(896), 2, anon_sym_LF, - ACTIONS(807), 5, + anon_sym_DOT2, + ACTIONS(894), 7, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363785] = 6, + [363699] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12957), 1, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(2251), 1, + aux_sym_unquoted_token6, + ACTIONS(8705), 1, anon_sym_DOT2, - ACTIONS(12960), 1, - aux_sym__immediate_decimal_token2, - STATE(7883), 1, + STATE(7879), 1, sym_comment, - ACTIONS(837), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(835), 5, + ACTIONS(877), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_RBRACE, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [363809] = 6, + [363723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12962), 1, + ACTIONS(12936), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12964), 1, + ACTIONS(12938), 1, aux_sym__immediate_decimal_token2, - STATE(7884), 1, + STATE(7880), 1, sym_comment, ACTIONS(817), 2, anon_sym_DASH_DASH, @@ -546303,78 +546266,14 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363833] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12966), 1, - aux_sym__immediate_decimal_token2, - STATE(7885), 1, - sym_comment, - ACTIONS(846), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 5, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [363855] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12853), 1, - aux_sym__immediate_decimal_token2, - STATE(7886), 1, - sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 5, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [363877] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7887), 1, - sym_comment, - ACTIONS(4538), 9, - anon_sym_EQ, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [363895] = 3, + [363747] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7888), 1, - sym_comment, - ACTIONS(4534), 9, - anon_sym_EQ, - sym_cmd_identifier, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [363913] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12968), 1, + ACTIONS(12940), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12970), 1, + ACTIONS(12942), 1, aux_sym__immediate_decimal_token2, - STATE(7889), 1, + STATE(7881), 1, sym_comment, ACTIONS(809), 2, anon_sym_DASH_DASH, @@ -546385,245 +546284,124 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [363937] = 6, + [363771] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12972), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(12974), 1, - aux_sym__immediate_decimal_token2, - STATE(7890), 1, - sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [363961] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12859), 1, - aux_sym__immediate_decimal_token2, - STATE(7891), 1, - sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(807), 5, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [363983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12874), 1, - aux_sym__immediate_decimal_token2, - STATE(7892), 1, - sym_comment, - ACTIONS(815), 3, - anon_sym_DASH, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(12918), 1, anon_sym_DOT2, - sym_duration_unit, - [364005] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12976), 1, + ACTIONS(12920), 1, + aux_sym_unquoted_token2, + ACTIONS(12944), 1, aux_sym__immediate_decimal_token1, - ACTIONS(12978), 1, - aux_sym__immediate_decimal_token2, - STATE(7893), 1, + STATE(7882), 1, sym_comment, - ACTIONS(2988), 3, + ACTIONS(951), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 4, + ACTIONS(949), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [364029] = 10, + [363797] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - ACTIONS(12980), 1, + ACTIONS(12946), 1, anon_sym_RBRACK, - STATE(7146), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(7851), 1, - aux_sym_command_list_repeat1, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(7894), 1, + STATE(7883), 1, sym_comment, - STATE(8550), 1, + STATE(7894), 1, + aux_sym_command_list_repeat1, + STATE(8475), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [364061] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(7895), 1, - sym_comment, - ACTIONS(2998), 7, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [364083] = 5, + [363829] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12870), 1, + ACTIONS(12856), 1, aux_sym__immediate_decimal_token2, - STATE(7896), 1, + STATE(7884), 1, sym_comment, - ACTIONS(807), 3, + ACTIONS(815), 3, anon_sym_DASH, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 5, + ACTIONS(817), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [364105] = 6, + [363851] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(3167), 1, anon_sym_LF, - ACTIONS(12878), 1, + ACTIONS(12916), 1, aux_sym__immediate_decimal_token2, - ACTIONS(12982), 1, + ACTIONS(12948), 1, anon_sym_DOT2, - STATE(7897), 1, + STATE(7885), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(3165), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [364129] = 6, + [363875] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - ACTIONS(8762), 1, + ACTIONS(12826), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12951), 1, anon_sym_DOT2, - STATE(7898), 1, + STATE(7886), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(2998), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [364153] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12984), 1, - sym_cmd_identifier, - ACTIONS(12987), 1, - anon_sym_RBRACK, - ACTIONS(12989), 1, - anon_sym_DQUOTE, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, - STATE(8550), 1, - sym__command_name, - ACTIONS(12992), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(7899), 2, - sym_comment, - aux_sym_command_list_repeat1, - [364183] = 4, + [363899] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7900), 1, + ACTIONS(8665), 1, + anon_sym_DOT2, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(7887), 1, sym_comment, - ACTIONS(807), 4, + ACTIONS(877), 3, sym_cmd_identifier, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 5, + ACTIONS(879), 4, anon_sym_DASH_DASH, - anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [364203] = 9, + [363923] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, + ACTIONS(12864), 1, + aux_sym__immediate_decimal_token2, STATE(7888), 1, - sym_val_string, - STATE(7901), 1, - sym_comment, - STATE(9688), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [364232] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3937), 1, - anon_sym_LF, - ACTIONS(12995), 1, - anon_sym_DOT2, - STATE(7902), 1, - sym_comment, - ACTIONS(3935), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [364253] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7903), 1, sym_comment, ACTIONS(807), 3, anon_sym_DASH, @@ -546635,446 +546413,621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [364272] = 6, + [363945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - ACTIONS(9220), 1, - anon_sym_DOT2, - STATE(7904), 1, + ACTIONS(12954), 1, + aux_sym__immediate_decimal_token2, + STATE(7889), 1, sym_comment, - ACTIONS(861), 2, + ACTIONS(855), 3, anon_sym_DASH, sym_filesize_unit, - ACTIONS(863), 4, + aux_sym_unquoted_token6, + ACTIONS(857), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT2, sym_duration_unit, - [364295] = 4, + [363967] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - STATE(7905), 1, - sym_comment, - ACTIONS(1007), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(3041), 1, anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + ACTIONS(12956), 1, + anon_sym_RBRACK, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(7890), 1, + sym_comment, + STATE(7892), 1, + aux_sym_command_list_repeat1, + STATE(8475), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [364314] = 9, + [363999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3106), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(12997), 1, - sym_identifier, - STATE(7906), 1, + ACTIONS(12958), 1, + anon_sym_DOT2, + ACTIONS(12961), 1, + aux_sym__immediate_decimal_token2, + STATE(7891), 1, sym_comment, - STATE(7987), 1, - aux_sym_overlay_use_repeat1, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(9856), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [364343] = 9, + ACTIONS(846), 3, + anon_sym_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_duration_unit, + [364023] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(12109), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(7146), 1, + ACTIONS(12963), 1, + anon_sym_RBRACK, + STATE(7148), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(7907), 1, + STATE(7892), 1, sym_comment, - STATE(10924), 1, + STATE(7894), 1, + aux_sym_command_list_repeat1, + STATE(8475), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [364372] = 9, + [364055] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(11387), 1, - anon_sym_DQUOTE, - ACTIONS(12999), 1, - sym_cmd_identifier, - STATE(1151), 1, - sym__command_name, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(7908), 1, + ACTIONS(12856), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(12965), 1, + anon_sym_DOT2, + STATE(7893), 1, sym_comment, - ACTIONS(11389), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [364401] = 9, + ACTIONS(815), 3, + anon_sym_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_duration_unit, + [364079] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(12109), 1, + ACTIONS(12968), 1, sym_cmd_identifier, - STATE(7146), 1, + ACTIONS(12971), 1, + anon_sym_RBRACK, + ACTIONS(12973), 1, + anon_sym_DQUOTE, + STATE(7148), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(7909), 1, - sym_comment, - STATE(10924), 1, + STATE(8475), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(12976), 2, sym__str_single_quotes, sym__str_back_ticks, - [364430] = 10, - ACTIONS(3), 1, + STATE(7894), 2, + sym_comment, + aux_sym_command_list_repeat1, + [364109] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(12228), 1, - sym_identifier, - STATE(2426), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(7910), 1, + ACTIONS(12979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12981), 1, + aux_sym__immediate_decimal_token2, + STATE(7895), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9782), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [364461] = 6, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [364133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, - anon_sym_DOT2, - STATE(7911), 1, + ACTIONS(12985), 1, + anon_sym_COMMA, + ACTIONS(12987), 1, + anon_sym_DASH, + STATE(7896), 1, sym_comment, - STATE(8045), 1, - sym_path, - STATE(8597), 1, - sym_cell_path, - ACTIONS(1035), 5, - sym_cmd_identifier, + ACTIONS(12983), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [364484] = 5, + [364155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13003), 1, - anon_sym_DOT2, - STATE(8579), 1, - sym_path, - STATE(7912), 2, + ACTIONS(12991), 1, + anon_sym_COMMA, + ACTIONS(12993), 1, + anon_sym_DASH, + STATE(7897), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 5, - sym_cmd_identifier, + ACTIONS(12989), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [364505] = 6, + [364177] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13006), 1, - anon_sym_DOT2, - ACTIONS(13010), 1, + ACTIONS(12995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(12997), 1, aux_sym__immediate_decimal_token2, - STATE(7913), 1, + STATE(7898), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(2959), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3489), 4, + anon_sym_DOT2, + ACTIONS(2957), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [364528] = 5, + [364201] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(13012), 1, - anon_sym_DOT2, - STATE(7914), 1, + STATE(7899), 1, sym_comment, - ACTIONS(3909), 6, + ACTIONS(877), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + [364221] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1179), 1, + anon_sym_LF, + STATE(7900), 1, + sym_comment, + ACTIONS(1177), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [364549] = 10, + sym_filesize_unit, + sym_duration_unit, + [364241] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8793), 1, + aux_sym_unquoted_token6, + STATE(7901), 1, + sym_comment, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + [364263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(12228), 1, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12999), 1, + anon_sym_COMMA, + STATE(7902), 1, + sym_comment, + ACTIONS(12983), 7, sym_identifier, - STATE(2375), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(7915), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [364285] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(7903), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9808), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [364580] = 9, + ACTIONS(817), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364305] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13014), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(1992), 1, + STATE(1967), 1, sym_block, - STATE(7916), 1, + STATE(7904), 1, sym_comment, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(10285), 1, + STATE(10268), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [364609] = 9, + [364334] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(1991), 1, + STATE(2265), 1, sym_block, - STATE(7917), 1, + STATE(7905), 1, sym_comment, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(10280), 1, + STATE(10265), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [364638] = 9, + [364363] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3040), 1, - anon_sym_DQUOTE, - ACTIONS(13016), 1, - sym_identifier, - ACTIONS(13018), 1, - anon_sym_GT, - STATE(7131), 1, - sym__str_double_quotes, - STATE(7918), 1, + ACTIONS(13005), 1, + anon_sym_DOT2, + STATE(7906), 1, sym_comment, - STATE(7945), 1, - aux_sym_collection_type_repeat1, - STATE(8139), 1, - sym_val_string, - ACTIONS(3042), 2, + STATE(7984), 1, + aux_sym_cell_path_repeat1, + STATE(8341), 1, + sym_path, + ACTIONS(905), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [364667] = 6, + [364386] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12974), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13020), 1, + ACTIONS(3931), 1, + anon_sym_LF, + ACTIONS(9220), 1, anon_sym_DOT2, - STATE(7919), 1, + STATE(7907), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 4, + ACTIONS(3929), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [364690] = 10, + anon_sym_RBRACE, + [364407] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(5966), 1, + ACTIONS(6032), 1, anon_sym_COLON, - ACTIONS(12228), 1, - sym_identifier, - STATE(2402), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(7920), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9818), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [364721] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_block, - STATE(7921), 1, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + ACTIONS(13007), 1, + sym_cmd_identifier, + STATE(1736), 1, + sym__command_name, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(7908), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10279), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [364750] = 7, + ACTIONS(11389), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [364436] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(13022), 1, - anon_sym_DOT2, - STATE(4189), 1, - sym_path, - STATE(7922), 1, + ACTIONS(2251), 1, + aux_sym_unquoted_token6, + STATE(7909), 1, sym_comment, - STATE(8058), 1, - aux_sym_cell_path_repeat1, - ACTIONS(903), 4, + ACTIONS(877), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [364775] = 9, + sym_filesize_unit, + sym_duration_unit, + [364457] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3262), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13024), 1, - anon_sym_LBRACE, - STATE(2176), 1, - sym_val_record, - STATE(7923), 1, + ACTIONS(13009), 1, + sym_identifier, + STATE(7910), 1, sym_comment, - STATE(8037), 1, + STATE(8050), 1, + aux_sym_overlay_use_repeat1, + STATE(9540), 1, sym_long_flag_equals_value, - STATE(10228), 1, + STATE(10034), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [364804] = 6, + [364486] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_LF, - ACTIONS(13026), 1, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, + ACTIONS(9027), 1, anon_sym_DOT2, - STATE(4189), 1, - sym_path, - STATE(7924), 2, + STATE(7911), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 4, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [364827] = 9, + sym_filesize_unit, + sym_duration_unit, + [364509] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(7912), 1, + sym_comment, + STATE(11475), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [364538] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13013), 1, + anon_sym_DASH_DASH, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8698), 1, + sym_long_flag, + STATE(7913), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(13011), 4, + sym_cmd_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [364561] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3040), 1, + ACTIONS(3286), 1, anon_sym_DQUOTE, ACTIONS(13016), 1, sym_identifier, - ACTIONS(13029), 1, + ACTIONS(13018), 1, anon_sym_GT, - STATE(7131), 1, + STATE(7123), 1, sym__str_double_quotes, - STATE(7925), 1, + STATE(7914), 1, sym_comment, - STATE(7926), 1, + STATE(7916), 1, aux_sym_collection_type_repeat1, - STATE(8139), 1, + STATE(8109), 1, sym_val_string, - ACTIONS(3042), 2, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [364856] = 8, + [364590] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13020), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13022), 1, + aux_sym__immediate_decimal_token2, + STATE(7915), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364613] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13031), 1, + ACTIONS(3286), 1, + anon_sym_DQUOTE, + ACTIONS(13016), 1, sym_identifier, - ACTIONS(13034), 1, + ACTIONS(13024), 1, anon_sym_GT, - ACTIONS(13036), 1, - anon_sym_DQUOTE, - STATE(7131), 1, + STATE(7123), 1, sym__str_double_quotes, - STATE(8139), 1, + STATE(7916), 1, + sym_comment, + STATE(7991), 1, + aux_sym_collection_type_repeat1, + STATE(8109), 1, sym_val_string, - ACTIONS(13039), 2, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(7926), 2, + [364642] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3905), 1, + anon_sym_LF, + ACTIONS(13026), 1, + anon_sym_DOT2, + STATE(7917), 1, sym_comment, - aux_sym_collection_type_repeat1, - [364883] = 4, + ACTIONS(3903), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [364663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13044), 1, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(7918), 1, + sym_comment, + ACTIONS(877), 3, + sym_cmd_identifier, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [364684] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12902), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13028), 1, + anon_sym_DOT2, + STATE(7919), 1, + sym_comment, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + sym_duration_unit, + [364707] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13033), 1, + aux_sym__immediate_decimal_token2, + STATE(7920), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364730] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(7921), 1, + sym_comment, + ACTIONS(817), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(815), 5, + anon_sym_SEMI, + anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364749] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13035), 1, + aux_sym__immediate_decimal_token2, + STATE(7922), 1, + sym_comment, + ACTIONS(855), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [364770] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12756), 1, anon_sym_DASH, - STATE(7927), 1, + STATE(7923), 1, sym_comment, - ACTIONS(13042), 7, + ACTIONS(12752), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -547082,339 +547035,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [364902] = 6, + [364789] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7618), 1, + ACTIONS(13037), 1, + anon_sym_DOT2, + ACTIONS(13040), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13046), 1, - aux_sym__immediate_decimal_token1, - STATE(7928), 1, + STATE(7924), 1, sym_comment, - ACTIONS(2988), 2, + ACTIONS(3167), 2, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 4, + ACTIONS(3165), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [364925] = 8, + anon_sym_DASH_DASH, + anon_sym_DASH, + [364812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3722), 1, - anon_sym_DQUOTE, - ACTIONS(12350), 1, - anon_sym_LPAREN, - ACTIONS(13048), 1, - sym_cmd_identifier, - STATE(4365), 1, - sym__str_double_quotes, - STATE(7929), 1, + ACTIONS(3929), 1, + anon_sym_DASH, + STATE(7925), 1, sym_comment, - ACTIONS(3724), 2, + ACTIONS(3931), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(1109), 2, - sym_expr_parenthesized, - sym_val_string, - [364952] = 9, + [364831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3040), 1, - anon_sym_DQUOTE, - ACTIONS(13016), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_GT, - STATE(7131), 1, - sym__str_double_quotes, - STATE(7930), 1, + ACTIONS(4248), 1, + anon_sym_DASH, + STATE(7926), 1, sym_comment, - STATE(7988), 1, - aux_sym_collection_type_repeat1, - STATE(8139), 1, - sym_val_string, - ACTIONS(3042), 2, + ACTIONS(4250), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [364981] = 7, + [364850] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13044), 1, + aux_sym__immediate_decimal_token2, + STATE(7927), 1, + sym_comment, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [364873] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(919), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13046), 1, anon_sym_DOT2, - STATE(5103), 1, + STATE(5375), 1, sym_cell_path, - STATE(7931), 1, + STATE(7928), 1, sym_comment, - STATE(7979), 1, + STATE(8028), 1, sym_path, - ACTIONS(979), 4, + ACTIONS(917), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [365006] = 4, - ACTIONS(3), 1, + [364898] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12888), 1, - anon_sym_DASH, - STATE(7932), 1, + STATE(7929), 1, sym_comment, - ACTIONS(12884), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(809), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(807), 5, + anon_sym_SEMI, + anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364917] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(7930), 1, + sym_comment, + ACTIONS(857), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(855), 5, + anon_sym_SEMI, + anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364936] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13048), 1, + aux_sym__immediate_decimal_token1, + STATE(7931), 1, + sym_comment, + ACTIONS(2959), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2957), 4, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [365025] = 6, + anon_sym_RBRACE, + [364959] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(7932), 1, + sym_comment, + ACTIONS(896), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_PIPE, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [364978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - sym_cmd_identifier, - ACTIONS(13052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13054), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4255), 1, + anon_sym_DASH, STATE(7933), 1, sym_comment, - ACTIONS(2988), 5, + ACTIONS(4257), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [365048] = 6, + [364997] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9474), 1, - sym_filesize_unit, - ACTIONS(9476), 1, - sym_duration_unit, + ACTIONS(961), 1, + anon_sym_LF, + ACTIONS(13046), 1, + anon_sym_DOT2, + STATE(5450), 1, + sym_cell_path, STATE(7934), 1, sym_comment, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1102), 4, + STATE(8028), 1, + sym_path, + ACTIONS(959), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [365071] = 4, + anon_sym_RBRACE, + [365022] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13058), 1, + ACTIONS(4279), 1, anon_sym_DASH, STATE(7935), 1, sym_comment, - ACTIONS(13056), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(4281), 7, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [365090] = 5, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [365041] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(927), 1, anon_sym_LF, - ACTIONS(4025), 1, + ACTIONS(13046), 1, anon_sym_DOT2, + STATE(5462), 1, + sym_cell_path, STATE(7936), 1, sym_comment, - ACTIONS(2996), 6, + STATE(8028), 1, + sym_path, + ACTIONS(925), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [365111] = 4, - ACTIONS(3), 1, + [365066] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13062), 1, - anon_sym_DASH, + ACTIONS(9322), 1, + sym_filesize_unit, + ACTIONS(9324), 1, + sym_duration_unit, STATE(7937), 1, sym_comment, - ACTIONS(13060), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [365130] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13062), 1, anon_sym_DASH, + [365089] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13040), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13050), 1, + anon_sym_DOT2, STATE(7938), 1, sym_comment, - ACTIONS(13060), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [365149] = 9, - ACTIONS(3), 1, + anon_sym_DASH, + [365112] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13052), 1, + aux_sym__immediate_decimal_token1, STATE(7939), 1, sym_comment, - STATE(9688), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [365178] = 4, - ACTIONS(3), 1, + ACTIONS(3000), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [365135] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4362), 1, - anon_sym_DASH, + ACTIONS(12981), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13054), 1, + anon_sym_DOT2, STATE(7940), 1, sym_comment, - ACTIONS(4364), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365197] = 9, + anon_sym_DASH, + [365158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(11387), 1, - anon_sym_DQUOTE, - ACTIONS(12999), 1, - sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1885), 1, - sym__command_name, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + ACTIONS(9429), 1, + anon_sym_DOT2, STATE(7941), 1, sym_comment, - ACTIONS(11389), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [365226] = 6, + ACTIONS(877), 2, + anon_sym_DASH, + sym_filesize_unit, + ACTIONS(879), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_duration_unit, + [365181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13064), 1, + ACTIONS(13057), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13066), 1, + ACTIONS(13059), 1, aux_sym__immediate_decimal_token2, STATE(7942), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 4, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT2, - ACTIONS(815), 4, - sym_identifier, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [365249] = 4, + [365204] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4358), 1, + ACTIONS(3711), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2308), 1, + sym_block, STATE(7943), 1, sym_comment, - ACTIONS(4360), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10278), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [365233] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13003), 1, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365268] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13068), 1, - aux_sym__immediate_decimal_token1, + STATE(2266), 1, + sym_block, STATE(7944), 1, sym_comment, - ACTIONS(2998), 2, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [365291] = 9, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10266), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [365262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3040), 1, - anon_sym_DQUOTE, - ACTIONS(13016), 1, - sym_identifier, - ACTIONS(13070), 1, - anon_sym_GT, - STATE(7131), 1, - sym__str_double_quotes, - STATE(7926), 1, - aux_sym_collection_type_repeat1, + ACTIONS(12734), 1, + anon_sym_DASH, STATE(7945), 1, sym_comment, - STATE(8139), 1, - sym_val_string, - ACTIONS(3042), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [365320] = 6, + ACTIONS(12730), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [365281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13072), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13074), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(13063), 1, + anon_sym_DASH, STATE(7946), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(13061), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [365300] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(949), 1, + sym_cmd_identifier, + ACTIONS(9133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13065), 1, anon_sym_DOT2, - ACTIONS(807), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [365343] = 4, + ACTIONS(13067), 1, + aux_sym_unquoted_token2, + STATE(7947), 1, + sym_comment, + ACTIONS(951), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [365325] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + ACTIONS(13007), 1, + sym_cmd_identifier, + STATE(1180), 1, + sym__command_name, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(7948), 1, + sym_comment, + ACTIONS(11389), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [365354] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, + ACTIONS(4490), 1, anon_sym_DASH, - STATE(7947), 1, + STATE(7949), 1, sym_comment, - ACTIONS(4342), 7, + ACTIONS(4492), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -547422,14 +547470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [365362] = 4, + [365373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, + ACTIONS(4303), 1, anon_sym_DASH, - STATE(7948), 1, + STATE(7950), 1, sym_comment, - ACTIONS(4334), 7, + ACTIONS(4305), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -547437,945 +547485,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [365381] = 5, + [365392] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3917), 1, + STATE(7951), 1, + sym_comment, + ACTIONS(3806), 2, anon_sym_LF, - ACTIONS(13076), 1, anon_sym_DOT2, - STATE(7949), 1, - sym_comment, - ACTIONS(3915), 6, + ACTIONS(3804), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [365402] = 4, + [365411] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DASH, - STATE(7950), 1, + ACTIONS(13069), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13071), 1, + aux_sym__immediate_decimal_token2, + STATE(7952), 1, sym_comment, - ACTIONS(4330), 7, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [365434] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13005), 1, + anon_sym_DOT2, + STATE(7953), 1, + sym_comment, + STATE(8004), 1, + aux_sym_cell_path_repeat1, + STATE(8341), 1, + sym_path, + ACTIONS(905), 5, sym_cmd_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [365421] = 6, + [365457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13078), 1, + ACTIONS(13073), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13080), 1, + ACTIONS(13075), 1, aux_sym__immediate_decimal_token2, - STATE(7951), 1, + STATE(7954), 1, sym_comment, - ACTIONS(815), 2, + ACTIONS(807), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(817), 4, + ACTIONS(809), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [365444] = 6, + [365480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - sym_cmd_identifier, - ACTIONS(13082), 1, + ACTIONS(13077), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13084), 1, + ACTIONS(13079), 1, aux_sym__immediate_decimal_token2, - STATE(7952), 1, + STATE(7955), 1, sym_comment, - ACTIONS(2998), 5, - anon_sym_DASH_DASH, + ACTIONS(817), 2, + anon_sym_DOLLAR, anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365467] = 6, + ACTIONS(815), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [365503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13088), 1, - anon_sym_DASH_DASH, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8937), 1, - sym_long_flag, - STATE(7953), 2, + ACTIONS(13081), 1, + anon_sym_DOT2, + STATE(8341), 1, + sym_path, + STATE(7956), 2, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(13086), 4, + aux_sym_cell_path_repeat1, + ACTIONS(944), 5, sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [365490] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1960), 1, - sym_block, - STATE(7954), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10278), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [365519] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1961), 1, - sym_block, - STATE(7955), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10277), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [365548] = 9, + [365524] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1962), 1, - sym_block, - STATE(7956), 1, + ACTIONS(13084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13086), 1, + aux_sym__immediate_decimal_token2, + STATE(7957), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10276), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [365577] = 4, + ACTIONS(809), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(807), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [365547] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DASH, - STATE(7957), 1, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(4890), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, + STATE(7958), 1, sym_comment, - ACTIONS(4015), 7, - sym_cmd_identifier, + ACTIONS(911), 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365596] = 7, + [365570] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(935), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13088), 1, anon_sym_DOT2, - STATE(4166), 1, + STATE(5098), 1, sym_cell_path, - STATE(7958), 1, + STATE(7959), 1, sym_comment, - STATE(7979), 1, + STATE(7987), 1, sym_path, - ACTIONS(997), 4, + ACTIONS(933), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [365621] = 9, + [365595] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3040), 1, + ACTIONS(12938), 1, + aux_sym__immediate_decimal_token2, + STATE(7960), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DASH_DASH, + anon_sym_DOT2, + ACTIONS(815), 5, + sym_identifier, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [365616] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3286), 1, anon_sym_DQUOTE, ACTIONS(13016), 1, sym_identifier, ACTIONS(13091), 1, anon_sym_GT, - STATE(7131), 1, + STATE(7123), 1, sym__str_double_quotes, - STATE(7925), 1, - aux_sym_collection_type_repeat1, - STATE(7959), 1, + STATE(7961), 1, sym_comment, - STATE(8139), 1, + STATE(7991), 1, + aux_sym_collection_type_repeat1, + STATE(8109), 1, sym_val_string, - ACTIONS(3042), 2, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [365650] = 6, + [365645] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, - anon_sym_DOT2, - STATE(7960), 1, - sym_comment, - STATE(8013), 1, - aux_sym_cell_path_repeat1, - STATE(8579), 1, - sym_path, - ACTIONS(905), 5, + ACTIONS(2998), 1, sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365673] = 6, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(13093), 1, aux_sym__immediate_decimal_token1, ACTIONS(13095), 1, aux_sym__immediate_decimal_token2, - STATE(7961), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [365696] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12974), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13097), 1, - anon_sym_DOT2, STATE(7962), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3000), 5, anon_sym_DASH_DASH, - anon_sym_DASH, - [365719] = 6, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [365668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13100), 1, - anon_sym_DOT2, - STATE(7960), 1, - sym_path, + ACTIONS(12942), 1, + aux_sym__immediate_decimal_token2, STATE(7963), 1, sym_comment, - STATE(8471), 1, - sym_cell_path, - ACTIONS(999), 5, - sym_cmd_identifier, + ACTIONS(809), 2, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365742] = 7, + anon_sym_DOT2, + ACTIONS(807), 5, + sym_identifier, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [365689] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1035), 1, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13046), 1, anon_sym_DOT2, - STATE(5731), 1, + STATE(5784), 1, sym_cell_path, STATE(7964), 1, sym_comment, - STATE(7979), 1, + STATE(8028), 1, sym_path, - ACTIONS(1033), 4, + ACTIONS(909), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [365767] = 6, + [365714] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13103), 1, + ACTIONS(3911), 1, + anon_sym_LF, + ACTIONS(13097), 1, anon_sym_DOT2, - ACTIONS(13106), 1, - aux_sym__immediate_decimal_token2, STATE(7965), 1, sym_comment, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3489), 4, + ACTIONS(3909), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [365790] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + [365735] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13099), 1, + aux_sym__immediate_decimal_token2, STATE(7966), 1, sym_comment, - ACTIONS(809), 3, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(857), 2, + anon_sym_DASH_DASH, anon_sym_DOT2, - ACTIONS(807), 5, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(855), 5, + sym_identifier, + anon_sym_DASH, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [365809] = 5, + [365756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12970), 1, + ACTIONS(848), 1, + anon_sym_DASH_DASH, + ACTIONS(13101), 1, + anon_sym_DOT2, + ACTIONS(13104), 1, aux_sym__immediate_decimal_token2, STATE(7967), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DASH_DASH, - anon_sym_DOT2, - ACTIONS(807), 5, + ACTIONS(846), 5, sym_identifier, anon_sym_DASH, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [365830] = 5, - ACTIONS(105), 1, + [365779] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3923), 1, - anon_sym_LF, - ACTIONS(13108), 1, - anon_sym_DOT2, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, STATE(7968), 1, sym_comment, - ACTIONS(3921), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [365851] = 5, + STATE(11475), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [365808] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + sym_identifier, + STATE(2381), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(7969), 1, sym_comment, - ACTIONS(861), 3, - sym_cmd_identifier, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [365872] = 4, + STATE(8947), 1, + sym_val_variable, + STATE(9366), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [365839] = 10, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + sym_identifier, + STATE(2394), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(7970), 1, sym_comment, - ACTIONS(815), 3, - anon_sym_DASH, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [365891] = 6, - ACTIONS(105), 1, + STATE(8947), 1, + sym_val_variable, + STATE(9375), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [365870] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, - aux_sym_unquoted_token6, - ACTIONS(8844), 1, - anon_sym_DOT2, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + sym_identifier, + STATE(2415), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(7971), 1, sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 4, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - [365914] = 4, - ACTIONS(105), 1, + STATE(8947), 1, + sym_val_variable, + STATE(9378), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [365901] = 10, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + sym_identifier, + STATE(2381), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(7972), 1, sym_comment, - ACTIONS(817), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(815), 5, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [365933] = 5, + STATE(8947), 1, + sym_val_variable, + STATE(9366), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [365932] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13110), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, STATE(7973), 1, sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [365954] = 9, + STATE(9203), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [365961] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2352), 1, - sym_block, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + ACTIONS(13007), 1, + sym_cmd_identifier, + STATE(1736), 1, + sym__command_name, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, STATE(7974), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10284), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [365983] = 5, + ACTIONS(11389), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [365990] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_LF, - ACTIONS(13114), 1, + ACTIONS(12981), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13106), 1, anon_sym_DOT2, STATE(7975), 1, sym_comment, - ACTIONS(3927), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [366004] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(7976), 1, - sym_comment, - ACTIONS(846), 3, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - ACTIONS(844), 5, + ACTIONS(2998), 4, anon_sym_SEMI, anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [366023] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH, + [366013] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12964), 1, - aux_sym__immediate_decimal_token2, - STATE(7977), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(817), 1, anon_sym_DASH_DASH, + ACTIONS(12938), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13108), 1, anon_sym_DOT2, + STATE(7976), 1, + sym_comment, ACTIONS(815), 5, sym_identifier, anon_sym_DASH, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [366044] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(7978), 1, - sym_comment, - ACTIONS(891), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(889), 5, - anon_sym_SEMI, - anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [366063] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_LF, - ACTIONS(13022), 1, - anon_sym_DOT2, - STATE(4189), 1, - sym_path, - STATE(7979), 1, - sym_comment, - STATE(8001), 1, - aux_sym_cell_path_repeat1, - ACTIONS(903), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [366088] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2354), 1, - sym_block, - STATE(7980), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10283), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366117] = 9, + [366036] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(5961), 1, anon_sym_COLON, ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1885), 1, + STATE(1180), 1, sym__command_name, - STATE(7981), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(7977), 1, sym_comment, ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [366146] = 5, - ACTIONS(105), 1, + [366065] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_LF, - ACTIONS(13116), 1, - sym_long_flag_identifier, - STATE(7982), 1, + ACTIONS(12902), 1, + aux_sym__immediate_decimal_token2, + STATE(7978), 1, sym_comment, - ACTIONS(3947), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 5, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [366167] = 9, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [366086] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2028), 1, - sym_block, - STATE(7983), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + sym_identifier, + STATE(2394), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, + STATE(7979), 1, sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10266), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366196] = 6, + STATE(8947), 1, + sym_val_variable, + STATE(9375), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [366117] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10134), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - STATE(4660), 1, - sym_cell_path, - STATE(7150), 1, + STATE(7906), 1, sym_path, - STATE(7984), 1, + STATE(7980), 1, sym_comment, - ACTIONS(981), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - [366219] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(13118), 1, - anon_sym_DOT2, - STATE(5103), 1, + STATE(8899), 1, sym_cell_path, - STATE(7922), 1, - sym_path, - STATE(7985), 1, - sym_comment, - ACTIONS(979), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [366244] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2034), 1, - sym_block, - STATE(7986), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10288), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366273] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(13121), 1, + ACTIONS(927), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - ACTIONS(13124), 1, - anon_sym_DASH, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(9856), 1, - sym__flag, - STATE(7987), 2, - sym_comment, - aux_sym_overlay_use_repeat1, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366300] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3040), 1, anon_sym_DQUOTE, - ACTIONS(13016), 1, - sym_identifier, - ACTIONS(13127), 1, - anon_sym_GT, - STATE(7131), 1, - sym__str_double_quotes, - STATE(7926), 1, - aux_sym_collection_type_repeat1, - STATE(7988), 1, - sym_comment, - STATE(8139), 1, - sym_val_string, - ACTIONS(3042), 2, sym__str_single_quotes, sym__str_back_ticks, - [366329] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2371), 1, - sym_block, - STATE(7989), 1, - sym_comment, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(10282), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366358] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13129), 1, - aux_sym__immediate_decimal_token2, - STATE(7990), 1, - sym_comment, - ACTIONS(846), 2, - anon_sym_DASH_DASH, - anon_sym_DOT2, - ACTIONS(844), 5, - sym_identifier, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [366379] = 10, + [366140] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(6098), 1, + ACTIONS(6032), 1, anon_sym_COLON, - ACTIONS(12228), 1, + ACTIONS(12388), 1, sym_identifier, - STATE(2375), 1, + STATE(2415), 1, sym__assignment_pattern, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(7991), 1, + STATE(7981), 1, sym_comment, - STATE(8977), 1, + STATE(8947), 1, sym_val_variable, - STATE(9808), 1, + STATE(9378), 1, sym__assignment_pattern_last, - STATE(9953), 1, + STATE(10164), 1, sym__variable_name, - [366410] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(11387), 1, - anon_sym_DQUOTE, - ACTIONS(12999), 1, - sym_cmd_identifier, - STATE(1151), 1, - sym__command_name, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(7992), 1, - sym_comment, - ACTIONS(11389), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [366439] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(4804), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(7993), 1, - sym_comment, - ACTIONS(992), 5, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [366462] = 5, + [366171] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, + ACTIONS(968), 1, anon_sym_LF, - ACTIONS(13131), 1, + ACTIONS(13111), 1, anon_sym_DOT2, - STATE(7994), 1, + STATE(4220), 1, + sym_cell_path, + STATE(7982), 1, sym_comment, - ACTIONS(3941), 6, + STATE(7987), 1, + sym_path, + ACTIONS(966), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [366483] = 10, + [366196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(12228), 1, - sym_identifier, - STATE(2426), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(7995), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9782), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [366514] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13133), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13135), 1, - aux_sym__immediate_decimal_token2, - STATE(7996), 1, - sym_comment, - ACTIONS(817), 2, + ACTIONS(13005), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [366537] = 6, + STATE(7906), 1, + sym_path, + STATE(7983), 1, + sym_comment, + STATE(8379), 1, + sym_cell_path, + ACTIONS(968), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [366219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - STATE(7997), 1, + STATE(7956), 1, + aux_sym_cell_path_repeat1, + STATE(7984), 1, sym_comment, - STATE(8045), 1, + STATE(8341), 1, sym_path, - STATE(8430), 1, - sym_cell_path, - ACTIONS(981), 5, + ACTIONS(975), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [366560] = 9, - ACTIONS(3), 1, + [366242] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3106), 1, + ACTIONS(13114), 1, + anon_sym_DOT2, + ACTIONS(13118), 1, + aux_sym__immediate_decimal_token2, + STATE(7985), 1, + sym_comment, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3165), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(11933), 1, anon_sym_DASH, - ACTIONS(13137), 1, - sym_identifier, - STATE(7987), 1, - aux_sym_overlay_use_repeat1, - STATE(7998), 1, - sym_comment, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(9856), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [366589] = 6, + [366265] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13139), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13141), 1, - aux_sym__immediate_decimal_token2, - STATE(7999), 1, + STATE(7986), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 4, - anon_sym_RBRACK, + ACTIONS(1179), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1177), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [366612] = 6, - ACTIONS(3), 1, + [366284] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(13046), 1, anon_sym_DOT2, - STATE(8000), 1, - sym_comment, - STATE(8045), 1, + STATE(4156), 1, sym_path, - STATE(8818), 1, - sym_cell_path, - ACTIONS(992), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [366635] = 7, + STATE(7987), 1, + sym_comment, + STATE(8067), 1, + aux_sym_cell_path_repeat1, + ACTIONS(903), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [366309] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13120), 1, anon_sym_DOT2, - STATE(4189), 1, + STATE(4156), 1, sym_path, - STATE(7924), 1, - aux_sym_cell_path_repeat1, - STATE(8001), 1, + STATE(7988), 2, sym_comment, - ACTIONS(975), 4, + aux_sym_cell_path_repeat1, + ACTIONS(942), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [366660] = 4, + [366332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1193), 1, + ACTIONS(949), 1, anon_sym_DASH, - STATE(8002), 1, + STATE(7989), 1, sym_comment, - ACTIONS(1195), 7, + ACTIONS(951), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -548383,226 +548179,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [366679] = 7, + [366351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1005), 1, - sym_cmd_identifier, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13143), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - ACTIONS(13145), 1, - aux_sym_unquoted_token2, - STATE(8003), 1, + STATE(7906), 1, + sym_path, + STATE(7990), 1, sym_comment, - ACTIONS(1007), 4, + STATE(8999), 1, + sym_cell_path, + ACTIONS(931), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [366704] = 4, + [366374] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(8004), 1, + ACTIONS(13123), 1, + sym_identifier, + ACTIONS(13126), 1, + anon_sym_GT, + ACTIONS(13128), 1, + anon_sym_DQUOTE, + STATE(7123), 1, + sym__str_double_quotes, + STATE(8109), 1, + sym_val_string, + ACTIONS(13131), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(7991), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [366401] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7992), 1, sym_comment, - ACTIONS(844), 3, + ACTIONS(815), 3, anon_sym_DASH, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(846), 5, + ACTIONS(817), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [366723] = 7, + [366420] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(931), 1, anon_sym_LF, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13147), 1, + ACTIONS(13046), 1, anon_sym_DOT2, - ACTIONS(13149), 1, - aux_sym_unquoted_token2, - STATE(8005), 1, + STATE(5797), 1, + sym_cell_path, + STATE(7993), 1, sym_comment, - ACTIONS(1005), 4, + STATE(8028), 1, + sym_path, + ACTIONS(929), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [366748] = 4, + [366445] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_DASH, - STATE(8006), 1, - sym_comment, - ACTIONS(1399), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13003), 1, anon_sym_LBRACE, + STATE(2267), 1, + sym_block, + STATE(7994), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10276), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366474] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3286), 1, anon_sym_DQUOTE, + ACTIONS(13016), 1, + sym_identifier, + ACTIONS(13134), 1, + anon_sym_GT, + STATE(7123), 1, + sym__str_double_quotes, + STATE(7961), 1, + aux_sym_collection_type_repeat1, + STATE(7995), 1, + sym_comment, + STATE(8109), 1, + sym_val_string, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [366767] = 7, + [366503] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, + ACTIONS(3000), 1, anon_sym_LF, - ACTIONS(13151), 1, + ACTIONS(3952), 1, anon_sym_DOT2, - STATE(4166), 1, - sym_cell_path, - STATE(7922), 1, - sym_path, - STATE(8007), 1, + STATE(7996), 1, sym_comment, - ACTIONS(997), 4, + ACTIONS(2998), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [366792] = 4, + [366524] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8008), 1, + ACTIONS(2957), 1, + sym_cmd_identifier, + ACTIONS(13136), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13138), 1, + aux_sym__immediate_decimal_token2, + STATE(7997), 1, + sym_comment, + ACTIONS(2959), 5, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [366547] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7998), 1, sym_comment, - ACTIONS(889), 3, + ACTIONS(807), 3, anon_sym_DASH, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(891), 5, + ACTIONS(809), 5, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [366811] = 4, - ACTIONS(105), 1, + [366566] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8009), 1, + ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13140), 1, + sym_identifier, + STATE(7910), 1, + aux_sym_overlay_use_repeat1, + STATE(7999), 1, sym_comment, - ACTIONS(1067), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1065), 6, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(10034), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366595] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - [366830] = 5, - ACTIONS(105), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2285), 1, + sym_block, + STATE(8000), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10184), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(8144), 1, - aux_sym_unquoted_token3, - STATE(8010), 1, + ACTIONS(1191), 1, + anon_sym_DASH, + STATE(8001), 1, sym_comment, - ACTIONS(823), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1193), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [366851] = 6, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [366643] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12939), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13154), 1, - anon_sym_DOT2, - STATE(8011), 1, + ACTIONS(3711), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13142), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym_val_record, + STATE(8002), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - sym_duration_unit, - [366874] = 6, - ACTIONS(105), 1, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10178), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366672] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13157), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13159), 1, - aux_sym__immediate_decimal_token2, - STATE(8012), 1, + ACTIONS(3711), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13144), 1, + anon_sym_LBRACE, + STATE(2367), 1, + sym_val_record, + STATE(8003), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [366897] = 5, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10191), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366701] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7912), 1, + STATE(7956), 1, aux_sym_cell_path_repeat1, - STATE(8013), 1, + STATE(8004), 1, sym_comment, - STATE(8579), 1, + STATE(8341), 1, sym_path, - ACTIONS(977), 6, + ACTIONS(975), 6, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [366918] = 4, + [366722] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12694), 1, + ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, - STATE(8014), 1, - sym_comment, - ACTIONS(12690), 7, + ACTIONS(13146), 1, sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [366937] = 6, - ACTIONS(105), 1, + STATE(8005), 1, + sym_comment, + STATE(8024), 1, + aux_sym_overlay_use_repeat1, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(10034), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366751] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13161), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13163), 1, - aux_sym__immediate_decimal_token2, - STATE(8015), 1, + STATE(8006), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 4, - anon_sym_RBRACK, + ACTIONS(855), 3, + anon_sym_DASH, sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT2, sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [366960] = 4, + [366770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12700), 1, + ACTIONS(12894), 1, anon_sym_DASH, - STATE(8016), 1, + STATE(8007), 1, sym_comment, - ACTIONS(12696), 7, + ACTIONS(12890), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -548610,138 +548497,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [366979] = 5, - ACTIONS(105), 1, + [366789] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12978), 1, - aux_sym__immediate_decimal_token2, - STATE(8017), 1, - sym_comment, - ACTIONS(2988), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, - [367000] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13165), 1, - aux_sym__immediate_decimal_token2, - STATE(8018), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2288), 1, + sym_block, + STATE(8008), 1, sym_comment, - ACTIONS(3836), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [367021] = 4, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10210), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366818] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1389), 1, - anon_sym_DASH, - STATE(8019), 1, - sym_comment, - ACTIONS(1391), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13003), 1, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [367040] = 4, + STATE(2289), 1, + sym_block, + STATE(8009), 1, + sym_comment, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(10223), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [366847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12935), 1, + ACTIONS(1425), 1, anon_sym_DASH, - STATE(8020), 1, + STATE(8010), 1, sym_comment, - ACTIONS(12931), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [367059] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1005), 1, + ACTIONS(1427), 7, sym_cmd_identifier, - ACTIONS(13143), 1, - anon_sym_DOT2, - ACTIONS(13145), 1, - aux_sym_unquoted_token2, - ACTIONS(13167), 1, - aux_sym__immediate_decimal_token1, - STATE(8021), 1, - sym_comment, - ACTIONS(1007), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367084] = 5, + [366866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, + STATE(8011), 1, + sym_comment, + ACTIONS(3000), 2, anon_sym_LF, - ACTIONS(9365), 1, anon_sym_DOT2, - STATE(8022), 1, - sym_comment, - ACTIONS(4013), 6, + ACTIONS(2998), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [367105] = 4, + [366885] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1385), 1, - anon_sym_DASH, - STATE(8023), 1, + ACTIONS(13005), 1, + anon_sym_DOT2, + STATE(7906), 1, + sym_path, + STATE(8012), 1, sym_comment, - ACTIONS(1387), 7, + STATE(8796), 1, + sym_cell_path, + ACTIONS(919), 5, sym_cmd_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367124] = 4, + [366908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12935), 1, - anon_sym_DASH, - STATE(8024), 1, + STATE(8013), 1, sym_comment, - ACTIONS(12931), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(894), 3, + anon_sym_DASH, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 5, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [367143] = 5, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [366927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12939), 1, + ACTIONS(12912), 1, aux_sym__immediate_decimal_token2, - STATE(8025), 1, + STATE(8014), 1, sym_comment, ACTIONS(807), 2, sym_filesize_unit, @@ -548752,199 +548615,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [367164] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8026), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(861), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - [367183] = 6, + [366948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13169), 1, - anon_sym_DOT2, - ACTIONS(13172), 1, - aux_sym__immediate_decimal_token2, - STATE(8027), 1, + ACTIONS(1429), 1, + anon_sym_DASH, + STATE(8015), 1, sym_comment, - ACTIONS(835), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - sym_duration_unit, - [367206] = 6, + ACTIONS(1431), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [366967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - STATE(8028), 1, - sym_comment, - STATE(8045), 1, + STATE(7906), 1, sym_path, - STATE(8807), 1, + STATE(8016), 1, + sym_comment, + STATE(9042), 1, sym_cell_path, - ACTIONS(973), 5, + ACTIONS(961), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367229] = 6, - ACTIONS(105), 1, + [366990] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13106), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13174), 1, - anon_sym_DOT2, - STATE(8029), 1, + ACTIONS(3887), 1, + anon_sym_DASH, + STATE(8017), 1, sym_comment, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3489), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3891), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [367252] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3689), 1, + anon_sym_LBRACE, anon_sym_DQUOTE, - ACTIONS(12458), 1, - anon_sym_LPAREN, - ACTIONS(13176), 1, - sym_cmd_identifier, - STATE(4118), 1, - sym__str_double_quotes, - STATE(8030), 1, - sym_comment, - ACTIONS(3691), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1105), 2, - sym_expr_parenthesized, - sym_val_string, - [367279] = 4, + [367009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12929), 1, - anon_sym_DASH, - STATE(8031), 1, + ACTIONS(13148), 1, + anon_sym_DOT2, + STATE(7953), 1, + sym_path, + STATE(8018), 1, sym_comment, - ACTIONS(12925), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(8379), 1, + sym_cell_path, + ACTIONS(968), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [367298] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [367032] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(951), 1, anon_sym_LF, - ACTIONS(13147), 1, + ACTIONS(9040), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13151), 1, anon_sym_DOT2, - ACTIONS(13149), 1, + ACTIONS(13153), 1, aux_sym_unquoted_token2, - ACTIONS(13178), 1, - aux_sym__immediate_decimal_token1, - STATE(8032), 1, + STATE(8019), 1, sym_comment, - ACTIONS(1005), 4, + ACTIONS(949), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [367323] = 4, - ACTIONS(3), 1, + [367057] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12688), 1, - anon_sym_DASH, - STATE(8033), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(8195), 1, + aux_sym_unquoted_token3, + STATE(8020), 1, sym_comment, - ACTIONS(12684), 7, - sym_identifier, - anon_sym_RBRACK, + ACTIONS(827), 6, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [367342] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(837), 1, anon_sym_DASH_DASH, - ACTIONS(13180), 1, - anon_sym_DOT2, - ACTIONS(13183), 1, - aux_sym__immediate_decimal_token2, - STATE(8034), 1, - sym_comment, - ACTIONS(835), 5, - sym_identifier, anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [367365] = 6, + anon_sym_RBRACE, + [367078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_DASH_DASH, - ACTIONS(12970), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13185), 1, + ACTIONS(13155), 1, anon_sym_DOT2, - STATE(8035), 1, + ACTIONS(13158), 1, + aux_sym__immediate_decimal_token2, + STATE(8021), 1, sym_comment, - ACTIONS(807), 5, - sym_identifier, - anon_sym_DASH, + ACTIONS(846), 2, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - [367388] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_LF, - ACTIONS(13022), 1, - anon_sym_DOT2, - STATE(5739), 1, - sym_cell_path, - STATE(7979), 1, - sym_path, - STATE(8036), 1, - sym_comment, - ACTIONS(971), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(848), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [367413] = 4, + anon_sym_if, + anon_sym_EQ_GT, + sym_duration_unit, + [367101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3947), 1, + ACTIONS(1433), 1, anon_sym_DASH, - STATE(8037), 1, + STATE(8022), 1, sym_comment, - ACTIONS(3951), 7, + ACTIONS(1435), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -548952,309 +548745,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367432] = 9, + [367120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(949), 1, + sym_cmd_identifier, + ACTIONS(13065), 1, + anon_sym_DOT2, + ACTIONS(13067), 1, + aux_sym_unquoted_token2, + ACTIONS(13160), 1, + aux_sym__immediate_decimal_token1, + STATE(8023), 1, + sym_comment, + ACTIONS(951), 4, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [367145] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3262), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2188), 1, - sym_block, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8038), 1, + ACTIONS(13162), 1, + sym_identifier, + STATE(8024), 1, sym_comment, - STATE(10167), 1, + STATE(8050), 1, + aux_sym_overlay_use_repeat1, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(10034), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [367461] = 6, + [367174] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - STATE(8039), 1, - sym_comment, - STATE(8045), 1, + STATE(7906), 1, sym_path, - STATE(8811), 1, + STATE(8025), 1, + sym_comment, + STATE(8452), 1, sym_cell_path, - ACTIONS(969), 5, + ACTIONS(935), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367484] = 7, + [367197] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, + ACTIONS(13164), 1, + aux_sym__immediate_decimal_token2, + STATE(8026), 1, + sym_comment, + ACTIONS(3806), 3, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(13022), 1, anon_sym_DOT2, - STATE(5699), 1, - sym_cell_path, - STATE(7979), 1, - sym_path, - STATE(8040), 1, + ACTIONS(3804), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [367218] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(951), 1, + anon_sym_LF, + ACTIONS(13151), 1, + anon_sym_DOT2, + ACTIONS(13153), 1, + aux_sym_unquoted_token2, + ACTIONS(13166), 1, + aux_sym__immediate_decimal_token1, + STATE(8027), 1, sym_comment, - ACTIONS(1001), 4, + ACTIONS(949), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [367509] = 5, + [367243] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4011), 1, + ACTIONS(905), 1, anon_sym_LF, - ACTIONS(13188), 1, - anon_sym_EQ, - STATE(8041), 1, + ACTIONS(13046), 1, + anon_sym_DOT2, + STATE(4156), 1, + sym_path, + STATE(8028), 1, sym_comment, - ACTIONS(4007), 6, + STATE(8064), 1, + aux_sym_cell_path_repeat1, + ACTIONS(903), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [367530] = 9, + [367268] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2205), 1, + STATE(1952), 1, sym_block, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8042), 1, + STATE(8029), 1, sym_comment, - STATE(10193), 1, + STATE(10260), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [367559] = 9, + [367297] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3106), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(12766), 1, anon_sym_DASH, - ACTIONS(13190), 1, - sym_identifier, - STATE(7906), 1, - aux_sym_overlay_use_repeat1, - STATE(8043), 1, + STATE(8030), 1, sym_comment, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(9856), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [367588] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3106), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, - anon_sym_DASH, - ACTIONS(13192), 1, + ACTIONS(12762), 7, sym_identifier, - STATE(7998), 1, - aux_sym_overlay_use_repeat1, - STATE(8044), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [367316] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13170), 1, + aux_sym__immediate_decimal_token2, + STATE(8031), 1, sym_comment, - STATE(9841), 1, - sym_long_flag_equals_value, - STATE(9856), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [367617] = 6, - ACTIONS(3), 1, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [367339] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(13046), 1, anon_sym_DOT2, - STATE(8045), 1, - sym_comment, - STATE(8048), 1, - aux_sym_cell_path_repeat1, - STATE(8579), 1, + STATE(5098), 1, + sym_cell_path, + STATE(8028), 1, sym_path, - ACTIONS(905), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [367640] = 6, + STATE(8032), 1, + sym_comment, + ACTIONS(933), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [367364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(13005), 1, anon_sym_DOT2, - STATE(8045), 1, + STATE(7906), 1, sym_path, - STATE(8046), 1, + STATE(8033), 1, sym_comment, - STATE(8471), 1, + STATE(8700), 1, sym_cell_path, - ACTIONS(999), 5, + ACTIONS(911), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367663] = 4, + [367387] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8047), 1, + STATE(8034), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(4034), 2, anon_sym_LF, anon_sym_DOT2, - ACTIONS(3888), 6, + ACTIONS(4032), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [367682] = 6, + [367406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, + ACTIONS(13172), 1, anon_sym_DOT2, - STATE(7912), 1, - aux_sym_cell_path_repeat1, - STATE(8048), 1, - sym_comment, - STATE(8579), 1, + STATE(7953), 1, sym_path, - ACTIONS(977), 5, + STATE(8035), 1, + sym_comment, + STATE(8452), 1, + sym_cell_path, + ACTIONS(935), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [367705] = 4, + [367429] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(8049), 1, - sym_comment, - ACTIONS(3836), 2, + ACTIONS(4038), 1, anon_sym_LF, + ACTIONS(13175), 1, anon_sym_DOT2, - ACTIONS(3834), 6, + STATE(8036), 1, + sym_comment, + ACTIONS(4036), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [367724] = 7, + [367450] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(911), 1, + ACTIONS(3979), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13177), 1, anon_sym_DOT2, - STATE(5705), 1, - sym_cell_path, - STATE(7979), 1, - sym_path, - STATE(8050), 1, + STATE(8037), 1, sym_comment, - ACTIONS(909), 4, + ACTIONS(3977), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [367749] = 4, - ACTIONS(105), 1, + [367471] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8051), 1, + ACTIONS(3711), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2340), 1, + sym_block, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8038), 1, sym_comment, - ACTIONS(2988), 2, + STATE(10269), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [367500] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4028), 1, anon_sym_LF, + ACTIONS(13179), 1, anon_sym_DOT2, - ACTIONS(2986), 6, + STATE(8039), 1, + sym_comment, + ACTIONS(4026), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [367768] = 4, + [367521] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(8052), 1, - sym_comment, - ACTIONS(2998), 2, + ACTIONS(3842), 1, anon_sym_LF, + ACTIONS(13181), 1, anon_sym_DOT2, - ACTIONS(2996), 6, + STATE(8040), 1, + sym_comment, + ACTIONS(3840), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [367787] = 6, + [367542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13194), 1, + ACTIONS(13185), 1, + anon_sym_DASH, + STATE(8041), 1, + sym_comment, + ACTIONS(13183), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [367561] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LF, + ACTIONS(13187), 1, + anon_sym_EQ, + STATE(8042), 1, + sym_comment, + ACTIONS(3942), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [367582] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13191), 1, + aux_sym__immediate_decimal_token2, + STATE(8043), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_DOT2, - STATE(7960), 1, - sym_path, - STATE(8053), 1, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [367605] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13195), 1, + anon_sym_DASH, + STATE(8044), 1, sym_comment, - STATE(8430), 1, - sym_cell_path, - ACTIONS(981), 5, - sym_cmd_identifier, + ACTIONS(13193), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [367624] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3286), 1, anon_sym_DQUOTE, + ACTIONS(13016), 1, + sym_identifier, + ACTIONS(13197), 1, + anon_sym_GT, + STATE(7123), 1, + sym__str_double_quotes, + STATE(8045), 1, + sym_comment, + STATE(8055), 1, + aux_sym_collection_type_repeat1, + STATE(8109), 1, + sym_val_string, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [367810] = 9, + [367653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(13195), 1, anon_sym_DASH, - ACTIONS(13197), 1, - anon_sym_LBRACE, - STATE(1953), 1, - sym_val_record, - STATE(8037), 1, - sym_long_flag_equals_value, - STATE(8054), 1, + STATE(8046), 1, sym_comment, - STATE(10241), 1, - sym__flag, - STATE(8821), 2, - sym_short_flag, - sym_long_flag, - [367839] = 4, + ACTIONS(13193), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [367672] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(13201), 1, anon_sym_DASH, - STATE(8055), 1, + STATE(8047), 1, sym_comment, ACTIONS(13199), 7, sym_identifier, @@ -549264,242 +549168,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [367858] = 9, + [367691] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12993), 1, + anon_sym_DASH, + STATE(8048), 1, + sym_comment, + ACTIONS(12989), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [367710] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2204), 1, + STATE(1966), 1, sym_block, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8056), 1, + STATE(8049), 1, sym_comment, - STATE(10172), 1, + STATE(10267), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [367887] = 6, + [367739] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, - anon_sym_DOT2, - STATE(8045), 1, - sym_path, - STATE(8057), 1, + ACTIONS(2740), 1, + sym_identifier, + ACTIONS(13203), 1, + anon_sym_DASH_DASH, + ACTIONS(13206), 1, + anon_sym_DASH, + STATE(9540), 1, + sym_long_flag_equals_value, + STATE(10034), 1, + sym__flag, + STATE(8050), 2, sym_comment, - STATE(8609), 1, - sym_cell_path, - ACTIONS(911), 5, - sym_cmd_identifier, + aux_sym_overlay_use_repeat1, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [367766] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [367910] = 6, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1968), 1, + sym_block, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8051), 1, + sym_comment, + STATE(10270), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [367795] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4189), 1, - sym_path, - STATE(7924), 1, - aux_sym_cell_path_repeat1, - STATE(8058), 1, - sym_comment, - ACTIONS(977), 2, + ACTIONS(915), 1, anon_sym_LF, + ACTIONS(13046), 1, anon_sym_DOT2, - ACTIONS(975), 4, + STATE(5371), 1, + sym_cell_path, + STATE(8028), 1, + sym_path, + STATE(8052), 1, + sym_comment, + ACTIONS(913), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [367933] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(12974), 1, - aux_sym__immediate_decimal_token2, - STATE(8059), 1, - sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [367954] = 5, + [367820] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(3891), 1, anon_sym_LF, - ACTIONS(2392), 1, - aux_sym_unquoted_token6, - STATE(8060), 1, + ACTIONS(13209), 1, + sym_long_flag_identifier, + STATE(8053), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(3887), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - sym_filesize_unit, - sym_duration_unit, - [367975] = 7, + [367841] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(968), 1, anon_sym_LF, - ACTIONS(13022), 1, + ACTIONS(13046), 1, anon_sym_DOT2, - STATE(5737), 1, + STATE(4220), 1, sym_cell_path, - STATE(7979), 1, + STATE(8028), 1, sym_path, - STATE(8061), 1, + STATE(8054), 1, sym_comment, - ACTIONS(967), 4, + ACTIONS(966), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [368000] = 6, + [367866] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13001), 1, - anon_sym_DOT2, - STATE(8045), 1, - sym_path, - STATE(8062), 1, - sym_comment, - STATE(8876), 1, - sym_cell_path, - ACTIONS(1003), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(3286), 1, anon_sym_DQUOTE, + ACTIONS(13016), 1, + sym_identifier, + ACTIONS(13211), 1, + anon_sym_GT, + STATE(7123), 1, + sym__str_double_quotes, + STATE(7991), 1, + aux_sym_collection_type_repeat1, + STATE(8055), 1, + sym_comment, + STATE(8109), 1, + sym_val_string, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [368023] = 9, + [367895] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(1983), 1, sym_block, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8063), 1, + STATE(8056), 1, sym_comment, - STATE(10201), 1, + STATE(10169), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [368052] = 4, + [367924] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4386), 1, - anon_sym_DASH, - STATE(8064), 1, - sym_comment, - ACTIONS(4388), 7, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(3711), 1, anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13001), 1, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [368071] = 9, + STATE(1985), 1, + sym_block, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8057), 1, + sym_comment, + STATE(10170), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [367953] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3379), 1, + ACTIONS(3711), 1, anon_sym_DASH_DASH, - ACTIONS(11933), 1, + ACTIONS(11943), 1, anon_sym_DASH, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2203), 1, + STATE(1986), 1, sym_block, - STATE(8037), 1, + STATE(8017), 1, sym_long_flag_equals_value, - STATE(8065), 1, + STATE(8058), 1, sym_comment, - STATE(10194), 1, + STATE(10172), 1, sym__flag, - STATE(8821), 2, + STATE(9009), 2, sym_short_flag, sym_long_flag, - [368100] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3689), 1, - anon_sym_DQUOTE, - ACTIONS(12458), 1, - anon_sym_LPAREN, - ACTIONS(13203), 1, - sym_cmd_identifier, - STATE(4118), 1, - sym__str_double_quotes, - STATE(8066), 1, - sym_comment, - ACTIONS(3691), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1072), 2, - sym_expr_parenthesized, - sym_val_string, - [368127] = 6, - ACTIONS(3), 1, + [367982] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13207), 1, + ACTIONS(12981), 1, aux_sym__immediate_decimal_token2, - STATE(8067), 1, + STATE(8059), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym_duration_unit, - [368150] = 5, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [368003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12902), 1, - aux_sym__immediate_decimal_token2, - STATE(8068), 1, + ACTIONS(4352), 1, + anon_sym_DASH, + STATE(8060), 1, sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [368171] = 4, + ACTIONS(4354), 7, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [368022] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4390), 1, + ACTIONS(4364), 1, anon_sym_DASH, - STATE(8069), 1, + STATE(8061), 1, sym_comment, - ACTIONS(4392), 7, + ACTIONS(4366), 7, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -549507,3972 +549420,4101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [368190] = 10, + [368041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(12228), 1, - sym_identifier, - STATE(2402), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8070), 1, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(4602), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, + STATE(8062), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9818), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [368221] = 6, + ACTIONS(935), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + [368064] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13211), 1, + ACTIONS(3711), 1, + anon_sym_DASH_DASH, + ACTIONS(11943), 1, + anon_sym_DASH, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1991), 1, + sym_block, + STATE(8017), 1, + sym_long_flag_equals_value, + STATE(8063), 1, + sym_comment, + STATE(10189), 1, + sym__flag, + STATE(9009), 2, + sym_short_flag, + sym_long_flag, + [368093] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(975), 1, + anon_sym_LF, + ACTIONS(13046), 1, + anon_sym_DOT2, + STATE(4156), 1, + sym_path, + STATE(7988), 1, + aux_sym_cell_path_repeat1, + STATE(8064), 1, + sym_comment, + ACTIONS(973), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [368118] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(12997), 1, aux_sym__immediate_decimal_token2, - STATE(8071), 1, + STATE(8065), 1, sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - sym_duration_unit, - [368244] = 7, + ACTIONS(2957), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [368139] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(992), 1, + STATE(8066), 1, + sym_comment, + ACTIONS(2959), 2, anon_sym_LF, - ACTIONS(13022), 1, anon_sym_DOT2, - STATE(5724), 1, - sym_cell_path, - STATE(7979), 1, + ACTIONS(2957), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [368158] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4156), 1, sym_path, - STATE(8072), 1, + STATE(7988), 1, + aux_sym_cell_path_repeat1, + STATE(8067), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(975), 2, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(973), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [368269] = 4, + [368181] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12987), 1, + anon_sym_DASH, + STATE(8068), 1, + sym_comment, + ACTIONS(12983), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [368200] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8069), 1, + sym_comment, + STATE(9203), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [368229] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12987), 1, + anon_sym_DASH, + STATE(8070), 1, + sym_comment, + ACTIONS(12983), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [368248] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13005), 1, + anon_sym_DOT2, + STATE(7906), 1, + sym_path, + STATE(8071), 1, + sym_comment, + STATE(8760), 1, + sym_cell_path, + ACTIONS(915), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [368271] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4226), 1, - anon_sym_LF, - STATE(8073), 1, + STATE(8072), 1, sym_comment, - ACTIONS(4224), 6, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 6, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [368287] = 4, + sym_filesize_unit, + sym_duration_unit, + [368290] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(8074), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2415), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, + STATE(8073), 1, sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + STATE(8947), 1, + sym_val_variable, + STATE(9886), 1, + sym__variable_name, + STATE(10063), 1, + sym__assignment_pattern_last, + [368318] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(933), 1, + anon_sym_DASH, + ACTIONS(13213), 1, anon_sym_DOT2, - sym_duration_unit, - [368305] = 7, + STATE(8074), 1, + sym_comment, + STATE(8252), 1, + sym_path, + STATE(9070), 1, + sym_cell_path, + ACTIONS(935), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [368342] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1033), 1, + ACTIONS(917), 1, anon_sym_DASH, ACTIONS(13213), 1, anon_sym_DOT2, STATE(8075), 1, sym_comment, - STATE(8146), 1, + STATE(8252), 1, sym_path, - STATE(9672), 1, + STATE(9700), 1, sym_cell_path, - ACTIONS(1035), 3, + ACTIONS(919), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [368329] = 5, + [368366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13215), 1, - aux_sym__immediate_decimal_token2, STATE(8076), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(815), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(846), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(817), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [368349] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4238), 1, - anon_sym_LF, - STATE(8077), 1, - sym_comment, - ACTIONS(4236), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368367] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4230), 1, - anon_sym_LF, - STATE(8078), 1, - sym_comment, - ACTIONS(4228), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368385] = 5, + [368384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13211), 1, + ACTIONS(13059), 1, aux_sym__immediate_decimal_token2, - STATE(8079), 1, + STATE(8077), 1, sym_comment, - ACTIONS(815), 2, + ACTIONS(807), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(817), 4, + ACTIONS(809), 4, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [368405] = 9, + [368404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2426), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8080), 1, + ACTIONS(909), 1, + anon_sym_DASH, + ACTIONS(13213), 1, + anon_sym_DOT2, + STATE(8078), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9782), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [368433] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, + STATE(8252), 1, + sym_path, + STATE(9796), 1, + sym_cell_path, + ACTIONS(911), 3, sym_identifier, - STATE(2375), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8081), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9808), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [368461] = 9, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [368428] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2402), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8082), 1, + ACTIONS(933), 1, + anon_sym_DASH, + ACTIONS(13215), 1, + anon_sym_DOT2, + STATE(8079), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9818), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [368489] = 6, + STATE(8114), 1, + sym_path, + STATE(9070), 1, + sym_cell_path, + ACTIONS(935), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [368452] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, + ACTIONS(9584), 1, + anon_sym_DOT2, + STATE(8080), 1, + sym_comment, + ACTIONS(3931), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7634), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13217), 1, + ACTIONS(3929), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [368472] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13218), 1, anon_sym_DOT2, - STATE(8083), 1, + ACTIONS(13220), 1, + aux_sym_unquoted_token2, + STATE(8081), 1, sym_comment, - ACTIONS(3489), 4, + ACTIONS(949), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [368511] = 8, + ACTIONS(951), 2, + ts_builtin_sym_end, + anon_sym_LF, + [368496] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(1885), 1, + STATE(7698), 1, sym__command_name, - STATE(8084), 1, + STATE(7877), 1, + sym_val_string, + STATE(8082), 1, sym_comment, - ACTIONS(11389), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [368537] = 4, + [368522] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_LF, - STATE(8085), 1, - sym_comment, - ACTIONS(4220), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368555] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13207), 1, + ACTIONS(13222), 1, aux_sym__immediate_decimal_token2, - STATE(8086), 1, + STATE(8083), 1, sym_comment, - ACTIONS(807), 2, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 4, + anon_sym_RBRACK, sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + [368542] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13191), 1, + aux_sym__immediate_decimal_token2, + STATE(8084), 1, + sym_comment, + ACTIONS(809), 2, anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, sym_duration_unit, - [368575] = 4, + aux_sym__unquoted_in_list_token7, + [368562] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(8087), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8085), 1, sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [368593] = 4, + STATE(11483), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [368588] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4257), 1, anon_sym_LF, - STATE(8088), 1, + STATE(8086), 1, sym_comment, - ACTIONS(4200), 6, + ACTIONS(4255), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [368611] = 7, + [368606] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(6009), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8087), 1, + sym_comment, + STATE(9358), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [368632] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11403), 1, + anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2078), 1, + sym__command_name, + STATE(2136), 1, + sym_val_string, + STATE(8088), 1, + sym_comment, + ACTIONS(11405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [368658] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13226), 1, + aux_sym__immediate_decimal_token2, STATE(8089), 1, sym_comment, - ACTIONS(981), 3, + ACTIONS(855), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 4, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [368635] = 4, + anon_sym_DOT2, + sym_duration_unit, + [368678] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4196), 1, - anon_sym_LF, + ACTIONS(13228), 1, + anon_sym_EQ, STATE(8090), 1, sym_comment, - ACTIONS(4194), 6, + ACTIONS(3946), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3942), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [368653] = 7, + [368698] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(909), 1, - anon_sym_DASH, - ACTIONS(13213), 1, - anon_sym_DOT2, + ACTIONS(13071), 1, + aux_sym__immediate_decimal_token2, STATE(8091), 1, sym_comment, - STATE(8146), 1, - sym_path, - STATE(9374), 1, - sym_cell_path, - ACTIONS(911), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [368677] = 7, - ACTIONS(3), 1, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [368718] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(13230), 1, anon_sym_DOT2, - STATE(7241), 1, - sym_path, + ACTIONS(13233), 1, + aux_sym__immediate_decimal_token2, STATE(8092), 1, sym_comment, - STATE(8108), 1, - aux_sym_cell_path_repeat1, - ACTIONS(905), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [368701] = 8, + ACTIONS(846), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [368740] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, + ACTIONS(11403), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(13224), 1, sym_cmd_identifier, - STATE(1151), 1, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2079), 1, sym__command_name, - STATE(1731), 1, + STATE(2136), 1, sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, STATE(8093), 1, sym_comment, - ACTIONS(11389), 2, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - [368727] = 8, + [368766] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(13075), 1, + aux_sym__immediate_decimal_token2, STATE(8094), 1, sym_comment, - STATE(11019), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [368753] = 4, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [368786] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4192), 1, - anon_sym_LF, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(13022), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13235), 1, + anon_sym_DOT2, STATE(8095), 1, sym_comment, - ACTIONS(4190), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368771] = 4, - ACTIONS(105), 1, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [368808] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4178), 1, - anon_sym_LF, + ACTIONS(13079), 1, + aux_sym__immediate_decimal_token2, STATE(8096), 1, sym_comment, - ACTIONS(4176), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368789] = 4, - ACTIONS(105), 1, + ACTIONS(817), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(815), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [368828] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4174), 1, - anon_sym_LF, + ACTIONS(13238), 1, + anon_sym_QMARK2, STATE(8097), 1, sym_comment, - ACTIONS(4172), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1072), 6, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368807] = 4, - ACTIONS(105), 1, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [368846] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4170), 1, - anon_sym_LF, + ACTIONS(13238), 1, + anon_sym_QMARK2, STATE(8098), 1, sym_comment, - ACTIONS(4168), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1072), 6, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368825] = 6, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [368864] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13221), 1, - aux_sym__immediate_decimal_token2, STATE(8099), 1, sym_comment, - ACTIONS(807), 2, + ACTIONS(877), 2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_LBRACE, - anon_sym_DOT2, sym_duration_unit, - [368847] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4160), 1, - anon_sym_LF, - STATE(8100), 1, - sym_comment, - ACTIONS(4158), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368865] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4148), 1, - anon_sym_LF, - STATE(8101), 1, - sym_comment, - ACTIONS(4146), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(879), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [368883] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [368882] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13223), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13225), 1, + ACTIONS(13240), 1, aux_sym__immediate_decimal_token2, - STATE(8102), 1, + STATE(8100), 1, sym_comment, - ACTIONS(815), 2, + ACTIONS(855), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_LBRACE, + ACTIONS(857), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [368905] = 9, + [368902] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2387), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8103), 1, + ACTIONS(13242), 1, + anon_sym_DOT2, + ACTIONS(13245), 1, + aux_sym__immediate_decimal_token2, + STATE(8101), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9707), 1, - sym__assignment_pattern_last, - STATE(9953), 1, - sym__variable_name, - [368933] = 8, + ACTIONS(846), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + sym_duration_unit, + [368924] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, - anon_sym_DQUOTE, - ACTIONS(12999), 1, - sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(1877), 1, - sym__command_name, - STATE(8104), 1, + ACTIONS(13086), 1, + aux_sym__immediate_decimal_token2, + STATE(8102), 1, sym_comment, - ACTIONS(11389), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [368959] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH, - ACTIONS(13227), 1, + ACTIONS(809), 2, + anon_sym_DOLLAR, anon_sym_DOT2, - STATE(8105), 1, - sym_comment, - STATE(8279), 1, - sym_path, - STATE(8990), 1, - sym_cell_path, - ACTIONS(981), 3, + ACTIONS(807), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [368983] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [368944] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - ACTIONS(13230), 1, + ACTIONS(13247), 1, anon_sym_DOT2, - ACTIONS(13232), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13234), 1, - aux_sym_unquoted_token2, - STATE(8106), 1, + STATE(7618), 1, + sym_cell_path, + STATE(8103), 1, sym_comment, - ACTIONS(1007), 3, + STATE(8210), 1, + sym_path, + ACTIONS(968), 4, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [369007] = 4, + anon_sym_RBRACE, + [368966] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4144), 1, + ACTIONS(1056), 1, anon_sym_LF, - STATE(8107), 1, + ACTIONS(8156), 1, + sym_filesize_unit, + ACTIONS(8158), 1, + sym_duration_unit, + STATE(8104), 1, sym_comment, - ACTIONS(4142), 6, + ACTIONS(1054), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [369025] = 6, + [368988] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH, - STATE(7157), 1, - aux_sym_cell_path_repeat1, - STATE(7241), 1, - sym_path, - STATE(8108), 1, + ACTIONS(3165), 1, + sym_cmd_identifier, + ACTIONS(13250), 1, + anon_sym_DOT2, + ACTIONS(13252), 1, + aux_sym__immediate_decimal_token2, + STATE(8105), 1, sym_comment, - ACTIONS(977), 4, - anon_sym_DOLLAR, + ACTIONS(3167), 4, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT2, - [369047] = 4, - ACTIONS(105), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369010] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4140), 1, - anon_sym_LF, - STATE(8109), 1, + ACTIONS(13256), 1, + anon_sym_COLON, + ACTIONS(13258), 1, + anon_sym_COMMA, + STATE(8106), 1, sym_comment, - ACTIONS(4138), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [369065] = 6, + ACTIONS(13254), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369030] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13236), 1, + ACTIONS(13260), 1, anon_sym_DOT2, - ACTIONS(13239), 1, + ACTIONS(13263), 1, aux_sym__immediate_decimal_token2, - STATE(8110), 1, + STATE(8107), 1, sym_comment, - ACTIONS(835), 2, + ACTIONS(846), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(837), 3, + ACTIONS(848), 3, anon_sym_DOLLAR, anon_sym_LBRACE, sym_duration_unit, - [369087] = 6, + [369052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13207), 1, + ACTIONS(13071), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13241), 1, + ACTIONS(13265), 1, anon_sym_DOT2, - STATE(8111), 1, + STATE(8108), 1, sym_comment, - ACTIONS(807), 2, + ACTIONS(815), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(817), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, sym_duration_unit, - [369109] = 7, - ACTIONS(105), 1, + [369074] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5985), 1, - sym_cell_path, - STATE(8112), 1, + ACTIONS(13270), 1, + anon_sym_COLON, + ACTIONS(13272), 1, + anon_sym_COMMA, + STATE(8109), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(1001), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1003), 2, - ts_builtin_sym_end, - anon_sym_LF, - [369133] = 4, + ACTIONS(13268), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369094] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4242), 1, + ACTIONS(3167), 1, anon_sym_LF, - STATE(8113), 1, + ACTIONS(7676), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13274), 1, + anon_sym_DOT2, + STATE(8110), 1, sym_comment, - ACTIONS(4240), 6, + ACTIONS(3165), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [369151] = 7, + [369116] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(13278), 1, anon_sym_DOT2, - STATE(8114), 1, + STATE(4602), 1, + sym_cell_path, + STATE(8111), 1, sym_comment, - STATE(8146), 1, + STATE(8210), 1, sym_path, - STATE(8990), 1, - sym_cell_path, - ACTIONS(981), 3, - sym_identifier, + ACTIONS(935), 4, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [369175] = 5, - ACTIONS(105), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [369138] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(8115), 1, + STATE(8112), 1, sym_comment, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2996), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(817), 2, anon_sym_DASH_DASH, + anon_sym_DOT2, + ACTIONS(815), 5, + sym_identifier, anon_sym_DASH, - [369195] = 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [369156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8113), 1, + sym_comment, + ACTIONS(894), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [369174] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(13246), 1, + ACTIONS(13213), 1, anon_sym_DOT2, - STATE(8116), 1, + STATE(8114), 1, sym_comment, - STATE(8279), 1, + STATE(8267), 1, + aux_sym_cell_path_repeat1, + STATE(8805), 1, sym_path, - STATE(8956), 1, - sym_cell_path, - ACTIONS(999), 3, + ACTIONS(905), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [369219] = 4, - ACTIONS(105), 1, + [369198] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_LF, - STATE(8117), 1, - sym_comment, - ACTIONS(4244), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3784), 1, anon_sym_DASH_DASH, + ACTIONS(13281), 1, anon_sym_DASH, - anon_sym_RBRACE, - [369237] = 5, + ACTIONS(13283), 1, + anon_sym_in, + STATE(8115), 1, + sym_comment, + STATE(10806), 1, + sym_long_flag_equals_value, + STATE(11129), 1, + sym__flag, + STATE(10695), 2, + sym_short_flag, + sym_long_flag, + [369224] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13249), 1, - aux_sym__immediate_decimal_token2, - STATE(8118), 1, - sym_comment, - ACTIONS(846), 2, + ACTIONS(13285), 1, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [369257] = 7, + STATE(4453), 1, + sym_cell_path, + STATE(8116), 1, + sym_comment, + STATE(8271), 1, + sym_path, + ACTIONS(966), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + [369248] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_DASH, - ACTIONS(13251), 1, - anon_sym_DOT2, - STATE(7597), 1, - sym_cell_path, - STATE(8092), 1, + STATE(7169), 1, + aux_sym_cell_path_repeat1, + STATE(7259), 1, sym_path, - STATE(8119), 1, + STATE(8117), 1, sym_comment, - ACTIONS(999), 3, + ACTIONS(975), 5, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [369281] = 4, + anon_sym_RBRACE, + anon_sym_DOT2, + [369268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4136), 1, + ACTIONS(4332), 1, anon_sym_LF, - STATE(8120), 1, + STATE(8118), 1, sym_comment, - ACTIONS(4134), 6, + ACTIONS(4330), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [369299] = 8, - ACTIONS(3), 1, + [369286] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2285), 1, - sym__command_name, - STATE(8121), 1, + ACTIONS(4336), 1, + anon_sym_LF, + STATE(8119), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [369325] = 8, + ACTIONS(4334), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [369304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2283), 1, - sym__command_name, - STATE(8122), 1, - sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [369351] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13163), 1, - aux_sym__immediate_decimal_token2, - STATE(8123), 1, + STATE(8120), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(809), 2, + anon_sym_DASH_DASH, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 4, - anon_sym_RBRACK, + ACTIONS(807), 5, + sym_identifier, + anon_sym_DASH, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [369371] = 7, + aux_sym_unquoted_token6, + [369322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5942), 1, - sym_cell_path, - STATE(8124), 1, + ACTIONS(4340), 1, + anon_sym_LF, + STATE(8121), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(909), 2, + ACTIONS(4338), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(911), 2, - ts_builtin_sym_end, - anon_sym_LF, - [369395] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [369340] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4260), 1, + ACTIONS(4344), 1, anon_sym_LF, - STATE(8125), 1, + STATE(8122), 1, sym_comment, - ACTIONS(4258), 6, + ACTIONS(4342), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [369413] = 7, + [369358] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13287), 1, + anon_sym_DOT2, + STATE(8123), 1, + sym_comment, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [369380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH, - ACTIONS(13256), 1, + ACTIONS(13044), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13289), 1, anon_sym_DOT2, - STATE(6009), 1, - sym_cell_path, - STATE(8092), 1, - sym_path, - STATE(8126), 1, + STATE(8124), 1, sym_comment, - ACTIONS(981), 3, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [369437] = 7, + sym_duration_unit, + [369402] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(949), 1, anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(9565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13292), 1, anon_sym_DOT2, - STATE(8127), 1, + ACTIONS(13294), 1, + aux_sym_unquoted_token2, + STATE(8125), 1, sym_comment, - STATE(8303), 1, - aux_sym_cell_path_repeat1, - STATE(9173), 1, - sym_path, - ACTIONS(977), 3, - sym_identifier, + ACTIONS(951), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [369461] = 7, + anon_sym_LBRACE, + [369426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_DASH, - ACTIONS(13213), 1, - anon_sym_DOT2, - STATE(8128), 1, + STATE(8126), 1, sym_comment, - STATE(8146), 1, - sym_path, - STATE(8956), 1, - sym_cell_path, - ACTIONS(999), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1177), 2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1179), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [369485] = 4, - ACTIONS(105), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4271), 1, - anon_sym_LF, - STATE(8129), 1, + STATE(8127), 1, sym_comment, - ACTIONS(4269), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(857), 2, anon_sym_DASH_DASH, + anon_sym_DOT2, + ACTIONS(855), 5, + sym_identifier, anon_sym_DASH, - anon_sym_RBRACE, - [369503] = 8, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [369462] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(1948), 1, - sym__command_name, - STATE(8130), 1, + STATE(7877), 1, + sym_val_string, + STATE(8128), 1, sym_comment, - ACTIONS(11389), 2, + STATE(11475), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [369529] = 8, + [369488] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(1950), 1, - sym__command_name, - STATE(8131), 1, + STATE(7877), 1, + sym_val_string, + STATE(8129), 1, sym_comment, - ACTIONS(11389), 2, + STATE(9203), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [369555] = 4, - ACTIONS(105), 1, + [369514] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4128), 1, - anon_sym_LF, - STATE(8132), 1, + ACTIONS(13296), 1, + aux_sym__immediate_decimal_token2, + STATE(8130), 1, sym_comment, - ACTIONS(4126), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [369573] = 4, - ACTIONS(105), 1, + ACTIONS(857), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(855), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [369534] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4408), 1, - anon_sym_LF, - STATE(8133), 1, - sym_comment, - ACTIONS(4406), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, + ACTIONS(942), 1, anon_sym_DASH, - anon_sym_RBRACE, - [369591] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4120), 1, - anon_sym_LF, - STATE(8134), 1, + ACTIONS(13298), 1, + anon_sym_DOT2, + STATE(8805), 1, + sym_path, + STATE(8131), 2, sym_comment, - ACTIONS(4118), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(944), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [369609] = 4, - ACTIONS(105), 1, + [369556] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4116), 1, - anon_sym_LF, - STATE(8135), 1, + STATE(8132), 1, sym_comment, - ACTIONS(4114), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(896), 2, anon_sym_DASH_DASH, + anon_sym_DOT2, + ACTIONS(894), 5, + sym_identifier, anon_sym_DASH, - anon_sym_RBRACE, - [369627] = 6, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [369574] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - sym__entry_separator, - ACTIONS(13259), 1, + ACTIONS(13301), 1, anon_sym_DOT2, - ACTIONS(13262), 1, - aux_sym__immediate_decimal_token2, - STATE(8136), 1, + STATE(4453), 1, + sym_cell_path, + STATE(8133), 1, sym_comment, - ACTIONS(835), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [369649] = 6, + STATE(8250), 1, + sym_path, + ACTIONS(966), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(968), 2, + ts_builtin_sym_end, + anon_sym_LF, + [369598] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, sym_cmd_identifier, - ACTIONS(13264), 1, - anon_sym_DOT2, - ACTIONS(13267), 1, - aux_sym__immediate_decimal_token2, - STATE(8137), 1, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8134), 1, sym_comment, - ACTIONS(3491), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + STATE(10823), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [369671] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4107), 1, - anon_sym_LF, - STATE(8138), 1, - sym_comment, - ACTIONS(4105), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [369689] = 5, + [369624] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13271), 1, - anon_sym_COLON, - ACTIONS(13273), 1, - anon_sym_COMMA, - STATE(8139), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8135), 1, sym_comment, - ACTIONS(13269), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + STATE(9244), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [369709] = 7, - ACTIONS(105), 1, + [369650] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13244), 1, + ACTIONS(959), 1, + anon_sym_DASH, + ACTIONS(13213), 1, anon_sym_DOT2, - STATE(4433), 1, - sym_path, - STATE(8140), 1, + STATE(8136), 1, sym_comment, - STATE(8183), 1, - aux_sym_cell_path_repeat1, - ACTIONS(903), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - [369733] = 4, + STATE(8252), 1, + sym_path, + STATE(9606), 1, + sym_cell_path, + ACTIONS(961), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [369674] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4297), 1, - anon_sym_LF, - STATE(8141), 1, + STATE(8137), 1, sym_comment, - ACTIONS(4295), 6, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + ACTIONS(2998), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [369751] = 8, + [369692] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3058), 1, - anon_sym_DASH_DASH, - ACTIONS(13275), 1, - anon_sym_DASH, - ACTIONS(13277), 1, - anon_sym_in, - STATE(8142), 1, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(13304), 1, + anon_sym_alias, + ACTIONS(13306), 1, + anon_sym_const, + ACTIONS(13308), 1, + anon_sym_def, + ACTIONS(13310), 1, + anon_sym_extern, + ACTIONS(13312), 1, + anon_sym_module, + ACTIONS(13314), 1, + anon_sym_use, + STATE(8138), 1, sym_comment, - STATE(10713), 1, - sym_long_flag_equals_value, - STATE(11351), 1, - sym__flag, - STATE(10784), 2, - sym_short_flag, - sym_long_flag, - [369777] = 8, + [369720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(2998), 1, sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, - STATE(8143), 1, + ACTIONS(13095), 1, + aux_sym__immediate_decimal_token2, + STATE(8139), 1, sym_comment, - STATE(11119), 1, - sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3000), 5, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [369803] = 6, + [369740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13279), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13281), 1, - aux_sym__immediate_decimal_token2, - STATE(8144), 1, + ACTIONS(8667), 1, + aux_sym_unquoted_token6, + STATE(8140), 1, + sym_comment, + ACTIONS(877), 2, + anon_sym_DASH, + sym_filesize_unit, + ACTIONS(879), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_duration_unit, + [369760] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8141), 1, sym_comment, ACTIONS(807), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_in, + ACTIONS(809), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [369825] = 9, + [369778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2399), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8145), 1, + ACTIONS(2998), 1, + sym_cmd_identifier, + ACTIONS(13095), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13316), 1, + anon_sym_DOT2, + STATE(8142), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10095), 1, - sym__assignment_pattern_parenthesized_last, - STATE(10098), 1, - sym__variable_name, - [369853] = 7, + ACTIONS(3000), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369800] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, + ACTIONS(959), 1, anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(8127), 1, - aux_sym_cell_path_repeat1, - STATE(8146), 1, - sym_comment, - STATE(9173), 1, + STATE(6161), 1, + sym_cell_path, + STATE(7163), 1, sym_path, - ACTIONS(905), 3, - sym_identifier, + STATE(8143), 1, + sym_comment, + ACTIONS(961), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [369877] = 9, + anon_sym_LBRACE, + [369824] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2393), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8147), 1, + ACTIONS(13318), 1, + sym_filesize_unit, + ACTIONS(13320), 1, + sym_duration_unit, + STATE(8144), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10098), 1, - sym__variable_name, - STATE(10105), 1, - sym__assignment_pattern_parenthesized_last, - [369905] = 4, + ACTIONS(1056), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [369844] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4354), 1, + ACTIONS(4392), 1, anon_sym_LF, - STATE(8148), 1, + STATE(8145), 1, sym_comment, - ACTIONS(4352), 6, + ACTIONS(4390), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [369923] = 5, + [369862] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13283), 1, - sym_long_flag_identifier, - STATE(8149), 1, + STATE(8146), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(2959), 3, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3947), 4, + anon_sym_DOT2, + ACTIONS(2957), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [369943] = 5, + [369880] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2499), 1, - aux_sym_unquoted_token6, - STATE(8150), 1, - sym_comment, - ACTIONS(863), 2, - ts_builtin_sym_end, + ACTIONS(4396), 1, anon_sym_LF, - ACTIONS(861), 4, + STATE(8147), 1, + sym_comment, + ACTIONS(4394), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - sym_filesize_unit, - sym_duration_unit, - [369963] = 9, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [369898] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2384), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8151), 1, + STATE(4455), 1, + sym_path, + STATE(8148), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10098), 1, - sym__variable_name, - STATE(10110), 1, - sym__assignment_pattern_parenthesized_last, - [369991] = 6, + STATE(8281), 1, + aux_sym_cell_path_repeat1, + ACTIONS(973), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(975), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [369920] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7677), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13285), 1, - aux_sym__immediate_decimal_token1, - STATE(8152), 1, + ACTIONS(4400), 1, + anon_sym_LF, + STATE(8149), 1, sym_comment, - ACTIONS(2986), 2, + ACTIONS(4398), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [369938] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4408), 1, + anon_sym_LF, + STATE(8150), 1, + sym_comment, + ACTIONS(4406), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2988), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [369956] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8151), 1, + sym_comment, + ACTIONS(3806), 3, ts_builtin_sym_end, anon_sym_LF, anon_sym_DOT2, - [370013] = 4, + ACTIONS(3804), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [369974] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4124), 1, + ACTIONS(4414), 1, anon_sym_LF, - STATE(8153), 1, + STATE(8152), 1, sym_comment, - ACTIONS(4122), 6, + ACTIONS(4412), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370031] = 4, + [369992] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4360), 1, + ACTIONS(4457), 1, anon_sym_LF, - STATE(8154), 1, + STATE(8153), 1, sym_comment, - ACTIONS(4358), 6, + ACTIONS(4455), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370049] = 4, + [370010] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4364), 1, + ACTIONS(4464), 1, anon_sym_LF, - STATE(8155), 1, + STATE(8154), 1, sym_comment, - ACTIONS(4362), 6, + ACTIONS(4462), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370067] = 6, + [370028] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(4476), 1, anon_sym_LF, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13287), 1, - anon_sym_DOT2, - STATE(8156), 1, + STATE(8155), 1, sym_comment, - ACTIONS(2996), 4, + ACTIONS(4474), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [370089] = 4, + [370046] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(8157), 1, + ACTIONS(909), 1, + anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(6180), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, + STATE(8156), 1, sym_comment, - ACTIONS(1065), 2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1067), 5, - sym_cmd_identifier, + ACTIONS(911), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [370107] = 7, + anon_sym_LBRACE, + [370070] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5921), 1, - sym_cell_path, - STATE(8158), 1, + STATE(8157), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(990), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(992), 2, + ACTIONS(4034), 3, ts_builtin_sym_end, anon_sym_LF, - [370131] = 7, - ACTIONS(105), 1, + anon_sym_DOT2, + ACTIONS(4032), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [370088] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13289), 1, + ACTIONS(913), 1, + anon_sym_DASH, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(5653), 1, + STATE(6242), 1, sym_cell_path, - STATE(8140), 1, + STATE(7163), 1, sym_path, + STATE(8158), 1, + sym_comment, + ACTIONS(915), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [370112] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, STATE(8159), 1, sym_comment, - ACTIONS(979), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - [370155] = 6, + STATE(10779), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [370138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13292), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13294), 1, + ACTIONS(848), 1, + anon_sym_DOLLAR, + ACTIONS(13322), 1, + anon_sym_DOT2, + ACTIONS(13325), 1, aux_sym__immediate_decimal_token2, STATE(8160), 1, sym_comment, - ACTIONS(815), 2, + ACTIONS(846), 4, + sym_identifier, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_in, - anon_sym_DOT2, sym_duration_unit, - [370177] = 4, + aux_sym_unquoted_token6, + [370160] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4301), 1, + ACTIONS(4480), 1, anon_sym_LF, STATE(8161), 1, sym_comment, - ACTIONS(4299), 6, + ACTIONS(4478), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370195] = 6, - ACTIONS(105), 1, + [370178] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(7634), 1, + ACTIONS(13327), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13329), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13296), 1, - anon_sym_DOT2, STATE(8162), 1, sym_comment, - ACTIONS(3489), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [370217] = 6, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 3, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [370200] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(917), 1, anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(6119), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, STATE(8163), 1, sym_comment, - STATE(8303), 1, - aux_sym_cell_path_repeat1, - STATE(9173), 1, - sym_path, - ACTIONS(977), 4, - sym_identifier, + ACTIONS(919), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, - [370239] = 4, + anon_sym_LBRACE, + [370224] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4342), 1, - anon_sym_LF, + ACTIONS(13331), 1, + anon_sym_DOT2, STATE(8164), 1, sym_comment, - ACTIONS(4340), 6, + ACTIONS(4038), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4036), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [370257] = 4, - ACTIONS(105), 1, + [370244] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_LF, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2426), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8165), 1, sym_comment, - ACTIONS(3947), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [370275] = 4, + STATE(8947), 1, + sym_val_variable, + STATE(9886), 1, + sym__variable_name, + STATE(10019), 1, + sym__assignment_pattern_last, + [370272] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4338), 1, + ACTIONS(3167), 1, anon_sym_LF, + ACTIONS(7730), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13333), 1, + anon_sym_DOT2, STATE(8166), 1, sym_comment, - ACTIONS(4336), 6, + ACTIONS(3165), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [370293] = 4, - ACTIONS(105), 1, + [370294] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4334), 1, - anon_sym_LF, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(13213), 1, + anon_sym_DOT2, STATE(8167), 1, sym_comment, - ACTIONS(4332), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(8252), 1, + sym_path, + STATE(8761), 1, + sym_cell_path, + ACTIONS(968), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [370311] = 9, + [370318] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(13299), 1, - anon_sym_alias, - ACTIONS(13301), 1, - anon_sym_const, - ACTIONS(13303), 1, - anon_sym_def, - ACTIONS(13305), 1, - anon_sym_extern, - ACTIONS(13307), 1, - anon_sym_module, - ACTIONS(13309), 1, - anon_sym_use, + ACTIONS(973), 1, + anon_sym_DASH, + ACTIONS(13213), 1, + anon_sym_DOT2, + STATE(8131), 1, + aux_sym_cell_path_repeat1, STATE(8168), 1, sym_comment, - [370339] = 4, + STATE(8805), 1, + sym_path, + ACTIONS(975), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [370342] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4330), 1, + ACTIONS(3167), 1, anon_sym_LF, + ACTIONS(7730), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13335), 1, + anon_sym_DOT2, STATE(8169), 1, sym_comment, - ACTIONS(4328), 6, + ACTIONS(3165), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_RBRACE, - [370357] = 4, + [370364] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_LF, + ACTIONS(13338), 1, + anon_sym_DOT2, STATE(8170), 1, sym_comment, - ACTIONS(4013), 6, + ACTIONS(4028), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4026), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [370375] = 4, + [370384] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13340), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13342), 1, + aux_sym__immediate_decimal_token2, STATE(8171), 1, sym_comment, - ACTIONS(807), 2, + ACTIONS(815), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(809), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(817), 3, + anon_sym_in, anon_sym_DOT2, sym_duration_unit, - [370393] = 7, + [370406] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5848), 1, - sym_cell_path, + ACTIONS(4484), 1, + anon_sym_LF, STATE(8172), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(1033), 2, + ACTIONS(4482), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1035), 2, - ts_builtin_sym_end, - anon_sym_LF, - [370417] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [370424] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(925), 1, + anon_sym_DASH, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(6107), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, + STATE(8173), 1, + sym_comment, + ACTIONS(927), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [370448] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(4088), 1, anon_sym_LF, - STATE(8173), 1, + STATE(8174), 1, sym_comment, - ACTIONS(4303), 6, + ACTIONS(4086), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370435] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, - STATE(8174), 1, - sym_comment, - STATE(11113), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [370461] = 5, + [370466] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8625), 1, - aux_sym_unquoted_token3, + ACTIONS(4092), 1, + anon_sym_LF, STATE(8175), 1, sym_comment, - ACTIONS(825), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(823), 4, + ACTIONS(4090), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [370481] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [370484] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13313), 1, - anon_sym_COLON, - ACTIONS(13315), 1, - anon_sym_COMMA, + ACTIONS(4265), 1, + anon_sym_LF, STATE(8176), 1, sym_comment, - ACTIONS(13311), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [370501] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3058), 1, + ACTIONS(4263), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(13275), 1, anon_sym_DASH, - ACTIONS(13317), 1, - anon_sym_in, + anon_sym_RBRACE, + [370502] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2390), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, STATE(8177), 1, sym_comment, - STATE(10713), 1, - sym_long_flag_equals_value, - STATE(11358), 1, - sym__flag, - STATE(10784), 2, - sym_short_flag, - sym_long_flag, - [370527] = 5, - ACTIONS(105), 1, + STATE(8947), 1, + sym_val_variable, + STATE(10036), 1, + sym__assignment_pattern_parenthesized_last, + STATE(10042), 1, + sym__variable_name, + [370530] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13141), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(11403), 1, + anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(2276), 1, + sym__command_name, STATE(8178), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [370547] = 6, + ACTIONS(11405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [370556] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13319), 1, + ACTIONS(13218), 1, + anon_sym_DOT2, + ACTIONS(13220), 1, + aux_sym_unquoted_token2, + ACTIONS(13344), 1, aux_sym__immediate_decimal_token1, STATE(8179), 1, sym_comment, - ACTIONS(2996), 2, + ACTIONS(949), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2998), 3, + ACTIONS(951), 2, ts_builtin_sym_end, anon_sym_LF, - anon_sym_DOT2, - [370569] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3058), 1, - anon_sym_DASH_DASH, - ACTIONS(13275), 1, - anon_sym_DASH, - ACTIONS(13321), 1, - anon_sym_in, - STATE(8180), 1, - sym_comment, - STATE(10713), 1, - sym_long_flag_equals_value, - STATE(11381), 1, - sym__flag, - STATE(10784), 2, - sym_short_flag, - sym_long_flag, - [370595] = 7, + [370580] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1033), 1, + ACTIONS(929), 1, anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(6112), 1, + STATE(6250), 1, sym_cell_path, - STATE(7150), 1, + STATE(7163), 1, sym_path, - STATE(8181), 1, + STATE(8180), 1, sym_comment, - ACTIONS(1035), 3, + ACTIONS(931), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [370619] = 7, + [370604] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(909), 1, - anon_sym_DASH, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(6240), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8182), 1, + ACTIONS(11403), 1, + anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(2277), 1, + sym__command_name, + STATE(8181), 1, sym_comment, - ACTIONS(911), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [370643] = 6, + ACTIONS(11405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [370630] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4433), 1, - sym_path, - STATE(8183), 1, + ACTIONS(4152), 1, + anon_sym_LF, + STATE(8182), 1, sym_comment, - STATE(8213), 1, - aux_sym_cell_path_repeat1, - ACTIONS(975), 2, + ACTIONS(4150), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(977), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - [370665] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8778), 1, - aux_sym_unquoted_token6, - STATE(8184), 1, - sym_comment, - ACTIONS(861), 2, - anon_sym_DASH, - sym_filesize_unit, - ACTIONS(863), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_duration_unit, - [370685] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13135), 1, - aux_sym__immediate_decimal_token2, - STATE(8185), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [370705] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3058), 1, anon_sym_DASH_DASH, - ACTIONS(13275), 1, anon_sym_DASH, - ACTIONS(13323), 1, - anon_sym_in, - STATE(8186), 1, - sym_comment, - STATE(10713), 1, - sym_long_flag_equals_value, - STATE(11350), 1, - sym__flag, - STATE(10784), 2, - sym_short_flag, - sym_long_flag, - [370731] = 5, + anon_sym_RBRACE, + [370648] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13325), 1, - anon_sym_DOT2, - STATE(8187), 1, - sym_comment, - ACTIONS(3911), 2, - ts_builtin_sym_end, + ACTIONS(4166), 1, anon_sym_LF, - ACTIONS(3909), 4, + STATE(8183), 1, + sym_comment, + ACTIONS(4164), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [370751] = 4, + anon_sym_RBRACE, + [370666] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4170), 1, anon_sym_LF, - STATE(8188), 1, + STATE(8184), 1, sym_comment, - ACTIONS(4307), 6, + ACTIONS(4168), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370769] = 4, + [370684] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(817), 1, + anon_sym_DOLLAR, + ACTIONS(13079), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13346), 1, + anon_sym_DOT2, + STATE(8185), 1, + sym_comment, + ACTIONS(815), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [370706] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, + ACTIONS(4174), 1, anon_sym_LF, - STATE(8189), 1, + STATE(8186), 1, sym_comment, - ACTIONS(1243), 6, + ACTIONS(4172), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370787] = 9, + [370724] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12228), 1, + ACTIONS(12388), 1, sym_identifier, - STATE(2402), 1, + STATE(2381), 1, sym__assignment_pattern, - STATE(7529), 1, + STATE(7451), 1, sym__var, - STATE(8190), 1, + STATE(8187), 1, sym_comment, - STATE(8977), 1, + STATE(8947), 1, sym_val_variable, - STATE(10059), 1, + STATE(9366), 1, sym__assignment_pattern_last, - STATE(10067), 1, + STATE(10164), 1, sym__variable_name, - [370815] = 5, + [370752] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13327), 1, - anon_sym_DOT2, - STATE(8191), 1, - sym_comment, - ACTIONS(3917), 2, - ts_builtin_sym_end, + ACTIONS(4178), 1, anon_sym_LF, - ACTIONS(3915), 4, + STATE(8188), 1, + sym_comment, + ACTIONS(4176), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [370835] = 4, + anon_sym_RBRACE, + [370770] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4313), 1, + ACTIONS(4186), 1, anon_sym_LF, - STATE(8192), 1, + STATE(8189), 1, sym_comment, - ACTIONS(4311), 6, + ACTIONS(4184), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [370853] = 5, + [370788] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13329), 1, - anon_sym_DOT2, - STATE(8193), 1, + ACTIONS(4199), 1, + anon_sym_LF, + STATE(8190), 1, sym_comment, - ACTIONS(3923), 2, - ts_builtin_sym_end, + ACTIONS(4197), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [370806] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4203), 1, anon_sym_LF, - ACTIONS(3921), 4, + STATE(8191), 1, + sym_comment, + ACTIONS(4201), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [370873] = 8, + anon_sym_RBRACE, + [370824] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12048), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12050), 1, - anon_sym_LBRACE, - STATE(5114), 1, + ACTIONS(12388), 1, + sym_identifier, + STATE(2394), 1, + sym__assignment_pattern, + STATE(7451), 1, sym__var, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, - STATE(8194), 1, + STATE(8192), 1, sym_comment, - STATE(1903), 2, - sym__blosure, + STATE(8947), 1, sym_val_variable, - [370899] = 5, - ACTIONS(105), 1, + STATE(9375), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [370852] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13331), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8193), 1, + sym_comment, + STATE(10783), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [370878] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13349), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13351), 1, + aux_sym__immediate_decimal_token2, + STATE(8194), 1, + sym_comment, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_LBRACE, anon_sym_DOT2, + sym_duration_unit, + [370900] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2415), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8195), 1, sym_comment, - ACTIONS(3929), 2, - ts_builtin_sym_end, + STATE(8947), 1, + sym_val_variable, + STATE(9378), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [370928] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4354), 1, anon_sym_LF, - ACTIONS(3927), 4, + STATE(8196), 1, + sym_comment, + ACTIONS(4352), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [370919] = 6, + anon_sym_RBRACE, + [370946] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, + ACTIONS(4366), 1, anon_sym_LF, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13333), 1, - anon_sym_DOT2, - STATE(8196), 1, + STATE(8197), 1, sym_comment, - ACTIONS(2996), 4, + ACTIONS(4364), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_RBRACE, - [370941] = 7, + [370964] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5949), 1, - sym_cell_path, - STATE(8197), 1, + ACTIONS(3891), 1, + anon_sym_LF, + STATE(8198), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(967), 2, + ACTIONS(3887), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(969), 2, - ts_builtin_sym_end, - anon_sym_LF, - [370965] = 8, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [370982] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(1736), 1, + sym__command_name, + STATE(1778), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(1814), 1, sym_val_string, - STATE(8198), 1, + STATE(8199), 1, sym_comment, - STATE(11101), 1, - sym__command_name, - ACTIONS(3152), 2, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [370991] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2426), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8199), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10004), 1, - sym__assignment_pattern_last, - STATE(10067), 1, - sym__variable_name, - [371019] = 5, + [371008] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13336), 1, + ACTIONS(3952), 1, anon_sym_DOT2, STATE(8200), 1, sym_comment, - ACTIONS(3937), 2, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3935), 4, + ACTIONS(2998), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [371039] = 5, - ACTIONS(105), 1, + [371028] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13338), 1, - anon_sym_DOT2, + ACTIONS(13353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13355), 1, + aux_sym__immediate_decimal_token2, STATE(8201), 1, sym_comment, - ACTIONS(3943), 2, - ts_builtin_sym_end, + ACTIONS(2998), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3000), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [371050] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4217), 1, anon_sym_LF, - ACTIONS(3941), 4, + STATE(8202), 1, + sym_comment, + ACTIONS(4215), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [371059] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2375), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8202), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10063), 1, - sym__assignment_pattern_last, - STATE(10067), 1, - sym__variable_name, - [371087] = 7, + anon_sym_RBRACE, + [371068] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13340), 1, - anon_sym_DOT2, - STATE(4401), 1, - sym_cell_path, - STATE(8140), 1, - sym_path, + ACTIONS(4233), 1, + anon_sym_LF, STATE(8203), 1, sym_comment, - ACTIONS(997), 2, + ACTIONS(4231), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(999), 2, - ts_builtin_sym_end, - anon_sym_LF, - [371111] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371086] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13343), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(13357), 1, + anon_sym_DOT2, STATE(8204), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [371131] = 7, + ACTIONS(3842), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3840), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [371106] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(13359), 1, anon_sym_DOT2, - STATE(6063), 1, - sym_cell_path, - STATE(7150), 1, + STATE(8114), 1, sym_path, STATE(8205), 1, sym_comment, - ACTIONS(973), 3, + STATE(8761), 1, + sym_cell_path, + ACTIONS(968), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [371155] = 4, + [371130] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4322), 1, + ACTIONS(4261), 1, anon_sym_LF, STATE(8206), 1, sym_comment, - ACTIONS(4320), 6, + ACTIONS(4259), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371148] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4291), 1, + anon_sym_LF, + STATE(8207), 1, + sym_comment, + ACTIONS(4289), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371173] = 8, + [371166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(2998), 1, + sym_cmd_identifier, + ACTIONS(13095), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13362), 1, + anon_sym_DOT2, + STATE(8208), 1, + sym_comment, + ACTIONS(3000), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [371188] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(1180), 1, + sym__command_name, + STATE(1778), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(1814), 1, sym_val_string, - STATE(8207), 1, + STATE(8209), 1, sym_comment, - STATE(9609), 1, - sym__command_name, - ACTIONS(3152), 2, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [371199] = 7, + [371214] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(6067), 1, - sym_cell_path, - STATE(7150), 1, + STATE(7259), 1, sym_path, - STATE(8208), 1, + STATE(8117), 1, + aux_sym_cell_path_repeat1, + STATE(8210), 1, sym_comment, - ACTIONS(969), 3, + ACTIONS(905), 4, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [371223] = 8, + anon_sym_RBRACE, + [371236] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13365), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13367), 1, + aux_sym__immediate_decimal_token2, + STATE(8211), 1, + sym_comment, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [371258] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(1999), 1, - sym__command_name, - STATE(2049), 1, - sym__str_double_quotes, - STATE(8209), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2426), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, + STATE(8212), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371249] = 8, + STATE(8947), 1, + sym_val_variable, + STATE(9572), 1, + sym__assignment_pattern_last, + STATE(10164), 1, + sym__variable_name, + [371286] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, - sym__str_double_quotes, - STATE(2019), 1, + STATE(1745), 1, sym__command_name, - STATE(8210), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(8213), 1, sym_comment, ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [371275] = 4, + [371312] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4046), 1, + ACTIONS(4313), 1, anon_sym_LF, - STATE(8211), 1, + STATE(8214), 1, sym_comment, - ACTIONS(4044), 6, + ACTIONS(4311), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371293] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13095), 1, - aux_sym__immediate_decimal_token2, - STATE(8212), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [371313] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13345), 1, - anon_sym_DOT2, - STATE(4433), 1, - sym_path, - ACTIONS(1015), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1017), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(8213), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [371335] = 4, + [371330] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4488), 1, + ACTIONS(4317), 1, anon_sym_LF, - STATE(8214), 1, + STATE(8215), 1, sym_comment, - ACTIONS(4486), 6, + ACTIONS(4315), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371353] = 4, + [371348] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(4492), 1, anon_sym_LF, - STATE(8215), 1, + STATE(8216), 1, sym_comment, - ACTIONS(4474), 6, + ACTIONS(4490), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371371] = 7, - ACTIONS(3), 1, + [371366] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH, - ACTIONS(10134), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - STATE(6127), 1, + STATE(5832), 1, sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8216), 1, - sym_comment, - ACTIONS(992), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [371395] = 4, - ACTIONS(3), 1, - anon_sym_POUND, STATE(8217), 1, sym_comment, - ACTIONS(861), 2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [371413] = 6, - ACTIONS(3), 1, + STATE(8271), 1, + sym_path, + ACTIONS(959), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(961), 2, + ts_builtin_sym_end, + anon_sym_LF, + [371390] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(13348), 1, - anon_sym_DOT2, + ACTIONS(4324), 1, + anon_sym_LF, STATE(8218), 1, sym_comment, - ACTIONS(863), 4, + ACTIONS(4322), 6, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - sym_duration_unit, - [371435] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371408] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2338), 1, - sym__command_name, + ACTIONS(4328), 1, + anon_sym_LF, STATE(8219), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371461] = 4, + ACTIONS(4326), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371426] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4472), 1, + ACTIONS(4370), 1, anon_sym_LF, STATE(8220), 1, sym_comment, - ACTIONS(4470), 6, + ACTIONS(4368), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371479] = 5, - ACTIONS(3), 1, + [371444] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13080), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4374), 1, + anon_sym_LF, STATE(8221), 1, sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 4, + ACTIONS(4372), 6, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [371499] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371462] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4468), 1, + ACTIONS(4378), 1, anon_sym_LF, STATE(8222), 1, sym_comment, - ACTIONS(4466), 6, + ACTIONS(4376), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371517] = 8, - ACTIONS(3), 1, + [371480] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2336), 1, - sym__command_name, + ACTIONS(4382), 1, + anon_sym_LF, STATE(8223), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371543] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(4380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_DASH, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(6220), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, + anon_sym_RBRACE, + [371498] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + anon_sym_LF, STATE(8224), 1, sym_comment, - ACTIONS(1003), 3, - anon_sym_DOLLAR, + ACTIONS(4386), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [371567] = 5, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [371516] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13350), 1, - sym_filesize_unit, - ACTIONS(13352), 1, - sym_duration_unit, + ACTIONS(4404), 1, + anon_sym_LF, STATE(8225), 1, sym_comment, - ACTIONS(1104), 5, - sym_cmd_identifier, + ACTIONS(4402), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [371587] = 8, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [371534] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(4418), 1, + anon_sym_LF, STATE(8226), 1, sym_comment, - STATE(10778), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371613] = 7, + ACTIONS(4416), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371552] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(6028), 1, - sym_cell_path, + ACTIONS(4422), 1, + anon_sym_LF, STATE(8227), 1, sym_comment, - STATE(8253), 1, - sym_path, - ACTIONS(971), 2, + ACTIONS(4420), 6, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(973), 2, - ts_builtin_sym_end, - anon_sym_LF, - [371637] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371570] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, - STATE(2288), 1, - sym__command_name, + ACTIONS(4426), 1, + anon_sym_LF, STATE(8228), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371663] = 6, + ACTIONS(4424), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371588] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(837), 1, - sym__entry_separator, - ACTIONS(13354), 1, - anon_sym_DOT2, - ACTIONS(13357), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4472), 1, + anon_sym_LF, STATE(8229), 1, sym_comment, - ACTIONS(835), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [371685] = 4, + ACTIONS(4470), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371606] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4460), 1, + ACTIONS(4488), 1, anon_sym_LF, STATE(8230), 1, sym_comment, - ACTIONS(4458), 6, + ACTIONS(4486), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371703] = 4, + [371624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4430), 1, + ACTIONS(4301), 1, anon_sym_LF, STATE(8231), 1, sym_comment, - ACTIONS(4428), 6, + ACTIONS(4299), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371721] = 8, - ACTIONS(3), 1, + [371642] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11931), 1, - anon_sym_DOLLAR, - ACTIONS(11935), 1, - anon_sym_LBRACE, - STATE(4871), 1, - sym__var, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, + ACTIONS(4062), 1, + anon_sym_LF, STATE(8232), 1, sym_comment, - STATE(1547), 2, - sym__blosure, - sym_val_variable, - [371747] = 4, + ACTIONS(4060), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371660] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4424), 1, + ACTIONS(4070), 1, anon_sym_LF, STATE(8233), 1, sym_comment, - ACTIONS(4422), 6, + ACTIONS(4068), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371765] = 4, + [371678] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(4074), 1, anon_sym_LF, STATE(8234), 1, sym_comment, - ACTIONS(4418), 6, + ACTIONS(4072), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [371783] = 8, - ACTIONS(3), 1, + [371696] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11403), 1, - anon_sym_DQUOTE, - ACTIONS(13254), 1, - sym_cmd_identifier, - STATE(1230), 1, - sym__command_name, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, - sym__str_double_quotes, + ACTIONS(4078), 1, + anon_sym_LF, STATE(8235), 1, sym_comment, - ACTIONS(11405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [371809] = 4, + ACTIONS(4076), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [371714] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13359), 1, - anon_sym_QMARK2, + ACTIONS(929), 1, + anon_sym_DASH, + ACTIONS(13213), 1, + anon_sym_DOT2, STATE(8236), 1, sym_comment, - ACTIONS(1056), 6, - sym_cmd_identifier, + STATE(8252), 1, + sym_path, + STATE(9401), 1, + sym_cell_path, + ACTIONS(931), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, + [371738] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11403), 1, anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(1215), 1, + sym__command_name, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(8237), 1, + sym_comment, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - [371827] = 4, + [371764] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4416), 1, - anon_sym_LF, - STATE(8237), 1, + ACTIONS(13285), 1, + anon_sym_DOT2, + STATE(5938), 1, + sym_cell_path, + STATE(8238), 1, sym_comment, - ACTIONS(4414), 6, + STATE(8271), 1, + sym_path, + ACTIONS(925), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [371845] = 6, - ACTIONS(105), 1, + ACTIONS(927), 2, + ts_builtin_sym_end, + anon_sym_LF, + [371788] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(13141), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13361), 1, - anon_sym_DOT2, - STATE(8238), 1, + ACTIONS(11403), 1, + anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(2251), 1, + sym__command_name, + STATE(8239), 1, sym_comment, - ACTIONS(807), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [371867] = 5, + ACTIONS(11405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [371814] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13074), 1, + ACTIONS(13369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13371), 1, aux_sym__immediate_decimal_token2, - STATE(8239), 1, + STATE(8240), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(2957), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2959), 3, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT2, - ACTIONS(807), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [371887] = 7, + [371836] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7718), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13373), 1, + aux_sym__immediate_decimal_token1, + STATE(8241), 1, + sym_comment, + ACTIONS(2957), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2959), 3, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_DOT2, + [371858] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1001), 1, + ACTIONS(933), 1, anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(13278), 1, anon_sym_DOT2, - STATE(8146), 1, - sym_path, - STATE(8240), 1, - sym_comment, - STATE(9667), 1, + STATE(5967), 1, sym_cell_path, - ACTIONS(1003), 3, - sym_identifier, + STATE(8242), 1, + sym_comment, + STATE(8312), 1, + sym_path, + ACTIONS(935), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [371911] = 4, + anon_sym_LBRACE, + [371882] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13359), 1, - anon_sym_QMARK2, - STATE(8241), 1, - sym_comment, - ACTIONS(1056), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(13247), 1, anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [371929] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5084), 1, - anon_sym_LF, - STATE(8242), 1, + STATE(7618), 1, + sym_cell_path, + STATE(8243), 1, sym_comment, - ACTIONS(5082), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [371947] = 8, + STATE(8312), 1, + sym_path, + ACTIONS(968), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [371906] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(1778), 1, sym__str_double_quotes, - STATE(1930), 1, + STATE(1814), 1, + sym_val_string, + STATE(1953), 1, sym__command_name, - STATE(8243), 1, + STATE(8244), 1, sym_comment, ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [371973] = 8, + [371932] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(1778), 1, sym__str_double_quotes, - STATE(1932), 1, + STATE(1814), 1, + sym_val_string, + STATE(1970), 1, sym__command_name, - STATE(8244), 1, + STATE(8245), 1, sym_comment, ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [371999] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LF, - STATE(8245), 1, - sym_comment, - ACTIONS(4410), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [372017] = 5, + [371958] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13066), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(973), 1, + anon_sym_DASH, + STATE(7169), 1, + aux_sym_cell_path_repeat1, + STATE(7259), 1, + sym_path, STATE(8246), 1, sym_comment, - ACTIONS(817), 2, + ACTIONS(975), 4, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT2, - ACTIONS(815), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [372037] = 6, + [371980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, + ACTIONS(3165), 1, sym_cmd_identifier, - ACTIONS(13267), 1, + ACTIONS(13252), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13364), 1, + ACTIONS(13375), 1, anon_sym_DOT2, STATE(8247), 1, sym_comment, - ACTIONS(3491), 4, + ACTIONS(3167), 4, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [372059] = 4, + [372002] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4400), 1, - anon_sym_LF, + ACTIONS(13378), 1, + sym_long_flag_identifier, STATE(8248), 1, sym_comment, - ACTIONS(4398), 6, + ACTIONS(3891), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3887), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [372077] = 7, + [372022] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(933), 1, anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(10176), 1, anon_sym_DOT2, - STATE(8146), 1, + STATE(5967), 1, + sym_cell_path, + STATE(7163), 1, sym_path, STATE(8249), 1, sym_comment, - STATE(9546), 1, - sym_cell_path, - ACTIONS(973), 3, - sym_identifier, + ACTIONS(935), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [372101] = 4, + anon_sym_LBRACE, + [372046] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4396), 1, - anon_sym_LF, + ACTIONS(13285), 1, + anon_sym_DOT2, + STATE(4455), 1, + sym_path, + STATE(8148), 1, + aux_sym_cell_path_repeat1, STATE(8250), 1, sym_comment, - ACTIONS(4394), 6, + ACTIONS(903), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [372119] = 5, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + [372070] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(11403), 1, + anon_sym_DQUOTE, + ACTIONS(13224), 1, sym_cmd_identifier, - ACTIONS(13366), 1, - aux_sym__immediate_decimal_token2, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(2262), 1, + sym__command_name, STATE(8251), 1, sym_comment, - ACTIONS(3836), 5, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - [372139] = 8, + [372096] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(903), 1, + anon_sym_DASH, + ACTIONS(13213), 1, + anon_sym_DOT2, + STATE(8168), 1, + aux_sym_cell_path_repeat1, + STATE(8252), 1, + sym_comment, + STATE(8805), 1, + sym_path, + ACTIONS(905), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [372120] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(7577), 1, - sym__command_name, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(8252), 1, + STATE(8253), 1, sym_comment, - ACTIONS(3152), 2, + STATE(10825), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [372165] = 7, + [372146] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - STATE(4433), 1, - sym_path, - STATE(8253), 1, + STATE(5961), 1, + sym_cell_path, + STATE(8254), 1, sym_comment, - STATE(8318), 1, - aux_sym_cell_path_repeat1, - ACTIONS(903), 2, + STATE(8271), 1, + sym_path, + ACTIONS(909), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(905), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - [372189] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8254), 1, - sym_comment, - ACTIONS(889), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [372207] = 7, - ACTIONS(3), 1, + [372170] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - ACTIONS(9689), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13230), 1, - anon_sym_DOT2, - ACTIONS(13234), 1, - aux_sym_unquoted_token2, + ACTIONS(4281), 1, + anon_sym_LF, STATE(8255), 1, sym_comment, - ACTIONS(1007), 3, - anon_sym_DOLLAR, + ACTIONS(4279), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [372231] = 5, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [372188] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(7157), 1, - aux_sym_cell_path_repeat1, - STATE(7241), 1, + ACTIONS(13380), 1, + anon_sym_DOT2, + STATE(5475), 1, + sym_cell_path, + STATE(8250), 1, sym_path, STATE(8256), 1, sym_comment, - ACTIONS(977), 5, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT2, - [372251] = 5, + ACTIONS(933), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(935), 2, + ts_builtin_sym_end, + anon_sym_LF, + [372212] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13368), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3784), 1, + anon_sym_DASH_DASH, + ACTIONS(13281), 1, + anon_sym_DASH, + ACTIONS(13383), 1, + anon_sym_in, STATE(8257), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOLLAR, - anon_sym_DOT2, - ACTIONS(844), 4, - sym_identifier, + STATE(10618), 1, + sym__flag, + STATE(10806), 1, + sym_long_flag_equals_value, + STATE(10695), 2, + sym_short_flag, + sym_long_flag, + [372238] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(877), 1, sym_filesize_unit, - sym_duration_unit, + ACTIONS(9514), 1, aux_sym_unquoted_token6, - [372271] = 4, - ACTIONS(105), 1, - anon_sym_POUND, + ACTIONS(13385), 1, + anon_sym_DOT2, STATE(8258), 1, sym_comment, - ACTIONS(2998), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2996), 4, - anon_sym_SEMI, + ACTIONS(879), 4, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [372289] = 6, + anon_sym_if, + anon_sym_EQ_GT, + sym_duration_unit, + [372260] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - sym_cmd_identifier, - ACTIONS(13084), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13370), 1, + ACTIONS(925), 1, + anon_sym_DASH, + ACTIONS(13213), 1, anon_sym_DOT2, + STATE(8252), 1, + sym_path, STATE(8259), 1, sym_comment, - ACTIONS(2998), 4, + STATE(9218), 1, + sym_cell_path, + ACTIONS(927), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + [372284] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11403), 1, anon_sym_DQUOTE, + ACTIONS(13224), 1, + sym_cmd_identifier, + STATE(2008), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym_val_string, + STATE(2223), 1, + sym__command_name, + STATE(8260), 1, + sym_comment, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - [372311] = 5, + [372310] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9539), 1, + ACTIONS(817), 1, + sym__entry_separator, + ACTIONS(13170), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13387), 1, anon_sym_DOT2, - STATE(8260), 1, + STATE(8261), 1, sym_comment, - ACTIONS(4015), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4013), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [372331] = 7, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [372332] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2400), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, + STATE(8262), 1, + sym_comment, + STATE(8947), 1, + sym_val_variable, + STATE(9873), 1, + sym__assignment_pattern_parenthesized_last, + STATE(10042), 1, + sym__variable_name, + [372360] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - STATE(4401), 1, + STATE(5868), 1, sym_cell_path, - STATE(8253), 1, - sym_path, - STATE(8261), 1, + STATE(8263), 1, sym_comment, - ACTIONS(997), 2, + STATE(8271), 1, + sym_path, + ACTIONS(929), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(999), 2, + ACTIONS(931), 2, ts_builtin_sym_end, anon_sym_LF, - [372355] = 6, + [372384] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13256), 1, - anon_sym_DOT2, - STATE(4660), 1, - sym_cell_path, - STATE(8262), 1, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + sym_cmd_identifier, + STATE(7148), 1, + sym__str_double_quotes, + STATE(7877), 1, + sym_val_string, + STATE(8264), 1, sym_comment, - STATE(8299), 1, - sym_path, - ACTIONS(981), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - [372377] = 6, + STATE(9532), 1, + sym__command_name, + ACTIONS(3043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [372410] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13170), 1, + aux_sym__immediate_decimal_token2, + STATE(8265), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [372430] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, + ACTIONS(2957), 1, sym_cmd_identifier, - ACTIONS(13372), 1, - anon_sym_DOT2, - ACTIONS(13376), 1, + ACTIONS(13138), 1, aux_sym__immediate_decimal_token2, - STATE(8263), 1, + STATE(8266), 1, sym_comment, - ACTIONS(3491), 4, + ACTIONS(2959), 5, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [372399] = 4, - ACTIONS(105), 1, + [372450] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8264), 1, + ACTIONS(973), 1, + anon_sym_DASH, + STATE(8131), 1, + aux_sym_cell_path_repeat1, + STATE(8267), 1, sym_comment, - ACTIONS(2988), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(2986), 4, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(8805), 1, + sym_path, + ACTIONS(975), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [372417] = 5, + anon_sym_DOT2, + [372472] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13378), 1, - aux_sym__immediate_decimal_token2, - STATE(8265), 1, - sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(3165), 1, + sym_cmd_identifier, + ACTIONS(13390), 1, anon_sym_DOT2, - sym_duration_unit, - [372437] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8266), 1, + ACTIONS(13394), 1, + aux_sym__immediate_decimal_token2, + STATE(8268), 1, sym_comment, - ACTIONS(3836), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3834), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3167), 4, anon_sym_DASH_DASH, - anon_sym_DASH, - [372455] = 8, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [372494] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12999), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(1731), 1, - sym_val_string, - STATE(1772), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(2014), 1, - sym__command_name, - STATE(8267), 1, + STATE(7877), 1, + sym_val_string, + STATE(8269), 1, sym_comment, - ACTIONS(11389), 2, + STATE(11261), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [372481] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8268), 1, - sym_comment, - ACTIONS(3890), 3, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_DOT2, - ACTIONS(3888), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [372499] = 6, + [372520] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(837), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(13380), 1, - anon_sym_DOT2, - ACTIONS(13383), 1, - aux_sym__immediate_decimal_token2, - STATE(8269), 1, - sym_comment, - ACTIONS(835), 4, + ACTIONS(12388), 1, sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [372521] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13385), 1, - anon_sym_DOT2, - ACTIONS(13388), 1, - aux_sym__immediate_decimal_token2, + STATE(2406), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, STATE(8270), 1, sym_comment, - ACTIONS(835), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - sym_duration_unit, - [372543] = 6, + STATE(8947), 1, + sym_val_variable, + STATE(9902), 1, + sym__assignment_pattern_parenthesized_last, + STATE(10042), 1, + sym__variable_name, + [372548] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(8302), 1, - sym_filesize_unit, - ACTIONS(8304), 1, - sym_duration_unit, + ACTIONS(13285), 1, + anon_sym_DOT2, + STATE(4455), 1, + sym_path, STATE(8271), 1, sym_comment, - ACTIONS(1102), 4, + STATE(8316), 1, + aux_sym_cell_path_repeat1, + ACTIONS(903), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [372565] = 7, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + [372572] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13390), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - ACTIONS(13392), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13394), 1, - aux_sym_unquoted_token2, + STATE(5990), 1, + sym_cell_path, + STATE(8271), 1, + sym_path, STATE(8272), 1, sym_comment, - ACTIONS(1005), 2, + ACTIONS(913), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1007), 2, + ACTIONS(915), 2, ts_builtin_sym_end, anon_sym_LF, - [372589] = 8, - ACTIONS(3), 1, + [372596] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(13396), 1, + anon_sym_DOT2, STATE(8273), 1, sym_comment, - STATE(10924), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [372615] = 6, + ACTIONS(3979), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3977), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [372616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13095), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13396), 1, - anon_sym_DOT2, + ACTIONS(12003), 1, + anon_sym_DOLLAR, + ACTIONS(12005), 1, + anon_sym_LBRACE, + STATE(4970), 1, + sym__var, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, STATE(8274), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - sym_duration_unit, - [372637] = 8, - ACTIONS(3), 1, + STATE(1873), 2, + sym__blosure, + sym_val_variable, + [372642] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(3931), 1, + anon_sym_LF, STATE(8275), 1, sym_comment, - STATE(9688), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [372663] = 9, + ACTIONS(3929), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_RBRACE, + [372660] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(13299), 1, - anon_sym_alias, - ACTIONS(13301), 1, - anon_sym_const, - ACTIONS(13303), 1, - anon_sym_def, - ACTIONS(13305), 1, - anon_sym_extern, - ACTIONS(13307), 1, - anon_sym_module, - ACTIONS(13309), 1, - anon_sym_use, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2381), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8276), 1, sym_comment, - [372691] = 4, - ACTIONS(105), 1, + STATE(8947), 1, + sym_val_variable, + STATE(9875), 1, + sym__assignment_pattern_last, + STATE(9886), 1, + sym__variable_name, + [372688] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4384), 1, - anon_sym_LF, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + ACTIONS(13007), 1, + sym_cmd_identifier, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(1954), 1, + sym__command_name, STATE(8277), 1, sym_comment, - ACTIONS(4382), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [372709] = 4, - ACTIONS(3), 1, + ACTIONS(11389), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [372714] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13022), 1, + aux_sym__immediate_decimal_token2, STATE(8278), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DASH_DASH, + ACTIONS(817), 2, anon_sym_DOT2, - ACTIONS(807), 5, - sym_identifier, - anon_sym_DASH, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token6, - [372727] = 7, + [372734] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_DASH, - ACTIONS(13213), 1, - anon_sym_DOT2, - STATE(8163), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2394), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8279), 1, sym_comment, - STATE(9173), 1, + STATE(8947), 1, + sym_val_variable, + STATE(9886), 1, + sym__variable_name, + STATE(10016), 1, + sym__assignment_pattern_last, + [372762] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(4742), 1, + sym_cell_path, + STATE(7163), 1, sym_path, - ACTIONS(905), 3, - sym_identifier, + STATE(8280), 1, + sym_comment, + ACTIONS(961), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [372751] = 4, + anon_sym_LBRACE, + [372784] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4380), 1, - anon_sym_LF, - STATE(8280), 1, - sym_comment, - ACTIONS(4378), 6, + ACTIONS(13398), 1, + anon_sym_DOT2, + STATE(4455), 1, + sym_path, + ACTIONS(942), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [372769] = 4, + ACTIONS(944), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(8281), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [372806] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4376), 1, + ACTIONS(1253), 1, anon_sym_LF, - STATE(8281), 1, + STATE(8282), 1, sym_comment, - ACTIONS(4374), 6, + ACTIONS(1251), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [372787] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13251), 1, - anon_sym_DOT2, - STATE(7597), 1, - sym_cell_path, - STATE(8282), 1, - sym_comment, - STATE(8299), 1, - sym_path, - ACTIONS(999), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - [372809] = 4, + [372824] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4372), 1, + ACTIONS(4297), 1, anon_sym_LF, STATE(8283), 1, sym_comment, - ACTIONS(4370), 6, + ACTIONS(4295), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_RBRACE, - [372827] = 7, + [372842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH, - ACTIONS(13213), 1, - anon_sym_DOT2, - STATE(8146), 1, - sym_path, + ACTIONS(3804), 1, + sym_cmd_identifier, + ACTIONS(13401), 1, + aux_sym__immediate_decimal_token2, STATE(8284), 1, sym_comment, - STATE(9547), 1, - sym_cell_path, - ACTIONS(969), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(3806), 5, anon_sym_DASH_DASH, - [372851] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(809), 1, - sym__entry_separator, - ACTIONS(13159), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13399), 1, anon_sym_DOT2, - STATE(8285), 1, - sym_comment, - ACTIONS(807), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [372873] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [372862] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13159), 1, + ACTIONS(13403), 1, aux_sym__immediate_decimal_token2, - STATE(8286), 1, + STATE(8285), 1, sym_comment, - ACTIONS(809), 2, + ACTIONS(857), 2, anon_sym_DOT2, sym__entry_separator, - ACTIONS(807), 4, + ACTIONS(855), 4, anon_sym_RBRACK, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token7, - [372893] = 8, + [372882] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11403), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(13254), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(1996), 1, - sym__command_name, - STATE(2049), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(8287), 1, + STATE(7877), 1, + sym_val_string, + STATE(8286), 1, sym_comment, - ACTIONS(11405), 2, + STATE(10319), 1, + sym__command_name, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [372919] = 6, - ACTIONS(3), 1, + [372908] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13402), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13404), 1, + ACTIONS(7629), 1, aux_sym__immediate_decimal_token2, - STATE(8288), 1, + ACTIONS(13405), 1, + aux_sym__immediate_decimal_token1, + STATE(8287), 1, sym_comment, - ACTIONS(2986), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2988), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3000), 3, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_DOT2, - [372941] = 4, - ACTIONS(3), 1, + [372930] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13285), 1, + anon_sym_DOT2, + STATE(5992), 1, + sym_cell_path, + STATE(8271), 1, + sym_path, + STATE(8288), 1, + sym_comment, + ACTIONS(917), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(919), 2, + ts_builtin_sym_end, + anon_sym_LF, + [372954] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2597), 1, + aux_sym_unquoted_token6, STATE(8289), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DASH_DASH, - anon_sym_DOT2, - ACTIONS(815), 5, - sym_identifier, - anon_sym_DASH, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 4, + anon_sym_SEMI, + anon_sym_PIPE, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [372959] = 4, + [372974] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(8290), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DASH_DASH, - anon_sym_DOT2, - ACTIONS(844), 5, - sym_identifier, - anon_sym_DASH, + ACTIONS(855), 2, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - [372977] = 6, + ACTIONS(857), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [372992] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(809), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR, - ACTIONS(13074), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13406), 1, - anon_sym_DOT2, + ACTIONS(11945), 1, + anon_sym_LBRACE, + STATE(4740), 1, + sym__var, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, STATE(8291), 1, sym_comment, - ACTIONS(807), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [372999] = 8, + STATE(1575), 2, + sym__blosure, + sym_val_variable, + [373018] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, - anon_sym_DQUOTE, - ACTIONS(12109), 1, - sym_cmd_identifier, - STATE(7146), 1, - sym__str_double_quotes, - STATE(7888), 1, - sym_val_string, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2378), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, STATE(8292), 1, sym_comment, - STATE(9724), 1, - sym__command_name, - ACTIONS(3152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [373025] = 6, - ACTIONS(3), 1, + STATE(8947), 1, + sym_val_variable, + STATE(9992), 1, + sym__assignment_pattern_parenthesized_last, + STATE(10042), 1, + sym__variable_name, + [373046] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(4836), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, + ACTIONS(4305), 1, + anon_sym_LF, STATE(8293), 1, sym_comment, - ACTIONS(1003), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [373047] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13409), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13411), 1, - aux_sym__immediate_decimal_token2, - STATE(8294), 1, - sym_comment, - ACTIONS(2996), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 3, - anon_sym_DOLLAR, + ACTIONS(4303), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DOT2, - [373069] = 6, + anon_sym_DASH, + anon_sym_RBRACE, + [373064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + ACTIONS(13007), 1, sym_cmd_identifier, - ACTIONS(13084), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13413), 1, - anon_sym_DOT2, - STATE(8295), 1, + STATE(1778), 1, + sym__str_double_quotes, + STATE(1814), 1, + sym_val_string, + STATE(1976), 1, + sym__command_name, + STATE(8294), 1, sym_comment, - ACTIONS(2998), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [373091] = 8, + [373090] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(1778), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(1814), 1, sym_val_string, - STATE(8296), 1, - sym_comment, - STATE(9624), 1, + STATE(1977), 1, sym__command_name, - ACTIONS(3152), 2, + STATE(8295), 1, + sym_comment, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [373117] = 6, - ACTIONS(3), 1, + [373116] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(4250), 1, + anon_sym_LF, + STATE(8296), 1, + sym_comment, + ACTIONS(4248), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_DASH, - ACTIONS(9535), 1, + anon_sym_DASH, + anon_sym_RBRACE, + [373134] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_LF, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13407), 1, anon_sym_DOT2, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, STATE(8297), 1, sym_comment, - ACTIONS(861), 4, - sym_identifier, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - [373139] = 8, + ACTIONS(2998), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [373156] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(11403), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(13224), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(2008), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(2136), 1, sym_val_string, + STATE(2294), 1, + sym__command_name, STATE(8298), 1, sym_comment, - STATE(11401), 1, - sym__command_name, - ACTIONS(3152), 2, + ACTIONS(11405), 2, sym__str_single_quotes, sym__str_back_ticks, - [373165] = 6, - ACTIONS(3), 1, + [373182] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(8256), 1, - aux_sym_cell_path_repeat1, + ACTIONS(13033), 1, + aux_sym__immediate_decimal_token2, STATE(8299), 1, sym_comment, - ACTIONS(905), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - [373187] = 7, - ACTIONS(3), 1, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [373202] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH, - ACTIONS(13213), 1, + ACTIONS(13410), 1, anon_sym_DOT2, - STATE(8146), 1, - sym_path, STATE(8300), 1, sym_comment, - STATE(9570), 1, - sym_cell_path, - ACTIONS(992), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(3905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3903), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - [373211] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2413), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8301), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9905), 1, - sym__assignment_pattern_parenthesized_last, - STATE(10098), 1, - sym__variable_name, - [373239] = 8, + anon_sym_DASH, + [373222] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11403), 1, + ACTIONS(3286), 1, anon_sym_DQUOTE, - ACTIONS(13254), 1, + ACTIONS(13412), 1, sym_cmd_identifier, - STATE(1956), 1, - sym_val_string, - STATE(2049), 1, + STATE(7123), 1, sym__str_double_quotes, - STATE(2239), 1, + STATE(7602), 1, + sym_val_string, + STATE(7698), 1, sym__command_name, - STATE(8302), 1, + STATE(8301), 1, sym_comment, - ACTIONS(11405), 2, + ACTIONS(3288), 2, sym__str_single_quotes, sym__str_back_ticks, - [373265] = 6, + [373248] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3784), 1, + anon_sym_DASH_DASH, + ACTIONS(13281), 1, + anon_sym_DASH, + ACTIONS(13414), 1, + anon_sym_in, + STATE(8302), 1, + sym_comment, + STATE(10806), 1, + sym_long_flag_equals_value, + STATE(11348), 1, + sym__flag, + STATE(10695), 2, + sym_short_flag, + sym_long_flag, + [373274] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, + ACTIONS(3784), 1, + anon_sym_DASH_DASH, + ACTIONS(13281), 1, anon_sym_DASH, ACTIONS(13416), 1, + anon_sym_in, + STATE(8303), 1, + sym_comment, + STATE(10806), 1, + sym_long_flag_equals_value, + STATE(11356), 1, + sym__flag, + STATE(10695), 2, + sym_short_flag, + sym_long_flag, + [373300] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(913), 1, + anon_sym_DASH, + ACTIONS(13213), 1, anon_sym_DOT2, - STATE(9173), 1, + STATE(8252), 1, sym_path, - STATE(8303), 2, + STATE(8304), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 3, + STATE(9661), 1, + sym_cell_path, + ACTIONS(915), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [373287] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2387), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8304), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(9994), 1, - sym__assignment_pattern_last, - STATE(10067), 1, - sym__variable_name, - [373315] = 4, - ACTIONS(3), 1, + [373324] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4859), 1, + anon_sym_LF, STATE(8305), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_DASH_DASH, - anon_sym_DOT2, - ACTIONS(889), 5, - sym_identifier, - anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [373333] = 8, + ACTIONS(4857), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [373342] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, STATE(8306), 1, sym_comment, - STATE(10975), 1, + STATE(10332), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [373359] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13419), 1, - anon_sym_EQ, - STATE(8307), 1, - sym_comment, - ACTIONS(4011), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4007), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373379] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13244), 1, - anon_sym_DOT2, - STATE(5653), 1, - sym_cell_path, - STATE(8253), 1, - sym_path, - STATE(8308), 1, - sym_comment, - ACTIONS(979), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(981), 2, - ts_builtin_sym_end, - anon_sym_LF, - [373403] = 8, + [373368] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(11387), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(13007), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(1778), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(1814), 1, sym_val_string, - STATE(8309), 1, - sym_comment, - STATE(10891), 1, + STATE(1987), 1, sym__command_name, - ACTIONS(3152), 2, + STATE(8307), 1, + sym_comment, + ACTIONS(11389), 2, sym__str_single_quotes, sym__str_back_ticks, - [373429] = 5, + [373394] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - sym_cmd_identifier, - ACTIONS(13084), 1, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(13304), 1, + anon_sym_alias, + ACTIONS(13306), 1, + anon_sym_const, + ACTIONS(13308), 1, + anon_sym_def, + ACTIONS(13310), 1, + anon_sym_extern, + ACTIONS(13312), 1, + anon_sym_module, + ACTIONS(13314), 1, + anon_sym_use, + STATE(8308), 1, + sym_comment, + [373422] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(848), 1, + sym__entry_separator, + ACTIONS(13418), 1, + anon_sym_DOT2, + ACTIONS(13421), 1, aux_sym__immediate_decimal_token2, + STATE(8309), 1, + sym_comment, + ACTIONS(846), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [373444] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(949), 1, + anon_sym_DASH, + ACTIONS(13292), 1, + anon_sym_DOT2, + ACTIONS(13294), 1, + aux_sym_unquoted_token2, + ACTIONS(13423), 1, + aux_sym__immediate_decimal_token1, STATE(8310), 1, sym_comment, - ACTIONS(2998), 5, + ACTIONS(951), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [373449] = 4, + anon_sym_LBRACE, + [373468] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, - anon_sym_LF, + ACTIONS(13425), 1, + anon_sym_DOT2, STATE(8311), 1, sym_comment, - ACTIONS(4386), 6, + ACTIONS(3911), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3909), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, - [373467] = 6, - ACTIONS(105), 1, + [373488] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_LF, - ACTIONS(7650), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13421), 1, + ACTIONS(903), 1, + anon_sym_DASH, + ACTIONS(10176), 1, anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(8246), 1, + aux_sym_cell_path_repeat1, STATE(8312), 1, sym_comment, - ACTIONS(3489), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [373489] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_LF, - STATE(8313), 1, - sym_comment, - ACTIONS(4390), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(905), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_RBRACE, - [373507] = 8, + anon_sym_LBRACE, + [373512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(12109), 1, + ACTIONS(12407), 1, sym_cmd_identifier, - STATE(7146), 1, + STATE(7148), 1, sym__str_double_quotes, - STATE(7888), 1, + STATE(7877), 1, sym_val_string, - STATE(8314), 1, + STATE(8313), 1, sym_comment, - STATE(10390), 1, + STATE(10809), 1, sym__command_name, - ACTIONS(3152), 2, + ACTIONS(3043), 2, sym__str_single_quotes, sym__str_back_ticks, - [373533] = 5, + [373538] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - sym_cmd_identifier, - ACTIONS(13054), 1, + ACTIONS(13044), 1, aux_sym__immediate_decimal_token2, - STATE(8315), 1, + STATE(8314), 1, sym_comment, - ACTIONS(2988), 5, - anon_sym_DASH_DASH, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [373553] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3040), 1, - anon_sym_DQUOTE, - ACTIONS(13425), 1, - sym_cmd_identifier, - STATE(7131), 1, - sym__str_double_quotes, - STATE(7561), 1, - sym_val_string, - STATE(7577), 1, - sym__command_name, - STATE(8316), 1, - sym_comment, - ACTIONS(3042), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [373579] = 7, + sym_duration_unit, + [373558] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9444), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13390), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - ACTIONS(13394), 1, - aux_sym_unquoted_token2, - STATE(8317), 1, + STATE(5475), 1, + sym_cell_path, + STATE(8271), 1, + sym_path, + STATE(8315), 1, sym_comment, - ACTIONS(1005), 2, + ACTIONS(933), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1007), 2, + ACTIONS(935), 2, ts_builtin_sym_end, anon_sym_LF, - [373603] = 7, + [373582] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13244), 1, + ACTIONS(13285), 1, anon_sym_DOT2, - STATE(4433), 1, + STATE(4455), 1, sym_path, - STATE(8213), 1, + STATE(8281), 1, aux_sym_cell_path_repeat1, - STATE(8318), 1, + STATE(8316), 1, sym_comment, - ACTIONS(975), 2, + ACTIONS(973), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(977), 2, + ACTIONS(975), 2, + ts_builtin_sym_end, + anon_sym_LF, + [373606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(879), 1, + anon_sym_DASH_DASH, + ACTIONS(9495), 1, + anon_sym_DOT2, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(8317), 1, + sym_comment, + ACTIONS(877), 4, + sym_identifier, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + [373628] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8443), 1, + aux_sym_unquoted_token3, + STATE(8318), 1, + sym_comment, + ACTIONS(829), 2, ts_builtin_sym_end, anon_sym_LF, - [373627] = 7, + ACTIONS(827), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [373648] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, @@ -553481,2157 +553523,2133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE2, STATE(8319), 1, sym_comment, - STATE(8505), 1, + STATE(8434), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [373650] = 4, - ACTIONS(105), 1, + [373671] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(8320), 1, sym_comment, - ACTIONS(4140), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4138), 4, - anon_sym_SEMI, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 4, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373667] = 4, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [373688] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(2071), 1, + sym__terminator, STATE(8321), 1, sym_comment, - ACTIONS(4124), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4122), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373684] = 4, - ACTIONS(105), 1, + STATE(8422), 1, + aux_sym__block_body_repeat1, + ACTIONS(13433), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [373711] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13437), 1, + anon_sym_COMMA, STATE(8322), 1, sym_comment, - ACTIONS(4144), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4142), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373701] = 4, + ACTIONS(13435), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [373728] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8323), 1, sym_comment, - ACTIONS(4148), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4146), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373718] = 4, - ACTIONS(105), 1, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [373745] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13342), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13439), 1, + anon_sym_DOT2, STATE(8324), 1, sym_comment, - ACTIONS(4160), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4158), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373735] = 4, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 2, + anon_sym_in, + sym_duration_unit, + [373766] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13442), 1, + anon_sym_DQUOTE2, STATE(8325), 1, sym_comment, - ACTIONS(4170), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4168), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373752] = 4, + STATE(8342), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [373789] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13444), 1, + anon_sym_DQUOTE2, STATE(8326), 1, sym_comment, - ACTIONS(4174), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4172), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373769] = 4, - ACTIONS(105), 1, + STATE(8331), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [373812] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13342), 1, + aux_sym__immediate_decimal_token2, STATE(8327), 1, sym_comment, - ACTIONS(4136), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4134), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373786] = 4, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [373831] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8328), 1, sym_comment, - ACTIONS(4128), 2, + ACTIONS(4382), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4126), 4, + ACTIONS(4380), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [373803] = 4, - ACTIONS(105), 1, + [373848] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13446), 1, + anon_sym_EQ, STATE(8329), 1, sym_comment, - ACTIONS(4178), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4176), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3946), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - [373820] = 4, - ACTIONS(105), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [373865] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13450), 1, + anon_sym_COMMA, STATE(8330), 1, sym_comment, - ACTIONS(4192), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4190), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373837] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8331), 1, - sym_comment, - ACTIONS(4196), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4194), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373854] = 7, + ACTIONS(13448), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [373882] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13433), 1, + ACTIONS(13452), 1, anon_sym_DQUOTE2, - STATE(8332), 1, + STATE(8331), 1, sym_comment, - STATE(8336), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [373877] = 4, + [373905] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(8333), 1, - sym_comment, - ACTIONS(4202), 2, - ts_builtin_sym_end, + ACTIONS(1056), 1, anon_sym_LF, - ACTIONS(4200), 4, + ACTIONS(1299), 1, + anon_sym_DOT2, + STATE(8332), 1, + sym_comment, + ACTIONS(1054), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373894] = 5, + anon_sym_RBRACE, + [373924] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8333), 1, + sym_comment, + ACTIONS(894), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [373941] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13437), 1, - anon_sym_LF, - ACTIONS(13439), 1, - anon_sym_catch, STATE(8334), 1, sym_comment, - ACTIONS(13435), 4, + ACTIONS(4336), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4334), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [373913] = 7, + anon_sym_DASH_DASH, + anon_sym_DASH, + [373958] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13441), 1, + ACTIONS(13454), 1, anon_sym_DQUOTE2, STATE(8335), 1, sym_comment, - STATE(8574), 1, + STATE(8460), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [373936] = 7, - ACTIONS(105), 1, + [373981] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13443), 1, - anon_sym_DQUOTE2, + ACTIONS(951), 1, + anon_sym_DASH_DASH, + ACTIONS(13456), 1, + anon_sym_DOT2, + ACTIONS(13458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13460), 1, + aux_sym_unquoted_token2, STATE(8336), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [373959] = 4, - ACTIONS(105), 1, + ACTIONS(949), 2, + sym_identifier, + anon_sym_DASH, + [374004] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(8337), 1, sym_comment, - ACTIONS(4120), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4118), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373976] = 4, + ACTIONS(817), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(815), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [374021] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7870), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13462), 1, + anon_sym_DOT2, STATE(8338), 1, sym_comment, - ACTIONS(4222), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4220), 4, + ACTIONS(3165), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [373993] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8339), 1, - sym_comment, - ACTIONS(4226), 2, + ACTIONS(3167), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4224), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374010] = 4, + [374042] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8340), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13465), 1, + anon_sym_DQUOTE2, + STATE(8339), 1, sym_comment, - ACTIONS(4230), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4228), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374027] = 4, - ACTIONS(105), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374065] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8341), 1, - sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 4, - anon_sym_RBRACK, - sym_filesize_unit, + ACTIONS(1054), 1, + anon_sym_DASH, + ACTIONS(9948), 1, sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [374044] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8342), 1, + ACTIONS(13467), 1, + sym_filesize_unit, + STATE(8340), 1, sym_comment, - ACTIONS(4238), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4236), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(1056), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [374061] = 4, + anon_sym_LBRACE, + [374086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13445), 1, - anon_sym_DOT2, - STATE(8343), 1, + STATE(8341), 1, sym_comment, - ACTIONS(3943), 5, + ACTIONS(1211), 6, sym_cmd_identifier, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374078] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8344), 1, - sym_comment, - ACTIONS(4242), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4240), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374095] = 4, + [374101] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8345), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13469), 1, + anon_sym_DQUOTE2, + STATE(8342), 1, sym_comment, - ACTIONS(4246), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4244), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374112] = 5, - ACTIONS(105), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374124] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4011), 1, - anon_sym_LF, - ACTIONS(13447), 1, - anon_sym_EQ, - STATE(8346), 1, + STATE(8343), 1, sym_comment, - ACTIONS(4007), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(855), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 4, anon_sym_PIPE, - anon_sym_RBRACE, - [374131] = 4, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [374141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13449), 1, + STATE(8344), 1, + sym_comment, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT2, - STATE(8347), 1, + sym_duration_unit, + [374158] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8345), 1, sym_comment, - ACTIONS(3937), 5, + ACTIONS(1215), 6, sym_cmd_identifier, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374148] = 4, - ACTIONS(105), 1, + [374173] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8348), 1, + ACTIONS(13308), 1, + anon_sym_def, + ACTIONS(13310), 1, + anon_sym_extern, + ACTIONS(13312), 1, + anon_sym_module, + ACTIONS(13314), 1, + anon_sym_use, + ACTIONS(13471), 1, + anon_sym_alias, + ACTIONS(13473), 1, + anon_sym_const, + STATE(8346), 1, sym_comment, - ACTIONS(4116), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4114), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374165] = 7, + [374198] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13451), 1, + ACTIONS(13475), 1, anon_sym_DQUOTE2, - STATE(8349), 1, + STATE(8347), 1, sym_comment, - STATE(8574), 1, + STATE(8351), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374188] = 4, + [374221] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8350), 1, + STATE(8348), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4258), 4, + ACTIONS(4086), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374205] = 4, + [374238] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8351), 1, + STATE(8349), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4392), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4269), 4, + ACTIONS(4390), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374222] = 4, + [374255] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(8352), 1, - sym_comment, - ACTIONS(4297), 2, - ts_builtin_sym_end, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13479), 1, anon_sym_LF, - ACTIONS(4295), 4, + STATE(4233), 1, + aux_sym_pipe_element_repeat1, + STATE(8350), 1, + sym_comment, + ACTIONS(13477), 3, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374239] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [374276] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8353), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13482), 1, + anon_sym_DQUOTE2, + STATE(8351), 1, sym_comment, - ACTIONS(4301), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4299), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374256] = 4, - ACTIONS(105), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8354), 1, + STATE(8352), 1, sym_comment, - ACTIONS(4305), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4303), 4, - anon_sym_SEMI, + ACTIONS(894), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 4, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374273] = 4, - ACTIONS(105), 1, + anon_sym_EQ_GT, + anon_sym_DOT2, + sym_duration_unit, + [374316] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8355), 1, + STATE(8353), 1, sym_comment, - ACTIONS(4309), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4307), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(2959), 6, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - [374290] = 4, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [374331] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8356), 1, + STATE(8354), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(3931), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4311), 4, + ACTIONS(3929), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374307] = 4, + [374348] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8357), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13484), 1, + anon_sym_DQUOTE2, + STATE(8355), 1, sym_comment, - ACTIONS(4322), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4320), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [374324] = 4, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374371] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8358), 1, + STATE(8356), 1, sym_comment, - ACTIONS(4046), 2, + ACTIONS(4092), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4044), 4, + ACTIONS(4090), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374341] = 4, + [374388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13453), 1, - anon_sym_DOT2, - STATE(8359), 1, + STATE(8357), 1, sym_comment, - ACTIONS(3929), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [374358] = 4, + ACTIONS(809), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(807), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [374405] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13455), 1, + ACTIONS(13486), 1, anon_sym_DOT2, - STATE(8360), 1, + STATE(8358), 1, sym_comment, - ACTIONS(3923), 5, + ACTIONS(4038), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374375] = 7, + [374422] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13457), 1, - anon_sym_DQUOTE2, - STATE(8349), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8361), 1, + STATE(8359), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [374398] = 7, - ACTIONS(105), 1, + ACTIONS(4388), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4386), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [374439] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13459), 1, - anon_sym_DQUOTE2, - STATE(8362), 1, + ACTIONS(13351), 1, + aux_sym__immediate_decimal_token2, + STATE(8360), 1, sym_comment, - STATE(8364), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [374421] = 4, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [374458] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8363), 1, + STATE(8361), 1, sym_comment, - ACTIONS(4488), 2, + ACTIONS(4261), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4486), 4, + ACTIONS(4259), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374438] = 7, + [374475] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2390), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, + STATE(8362), 1, + sym_comment, + STATE(8947), 1, + sym_val_variable, + STATE(10038), 1, + sym__variable_name, + [374500] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2400), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, + STATE(8363), 1, + sym_comment, + STATE(8947), 1, + sym_val_variable, + STATE(10038), 1, + sym__variable_name, + [374525] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13461), 1, + ACTIONS(13488), 1, anon_sym_DQUOTE2, STATE(8364), 1, sym_comment, - STATE(8574), 1, + STATE(8564), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374461] = 6, - ACTIONS(3), 1, + [374548] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13463), 1, - anon_sym_DOT2, - ACTIONS(13465), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13467), 1, - aux_sym_unquoted_token2, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(2071), 1, + sym__terminator, STATE(8365), 1, sym_comment, - ACTIONS(1007), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [374482] = 4, + STATE(8483), 1, + aux_sym__block_body_repeat1, + ACTIONS(13490), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [374571] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8366), 1, sym_comment, - ACTIONS(4420), 2, + ACTIONS(4291), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4418), 4, + ACTIONS(4289), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374499] = 4, + [374588] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13494), 1, + anon_sym_LF, + STATE(4385), 1, + aux_sym_pipe_element_repeat1, + STATE(8367), 1, + sym_comment, + ACTIONS(13492), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [374609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13469), 1, + ACTIONS(13497), 1, anon_sym_DOT2, - STATE(8367), 1, + STATE(8368), 1, sym_comment, - ACTIONS(3917), 5, + ACTIONS(3979), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374516] = 4, + [374626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13471), 1, + ACTIONS(9643), 1, anon_sym_DOT2, - STATE(8368), 1, + STATE(8369), 1, sym_comment, - ACTIONS(3911), 5, + ACTIONS(1056), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374533] = 5, + [374643] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3911), 1, - anon_sym_LF, - ACTIONS(13473), 1, - anon_sym_DOT2, - STATE(8369), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13499), 1, + anon_sym_DQUOTE2, + STATE(8370), 1, sym_comment, - ACTIONS(3909), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [374552] = 5, + STATE(8375), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374666] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3917), 1, - anon_sym_LF, - ACTIONS(13475), 1, + ACTIONS(7839), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13501), 1, anon_sym_DOT2, - STATE(8370), 1, + STATE(8371), 1, sym_comment, - ACTIONS(3915), 4, + ACTIONS(3165), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [374571] = 4, + ACTIONS(3167), 2, + ts_builtin_sym_end, + anon_sym_LF, + [374687] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8371), 1, + STATE(8372), 1, sym_comment, - ACTIONS(4472), 2, + ACTIONS(4250), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4470), 4, + ACTIONS(4248), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374588] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3923), 1, - anon_sym_LF, - ACTIONS(13477), 1, - anon_sym_DOT2, - STATE(8372), 1, - sym_comment, - ACTIONS(3921), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [374607] = 5, + [374704] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_LF, - ACTIONS(13479), 1, - anon_sym_DOT2, STATE(8373), 1, sym_comment, - ACTIONS(3927), 4, + ACTIONS(4257), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4255), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [374626] = 6, + anon_sym_DASH_DASH, + anon_sym_DASH, + [374721] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7822), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13481), 1, - anon_sym_DOT2, STATE(8374), 1, sym_comment, - ACTIONS(3489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [374647] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8375), 1, - sym_comment, - ACTIONS(4107), 2, + ACTIONS(3891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4105), 4, + ACTIONS(3887), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374664] = 5, + [374738] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1104), 1, - anon_sym_LF, - ACTIONS(1373), 1, - anon_sym_DOT2, - STATE(8376), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13505), 1, + anon_sym_DQUOTE2, + STATE(8375), 1, sym_comment, - ACTIONS(1102), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [374683] = 4, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374761] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13507), 1, + anon_sym_DQUOTE2, + STATE(8376), 1, + sym_comment, + STATE(8381), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374784] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13509), 1, + anon_sym_DOT2, STATE(8377), 1, sym_comment, - ACTIONS(4468), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4466), 4, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(4028), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DASH, - [374700] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [374801] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13485), 1, + ACTIONS(13511), 1, anon_sym_DQUOTE2, STATE(8378), 1, sym_comment, - STATE(8574), 1, + STATE(8386), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374723] = 5, - ACTIONS(105), 1, + [374824] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3937), 1, - anon_sym_LF, - ACTIONS(13487), 1, - anon_sym_DOT2, STATE(8379), 1, sym_comment, - ACTIONS(3935), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [374742] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1223), 6, + sym_cmd_identifier, anon_sym_DASH_DASH, - ACTIONS(10001), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13489), 1, anon_sym_DOT2, - ACTIONS(13491), 1, - aux_sym_unquoted_token2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [374839] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(8380), 1, sym_comment, - ACTIONS(1005), 2, - sym_identifier, - anon_sym_DASH, - [374765] = 5, + ACTIONS(857), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(855), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [374856] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, - anon_sym_LF, - ACTIONS(13493), 1, - anon_sym_DOT2, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13513), 1, + anon_sym_DQUOTE2, STATE(8381), 1, sym_comment, - ACTIONS(3941), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [374784] = 4, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13495), 1, - anon_sym_EQ, + ACTIONS(13515), 1, + anon_sym_DOT2, STATE(8382), 1, sym_comment, - ACTIONS(4011), 5, + ACTIONS(3842), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [374801] = 4, + [374896] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13517), 1, + anon_sym_DQUOTE2, STATE(8383), 1, sym_comment, - ACTIONS(4460), 2, + STATE(8392), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [374919] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8384), 1, + sym_comment, + ACTIONS(4404), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4458), 4, + ACTIONS(4402), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374818] = 4, + [374936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9593), 1, + ACTIONS(12317), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13519), 1, anon_sym_DOT2, - STATE(8384), 1, + STATE(8385), 1, sym_comment, - ACTIONS(4015), 5, - sym_cmd_identifier, + ACTIONS(3165), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3167), 2, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [374835] = 7, + [374957] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13497), 1, + ACTIONS(13521), 1, anon_sym_DQUOTE2, - STATE(8378), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8385), 1, + STATE(8386), 1, sym_comment, - STATE(9800), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374858] = 4, + [374980] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8386), 1, + STATE(8387), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(4418), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4474), 4, + ACTIONS(4416), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [374875] = 7, + [374997] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13367), 1, + aux_sym__immediate_decimal_token2, + STATE(8388), 1, + sym_comment, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [375016] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8389), 1, + sym_comment, + ACTIONS(13523), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [375031] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(9550), 1, + anon_sym_DOT2, + STATE(8390), 1, + sym_comment, + ACTIONS(879), 3, + anon_sym_DOLLAR, + anon_sym_LBRACE, + sym_duration_unit, + [375052] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(1927), 1, - sym__terminator, - STATE(8387), 1, + ACTIONS(13525), 1, + anon_sym_DOT2, + ACTIONS(13527), 1, + anon_sym_LPAREN2, + ACTIONS(13529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13531), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13533), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13535), 1, + sym_short_flag_identifier, + STATE(8391), 1, sym_comment, - STATE(8547), 1, - aux_sym__block_body_repeat1, - ACTIONS(13499), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [374898] = 7, + [375077] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13501), 1, + ACTIONS(13537), 1, anon_sym_DQUOTE2, - STATE(8388), 1, + STATE(8392), 1, sym_comment, - STATE(8391), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374921] = 7, + [375100] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8393), 1, + sym_comment, + ACTIONS(4422), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4420), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [375117] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13539), 1, + anon_sym_DOT2, + STATE(8394), 1, + sym_comment, + ACTIONS(3905), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [375134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13541), 1, + anon_sym_DOT2, + STATE(8395), 1, + sym_comment, + ACTIONS(3911), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [375151] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7629), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13543), 1, + anon_sym_DOT2, + STATE(8396), 1, + sym_comment, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3000), 2, + ts_builtin_sym_end, + anon_sym_LF, + [375172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8397), 1, + sym_comment, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [375189] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13503), 1, + ACTIONS(13545), 1, anon_sym_DQUOTE2, - STATE(8389), 1, + STATE(8398), 1, sym_comment, - STATE(8574), 1, + STATE(8400), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374944] = 7, + [375212] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13505), 1, + ACTIONS(13547), 1, anon_sym_DQUOTE2, - STATE(8389), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8390), 1, + STATE(8399), 1, sym_comment, - STATE(9800), 1, + STATE(8420), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374967] = 7, + [375235] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13507), 1, + ACTIONS(13549), 1, anon_sym_DQUOTE2, - STATE(8391), 1, + STATE(8400), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [374990] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9593), 1, - anon_sym_DOT2, - STATE(8392), 1, - sym_comment, - ACTIONS(1104), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [375007] = 4, + [375258] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(8393), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, + ACTIONS(879), 1, sym__entry_separator, - ACTIONS(815), 4, + ACTIONS(9964), 1, + aux_sym__unquoted_in_list_token7, + ACTIONS(13551), 1, + anon_sym_DOT2, + STATE(8401), 1, + sym_comment, + ACTIONS(877), 3, anon_sym_RBRACK, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [375024] = 6, - ACTIONS(3), 1, + [375279] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13509), 1, - anon_sym_DOT2, - ACTIONS(13513), 1, - aux_sym__immediate_decimal_token2, - STATE(8394), 1, + STATE(8402), 1, sym_comment, - ACTIONS(3489), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(3491), 2, - anon_sym_DOLLAR, + ACTIONS(4281), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4279), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - [375045] = 7, + anon_sym_DASH, + [375296] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13515), 1, + ACTIONS(13553), 1, anon_sym_DQUOTE2, - STATE(8395), 1, + STATE(8403), 1, sym_comment, - STATE(8574), 1, + STATE(8405), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375068] = 7, + [375319] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8404), 1, + sym_comment, + ACTIONS(4426), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4424), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [375336] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13517), 1, + ACTIONS(13555), 1, anon_sym_DQUOTE2, - STATE(8395), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8396), 1, + STATE(8405), 1, sym_comment, - STATE(9800), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375091] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, - STATE(8397), 1, - sym_comment, - ACTIONS(13499), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [375114] = 6, + [375359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_DASH, - ACTIONS(13519), 1, + ACTIONS(13557), 1, sym_filesize_unit, - ACTIONS(13521), 1, + ACTIONS(13559), 1, sym_duration_unit, - STATE(8398), 1, - sym_comment, - ACTIONS(1104), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [375135] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13523), 1, - aux_sym__immediate_decimal_token2, - STATE(8399), 1, + STATE(8406), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(1056), 3, sym_identifier, - anon_sym_DASH, - ACTIONS(3836), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT2, - [375154] = 5, + [375380] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13404), 1, - aux_sym__immediate_decimal_token2, - STATE(8400), 1, - sym_comment, - ACTIONS(2986), 2, - sym_identifier, + ACTIONS(1070), 1, anon_sym_DASH, - ACTIONS(2988), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [375173] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13411), 1, - aux_sym__immediate_decimal_token2, - STATE(8401), 1, + ACTIONS(13561), 1, + anon_sym_QMARK2, + STATE(8407), 1, sym_comment, - ACTIONS(2996), 2, + ACTIONS(1072), 4, sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT2, - [375192] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DASH, - ACTIONS(13525), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - ACTIONS(1017), 2, - anon_sym_DASH_DASH, - anon_sym_in, - STATE(8402), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [375213] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13530), 1, - anon_sym_LF, - ACTIONS(13532), 1, - anon_sym_else, - STATE(8403), 1, - sym_comment, - ACTIONS(13528), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [375232] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13303), 1, - anon_sym_def, - ACTIONS(13305), 1, - anon_sym_extern, - ACTIONS(13307), 1, - anon_sym_module, - ACTIONS(13309), 1, - anon_sym_use, - ACTIONS(13534), 1, - anon_sym_alias, - ACTIONS(13536), 1, - anon_sym_const, - STATE(8404), 1, - sym_comment, - [375257] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3947), 1, - sym_cmd_identifier, - ACTIONS(13538), 1, - sym_long_flag_identifier, - STATE(8405), 1, - sym_comment, - ACTIONS(3951), 4, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [375276] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH, - ACTIONS(13540), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(8402), 1, - aux_sym_cell_path_repeat1, - STATE(8406), 1, - sym_comment, - ACTIONS(977), 2, - anon_sym_DASH_DASH, - anon_sym_in, - [375299] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(903), 1, - anon_sym_DASH, - ACTIONS(13540), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(8406), 1, - aux_sym_cell_path_repeat1, - STATE(8407), 1, - sym_comment, - ACTIONS(905), 2, - anon_sym_DASH_DASH, - anon_sym_in, - [375322] = 7, + [375399] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13542), 1, + ACTIONS(13563), 1, anon_sym_DQUOTE2, STATE(8408), 1, sym_comment, - STATE(8574), 1, + STATE(8409), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375345] = 5, + [375422] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1373), 1, - anon_sym_DOT2, - ACTIONS(4015), 1, - anon_sym_LF, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13565), 1, + anon_sym_DQUOTE2, STATE(8409), 1, sym_comment, - ACTIONS(4013), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [375364] = 7, - ACTIONS(3), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375445] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(997), 1, - anon_sym_DASH, - ACTIONS(13540), 1, - anon_sym_DOT2, - STATE(7597), 1, - sym_cell_path, - STATE(8407), 1, - sym_path, STATE(8410), 1, sym_comment, - ACTIONS(999), 2, + ACTIONS(4414), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4412), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_in, - [375387] = 4, - ACTIONS(105), 1, + anon_sym_DASH, + [375462] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(8411), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(4034), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [375404] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [375477] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13544), 1, + ACTIONS(13567), 1, anon_sym_DQUOTE2, STATE(8412), 1, sym_comment, - STATE(8415), 1, + STATE(8413), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375427] = 7, + [375500] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13546), 1, + ACTIONS(13569), 1, anon_sym_DQUOTE2, STATE(8413), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375450] = 7, + [375523] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13548), 1, + ACTIONS(13571), 1, anon_sym_DQUOTE2, - STATE(8413), 1, - aux_sym__inter_double_quotes_repeat1, STATE(8414), 1, sym_comment, - STATE(9800), 1, + STATE(8415), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375473] = 7, + [375546] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13550), 1, + ACTIONS(13573), 1, anon_sym_DQUOTE2, STATE(8415), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375496] = 8, + [375569] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13552), 1, - anon_sym_DOT2, - ACTIONS(13554), 1, - anon_sym_LPAREN2, - ACTIONS(13556), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13558), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(13560), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(13562), 1, - sym_short_flag_identifier, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13575), 1, + anon_sym_DQUOTE2, STATE(8416), 1, sym_comment, - [375521] = 6, + STATE(8418), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375592] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(13566), 1, - anon_sym_LF, - STATE(4276), 1, - aux_sym_pipe_element_repeat1, STATE(8417), 1, sym_comment, - ACTIONS(13564), 3, + ACTIONS(4152), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4150), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [375542] = 6, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [375609] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(13571), 1, - anon_sym_LF, - STATE(4229), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13577), 1, + anon_sym_DQUOTE2, STATE(8418), 1, sym_comment, - ACTIONS(13569), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [375563] = 7, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375632] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(1927), 1, - sym__terminator, - STATE(8397), 1, - aux_sym__block_body_repeat1, + ACTIONS(13579), 1, + anon_sym_DOT2, + ACTIONS(13581), 1, + anon_sym_LPAREN2, + ACTIONS(13583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13585), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13587), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13589), 1, + sym_short_flag_identifier, STATE(8419), 1, sym_comment, - ACTIONS(13574), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [375586] = 7, + [375657] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13576), 1, + ACTIONS(13591), 1, anon_sym_DQUOTE2, - STATE(8408), 1, - aux_sym__inter_double_quotes_repeat1, STATE(8420), 1, sym_comment, - STATE(9800), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375609] = 5, + [375680] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2415), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8421), 1, sym_comment, - ACTIONS(863), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - sym_duration_unit, - [375628] = 6, + STATE(8947), 1, + sym_val_variable, + STATE(10044), 1, + sym__variable_name, + [375705] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9356), 1, - aux_sym_unquoted_token6, - ACTIONS(9662), 1, - anon_sym_DOT2, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(1665), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, STATE(8422), 1, sym_comment, - ACTIONS(861), 3, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - [375649] = 7, - ACTIONS(105), 1, + ACTIONS(13593), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [375728] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13578), 1, - anon_sym_DQUOTE2, + ACTIONS(13355), 1, + aux_sym__immediate_decimal_token2, STATE(8423), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [375672] = 4, + ACTIONS(2998), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3000), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [375747] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8424), 1, sym_comment, - ACTIONS(4338), 2, + ACTIONS(4297), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4336), 4, + ACTIONS(4295), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [375689] = 7, + [375764] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13580), 1, + ACTIONS(13595), 1, anon_sym_DQUOTE2, - STATE(8423), 1, - aux_sym__inter_double_quotes_repeat1, STATE(8425), 1, sym_comment, - STATE(9800), 1, + STATE(8426), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375712] = 6, + [375787] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9930), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(13582), 1, - anon_sym_DOT2, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13597), 1, + anon_sym_DQUOTE2, STATE(8426), 1, sym_comment, - ACTIONS(861), 3, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - [375733] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(10061), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13584), 1, - aux_sym__immediate_decimal_token1, - STATE(8427), 1, - sym_comment, - ACTIONS(2996), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(2998), 2, - anon_sym_DOT2, - sym__entry_separator, - [375754] = 6, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13586), 1, - anon_sym_DOT2, - ACTIONS(13589), 1, - aux_sym__immediate_decimal_token2, - STATE(8428), 1, + ACTIONS(1070), 1, + anon_sym_DASH, + ACTIONS(13561), 1, + anon_sym_QMARK2, + STATE(8427), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(1072), 4, sym_identifier, - anon_sym_DASH, - ACTIONS(3491), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [375775] = 4, + anon_sym_DOT2, + [375829] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8429), 1, + STATE(8428), 1, sym_comment, - ACTIONS(4354), 2, + ACTIONS(4408), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4352), 4, + ACTIONS(4406), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [375792] = 3, - ACTIONS(3), 1, + [375846] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8430), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13599), 1, + anon_sym_DQUOTE2, + STATE(8429), 1, sym_comment, - ACTIONS(1254), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [375807] = 6, - ACTIONS(3), 1, + STATE(8430), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375869] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13411), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13591), 1, - anon_sym_DOT2, - STATE(8431), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13601), 1, + anon_sym_DQUOTE2, + STATE(8430), 1, sym_comment, - ACTIONS(2996), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [375828] = 7, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [375892] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13594), 1, + ACTIONS(13603), 1, anon_sym_DQUOTE2, - STATE(8432), 1, + STATE(8431), 1, sym_comment, - STATE(8438), 1, + STATE(8445), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375851] = 4, + [375915] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8433), 1, + STATE(8432), 1, sym_comment, - ACTIONS(4430), 2, + ACTIONS(4354), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4428), 4, + ACTIONS(4352), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [375868] = 4, + [375932] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8434), 1, + STATE(8433), 1, sym_comment, - ACTIONS(4424), 2, + ACTIONS(4332), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4422), 4, + ACTIONS(4330), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [375885] = 7, + [375949] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13596), 1, + ACTIONS(13605), 1, anon_sym_DQUOTE2, - STATE(8435), 1, + STATE(8434), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [375908] = 8, + [375972] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13598), 1, - anon_sym_DOT2, - ACTIONS(13600), 1, - anon_sym_LPAREN2, - ACTIONS(13602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13604), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(13606), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(13608), 1, - sym_short_flag_identifier, + STATE(8435), 1, + sym_comment, + ACTIONS(4366), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4364), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [375989] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(8436), 1, sym_comment, - [375933] = 7, - ACTIONS(105), 1, + ACTIONS(857), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(855), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [376006] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13610), 1, - anon_sym_DQUOTE2, - STATE(8435), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(13304), 1, + anon_sym_alias, + ACTIONS(13306), 1, + anon_sym_const, + ACTIONS(13308), 1, + anon_sym_def, + ACTIONS(13310), 1, + anon_sym_extern, + ACTIONS(13312), 1, + anon_sym_module, + ACTIONS(13314), 1, + anon_sym_use, STATE(8437), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [375956] = 7, - ACTIONS(105), 1, + [376031] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13612), 1, - anon_sym_DQUOTE2, + ACTIONS(12038), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13607), 1, + anon_sym_DOT2, STATE(8438), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [375979] = 4, + ACTIONS(2998), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3000), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [376052] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8439), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token7, - [375996] = 6, + ACTIONS(4457), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4455), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376069] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10080), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13614), 1, - aux_sym__immediate_decimal_token1, STATE(8440), 1, sym_comment, - ACTIONS(2986), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(2988), 2, - anon_sym_DOT2, - sym__entry_separator, - [376017] = 4, - ACTIONS(105), 1, + ACTIONS(4265), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4263), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376086] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(8441), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(807), 4, - anon_sym_RBRACK, + ACTIONS(855), 2, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - [376034] = 4, + ACTIONS(857), 4, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [376103] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8442), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4166), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4414), 4, + ACTIONS(4164), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376051] = 4, + [376120] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8443), 1, sym_comment, - ACTIONS(4412), 2, + ACTIONS(4472), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4410), 4, + ACTIONS(4470), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376068] = 6, - ACTIONS(3), 1, + [376137] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(13348), 1, - anon_sym_DOT2, STATE(8444), 1, sym_comment, - ACTIONS(863), 3, + ACTIONS(4170), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4168), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - sym_duration_unit, - [376089] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376154] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(11977), 1, - anon_sym_DOLLAR, - ACTIONS(13616), 1, - sym_identifier, - STATE(1506), 1, - sym__var, - STATE(2066), 1, - sym__variable_name, - STATE(2107), 1, - sym_val_variable, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13609), 1, + anon_sym_DQUOTE2, STATE(8445), 1, sym_comment, - [376114] = 4, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [376177] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8446), 1, sym_comment, - ACTIONS(4408), 2, + ACTIONS(4174), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4406), 4, + ACTIONS(4172), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376131] = 7, + [376194] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13618), 1, + ACTIONS(13611), 1, anon_sym_DQUOTE2, STATE(8447), 1, sym_comment, - STATE(8465), 1, + STATE(8458), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376154] = 4, + [376217] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4038), 1, + anon_sym_LF, + ACTIONS(13613), 1, + anon_sym_DOT2, STATE(8448), 1, sym_comment, - ACTIONS(817), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(815), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [376171] = 6, - ACTIONS(3), 1, + ACTIONS(4036), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [376236] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4543), 1, - sym_path, STATE(8449), 1, sym_comment, - STATE(10014), 1, - sym_cell_path, - ACTIONS(10260), 3, + ACTIONS(4340), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4338), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [376192] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376253] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(8450), 1, sym_comment, - ACTIONS(846), 2, - anon_sym_DOT2, - sym__entry_separator, - ACTIONS(844), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [376209] = 8, + ACTIONS(4313), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4311), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376270] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13606), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(13608), 1, - sym_short_flag_identifier, - ACTIONS(13620), 1, + ACTIONS(3842), 1, + anon_sym_LF, + ACTIONS(13615), 1, anon_sym_DOT2, - ACTIONS(13622), 1, - anon_sym_LPAREN2, - ACTIONS(13624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13626), 1, - aux_sym__immediate_decimal_token3, STATE(8451), 1, sym_comment, - [376234] = 4, - ACTIONS(105), 1, + ACTIONS(3840), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [376289] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(8452), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(1219), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DOT2, - sym__entry_separator, - ACTIONS(889), 4, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [376251] = 6, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [376304] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_DOLLAR, - ACTIONS(9535), 1, - anon_sym_DOT2, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, STATE(8453), 1, sym_comment, - ACTIONS(861), 3, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - [376272] = 7, + ACTIONS(4217), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4215), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376321] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13628), 1, + ACTIONS(13617), 1, anon_sym_DQUOTE2, STATE(8454), 1, sym_comment, - STATE(8574), 1, + STATE(8459), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376295] = 7, + [376344] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13630), 1, + ACTIONS(13619), 1, anon_sym_DQUOTE2, - STATE(8454), 1, - aux_sym__inter_double_quotes_repeat1, STATE(8455), 1, sym_comment, - STATE(9800), 1, + STATE(8480), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376318] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2413), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8456), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10013), 1, - sym__variable_name, - [376343] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_DOT2, - STATE(4543), 1, - sym_path, - STATE(8457), 1, - sym_comment, - STATE(10032), 1, - sym_cell_path, - ACTIONS(10334), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [376364] = 4, + [376367] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8458), 1, + STATE(8456), 1, sym_comment, - ACTIONS(4400), 2, + ACTIONS(4317), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4398), 4, + ACTIONS(4315), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13634), 1, - anon_sym_COMMA, - STATE(8459), 1, - sym_comment, - ACTIONS(13632), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [376398] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_LF, - ACTIONS(13636), 1, - sym_long_flag_identifier, - STATE(8460), 1, - sym_comment, - ACTIONS(3947), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [376417] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(11541), 1, - aux_sym_unquoted_token3, - STATE(8461), 1, - sym_comment, - ACTIONS(823), 2, - sym_cmd_identifier, - anon_sym_DASH_DASH, - ACTIONS(825), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [376436] = 4, + [376384] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8462), 1, + ACTIONS(13621), 1, + aux_sym__immediate_decimal_token2, + STATE(8457), 1, sym_comment, - ACTIONS(809), 2, - anon_sym_DOLLAR, - anon_sym_DOT2, - ACTIONS(807), 4, - sym_identifier, + ACTIONS(855), 2, sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token6, - [376453] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8463), 1, - sym_comment, - ACTIONS(817), 2, - anon_sym_DOLLAR, + ACTIONS(857), 3, + anon_sym_LBRACE, anon_sym_DOT2, - ACTIONS(815), 4, - sym_identifier, - sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [376470] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8464), 1, - sym_comment, - ACTIONS(4396), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4394), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [376487] = 7, + [376403] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13638), 1, + ACTIONS(13623), 1, anon_sym_DQUOTE2, - STATE(8465), 1, + STATE(8458), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376510] = 7, + [376426] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13640), 1, + ACTIONS(13625), 1, anon_sym_DQUOTE2, - STATE(8466), 1, + STATE(8459), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376533] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13644), 1, - anon_sym_COMMA, - STATE(8467), 1, - sym_comment, - ACTIONS(13642), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [376550] = 7, + [376449] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13646), 1, + ACTIONS(13627), 1, anon_sym_DQUOTE2, - STATE(8468), 1, + STATE(8460), 1, sym_comment, - STATE(8474), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, + [376472] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8461), 1, + sym_comment, + ACTIONS(4178), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4176), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376489] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8462), 1, + sym_comment, + ACTIONS(4464), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4462), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [376506] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2406), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, + sym__var, + STATE(8463), 1, + sym_comment, + STATE(8947), 1, + sym_val_variable, + STATE(10038), 1, + sym__variable_name, + [376531] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8464), 1, + sym_comment, + ACTIONS(896), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(894), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [376548] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13533), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13535), 1, + sym_short_flag_identifier, + ACTIONS(13629), 1, + anon_sym_DOT2, + ACTIONS(13631), 1, + anon_sym_LPAREN2, + ACTIONS(13633), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13635), 1, + aux_sym__immediate_decimal_token3, + STATE(8465), 1, + sym_comment, [376573] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13648), 1, + ACTIONS(13637), 1, anon_sym_DQUOTE2, - STATE(8469), 1, + STATE(8466), 1, sym_comment, - STATE(8574), 1, + STATE(8471), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, @@ -555639,30302 +555657,30326 @@ static const uint16_t ts_small_parse_table[] = { [376596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8470), 1, - sym_comment, - ACTIONS(846), 2, - anon_sym_DOLLAR, + ACTIONS(9643), 1, anon_sym_DOT2, - ACTIONS(844), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [376613] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8471), 1, + STATE(8467), 1, sym_comment, - ACTIONS(1261), 6, + ACTIONS(3931), 5, sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [376628] = 7, + [376613] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13650), 1, - anon_sym_DQUOTE2, - STATE(8469), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8472), 1, + ACTIONS(3891), 1, + anon_sym_LF, + ACTIONS(13639), 1, + sym_long_flag_identifier, + STATE(8468), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [376651] = 4, + ACTIONS(3887), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [376632] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8473), 1, + ACTIONS(13371), 1, + aux_sym__immediate_decimal_token2, + STATE(8469), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(2957), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2959), 3, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT2, - ACTIONS(889), 4, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, + [376651] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8470), 1, + sym_comment, + ACTIONS(4186), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4184), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, [376668] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13652), 1, + ACTIONS(13641), 1, anon_sym_DQUOTE2, - STATE(8474), 1, + STATE(8471), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376691] = 4, + [376691] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(8475), 1, + ACTIONS(3905), 1, + anon_sym_LF, + ACTIONS(13643), 1, + anon_sym_DOT2, + STATE(8472), 1, sym_comment, - ACTIONS(4015), 2, - ts_builtin_sym_end, + ACTIONS(3903), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [376710] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3911), 1, anon_sym_LF, - ACTIONS(4013), 4, + ACTIONS(13645), 1, + anon_sym_DOT2, + STATE(8473), 1, + sym_comment, + ACTIONS(3909), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [376708] = 8, + anon_sym_RBRACE, + [376729] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(6032), 1, anon_sym_COLON, - ACTIONS(11977), 1, + ACTIONS(11979), 1, anon_sym_DOLLAR, - ACTIONS(13616), 1, + ACTIONS(13647), 1, sym_identifier, - STATE(1506), 1, + STATE(1469), 1, sym__var, - STATE(2066), 1, + STATE(1971), 1, sym__variable_name, - STATE(2107), 1, + STATE(1996), 1, sym_val_variable, + STATE(8474), 1, + sym_comment, + [376754] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13651), 1, + anon_sym_COMMA, + STATE(8475), 1, + sym_comment, + ACTIONS(13649), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [376771] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(13385), 1, + anon_sym_DOT2, STATE(8476), 1, sym_comment, - [376733] = 4, - ACTIONS(105), 1, + ACTIONS(879), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + sym_duration_unit, + [376792] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13653), 1, + aux_sym__immediate_decimal_token2, STATE(8477), 1, sym_comment, - ACTIONS(4330), 2, + ACTIONS(3804), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3806), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [376811] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(951), 1, + anon_sym_DASH_DASH, + ACTIONS(9870), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13456), 1, + anon_sym_DOT2, + ACTIONS(13460), 1, + aux_sym_unquoted_token2, + STATE(8478), 1, + sym_comment, + ACTIONS(949), 2, + sym_identifier, + anon_sym_DASH, + [376834] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8479), 1, + sym_comment, + ACTIONS(4488), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4328), 4, + ACTIONS(4486), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376750] = 7, + [376851] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13654), 1, + ACTIONS(13655), 1, anon_sym_DQUOTE2, - STATE(8478), 1, + STATE(8480), 1, sym_comment, - STATE(8497), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [376773] = 6, - ACTIONS(105), 1, + [376874] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13656), 1, + ACTIONS(8360), 1, anon_sym_DOT2, - STATE(8479), 1, + STATE(4522), 1, + sym_path, + STATE(8481), 1, sym_comment, - ACTIONS(2996), 2, - anon_sym_SEMI, + STATE(10117), 1, + sym_cell_path, + ACTIONS(10243), 3, anon_sym_PIPE, - ACTIONS(2998), 2, - ts_builtin_sym_end, - anon_sym_LF, - [376794] = 6, + anon_sym_if, + anon_sym_EQ_GT, + [376895] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12254), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13658), 1, - anon_sym_DOT2, - STATE(8480), 1, + ACTIONS(13657), 1, + anon_sym_alias, + ACTIONS(13659), 1, + anon_sym_const, + ACTIONS(13661), 1, + anon_sym_def, + ACTIONS(13663), 1, + anon_sym_extern, + ACTIONS(13665), 1, + anon_sym_module, + ACTIONS(13667), 1, + anon_sym_use, + STATE(8482), 1, sym_comment, - ACTIONS(3489), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(3491), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [376815] = 4, + [376920] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8481), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(1665), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, + STATE(8483), 1, + sym_comment, + ACTIONS(13433), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [376943] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8484), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4301), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4332), 4, + ACTIONS(4299), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376832] = 8, + [376960] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13669), 1, + anon_sym_DQUOTE2, + STATE(8339), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8485), 1, + sym_comment, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [376983] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8486), 1, + sym_comment, + ACTIONS(809), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [377000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2387), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8482), 1, + STATE(8487), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10091), 1, - sym__variable_name, - [376857] = 4, + ACTIONS(1187), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [377015] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8483), 1, + STATE(8488), 1, + sym_comment, + ACTIONS(4859), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4857), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_else, + anon_sym_catch, + [377032] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8489), 1, sym_comment, - ACTIONS(3951), 2, + ACTIONS(4062), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3947), 4, + ACTIONS(4060), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376874] = 4, + [377049] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8484), 1, + STATE(8490), 1, sym_comment, - ACTIONS(4342), 2, + ACTIONS(4492), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4340), 4, + ACTIONS(4490), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376891] = 6, - ACTIONS(3), 1, + [377066] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12019), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13660), 1, - anon_sym_DOT2, - STATE(8485), 1, + STATE(8491), 1, sym_comment, - ACTIONS(2996), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2998), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [376912] = 4, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token7, + [377083] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(8486), 1, + ACTIONS(7870), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13671), 1, + anon_sym_DOT2, + STATE(8492), 1, sym_comment, - ACTIONS(4360), 2, + ACTIONS(3165), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3167), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4358), 4, + [377104] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13673), 1, + anon_sym_DOT2, + ACTIONS(13676), 1, + aux_sym__immediate_decimal_token2, + STATE(8493), 1, + sym_comment, + ACTIONS(846), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 2, + anon_sym_LBRACE, + sym_duration_unit, + [377125] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13678), 1, + anon_sym_DQUOTE2, + STATE(8494), 1, + sym_comment, + STATE(8500), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [377148] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8392), 1, + sym_filesize_unit, + ACTIONS(8394), 1, + sym_duration_unit, + STATE(8495), 1, + sym_comment, + ACTIONS(1054), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [376929] = 4, + ACTIONS(1056), 2, + ts_builtin_sym_end, + anon_sym_LF, + [377169] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13308), 1, + anon_sym_def, + ACTIONS(13310), 1, + anon_sym_extern, + ACTIONS(13312), 1, + anon_sym_module, + ACTIONS(13314), 1, + anon_sym_use, + ACTIONS(13680), 1, + anon_sym_alias, + ACTIONS(13682), 1, + anon_sym_const, + STATE(8496), 1, + sym_comment, + [377194] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8487), 1, + STATE(8497), 1, sym_comment, - ACTIONS(4364), 2, + ACTIONS(4396), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4362), 4, + ACTIONS(4394), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [376946] = 4, - ACTIONS(3), 1, + [377211] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1113), 1, - anon_sym_DASH, - STATE(8488), 1, + ACTIONS(10021), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13684), 1, + aux_sym__immediate_decimal_token1, + STATE(8498), 1, sym_comment, - ACTIONS(1115), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2998), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(3000), 2, anon_sym_DOT2, - anon_sym_QMARK2, - [376963] = 4, + sym__entry_separator, + [377232] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1098), 1, - anon_sym_DASH, - STATE(8489), 1, - sym_comment, - ACTIONS(1100), 5, - sym_identifier, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(11979), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_QMARK2, - [376980] = 7, + ACTIONS(13647), 1, + sym_identifier, + STATE(1469), 1, + sym__var, + STATE(1971), 1, + sym__variable_name, + STATE(1996), 1, + sym_val_variable, + STATE(8499), 1, + sym_comment, + [377257] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13662), 1, + ACTIONS(13686), 1, anon_sym_DQUOTE2, - STATE(8490), 1, + STATE(8500), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377003] = 7, + [377280] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2381), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, + STATE(8501), 1, + sym_comment, + STATE(8947), 1, + sym_val_variable, + STATE(10044), 1, + sym__variable_name, + [377305] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13688), 1, + anon_sym_DOT2, + ACTIONS(13690), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13692), 1, + aux_sym_unquoted_token2, + STATE(8502), 1, + sym_comment, + ACTIONS(951), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [377326] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8503), 1, + sym_comment, + ACTIONS(4305), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4303), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [377343] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8504), 1, + sym_comment, + ACTIONS(896), 2, + anon_sym_DOLLAR, + anon_sym_DOT2, + ACTIONS(894), 4, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token6, + [377360] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13664), 1, + ACTIONS(13694), 1, anon_sym_DQUOTE2, - STATE(8490), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8491), 1, + STATE(8505), 1, sym_comment, - STATE(9800), 1, + STATE(8512), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377026] = 5, - ACTIONS(3), 1, + [377383] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_DASH_DASH, - ACTIONS(9537), 1, + STATE(8506), 1, + sym_comment, + ACTIONS(817), 2, + anon_sym_DOT2, + sym__entry_separator, + ACTIONS(815), 4, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token6, - STATE(8492), 1, + [377400] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13329), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13696), 1, + anon_sym_DOT2, + STATE(8507), 1, sym_comment, - ACTIONS(861), 4, - sym_identifier, - anon_sym_DASH, + ACTIONS(815), 2, sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 2, + anon_sym_LBRACE, sym_duration_unit, - [377045] = 4, + [377421] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(8493), 1, + ACTIONS(13701), 1, + anon_sym_LF, + ACTIONS(13703), 1, + anon_sym_catch, + STATE(8508), 1, sym_comment, - ACTIONS(4388), 2, + ACTIONS(13699), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [377440] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8509), 1, + sym_comment, + ACTIONS(4324), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4386), 4, + ACTIONS(4322), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [377457] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8510), 1, + sym_comment, + ACTIONS(4070), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4068), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [377062] = 7, + [377474] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8360), 1, + anon_sym_DOT2, + STATE(4522), 1, + sym_path, + STATE(8511), 1, + sym_comment, + STATE(10102), 1, + sym_cell_path, + ACTIONS(10274), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [377495] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13666), 1, + ACTIONS(13705), 1, anon_sym_DQUOTE2, - STATE(8466), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8494), 1, + STATE(8512), 1, sym_comment, - STATE(9800), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377085] = 4, + [377518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8513), 1, + sym_comment, + ACTIONS(1177), 3, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1179), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [377535] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(8514), 1, + sym_comment, + ACTIONS(3000), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [377552] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8495), 1, + STATE(8515), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(4476), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4390), 4, + ACTIONS(4474), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [377102] = 8, - ACTIONS(3), 1, + [377569] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13299), 1, - anon_sym_alias, - ACTIONS(13301), 1, - anon_sym_const, - ACTIONS(13303), 1, - anon_sym_def, - ACTIONS(13305), 1, - anon_sym_extern, - ACTIONS(13307), 1, - anon_sym_module, - ACTIONS(13309), 1, - anon_sym_use, - STATE(8496), 1, + ACTIONS(829), 1, + anon_sym_LF, + ACTIONS(7226), 1, + aux_sym_unquoted_token3, + STATE(8516), 1, sym_comment, - [377127] = 7, + ACTIONS(827), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [377588] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13668), 1, + ACTIONS(13707), 1, anon_sym_DQUOTE2, - STATE(8497), 1, + STATE(8517), 1, sym_comment, - STATE(8574), 1, + STATE(8520), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377150] = 7, + [377611] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13670), 1, + ACTIONS(13709), 1, anon_sym_DQUOTE2, - STATE(8335), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8498), 1, + STATE(8518), 1, sym_comment, - STATE(9800), 1, + STATE(8569), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377173] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(8499), 1, - sym_comment, - ACTIONS(5084), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5082), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_else, - anon_sym_catch, - [377190] = 4, + [377634] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(8500), 1, + ACTIONS(10027), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13711), 1, + aux_sym__immediate_decimal_token1, + STATE(8519), 1, sym_comment, - ACTIONS(4384), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4382), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [377207] = 4, + ACTIONS(2957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(2959), 2, + anon_sym_DOT2, + sym__entry_separator, + [377655] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8501), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + anon_sym_DQUOTE2, + STATE(8520), 1, sym_comment, - ACTIONS(4380), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4378), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [377224] = 4, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [377678] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(8502), 1, + ACTIONS(13427), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + anon_sym_DQUOTE2, + STATE(8521), 1, sym_comment, - ACTIONS(4376), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4374), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_DASH, - [377241] = 4, + STATE(8524), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, + sym_expr_interpolated, + ACTIONS(13429), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [377701] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8503), 1, + STATE(8522), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4480), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4370), 4, + ACTIONS(4478), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [377258] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7769), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13672), 1, - anon_sym_DOT2, - STATE(8504), 1, - sym_comment, - ACTIONS(3489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [377279] = 7, + [377718] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13674), 1, + ACTIONS(13717), 1, anon_sym_DQUOTE2, - STATE(8505), 1, + STATE(8523), 1, sym_comment, - STATE(8574), 1, + STATE(8539), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377302] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13676), 1, - anon_sym_alias, - ACTIONS(13678), 1, - anon_sym_const, - ACTIONS(13680), 1, - anon_sym_def, - ACTIONS(13682), 1, - anon_sym_extern, - ACTIONS(13684), 1, - anon_sym_module, - ACTIONS(13686), 1, - anon_sym_use, - STATE(8506), 1, - sym_comment, - [377327] = 7, + [377741] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13688), 1, + ACTIONS(13719), 1, anon_sym_DQUOTE2, - STATE(8507), 1, + STATE(8524), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377350] = 6, + [377764] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13690), 1, - anon_sym_DOT2, - STATE(8508), 1, + STATE(8525), 1, sym_comment, - ACTIONS(2996), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2998), 2, + ACTIONS(4233), 2, ts_builtin_sym_end, anon_sym_LF, - [377371] = 3, + ACTIONS(4231), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [377781] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8509), 1, + STATE(8526), 1, sym_comment, - ACTIONS(2998), 6, + ACTIONS(3806), 6, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [377386] = 3, - ACTIONS(3), 1, + [377796] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8510), 1, + ACTIONS(11521), 1, + aux_sym_unquoted_token3, + STATE(8527), 1, sym_comment, - ACTIONS(2988), 6, + ACTIONS(827), 2, sym_cmd_identifier, anon_sym_DASH_DASH, - anon_sym_DOT2, + ACTIONS(829), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [377401] = 3, + [377815] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8511), 1, - sym_comment, - ACTIONS(3836), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(13721), 1, anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [377416] = 3, - ACTIONS(3), 1, + ACTIONS(13724), 1, + aux_sym__immediate_decimal_token2, + STATE(8528), 1, + sym_comment, + ACTIONS(846), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(848), 2, + anon_sym_in, + sym_duration_unit, + [377836] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8512), 1, + STATE(8529), 1, sym_comment, - ACTIONS(3890), 6, - sym_cmd_identifier, + ACTIONS(4484), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4482), 4, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [377431] = 6, - ACTIONS(3), 1, + anon_sym_DASH, + [377853] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(9664), 1, - anon_sym_DOT2, - STATE(8513), 1, + ACTIONS(3946), 1, + anon_sym_LF, + ACTIONS(13726), 1, + anon_sym_EQ, + STATE(8530), 1, sym_comment, - ACTIONS(863), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, - sym_duration_unit, - [377452] = 7, + ACTIONS(3942), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [377872] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13693), 1, + ACTIONS(13728), 1, anon_sym_DQUOTE2, - STATE(8514), 1, + STATE(8531), 1, sym_comment, - STATE(8574), 1, + STATE(8536), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377475] = 7, + [377895] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8532), 1, + sym_comment, + ACTIONS(877), 3, + anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(879), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [377912] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13695), 1, - anon_sym_DQUOTE2, - STATE(8514), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8515), 1, + STATE(8533), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377498] = 4, + ACTIONS(1253), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1251), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [377929] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8516), 1, + STATE(8534), 1, sym_comment, - ACTIONS(889), 2, + ACTIONS(815), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(891), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(817), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT2, sym_duration_unit, - [377515] = 4, + [377946] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8517), 1, + ACTIONS(13730), 1, + anon_sym_DOT2, + ACTIONS(13733), 1, + aux_sym__immediate_decimal_token2, + STATE(8535), 1, sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 4, + ACTIONS(3165), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3167), 2, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [377532] = 7, + anon_sym_DASH_DASH, + [377967] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13697), 1, + ACTIONS(13735), 1, anon_sym_DQUOTE2, - STATE(8518), 1, + STATE(8536), 1, sym_comment, - STATE(8520), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377555] = 4, + [377990] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8519), 1, + ACTIONS(13737), 1, + aux_sym__immediate_decimal_token2, + STATE(8537), 1, sym_comment, - ACTIONS(815), 2, + ACTIONS(855), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(817), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(857), 3, + anon_sym_in, anon_sym_DOT2, sym_duration_unit, - [377572] = 7, + [378009] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13699), 1, - anon_sym_DQUOTE2, - STATE(8520), 1, + STATE(8538), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377595] = 7, + ACTIONS(4074), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4072), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378026] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13701), 1, + ACTIONS(13739), 1, anon_sym_DQUOTE2, - STATE(8521), 1, + STATE(8539), 1, sym_comment, - STATE(8536), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377618] = 4, + [378049] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(8522), 1, - sym_comment, - ACTIONS(861), 3, + ACTIONS(966), 1, anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(863), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(13741), 1, + anon_sym_DOT2, + STATE(7618), 1, + sym_cell_path, + STATE(8540), 1, + sym_comment, + STATE(8543), 1, + sym_path, + ACTIONS(968), 2, anon_sym_DASH_DASH, - [377635] = 4, - ACTIONS(3), 1, + anon_sym_in, + [378072] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8523), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1299), 1, anon_sym_DOT2, - sym_duration_unit, - [377652] = 7, + ACTIONS(3931), 1, + anon_sym_LF, + STATE(8541), 1, + sym_comment, + ACTIONS(3929), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [378091] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13703), 1, - anon_sym_DQUOTE2, - STATE(8507), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8524), 1, + STATE(8542), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377675] = 8, + ACTIONS(4199), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4197), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378108] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2384), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8525), 1, + ACTIONS(903), 1, + anon_sym_DASH, + ACTIONS(13741), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(8543), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10013), 1, - sym__variable_name, - [377700] = 8, + STATE(8544), 1, + aux_sym_cell_path_repeat1, + ACTIONS(905), 2, + anon_sym_DASH_DASH, + anon_sym_in, + [378131] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2393), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8526), 1, + ACTIONS(973), 1, + anon_sym_DASH, + ACTIONS(13741), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(8544), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10013), 1, - sym__variable_name, - [377725] = 4, + STATE(8547), 1, + aux_sym_cell_path_repeat1, + ACTIONS(975), 2, + anon_sym_DASH_DASH, + anon_sym_in, + [378154] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(8527), 1, + STATE(8545), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(4078), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1243), 4, + ACTIONS(4076), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_DASH, - [377742] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13705), 1, - anon_sym_DQUOTE2, - STATE(8528), 1, - sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377765] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2399), 1, - sym__assignment_pattern_parenthesized, - STATE(7529), 1, - sym__var, - STATE(8529), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10013), 1, - sym__variable_name, - [377790] = 8, + [378171] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13303), 1, + ACTIONS(13308), 1, anon_sym_def, - ACTIONS(13305), 1, + ACTIONS(13310), 1, anon_sym_extern, - ACTIONS(13307), 1, + ACTIONS(13312), 1, anon_sym_module, - ACTIONS(13309), 1, + ACTIONS(13314), 1, anon_sym_use, - ACTIONS(13707), 1, + ACTIONS(13743), 1, anon_sym_alias, - ACTIONS(13709), 1, + ACTIONS(13745), 1, anon_sym_const, - STATE(8530), 1, + STATE(8546), 1, + sym_comment, + [378196] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(942), 1, + anon_sym_DASH, + ACTIONS(13747), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + ACTIONS(944), 2, + anon_sym_DASH_DASH, + anon_sym_in, + STATE(8547), 2, sym_comment, - [377815] = 7, + aux_sym_cell_path_repeat1, + [378217] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13711), 1, + ACTIONS(13750), 1, anon_sym_DQUOTE2, - STATE(8528), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8531), 1, + STATE(8548), 1, sym_comment, - STATE(9800), 1, + STATE(8552), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377838] = 5, + [378240] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13221), 1, - aux_sym__immediate_decimal_token2, - STATE(8532), 1, + ACTIONS(3887), 1, + sym_cmd_identifier, + ACTIONS(13752), 1, + sym_long_flag_identifier, + STATE(8549), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [377857] = 5, + ACTIONS(3891), 4, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [378259] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LF, - ACTIONS(7352), 1, - aux_sym_unquoted_token3, - STATE(8533), 1, + STATE(8550), 1, sym_comment, - ACTIONS(823), 4, + ACTIONS(4328), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4326), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [377876] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378276] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13225), 1, - aux_sym__immediate_decimal_token2, - STATE(8534), 1, + STATE(8551), 1, sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_LBRACE, + ACTIONS(809), 2, anon_sym_DOT2, + sym__entry_separator, + ACTIONS(807), 4, + anon_sym_RBRACK, + sym_filesize_unit, sym_duration_unit, - [377895] = 7, + aux_sym_unquoted_token6, + [378293] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13713), 1, + ACTIONS(13754), 1, anon_sym_DQUOTE2, - STATE(8535), 1, + STATE(8552), 1, sym_comment, - STATE(8574), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [377918] = 7, + [378316] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13715), 1, - anon_sym_DQUOTE2, - STATE(8536), 1, + STATE(8553), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377941] = 7, + ACTIONS(4344), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4342), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378333] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13717), 1, - anon_sym_DQUOTE2, - STATE(8535), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8537), 1, + ACTIONS(3979), 1, + anon_sym_LF, + ACTIONS(13756), 1, + anon_sym_DOT2, + STATE(8554), 1, sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377964] = 7, + ACTIONS(3977), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [378352] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13719), 1, - anon_sym_DQUOTE2, - STATE(8538), 1, + STATE(8555), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [377987] = 5, + ACTIONS(4370), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4368), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13721), 1, + ACTIONS(13329), 1, aux_sym__immediate_decimal_token2, - STATE(8539), 1, + STATE(8556), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(815), 2, sym_filesize_unit, aux_sym_unquoted_token6, - ACTIONS(846), 3, + ACTIONS(817), 3, anon_sym_LBRACE, anon_sym_DOT2, sym_duration_unit, - [378006] = 7, - ACTIONS(105), 1, + [378388] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13723), 1, - anon_sym_DQUOTE2, - STATE(8540), 1, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(2426), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, + STATE(8557), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378029] = 4, + STATE(8947), 1, + sym_val_variable, + STATE(10044), 1, + sym__variable_name, + [378413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8541), 1, - sym_comment, - ACTIONS(1065), 3, + ACTIONS(1082), 1, anon_sym_DASH, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1067), 3, + STATE(8558), 1, + sym_comment, + ACTIONS(1084), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [378046] = 7, + anon_sym_DOT2, + anon_sym_QMARK2, + [378430] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13725), 1, + ACTIONS(13758), 1, anon_sym_DQUOTE2, - STATE(8540), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8542), 1, + STATE(8559), 1, sym_comment, - STATE(9800), 1, + STATE(8577), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378069] = 7, + [378453] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, + ACTIONS(13760), 1, anon_sym_LPAREN, - ACTIONS(13727), 1, + ACTIONS(13766), 1, anon_sym_DQUOTE2, - STATE(8543), 1, - sym_comment, - STATE(8552), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, - ACTIONS(13429), 2, + ACTIONS(13763), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378092] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_DASH, - ACTIONS(9917), 1, - sym_duration_unit, - ACTIONS(13729), 1, - sym_filesize_unit, - STATE(8544), 1, + STATE(8560), 2, sym_comment, - ACTIONS(1104), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [378113] = 7, + aux_sym__inter_double_quotes_repeat1, + [378474] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13731), 1, + ACTIONS(13768), 1, anon_sym_DQUOTE2, - STATE(8545), 1, + STATE(8561), 1, sym_comment, - STATE(8574), 1, + STATE(8566), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378136] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13733), 1, - anon_sym_DOT2, - ACTIONS(13736), 1, - aux_sym__immediate_decimal_token2, - STATE(8546), 1, - sym_comment, - ACTIONS(835), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 2, - anon_sym_LBRACE, - sym_duration_unit, - [378157] = 7, + [378497] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, + ACTIONS(4028), 1, anon_sym_LF, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, - STATE(8547), 1, + ACTIONS(13770), 1, + anon_sym_DOT2, + STATE(8562), 1, sym_comment, - ACTIONS(13738), 2, + ACTIONS(4026), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [378180] = 7, + [378516] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13740), 1, - anon_sym_DQUOTE2, - STATE(8548), 1, + STATE(8563), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378203] = 7, + ACTIONS(4203), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4201), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378533] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13742), 1, + ACTIONS(13772), 1, anon_sym_DQUOTE2, - STATE(8548), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8549), 1, + STATE(8564), 1, sym_comment, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378226] = 4, + [378556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13746), 1, - anon_sym_COMMA, - STATE(8550), 1, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(8565), 1, sym_comment, - ACTIONS(13744), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378243] = 7, + ACTIONS(879), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + sym_duration_unit, + [378575] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13748), 1, + ACTIONS(13774), 1, anon_sym_DQUOTE2, - STATE(8545), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8551), 1, + STATE(8566), 1, sym_comment, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378266] = 7, - ACTIONS(105), 1, + [378598] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13750), 1, - anon_sym_DQUOTE2, - STATE(8552), 1, + ACTIONS(1086), 1, + anon_sym_DASH, + STATE(8567), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378289] = 7, - ACTIONS(105), 1, + ACTIONS(1088), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_QMARK2, + [378615] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13752), 1, - anon_sym_DQUOTE2, - STATE(8553), 1, + STATE(8568), 1, sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378312] = 7, + ACTIONS(3000), 6, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [378630] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13754), 1, + ACTIONS(13776), 1, anon_sym_DQUOTE2, - STATE(8553), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8554), 1, + STATE(8569), 1, sym_comment, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378335] = 8, + [378653] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(8570), 1, + sym_comment, + ACTIONS(4374), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4372), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12228), 1, + ACTIONS(12388), 1, sym_identifier, - STATE(2426), 1, - sym__assignment_pattern, - STATE(7529), 1, + STATE(2378), 1, + sym__assignment_pattern_parenthesized, + STATE(7451), 1, sym__var, - STATE(8555), 1, + STATE(8571), 1, sym_comment, - STATE(8977), 1, + STATE(8947), 1, sym_val_variable, - STATE(10091), 1, + STATE(10038), 1, sym__variable_name, - [378360] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13756), 1, - anon_sym_DQUOTE2, - STATE(8556), 1, - sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378383] = 5, + [378695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13281), 1, - aux_sym__immediate_decimal_token2, - STATE(8557), 1, + ACTIONS(879), 1, + anon_sym_DASH_DASH, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(8572), 1, sym_comment, - ACTIONS(807), 2, + ACTIONS(877), 4, + sym_identifier, + anon_sym_DASH, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_in, - anon_sym_DOT2, sym_duration_unit, - [378402] = 5, - ACTIONS(3), 1, + [378714] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13294), 1, - aux_sym__immediate_decimal_token2, - STATE(8558), 1, - sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9387), 1, aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_in, + ACTIONS(9510), 1, anon_sym_DOT2, - sym_duration_unit, - [378421] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13758), 1, - aux_sym__immediate_decimal_token2, - STATE(8559), 1, + STATE(8573), 1, sym_comment, - ACTIONS(844), 2, + ACTIONS(877), 3, + anon_sym_RBRACK, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 3, - anon_sym_in, - anon_sym_DOT2, sym_duration_unit, - [378440] = 7, + [378735] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13760), 1, - anon_sym_DQUOTE2, - STATE(8556), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8560), 1, - sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378463] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13221), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13762), 1, - anon_sym_DOT2, - STATE(8561), 1, + STATE(8574), 1, sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 2, - anon_sym_LBRACE, - sym_duration_unit, - [378484] = 6, - ACTIONS(3), 1, + ACTIONS(4378), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4376), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378752] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13765), 1, - anon_sym_DOT2, - ACTIONS(13768), 1, - aux_sym__immediate_decimal_token2, - STATE(8562), 1, + STATE(8575), 1, sym_comment, - ACTIONS(835), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(837), 2, - anon_sym_in, - sym_duration_unit, - [378505] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13281), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(13770), 1, + ACTIONS(857), 2, anon_sym_DOT2, - STATE(8563), 1, - sym_comment, - ACTIONS(807), 2, + sym__entry_separator, + ACTIONS(855), 4, + anon_sym_RBRACK, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 2, - anon_sym_in, sym_duration_unit, - [378526] = 7, + aux_sym__unquoted_in_list_token7, + [378769] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13773), 1, + ACTIONS(13778), 1, anon_sym_DQUOTE2, - STATE(8564), 1, + STATE(8576), 1, sym_comment, - STATE(8574), 1, + STATE(8580), 1, aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378549] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2402), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8565), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10091), 1, - sym__variable_name, - [378574] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(2375), 1, - sym__assignment_pattern, - STATE(7529), 1, - sym__var, - STATE(8566), 1, - sym_comment, - STATE(8977), 1, - sym_val_variable, - STATE(10091), 1, - sym__variable_name, - [378599] = 7, + [378792] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13775), 1, + ACTIONS(13780), 1, anon_sym_DQUOTE2, - STATE(8564), 1, + STATE(8560), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8567), 1, + STATE(8577), 1, sym_comment, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378622] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13303), 1, - anon_sym_def, - ACTIONS(13305), 1, - anon_sym_extern, - ACTIONS(13307), 1, - anon_sym_module, - ACTIONS(13309), 1, - anon_sym_use, - ACTIONS(13777), 1, - anon_sym_alias, - ACTIONS(13779), 1, - anon_sym_const, - STATE(8568), 1, - sym_comment, - [378647] = 7, + [378815] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_DASH_DASH, - ACTIONS(13489), 1, + ACTIONS(13782), 1, anon_sym_DOT2, - ACTIONS(13491), 1, - aux_sym_unquoted_token2, - ACTIONS(13781), 1, - aux_sym__immediate_decimal_token1, - STATE(8569), 1, + ACTIONS(13786), 1, + aux_sym__immediate_decimal_token2, + STATE(8578), 1, sym_comment, - ACTIONS(1005), 2, + ACTIONS(3165), 2, sym_identifier, anon_sym_DASH, - [378670] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13783), 1, - anon_sym_DQUOTE2, - STATE(8570), 1, - sym_comment, - STATE(8574), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378693] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13427), 1, - anon_sym_LPAREN, - ACTIONS(13785), 1, - anon_sym_DQUOTE2, - STATE(8570), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(8571), 1, - sym_comment, - STATE(9800), 1, - sym_expr_interpolated, - ACTIONS(13429), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [378716] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8461), 1, - sym_filesize_unit, - ACTIONS(8463), 1, - sym_duration_unit, - STATE(8572), 1, - sym_comment, - ACTIONS(1102), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - [378737] = 6, + ACTIONS(3167), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [378836] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7769), 1, + ACTIONS(7629), 1, aux_sym__immediate_decimal_token2, - ACTIONS(13787), 1, + ACTIONS(13788), 1, anon_sym_DOT2, - STATE(8573), 1, + STATE(8579), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(2998), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3491), 2, + ACTIONS(3000), 2, ts_builtin_sym_end, anon_sym_LF, - [378758] = 6, + [378857] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13790), 1, + ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13796), 1, + ACTIONS(13791), 1, anon_sym_DQUOTE2, - STATE(9800), 1, + STATE(8560), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(8580), 1, + sym_comment, + STATE(9568), 1, sym_expr_interpolated, - ACTIONS(13793), 2, + ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(8574), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [378779] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8575), 1, - sym_comment, - ACTIONS(1230), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378794] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8576), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [378811] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8577), 1, - sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [378828] = 7, + [378880] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(13427), 1, anon_sym_LPAREN, - ACTIONS(13798), 1, + ACTIONS(13793), 1, anon_sym_DQUOTE2, - STATE(8538), 1, + STATE(8355), 1, aux_sym__inter_double_quotes_repeat1, - STATE(8578), 1, + STATE(8581), 1, sym_comment, - STATE(9800), 1, + STATE(9568), 1, sym_expr_interpolated, ACTIONS(13429), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [378851] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8579), 1, - sym_comment, - ACTIONS(1224), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378866] = 3, + [378903] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(8580), 1, - sym_comment, - ACTIONS(13800), 6, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378881] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8581), 1, - sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [378898] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + STATE(2394), 1, + sym__assignment_pattern, + STATE(7451), 1, + sym__var, STATE(8582), 1, sym_comment, - ACTIONS(1191), 6, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378913] = 4, + STATE(8947), 1, + sym_val_variable, + STATE(10044), 1, + sym__variable_name, + [378928] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4025), 1, + ACTIONS(13355), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13795), 1, anon_sym_DOT2, STATE(8583), 1, sym_comment, - ACTIONS(2998), 5, - sym_cmd_identifier, + ACTIONS(2998), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(3000), 2, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [378930] = 4, - ACTIONS(3), 1, + [378949] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(8584), 1, sym_comment, - ACTIONS(889), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 4, + ACTIONS(4400), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4398), 4, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT2, - sym_duration_unit, - [378947] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH, + [378966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1054), 1, - anon_sym_DASH, - ACTIONS(13802), 1, - anon_sym_QMARK2, - STATE(8585), 1, - sym_comment, - ACTIONS(1056), 4, - sym_identifier, + ACTIONS(879), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(9495), 1, anon_sym_DOT2, - [378966] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1054), 1, - anon_sym_DASH, - ACTIONS(13802), 1, - anon_sym_QMARK2, - STATE(8586), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(8585), 1, sym_comment, - ACTIONS(1056), 4, + ACTIONS(877), 3, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [378985] = 4, + sym_filesize_unit, + sym_duration_unit, + [378987] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, + ACTIONS(13800), 1, anon_sym_LF, - STATE(8587), 1, + ACTIONS(13802), 1, + anon_sym_else, + STATE(8586), 1, sym_comment, - ACTIONS(13804), 4, + ACTIONS(13798), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [379001] = 6, + [379006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13808), 1, + ACTIONS(13804), 1, + anon_sym_DOT2, + STATE(8587), 1, + sym_comment, + STATE(11438), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379026] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11781), 1, anon_sym_DOT2, STATE(8588), 1, sym_comment, - STATE(11408), 1, + STATE(11461), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [379021] = 7, + [379046] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13814), 1, - anon_sym_SQUOTE, + ACTIONS(13808), 1, + anon_sym_LF, STATE(8589), 1, sym_comment, - STATE(8612), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379043] = 3, - ACTIONS(3), 1, + ACTIONS(13806), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379062] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13812), 1, + anon_sym_LF, STATE(8590), 1, sym_comment, - ACTIONS(1245), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379057] = 7, + ACTIONS(13810), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379078] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, ACTIONS(13816), 1, - anon_sym_SQUOTE, + anon_sym_LF, STATE(8591), 1, sym_comment, - STATE(8614), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379079] = 7, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379094] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13818), 1, - anon_sym_SQUOTE, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8592), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379101] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379110] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13820), 1, - anon_sym_DQUOTE, - ACTIONS(13824), 1, - aux_sym_path_token1, - STATE(6085), 1, - sym__str_double_quotes, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(1999), 1, + sym__terminator, STATE(8593), 1, sym_comment, ACTIONS(13822), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379121] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [379130] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, ACTIONS(13826), 1, - anon_sym_SQUOTE, + anon_sym_LF, STATE(8594), 1, sym_comment, - STATE(8604), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379143] = 7, - ACTIONS(3), 1, + ACTIONS(13824), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379146] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13828), 1, - anon_sym_DOT2, - ACTIONS(13830), 1, - anon_sym_LPAREN2, - ACTIONS(13832), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13834), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(13836), 1, - sym_short_flag_identifier, + ACTIONS(13816), 1, + anon_sym_LF, STATE(8595), 1, sym_comment, - [379165] = 7, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379162] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13838), 1, - anon_sym_SQUOTE, + ACTIONS(13826), 1, + anon_sym_LF, STATE(8596), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379187] = 3, - ACTIONS(3), 1, + ACTIONS(13824), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379178] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13816), 1, + anon_sym_LF, STATE(8597), 1, sym_comment, - ACTIONS(1360), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379201] = 3, - ACTIONS(3), 1, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379194] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8598), 1, sym_comment, - ACTIONS(1319), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379215] = 7, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379210] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(13840), 1, + ACTIONS(13836), 1, anon_sym_SQUOTE, - STATE(8592), 1, - aux_sym__inter_single_quotes_repeat1, STATE(8599), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [379237] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(11541), 1, - aux_sym_unquoted_token3, - STATE(8600), 1, - sym_comment, - ACTIONS(823), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [379255] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13842), 1, - anon_sym_DQUOTE, - ACTIONS(13846), 1, - aux_sym_path_token1, - STATE(2394), 1, - sym__str_double_quotes, STATE(8601), 1, - sym_comment, - ACTIONS(13844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379275] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13848), 1, - anon_sym_SQUOTE, - STATE(8602), 1, - sym_comment, - STATE(9161), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [379297] = 7, + [379232] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13850), 1, - anon_sym_SQUOTE, - STATE(8596), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8603), 1, + ACTIONS(13820), 1, + anon_sym_LF, + STATE(8600), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [379319] = 7, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379248] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(13852), 1, + ACTIONS(13838), 1, anon_sym_SQUOTE, - STATE(8604), 1, + STATE(8601), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [379341] = 6, + [379270] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13854), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(13858), 1, + ACTIONS(13842), 1, aux_sym_path_token1, - STATE(6554), 1, + STATE(5272), 1, sym__str_double_quotes, - STATE(8605), 1, + STATE(8602), 1, sym_comment, - ACTIONS(13856), 2, + ACTIONS(13840), 2, sym__str_single_quotes, sym__str_back_ticks, - [379361] = 3, + [379290] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8606), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13844), 1, + anon_sym_DOT2, + STATE(8603), 1, sym_comment, - ACTIONS(1356), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379375] = 3, + STATE(11420), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379310] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13846), 1, + anon_sym_DOT2, + ACTIONS(13848), 1, + anon_sym_LPAREN2, + ACTIONS(13850), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13852), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13854), 1, + sym_short_flag_identifier, + STATE(8604), 1, + sym_comment, + [379332] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13830), 1, + anon_sym_LF, + STATE(8605), 1, + sym_comment, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379348] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13820), 1, + anon_sym_LF, + STATE(8606), 1, + sym_comment, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379364] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8607), 1, sym_comment, - ACTIONS(1352), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379389] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379380] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13860), 1, - anon_sym_DQUOTE, - ACTIONS(13864), 1, - aux_sym_path_token1, - STATE(2818), 1, - sym__str_double_quotes, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8608), 1, sym_comment, - ACTIONS(13862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379409] = 3, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379396] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8609), 1, sym_comment, - ACTIONS(1035), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379423] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379412] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_DQUOTE, - ACTIONS(13868), 1, - aux_sym_path_token1, - STATE(7162), 1, - sym__str_double_quotes, + ACTIONS(13826), 1, + anon_sym_LF, STATE(8610), 1, sym_comment, - ACTIONS(13866), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379443] = 6, - ACTIONS(3), 1, + ACTIONS(13824), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379428] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(13872), 1, - aux_sym_path_token1, - STATE(5224), 1, - sym__str_double_quotes, + ACTIONS(13816), 1, + anon_sym_LF, STATE(8611), 1, sym_comment, - ACTIONS(13870), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379463] = 7, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379444] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13874), 1, - anon_sym_SQUOTE, + ACTIONS(13826), 1, + anon_sym_LF, STATE(8612), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379485] = 7, + ACTIONS(13824), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379460] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13876), 1, - anon_sym_SQUOTE, - STATE(8602), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(13816), 1, + anon_sym_LF, STATE(8613), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [379507] = 7, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379476] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13878), 1, - anon_sym_SQUOTE, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(10021), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(13856), 1, + anon_sym_DOT2, STATE(8614), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379529] = 6, + ACTIONS(2998), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [379496] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(13882), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(4352), 1, - aux_sym_pipe_element_repeat1, STATE(8615), 1, sym_comment, - ACTIONS(13880), 2, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, - [379549] = 7, + anon_sym_PIPE, + anon_sym_RBRACE, + [379512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13885), 1, - anon_sym_SQUOTE, + ACTIONS(13816), 1, + anon_sym_LF, STATE(8616), 1, sym_comment, - STATE(8617), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379571] = 7, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379528] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(13887), 1, + ACTIONS(13858), 1, anon_sym_SQUOTE, STATE(8617), 1, sym_comment, - STATE(9161), 1, + STATE(8619), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [379593] = 6, + [379550] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13889), 1, - anon_sym_DQUOTE, - ACTIONS(13893), 1, - aux_sym_path_token1, - STATE(378), 1, - sym__str_double_quotes, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, STATE(8618), 1, sym_comment, - ACTIONS(13891), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379613] = 7, + STATE(10955), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379570] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(13895), 1, + ACTIONS(13866), 1, anon_sym_SQUOTE, STATE(8619), 1, sym_comment, - STATE(8620), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [379635] = 7, - ACTIONS(105), 1, + [379592] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13897), 1, - anon_sym_SQUOTE, + ACTIONS(13868), 1, + anon_sym_DQUOTE, + ACTIONS(13872), 1, + aux_sym_path_token1, + STATE(4010), 1, + sym__str_double_quotes, STATE(8620), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379657] = 7, - ACTIONS(105), 1, + ACTIONS(13870), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [379612] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13899), 1, - anon_sym_SQUOTE, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13874), 1, + anon_sym_DOT2, STATE(8621), 1, sym_comment, - STATE(8634), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379679] = 6, + STATE(11422), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13901), 1, - anon_sym_DQUOTE, - ACTIONS(13905), 1, - aux_sym_path_token1, - STATE(846), 1, - sym__str_double_quotes, + ACTIONS(3887), 1, + anon_sym_DASH, + ACTIONS(13876), 1, + sym_long_flag_identifier, STATE(8622), 1, sym_comment, - ACTIONS(13903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379699] = 3, - ACTIONS(3), 1, + ACTIONS(3891), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [379650] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8623), 1, sym_comment, - ACTIONS(1344), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379713] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379666] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6085), 1, - anon_sym_DQUOTE, - ACTIONS(13909), 1, - aux_sym_path_token1, - STATE(5941), 1, - sym__str_double_quotes, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8624), 1, sym_comment, - ACTIONS(13907), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379733] = 5, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379682] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13911), 1, - sym_long_flag_identifier, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8625), 1, sym_comment, - ACTIONS(3947), 2, + ACTIONS(13818), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3951), 2, - ts_builtin_sym_end, - anon_sym_LF, - [379751] = 7, + anon_sym_RBRACE, + [379698] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13913), 1, - anon_sym_SQUOTE, + ACTIONS(13878), 1, + ts_builtin_sym_end, + ACTIONS(13880), 1, + anon_sym_SEMI, + ACTIONS(13882), 1, + anon_sym_LF, STATE(8626), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [379773] = 5, - ACTIONS(3), 1, + STATE(8763), 1, + aux_sym__block_body_repeat1, + STATE(9937), 1, + sym__terminator, + [379720] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3947), 1, - anon_sym_DASH, - ACTIONS(13915), 1, - sym_long_flag_identifier, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8627), 1, sym_comment, - ACTIONS(3951), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [379791] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379736] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3040), 1, - anon_sym_DQUOTE, - ACTIONS(13919), 1, - aux_sym_path_token1, - STATE(7315), 1, - sym__str_double_quotes, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8628), 1, sym_comment, - ACTIONS(13917), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379811] = 7, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379752] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(13921), 1, - anon_sym_SQUOTE, - STATE(8626), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8629), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [379833] = 7, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379768] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(12228), 1, - sym_identifier, - STATE(8180), 1, - sym__variable_name, - STATE(8410), 1, - sym__var, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(13884), 1, + anon_sym_SQUOTE, STATE(8630), 1, sym_comment, - STATE(8977), 1, - sym_val_variable, - [379855] = 3, - ACTIONS(3), 1, + STATE(8634), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [379790] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8631), 1, sym_comment, - ACTIONS(1348), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [379869] = 6, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379806] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13923), 1, - anon_sym_DQUOTE, - ACTIONS(13927), 1, - aux_sym_path_token1, - STATE(1529), 1, - sym__str_double_quotes, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11781), 1, + anon_sym_DOT2, STATE(8632), 1, sym_comment, - ACTIONS(13925), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379889] = 5, - ACTIONS(3), 1, + STATE(11462), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379826] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DASH, - ACTIONS(10258), 1, - anon_sym_DOT2, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8633), 1, sym_comment, - ACTIONS(4015), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [379907] = 7, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379842] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(13929), 1, + ACTIONS(13886), 1, anon_sym_SQUOTE, STATE(8634), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [379929] = 6, + [379864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13931), 1, - anon_sym_DQUOTE, - ACTIONS(13935), 1, - aux_sym_path_token1, - STATE(5914), 1, - sym__str_double_quotes, + ACTIONS(3929), 1, + anon_sym_DASH, + ACTIONS(10192), 1, + anon_sym_DOT2, STATE(8635), 1, sym_comment, - ACTIONS(13933), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379949] = 6, + ACTIONS(3931), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [379882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13937), 1, + ACTIONS(5596), 1, anon_sym_DQUOTE, - ACTIONS(13941), 1, + ACTIONS(13890), 1, aux_sym_path_token1, - STATE(2193), 1, + STATE(7166), 1, sym__str_double_quotes, STATE(8636), 1, sym_comment, - ACTIONS(13939), 2, + ACTIONS(13888), 2, sym__str_single_quotes, sym__str_back_ticks, - [379969] = 6, + [379902] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3367), 1, - anon_sym_DQUOTE, - ACTIONS(13945), 1, - aux_sym_path_token1, - STATE(5170), 1, - sym__str_double_quotes, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13892), 1, + anon_sym_DOT2, STATE(8637), 1, sym_comment, - ACTIONS(13943), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [379989] = 6, - ACTIONS(3), 1, + STATE(11424), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [379922] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13947), 1, - anon_sym_DQUOTE, - ACTIONS(13951), 1, - aux_sym_path_token1, - STATE(1454), 1, - sym__str_double_quotes, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8638), 1, sym_comment, - ACTIONS(13949), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380009] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379938] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13953), 1, - anon_sym_DQUOTE, - ACTIONS(13957), 1, - aux_sym_path_token1, - STATE(3060), 1, - sym__str_double_quotes, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8639), 1, sym_comment, - ACTIONS(13955), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380029] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379954] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13959), 1, - anon_sym_DOT2, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8640), 1, sym_comment, - STATE(11422), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [380049] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379970] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13961), 1, - anon_sym_DQUOTE, - ACTIONS(13965), 1, - aux_sym_path_token1, - STATE(6276), 1, - sym__str_double_quotes, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8641), 1, sym_comment, - ACTIONS(13963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380069] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [379986] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13967), 1, - anon_sym_DQUOTE, - ACTIONS(13971), 1, - aux_sym_path_token1, - STATE(371), 1, - sym__str_double_quotes, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8642), 1, sym_comment, - ACTIONS(13969), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380089] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380002] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13973), 1, - anon_sym_DQUOTE, - ACTIONS(13977), 1, - aux_sym_path_token1, - STATE(353), 1, - sym__str_double_quotes, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8643), 1, sym_comment, - ACTIONS(13975), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380109] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380018] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13979), 1, - anon_sym_DQUOTE, - ACTIONS(13983), 1, - aux_sym_path_token1, - STATE(819), 1, - sym__str_double_quotes, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8644), 1, sym_comment, - ACTIONS(13981), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380129] = 7, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380034] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT2, - ACTIONS(13987), 1, - anon_sym_LPAREN2, - ACTIONS(13989), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13991), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(13993), 1, - sym_short_flag_identifier, + ACTIONS(13820), 1, + anon_sym_LF, STATE(8645), 1, sym_comment, - [380151] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380050] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(13997), 1, - aux_sym_path_token1, - STATE(5093), 1, - sym__str_double_quotes, + ACTIONS(13830), 1, + anon_sym_LF, STATE(8646), 1, sym_comment, - ACTIONS(13995), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380171] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380066] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13999), 1, - anon_sym_DQUOTE, - ACTIONS(14003), 1, - aux_sym_path_token1, - STATE(2815), 1, - sym__str_double_quotes, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8647), 1, sym_comment, - ACTIONS(14001), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380191] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380082] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14005), 1, - anon_sym_DQUOTE, - ACTIONS(14009), 1, - aux_sym_path_token1, - STATE(2660), 1, - sym__str_double_quotes, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8648), 1, sym_comment, - ACTIONS(14007), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380211] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380098] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14011), 1, - anon_sym_DQUOTE, - ACTIONS(14015), 1, - aux_sym_path_token1, - STATE(2758), 1, - sym__str_double_quotes, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8649), 1, sym_comment, - ACTIONS(14013), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380231] = 7, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380114] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13900), 1, + anon_sym_LF, + STATE(8650), 1, + sym_comment, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380130] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14017), 1, + ACTIONS(13902), 1, anon_sym_SQUOTE, - STATE(8650), 1, + STATE(8651), 1, sym_comment, - STATE(9161), 1, + STATE(8653), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [380253] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14019), 1, - anon_sym_DOT2, - ACTIONS(14021), 1, - anon_sym_LPAREN2, - ACTIONS(14023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14025), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14027), 1, - sym_short_flag_identifier, - STATE(8651), 1, - sym_comment, - [380275] = 5, + [380152] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8652), 1, sym_comment, - ACTIONS(4013), 2, + ACTIONS(13894), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4015), 2, - ts_builtin_sym_end, - anon_sym_LF, - [380293] = 7, + anon_sym_RBRACE, + [380168] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14029), 1, + ACTIONS(13904), 1, anon_sym_SQUOTE, - STATE(8650), 1, - aux_sym__inter_single_quotes_repeat1, STATE(8653), 1, sym_comment, - STATE(9896), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, sym_expr_interpolated, - [380315] = 5, + [380190] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_DOT2, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8654), 1, sym_comment, - ACTIONS(1102), 2, + ACTIONS(13898), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1104), 2, - ts_builtin_sym_end, - anon_sym_LF, - [380333] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14031), 1, - anon_sym_DOT2, + anon_sym_RBRACE, + [380206] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(13908), 1, + aux_sym_path_token1, + STATE(4684), 1, + sym__str_double_quotes, STATE(8655), 1, sym_comment, - STATE(11466), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [380353] = 6, + ACTIONS(13906), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [380226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14033), 1, + ACTIONS(13910), 1, anon_sym_DOT2, STATE(8656), 1, sym_comment, - STATE(11412), 1, + STATE(11420), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [380373] = 6, - ACTIONS(3), 1, + [380246] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14035), 1, - anon_sym_DQUOTE, - ACTIONS(14039), 1, - aux_sym_path_token1, - STATE(4025), 1, - sym__str_double_quotes, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8657), 1, sym_comment, - ACTIONS(14037), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380393] = 7, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380262] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14041), 1, - anon_sym_SQUOTE, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8658), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [380415] = 5, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380278] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2288), 1, - anon_sym_COLON, - ACTIONS(14045), 1, + ACTIONS(13896), 1, anon_sym_LF, STATE(8659), 1, sym_comment, - ACTIONS(14043), 3, + ACTIONS(13894), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [380433] = 5, + [380294] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2288), 1, - anon_sym_COLON, - ACTIONS(14049), 1, + ACTIONS(13900), 1, anon_sym_LF, STATE(8660), 1, sym_comment, - ACTIONS(14047), 3, + ACTIONS(13898), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [380451] = 7, + [380310] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14051), 1, - anon_sym_SQUOTE, - STATE(8658), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8661), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [380473] = 7, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380326] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(14053), 1, - anon_sym_use, - ACTIONS(14055), 1, - anon_sym_list, - ACTIONS(14057), 1, - anon_sym_hide, - ACTIONS(14059), 1, - anon_sym_new, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8662), 1, sym_comment, - [380495] = 4, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380342] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14061), 1, - anon_sym_DOT2, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8663), 1, sym_comment, - ACTIONS(3929), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [380511] = 4, - ACTIONS(3), 1, + [380358] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14063), 1, - anon_sym_DOT2, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8664), 1, sym_comment, - ACTIONS(3911), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [380527] = 4, - ACTIONS(3), 1, + [380374] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14065), 1, - anon_sym_DOT2, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8665), 1, sym_comment, - ACTIONS(3917), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [380543] = 4, - ACTIONS(3), 1, + [380390] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14067), 1, - anon_sym_DOT2, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8666), 1, sym_comment, - ACTIONS(3923), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [380559] = 3, - ACTIONS(3), 1, + [380406] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8667), 1, sym_comment, - ACTIONS(4144), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380573] = 7, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380422] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14069), 1, - anon_sym_SQUOTE, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8668), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [380595] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380438] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8669), 1, sym_comment, - STATE(10801), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [380615] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380454] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14077), 1, - anon_sym_DOT2, - ACTIONS(14079), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8670), 1, sym_comment, - STATE(10800), 1, - sym__immediate_decimal, - ACTIONS(14081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [380635] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380470] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14083), 1, - anon_sym_DOT2, - ACTIONS(14085), 1, - aux_sym_unquoted_token2, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8671), 1, sym_comment, - ACTIONS(1007), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [380655] = 3, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380486] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8672), 1, sym_comment, - ACTIONS(1340), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380669] = 3, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380502] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8673), 1, sym_comment, - ACTIONS(1340), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380683] = 4, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380518] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14087), 1, - anon_sym_DOT2, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(13912), 1, + anon_sym_SQUOTE, STATE(8674), 1, sym_comment, - ACTIONS(3937), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - [380699] = 4, - ACTIONS(3), 1, + STATE(8678), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [380540] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14089), 1, - anon_sym_DOT2, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8675), 1, sym_comment, - ACTIONS(3943), 4, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [380715] = 5, - ACTIONS(3), 1, + [380556] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DASH, - ACTIONS(10136), 1, - anon_sym_DOT2, + ACTIONS(13896), 1, + anon_sym_LF, STATE(8676), 1, sym_comment, - ACTIONS(4015), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [380733] = 3, - ACTIONS(3), 1, + ACTIONS(13894), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380572] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13900), 1, + anon_sym_LF, STATE(8677), 1, sym_comment, - ACTIONS(4372), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380747] = 3, - ACTIONS(3), 1, + ACTIONS(13898), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380588] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(13914), 1, + anon_sym_SQUOTE, STATE(8678), 1, sym_comment, - ACTIONS(4376), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380761] = 3, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [380610] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13916), 1, + anon_sym_DQUOTE, + ACTIONS(13920), 1, + aux_sym_path_token1, + STATE(5350), 1, + sym__str_double_quotes, STATE(8679), 1, sym_comment, - ACTIONS(4380), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(13918), 2, sym__str_single_quotes, sym__str_back_ticks, - [380775] = 3, + [380630] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13874), 1, + anon_sym_DOT2, STATE(8680), 1, sym_comment, - ACTIONS(4384), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380789] = 7, - ACTIONS(105), 1, + STATE(10803), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [380650] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14091), 1, - ts_builtin_sym_end, - ACTIONS(14093), 1, - anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, + ACTIONS(13922), 1, + anon_sym_DOT2, + ACTIONS(13924), 1, + anon_sym_LPAREN2, + ACTIONS(13926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13928), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13930), 1, + sym_short_flag_identifier, STATE(8681), 1, sym_comment, - STATE(9094), 1, - aux_sym__block_body_repeat1, - STATE(9884), 1, - sym__terminator, - [380811] = 3, + [380672] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8682), 1, sym_comment, - ACTIONS(4396), 5, + ACTIONS(13932), 5, sym_cmd_identifier, - anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [380825] = 3, - ACTIONS(3), 1, + [380686] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4098), 1, + anon_sym_LF, STATE(8683), 1, sym_comment, - ACTIONS(4400), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380839] = 7, + ACTIONS(4096), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1005), 1, - sym_identifier, - ACTIONS(1007), 1, - anon_sym_DOLLAR, - ACTIONS(9865), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14097), 1, + ACTIONS(13934), 1, anon_sym_DOT2, - ACTIONS(14099), 1, - aux_sym_unquoted_token2, + ACTIONS(13936), 1, + aux_sym__immediate_decimal_token1, STATE(8684), 1, sym_comment, - [380861] = 6, + STATE(10669), 1, + sym__immediate_decimal, + ACTIONS(13938), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [380722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_DQUOTE, - ACTIONS(14103), 1, - aux_sym_path_token1, - STATE(4406), 1, - sym__str_double_quotes, + ACTIONS(9205), 1, + sym_duration_unit, + ACTIONS(13940), 1, + sym_filesize_unit, STATE(8685), 1, sym_comment, - ACTIONS(14101), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [380881] = 7, + ACTIONS(1056), 3, + anon_sym_DOLLAR, + anon_sym_in, + anon_sym_LBRACE, + [380740] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_RBRACK, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(9547), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14105), 1, - anon_sym_DOT2, - ACTIONS(14107), 1, - aux_sym_unquoted_token2, + ACTIONS(13878), 1, + ts_builtin_sym_end, + ACTIONS(13880), 1, + anon_sym_SEMI, + ACTIONS(13882), 1, + anon_sym_LF, STATE(8686), 1, sym_comment, - [380903] = 7, + STATE(8894), 1, + aux_sym__block_body_repeat1, + STATE(9937), 1, + sym__terminator, + [380762] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14109), 1, + ACTIONS(13942), 1, anon_sym_SQUOTE, STATE(8687), 1, sym_comment, - STATE(9161), 1, + STATE(8689), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [380925] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8688), 1, - sym_comment, - ACTIONS(4408), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380939] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8689), 1, - sym_comment, - ACTIONS(4412), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [380953] = 7, + [380784] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14111), 1, - anon_sym_SQUOTE, - STATE(8687), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8690), 1, + ACTIONS(10093), 1, + anon_sym_RBRACK, + ACTIONS(10099), 1, + sym__entry_separator, + ACTIONS(13944), 1, + anon_sym_DOT2, + ACTIONS(13946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13948), 1, + aux_sym__unquoted_in_list_token2, + STATE(8688), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [380975] = 7, + [380806] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14113), 1, + ACTIONS(13950), 1, anon_sym_SQUOTE, - STATE(8691), 1, + STATE(8689), 1, sym_comment, - STATE(8704), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [380997] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8692), 1, - sym_comment, - ACTIONS(4416), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381011] = 3, + [380828] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8693), 1, - sym_comment, - ACTIONS(4420), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(13952), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381025] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8694), 1, + ACTIONS(13956), 1, + aux_sym_path_token1, + STATE(1689), 1, + sym__str_double_quotes, + STATE(8690), 1, sym_comment, - ACTIONS(4424), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(13954), 2, sym__str_single_quotes, sym__str_back_ticks, - [381039] = 3, + [380848] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8695), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13958), 1, + anon_sym_DOT2, + STATE(8691), 1, sym_comment, - ACTIONS(4430), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381053] = 3, - ACTIONS(3), 1, + STATE(11440), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [380868] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8696), 1, + ACTIONS(13960), 1, + anon_sym_else, + STATE(8692), 1, sym_comment, - ACTIONS(4460), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381067] = 3, + ACTIONS(13798), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13800), 2, + ts_builtin_sym_end, + anon_sym_LF, + [380886] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8697), 1, + ACTIONS(13962), 1, + anon_sym_DOT2, + ACTIONS(13964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13966), 1, + aux_sym_unquoted_token2, + STATE(8693), 1, sym_comment, - ACTIONS(4468), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381081] = 6, + ACTIONS(951), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [380906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(5107), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8698), 1, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(8694), 1, sym_comment, - ACTIONS(973), 2, + ACTIONS(879), 3, anon_sym_DOLLAR, anon_sym_LBRACE, - [381101] = 3, - ACTIONS(3), 1, + sym_duration_unit, + [380924] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8699), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13970), 1, + anon_sym_LF, + STATE(4286), 1, + aux_sym_pipe_element_repeat1, + STATE(8695), 1, sym_comment, - ACTIONS(4472), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381115] = 3, - ACTIONS(3), 1, + ACTIONS(13968), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [380944] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8700), 1, + ACTIONS(13975), 1, + anon_sym_LF, + STATE(8696), 1, sym_comment, - ACTIONS(4476), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381129] = 3, - ACTIONS(3), 1, + ACTIONS(13973), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [380960] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8701), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(13977), 1, + anon_sym_SQUOTE, + STATE(8697), 1, sym_comment, - ACTIONS(4488), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381143] = 3, + STATE(8699), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [380982] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8702), 1, + STATE(8698), 1, sym_comment, - ACTIONS(4046), 5, + ACTIONS(13979), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [381157] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(5106), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8703), 1, - sym_comment, - ACTIONS(969), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [381177] = 7, + [380996] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14115), 1, + ACTIONS(13981), 1, anon_sym_SQUOTE, - STATE(8704), 1, + STATE(8699), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [381199] = 3, + [381018] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8705), 1, + STATE(8700), 1, sym_comment, - ACTIONS(4322), 5, + ACTIONS(1351), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [381213] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(5810), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8706), 1, - sym_comment, - ACTIONS(1035), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [381233] = 6, + [381032] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14117), 1, + ACTIONS(13983), 1, anon_sym_DQUOTE, - ACTIONS(14121), 1, + ACTIONS(13987), 1, aux_sym_path_token1, - STATE(4006), 1, + STATE(1212), 1, sym__str_double_quotes, - STATE(8707), 1, - sym_comment, - ACTIONS(14119), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [381253] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8708), 1, + STATE(8701), 1, sym_comment, - ACTIONS(4313), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(13985), 2, sym__str_single_quotes, sym__str_back_ticks, - [381267] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10134), 1, - anon_sym_DOT2, - STATE(5758), 1, - sym_cell_path, - STATE(7150), 1, - sym_path, - STATE(8709), 1, - sym_comment, - ACTIONS(911), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [381287] = 6, + [381052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14123), 1, + ACTIONS(13989), 1, anon_sym_DOT2, - STATE(8710), 1, + STATE(8702), 1, sym_comment, - STATE(11424), 1, + STATE(11442), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [381307] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8711), 1, - sym_comment, - ACTIONS(4309), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381321] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8712), 1, - sym_comment, - ACTIONS(4305), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381335] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8713), 1, - sym_comment, - ACTIONS(4301), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381349] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14125), 1, - anon_sym_DQUOTE, - ACTIONS(14129), 1, - aux_sym_path_token1, - STATE(2685), 1, - sym__str_double_quotes, - STATE(8714), 1, - sym_comment, - ACTIONS(14127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [381369] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8715), 1, - sym_comment, - ACTIONS(4297), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381383] = 3, - ACTIONS(3), 1, + [381072] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8716), 1, + ACTIONS(13993), 1, + anon_sym_LF, + ACTIONS(13995), 1, + anon_sym_else, + STATE(8703), 1, sym_comment, - ACTIONS(4260), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381397] = 7, + ACTIONS(13991), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [381090] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14131), 1, + ACTIONS(13997), 1, anon_sym_SQUOTE, - STATE(8717), 1, + STATE(8704), 1, sym_comment, - STATE(9161), 1, + STATE(8705), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [381419] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8718), 1, - sym_comment, - ACTIONS(4246), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381433] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8719), 1, - sym_comment, - ACTIONS(4242), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381447] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8720), 1, - sym_comment, - ACTIONS(4238), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381461] = 7, + [381112] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14133), 1, + ACTIONS(13999), 1, anon_sym_SQUOTE, - STATE(8717), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8721), 1, + STATE(8705), 1, sym_comment, - STATE(9896), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, sym_expr_interpolated, - [381483] = 3, + [381134] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8722), 1, - sym_comment, - ACTIONS(4230), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(14001), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381497] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8723), 1, + ACTIONS(14005), 1, + aux_sym_path_token1, + STATE(3997), 1, + sym__str_double_quotes, + STATE(8706), 1, sym_comment, - ACTIONS(4226), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(14003), 2, sym__str_single_quotes, sym__str_back_ticks, - [381511] = 3, + [381154] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8724), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14007), 1, + anon_sym_DOT2, + STATE(8707), 1, sym_comment, - ACTIONS(4222), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381525] = 3, - ACTIONS(3), 1, + STATE(11426), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [381174] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8725), 1, + ACTIONS(14011), 1, + anon_sym_LF, + STATE(8708), 1, sym_comment, - ACTIONS(4202), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381539] = 3, - ACTIONS(3), 1, + ACTIONS(14009), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381190] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8726), 1, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9964), 1, + aux_sym__unquoted_in_list_token7, + STATE(8709), 1, sym_comment, - ACTIONS(4196), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381553] = 3, - ACTIONS(3), 1, + ACTIONS(877), 3, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + [381208] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8727), 1, + ACTIONS(14015), 1, + anon_sym_LF, + STATE(8710), 1, sym_comment, - ACTIONS(4192), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381567] = 3, - ACTIONS(3), 1, + ACTIONS(14013), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381224] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8728), 1, + ACTIONS(14019), 1, + anon_sym_LF, + STATE(8711), 1, sym_comment, - ACTIONS(4178), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381581] = 3, + ACTIONS(14017), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381240] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8729), 1, + ACTIONS(3977), 1, + anon_sym_DASH, + ACTIONS(14021), 1, + anon_sym_DOT2, + STATE(8712), 1, sym_comment, - ACTIONS(4174), 5, - sym_cmd_identifier, + ACTIONS(3979), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381595] = 3, + [381258] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(8730), 1, + ACTIONS(4026), 1, + anon_sym_DASH, + ACTIONS(14023), 1, + anon_sym_DOT2, + STATE(8713), 1, sym_comment, - ACTIONS(4170), 5, - sym_cmd_identifier, + ACTIONS(4028), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381609] = 3, + [381276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(8731), 1, + STATE(8714), 1, sym_comment, - ACTIONS(4160), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381623] = 3, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [381292] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8732), 1, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(9550), 1, + anon_sym_DOT2, + STATE(8715), 1, sym_comment, - ACTIONS(4148), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381637] = 4, + ACTIONS(879), 2, + anon_sym_LBRACE, + sym_duration_unit, + [381312] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14027), 1, anon_sym_LF, - STATE(8733), 1, + STATE(8716), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14025), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [381653] = 3, + [381328] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8734), 1, + STATE(8717), 1, sym_comment, - ACTIONS(4140), 5, + ACTIONS(1359), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [381667] = 3, - ACTIONS(3), 1, + [381342] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8735), 1, + ACTIONS(14031), 1, + anon_sym_LF, + STATE(8718), 1, sym_comment, - ACTIONS(4136), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381681] = 3, - ACTIONS(3), 1, + ACTIONS(14029), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381358] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8736), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14033), 1, + anon_sym_SQUOTE, + STATE(8719), 1, sym_comment, - ACTIONS(4128), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381695] = 3, - ACTIONS(3), 1, + STATE(8722), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [381380] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8737), 1, + ACTIONS(14037), 1, + anon_sym_LF, + STATE(8720), 1, sym_comment, - ACTIONS(4124), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381709] = 3, - ACTIONS(3), 1, + ACTIONS(14035), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381396] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8738), 1, + ACTIONS(14041), 1, + anon_sym_LF, + STATE(8721), 1, sym_comment, - ACTIONS(4120), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381723] = 3, - ACTIONS(3), 1, + ACTIONS(14039), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381412] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(8739), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14043), 1, + anon_sym_SQUOTE, + STATE(8722), 1, sym_comment, - ACTIONS(4116), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381737] = 3, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [381434] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8740), 1, - sym_comment, - ACTIONS(4107), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(199), 1, anon_sym_DQUOTE, + ACTIONS(14047), 1, + aux_sym_path_token1, + STATE(4825), 1, + sym__str_double_quotes, + STATE(8723), 1, + sym_comment, + ACTIONS(14045), 2, sym__str_single_quotes, sym__str_back_ticks, - [381751] = 5, + [381454] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DASH, - ACTIONS(14139), 1, - anon_sym_EQ, - STATE(8741), 1, - sym_comment, - ACTIONS(4011), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [381769] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8742), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14049), 1, + anon_sym_DOT2, + STATE(8724), 1, sym_comment, - ACTIONS(4271), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [381783] = 6, + STATE(11446), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [381474] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14141), 1, - anon_sym_DQUOTE, - ACTIONS(14145), 1, - aux_sym_path_token1, - STATE(6447), 1, - sym__str_double_quotes, - STATE(8743), 1, + ACTIONS(14051), 1, + anon_sym_PIPE, + ACTIONS(14053), 1, + anon_sym_if, + ACTIONS(14055), 1, + anon_sym_EQ_GT, + STATE(8725), 1, sym_comment, - ACTIONS(14143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [381803] = 6, + STATE(9894), 1, + aux_sym_match_pattern_repeat1, + STATE(10786), 1, + sym_match_guard, + [381496] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(14149), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(4245), 1, - aux_sym_pipe_element_repeat1, - STATE(8744), 1, + STATE(8726), 1, sym_comment, - ACTIONS(14147), 2, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, - [381823] = 7, + anon_sym_PIPE, + anon_sym_RBRACE, + [381512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14152), 1, - anon_sym_SQUOTE, - STATE(8745), 1, + ACTIONS(14063), 1, + anon_sym_LF, + STATE(8727), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [381845] = 6, + ACTIONS(14061), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381528] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(10061), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14154), 1, - anon_sym_DOT2, - STATE(8746), 1, + ACTIONS(14059), 1, + anon_sym_LF, + STATE(8728), 1, sym_comment, - ACTIONS(2996), 2, - anon_sym_RBRACK, + ACTIONS(14057), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [381865] = 6, + [381544] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(10332), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14157), 1, - anon_sym_DOT2, - STATE(8747), 1, + ACTIONS(14063), 1, + anon_sym_LF, + STATE(8729), 1, sym_comment, - ACTIONS(3489), 2, - anon_sym_RBRACK, + ACTIONS(14061), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [381885] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(10174), 1, - anon_sym_DOT2, - STATE(8748), 1, - sym_comment, - ACTIONS(863), 2, - anon_sym_in, - sym_duration_unit, - [381905] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_DASH, - ACTIONS(10258), 1, - anon_sym_DOT2, - STATE(8749), 1, - sym_comment, - ACTIONS(1104), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [381923] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - anon_sym_DASH, - STATE(8750), 1, - sym_comment, - ACTIONS(4354), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [381939] = 4, + [381560] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8751), 1, + STATE(8730), 1, sym_comment, - ACTIONS(4432), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [381955] = 4, + [381576] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14162), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8752), 1, + STATE(8731), 1, sym_comment, - ACTIONS(14160), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [381971] = 7, + [381592] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14164), 1, - anon_sym_SQUOTE, - STATE(8745), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8753), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13492), 1, + anon_sym_SEMI, + ACTIONS(13494), 1, + anon_sym_LF, + ACTIONS(14065), 1, + ts_builtin_sym_end, + STATE(4385), 1, + aux_sym_pipe_element_repeat1, + STATE(8732), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [381993] = 4, + [381614] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8733), 1, + sym_comment, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [381630] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12774), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8754), 1, + STATE(8734), 1, sym_comment, - ACTIONS(12772), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382009] = 4, + [381646] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12793), 1, + ACTIONS(4156), 1, anon_sym_LF, - STATE(8755), 1, + STATE(8735), 1, sym_comment, - ACTIONS(12791), 4, + ACTIONS(4154), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382025] = 7, + [381662] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_RBRACK, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(14105), 1, - anon_sym_DOT2, - ACTIONS(14107), 1, - aux_sym_unquoted_token2, - ACTIONS(14166), 1, - aux_sym__immediate_decimal_token1, - STATE(8756), 1, + ACTIONS(14063), 1, + anon_sym_LF, + STATE(8736), 1, sym_comment, - [382047] = 4, + ACTIONS(14061), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381678] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12797), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8757), 1, + STATE(8737), 1, sym_comment, - ACTIONS(12795), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382063] = 4, + [381694] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12752), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8758), 1, + STATE(8738), 1, sym_comment, - ACTIONS(12750), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382079] = 4, + [381710] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14170), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8759), 1, + STATE(8739), 1, sym_comment, - ACTIONS(14168), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382095] = 7, + [381726] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14172), 1, + ACTIONS(14067), 1, anon_sym_SQUOTE, - STATE(8760), 1, + STATE(8740), 1, sym_comment, - STATE(8773), 1, + STATE(8742), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [382117] = 4, + [381748] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4442), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8761), 1, + STATE(8741), 1, sym_comment, - ACTIONS(4440), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382133] = 6, + [381764] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(2080), 1, - sym__terminator, - STATE(8762), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14069), 1, + anon_sym_SQUOTE, + STATE(8742), 1, sym_comment, - ACTIONS(4855), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [382153] = 4, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [381786] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8763), 1, + STATE(8743), 1, sym_comment, - ACTIONS(4490), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382169] = 6, + [381802] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14174), 1, + ACTIONS(14071), 1, anon_sym_DQUOTE, - ACTIONS(14178), 1, + ACTIONS(14075), 1, aux_sym_path_token1, - STATE(8585), 1, + STATE(4931), 1, sym__str_double_quotes, - STATE(8764), 1, + STATE(8744), 1, sym_comment, - ACTIONS(14176), 2, + ACTIONS(14073), 2, sym__str_single_quotes, sym__str_back_ticks, - [382189] = 4, + [381822] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14077), 1, + anon_sym_DOT2, + STATE(8745), 1, + sym_comment, + STATE(11432), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [381842] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4182), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8765), 1, + STATE(8746), 1, sym_comment, - ACTIONS(4180), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382205] = 7, + [381858] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14180), 1, - anon_sym_SQUOTE, - STATE(8766), 1, + ACTIONS(14059), 1, + anon_sym_LF, + STATE(8747), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [382227] = 4, + ACTIONS(14057), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381874] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8767), 1, + STATE(8748), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382243] = 7, + [381890] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14182), 1, - anon_sym_SQUOTE, - STATE(8766), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8768), 1, + ACTIONS(14059), 1, + anon_sym_LF, + STATE(8749), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [382265] = 4, + ACTIONS(14057), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381906] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8769), 1, + STATE(8750), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382281] = 5, + [381922] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_COLON, - ACTIONS(14045), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8770), 1, + STATE(8751), 1, sym_comment, - ACTIONS(14043), 3, + ACTIONS(14057), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382299] = 5, + [381938] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_COLON, - ACTIONS(14049), 1, - anon_sym_LF, - STATE(8771), 1, + ACTIONS(14079), 1, + anon_sym_DOT2, + STATE(8752), 1, sym_comment, - ACTIONS(14047), 3, + ACTIONS(3977), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACE, - [382317] = 4, + ACTIONS(3979), 2, + ts_builtin_sym_end, + anon_sym_LF, + [381956] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8772), 1, + STATE(8753), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382333] = 7, + [381972] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14188), 1, - anon_sym_SQUOTE, - STATE(8773), 1, + ACTIONS(14059), 1, + anon_sym_LF, + STATE(8754), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [382355] = 4, + ACTIONS(14057), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [381988] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8774), 1, + STATE(8755), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382371] = 4, + [382004] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14192), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8775), 1, + STATE(8756), 1, sym_comment, - ACTIONS(14190), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382387] = 6, - ACTIONS(3), 1, + [382020] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(13868), 1, - aux_sym_path_token1, - STATE(7162), 1, - sym__str_double_quotes, - STATE(8776), 1, + ACTIONS(14063), 1, + anon_sym_LF, + STATE(8757), 1, sym_comment, - ACTIONS(13866), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [382407] = 4, + ACTIONS(14061), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [382036] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14196), 1, + ACTIONS(14059), 1, anon_sym_LF, - STATE(8777), 1, + STATE(8758), 1, sym_comment, - ACTIONS(14194), 4, + ACTIONS(14057), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382423] = 4, + [382052] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14200), 1, + ACTIONS(14063), 1, anon_sym_LF, - STATE(8778), 1, + STATE(8759), 1, sym_comment, - ACTIONS(14198), 4, + ACTIONS(14061), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382439] = 6, + [382068] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + STATE(8760), 1, + sym_comment, + ACTIONS(1363), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382082] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1221), 1, + anon_sym_DASH, + STATE(8761), 1, + sym_comment, + ACTIONS(1223), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [382098] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14081), 1, + anon_sym_SQUOTE, + STATE(8762), 1, + sym_comment, + STATE(8764), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382120] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13880), 1, + anon_sym_SEMI, + ACTIONS(13882), 1, + anon_sym_LF, + ACTIONS(14083), 1, + ts_builtin_sym_end, + STATE(8763), 1, + sym_comment, + STATE(8894), 1, + aux_sym__block_body_repeat1, + STATE(9937), 1, + sym__terminator, + [382142] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14085), 1, + anon_sym_SQUOTE, + STATE(8764), 1, + sym_comment, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382164] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14087), 1, + anon_sym_DQUOTE, + ACTIONS(14091), 1, + aux_sym_path_token1, + STATE(1488), 1, + sym__str_double_quotes, + STATE(8765), 1, + sym_comment, + ACTIONS(14089), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [382184] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14202), 1, + ACTIONS(14093), 1, anon_sym_DOT2, - STATE(8779), 1, + STATE(8766), 1, sym_comment, - STATE(11426), 1, + STATE(11449), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [382459] = 4, + [382204] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14206), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8780), 1, + STATE(8767), 1, sym_comment, - ACTIONS(14204), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382475] = 4, + [382220] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8781), 1, + STATE(8768), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382491] = 4, + [382236] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8782), 1, + STATE(8769), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382507] = 4, + [382252] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8783), 1, + STATE(8770), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382523] = 4, + [382268] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8784), 1, + STATE(8771), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382539] = 4, + [382284] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8785), 1, + STATE(8772), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382555] = 4, + [382300] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8786), 1, + STATE(8773), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382571] = 4, + [382316] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8787), 1, + STATE(8774), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382587] = 4, + [382332] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8788), 1, + STATE(8775), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382603] = 4, + [382348] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8789), 1, + STATE(8776), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382619] = 4, + [382364] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8790), 1, + STATE(8777), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382635] = 6, + [382380] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(14210), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(4259), 1, - aux_sym_pipe_element_repeat1, - STATE(8791), 1, + STATE(8778), 1, sym_comment, - ACTIONS(14208), 2, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, - [382655] = 4, + anon_sym_PIPE, + anon_sym_RBRACE, + [382396] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1185), 1, + anon_sym_DASH, + STATE(8779), 1, + sym_comment, + ACTIONS(1187), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [382412] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14103), 1, + anon_sym_SQUOTE, + STATE(8780), 1, + sym_comment, + STATE(8781), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382434] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14105), 1, + anon_sym_SQUOTE, + STATE(8781), 1, + sym_comment, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8782), 1, + sym_comment, + ACTIONS(855), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [382472] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3611), 1, + anon_sym_DQUOTE, + ACTIONS(14109), 1, + aux_sym_path_token1, + STATE(5068), 1, + sym__str_double_quotes, + STATE(8783), 1, + sym_comment, + ACTIONS(14107), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [382492] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14111), 1, + anon_sym_DOT2, + STATE(8784), 1, + sym_comment, + STATE(11451), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [382512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8792), 1, + STATE(8785), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382671] = 6, + [382528] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(14113), 1, anon_sym_DQUOTE, - ACTIONS(14215), 1, + ACTIONS(14117), 1, aux_sym_path_token1, - STATE(8236), 1, + STATE(4252), 1, sym__str_double_quotes, - STATE(8793), 1, + STATE(8786), 1, sym_comment, - ACTIONS(14213), 2, + ACTIONS(14115), 2, sym__str_single_quotes, sym__str_back_ticks, - [382691] = 6, + [382548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14217), 1, + ACTIONS(4036), 1, + anon_sym_DASH, + ACTIONS(14119), 1, anon_sym_DOT2, - STATE(8794), 1, + STATE(8787), 1, sym_comment, - STATE(11408), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [382711] = 4, + ACTIONS(4038), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [382566] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3840), 1, + anon_sym_DASH, + ACTIONS(14121), 1, + anon_sym_DOT2, + STATE(8788), 1, + sym_comment, + ACTIONS(3842), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [382584] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8795), 1, + STATE(8789), 1, sym_comment, - ACTIONS(14219), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382727] = 7, + [382600] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14223), 1, - anon_sym_SQUOTE, - STATE(8796), 1, + ACTIONS(14123), 1, + anon_sym_DOT2, + STATE(8790), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [382749] = 4, + ACTIONS(4026), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4028), 2, + ts_builtin_sym_end, + anon_sym_LF, + [382618] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3903), 1, + anon_sym_DASH, + ACTIONS(14125), 1, + anon_sym_DOT2, + STATE(8791), 1, + sym_comment, + ACTIONS(3905), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [382636] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3909), 1, + anon_sym_DASH, + ACTIONS(14127), 1, + anon_sym_DOT2, + STATE(8792), 1, + sym_comment, + ACTIONS(3911), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [382654] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(4239), 1, anon_sym_LF, - STATE(8797), 1, + STATE(8793), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(4237), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382765] = 7, + [382670] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8794), 1, + sym_comment, + ACTIONS(4332), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382684] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8795), 1, + sym_comment, + ACTIONS(4336), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382698] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8796), 1, + sym_comment, + ACTIONS(1370), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382712] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14225), 1, + ACTIONS(14129), 1, anon_sym_SQUOTE, - STATE(8796), 1, + STATE(8797), 1, + sym_comment, + STATE(8799), 1, aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382734] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(8798), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [382787] = 7, + ACTIONS(4340), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382748] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14227), 1, - anon_sym_DOT2, - ACTIONS(14229), 1, - anon_sym_LPAREN2, - ACTIONS(14231), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14233), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14235), 1, - aux_sym__record_key_token1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14131), 1, + anon_sym_SQUOTE, STATE(8799), 1, sym_comment, - [382809] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [382770] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14186), 1, - anon_sym_LF, STATE(8800), 1, sym_comment, - ACTIONS(14184), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [382825] = 7, + ACTIONS(4344), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [382784] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1005), 1, - sym_identifier, - ACTIONS(1007), 1, - anon_sym_DOLLAR, - ACTIONS(14097), 1, - anon_sym_DOT2, - ACTIONS(14099), 1, - aux_sym_unquoted_token2, - ACTIONS(14237), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(14117), 1, + aux_sym_path_token1, + STATE(4252), 1, + sym__str_double_quotes, STATE(8801), 1, sym_comment, - [382847] = 4, + ACTIONS(14115), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [382804] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14133), 1, + anon_sym_DOT2, + STATE(8802), 1, + sym_comment, + STATE(11454), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [382824] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14097), 1, anon_sym_LF, - STATE(8802), 1, + STATE(8803), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382863] = 4, + [382840] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14101), 1, anon_sym_LF, - STATE(8803), 1, + STATE(8804), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382879] = 7, + [382856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, - anon_sym_DOT2, - ACTIONS(13987), 1, - anon_sym_LPAREN2, - ACTIONS(13989), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13991), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14239), 1, - sym_short_flag_identifier, - STATE(8804), 1, - sym_comment, - [382901] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - ACTIONS(14241), 1, - anon_sym_RPAREN, - STATE(1927), 1, - sym__terminator, + ACTIONS(1209), 1, + anon_sym_DASH, STATE(8805), 1, sym_comment, - STATE(9012), 1, - aux_sym__block_body_repeat1, - [382923] = 4, + ACTIONS(1211), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [382872] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14097), 1, anon_sym_LF, STATE(8806), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382939] = 3, - ACTIONS(3), 1, + [382888] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14101), 1, + anon_sym_LF, STATE(8807), 1, sym_comment, - ACTIONS(1334), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [382953] = 4, + ACTIONS(14099), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [382904] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14097), 1, anon_sym_LF, STATE(8808), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382969] = 4, + [382920] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(4246), 1, anon_sym_LF, STATE(8809), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(4244), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [382985] = 4, + [382936] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14101), 1, anon_sym_LF, STATE(8810), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383001] = 3, - ACTIONS(3), 1, + [382952] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14097), 1, + anon_sym_LF, STATE(8811), 1, sym_comment, - ACTIONS(1327), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [383015] = 6, + ACTIONS(14095), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [382968] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(10332), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14243), 1, - anon_sym_DOT2, + ACTIONS(14101), 1, + anon_sym_LF, STATE(8812), 1, sym_comment, - ACTIONS(3489), 2, - anon_sym_RBRACK, + ACTIONS(14099), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [383035] = 4, + [382984] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14247), 1, + ACTIONS(14097), 1, anon_sym_LF, STATE(8813), 1, sym_comment, - ACTIONS(14245), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383051] = 3, - ACTIONS(3), 1, + [383000] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14101), 1, + anon_sym_LF, STATE(8814), 1, sym_comment, - ACTIONS(1323), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [383065] = 6, - ACTIONS(3), 1, + ACTIONS(14099), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [383016] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14249), 1, - anon_sym_DOT2, + ACTIONS(12738), 1, + anon_sym_LF, STATE(8815), 1, sym_comment, - STATE(11357), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [383085] = 4, + ACTIONS(12736), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [383032] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14137), 1, + ACTIONS(14097), 1, anon_sym_LF, STATE(8816), 1, sym_comment, - ACTIONS(14135), 4, + ACTIONS(14095), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383101] = 4, + [383048] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14186), 1, + ACTIONS(14101), 1, anon_sym_LF, STATE(8817), 1, sym_comment, - ACTIONS(14184), 4, + ACTIONS(14099), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383117] = 3, + [383064] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8818), 1, sym_comment, - ACTIONS(1315), 5, + ACTIONS(1268), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [383131] = 6, + [383078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14251), 1, - anon_sym_DOT2, STATE(8819), 1, sym_comment, - STATE(11408), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [383151] = 5, + ACTIONS(894), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 3, + anon_sym_in, + anon_sym_DOT2, + sym_duration_unit, + [383094] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14253), 1, - anon_sym_EQ, + ACTIONS(12742), 1, + anon_sym_LF, STATE(8820), 1, sym_comment, - ACTIONS(4007), 2, + ACTIONS(12740), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4011), 2, - ts_builtin_sym_end, - anon_sym_LF, - [383169] = 4, + anon_sym_RBRACE, + [383110] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14135), 1, + anon_sym_SQUOTE, + STATE(8821), 1, + sym_comment, + STATE(8823), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, + ACTIONS(1213), 1, anon_sym_DASH, - STATE(8821), 1, + STATE(8822), 1, sym_comment, - ACTIONS(4338), 4, + ACTIONS(1215), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [383185] = 4, + anon_sym_DOT2, + [383148] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, - STATE(8822), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14137), 1, + anon_sym_SQUOTE, + STATE(8823), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383201] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3150), 1, + ACTIONS(14139), 1, anon_sym_DQUOTE, - ACTIONS(13868), 1, + ACTIONS(14143), 1, aux_sym_path_token1, - STATE(7162), 1, + STATE(562), 1, sym__str_double_quotes, - STATE(8823), 1, + STATE(8824), 1, sym_comment, - ACTIONS(13866), 2, + ACTIONS(14141), 2, sym__str_single_quotes, sym__str_back_ticks, - [383221] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, - STATE(8824), 1, - sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383237] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14259), 1, - anon_sym_SQUOTE, - STATE(8825), 1, - sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [383259] = 6, + [383190] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - STATE(8826), 1, + ACTIONS(14145), 1, + anon_sym_DOT2, + STATE(8825), 1, sym_comment, - STATE(10446), 1, + STATE(11025), 1, sym__immediate_decimal, - ACTIONS(14075), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [383279] = 4, - ACTIONS(105), 1, + [383210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, + STATE(8826), 1, + sym_comment, + ACTIONS(14147), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383224] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9205), 1, + sym_duration_unit, + ACTIONS(13940), 1, + sym_filesize_unit, STATE(8827), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(10471), 3, anon_sym_PIPE, - anon_sym_RBRACE, - [383295] = 7, - ACTIONS(105), 1, + anon_sym_if, + anon_sym_EQ_GT, + [383242] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14261), 1, - anon_sym_SQUOTE, STATE(8828), 1, sym_comment, - STATE(8841), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [383317] = 4, - ACTIONS(105), 1, + ACTIONS(1268), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383256] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8829), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383333] = 4, - ACTIONS(105), 1, + ACTIONS(14149), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383270] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, + ACTIONS(2998), 1, + anon_sym_DASH, STATE(8830), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383349] = 4, - ACTIONS(105), 1, + ACTIONS(3000), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [383286] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8831), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383365] = 4, + ACTIONS(4392), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383300] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14170), 1, + ACTIONS(12746), 1, anon_sym_LF, STATE(8832), 1, sym_comment, - ACTIONS(14168), 4, + ACTIONS(12744), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383381] = 6, + [383316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - ACTIONS(14265), 1, - aux_sym_path_token1, - STATE(5701), 1, - sym__str_double_quotes, STATE(8833), 1, sym_comment, - ACTIONS(14263), 2, + ACTIONS(4396), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [383401] = 4, + [383330] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14257), 1, + ACTIONS(12750), 1, anon_sym_LF, STATE(8834), 1, sym_comment, - ACTIONS(14255), 4, + ACTIONS(12748), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383417] = 7, - ACTIONS(105), 1, + [383346] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14267), 1, - anon_sym_SQUOTE, STATE(8835), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [383439] = 4, + ACTIONS(4400), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383360] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14170), 1, + ACTIONS(14153), 1, anon_sym_LF, STATE(8836), 1, sym_comment, - ACTIONS(14168), 4, + ACTIONS(14151), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [383455] = 7, - ACTIONS(105), 1, + [383376] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14269), 1, - anon_sym_SQUOTE, - STATE(8835), 1, - aux_sym__inter_single_quotes_repeat1, STATE(8837), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [383477] = 4, - ACTIONS(105), 1, + ACTIONS(4408), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383390] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8838), 1, - sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383493] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2998), 1, - sym__entry_separator, - ACTIONS(10061), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(14271), 1, - anon_sym_DOT2, - STATE(8839), 1, - sym_comment, - ACTIONS(2996), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [383513] = 4, - ACTIONS(105), 1, + sym_comment, + ACTIONS(4414), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383404] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, - STATE(8840), 1, + STATE(8839), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383529] = 7, + ACTIONS(4457), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383418] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14273), 1, + ACTIONS(14155), 1, anon_sym_SQUOTE, - STATE(8841), 1, + STATE(8840), 1, sym_comment, - STATE(9161), 1, + STATE(8843), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [383551] = 4, - ACTIONS(105), 1, + [383440] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8841), 1, + sym_comment, + ACTIONS(4464), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383454] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8842), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383567] = 4, + ACTIONS(4476), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383468] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14157), 1, + anon_sym_SQUOTE, STATE(8843), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383583] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, + ACTIONS(14159), 1, anon_sym_DQUOTE, - ACTIONS(14277), 1, + ACTIONS(14163), 1, aux_sym_path_token1, - STATE(4694), 1, + STATE(1156), 1, sym__str_double_quotes, STATE(8844), 1, sym_comment, - ACTIONS(14275), 2, + ACTIONS(14161), 2, sym__str_single_quotes, sym__str_back_ticks, - [383603] = 6, - ACTIONS(105), 1, + [383510] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(2003), 1, - sym__terminator, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14165), 1, + anon_sym_DOT2, STATE(8845), 1, sym_comment, - ACTIONS(14279), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [383623] = 4, - ACTIONS(105), 1, + STATE(11410), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [383530] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8846), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383639] = 6, + ACTIONS(4480), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14281), 1, - anon_sym_DOT2, STATE(8847), 1, sym_comment, - STATE(11422), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [383659] = 4, - ACTIONS(105), 1, + ACTIONS(4484), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383558] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8848), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383675] = 4, - ACTIONS(105), 1, + ACTIONS(4088), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383572] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8849), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383691] = 4, - ACTIONS(105), 1, + ACTIONS(4092), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383586] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8850), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383707] = 7, - ACTIONS(105), 1, + ACTIONS(4152), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383600] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14283), 1, - anon_sym_SQUOTE, - STATE(8825), 1, - aux_sym__inter_single_quotes_repeat1, STATE(8851), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [383729] = 4, - ACTIONS(105), 1, + ACTIONS(4166), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383614] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8852), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383745] = 4, - ACTIONS(105), 1, + ACTIONS(4170), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383628] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8853), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383761] = 4, - ACTIONS(105), 1, + ACTIONS(4174), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383642] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8854), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383777] = 7, - ACTIONS(3), 1, + ACTIONS(4178), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383656] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11977), 1, - anon_sym_DOLLAR, - ACTIONS(13616), 1, - sym_identifier, - STATE(1506), 1, - sym__var, - STATE(2066), 1, - sym__variable_name, - STATE(2107), 1, - sym_val_variable, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14167), 1, + anon_sym_SQUOTE, STATE(8855), 1, sym_comment, - [383799] = 4, - ACTIONS(105), 1, + STATE(8857), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383678] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8856), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383815] = 4, + ACTIONS(4186), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383692] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14169), 1, + anon_sym_SQUOTE, STATE(8857), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383831] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14285), 1, + ACTIONS(3150), 1, anon_sym_DQUOTE, - ACTIONS(14289), 1, + ACTIONS(14173), 1, aux_sym_path_token1, - STATE(455), 1, + STATE(4793), 1, sym__str_double_quotes, STATE(8858), 1, sym_comment, - ACTIONS(14287), 2, + ACTIONS(14171), 2, sym__str_single_quotes, sym__str_back_ticks, - [383851] = 4, - ACTIONS(105), 1, + [383734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8859), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383867] = 7, - ACTIONS(105), 1, + ACTIONS(4199), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383748] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14291), 1, - anon_sym_SQUOTE, STATE(8860), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [383889] = 4, + ACTIONS(4203), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383762] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, + ACTIONS(14175), 1, + anon_sym_DOT2, + ACTIONS(14177), 1, + anon_sym_LPAREN2, + ACTIONS(14179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14181), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14183), 1, + aux_sym__record_key_token1, STATE(8861), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383905] = 4, - ACTIONS(105), 1, + [383784] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14170), 1, - anon_sym_LF, STATE(8862), 1, sym_comment, - ACTIONS(14168), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383921] = 4, - ACTIONS(105), 1, + ACTIONS(4217), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383798] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14257), 1, - anon_sym_LF, STATE(8863), 1, sym_comment, - ACTIONS(14255), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383937] = 3, + ACTIONS(4233), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383812] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2957), 1, + anon_sym_DASH, STATE(8864), 1, sym_comment, - ACTIONS(1311), 5, + ACTIONS(2959), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [383828] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8865), 1, + sym_comment, + ACTIONS(4261), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [383951] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14293), 1, - anon_sym_SQUOTE, - STATE(8860), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8865), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [383973] = 4, - ACTIONS(105), 1, + [383842] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14045), 1, - anon_sym_LF, STATE(8866), 1, sym_comment, - ACTIONS(14043), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [383989] = 4, + ACTIONS(4291), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383856] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14297), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14185), 1, + anon_sym_SQUOTE, STATE(8867), 1, sym_comment, - ACTIONS(14295), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384005] = 5, + STATE(8870), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383878] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9440), 1, - sym_duration_unit, - ACTIONS(14299), 1, - sym_filesize_unit, STATE(8868), 1, sym_comment, - ACTIONS(1104), 3, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_LBRACE, - [384023] = 6, + ACTIONS(4313), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14083), 1, - anon_sym_DOT2, - ACTIONS(14085), 1, - aux_sym_unquoted_token2, - ACTIONS(14301), 1, - aux_sym__immediate_decimal_token1, STATE(8869), 1, sym_comment, - ACTIONS(1007), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [384043] = 4, + ACTIONS(4317), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383906] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14305), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14187), 1, + anon_sym_SQUOTE, STATE(8870), 1, sym_comment, - ACTIONS(14303), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384059] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [383928] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(13872), 1, + aux_sym_path_token1, + STATE(4010), 1, + sym__str_double_quotes, STATE(8871), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384075] = 5, + ACTIONS(13870), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [383948] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3941), 1, - anon_sym_DASH, - ACTIONS(14311), 1, - anon_sym_DOT2, STATE(8872), 1, sym_comment, - ACTIONS(3943), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1272), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [384093] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3935), 1, - anon_sym_DASH, - ACTIONS(14313), 1, - anon_sym_DOT2, STATE(8873), 1, sym_comment, - ACTIONS(3937), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4324), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [384111] = 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [383976] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8874), 1, sym_comment, - ACTIONS(1307), 5, + ACTIONS(4328), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384125] = 6, + [383990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(8875), 1, sym_comment, - STATE(10428), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [384145] = 3, + ACTIONS(4370), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384004] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8876), 1, sym_comment, - ACTIONS(992), 5, + ACTIONS(4374), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384159] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, - STATE(8877), 1, - sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384175] = 3, + [384018] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8878), 1, + STATE(8877), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(4378), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384189] = 3, + [384032] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8879), 1, + STATE(8878), 1, sym_comment, - ACTIONS(1296), 5, + ACTIONS(4382), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384203] = 3, + [384046] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8880), 1, + STATE(8879), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1439), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384217] = 4, + [384060] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14189), 1, + anon_sym_SQUOTE, + STATE(8880), 1, + sym_comment, + STATE(8883), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384082] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3804), 1, + anon_sym_DASH, STATE(8881), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384233] = 4, - ACTIONS(105), 1, + ACTIONS(3806), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [384098] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, STATE(8882), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384249] = 4, + ACTIONS(4388), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384112] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14191), 1, + anon_sym_SQUOTE, STATE(8883), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384265] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384134] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, STATE(8884), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384281] = 4, - ACTIONS(105), 1, + ACTIONS(4404), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384148] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(14193), 1, + anon_sym_DQUOTE, + ACTIONS(14197), 1, + aux_sym_path_token1, + STATE(484), 1, + sym__str_double_quotes, STATE(8885), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384297] = 3, + ACTIONS(14195), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [384168] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8886), 1, sym_comment, - ACTIONS(1104), 5, + ACTIONS(4418), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384311] = 4, + [384182] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(11521), 1, + aux_sym_unquoted_token3, STATE(8887), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384327] = 4, + ACTIONS(827), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [384200] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(879), 1, + sym__entry_separator, + ACTIONS(9387), 1, + aux_sym_unquoted_token6, STATE(8888), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384343] = 4, - ACTIONS(105), 1, + ACTIONS(877), 3, + anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + [384218] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(11979), 1, + anon_sym_DOLLAR, + ACTIONS(13647), 1, + sym_identifier, + STATE(1469), 1, + sym__var, + STATE(1971), 1, + sym__variable_name, + STATE(1996), 1, + sym_val_variable, STATE(8889), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384359] = 4, + [384240] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14199), 1, + anon_sym_SQUOTE, STATE(8890), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384375] = 3, + STATE(8892), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384262] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(8891), 1, sym_comment, - ACTIONS(1280), 5, + ACTIONS(4422), 5, sym_cmd_identifier, anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384389] = 4, + [384276] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14201), 1, + anon_sym_SQUOTE, STATE(8892), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384405] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, - STATE(8893), 1, - sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384421] = 3, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384298] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(8894), 1, - sym_comment, - ACTIONS(1276), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, + ACTIONS(5596), 1, anon_sym_DQUOTE, + ACTIONS(14205), 1, + aux_sym_path_token1, + STATE(5456), 1, + sym__str_double_quotes, + STATE(8893), 1, + sym_comment, + ACTIONS(14203), 2, sym__str_single_quotes, sym__str_back_ticks, - [384435] = 4, + [384318] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, + ACTIONS(14207), 1, + ts_builtin_sym_end, + ACTIONS(14209), 1, + anon_sym_SEMI, + ACTIONS(14212), 1, anon_sym_LF, - STATE(8895), 1, + STATE(9937), 1, + sym__terminator, + STATE(8894), 2, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384451] = 7, + aux_sym__block_body_repeat1, + [384338] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14319), 1, + ACTIONS(14215), 1, anon_sym_SQUOTE, - STATE(8896), 1, + STATE(8895), 1, sym_comment, - STATE(8908), 1, + STATE(8909), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [384473] = 5, + [384360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3927), 1, - anon_sym_DASH, - ACTIONS(14321), 1, - anon_sym_DOT2, - STATE(8897), 1, + STATE(8896), 1, sym_comment, - ACTIONS(3929), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4426), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [384491] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14323), 1, + STATE(8897), 1, + sym_comment, + ACTIONS(4472), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(14327), 1, - aux_sym_path_token1, - STATE(4347), 1, - sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [384388] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(8898), 1, sym_comment, - ACTIONS(14325), 2, + ACTIONS(4265), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384511] = 5, + [384402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3921), 1, - anon_sym_DASH, - ACTIONS(14329), 1, - anon_sym_DOT2, STATE(8899), 1, sym_comment, - ACTIONS(3923), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(931), 5, + sym_cmd_identifier, anon_sym_DASH_DASH, - [384529] = 5, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384416] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3915), 1, - anon_sym_DASH, - ACTIONS(14331), 1, - anon_sym_DOT2, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14217), 1, + anon_sym_SQUOTE, STATE(8900), 1, sym_comment, - ACTIONS(3917), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [384547] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3909), 1, - anon_sym_DASH, - ACTIONS(14333), 1, - anon_sym_DOT2, STATE(8901), 1, - sym_comment, - ACTIONS(3911), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [384565] = 4, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384438] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14049), 1, - anon_sym_LF, - STATE(8902), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14219), 1, + anon_sym_SQUOTE, + STATE(8901), 1, sym_comment, - ACTIONS(14047), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384581] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(199), 1, + ACTIONS(3041), 1, anon_sym_DQUOTE, - ACTIONS(14121), 1, + ACTIONS(14223), 1, aux_sym_path_token1, - STATE(4006), 1, + STATE(8097), 1, sym__str_double_quotes, + STATE(8902), 1, + sym_comment, + ACTIONS(14221), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [384480] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(8903), 1, sym_comment, - ACTIONS(14119), 2, + ACTIONS(4488), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384601] = 5, + [384494] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9930), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13477), 1, + anon_sym_SEMI, + ACTIONS(13479), 1, + anon_sym_LF, + ACTIONS(14225), 1, + ts_builtin_sym_end, + STATE(4233), 1, + aux_sym_pipe_element_repeat1, STATE(8904), 1, sym_comment, - ACTIONS(861), 3, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - [384619] = 7, + [384516] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14335), 1, - anon_sym_SQUOTE, + ACTIONS(2285), 1, + anon_sym_COLON, + ACTIONS(14229), 1, + anon_sym_LF, STATE(8905), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [384641] = 7, + ACTIONS(14227), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACE, + [384534] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10138), 1, - anon_sym_RBRACK, - ACTIONS(10144), 1, - sym__entry_separator, - ACTIONS(14337), 1, - anon_sym_DOT2, - ACTIONS(14339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14341), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(2285), 1, + anon_sym_COLON, + ACTIONS(14233), 1, + anon_sym_LF, STATE(8906), 1, sym_comment, - [384663] = 7, - ACTIONS(105), 1, + ACTIONS(14231), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACE, + [384552] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14343), 1, - anon_sym_SQUOTE, - STATE(8905), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(4032), 1, + anon_sym_DASH, STATE(8907), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [384685] = 7, + ACTIONS(4034), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [384568] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(8908), 1, + sym_comment, + ACTIONS(4301), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384582] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14345), 1, + ACTIONS(14235), 1, anon_sym_SQUOTE, - STATE(8908), 1, + STATE(8909), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [384707] = 7, + [384604] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14091), 1, - ts_builtin_sym_end, - ACTIONS(14093), 1, - anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, - STATE(8909), 1, - sym_comment, - STATE(9152), 1, - aux_sym__block_body_repeat1, - STATE(9884), 1, - sym__terminator, - [384729] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14237), 1, + anon_sym_SQUOTE, STATE(8910), 1, sym_comment, - STATE(10535), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [384749] = 6, + STATE(8912), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14347), 1, - anon_sym_DQUOTE, - ACTIONS(14351), 1, - aux_sym_path_token1, - STATE(5195), 1, - sym__str_double_quotes, STATE(8911), 1, sym_comment, - ACTIONS(14349), 2, + ACTIONS(4062), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384769] = 4, + [384640] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14239), 1, + anon_sym_SQUOTE, STATE(8912), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384785] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384662] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(13890), 1, + aux_sym_path_token1, + STATE(7166), 1, + sym__str_double_quotes, STATE(8913), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384801] = 6, + ACTIONS(13888), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [384682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14353), 1, - anon_sym_DOT2, + ACTIONS(14241), 1, + anon_sym_DQUOTE, + ACTIONS(14245), 1, + aux_sym_path_token1, + STATE(8407), 1, + sym__str_double_quotes, STATE(8914), 1, sym_comment, - STATE(11440), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [384821] = 4, - ACTIONS(105), 1, + ACTIONS(14243), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [384702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(14247), 1, + anon_sym_DOT2, STATE(8915), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3979), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - [384837] = 4, - ACTIONS(105), 1, + [384718] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, STATE(8916), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384853] = 4, - ACTIONS(105), 1, + ACTIONS(4070), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384732] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(14249), 1, + anon_sym_use, + ACTIONS(14251), 1, + anon_sym_list, + ACTIONS(14253), 1, + anon_sym_hide, + ACTIONS(14255), 1, + anon_sym_new, STATE(8917), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384869] = 4, + [384754] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(14257), 1, + anon_sym_EQ, STATE(8918), 1, sym_comment, - ACTIONS(14219), 4, + ACTIONS(3942), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [384885] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14309), 1, + ACTIONS(3946), 2, + ts_builtin_sym_end, anon_sym_LF, + [384772] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14259), 1, + anon_sym_DOT2, STATE(8919), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384901] = 4, - ACTIONS(105), 1, + STATE(11406), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [384792] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + ACTIONS(4295), 1, + anon_sym_DASH, STATE(8920), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384917] = 4, + ACTIONS(4297), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [384808] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14309), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14261), 1, + anon_sym_SQUOTE, STATE(8921), 1, sym_comment, - ACTIONS(14307), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384933] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, - STATE(8922), 1, - sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384949] = 3, + STATE(8923), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384830] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(8923), 1, + STATE(8922), 1, sym_comment, - ACTIONS(14355), 5, - sym_identifier, - anon_sym_GT, + ACTIONS(1276), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [384963] = 3, + [384844] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14263), 1, + anon_sym_SQUOTE, + STATE(8923), 1, + sym_comment, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384866] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14265), 1, + anon_sym_DQUOTE, + ACTIONS(14269), 1, + aux_sym_path_token1, + STATE(6416), 1, + sym__str_double_quotes, STATE(8924), 1, sym_comment, - ACTIONS(14357), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + ACTIONS(14267), 2, sym__str_single_quotes, sym__str_back_ticks, - [384977] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, - STATE(8925), 1, - sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [384993] = 4, - ACTIONS(105), 1, + [384886] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14221), 1, - anon_sym_LF, + STATE(8925), 1, + sym_comment, + ACTIONS(1280), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384900] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14111), 1, + anon_sym_DOT2, STATE(8926), 1, sym_comment, - ACTIONS(14219), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385009] = 4, - ACTIONS(105), 1, + STATE(11355), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [384920] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(4831), 1, + anon_sym_DASH, STATE(8927), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385025] = 4, + ACTIONS(4833), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + [384936] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14271), 1, + anon_sym_SQUOTE, STATE(8928), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385041] = 6, - ACTIONS(3), 1, + STATE(8929), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384958] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14273), 1, + anon_sym_SQUOTE, STATE(8929), 1, sym_comment, - STATE(10663), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385061] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [384980] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, STATE(8930), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385077] = 6, + ACTIONS(4074), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [384994] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14275), 1, + anon_sym_DQUOTE, + ACTIONS(14279), 1, + aux_sym_path_token1, + STATE(2715), 1, + sym__str_double_quotes, STATE(8931), 1, sym_comment, - STATE(10434), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385097] = 4, + ACTIONS(14277), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385014] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(10266), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14281), 1, + anon_sym_DOT2, STATE(8932), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3165), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [385113] = 6, + [385034] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3531), 1, - anon_sym_DQUOTE, - ACTIONS(14361), 1, - aux_sym_path_token1, - STATE(4784), 1, - sym__str_double_quotes, + ACTIONS(13846), 1, + anon_sym_DOT2, + ACTIONS(13848), 1, + anon_sym_LPAREN2, + ACTIONS(13850), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13852), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14284), 1, + sym_short_flag_identifier, STATE(8933), 1, sym_comment, - ACTIONS(14359), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [385133] = 6, + [385056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(8934), 1, sym_comment, - STATE(10791), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385153] = 7, + ACTIONS(4078), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [385070] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14363), 1, + ACTIONS(14286), 1, anon_sym_SQUOTE, STATE(8935), 1, sym_comment, - STATE(9161), 1, + STATE(8936), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [385175] = 4, + [385092] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14288), 1, + anon_sym_SQUOTE, STATE(8936), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385191] = 3, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385114] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5804), 1, + anon_sym_DQUOTE, + ACTIONS(14292), 1, + aux_sym_path_token1, + STATE(4413), 1, + sym__str_double_quotes, STATE(8937), 1, sym_comment, - ACTIONS(14365), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(14290), 2, sym__str_single_quotes, sym__str_back_ticks, - [385205] = 6, - ACTIONS(3), 1, + [385134] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14294), 1, + anon_sym_SQUOTE, STATE(8938), 1, sym_comment, - STATE(10906), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385225] = 6, - ACTIONS(3), 1, + STATE(8939), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385156] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14367), 1, - anon_sym_DOT2, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14296), 1, + anon_sym_SQUOTE, STATE(8939), 1, sym_comment, - STATE(11475), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385245] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385178] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(5937), 1, + anon_sym_DQUOTE, + ACTIONS(14300), 1, + aux_sym_path_token1, + STATE(4995), 1, + sym__str_double_quotes, STATE(8940), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385261] = 7, + ACTIONS(14298), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385198] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14369), 1, + ACTIONS(14302), 1, anon_sym_SQUOTE, - STATE(8935), 1, - aux_sym__inter_single_quotes_repeat1, STATE(8941), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [385283] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, - STATE(8942), 1, - sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385299] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, STATE(8943), 1, - sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385315] = 6, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385220] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(949), 1, + sym_identifier, + ACTIONS(951), 1, + anon_sym_DOLLAR, + ACTIONS(14304), 1, anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(14306), 1, aux_sym__immediate_decimal_token1, - STATE(8944), 1, + ACTIONS(14308), 1, + aux_sym_unquoted_token2, + STATE(8942), 1, sym_comment, - STATE(11001), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385335] = 4, + [385242] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, - STATE(8945), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14310), 1, + anon_sym_SQUOTE, + STATE(8943), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385351] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385264] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(199), 1, + ACTIONS(6069), 1, anon_sym_DQUOTE, - ACTIONS(14373), 1, + ACTIONS(14314), 1, aux_sym_path_token1, - STATE(4912), 1, + STATE(6033), 1, sym__str_double_quotes, - STATE(8946), 1, + STATE(8944), 1, sym_comment, - ACTIONS(14371), 2, + ACTIONS(14312), 2, sym__str_single_quotes, sym__str_back_ticks, - [385371] = 4, + [385284] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14316), 1, + anon_sym_DOT2, + STATE(8945), 1, + sym_comment, + ACTIONS(4028), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + [385300] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14317), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(14320), 1, anon_sym_LF, - STATE(8947), 1, + STATE(4294), 1, + aux_sym_pipe_element_repeat1, + STATE(8946), 1, sym_comment, - ACTIONS(14315), 4, + ACTIONS(14318), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385387] = 6, + [385320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4835), 1, + anon_sym_DASH, + STATE(8947), 1, + sym_comment, + ACTIONS(4837), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + [385336] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14323), 1, + anon_sym_catch, STATE(8948), 1, sym_comment, - STATE(11140), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385407] = 4, + ACTIONS(13699), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13701), 2, + ts_builtin_sym_end, + anon_sym_LF, + [385354] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(14327), 1, anon_sym_LF, + STATE(4311), 1, + aux_sym_pipe_element_repeat1, STATE(8949), 1, sym_comment, - ACTIONS(13804), 4, + ACTIONS(14325), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385423] = 4, + [385374] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14330), 1, + anon_sym_SQUOTE, STATE(8950), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385439] = 6, - ACTIONS(3), 1, + STATE(8951), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385396] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - ACTIONS(9664), 1, - anon_sym_DOT2, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14332), 1, + anon_sym_SQUOTE, STATE(8951), 1, sym_comment, - ACTIONS(863), 2, - anon_sym_LBRACE, - sym_duration_unit, - [385459] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14077), 1, - anon_sym_DOT2, - ACTIONS(14079), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3798), 1, + anon_sym_DQUOTE, + ACTIONS(13890), 1, + aux_sym_path_token1, + STATE(7166), 1, + sym__str_double_quotes, STATE(8952), 1, sym_comment, - STATE(10524), 1, - sym__immediate_decimal, - ACTIONS(14081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385479] = 4, + ACTIONS(13888), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385438] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14334), 1, + anon_sym_SQUOTE, STATE(8953), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385495] = 3, - ACTIONS(3), 1, + STATE(8954), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385460] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14336), 1, + anon_sym_SQUOTE, STATE(8954), 1, sym_comment, - ACTIONS(14375), 5, - sym_cmd_identifier, - anon_sym_RBRACK, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385482] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14338), 1, anon_sym_DQUOTE, + ACTIONS(14342), 1, + aux_sym_path_token1, + STATE(6066), 1, + sym__str_double_quotes, + STATE(8955), 1, + sym_comment, + ACTIONS(14340), 2, sym__str_single_quotes, sym__str_back_ticks, - [385509] = 5, + [385502] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14377), 1, - anon_sym_catch, - STATE(8955), 1, - sym_comment, - ACTIONS(13435), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13437), 2, - ts_builtin_sym_end, - anon_sym_LF, - [385527] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1259), 1, - anon_sym_DASH, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14344), 1, + anon_sym_SQUOTE, STATE(8956), 1, sym_comment, - ACTIONS(1261), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [385543] = 6, - ACTIONS(3), 1, + STATE(8957), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385524] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14346), 1, + anon_sym_SQUOTE, STATE(8957), 1, sym_comment, - STATE(11254), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385563] = 4, - ACTIONS(105), 1, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385546] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(14348), 1, + anon_sym_DQUOTE, + ACTIONS(14352), 1, + aux_sym_path_token1, + STATE(2833), 1, + sym__str_double_quotes, STATE(8958), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385579] = 4, + ACTIONS(14350), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385566] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14354), 1, + anon_sym_SQUOTE, STATE(8959), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385595] = 4, + STATE(8960), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385588] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14356), 1, + anon_sym_SQUOTE, STATE(8960), 1, sym_comment, - ACTIONS(14379), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385611] = 6, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14358), 1, + anon_sym_DQUOTE, + ACTIONS(14362), 1, + aux_sym_path_token1, + STATE(6503), 1, + sym__str_double_quotes, STATE(8961), 1, sym_comment, - STATE(11372), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385631] = 4, + ACTIONS(14360), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385630] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14364), 1, + anon_sym_SQUOTE, STATE(8962), 1, sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385647] = 7, + STATE(8963), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385652] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14383), 1, + ACTIONS(14366), 1, anon_sym_SQUOTE, STATE(8963), 1, sym_comment, - STATE(8975), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [385669] = 4, - ACTIONS(105), 1, + [385674] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(14368), 1, + anon_sym_DQUOTE, + ACTIONS(14372), 1, + aux_sym_path_token1, + STATE(2408), 1, + sym__str_double_quotes, STATE(8964), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385685] = 5, + ACTIONS(14370), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385694] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14385), 1, - anon_sym_DOT2, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14374), 1, + anon_sym_SQUOTE, STATE(8965), 1, sym_comment, - ACTIONS(3921), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3923), 2, - ts_builtin_sym_end, - anon_sym_LF, - [385703] = 6, + STATE(8967), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [385716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(8966), 1, sym_comment, - STATE(11477), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385723] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14387), 1, - anon_sym_DOT2, - STATE(8967), 1, - sym_comment, - STATE(11412), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385743] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14389), 1, + ACTIONS(1305), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(14393), 1, - aux_sym_path_token1, - STATE(1170), 1, - sym__str_double_quotes, - STATE(8968), 1, - sym_comment, - ACTIONS(14391), 2, sym__str_single_quotes, sym__str_back_ticks, - [385763] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, - STATE(8969), 1, - sym_comment, - ACTIONS(13804), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385779] = 7, + [385730] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14395), 1, + ACTIONS(14376), 1, anon_sym_SQUOTE, - STATE(8970), 1, + STATE(8967), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [385801] = 6, - ACTIONS(3), 1, + [385752] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, - anon_sym_DOT2, - STATE(8971), 1, + ACTIONS(14380), 1, + anon_sym_LF, + ACTIONS(14382), 1, + anon_sym_catch, + STATE(8968), 1, sym_comment, - STATE(11356), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385821] = 5, + ACTIONS(14378), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [385770] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - ACTIONS(4025), 1, - anon_sym_DOT2, - STATE(8972), 1, + ACTIONS(14384), 1, + anon_sym_DQUOTE, + ACTIONS(14388), 1, + aux_sym_path_token1, + STATE(395), 1, + sym__str_double_quotes, + STATE(8969), 1, sym_comment, - ACTIONS(2998), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [385839] = 6, + ACTIONS(14386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(8973), 1, + STATE(8970), 1, sym_comment, - STATE(11373), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385859] = 7, + ACTIONS(1309), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [385804] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14397), 1, + ACTIONS(14390), 1, anon_sym_SQUOTE, - STATE(8970), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(8974), 1, + STATE(8971), 1, sym_comment, - STATE(9896), 1, + STATE(8972), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, sym_expr_interpolated, - [385881] = 7, + [385826] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, + ACTIONS(13832), 1, anon_sym_LPAREN, - ACTIONS(13812), 1, + ACTIONS(13834), 1, sym_unescaped_interpolated_content, - ACTIONS(14399), 1, + ACTIONS(14392), 1, anon_sym_SQUOTE, - STATE(8975), 1, + STATE(8972), 1, sym_comment, - STATE(9161), 1, + STATE(8996), 1, aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, + STATE(10147), 1, sym_expr_interpolated, - [385903] = 4, - ACTIONS(105), 1, + [385848] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(14394), 1, + anon_sym_DQUOTE, + ACTIONS(14398), 1, + aux_sym_path_token1, + STATE(838), 1, + sym__str_double_quotes, + STATE(8973), 1, + sym_comment, + ACTIONS(14396), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385868] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3286), 1, + anon_sym_DQUOTE, + ACTIONS(14402), 1, + aux_sym_path_token1, + STATE(7379), 1, + sym__str_double_quotes, + STATE(8974), 1, + sym_comment, + ACTIONS(14400), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385888] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14404), 1, + anon_sym_DQUOTE, + ACTIONS(14408), 1, + aux_sym_path_token1, + STATE(1529), 1, + sym__str_double_quotes, + STATE(8975), 1, + sym_comment, + ACTIONS(14406), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385908] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12049), 1, + anon_sym_DOLLAR, + ACTIONS(14410), 1, + sym_identifier, + STATE(1649), 1, + sym__var, + STATE(2339), 1, + sym__variable_name, + STATE(2363), 1, + sym_val_variable, STATE(8976), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [385919] = 4, + [385930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5054), 1, - anon_sym_DASH, + ACTIONS(14412), 1, + anon_sym_DQUOTE, + ACTIONS(14416), 1, + aux_sym_path_token1, + STATE(5923), 1, + sym__str_double_quotes, STATE(8977), 1, sym_comment, - ACTIONS(5056), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - [385935] = 6, + ACTIONS(14414), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14401), 1, + ACTIONS(14418), 1, anon_sym_DQUOTE, - ACTIONS(14405), 1, + ACTIONS(14422), 1, aux_sym_path_token1, - STATE(1543), 1, + STATE(2275), 1, sym__str_double_quotes, STATE(8978), 1, sym_comment, - ACTIONS(14403), 2, + ACTIONS(14420), 2, sym__str_single_quotes, sym__str_back_ticks, - [385955] = 6, + [385970] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14424), 1, + anon_sym_DQUOTE, + ACTIONS(14428), 1, + aux_sym_path_token1, + STATE(1391), 1, + sym__str_double_quotes, STATE(8979), 1, sym_comment, - STATE(11311), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385975] = 6, + ACTIONS(14426), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [385990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14123), 1, - anon_sym_DOT2, + ACTIONS(14430), 1, + anon_sym_DQUOTE, + ACTIONS(14434), 1, + aux_sym_path_token1, + STATE(3081), 1, + sym__str_double_quotes, STATE(8980), 1, sym_comment, - STATE(11466), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [385995] = 6, + ACTIONS(14432), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14407), 1, - anon_sym_DOT2, + ACTIONS(14436), 1, + anon_sym_DQUOTE, + ACTIONS(14440), 1, + aux_sym_path_token1, + STATE(6306), 1, + sym__str_double_quotes, STATE(8981), 1, sym_comment, - STATE(11442), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386015] = 4, - ACTIONS(105), 1, + ACTIONS(14438), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386030] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14381), 1, - anon_sym_LF, + ACTIONS(14442), 1, + anon_sym_DQUOTE, + ACTIONS(14446), 1, + aux_sym_path_token1, + STATE(381), 1, + sym__str_double_quotes, STATE(8982), 1, sym_comment, - ACTIONS(14379), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386031] = 4, + ACTIONS(14444), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386050] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DASH, + ACTIONS(14448), 1, + anon_sym_DQUOTE, + ACTIONS(14452), 1, + aux_sym_path_token1, + STATE(330), 1, + sym__str_double_quotes, STATE(8983), 1, sym_comment, - ACTIONS(5052), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - [386047] = 6, + ACTIONS(14450), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14454), 1, + anon_sym_DQUOTE, + ACTIONS(14458), 1, + aux_sym_path_token1, + STATE(815), 1, + sym__str_double_quotes, STATE(8984), 1, sym_comment, - STATE(11256), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386067] = 3, + ACTIONS(14456), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386090] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14460), 1, + anon_sym_DQUOTE, + ACTIONS(14464), 1, + aux_sym_path_token1, + STATE(2734), 1, + sym__str_double_quotes, STATE(8985), 1, sym_comment, - ACTIONS(4338), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, + ACTIONS(14462), 2, sym__str_single_quotes, sym__str_back_ticks, - [386081] = 6, + [386110] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14466), 1, + anon_sym_DQUOTE, + ACTIONS(14470), 1, + aux_sym_path_token1, + STATE(2682), 1, + sym__str_double_quotes, STATE(8986), 1, sym_comment, - STATE(11183), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386101] = 4, - ACTIONS(105), 1, + ACTIONS(14468), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386130] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14317), 1, - anon_sym_LF, + ACTIONS(14472), 1, + anon_sym_DQUOTE, + ACTIONS(14476), 1, + aux_sym_path_token1, + STATE(2951), 1, + sym__str_double_quotes, STATE(8987), 1, sym_comment, - ACTIONS(14315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386117] = 5, - ACTIONS(105), 1, + ACTIONS(14474), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [386150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14409), 1, - anon_sym_DOT2, STATE(8988), 1, sym_comment, - ACTIONS(3909), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3911), 2, - ts_builtin_sym_end, - anon_sym_LF, - [386135] = 5, + ACTIONS(1056), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [386164] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14411), 1, + ACTIONS(8291), 1, anon_sym_DOT2, STATE(8989), 1, sym_comment, - ACTIONS(3915), 2, + ACTIONS(3929), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3917), 2, + ACTIONS(3931), 2, ts_builtin_sym_end, anon_sym_LF, - [386153] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1252), 1, - anon_sym_DASH, - STATE(8990), 1, - sym_comment, - ACTIONS(1254), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [386169] = 5, + [386182] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14413), 1, + ACTIONS(8291), 1, anon_sym_DOT2, - STATE(8991), 1, + STATE(8990), 1, sym_comment, - ACTIONS(3927), 2, + ACTIONS(1054), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3929), 2, + ACTIONS(1056), 2, ts_builtin_sym_end, anon_sym_LF, - [386187] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(8992), 1, - sym_comment, - STATE(11129), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386207] = 4, + [386200] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, - anon_sym_LF, - STATE(8993), 1, - sym_comment, - ACTIONS(13804), 4, + ACTIONS(4877), 1, anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + ACTIONS(14478), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386223] = 6, + STATE(1665), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, + STATE(8991), 1, + sym_comment, + [386222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + STATE(8992), 1, + sym_comment, + ACTIONS(815), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(817), 3, + anon_sym_LBRACE, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(8994), 1, + sym_duration_unit, + [386238] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2998), 1, + anon_sym_DASH, + ACTIONS(3952), 1, + anon_sym_DOT2, + STATE(8993), 1, sym_comment, - STATE(11023), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386243] = 4, + ACTIONS(3000), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [386256] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14317), 1, + ACTIONS(2247), 1, + anon_sym_COLON, + ACTIONS(14229), 1, anon_sym_LF, - STATE(8995), 1, + STATE(8994), 1, sym_comment, - ACTIONS(14315), 4, + ACTIONS(14227), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386259] = 4, + [386274] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13806), 1, + ACTIONS(2247), 1, + anon_sym_COLON, + ACTIONS(14233), 1, anon_sym_LF, - STATE(8996), 1, + STATE(8995), 1, sym_comment, - ACTIONS(13804), 4, + ACTIONS(14231), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386275] = 6, + [386292] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14480), 1, + anon_sym_LPAREN, + ACTIONS(14483), 1, + sym_unescaped_interpolated_content, + ACTIONS(14486), 1, + anon_sym_SQUOTE, + STATE(10147), 1, + sym_expr_interpolated, + STATE(8996), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [386312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(8997), 1, sym_comment, - STATE(10958), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386295] = 4, - ACTIONS(105), 1, + ACTIONS(1355), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [386326] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14417), 1, - anon_sym_LF, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(14249), 1, + anon_sym_use, + ACTIONS(14251), 1, + anon_sym_list, + ACTIONS(14253), 1, + anon_sym_hide, + ACTIONS(14255), 1, + anon_sym_new, STATE(8998), 1, sym_comment, - ACTIONS(14415), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386311] = 4, - ACTIONS(105), 1, + [386348] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14421), 1, - anon_sym_LF, STATE(8999), 1, sym_comment, - ACTIONS(14419), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386327] = 4, + ACTIONS(1284), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [386362] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14425), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LF, + ACTIONS(14488), 1, + anon_sym_RPAREN, + STATE(1665), 1, + aux_sym__block_body_repeat1, + STATE(2071), 1, + sym__terminator, STATE(9000), 1, sym_comment, - ACTIONS(14423), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386343] = 6, + [386384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(13860), 1, anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(13862), 1, aux_sym__immediate_decimal_token1, STATE(9001), 1, sym_comment, - STATE(10909), 1, + STATE(10662), 1, sym__immediate_decimal, - ACTIONS(14075), 2, + ACTIONS(13864), 2, anon_sym_DASH2, anon_sym_PLUS2, - [386363] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14429), 1, - anon_sym_LF, - STATE(9002), 1, - sym_comment, - ACTIONS(14427), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386379] = 6, + [386404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14431), 1, + ACTIONS(13934), 1, anon_sym_DOT2, - STATE(9003), 1, + ACTIONS(13936), 1, + aux_sym__immediate_decimal_token1, + STATE(9002), 1, sym_comment, - STATE(11475), 1, + STATE(10663), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(13938), 2, anon_sym_DASH2, anon_sym_PLUS2, - [386399] = 5, + [386424] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(949), 1, + anon_sym_RBRACK, + ACTIONS(951), 1, + sym__entry_separator, + ACTIONS(14490), 1, + anon_sym_DOT2, + ACTIONS(14492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14494), 1, + aux_sym_unquoted_token2, + STATE(9003), 1, + sym_comment, + [386446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, + ACTIONS(3942), 1, + anon_sym_DASH, + ACTIONS(14496), 1, + anon_sym_EQ, STATE(9004), 1, sym_comment, - ACTIONS(863), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - sym_duration_unit, - [386417] = 6, + ACTIONS(3946), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [386464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(9005), 1, sym_comment, - STATE(10852), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386437] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(807), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(809), 3, + anon_sym_LBRACE, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + sym_duration_unit, + [386480] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13880), 1, + anon_sym_SEMI, + ACTIONS(13882), 1, + anon_sym_LF, + ACTIONS(14498), 1, + ts_builtin_sym_end, + STATE(8686), 1, + aux_sym__block_body_repeat1, STATE(9006), 1, - sym_comment, - STATE(10797), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386457] = 7, + sym_comment, + STATE(9937), 1, + sym__terminator, + [386502] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(13564), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - ACTIONS(13566), 1, + ACTIONS(4879), 1, anon_sym_LF, - ACTIONS(14433), 1, - ts_builtin_sym_end, - STATE(4276), 1, - aux_sym_pipe_element_repeat1, + STATE(2027), 1, + sym__terminator, STATE(9007), 1, sym_comment, - [386479] = 6, + ACTIONS(4847), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [386522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(3929), 1, + anon_sym_DASH, + ACTIONS(10045), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(9008), 1, sym_comment, - STATE(10763), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386499] = 6, + ACTIONS(3931), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [386540] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4263), 1, + anon_sym_DASH, STATE(9009), 1, sym_comment, - STATE(10717), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386519] = 5, + ACTIONS(4265), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [386556] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14437), 1, - anon_sym_LF, - ACTIONS(14439), 1, - anon_sym_catch, + ACTIONS(14500), 1, + anon_sym_DOT2, STATE(9010), 1, sym_comment, - ACTIONS(14435), 3, + ACTIONS(4036), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [386537] = 6, - ACTIONS(3), 1, + ACTIONS(4038), 2, + ts_builtin_sym_end, + anon_sym_LF, + [386574] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(14502), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(9011), 1, sym_comment, - STATE(10667), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386557] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(3840), 2, anon_sym_SEMI, - ACTIONS(4746), 1, + anon_sym_PIPE, + ACTIONS(3842), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(14441), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, + [386592] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, STATE(9012), 1, sym_comment, - [386579] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, + ACTIONS(879), 3, anon_sym_PIPE, - ACTIONS(13569), 1, - anon_sym_SEMI, - ACTIONS(13571), 1, - anon_sym_LF, - ACTIONS(14443), 1, - ts_builtin_sym_end, - STATE(4229), 1, - aux_sym_pipe_element_repeat1, + anon_sym_EQ_GT, + sym_duration_unit, + [386610] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14504), 1, + anon_sym_DOT2, STATE(9013), 1, sym_comment, - [386601] = 6, + ACTIONS(4038), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + [386626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14445), 1, - anon_sym_DQUOTE, - ACTIONS(14449), 1, - aux_sym_path_token1, - STATE(555), 1, - sym__str_double_quotes, STATE(9014), 1, sym_comment, - ACTIONS(14447), 2, + ACTIONS(1331), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [386621] = 4, + [386640] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14229), 1, anon_sym_LF, STATE(9015), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14227), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386637] = 6, + [386656] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(1054), 1, + anon_sym_DASH, + ACTIONS(10192), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(9016), 1, sym_comment, - STATE(10587), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386657] = 4, + ACTIONS(1056), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [386674] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + ACTIONS(10187), 1, + anon_sym_DOT2, + STATE(9017), 1, + sym_comment, + ACTIONS(879), 2, + anon_sym_in, + sym_duration_unit, + [386694] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14233), 1, anon_sym_LF, - STATE(9017), 1, + STATE(9018), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14231), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386673] = 6, + [386710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(9018), 1, - sym_comment, - STATE(10536), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386693] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14455), 1, - anon_sym_SQUOTE, STATE(9019), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [386715] = 3, + ACTIONS(855), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(857), 3, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [386726] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14506), 1, + anon_sym_DOT2, STATE(9020), 1, sym_comment, - ACTIONS(14457), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [386729] = 6, - ACTIONS(3), 1, + ACTIONS(3842), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + [386742] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(10266), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14508), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, STATE(9021), 1, sym_comment, - STATE(10484), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386749] = 7, + ACTIONS(3165), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [386762] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14459), 1, - anon_sym_SQUOTE, - STATE(9019), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(14510), 1, + anon_sym_DOT2, STATE(9022), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [386771] = 7, - ACTIONS(3), 1, + ACTIONS(3903), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3905), 2, + ts_builtin_sym_end, + anon_sym_LF, + [386780] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(14053), 1, - anon_sym_use, - ACTIONS(14055), 1, - anon_sym_list, - ACTIONS(14057), 1, - anon_sym_hide, - ACTIONS(14059), 1, - anon_sym_new, + ACTIONS(14512), 1, + anon_sym_DOT2, STATE(9023), 1, sym_comment, - [386793] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14093), 1, + ACTIONS(3909), 2, anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, - ACTIONS(14461), 1, + anon_sym_PIPE, + ACTIONS(3911), 2, ts_builtin_sym_end, - STATE(8681), 1, - aux_sym__block_body_repeat1, + anon_sym_LF, + [386798] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(5460), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, STATE(9024), 1, sym_comment, - STATE(9884), 1, - sym__terminator, - [386815] = 6, + ACTIONS(927), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [386818] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(10176), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + STATE(5756), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, STATE(9025), 1, sym_comment, - STATE(10437), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386835] = 7, - ACTIONS(105), 1, + ACTIONS(931), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [386838] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - ACTIONS(14441), 1, - anon_sym_RPAREN, - STATE(1927), 1, - sym__terminator, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(5103), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, STATE(9026), 1, sym_comment, - STATE(9103), 1, - aux_sym__block_body_repeat1, - [386857] = 4, - ACTIONS(105), 1, + ACTIONS(915), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [386858] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14381), 1, - anon_sym_LF, STATE(9027), 1, sym_comment, - ACTIONS(14379), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386873] = 5, - ACTIONS(105), 1, + ACTIONS(1335), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [386872] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, - sym__entry_separator, - ACTIONS(9356), 1, - aux_sym_unquoted_token6, STATE(9028), 1, sym_comment, - ACTIONS(861), 3, - anon_sym_RBRACK, - sym_filesize_unit, - sym_duration_unit, - [386891] = 4, + ACTIONS(1339), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [386886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10176), 1, + anon_sym_DOT2, + STATE(5107), 1, + sym_cell_path, + STATE(7163), 1, + sym_path, + STATE(9029), 1, + sym_comment, + ACTIONS(919), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [386906] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LF, - STATE(9029), 1, + ACTIONS(14514), 1, + anon_sym_RPAREN, + STATE(2071), 1, + sym__terminator, + STATE(8991), 1, + aux_sym__block_body_repeat1, + STATE(9030), 1, sym_comment, - ACTIONS(14451), 4, + [386928] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4877), 1, anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + ACTIONS(14478), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [386907] = 7, + STATE(2071), 1, + sym__terminator, + STATE(9000), 1, + aux_sym__block_body_repeat1, + STATE(9031), 1, + sym_comment, + [386950] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14463), 1, - anon_sym_SQUOTE, - STATE(9030), 1, + ACTIONS(949), 1, + anon_sym_RBRACK, + ACTIONS(951), 1, + sym__entry_separator, + ACTIONS(9590), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14490), 1, + anon_sym_DOT2, + ACTIONS(14494), 1, + aux_sym_unquoted_token2, + STATE(9032), 1, sym_comment, - STATE(9042), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [386929] = 6, + [386972] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(949), 1, + sym_identifier, + ACTIONS(951), 1, + anon_sym_DOLLAR, + ACTIONS(9938), 1, aux_sym__immediate_decimal_token1, - STATE(9031), 1, + ACTIONS(14304), 1, + anon_sym_DOT2, + ACTIONS(14308), 1, + aux_sym_unquoted_token2, + STATE(9033), 1, sym_comment, - STATE(10396), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [386949] = 4, + [386994] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9034), 1, + sym_comment, + ACTIONS(894), 2, + sym_filesize_unit, + aux_sym_unquoted_token6, + ACTIONS(896), 3, + anon_sym_LBRACE, + anon_sym_DOT2, + sym_duration_unit, + [387010] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9035), 1, + sym_comment, + ACTIONS(14516), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [387024] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14520), 1, anon_sym_LF, - STATE(9032), 1, + STATE(9036), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14518), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386965] = 4, + [387040] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14524), 1, anon_sym_LF, - STATE(9033), 1, + STATE(9037), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14522), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [386981] = 6, + [387056] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - STATE(9034), 1, + ACTIONS(11781), 1, + anon_sym_DOT2, + STATE(9038), 1, sym_comment, - STATE(10362), 1, + STATE(11354), 1, sym__immediate_decimal, - ACTIONS(14075), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [387001] = 6, + [387076] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - STATE(9035), 1, + ACTIONS(14526), 1, + anon_sym_DOT2, + STATE(9039), 1, sym_comment, - STATE(10295), 1, + STATE(11406), 1, sym__immediate_decimal, - ACTIONS(14075), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [387021] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14465), 1, - anon_sym_SQUOTE, - STATE(8668), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9036), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [387043] = 6, + [387096] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(14528), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(9037), 1, + STATE(9040), 1, sym_comment, - STATE(10313), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387063] = 4, - ACTIONS(105), 1, + ACTIONS(3905), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + [387112] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14381), 1, - anon_sym_LF, - STATE(9038), 1, + ACTIONS(14530), 1, + anon_sym_DOT2, + STATE(9041), 1, sym_comment, - ACTIONS(14379), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3911), 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_RBRACE, - [387079] = 6, + [387128] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(9039), 1, + STATE(9042), 1, sym_comment, - STATE(10331), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387099] = 4, + ACTIONS(911), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [387142] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14534), 1, anon_sym_LF, - STATE(9040), 1, + STATE(9043), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14532), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387115] = 6, + [387158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(10007), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14031), 1, - anon_sym_DOT2, - STATE(9041), 1, - sym_comment, - STATE(11456), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387135] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14467), 1, - anon_sym_SQUOTE, - STATE(9042), 1, - sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [387157] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14071), 1, + ACTIONS(13962), 1, anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, - STATE(9043), 1, - sym_comment, - STATE(10354), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387177] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(14327), 1, - aux_sym_path_token1, - STATE(4347), 1, - sym__str_double_quotes, + ACTIONS(13966), 1, + aux_sym_unquoted_token2, STATE(9044), 1, sym_comment, - ACTIONS(14325), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [387197] = 6, - ACTIONS(3), 1, + ACTIONS(951), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [387178] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14469), 1, - anon_sym_DQUOTE, - ACTIONS(14473), 1, - aux_sym_path_token1, - STATE(1222), 1, - sym__str_double_quotes, + ACTIONS(14538), 1, + anon_sym_LF, STATE(9045), 1, sym_comment, - ACTIONS(14471), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [387217] = 6, - ACTIONS(3), 1, + ACTIONS(14536), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387194] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14071), 1, - anon_sym_DOT2, - ACTIONS(14073), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14542), 1, + anon_sym_LF, STATE(9046), 1, sym_comment, - STATE(10378), 1, - sym__immediate_decimal, - ACTIONS(14075), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387237] = 7, + ACTIONS(14540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387210] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14475), 1, - anon_sym_SQUOTE, + ACTIONS(14538), 1, + anon_sym_LF, STATE(9047), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [387259] = 6, - ACTIONS(3), 1, + ACTIONS(14536), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387226] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14477), 1, - anon_sym_DOT2, + ACTIONS(14542), 1, + anon_sym_LF, STATE(9048), 1, sym_comment, - STATE(11444), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [387279] = 4, + ACTIONS(14540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387242] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9049), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387295] = 4, + [387258] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14542), 1, anon_sym_LF, STATE(9050), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387311] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14479), 1, - anon_sym_SQUOTE, - STATE(9047), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9051), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [387333] = 4, + [387274] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14538), 1, anon_sym_LF, - STATE(9052), 1, + STATE(9051), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387349] = 4, + [387290] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9053), 1, + STATE(9052), 1, sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 3, - anon_sym_LBRACE, - anon_sym_DOT2, - sym_duration_unit, - [387365] = 4, + ACTIONS(1253), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [387304] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14542), 1, anon_sym_LF, - STATE(9054), 1, + STATE(9053), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387381] = 4, + [387320] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14538), 1, anon_sym_LF, - STATE(9055), 1, + STATE(9054), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387397] = 7, + [387336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12058), 1, - anon_sym_DOLLAR, - ACTIONS(14481), 1, - sym_identifier, - STATE(1590), 1, - sym__var, - STATE(2246), 1, - sym__variable_name, - STATE(2326), 1, - sym_val_variable, - STATE(9056), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9055), 1, sym_comment, - [387419] = 4, + STATE(11159), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387356] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14542), 1, anon_sym_LF, - STATE(9057), 1, + STATE(9056), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387435] = 4, + [387372] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9057), 1, + sym_comment, + ACTIONS(1343), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [387386] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9058), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387451] = 3, - ACTIONS(3), 1, + [387402] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14542), 1, + anon_sym_LF, STATE(9059), 1, sym_comment, - ACTIONS(14483), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [387465] = 4, + ACTIONS(14540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387418] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9060), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387481] = 4, + [387434] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14542), 1, anon_sym_LF, STATE(9061), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387497] = 4, + [387450] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9062), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387513] = 4, + [387466] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14542), 1, anon_sym_LF, STATE(9063), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387529] = 4, + [387482] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9064), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387545] = 4, + [387498] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14542), 1, anon_sym_LF, STATE(9065), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387561] = 4, + [387514] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14381), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9066), 1, sym_comment, - ACTIONS(14379), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387577] = 4, + [387530] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, - anon_sym_LF, + ACTIONS(14544), 1, + sym_long_flag_identifier, STATE(9067), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(3887), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [387593] = 4, + ACTIONS(3891), 2, + ts_builtin_sym_end, + anon_sym_LF, + [387548] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(14542), 1, anon_sym_LF, STATE(9068), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387609] = 4, + [387564] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14453), 1, + ACTIONS(14538), 1, anon_sym_LF, STATE(9069), 1, sym_comment, - ACTIONS(14451), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387625] = 4, + [387580] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1217), 1, + anon_sym_DASH, + STATE(9070), 1, + sym_comment, + ACTIONS(1219), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT2, + [387596] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(14542), 1, anon_sym_LF, - STATE(9070), 1, + STATE(9071), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387641] = 4, + [387612] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(14538), 1, anon_sym_LF, - STATE(9071), 1, + STATE(9072), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387657] = 4, + [387628] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(14542), 1, anon_sym_LF, - STATE(9072), 1, + STATE(9073), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387673] = 4, + [387644] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(14538), 1, anon_sym_LF, - STATE(9073), 1, + STATE(9074), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(14536), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387689] = 4, + [387660] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14546), 1, + anon_sym_DOT2, + ACTIONS(14548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14550), 1, + aux_sym_unquoted_token2, + STATE(9075), 1, + sym_comment, + ACTIONS(951), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [387680] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9076), 1, + sym_comment, + STATE(11167), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387700] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(879), 1, + anon_sym_DOLLAR, + ACTIONS(9497), 1, + aux_sym_unquoted_token6, + STATE(9077), 1, + sym_comment, + ACTIONS(877), 3, + sym_identifier, + sym_filesize_unit, + sym_duration_unit, + [387718] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + sym__entry_separator, + ACTIONS(10021), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(14552), 1, + anon_sym_DOT2, + STATE(9078), 1, + sym_comment, + ACTIONS(2998), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [387738] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(14542), 1, anon_sym_LF, - STATE(9074), 1, + STATE(9079), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(14540), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387705] = 4, + [387754] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14555), 1, + anon_sym_SQUOTE, + STATE(9080), 1, + sym_comment, + STATE(9086), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [387776] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9075), 1, + STATE(9081), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387721] = 7, + [387792] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13828), 1, + ACTIONS(13860), 1, anon_sym_DOT2, - ACTIONS(13830), 1, - anon_sym_LPAREN2, - ACTIONS(13832), 1, + ACTIONS(13862), 1, aux_sym__immediate_decimal_token1, + STATE(9082), 1, + sym_comment, + STATE(10333), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387812] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13816), 1, + anon_sym_LF, + STATE(9083), 1, + sym_comment, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387828] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14559), 1, + anon_sym_LF, + STATE(9084), 1, + sym_comment, + ACTIONS(14557), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387844] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13826), 1, + anon_sym_LF, + STATE(9085), 1, + sym_comment, + ACTIONS(13824), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [387860] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14561), 1, + anon_sym_SQUOTE, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9086), 1, + sym_comment, + STATE(10147), 1, + sym_expr_interpolated, + [387882] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9087), 1, + sym_comment, + ACTIONS(1347), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [387896] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14563), 1, + anon_sym_DQUOTE, + ACTIONS(14567), 1, + aux_sym_path_token1, + STATE(4016), 1, + sym__str_double_quotes, + STATE(9088), 1, + sym_comment, + ACTIONS(14565), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [387916] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9089), 1, + sym_comment, + STATE(10957), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387936] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14569), 1, + anon_sym_DOT2, + STATE(9090), 1, + sym_comment, + STATE(11410), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387956] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3983), 1, + anon_sym_DOLLAR, + ACTIONS(12388), 1, + sym_identifier, + STATE(8115), 1, + sym__variable_name, + STATE(8540), 1, + sym__var, + STATE(8947), 1, + sym_val_variable, + STATE(9091), 1, + sym_comment, + [387978] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9092), 1, + sym_comment, + STATE(10517), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [387998] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14133), 1, + anon_sym_DOT2, + STATE(9093), 1, + sym_comment, + STATE(10803), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388018] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9094), 1, + sym_comment, + STATE(11305), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388038] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9095), 1, + sym_comment, + STATE(10816), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388058] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14571), 1, + anon_sym_DOT2, + ACTIONS(14573), 1, + anon_sym_LPAREN2, + ACTIONS(14575), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14577), 1, aux_sym__immediate_decimal_token3, - ACTIONS(14493), 1, + ACTIONS(14579), 1, sym_short_flag_identifier, - STATE(9076), 1, + STATE(9096), 1, sym_comment, - [387743] = 4, + [388080] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9077), 1, + STATE(9097), 1, + sym_comment, + ACTIONS(13814), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [388096] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9098), 1, + sym_comment, + STATE(10461), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388116] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13826), 1, + anon_sym_LF, + STATE(9099), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387759] = 5, + [388132] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9100), 1, + sym_comment, + STATE(10775), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388152] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14581), 1, + anon_sym_SQUOTE, + STATE(9101), 1, + sym_comment, + STATE(9142), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [388174] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9102), 1, + sym_comment, + STATE(11005), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388194] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9103), 1, + sym_comment, + STATE(11480), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388214] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9104), 1, + sym_comment, + STATE(10309), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388234] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9105), 1, + sym_comment, + ACTIONS(4297), 5, + sym_cmd_identifier, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [388248] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9106), 1, + sym_comment, + STATE(10852), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388268] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9107), 1, + sym_comment, + STATE(10313), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388288] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9108), 1, + sym_comment, + STATE(10454), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388308] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9109), 1, + sym_comment, + ACTIONS(14583), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [388322] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9110), 1, + sym_comment, + STATE(10615), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388342] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9111), 1, + sym_comment, + STATE(10771), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388362] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9112), 1, + sym_comment, + STATE(10879), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388382] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9113), 1, + sym_comment, + STATE(10983), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388402] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9114), 1, + sym_comment, + STATE(11244), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388422] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9440), 1, - sym_duration_unit, - ACTIONS(14299), 1, - sym_filesize_unit, - STATE(9078), 1, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14585), 1, + anon_sym_DOT2, + STATE(9115), 1, sym_comment, - ACTIONS(10529), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [387777] = 4, - ACTIONS(105), 1, + STATE(11025), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388442] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9079), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9116), 1, sym_comment, - ACTIONS(14485), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [387793] = 4, - ACTIONS(105), 1, + STATE(11465), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388462] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14491), 1, - anon_sym_LF, - STATE(9080), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9117), 1, sym_comment, - ACTIONS(14489), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [387809] = 6, + STATE(10975), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388482] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14249), 1, + ACTIONS(13860), 1, anon_sym_DOT2, - STATE(9081), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9118), 1, sym_comment, - STATE(11453), 1, + STATE(10808), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(13864), 2, anon_sym_DASH2, anon_sym_PLUS2, - [387829] = 4, + [388502] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9082), 1, + ACTIONS(7382), 1, + aux_sym_unquoted_token3, + STATE(9119), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(827), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [387845] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(829), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(9083), 1, - sym_comment, - ACTIONS(14489), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [387861] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(14497), 1, - aux_sym_path_token1, - STATE(5112), 1, - sym__str_double_quotes, - STATE(9084), 1, - sym_comment, - ACTIONS(14495), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [387881] = 4, + [388520] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9085), 1, + STATE(9120), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(13814), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387897] = 7, - ACTIONS(105), 1, + [388536] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14499), 1, - anon_sym_SQUOTE, - STATE(9086), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9121), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [387919] = 4, + STATE(11362), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388556] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9087), 1, + STATE(9122), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [387935] = 7, + [388572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14501), 1, - anon_sym_PIPE, - ACTIONS(14503), 1, - anon_sym_if, - ACTIONS(14505), 1, - anon_sym_EQ_GT, - STATE(9088), 1, - sym_comment, - STATE(10000), 1, - aux_sym_match_pattern_repeat1, - STATE(10987), 1, - sym_match_guard, - [387957] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14507), 1, - anon_sym_SQUOTE, - STATE(9086), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9089), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9123), 1, sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [387979] = 4, - ACTIONS(105), 1, + STATE(10447), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388592] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9090), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9124), 1, sym_comment, - ACTIONS(14485), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [387995] = 4, + STATE(10587), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388612] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9091), 1, + STATE(9125), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13814), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388011] = 4, - ACTIONS(105), 1, + [388628] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9092), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9126), 1, sym_comment, - ACTIONS(14485), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388027] = 4, + STATE(10777), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388648] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9093), 1, + STATE(9127), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388043] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14509), 1, - ts_builtin_sym_end, - ACTIONS(14511), 1, - anon_sym_SEMI, - ACTIONS(14514), 1, - anon_sym_LF, - STATE(9884), 1, - sym__terminator, - STATE(9094), 2, - sym_comment, - aux_sym__block_body_repeat1, - [388063] = 4, + [388664] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9095), 1, + STATE(9128), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13814), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388079] = 4, + [388680] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH, - STATE(9096), 1, - sym_comment, - ACTIONS(2998), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(13860), 1, anon_sym_DOT2, - [388095] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14517), 1, - anon_sym_SQUOTE, - STATE(9097), 1, - sym_comment, - STATE(9109), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [388117] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14519), 1, - anon_sym_else, - STATE(9098), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9129), 1, sym_comment, - ACTIONS(13528), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13530), 2, - ts_builtin_sym_end, - anon_sym_LF, - [388135] = 4, + STATE(10907), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - anon_sym_DASH, - STATE(9099), 1, - sym_comment, - ACTIONS(2988), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(13860), 1, anon_sym_DOT2, - [388151] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3834), 1, - anon_sym_DASH, - STATE(9100), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9130), 1, sym_comment, - ACTIONS(3836), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [388167] = 4, + STATE(11079), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388720] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3888), 1, - anon_sym_DASH, - STATE(9101), 1, - sym_comment, - ACTIONS(3890), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(13860), 1, anon_sym_DOT2, - [388183] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9102), 1, - sym_comment, - ACTIONS(14485), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388199] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - ACTIONS(14521), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym__block_body_repeat1, - STATE(1927), 1, - sym__terminator, - STATE(9103), 1, - sym_comment, - [388221] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14491), 1, - anon_sym_LF, - STATE(9104), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9131), 1, sym_comment, - ACTIONS(14489), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388237] = 4, + STATE(11217), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388740] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9105), 1, + STATE(9132), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388253] = 4, + [388756] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9106), 1, + STATE(9133), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13814), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388269] = 4, + [388772] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9107), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_LBRACE, + ACTIONS(13860), 1, anon_sym_DOT2, - sym_duration_unit, - [388285] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14487), 1, - anon_sym_LF, - STATE(9108), 1, - sym_comment, - ACTIONS(14485), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388301] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14523), 1, - anon_sym_SQUOTE, - STATE(9109), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9134), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [388323] = 4, + STATE(11342), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388792] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9110), 1, - sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_LBRACE, + ACTIONS(13860), 1, anon_sym_DOT2, - sym_duration_unit, - [388339] = 4, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9135), 1, + sym_comment, + STATE(10294), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388812] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14491), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9111), 1, + STATE(9136), 1, sym_comment, - ACTIONS(14489), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388355] = 6, + [388828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14525), 1, - anon_sym_DQUOTE, - ACTIONS(14529), 1, - aux_sym_path_token1, - STATE(3984), 1, - sym__str_double_quotes, - STATE(9112), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9137), 1, sym_comment, - ACTIONS(14527), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [388375] = 4, + STATE(10326), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388848] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14487), 1, + ACTIONS(13816), 1, anon_sym_LF, - STATE(9113), 1, + STATE(9138), 1, sym_comment, - ACTIONS(14485), 4, + ACTIONS(13814), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388391] = 5, - ACTIONS(105), 1, + [388864] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14533), 1, - anon_sym_LF, - ACTIONS(14535), 1, - anon_sym_else, - STATE(9114), 1, + ACTIONS(13860), 1, + anon_sym_DOT2, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9139), 1, sym_comment, - ACTIONS(14531), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [388409] = 6, + STATE(10353), 1, + sym__immediate_decimal, + ACTIONS(13864), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [388884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14537), 1, + ACTIONS(13860), 1, anon_sym_DOT2, - STATE(9115), 1, + ACTIONS(13862), 1, + aux_sym__immediate_decimal_token1, + STATE(9140), 1, sym_comment, - STATE(11428), 1, + STATE(10377), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(13864), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388429] = 4, + [388904] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14541), 1, + ACTIONS(13826), 1, anon_sym_LF, - STATE(9116), 1, + STATE(9141), 1, sym_comment, - ACTIONS(14539), 4, + ACTIONS(13824), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [388445] = 4, + [388920] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14545), 1, - anon_sym_LF, - STATE(9117), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14587), 1, + anon_sym_SQUOTE, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9142), 1, sym_comment, - ACTIONS(14543), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388461] = 6, - ACTIONS(3), 1, + STATE(10147), 1, + sym_expr_interpolated, + [388942] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14547), 1, - anon_sym_DOT2, - STATE(9118), 1, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14589), 1, + anon_sym_SQUOTE, + STATE(9143), 1, sym_comment, - STATE(11451), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [388481] = 6, + STATE(9144), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(10147), 1, + sym_expr_interpolated, + [388964] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(13832), 1, + anon_sym_LPAREN, + ACTIONS(13834), 1, + sym_unescaped_interpolated_content, + ACTIONS(14591), 1, + anon_sym_SQUOTE, + STATE(8996), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(9144), 1, + sym_comment, + STATE(10147), 1, + sym_expr_interpolated, + [388986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14549), 1, + ACTIONS(95), 1, anon_sym_DQUOTE, - ACTIONS(14553), 1, + ACTIONS(14595), 1, aux_sym_path_token1, - STATE(1512), 1, + STATE(5365), 1, sym__str_double_quotes, - STATE(9119), 1, + STATE(9145), 1, sym_comment, - ACTIONS(14551), 2, + ACTIONS(14593), 2, sym__str_single_quotes, sym__str_back_ticks, - [388501] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14557), 1, - anon_sym_LF, - STATE(9120), 1, - sym_comment, - ACTIONS(14555), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [388517] = 6, + [389006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(14597), 1, anon_sym_DOT2, - STATE(9121), 1, + STATE(9146), 1, sym_comment, - STATE(11464), 1, + STATE(11406), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388537] = 4, + [389026] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(9122), 1, - sym_comment, - ACTIONS(889), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 3, - anon_sym_LBRACE, + ACTIONS(13922), 1, anon_sym_DOT2, - sym_duration_unit, - [388553] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14559), 1, - anon_sym_SQUOTE, - STATE(9123), 1, + ACTIONS(13924), 1, + anon_sym_LPAREN2, + ACTIONS(13926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13928), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14599), 1, + sym_short_flag_identifier, + STATE(9147), 1, sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [388575] = 7, + [389048] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3983), 1, anon_sym_DOLLAR, - ACTIONS(12228), 1, + ACTIONS(12388), 1, sym_identifier, - STATE(8177), 1, + STATE(8303), 1, sym__variable_name, - STATE(8410), 1, + STATE(8540), 1, sym__var, - STATE(8977), 1, + STATE(8947), 1, sym_val_variable, - STATE(9124), 1, + STATE(9148), 1, sym_comment, - [388597] = 6, + [389070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9125), 1, + STATE(9149), 1, sym_comment, - STATE(11414), 1, + STATE(11412), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388617] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14561), 1, - anon_sym_SQUOTE, - STATE(9123), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9126), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [388639] = 5, + [389090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3941), 1, + ACTIONS(3977), 1, anon_sym_DASH, - ACTIONS(14563), 1, + ACTIONS(14601), 1, anon_sym_DOT2, - STATE(9127), 1, + STATE(9150), 1, sym_comment, - ACTIONS(3943), 3, + ACTIONS(3979), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388657] = 5, + [389108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3935), 1, + ACTIONS(4026), 1, anon_sym_DASH, - ACTIONS(14565), 1, + ACTIONS(14603), 1, anon_sym_DOT2, - STATE(9128), 1, + STATE(9151), 1, sym_comment, - ACTIONS(3937), 3, + ACTIONS(4028), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388675] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7382), 1, - aux_sym_unquoted_token3, - STATE(9129), 1, - sym_comment, - ACTIONS(823), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(825), 2, - ts_builtin_sym_end, - anon_sym_LF, - [388693] = 5, + [389126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3927), 1, + ACTIONS(4036), 1, anon_sym_DASH, - ACTIONS(14567), 1, + ACTIONS(14605), 1, anon_sym_DOT2, - STATE(9130), 1, + STATE(9152), 1, sym_comment, - ACTIONS(3929), 3, + ACTIONS(4038), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388711] = 5, + [389144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3921), 1, + ACTIONS(3840), 1, anon_sym_DASH, - ACTIONS(14569), 1, + ACTIONS(14607), 1, anon_sym_DOT2, - STATE(9131), 1, + STATE(9153), 1, sym_comment, - ACTIONS(3923), 3, + ACTIONS(3842), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388729] = 5, + [389162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3915), 1, + ACTIONS(3903), 1, anon_sym_DASH, - ACTIONS(14571), 1, + ACTIONS(14609), 1, anon_sym_DOT2, - STATE(9132), 1, + STATE(9154), 1, sym_comment, - ACTIONS(3917), 3, + ACTIONS(3905), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388747] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14573), 1, - anon_sym_DOT2, - ACTIONS(14575), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14577), 1, - aux_sym_unquoted_token2, - STATE(9133), 1, - sym_comment, - ACTIONS(1007), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [388767] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_DOLLAR, - ACTIONS(9537), 1, - aux_sym_unquoted_token6, - STATE(9134), 1, - sym_comment, - ACTIONS(861), 3, - sym_identifier, - sym_filesize_unit, - sym_duration_unit, - [388785] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9135), 1, - sym_comment, - ACTIONS(807), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(809), 3, - anon_sym_in, - anon_sym_DOT2, - sym_duration_unit, - [388801] = 5, + [389180] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3909), 1, anon_sym_DASH, - ACTIONS(14579), 1, + ACTIONS(14611), 1, anon_sym_DOT2, - STATE(9136), 1, + STATE(9155), 1, sym_comment, ACTIONS(3911), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [388819] = 6, + [389198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9137), 1, + STATE(9156), 1, sym_comment, - STATE(11416), 1, + STATE(11414), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388839] = 6, + [389218] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9138), 1, + STATE(9157), 1, sym_comment, - STATE(11418), 1, + STATE(11416), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388859] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9139), 1, - sym_comment, - ACTIONS(815), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(817), 3, - anon_sym_in, - anon_sym_DOT2, - sym_duration_unit, - [388875] = 6, + [389238] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9140), 1, + STATE(9158), 1, sym_comment, - STATE(11408), 1, + STATE(11406), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388895] = 6, + [389258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9141), 1, + STATE(9159), 1, sym_comment, - STATE(11420), 1, + STATE(11418), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388915] = 4, + [389278] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9142), 1, - sym_comment, - ACTIONS(844), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(846), 3, - anon_sym_in, + ACTIONS(11609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11781), 1, anon_sym_DOT2, - sym_duration_unit, - [388931] = 6, + STATE(9160), 1, + sym_comment, + STATE(11426), 1, + sym__immediate_decimal, + ACTIONS(11611), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + [389298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9143), 1, + STATE(9161), 1, sym_comment, STATE(11428), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388951] = 6, + [389318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9144), 1, + STATE(9162), 1, sym_comment, STATE(11430), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [388971] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9145), 1, - sym_comment, - ACTIONS(889), 2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(891), 3, - anon_sym_in, - anon_sym_DOT2, - sym_duration_unit, - [388987] = 6, + [389338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9146), 1, + STATE(9163), 1, sym_comment, STATE(11432), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389007] = 6, + [389358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9147), 1, + STATE(9164), 1, sym_comment, STATE(11434), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389027] = 6, + [389378] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9148), 1, + STATE(9165), 1, sym_comment, STATE(11436), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389047] = 6, + [389398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9149), 1, + STATE(9166), 1, sym_comment, - STATE(11438), 1, + STATE(11422), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389067] = 6, + [389418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9150), 1, + STATE(9167), 1, sym_comment, - STATE(11424), 1, + STATE(11444), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389087] = 6, + [389438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9151), 1, + STATE(9168), 1, sym_comment, - STATE(11446), 1, + STATE(11448), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389107] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14093), 1, - anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, - ACTIONS(14581), 1, - ts_builtin_sym_end, - STATE(9094), 1, - aux_sym__block_body_repeat1, - STATE(9152), 1, - sym_comment, - STATE(9884), 1, - sym__terminator, - [389129] = 6, + [389458] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9153), 1, + STATE(9169), 1, sym_comment, STATE(11450), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389149] = 6, + [389478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14583), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9154), 1, + STATE(9170), 1, sym_comment, - STATE(11434), 1, + STATE(11452), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389169] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14585), 1, - anon_sym_DQUOTE, - ACTIONS(14589), 1, - aux_sym_path_token1, - STATE(4954), 1, - sym__str_double_quotes, - STATE(9155), 1, - sym_comment, - ACTIONS(14587), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [389189] = 6, + [389498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9156), 1, + STATE(9171), 1, sym_comment, - STATE(11452), 1, + STATE(11453), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389209] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14591), 1, - anon_sym_SQUOTE, - STATE(9157), 1, - sym_comment, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [389231] = 6, + [389518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9158), 1, + STATE(9172), 1, sym_comment, - STATE(11454), 1, + STATE(11455), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389251] = 6, + [389538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9159), 1, + STATE(9173), 1, sym_comment, - STATE(11455), 1, + STATE(11456), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389271] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14593), 1, - anon_sym_SQUOTE, - STATE(9157), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9160), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [389293] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14595), 1, - anon_sym_LPAREN, - ACTIONS(14598), 1, - sym_unescaped_interpolated_content, - ACTIONS(14601), 1, - anon_sym_SQUOTE, - STATE(9896), 1, - sym_expr_interpolated, - STATE(9161), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [389313] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(9162), 1, - sym_comment, - ACTIONS(863), 3, - anon_sym_DOLLAR, - anon_sym_LBRACE, - sym_duration_unit, - [389331] = 6, + [389558] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9163), 1, + STATE(9174), 1, sym_comment, STATE(11457), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389351] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14603), 1, - anon_sym_SQUOTE, - STATE(9164), 1, - sym_comment, - STATE(9176), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9896), 1, - sym_expr_interpolated, - [389373] = 6, + [389578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9165), 1, + STATE(9175), 1, sym_comment, STATE(11458), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389393] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14605), 1, - anon_sym_DOT2, - STATE(9166), 1, - sym_comment, - ACTIONS(3941), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3943), 2, - ts_builtin_sym_end, - anon_sym_LF, - [389411] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14607), 1, - anon_sym_DOT2, - STATE(9167), 1, - sym_comment, - ACTIONS(3935), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3937), 2, - ts_builtin_sym_end, - anon_sym_LF, - [389429] = 6, + [389598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9168), 1, + STATE(9176), 1, sym_comment, STATE(11459), 1, sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389449] = 6, + [389618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, + ACTIONS(11781), 1, anon_sym_DOT2, - STATE(9169), 1, + STATE(9177), 1, sym_comment, STATE(11460), 1, sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [389469] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, - anon_sym_DOT2, - STATE(9170), 1, - sym_comment, - STATE(11461), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [389489] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_DASH, - STATE(9171), 1, - sym_comment, - ACTIONS(1230), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [389505] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14609), 1, - anon_sym_DOT2, - STATE(9172), 1, - sym_comment, - STATE(11448), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [389525] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1222), 1, - anon_sym_DASH, - STATE(9173), 1, - sym_comment, - ACTIONS(1224), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [389541] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, - anon_sym_DOT2, - STATE(9174), 1, - sym_comment, - STATE(11462), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, + ACTIONS(11611), 2, anon_sym_DASH2, anon_sym_PLUS2, - [389561] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9175), 1, - sym_comment, - ACTIONS(4354), 5, - sym_cmd_identifier, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [389575] = 7, + [389638] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13810), 1, - anon_sym_LPAREN, - ACTIONS(13812), 1, - sym_unescaped_interpolated_content, - ACTIONS(14611), 1, - anon_sym_SQUOTE, - STATE(9161), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(9176), 1, - sym_comment, - STATE(9896), 1, - sym_expr_interpolated, - [389597] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1189), 1, - anon_sym_DASH, - STATE(9177), 1, - sym_comment, - ACTIONS(1191), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT2, - [389613] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11787), 1, - anon_sym_DOT2, + ACTIONS(13830), 1, + anon_sym_LF, STATE(9178), 1, sym_comment, - STATE(11463), 1, - sym__immediate_decimal, - ACTIONS(11667), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - [389633] = 6, + ACTIONS(13828), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [389654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1035), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(5810), 1, - sym_cell_path, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, STATE(9179), 1, sym_comment, - STATE(9712), 1, - sym_path, - [389652] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9180), 1, - sym_comment, - ACTIONS(13804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [389667] = 6, + ACTIONS(879), 2, + anon_sym_LBRACE, + sym_duration_unit, + [389671] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14615), 1, - anon_sym_DOT2, - ACTIONS(14617), 1, + ACTIONS(14177), 1, anon_sym_LPAREN2, - ACTIONS(14619), 1, + ACTIONS(14613), 1, + anon_sym_DOT2, + ACTIONS(14615), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14621), 1, + ACTIONS(14617), 1, aux_sym__immediate_decimal_token3, - STATE(9181), 1, + STATE(9180), 1, sym_comment, - [389686] = 4, + [389690] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14623), 1, + ACTIONS(14619), 1, anon_sym_DQUOTE, - ACTIONS(14625), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(9182), 2, + STATE(9181), 1, sym_comment, + STATE(9185), 1, aux_sym__str_double_quotes_repeat1, - [389701] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [389707] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9183), 1, + STATE(9182), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [389716] = 6, + [389722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14630), 1, - anon_sym_RBRACK, + ACTIONS(14249), 1, + anon_sym_use, + ACTIONS(14251), 1, + anon_sym_list, + ACTIONS(14253), 1, + anon_sym_hide, + ACTIONS(14255), 1, + anon_sym_new, + STATE(9183), 1, + sym_comment, + [389741] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14623), 1, + anon_sym_DQUOTE, STATE(9184), 1, sym_comment, - STATE(9210), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [389735] = 5, + STATE(9192), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [389758] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14632), 1, + ACTIONS(14625), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9185), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [389752] = 3, - ACTIONS(3), 1, + [389775] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14627), 1, + anon_sym_DQUOTE, STATE(9186), 1, sym_comment, - ACTIONS(14636), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [389765] = 6, + STATE(9215), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [389792] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14638), 1, - anon_sym_LBRACE, - STATE(5837), 1, - sym_block, - STATE(5842), 1, - sym_val_closure, + ACTIONS(14629), 1, + anon_sym_DOT2, + ACTIONS(14631), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14633), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14635), 1, + sym_short_flag_identifier, STATE(9187), 1, sym_comment, - STATE(9308), 1, - sym__blosure, - [389784] = 6, + [389811] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13608), 1, - sym_short_flag_identifier, - ACTIONS(14640), 1, - anon_sym_DOT2, - ACTIONS(14642), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14644), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14639), 1, + anon_sym_RBRACK, STATE(9188), 1, sym_comment, - [389803] = 6, + STATE(9189), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [389830] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14646), 1, + ACTIONS(14641), 1, anon_sym_RBRACK, STATE(9189), 1, sym_comment, - STATE(9198), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [389822] = 4, - ACTIONS(3), 1, + [389849] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1338), 1, - anon_sym_DASH, + ACTIONS(14643), 1, + anon_sym_DQUOTE, STATE(9190), 1, sym_comment, - ACTIONS(1340), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [389837] = 6, - ACTIONS(3), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [389866] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, + ACTIONS(14645), 1, + anon_sym_DQUOTE, STATE(9191), 1, sym_comment, - STATE(9532), 1, - sym_parameter_parens, - STATE(9540), 1, - sym_parameter_bracks, - [389856] = 5, + STATE(9229), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [389883] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14652), 1, + ACTIONS(14647), 1, anon_sym_DQUOTE, STATE(9192), 1, sym_comment, - STATE(9207), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [389873] = 5, + [389900] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14654), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9193), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [389890] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [389915] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14656), 1, - anon_sym_RBRACK, STATE(9194), 1, sym_comment, - STATE(9197), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [389909] = 6, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [389930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14658), 1, + ACTIONS(815), 1, + aux_sym_unquoted_token6, + ACTIONS(817), 1, anon_sym_DOT2, - ACTIONS(14660), 1, - anon_sym_LPAREN2, - ACTIONS(14662), 1, + ACTIONS(14649), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14664), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14651), 1, + aux_sym__immediate_decimal_token2, STATE(9195), 1, sym_comment, - [389928] = 3, - ACTIONS(3), 1, + [389949] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9196), 1, sym_comment, - ACTIONS(14666), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [389941] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [389964] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14668), 1, - anon_sym_RBRACK, STATE(9197), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [389960] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [389979] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14670), 1, - anon_sym_RBRACK, STATE(9198), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [389979] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [389994] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2370), 1, - sym_block, STATE(9199), 1, sym_comment, - STATE(10176), 1, - sym_returns, - [389998] = 6, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2345), 1, - sym_block, + ACTIONS(14653), 1, + anon_sym_DOT2, + ACTIONS(14655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14657), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14659), 1, + sym_short_flag_identifier, STATE(9200), 1, sym_comment, - STATE(10179), 1, - sym_returns, - [390017] = 5, + [390028] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14674), 1, - anon_sym_DQUOTE, - STATE(9193), 1, - aux_sym__str_double_quotes_repeat1, STATE(9201), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [390034] = 4, - ACTIONS(105), 1, + ACTIONS(13828), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13830), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390043] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(9202), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14661), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [390056] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14663), 1, + anon_sym_LBRACK, + ACTIONS(14665), 1, + anon_sym_LPAREN, + STATE(1750), 1, + sym_parameter_parens, + STATE(1751), 1, + sym_parameter_bracks, + STATE(9203), 1, + sym_comment, + [390075] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9204), 1, + sym_comment, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [390049] = 5, - ACTIONS(105), 1, + [390090] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14676), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9203), 1, + ACTIONS(13930), 1, + sym_short_flag_identifier, + ACTIONS(14667), 1, + anon_sym_DOT2, + ACTIONS(14669), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14671), 1, + aux_sym__immediate_decimal_token3, + STATE(9205), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [390066] = 6, + [390109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14678), 1, + ACTIONS(14673), 1, anon_sym_DOT2, - ACTIONS(14680), 1, + ACTIONS(14675), 1, anon_sym_LPAREN2, - ACTIONS(14682), 1, + ACTIONS(14677), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14684), 1, + ACTIONS(14679), 1, aux_sym__immediate_decimal_token3, - STATE(9204), 1, + STATE(9206), 1, sym_comment, - [390085] = 3, + [390128] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9205), 1, + STATE(9207), 1, sym_comment, - ACTIONS(14686), 4, + ACTIONS(14681), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [390098] = 5, + [390141] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14683), 1, + anon_sym_DOT2, + ACTIONS(14685), 1, + anon_sym_LPAREN2, + ACTIONS(14687), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14689), 1, + aux_sym__immediate_decimal_token3, + STATE(9208), 1, + sym_comment, + [390160] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14688), 1, - anon_sym_DQUOTE, - STATE(9203), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9206), 1, + ACTIONS(13579), 1, + anon_sym_DOT2, + ACTIONS(13583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13585), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13587), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9209), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [390115] = 5, + [390179] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14690), 1, + ACTIONS(14691), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9207), 1, + STATE(9210), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9213), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390132] = 6, + [390196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14692), 1, + ACTIONS(14693), 1, anon_sym_RBRACK, - STATE(9208), 1, + STATE(9211), 1, sym_comment, - STATE(9564), 1, + STATE(9214), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [390151] = 4, + [390215] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9209), 1, + STATE(9212), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [390166] = 6, + [390230] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14695), 1, + anon_sym_DQUOTE, + STATE(9213), 1, + sym_comment, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [390247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14694), 1, + ACTIONS(14697), 1, anon_sym_RBRACK, - STATE(9210), 1, + STATE(9214), 1, sym_comment, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [390185] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9211), 1, - sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390200] = 5, + [390266] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14696), 1, + ACTIONS(14699), 1, anon_sym_DQUOTE, - STATE(9212), 1, + STATE(9215), 1, sym_comment, - STATE(9231), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390217] = 4, - ACTIONS(105), 1, + [390283] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9213), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14701), 1, + anon_sym_RBRACK, + STATE(9216), 1, sym_comment, - ACTIONS(14184), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14186), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390232] = 6, + STATE(9217), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390302] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13836), 1, - sym_short_flag_identifier, - ACTIONS(14698), 1, - anon_sym_DOT2, - ACTIONS(14700), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14702), 1, - aux_sym__immediate_decimal_token3, - STATE(9214), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14703), 1, + anon_sym_RBRACK, + STATE(9217), 1, + sym_comment, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390321] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(929), 1, + anon_sym_DASH, + STATE(9218), 1, sym_comment, - [390251] = 4, + ACTIONS(931), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [390336] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9215), 1, + STATE(9219), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [390266] = 5, + [390351] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14705), 1, + anon_sym_RBRACK, + STATE(9220), 1, + sym_comment, + STATE(9240), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390370] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14704), 1, - anon_sym_DQUOTE, - STATE(9185), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9216), 1, + ACTIONS(14183), 1, + aux_sym__record_key_token1, + ACTIONS(14707), 1, + anon_sym_DOT2, + ACTIONS(14709), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14711), 1, + aux_sym__immediate_decimal_token3, + STATE(9221), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [390283] = 4, + [390389] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9217), 1, + STATE(9222), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(14099), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(14101), 2, ts_builtin_sym_end, anon_sym_LF, - [390298] = 6, + [390404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(14706), 1, - anon_sym_DOT2, - ACTIONS(14708), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14710), 1, - aux_sym__immediate_decimal_token3, - STATE(9218), 1, + ACTIONS(14713), 1, + anon_sym_LBRACK, + ACTIONS(14715), 1, + anon_sym_LPAREN, + STATE(9223), 1, + sym_comment, + STATE(9698), 1, + sym_parameter_parens, + STATE(9708), 1, + sym_parameter_bracks, + [390423] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14717), 1, + anon_sym_RBRACK, + STATE(9224), 1, sym_comment, - [390317] = 4, + STATE(9235), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390442] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9219), 1, + STATE(9225), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [390332] = 4, + [390457] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9220), 1, + STATE(9226), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [390347] = 4, + [390472] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9221), 1, + STATE(9227), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(4244), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(4246), 2, ts_builtin_sym_end, anon_sym_LF, - [390362] = 4, + [390487] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9222), 1, + STATE(9228), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [390377] = 4, + [390502] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9223), 1, + ACTIONS(14719), 1, + anon_sym_DQUOTE, + STATE(9229), 1, sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390392] = 3, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [390519] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9224), 1, + STATE(9230), 1, sym_comment, - ACTIONS(14712), 4, + ACTIONS(14721), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [390405] = 6, + [390532] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13830), 1, - anon_sym_LPAREN2, - ACTIONS(14714), 1, + ACTIONS(14723), 1, anon_sym_DOT2, - ACTIONS(14716), 1, + ACTIONS(14725), 1, + anon_sym_LPAREN2, + ACTIONS(14727), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14718), 1, + ACTIONS(14729), 1, aux_sym__immediate_decimal_token3, - STATE(9225), 1, - sym_comment, - [390424] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2182), 1, - sym_block, - STATE(9226), 1, + STATE(9231), 1, sym_comment, - STATE(10186), 1, - sym_returns, - [390443] = 3, - ACTIONS(3), 1, + [390551] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(9227), 1, + STATE(9232), 1, sym_comment, - ACTIONS(14720), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [390456] = 4, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390566] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9228), 1, + STATE(9233), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [390471] = 5, + [390581] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14722), 1, + ACTIONS(14731), 1, anon_sym_DQUOTE, - STATE(9229), 1, + STATE(9234), 1, sym_comment, - STATE(9241), 1, + STATE(9237), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390488] = 6, + [390598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14724), 1, + ACTIONS(14733), 1, anon_sym_RBRACK, - STATE(9208), 1, - aux_sym_val_table_repeat1, - STATE(9230), 1, + STATE(9235), 1, sym_comment, - STATE(10247), 1, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [390507] = 5, + [390617] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14726), 1, + ACTIONS(14735), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9231), 1, + STATE(9236), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9328), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390524] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9232), 1, - sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390539] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14728), 1, - anon_sym_DOT2, - ACTIONS(14730), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14732), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14734), 1, - sym_short_flag_identifier, - STATE(9233), 1, - sym_comment, - [390558] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9234), 1, - sym_comment, - ACTIONS(14198), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14200), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390573] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - anon_sym_DASH, - STATE(9235), 1, - sym_comment, - ACTIONS(1340), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [390588] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_in, - ACTIONS(14736), 1, - anon_sym_DOT2, - STATE(4660), 1, - sym_cell_path, - STATE(9236), 1, - sym_comment, - STATE(9405), 1, - sym_path, - [390607] = 5, + [390634] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14739), 1, + ACTIONS(14737), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9237), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390624] = 6, + [390651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14741), 1, + ACTIONS(14739), 1, anon_sym_RBRACK, STATE(9238), 1, sym_comment, - STATE(9564), 1, + STATE(9631), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [390643] = 4, + [390670] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14743), 1, + anon_sym_LF, STATE(9239), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14741), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14186), 2, - ts_builtin_sym_end, - anon_sym_LF, - [390658] = 6, + [390685] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(981), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(4660), 1, - sym_cell_path, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14745), 1, + anon_sym_RBRACK, STATE(9240), 1, sym_comment, - STATE(9712), 1, - sym_path, - [390677] = 5, - ACTIONS(105), 1, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14743), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14747), 1, + anon_sym_RBRACK, STATE(9241), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [390694] = 6, + STATE(9242), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14019), 1, - anon_sym_DOT2, - ACTIONS(14021), 1, - anon_sym_LPAREN2, - ACTIONS(14025), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14745), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14749), 1, + anon_sym_RBRACK, STATE(9242), 1, sym_comment, - [390713] = 3, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [390742] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4279), 1, + anon_sym_DASH, STATE(9243), 1, sym_comment, - ACTIONS(14747), 4, + ACTIONS(4281), 3, sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [390726] = 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [390757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14663), 1, anon_sym_LBRACK, - ACTIONS(14749), 1, - anon_sym_RBRACK, + ACTIONS(14665), 1, + anon_sym_LPAREN, + STATE(1780), 1, + sym_parameter_parens, + STATE(1781), 1, + sym_parameter_bracks, STATE(9244), 1, sym_comment, - STATE(9250), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [390745] = 4, + [390776] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9245), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [390760] = 4, + [390791] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14753), 1, - anon_sym_LF, STATE(9246), 1, sym_comment, - ACTIONS(14751), 3, + ACTIONS(14057), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [390775] = 4, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390806] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14757), 1, - anon_sym_LF, + ACTIONS(14175), 1, + anon_sym_DOT2, + ACTIONS(14179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14181), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14183), 1, + aux_sym__record_key_token1, STATE(9247), 1, sym_comment, - ACTIONS(14755), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [390790] = 4, + [390825] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9248), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [390805] = 6, - ACTIONS(3), 1, + [390840] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14759), 1, - anon_sym_RBRACK, STATE(9249), 1, sym_comment, - STATE(9258), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [390824] = 6, + ACTIONS(14057), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390855] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14761), 1, - anon_sym_RBRACK, STATE(9250), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [390843] = 6, + ACTIONS(14751), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [390868] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14763), 1, - anon_sym_LBRACE, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, STATE(9251), 1, sym_comment, - STATE(9575), 1, - sym__blosure, - [390862] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_block, - STATE(9252), 1, - sym_comment, - STATE(10185), 1, - sym_returns, - [390881] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9253), 1, - sym_comment, - ACTIONS(14765), 4, + ACTIONS(14753), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [390894] = 6, + [390881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14767), 1, - anon_sym_RBRACK, - STATE(9254), 1, + ACTIONS(14755), 1, + anon_sym_DOT2, + ACTIONS(14757), 1, + anon_sym_LPAREN2, + ACTIONS(14759), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14761), 1, + aux_sym__immediate_decimal_token3, + STATE(9252), 1, sym_comment, - STATE(9307), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [390913] = 6, + [390900] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14763), 1, + anon_sym_DQUOTE, + STATE(9253), 1, + sym_comment, + STATE(9257), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [390917] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14769), 1, + ACTIONS(14765), 1, anon_sym_DOT2, - ACTIONS(14771), 1, + ACTIONS(14767), 1, anon_sym_LPAREN2, - ACTIONS(14773), 1, + ACTIONS(14769), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14775), 1, + ACTIONS(14771), 1, aux_sym__immediate_decimal_token3, + STATE(9254), 1, + sym_comment, + [390936] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(9255), 1, sym_comment, - [390932] = 5, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [390951] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14777), 1, + ACTIONS(14773), 1, anon_sym_DQUOTE, - STATE(9237), 1, - aux_sym__str_double_quotes_repeat1, STATE(9256), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9270), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [390949] = 6, - ACTIONS(3), 1, + [390968] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(14779), 1, - anon_sym_DOT2, - ACTIONS(14781), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14783), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14775), 1, + anon_sym_DQUOTE, STATE(9257), 1, sym_comment, - [390968] = 6, - ACTIONS(3), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [390985] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14785), 1, - anon_sym_RBRACK, STATE(9258), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [390987] = 3, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391000] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2040), 1, + sym_block, STATE(9259), 1, sym_comment, - ACTIONS(14787), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [391000] = 4, + STATE(10256), 1, + sym_returns, + [391019] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9260), 1, sym_comment, - ACTIONS(14555), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14557), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [391015] = 5, - ACTIONS(105), 1, + [391034] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14789), 1, - anon_sym_DQUOTE, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14779), 1, + anon_sym_RBRACK, STATE(9261), 1, sym_comment, - STATE(9265), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391032] = 4, - ACTIONS(105), 1, + STATE(9262), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391053] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14781), 1, + anon_sym_RBRACK, STATE(9262), 1, sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391047] = 6, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391072] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_in, - ACTIONS(14791), 1, - anon_sym_DOT2, - STATE(7597), 1, - sym_cell_path, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2041), 1, + sym_block, STATE(9263), 1, sym_comment, - STATE(9405), 1, - sym_path, - [391066] = 6, - ACTIONS(3), 1, + STATE(10259), 1, + sym_returns, + [391091] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(5107), 1, - sym_cell_path, STATE(9264), 1, sym_comment, - STATE(9712), 1, - sym_path, - [391085] = 5, - ACTIONS(105), 1, + ACTIONS(14057), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391106] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14794), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(807), 1, + aux_sym_unquoted_token6, + ACTIONS(809), 1, + anon_sym_DOT2, + ACTIONS(14783), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14785), 1, + aux_sym__immediate_decimal_token2, STATE(9265), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391102] = 6, + [391125] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_in, - ACTIONS(14613), 1, + ACTIONS(13854), 1, + sym_short_flag_identifier, + ACTIONS(14787), 1, anon_sym_DOT2, - STATE(5106), 1, - sym_cell_path, + ACTIONS(14789), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14791), 1, + aux_sym__immediate_decimal_token3, STATE(9266), 1, sym_comment, - STATE(9712), 1, - sym_path, - [391121] = 6, + [391144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14796), 1, + ACTIONS(14793), 1, anon_sym_RBRACK, STATE(9267), 1, sym_comment, - STATE(9564), 1, + STATE(9320), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [391140] = 6, + [391163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(4804), 1, - sym_cell_path, STATE(9268), 1, sym_comment, - STATE(9712), 1, - sym_path, - [391159] = 4, - ACTIONS(105), 1, + ACTIONS(14795), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [391176] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14797), 1, + anon_sym_DOT2, + ACTIONS(14799), 1, + anon_sym_LPAREN2, + ACTIONS(14801), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14803), 1, + aux_sym__immediate_decimal_token3, STATE(9269), 1, sym_comment, - ACTIONS(14184), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14186), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391174] = 4, + [391195] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14805), 1, + anon_sym_DQUOTE, STATE(9270), 1, sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391189] = 4, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391212] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14807), 1, + anon_sym_DQUOTE, STATE(9271), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391204] = 4, + STATE(9275), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14798), 1, - anon_sym_DOT2, + ACTIONS(3929), 1, + anon_sym_DASH, STATE(9272), 1, sym_comment, - ACTIONS(3937), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [391219] = 4, + ACTIONS(3931), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [391244] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9273), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [391234] = 4, + [391259] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9274), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [391249] = 4, + [391274] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14809), 1, + anon_sym_DQUOTE, STATE(9275), 1, sym_comment, - ACTIONS(14184), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14186), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391264] = 4, - ACTIONS(105), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391291] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4490), 1, + anon_sym_DASH, STATE(9276), 1, sym_comment, - ACTIONS(14135), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14137), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391279] = 4, - ACTIONS(105), 1, + ACTIONS(4492), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [391306] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, STATE(9277), 1, sym_comment, - ACTIONS(823), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [391294] = 4, + ACTIONS(14811), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [391319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14800), 1, - anon_sym_DOT2, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14813), 1, + anon_sym_RBRACK, STATE(9278), 1, sym_comment, - ACTIONS(3943), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [391309] = 6, + STATE(9642), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(911), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(5758), 1, - sym_cell_path, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14815), 1, + anon_sym_RBRACK, STATE(9279), 1, sym_comment, - STATE(9712), 1, - sym_path, - [391328] = 5, + STATE(9280), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_DASH_DASH, - ACTIONS(14802), 1, - sym_long_flag_identifier, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14817), 1, + anon_sym_RBRACK, STATE(9280), 1, sym_comment, - ACTIONS(3947), 2, - sym_identifier, - anon_sym_DASH, - [391345] = 6, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14804), 1, + ACTIONS(14819), 1, anon_sym_RBRACK, STATE(9281), 1, sym_comment, - STATE(9284), 1, + STATE(9282), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [391364] = 6, + [391395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14806), 1, + ACTIONS(14821), 1, anon_sym_RBRACK, - STATE(9267), 1, - aux_sym_val_table_repeat1, STATE(9282), 1, sym_comment, - STATE(10247), 1, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [391383] = 4, + [391414] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9283), 1, sym_comment, - ACTIONS(14184), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14186), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [391398] = 6, + [391429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14808), 1, - anon_sym_RBRACK, + ACTIONS(10533), 1, + anon_sym_DOT2, STATE(9284), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [391417] = 4, + ACTIONS(10624), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [391444] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9285), 1, sym_comment, - ACTIONS(14168), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14170), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [391432] = 4, + [391459] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9286), 1, sym_comment, - ACTIONS(14255), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14257), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [391447] = 6, - ACTIONS(3), 1, + [391474] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1003), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(4836), 1, - sym_cell_path, STATE(9287), 1, sym_comment, - STATE(9712), 1, - sym_path, - [391466] = 3, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391489] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(9288), 1, sym_comment, - ACTIONS(14810), 4, + ACTIONS(14823), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [391479] = 6, + [391502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14617), 1, + ACTIONS(14767), 1, anon_sym_LPAREN2, - ACTIONS(14812), 1, + ACTIONS(14825), 1, anon_sym_DOT2, - ACTIONS(14814), 1, + ACTIONS(14827), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14816), 1, + ACTIONS(14829), 1, aux_sym__immediate_decimal_token3, STATE(9289), 1, sym_comment, - [391498] = 3, - ACTIONS(3), 1, + [391521] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9290), 1, sym_comment, - ACTIONS(14818), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [391511] = 6, - ACTIONS(3), 1, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391536] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14617), 1, - anon_sym_LPAREN2, - ACTIONS(14820), 1, - anon_sym_DOT2, - ACTIONS(14822), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14824), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14831), 1, + anon_sym_DQUOTE, STATE(9291), 1, sym_comment, - [391530] = 5, + STATE(9294), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391553] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14826), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9292), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391547] = 5, + ACTIONS(14009), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14011), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391568] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14828), 1, - anon_sym_DQUOTE, STATE(9293), 1, sym_comment, - STATE(9304), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391564] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391583] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14830), 1, - anon_sym_RBRACK, + ACTIONS(14833), 1, + anon_sym_DQUOTE, STATE(9294), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [391583] = 4, - ACTIONS(3), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391600] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10521), 1, - anon_sym_DOT2, STATE(9295), 1, sym_comment, - ACTIONS(10760), 3, + ACTIONS(14013), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [391598] = 5, - ACTIONS(105), 1, + ACTIONS(14015), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391615] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14832), 1, - anon_sym_DQUOTE, + ACTIONS(4303), 1, + anon_sym_DASH, STATE(9296), 1, sym_comment, - STATE(9299), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391615] = 6, + ACTIONS(4305), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [391630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13993), 1, - sym_short_flag_identifier, - ACTIONS(14834), 1, - anon_sym_DOT2, - ACTIONS(14836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14838), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14835), 1, + anon_sym_RBRACK, STATE(9297), 1, sym_comment, - [391634] = 4, + STATE(9298), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10521), 1, - anon_sym_DOT2, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14837), 1, + anon_sym_RBRACK, STATE(9298), 1, sym_comment, - ACTIONS(10529), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [391649] = 5, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391668] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14840), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9299), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391666] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9300), 1, - sym_comment, - ACTIONS(14543), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14545), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [391681] = 6, + [391683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14842), 1, - anon_sym_RBRACK, - STATE(9301), 1, + ACTIONS(14839), 1, + anon_sym_LBRACE, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(8590), 1, + sym__blosure, + STATE(9300), 1, sym_comment, - STATE(9316), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [391700] = 4, + [391702] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9302), 1, + STATE(9301), 1, sym_comment, - ACTIONS(14489), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14491), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [391715] = 5, - ACTIONS(105), 1, + [391717] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14844), 1, - anon_sym_DQUOTE, - STATE(9292), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2093), 1, + sym_block, + STATE(9302), 1, + sym_comment, + STATE(10205), 1, + sym_returns, + [391736] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2094), 1, + sym_block, STATE(9303), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391732] = 5, + STATE(10209), 1, + sym_returns, + [391755] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14846), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9304), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [391749] = 6, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [391770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14848), 1, - anon_sym_DOT2, - ACTIONS(14850), 1, - anon_sym_LPAREN2, - ACTIONS(14852), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14854), 1, - aux_sym__immediate_decimal_token3, STATE(9305), 1, sym_comment, - [391768] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9306), 1, - sym_comment, - ACTIONS(14856), 4, + ACTIONS(14841), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [391781] = 6, + [391783] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14858), 1, - anon_sym_RBRACK, + ACTIONS(14767), 1, + anon_sym_LPAREN2, + ACTIONS(14843), 1, + anon_sym_DOT2, + ACTIONS(14845), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14847), 1, + aux_sym__immediate_decimal_token3, + STATE(9306), 1, + sym_comment, + [391802] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14849), 1, + anon_sym_DQUOTE, STATE(9307), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [391800] = 4, + STATE(9310), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391819] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14853), 1, + anon_sym_LF, STATE(9308), 1, sym_comment, - ACTIONS(14539), 2, + ACTIONS(14851), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(14541), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391815] = 4, + [391834] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9309), 1, sym_comment, - ACTIONS(14485), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14487), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [391830] = 4, + [391849] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14855), 1, + anon_sym_DQUOTE, STATE(9310), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391845] = 6, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [391866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14860), 1, - anon_sym_RBRACK, STATE(9311), 1, sym_comment, - STATE(9320), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [391864] = 4, + ACTIONS(14857), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [391879] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9312), 1, sym_comment, - ACTIONS(14485), 2, + ACTIONS(13894), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14487), 2, + ACTIONS(13896), 2, ts_builtin_sym_end, anon_sym_LF, - [391879] = 4, - ACTIONS(105), 1, + [391894] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14859), 1, + anon_sym_DOT2, + ACTIONS(14861), 1, + anon_sym_LPAREN2, + ACTIONS(14863), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14865), 1, + aux_sym__immediate_decimal_token3, STATE(9313), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391894] = 4, - ACTIONS(105), 1, + [391913] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14867), 1, + anon_sym_RBRACK, STATE(9314), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391909] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(9315), 1, - sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [391924] = 6, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [391932] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14862), 1, + ACTIONS(14869), 1, anon_sym_RBRACK, - STATE(9316), 1, + STATE(9315), 1, sym_comment, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [391943] = 4, + [391951] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1342), 1, - anon_sym_DASH, - STATE(9317), 1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(1949), 1, + sym_block, + STATE(9316), 1, sym_comment, - ACTIONS(1344), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [391958] = 3, + STATE(10238), 1, + sym_returns, + [391970] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(1950), 1, + sym_block, + STATE(9317), 1, + sym_comment, + STATE(10243), 1, + sym_returns, + [391989] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(9318), 1, sym_comment, - ACTIONS(14864), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [391971] = 6, - ACTIONS(3), 1, + ACTIONS(13898), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13900), 2, + ts_builtin_sym_end, + anon_sym_LF, + [392004] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14866), 1, - anon_sym_DOT2, - ACTIONS(14868), 1, - anon_sym_LPAREN2, - ACTIONS(14870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14872), 1, - aux_sym__immediate_decimal_token3, STATE(9319), 1, sym_comment, - [391990] = 6, + ACTIONS(13894), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, + anon_sym_LF, + [392019] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14874), 1, + ACTIONS(14871), 1, anon_sym_RBRACK, STATE(9320), 1, sym_comment, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [392009] = 4, - ACTIONS(105), 1, + [392038] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(9321), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392024] = 4, - ACTIONS(105), 1, + ACTIONS(14873), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [392051] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14767), 1, + anon_sym_LPAREN2, + ACTIONS(14875), 1, + anon_sym_DOT2, + ACTIONS(14877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14879), 1, + aux_sym__immediate_decimal_token3, STATE(9322), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392039] = 4, + [392070] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14881), 1, + anon_sym_DQUOTE, STATE(9323), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392054] = 4, - ACTIONS(105), 1, + STATE(9326), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392087] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14883), 1, + anon_sym_DOT2, + ACTIONS(14885), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14887), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14889), 1, + sym_short_flag_identifier, STATE(9324), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392069] = 4, + [392106] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14891), 1, + anon_sym_LPAREN, STATE(9325), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392084] = 3, - ACTIONS(3), 1, + ACTIONS(14893), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [392121] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14895), 1, + anon_sym_DQUOTE, STATE(9326), 1, sym_comment, - ACTIONS(14876), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [392097] = 6, - ACTIONS(3), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392138] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14878), 1, - anon_sym_DOT2, - ACTIONS(14880), 1, - anon_sym_LPAREN2, - ACTIONS(14882), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14884), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14897), 1, + anon_sym_DQUOTE, STATE(9327), 1, sym_comment, - [392116] = 4, + STATE(9343), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392155] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14899), 1, + anon_sym_DQUOTE, STATE(9328), 1, sym_comment, - ACTIONS(14043), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14045), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392131] = 4, - ACTIONS(105), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392172] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14901), 1, + anon_sym_RBRACK, STATE(9329), 1, sym_comment, - ACTIONS(14047), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14049), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392146] = 4, - ACTIONS(105), 1, + STATE(9330), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [392191] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14903), 1, + anon_sym_RBRACK, STATE(9330), 1, sym_comment, - ACTIONS(14485), 2, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [392210] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9331), 1, + sym_comment, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14487), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [392161] = 6, + [392225] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14905), 1, anon_sym_LBRACK, - ACTIONS(14886), 1, + ACTIONS(14908), 1, anon_sym_RBRACK, - STATE(9294), 1, - aux_sym_val_table_repeat1, - STATE(9331), 1, - sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [392180] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1346), 1, - anon_sym_DASH, - STATE(9332), 1, + STATE(9332), 2, sym_comment, - ACTIONS(1348), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [392195] = 4, - ACTIONS(105), 1, + aux_sym_val_table_repeat1, + [392242] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14910), 1, + anon_sym_DOT2, + ACTIONS(14912), 1, + anon_sym_LPAREN2, + ACTIONS(14914), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14916), 1, + aux_sym__immediate_decimal_token3, STATE(9333), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392210] = 4, + [392261] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9334), 1, sym_comment, - ACTIONS(14489), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14491), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [392225] = 5, - ACTIONS(105), 1, + [392276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14888), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(14889), 1, + sym_short_flag_identifier, + ACTIONS(14918), 1, + anon_sym_DOT2, + ACTIONS(14920), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14922), 1, + aux_sym__immediate_decimal_token3, STATE(9335), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [392242] = 6, - ACTIONS(3), 1, + [392295] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14890), 1, - anon_sym_RBRACK, + ACTIONS(4038), 1, + sym__entry_separator, + ACTIONS(14924), 1, + anon_sym_DOT2, STATE(9336), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [392261] = 4, - ACTIONS(105), 1, + ACTIONS(4036), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [392312] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(1960), 1, + sym_block, STATE(9337), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392276] = 4, - ACTIONS(105), 1, + STATE(10249), 1, + sym_returns, + [392331] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(1961), 1, + sym_block, STATE(9338), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392291] = 4, + STATE(10258), 1, + sym_returns, + [392350] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9339), 1, sym_comment, - ACTIONS(14489), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14491), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [392306] = 5, - ACTIONS(105), 1, + [392365] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14892), 1, - anon_sym_DQUOTE, STATE(9340), 1, sym_comment, + ACTIONS(14926), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [392378] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14928), 1, + anon_sym_DOT2, + ACTIONS(14930), 1, + anon_sym_LPAREN2, + ACTIONS(14932), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14934), 1, + aux_sym__immediate_decimal_token3, STATE(9341), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [392323] = 5, + sym_comment, + [392397] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14894), 1, + ACTIONS(14936), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9341), 1, + STATE(9342), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9344), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [392340] = 4, + [392414] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9342), 1, - sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392355] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14027), 1, - sym_short_flag_identifier, - ACTIONS(14896), 1, - anon_sym_DOT2, - ACTIONS(14898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14900), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14938), 1, + anon_sym_DQUOTE, STATE(9343), 1, sym_comment, - [392374] = 4, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392431] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14940), 1, + anon_sym_DQUOTE, STATE(9344), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392389] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14902), 1, - anon_sym_DQUOTE, - STATE(9335), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9345), 1, - sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [392406] = 4, - ACTIONS(105), 1, + [392448] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9345), 1, + sym_comment, + ACTIONS(14942), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [392461] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14944), 1, + anon_sym_DOT2, + ACTIONS(14946), 1, + anon_sym_LPAREN2, + ACTIONS(14948), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14950), 1, + aux_sym__immediate_decimal_token3, STATE(9346), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392421] = 6, + [392480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14904), 1, + ACTIONS(14952), 1, anon_sym_RBRACK, STATE(9347), 1, sym_comment, - STATE(9353), 1, + STATE(9348), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [392440] = 6, + [392499] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14906), 1, + ACTIONS(14954), 1, anon_sym_RBRACK, - STATE(9336), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, STATE(9348), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [392459] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14227), 1, - anon_sym_DOT2, - ACTIONS(14231), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14233), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14235), 1, - aux_sym__record_key_token1, - STATE(9349), 1, - sym_comment, - [392478] = 3, + [392518] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9350), 1, + STATE(9349), 1, sym_comment, - ACTIONS(14908), 4, + ACTIONS(14956), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [392491] = 6, + [392531] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14910), 1, + ACTIONS(14958), 1, anon_sym_DOT2, - ACTIONS(14912), 1, + ACTIONS(14960), 1, anon_sym_LPAREN2, - ACTIONS(14914), 1, + ACTIONS(14962), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14916), 1, + ACTIONS(14964), 1, aux_sym__immediate_decimal_token3, + STATE(9350), 1, + sym_comment, + [392550] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(14966), 1, + anon_sym_DQUOTE, STATE(9351), 1, sym_comment, - [392510] = 4, + STATE(9353), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392567] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9352), 1, sym_comment, - ACTIONS(14255), 2, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14257), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [392525] = 6, - ACTIONS(3), 1, + [392582] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14918), 1, - anon_sym_RBRACK, + ACTIONS(14968), 1, + anon_sym_DQUOTE, STATE(9353), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [392544] = 6, - ACTIONS(3), 1, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392599] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13600), 1, - anon_sym_LPAREN2, - ACTIONS(14920), 1, - anon_sym_DOT2, - ACTIONS(14922), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14924), 1, - aux_sym__immediate_decimal_token3, STATE(9354), 1, sym_comment, - [392563] = 5, + ACTIONS(13818), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [392614] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14926), 1, + ACTIONS(14970), 1, anon_sym_DQUOTE, STATE(9355), 1, sym_comment, - STATE(9366), 1, + STATE(9374), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [392580] = 3, + [392631] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14972), 1, + anon_sym_RBRACK, STATE(9356), 1, sym_comment, - ACTIONS(14928), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [392593] = 3, + STATE(9357), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [392650] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(14974), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, STATE(9357), 1, sym_comment, - ACTIONS(14930), 4, + STATE(10244), 1, + sym_val_list, + [392669] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14976), 1, + anon_sym_LBRACK, + ACTIONS(14978), 1, + anon_sym_LPAREN, + STATE(2018), 1, + sym_parameter_parens, + STATE(2019), 1, + sym_parameter_bracks, + STATE(9358), 1, + sym_comment, + [392688] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9359), 1, + sym_comment, + ACTIONS(14980), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [392606] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9358), 1, - sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392621] = 6, + [392701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14932), 1, + ACTIONS(14725), 1, + anon_sym_LPAREN2, + ACTIONS(14982), 1, anon_sym_DOT2, - ACTIONS(14934), 1, + ACTIONS(14984), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14936), 1, + ACTIONS(14986), 1, aux_sym__immediate_decimal_token3, - ACTIONS(14938), 1, - sym_short_flag_identifier, - STATE(9359), 1, - sym_comment, - [392640] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(9360), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392655] = 4, + [392720] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(14988), 1, + anon_sym_DQUOTE, STATE(9361), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392670] = 4, + STATE(9364), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392737] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11697), 1, - aux_sym_unquoted_token3, + ACTIONS(3842), 1, + sym__entry_separator, + ACTIONS(14990), 1, + anon_sym_DOT2, STATE(9362), 1, sym_comment, - ACTIONS(823), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [392685] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14940), 1, - anon_sym_use, - ACTIONS(14942), 1, - anon_sym_list, - ACTIONS(14944), 1, - anon_sym_hide, - ACTIONS(14946), 1, - anon_sym_new, - STATE(9363), 1, - sym_comment, - [392704] = 4, + ACTIONS(3840), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [392754] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(9364), 1, - sym_comment, - ACTIONS(14489), 2, + ACTIONS(13880), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, + ACTIONS(13882), 1, anon_sym_LF, - [392719] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14948), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9365), 1, + ACTIONS(14992), 1, + ts_builtin_sym_end, + STATE(2274), 1, + sym__terminator, + STATE(9363), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [392736] = 5, + [392773] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14950), 1, + ACTIONS(14994), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9366), 1, + STATE(9364), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [392753] = 4, + [392790] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9367), 1, + STATE(9365), 1, sym_comment, - ACTIONS(14255), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14257), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [392768] = 4, + [392805] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9368), 1, + ACTIONS(14998), 1, + anon_sym_LF, + STATE(9366), 1, sym_comment, - ACTIONS(14168), 2, + ACTIONS(14996), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392783] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [392820] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(14952), 1, + ACTIONS(15000), 1, anon_sym_DOT2, - ACTIONS(14954), 1, + ACTIONS(15002), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14956), 1, + ACTIONS(15004), 1, aux_sym__immediate_decimal_token3, + ACTIONS(15006), 1, + sym_short_flag_identifier, + STATE(9367), 1, + sym_comment, + [392839] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15008), 1, + anon_sym_RBRACK, + STATE(9368), 1, + sym_comment, + STATE(9369), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [392858] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15010), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, STATE(9369), 1, sym_comment, - [392802] = 4, + STATE(10244), 1, + sym_val_list, + [392877] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9370), 1, sym_comment, - ACTIONS(14255), 2, + ACTIONS(12736), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14257), 2, + ACTIONS(12738), 2, ts_builtin_sym_end, anon_sym_LF, - [392817] = 4, - ACTIONS(105), 1, + [392892] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(9371), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392832] = 4, - ACTIONS(105), 1, + ACTIONS(15012), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [392905] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14725), 1, + anon_sym_LPAREN2, + ACTIONS(15014), 1, + anon_sym_DOT2, + ACTIONS(15016), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15018), 1, + aux_sym__immediate_decimal_token3, STATE(9372), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392847] = 6, - ACTIONS(3), 1, + [392924] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14958), 1, - anon_sym_RBRACK, + ACTIONS(15020), 1, + anon_sym_DQUOTE, STATE(9373), 1, sym_comment, - STATE(9382), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [392866] = 4, - ACTIONS(3), 1, + STATE(9376), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392941] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1033), 1, - anon_sym_DASH, + ACTIONS(15022), 1, + anon_sym_DQUOTE, STATE(9374), 1, sym_comment, - ACTIONS(1035), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [392881] = 4, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [392958] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15026), 1, + anon_sym_LF, STATE(9375), 1, sym_comment, - ACTIONS(14485), 2, + ACTIONS(15024), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [392896] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [392973] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14960), 1, + ACTIONS(15028), 1, anon_sym_DQUOTE, STATE(9376), 1, sym_comment, - STATE(9378), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [392913] = 4, + [392990] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9377), 1, sym_comment, - ACTIONS(14489), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14491), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [392928] = 5, + [393005] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14962), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(15032), 1, + anon_sym_LF, STATE(9378), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [392945] = 4, + ACTIONS(15030), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [393020] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1350), 1, + ACTIONS(1353), 1, anon_sym_DASH, STATE(9379), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(1355), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [392960] = 6, + [393035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14964), 1, + ACTIONS(15034), 1, anon_sym_RBRACK, STATE(9380), 1, sym_comment, - STATE(9384), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [392979] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14966), 1, - anon_sym_DQUOTE, - STATE(9365), 1, - aux_sym__str_double_quotes_repeat1, STATE(9381), 1, - sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [392996] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(14968), 1, - anon_sym_RBRACK, - STATE(9382), 1, - sym_comment, - STATE(9564), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [393015] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9383), 1, - sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393030] = 6, + [393054] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14970), 1, + ACTIONS(15036), 1, anon_sym_RBRACK, - STATE(9384), 1, - sym_comment, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [393049] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9385), 1, + STATE(9381), 1, sym_comment, - ACTIONS(14489), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14491), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393064] = 4, + STATE(10244), 1, + sym_val_list, + [393073] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9386), 1, + STATE(9382), 1, sym_comment, - ACTIONS(14135), 2, + ACTIONS(13973), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14137), 2, + ACTIONS(13975), 2, ts_builtin_sym_end, anon_sym_LF, - [393079] = 4, - ACTIONS(105), 1, + [393088] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9387), 1, + STATE(9383), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393094] = 6, + ACTIONS(15038), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [393101] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14972), 1, - anon_sym_DOT2, - ACTIONS(14974), 1, + ACTIONS(14685), 1, anon_sym_LPAREN2, - ACTIONS(14976), 1, + ACTIONS(15040), 1, + anon_sym_DOT2, + ACTIONS(15042), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14978), 1, + ACTIONS(15044), 1, aux_sym__immediate_decimal_token3, - STATE(9388), 1, - sym_comment, - [393113] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9389), 1, + STATE(9384), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393128] = 4, + [393120] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9390), 1, + ACTIONS(15046), 1, + anon_sym_DQUOTE, + ACTIONS(15048), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(9385), 2, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393143] = 5, + aux_sym__str_double_quotes_repeat1, + [393135] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14980), 1, + ACTIONS(15051), 1, anon_sym_DQUOTE, - STATE(9391), 1, + STATE(9386), 1, sym_comment, - STATE(9733), 1, + STATE(9388), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [393160] = 3, + [393152] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9392), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15053), 1, + anon_sym_RBRACK, + STATE(9387), 1, sym_comment, - ACTIONS(14982), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [393173] = 4, + STATE(9389), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393171] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9393), 1, + ACTIONS(15055), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9388), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393188] = 4, - ACTIONS(105), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393188] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9394), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15057), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9389), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393203] = 4, - ACTIONS(105), 1, + STATE(10244), 1, + sym_val_list, + [393207] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9395), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15059), 1, + anon_sym_RBRACK, + STATE(9390), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393218] = 4, - ACTIONS(105), 1, + STATE(9397), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393226] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9396), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15061), 1, + anon_sym_RBRACK, + STATE(9391), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393233] = 4, - ACTIONS(105), 1, + STATE(9392), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393245] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9397), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15063), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9392), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393248] = 4, + STATE(10244), 1, + sym_val_list, + [393264] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9398), 1, + STATE(9393), 1, sym_comment, - ACTIONS(14451), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14453), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [393263] = 3, + [393279] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9399), 1, + STATE(9394), 1, sym_comment, - ACTIONS(14984), 4, + ACTIONS(15065), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [393276] = 6, + [393292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14986), 1, - anon_sym_DOT2, - ACTIONS(14988), 1, + ACTIONS(14767), 1, anon_sym_LPAREN2, - ACTIONS(14990), 1, + ACTIONS(15067), 1, + anon_sym_DOT2, + ACTIONS(15069), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14992), 1, + ACTIONS(15071), 1, aux_sym__immediate_decimal_token3, - STATE(9400), 1, + STATE(9395), 1, sym_comment, - [393295] = 4, + [393311] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9401), 1, + ACTIONS(15073), 1, + anon_sym_DQUOTE, + STATE(9396), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393310] = 4, - ACTIONS(105), 1, + STATE(9399), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393328] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9402), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15075), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9397), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393325] = 4, - ACTIONS(105), 1, + STATE(10244), 1, + sym_val_list, + [393347] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9403), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2330), 1, + sym_block, + STATE(9398), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393340] = 4, + STATE(10190), 1, + sym_returns, + [393366] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9404), 1, + ACTIONS(15077), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9399), 1, sym_comment, - ACTIONS(14485), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14487), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393355] = 6, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393383] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(14613), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2331), 1, + sym_block, + STATE(9400), 1, + sym_comment, + STATE(10199), 1, + sym_returns, + [393402] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1282), 1, + anon_sym_DASH, + STATE(9401), 1, + sym_comment, + ACTIONS(1284), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [393417] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3905), 1, + sym__entry_separator, + ACTIONS(15079), 1, anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(9405), 1, + STATE(9402), 1, sym_comment, - STATE(9751), 1, - aux_sym_cell_path_repeat1, - [393374] = 6, + ACTIONS(3903), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [393434] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14994), 1, + ACTIONS(15081), 1, anon_sym_RBRACK, - STATE(9406), 1, + STATE(9403), 1, sym_comment, - STATE(9564), 1, + STATE(9404), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [393393] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9407), 1, - sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393408] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(14996), 1, - anon_sym_DQUOTE, - STATE(9408), 1, - sym_comment, - STATE(9420), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [393425] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9409), 1, - sym_comment, - ACTIONS(14190), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14192), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393440] = 3, + [393453] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9410), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15083), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9404), 1, sym_comment, - ACTIONS(14998), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [393453] = 4, + STATE(10244), 1, + sym_val_list, + [393472] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9411), 1, + ACTIONS(3911), 1, + sym__entry_separator, + ACTIONS(15085), 1, + anon_sym_DOT2, + STATE(9405), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393468] = 3, + ACTIONS(3909), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [393489] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9412), 1, + STATE(9406), 1, sym_comment, - ACTIONS(15000), 4, + ACTIONS(15087), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [393481] = 6, + [393502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15002), 1, + ACTIONS(15089), 1, anon_sym_DOT2, - ACTIONS(15004), 1, + ACTIONS(15091), 1, anon_sym_LPAREN2, - ACTIONS(15006), 1, + ACTIONS(15093), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15008), 1, + ACTIONS(15095), 1, aux_sym__immediate_decimal_token3, - STATE(9413), 1, + STATE(9407), 1, sym_comment, - [393500] = 6, + [393521] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15010), 1, - anon_sym_DOT2, - ACTIONS(15012), 1, - anon_sym_LPAREN2, - ACTIONS(15014), 1, + ACTIONS(951), 1, + anon_sym_LBRACE, + ACTIONS(10031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15016), 1, - aux_sym__immediate_decimal_token3, - STATE(9414), 1, + ACTIONS(13962), 1, + anon_sym_DOT2, + ACTIONS(15097), 1, + aux_sym_unquoted_token2, + STATE(9408), 1, sym_comment, - [393519] = 4, + [393540] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9415), 1, + ACTIONS(15099), 1, + anon_sym_DQUOTE, + STATE(9409), 1, sym_comment, - ACTIONS(14194), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14196), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393534] = 4, + STATE(9411), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393557] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9416), 1, + ACTIONS(15103), 1, + anon_sym_LF, + STATE(9410), 1, sym_comment, - ACTIONS(14379), 2, + ACTIONS(15101), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393549] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [393572] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15018), 1, + ACTIONS(15105), 1, anon_sym_DQUOTE, - STATE(9417), 1, - sym_comment, - STATE(9428), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + STATE(9411), 1, + sym_comment, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [393566] = 4, + [393589] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9418), 1, + STATE(9412), 1, sym_comment, - ACTIONS(14451), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14453), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [393581] = 4, + [393604] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9419), 1, + STATE(9413), 1, sym_comment, - ACTIONS(14379), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14381), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [393596] = 5, - ACTIONS(105), 1, + [393619] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15020), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9420), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15107), 1, + anon_sym_RBRACK, + STATE(9414), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [393613] = 6, + STATE(9415), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15022), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15109), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9415), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [393657] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9416), 1, + sym_comment, + ACTIONS(15111), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [393670] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14767), 1, + anon_sym_LPAREN2, + ACTIONS(15113), 1, anon_sym_DOT2, - ACTIONS(15024), 1, + ACTIONS(15115), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15026), 1, + ACTIONS(15117), 1, aux_sym__immediate_decimal_token3, - ACTIONS(15028), 1, - sym_short_flag_identifier, - STATE(9421), 1, + STATE(9417), 1, sym_comment, - [393632] = 5, + [393689] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15030), 1, + ACTIONS(15119), 1, anon_sym_DQUOTE, - STATE(9422), 1, + STATE(9418), 1, sym_comment, - STATE(9476), 1, + STATE(9419), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [393649] = 4, + [393706] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9423), 1, + ACTIONS(15121), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9419), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393664] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393723] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9424), 1, + STATE(9420), 1, sym_comment, - ACTIONS(14485), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14487), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [393679] = 6, + [393738] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15028), 1, - sym_short_flag_identifier, - ACTIONS(15032), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15123), 1, + anon_sym_RBRACK, + STATE(9421), 1, + sym_comment, + STATE(9422), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393757] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15125), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9422), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [393776] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9423), 1, + sym_comment, + ACTIONS(15127), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [393789] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15129), 1, anon_sym_DOT2, - ACTIONS(15034), 1, + ACTIONS(15131), 1, + anon_sym_LPAREN2, + ACTIONS(15133), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15036), 1, + ACTIONS(15135), 1, aux_sym__immediate_decimal_token3, + STATE(9424), 1, + sym_comment, + [393808] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15137), 1, + anon_sym_DQUOTE, STATE(9425), 1, sym_comment, - [393698] = 4, + STATE(9426), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393825] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15139), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9426), 1, sym_comment, - ACTIONS(14451), 2, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393842] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9427), 1, + sym_comment, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14453), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [393713] = 4, + [393857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1354), 1, - anon_sym_DASH, - STATE(9427), 1, - sym_comment, - ACTIONS(1356), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [393728] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15038), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15141), 1, + anon_sym_RBRACK, STATE(9428), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [393745] = 6, + STATE(9429), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [393876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15040), 1, + ACTIONS(15143), 1, anon_sym_RBRACK, - STATE(9406), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, STATE(9429), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [393764] = 3, + [393895] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(9430), 1, sym_comment, - ACTIONS(15042), 4, + ACTIONS(15145), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [393777] = 6, + [393908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15044), 1, - anon_sym_DOT2, - ACTIONS(15046), 1, + ACTIONS(14725), 1, anon_sym_LPAREN2, - ACTIONS(15048), 1, + ACTIONS(15147), 1, + anon_sym_DOT2, + ACTIONS(15149), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15050), 1, + ACTIONS(15151), 1, aux_sym__immediate_decimal_token3, STATE(9431), 1, sym_comment, - [393796] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15052), 1, - anon_sym_RBRACK, - STATE(9432), 1, - sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [393815] = 4, + [393927] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9433), 1, + STATE(9432), 1, sym_comment, - ACTIONS(14379), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14381), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [393830] = 5, + [393942] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15054), 1, + ACTIONS(15153), 1, anon_sym_DQUOTE, - STATE(9434), 1, + STATE(9433), 1, sym_comment, - STATE(9439), 1, + STATE(9434), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [393847] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15056), 1, - anon_sym_RBRACK, - STATE(9435), 1, - sym_comment, - STATE(9443), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [393866] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9436), 1, - sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393881] = 4, + [393959] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9437), 1, + ACTIONS(15155), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9434), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [393896] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [393976] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9438), 1, + STATE(9435), 1, sym_comment, - ACTIONS(14451), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14453), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [393911] = 5, - ACTIONS(105), 1, + [393991] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15058), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9439), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15157), 1, + anon_sym_RBRACK, + STATE(9436), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [393928] = 6, + STATE(9437), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [394010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15060), 1, + ACTIONS(15159), 1, anon_sym_RBRACK, - STATE(9432), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9440), 1, + STATE(9437), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [393947] = 3, + [394029] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9441), 1, + STATE(9438), 1, sym_comment, - ACTIONS(15062), 4, + ACTIONS(15161), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [393960] = 4, + [394042] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15163), 1, + anon_sym_DOT2, + ACTIONS(15165), 1, + anon_sym_LPAREN2, + ACTIONS(15167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15169), 1, + aux_sym__immediate_decimal_token3, + STATE(9439), 1, + sym_comment, + [394061] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15171), 1, + anon_sym_DQUOTE, + STATE(9440), 1, + sym_comment, + STATE(9441), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394078] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15173), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9441), 1, + sym_comment, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394095] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9442), 1, sym_comment, - ACTIONS(14379), 2, + ACTIONS(4154), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14381), 2, + ACTIONS(4156), 2, ts_builtin_sym_end, anon_sym_LF, - [393975] = 6, + [394110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15064), 1, - anon_sym_RBRACK, STATE(9443), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [393994] = 6, + ACTIONS(15175), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [394123] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15066), 1, + ACTIONS(15177), 1, anon_sym_DOT2, - ACTIONS(15068), 1, + ACTIONS(15179), 1, anon_sym_LPAREN2, - ACTIONS(15070), 1, + ACTIONS(15181), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15072), 1, + ACTIONS(15183), 1, aux_sym__immediate_decimal_token3, STATE(9444), 1, sym_comment, - [394013] = 4, + [394142] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15074), 1, - anon_sym_LPAREN, + ACTIONS(15185), 1, + anon_sym_DQUOTE, STATE(9445), 1, sym_comment, - ACTIONS(15076), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [394028] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(9446), 1, - sym_comment, - ACTIONS(14245), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14247), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394043] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15078), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9447), 1, - sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [394060] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15080), 1, - anon_sym_DQUOTE, - STATE(9448), 1, - sym_comment, - STATE(9454), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394077] = 5, + [394159] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15082), 1, + ACTIONS(15187), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9449), 1, + STATE(9446), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394094] = 5, + [394176] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__entry_separator, - ACTIONS(15084), 1, - anon_sym_DOT2, - STATE(9450), 1, + ACTIONS(15191), 1, + anon_sym_LF, + STATE(9447), 1, sym_comment, - ACTIONS(3927), 2, - anon_sym_RBRACK, + ACTIONS(15189), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [394111] = 4, - ACTIONS(105), 1, + [394191] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9451), 1, + STATE(9448), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394126] = 6, - ACTIONS(105), 1, + ACTIONS(15193), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [394204] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14093), 1, - anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, - ACTIONS(15086), 1, - ts_builtin_sym_end, - STATE(2237), 1, - sym__terminator, - STATE(9452), 1, + ACTIONS(14799), 1, + anon_sym_LPAREN2, + ACTIONS(15195), 1, + anon_sym_DOT2, + ACTIONS(15197), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15199), 1, + aux_sym__immediate_decimal_token3, + STATE(9449), 1, sym_comment, - [394145] = 5, + [394223] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3923), 1, - sym__entry_separator, - ACTIONS(15088), 1, - anon_sym_DOT2, - STATE(9453), 1, + ACTIONS(15201), 1, + anon_sym_DQUOTE, + STATE(9450), 1, sym_comment, - ACTIONS(3921), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [394162] = 5, + STATE(9451), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394240] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15090), 1, + ACTIONS(15203), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9454), 1, + STATE(9451), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394179] = 3, + [394257] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9455), 1, + ACTIONS(1357), 1, + anon_sym_DASH, + STATE(9452), 1, sym_comment, - ACTIONS(15092), 4, + ACTIONS(1359), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [394272] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9453), 1, + sym_comment, + ACTIONS(15205), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [394192] = 5, - ACTIONS(105), 1, + [394285] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3917), 1, - sym__entry_separator, - ACTIONS(15094), 1, + ACTIONS(15207), 1, anon_sym_DOT2, - STATE(9456), 1, + ACTIONS(15209), 1, + anon_sym_LPAREN2, + ACTIONS(15211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15213), 1, + aux_sym__immediate_decimal_token3, + STATE(9454), 1, sym_comment, - ACTIONS(3915), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [394209] = 4, + [394304] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9457), 1, + ACTIONS(15215), 1, + anon_sym_DQUOTE, + STATE(9455), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394224] = 6, - ACTIONS(3), 1, + STATE(9456), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394321] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15096), 1, - anon_sym_DOT2, - ACTIONS(15098), 1, - anon_sym_LPAREN2, - ACTIONS(15100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15102), 1, - aux_sym__immediate_decimal_token3, - STATE(9458), 1, + ACTIONS(15217), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9456), 1, sym_comment, - [394243] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394338] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9459), 1, + STATE(9457), 1, sym_comment, - ACTIONS(14379), 2, + ACTIONS(14540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14381), 2, + ACTIONS(14542), 2, ts_builtin_sym_end, anon_sym_LF, - [394258] = 5, - ACTIONS(105), 1, + [394353] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3911), 1, - sym__entry_separator, - ACTIONS(15104), 1, - anon_sym_DOT2, - STATE(9460), 1, + STATE(9458), 1, sym_comment, - ACTIONS(3909), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [394275] = 6, + ACTIONS(15219), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [394366] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14239), 1, - sym_short_flag_identifier, - ACTIONS(15106), 1, + ACTIONS(15165), 1, + anon_sym_LPAREN2, + ACTIONS(15221), 1, anon_sym_DOT2, - ACTIONS(15108), 1, + ACTIONS(15223), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15110), 1, + ACTIONS(15225), 1, aux_sym__immediate_decimal_token3, - STATE(9461), 1, + STATE(9459), 1, sym_comment, - [394294] = 4, + [394385] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9462), 1, + ACTIONS(15227), 1, + anon_sym_DQUOTE, + STATE(9460), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394309] = 5, + STATE(9461), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394402] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15112), 1, + ACTIONS(15229), 1, anon_sym_DQUOTE, - STATE(9447), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9463), 1, + STATE(9461), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394326] = 5, + [394419] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9462), 1, + sym_comment, + ACTIONS(15231), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [394432] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9463), 1, + sym_comment, + ACTIONS(15233), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [394445] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15114), 1, + ACTIONS(15235), 1, anon_sym_DQUOTE, STATE(9464), 1, sym_comment, - STATE(9466), 1, + STATE(9465), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394343] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9465), 1, - sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394358] = 5, + [394462] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15116), 1, + ACTIONS(15237), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9466), 1, + STATE(9465), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394375] = 5, + [394479] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15239), 1, + anon_sym_DOT2, + ACTIONS(15241), 1, + anon_sym_LPAREN2, + ACTIONS(15243), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15245), 1, + aux_sym__immediate_decimal_token3, + STATE(9466), 1, + sym_comment, + [394498] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15118), 1, + ACTIONS(15247), 1, anon_sym_DQUOTE, - STATE(9449), 1, - aux_sym__str_double_quotes_repeat1, STATE(9467), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9468), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394392] = 4, + [394515] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15249), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9468), 1, sym_comment, - ACTIONS(14204), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14206), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394407] = 6, - ACTIONS(3), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394532] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14617), 1, - anon_sym_LPAREN2, - ACTIONS(15120), 1, - anon_sym_DOT2, - ACTIONS(15122), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15124), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15251), 1, + anon_sym_DQUOTE, STATE(9469), 1, sym_comment, - [394426] = 4, + STATE(9522), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394549] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15128), 1, - anon_sym_LF, + ACTIONS(15253), 1, + anon_sym_DQUOTE, STATE(9470), 1, sym_comment, - ACTIONS(15126), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [394441] = 4, + STATE(9471), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394566] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15132), 1, - anon_sym_LF, + ACTIONS(15255), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9471), 1, sym_comment, - ACTIONS(15130), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [394456] = 3, - ACTIONS(3), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394583] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9472), 1, sym_comment, - ACTIONS(15134), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [394469] = 3, - ACTIONS(3), 1, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [394598] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15257), 1, + anon_sym_DQUOTE, STATE(9473), 1, sym_comment, - ACTIONS(15136), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [394482] = 6, - ACTIONS(3), 1, + STATE(9474), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394615] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13600), 1, - anon_sym_LPAREN2, - ACTIONS(15138), 1, - anon_sym_DOT2, - ACTIONS(15140), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15142), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15259), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9474), 1, sym_comment, - [394501] = 6, - ACTIONS(3), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394632] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(15144), 1, - anon_sym_DOT2, - ACTIONS(15146), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15148), 1, - aux_sym__immediate_decimal_token3, STATE(9475), 1, sym_comment, - [394520] = 5, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [394647] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15150), 1, + ACTIONS(15261), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9476), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9477), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394537] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9477), 1, - sym_comment, - ACTIONS(15152), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [394550] = 5, + [394664] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15154), 1, + ACTIONS(15263), 1, anon_sym_DQUOTE, - STATE(9478), 1, - sym_comment, - STATE(9489), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + STATE(9477), 1, + sym_comment, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394567] = 3, + [394681] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15265), 1, + anon_sym_RBRACK, + STATE(9478), 1, + sym_comment, + STATE(9610), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [394700] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15267), 1, + anon_sym_DQUOTE, STATE(9479), 1, sym_comment, - ACTIONS(15156), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [394580] = 4, + STATE(9480), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394717] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15269), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9480), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394595] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394734] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15271), 1, + anon_sym_DQUOTE, STATE(9481), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394610] = 6, - ACTIONS(3), 1, + STATE(9482), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394751] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13562), 1, - sym_short_flag_identifier, - ACTIONS(15158), 1, - anon_sym_DOT2, - ACTIONS(15160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15162), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15273), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9482), 1, sym_comment, - [394629] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394768] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15166), 1, - anon_sym_LF, + ACTIONS(15275), 1, + anon_sym_DQUOTE, STATE(9483), 1, sym_comment, - ACTIONS(15164), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [394644] = 4, - ACTIONS(3), 1, + STATE(9484), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394785] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DASH, + ACTIONS(15277), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9484), 1, sym_comment, - ACTIONS(4015), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394659] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394802] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15279), 1, + anon_sym_DQUOTE, STATE(9485), 1, sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394674] = 4, + STATE(9486), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394819] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15170), 1, - anon_sym_LF, + ACTIONS(15281), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9486), 1, sym_comment, - ACTIONS(15168), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [394689] = 6, - ACTIONS(3), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394836] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14988), 1, - anon_sym_LPAREN2, - ACTIONS(15172), 1, - anon_sym_DOT2, - ACTIONS(15174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15176), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15283), 1, + anon_sym_DQUOTE, STATE(9487), 1, sym_comment, - [394708] = 4, - ACTIONS(3), 1, + STATE(9488), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394853] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DASH, + ACTIONS(15285), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9488), 1, sym_comment, - ACTIONS(4334), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394723] = 5, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394870] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15178), 1, + ACTIONS(15287), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9489), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9490), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394740] = 4, - ACTIONS(3), 1, + [394887] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DASH, + ACTIONS(15289), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9490), 1, sym_comment, - ACTIONS(4342), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394755] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394904] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15291), 1, + anon_sym_DQUOTE, STATE(9491), 1, sym_comment, - ACTIONS(14168), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394770] = 4, + STATE(9492), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394921] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15293), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9492), 1, sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394785] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394938] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15295), 1, + anon_sym_DQUOTE, STATE(9493), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14257), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394800] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(9494), 1, - sym_comment, - ACTIONS(14379), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14381), 2, - ts_builtin_sym_end, - anon_sym_LF, - [394815] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4358), 1, - anon_sym_DASH, - STATE(9495), 1, - sym_comment, - ACTIONS(4360), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394830] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15180), 1, - anon_sym_RBRACK, - STATE(9496), 1, - sym_comment, - STATE(9504), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [394849] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1385), 1, - anon_sym_DASH, - STATE(9497), 1, - sym_comment, - ACTIONS(1387), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394864] = 6, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394955] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3489), 1, - anon_sym_RBRACK, - ACTIONS(3491), 1, - sym__entry_separator, - ACTIONS(10252), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15182), 1, - anon_sym_DOT2, - STATE(9498), 1, - sym_comment, - [394883] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4362), 1, - anon_sym_DASH, - STATE(9499), 1, - sym_comment, - ACTIONS(4364), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394898] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1389), 1, - anon_sym_DASH, - STATE(9500), 1, + ACTIONS(15297), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9494), 1, sym_comment, - ACTIONS(1391), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394913] = 5, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [394972] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15186), 1, + ACTIONS(15299), 1, anon_sym_DQUOTE, - STATE(9501), 1, + STATE(9495), 1, sym_comment, - STATE(9506), 1, + STATE(9496), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [394930] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15188), 1, - anon_sym_RBRACK, - STATE(9502), 1, - sym_comment, - STATE(9526), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [394949] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1397), 1, - anon_sym_DASH, - STATE(9503), 1, - sym_comment, - ACTIONS(1399), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394964] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15190), 1, - anon_sym_RBRACK, - STATE(9504), 1, - sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [394983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1193), 1, - anon_sym_DASH, - STATE(9505), 1, - sym_comment, - ACTIONS(1195), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [394998] = 5, + [394989] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15192), 1, + ACTIONS(15301), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9506), 1, + STATE(9496), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395015] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9507), 1, - sym_comment, - ACTIONS(15194), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [395028] = 5, + [395006] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15196), 1, + ACTIONS(15303), 1, anon_sym_DQUOTE, - STATE(9508), 1, + STATE(9497), 1, sym_comment, - STATE(9510), 1, + STATE(9498), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395045] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9509), 1, - sym_comment, - ACTIONS(4180), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4182), 2, - ts_builtin_sym_end, - anon_sym_LF, - [395060] = 5, + [395023] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15198), 1, + ACTIONS(15305), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9510), 1, + STATE(9498), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395077] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15200), 1, - anon_sym_RBRACK, - STATE(9511), 1, - sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [395096] = 5, + [395040] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15202), 1, + ACTIONS(15307), 1, anon_sym_DQUOTE, - STATE(9512), 1, + STATE(9499), 1, sym_comment, - STATE(9514), 1, + STATE(9500), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395113] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - STATE(9513), 1, - sym_comment, - ACTIONS(1007), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395128] = 5, + [395057] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15204), 1, + ACTIONS(15309), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9514), 1, + STATE(9500), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395145] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15206), 1, - anon_sym_RBRACK, - STATE(9511), 1, - aux_sym_val_table_repeat1, - STATE(9515), 1, - sym_comment, - STATE(10247), 1, - sym_val_list, - [395164] = 5, + [395074] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15208), 1, + ACTIONS(15311), 1, anon_sym_DQUOTE, - STATE(9516), 1, + STATE(9501), 1, sym_comment, - STATE(9517), 1, + STATE(9502), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395181] = 5, + [395091] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15210), 1, + ACTIONS(15313), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9517), 1, + STATE(9502), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395198] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9518), 1, - sym_comment, - ACTIONS(14451), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14453), 2, - ts_builtin_sym_end, - anon_sym_LF, - [395213] = 4, + [395108] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9519), 1, + ACTIONS(15315), 1, + anon_sym_DQUOTE, + STATE(9503), 1, sym_comment, - ACTIONS(14307), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14309), 2, - ts_builtin_sym_end, - anon_sym_LF, - [395228] = 5, + STATE(9504), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [395125] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15212), 1, + ACTIONS(15317), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9520), 1, + STATE(9504), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395245] = 5, + [395142] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15214), 1, + ACTIONS(15319), 1, anon_sym_DQUOTE, - STATE(9521), 1, + STATE(9505), 1, sym_comment, - STATE(9522), 1, + STATE(9506), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395262] = 5, + [395159] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15216), 1, + ACTIONS(15321), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9522), 1, + STATE(9506), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395279] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15218), 1, - anon_sym_RBRACK, - STATE(9523), 1, - sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [395298] = 5, + [395176] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15220), 1, + ACTIONS(15323), 1, anon_sym_DQUOTE, - STATE(9524), 1, + STATE(9507), 1, sym_comment, - STATE(9525), 1, + STATE(9508), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395315] = 5, + [395193] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15222), 1, + ACTIONS(15325), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9525), 1, + STATE(9508), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395332] = 6, - ACTIONS(3), 1, + [395210] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15224), 1, - anon_sym_RBRACK, - STATE(9526), 1, + ACTIONS(15327), 1, + anon_sym_DQUOTE, + STATE(9509), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [395351] = 5, + STATE(9510), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [395227] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15226), 1, + ACTIONS(15329), 1, anon_sym_DQUOTE, - STATE(9520), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9527), 1, + STATE(9510), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395368] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14617), 1, - anon_sym_LPAREN2, - ACTIONS(15228), 1, - anon_sym_DOT2, - ACTIONS(15230), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15232), 1, - aux_sym__immediate_decimal_token3, - STATE(9528), 1, - sym_comment, - [395387] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9529), 1, - sym_comment, - ACTIONS(15234), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [395400] = 5, + [395244] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15236), 1, + ACTIONS(15331), 1, anon_sym_DQUOTE, - STATE(9530), 1, + STATE(9511), 1, sym_comment, - STATE(9536), 1, + STATE(9512), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395417] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15238), 1, - anon_sym_RBRACK, - STATE(9238), 1, - aux_sym_val_table_repeat1, - STATE(9531), 1, - sym_comment, - STATE(10247), 1, - sym_val_list, - [395436] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2229), 1, - sym_block, - STATE(9532), 1, - sym_comment, - STATE(10272), 1, - sym_returns, - [395455] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15240), 1, - anon_sym_RBRACK, - STATE(9523), 1, - aux_sym_val_table_repeat1, - STATE(9533), 1, - sym_comment, - STATE(10247), 1, - sym_val_list, - [395474] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9534), 1, - sym_comment, - ACTIONS(15242), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [395487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13987), 1, - anon_sym_LPAREN2, - ACTIONS(15244), 1, - anon_sym_DOT2, - ACTIONS(15246), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15248), 1, - aux_sym__immediate_decimal_token3, - STATE(9535), 1, - sym_comment, - [395506] = 5, + [395261] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15250), 1, + ACTIONS(15333), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9536), 1, + STATE(9512), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395523] = 5, + [395278] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15252), 1, + ACTIONS(15335), 1, anon_sym_DQUOTE, - STATE(9537), 1, + STATE(9513), 1, sym_comment, - STATE(9538), 1, + STATE(9514), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395540] = 5, + [395295] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15254), 1, + ACTIONS(15337), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9538), 1, + STATE(9514), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395557] = 5, + [395312] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15256), 1, + ACTIONS(15339), 1, anon_sym_DQUOTE, - STATE(9539), 1, + STATE(9515), 1, sym_comment, - STATE(9550), 1, + STATE(9516), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395574] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2230), 1, - sym_block, - STATE(9540), 1, - sym_comment, - STATE(10183), 1, - sym_returns, - [395593] = 5, + [395329] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15258), 1, + ACTIONS(15341), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9541), 1, + STATE(9516), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395610] = 5, + [395346] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15260), 1, + ACTIONS(15343), 1, anon_sym_DQUOTE, - STATE(9542), 1, + STATE(9517), 1, sym_comment, - STATE(9545), 1, + STATE(9518), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395627] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13608), 1, - sym_short_flag_identifier, - ACTIONS(15262), 1, - anon_sym_DOT2, - ACTIONS(15264), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15266), 1, - aux_sym__immediate_decimal_token3, - STATE(9543), 1, - sym_comment, - [395646] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DASH, - STATE(9544), 1, - sym_comment, - ACTIONS(4330), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395661] = 5, + [395363] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15268), 1, + ACTIONS(15345), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9545), 1, + STATE(9518), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395678] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1332), 1, - anon_sym_DASH, - STATE(9546), 1, - sym_comment, - ACTIONS(1334), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - anon_sym_DASH, - STATE(9547), 1, - sym_comment, - ACTIONS(1327), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395708] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1321), 1, - anon_sym_DASH, - STATE(9548), 1, - sym_comment, - ACTIONS(1323), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395723] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9549), 1, - sym_comment, - ACTIONS(15270), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [395736] = 5, + [395380] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15272), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9550), 1, + STATE(9519), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395753] = 6, + ACTIONS(13814), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14880), 1, - anon_sym_LPAREN2, - ACTIONS(15274), 1, + ACTIONS(14889), 1, + sym_short_flag_identifier, + ACTIONS(15347), 1, anon_sym_DOT2, - ACTIONS(15276), 1, + ACTIONS(15349), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15278), 1, + ACTIONS(15351), 1, aux_sym__immediate_decimal_token3, - STATE(9551), 1, + STATE(9520), 1, sym_comment, - [395772] = 5, + [395414] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15280), 1, - anon_sym_DQUOTE, - STATE(9552), 1, + STATE(9521), 1, sym_comment, - STATE(9553), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395789] = 5, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395429] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15282), 1, + ACTIONS(15353), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9553), 1, + STATE(9522), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [395806] = 6, + [395446] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9523), 1, + sym_comment, + ACTIONS(15355), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [395459] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14713), 1, anon_sym_LBRACK, - ACTIONS(15284), 1, - anon_sym_RBRACK, - STATE(9554), 1, + ACTIONS(14715), 1, + anon_sym_LPAREN, + STATE(9259), 1, + sym_parameter_parens, + STATE(9263), 1, + sym_parameter_bracks, + STATE(9524), 1, sym_comment, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [395825] = 6, + [395478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15286), 1, + ACTIONS(14725), 1, + anon_sym_LPAREN2, + ACTIONS(15357), 1, anon_sym_DOT2, - ACTIONS(15288), 1, + ACTIONS(15359), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15290), 1, + ACTIONS(15361), 1, aux_sym__immediate_decimal_token3, - ACTIONS(15292), 1, - sym_short_flag_identifier, - STATE(9555), 1, - sym_comment, - [395844] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15294), 1, - anon_sym_DQUOTE, - STATE(9556), 1, + STATE(9525), 1, sym_comment, - STATE(9558), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395861] = 6, + [395497] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15296), 1, - anon_sym_RBRACK, - STATE(9557), 1, + ACTIONS(15363), 1, + anon_sym_use, + ACTIONS(15365), 1, + anon_sym_list, + ACTIONS(15367), 1, + anon_sym_hide, + ACTIONS(15369), 1, + anon_sym_new, + STATE(9526), 1, sym_comment, - STATE(9565), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [395880] = 5, + [395516] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15298), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9558), 1, + STATE(9527), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395897] = 5, + ACTIONS(13814), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395531] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15300), 1, - anon_sym_DQUOTE, - STATE(9559), 1, + ACTIONS(15373), 1, + anon_sym_LF, + STATE(9528), 1, sym_comment, - STATE(9561), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395914] = 6, - ACTIONS(3), 1, + ACTIONS(15371), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [395546] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15302), 1, - anon_sym_RBRACK, - STATE(9554), 1, - aux_sym_val_table_repeat1, - STATE(9560), 1, + ACTIONS(15377), 1, + anon_sym_LF, + STATE(9529), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [395933] = 5, + ACTIONS(15375), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [395561] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15304), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9561), 1, + STATE(9530), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395950] = 4, - ACTIONS(3), 1, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395576] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1274), 1, - anon_sym_DASH, - STATE(9562), 1, + ACTIONS(3165), 1, + anon_sym_RBRACK, + ACTIONS(3167), 1, + sym__entry_separator, + ACTIONS(10255), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(15379), 1, + anon_sym_DOT2, + STATE(9531), 1, sym_comment, - ACTIONS(1276), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [395965] = 5, - ACTIONS(105), 1, + [395595] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15306), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9563), 1, + ACTIONS(14976), 1, + anon_sym_LBRACK, + ACTIONS(14978), 1, + anon_sym_LPAREN, + STATE(2021), 1, + sym_parameter_bracks, + STATE(2132), 1, + sym_parameter_parens, + STATE(9532), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [395982] = 5, + [395614] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15308), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15311), 1, + ACTIONS(15383), 1, anon_sym_RBRACK, - STATE(10247), 1, - sym_val_list, - STATE(9564), 2, + STATE(9533), 1, sym_comment, + STATE(9534), 1, aux_sym_val_table_repeat1, - [395999] = 6, + STATE(10244), 1, + sym_val_list, + [395633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15313), 1, + ACTIONS(15385), 1, anon_sym_RBRACK, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9565), 1, + STATE(9534), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [396018] = 5, + [395652] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15315), 1, - anon_sym_DQUOTE, - STATE(9566), 1, + STATE(9535), 1, sym_comment, - STATE(9567), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396035] = 5, + ACTIONS(12740), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12742), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395667] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15317), 1, + ACTIONS(15387), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9567), 1, + STATE(9536), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9556), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [396052] = 5, + [395684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4248), 1, + anon_sym_DASH, + STATE(9537), 1, + sym_comment, + ACTIONS(4250), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [395699] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15319), 1, - anon_sym_DQUOTE, - STATE(9568), 1, + STATE(9538), 1, sym_comment, - STATE(9581), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396069] = 6, - ACTIONS(3), 1, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395714] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14763), 1, - anon_sym_LBRACE, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(9569), 1, + STATE(9539), 1, sym_comment, - STATE(9709), 1, - sym__blosure, - [396088] = 4, + ACTIONS(13814), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1313), 1, + ACTIONS(3887), 1, anon_sym_DASH, - STATE(9570), 1, + STATE(9540), 1, sym_comment, - ACTIONS(1315), 3, + ACTIONS(3891), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [396103] = 5, - ACTIONS(105), 1, + [395744] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15321), 1, - anon_sym_DQUOTE, - STATE(9571), 1, + ACTIONS(14284), 1, + sym_short_flag_identifier, + ACTIONS(15389), 1, + anon_sym_DOT2, + ACTIONS(15391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15393), 1, + aux_sym__immediate_decimal_token3, + STATE(9541), 1, sym_comment, - STATE(9590), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396120] = 6, + [395763] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, + ACTIONS(14713), 1, anon_sym_LBRACK, - ACTIONS(14650), 1, + ACTIONS(14715), 1, anon_sym_LPAREN, - STATE(9226), 1, + STATE(9302), 1, + sym_parameter_parens, + STATE(9303), 1, sym_parameter_bracks, - STATE(9252), 1, + STATE(9542), 1, + sym_comment, + [395782] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14713), 1, + anon_sym_LBRACK, + ACTIONS(14715), 1, + anon_sym_LPAREN, + STATE(9316), 1, sym_parameter_parens, - STATE(9572), 1, + STATE(9317), 1, + sym_parameter_bracks, + STATE(9543), 1, sym_comment, - [396139] = 6, + [395801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_block, - STATE(9573), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15395), 1, + anon_sym_RBRACK, + STATE(9544), 1, sym_comment, - STATE(10255), 1, - sym_returns, - [396158] = 6, + STATE(9548), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [395820] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(951), 1, anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2178), 1, - sym_block, - STATE(9574), 1, + ACTIONS(13962), 1, + anon_sym_DOT2, + ACTIONS(15097), 1, + aux_sym_unquoted_token2, + ACTIONS(15397), 1, + aux_sym__immediate_decimal_token1, + STATE(9545), 1, sym_comment, - STATE(10258), 1, - sym_returns, - [396177] = 4, + [395839] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15325), 1, - anon_sym_LF, - STATE(9575), 1, + STATE(9546), 1, sym_comment, - ACTIONS(15323), 3, + ACTIONS(14025), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [396192] = 6, + ACTIONS(14027), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395854] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15028), 1, - sym_short_flag_identifier, - ACTIONS(15327), 1, - anon_sym_DOT2, - ACTIONS(15329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15331), 1, - aux_sym__immediate_decimal_token3, - STATE(9576), 1, + ACTIONS(14713), 1, + anon_sym_LBRACK, + ACTIONS(14715), 1, + anon_sym_LPAREN, + STATE(9337), 1, + sym_parameter_parens, + STATE(9338), 1, + sym_parameter_bracks, + STATE(9547), 1, sym_comment, - [396211] = 5, - ACTIONS(105), 1, + [395873] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15333), 1, - anon_sym_DQUOTE, - STATE(9541), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9577), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15399), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9548), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396228] = 4, + STATE(10244), 1, + sym_val_list, + [395892] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9578), 1, + STATE(9549), 1, sym_comment, - ACTIONS(14255), 2, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14257), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [396243] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15028), 1, - sym_short_flag_identifier, - ACTIONS(15335), 1, - anon_sym_DOT2, - ACTIONS(15337), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15339), 1, - aux_sym__immediate_decimal_token3, - STATE(9579), 1, - sym_comment, - [396262] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15341), 1, - anon_sym_DQUOTE, - STATE(9563), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9580), 1, - sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396279] = 5, + [395907] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15343), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9581), 1, + ACTIONS(4028), 1, + sym__entry_separator, + ACTIONS(15401), 1, + anon_sym_DOT2, + STATE(9550), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396296] = 6, + ACTIONS(4026), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [395924] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14617), 1, + ACTIONS(13924), 1, anon_sym_LPAREN2, - ACTIONS(15345), 1, + ACTIONS(15403), 1, anon_sym_DOT2, - ACTIONS(15347), 1, + ACTIONS(15405), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15349), 1, + ACTIONS(15407), 1, aux_sym__immediate_decimal_token3, - STATE(9582), 1, + STATE(9551), 1, sym_comment, - [396315] = 6, + [395943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15351), 1, - anon_sym_DOT2, - ACTIONS(15353), 1, - anon_sym_LPAREN2, - ACTIONS(15355), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15357), 1, - aux_sym__immediate_decimal_token3, - STATE(9583), 1, + ACTIONS(1307), 1, + anon_sym_DASH, + STATE(9552), 1, sym_comment, - [396334] = 3, - ACTIONS(3), 1, + ACTIONS(1309), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [395958] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(9584), 1, + STATE(9553), 1, sym_comment, - ACTIONS(15359), 4, - sym_identifier, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [395973] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(951), 1, anon_sym_in, - anon_sym_nu, - anon_sym_env, - [396347] = 3, + ACTIONS(10031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15409), 1, + anon_sym_DOT2, + ACTIONS(15411), 1, + aux_sym_unquoted_token2, + STATE(9554), 1, + sym_comment, + [395992] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9585), 1, + ACTIONS(1054), 1, + anon_sym_DASH, + STATE(9555), 1, sym_comment, - ACTIONS(15361), 4, + ACTIONS(1056), 3, sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [396360] = 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396007] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15363), 1, + ACTIONS(15413), 1, anon_sym_DQUOTE, - STATE(9586), 1, - sym_comment, - STATE(9587), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + STATE(9556), 1, + sym_comment, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [396377] = 5, - ACTIONS(105), 1, + [396024] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15365), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9587), 1, + ACTIONS(15415), 1, + anon_sym_LBRACE, + STATE(5814), 1, + sym_block, + STATE(5936), 1, + sym_val_closure, + STATE(9557), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396394] = 4, + STATE(9759), 1, + sym__blosure, + [396043] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9588), 1, + STATE(9558), 1, sym_comment, - ACTIONS(4432), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4434), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [396409] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9589), 1, - sym_comment, - ACTIONS(15367), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [396422] = 5, + [396058] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15369), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9590), 1, + ACTIONS(15417), 1, + anon_sym_LPAREN, + STATE(9559), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396439] = 4, + ACTIONS(15419), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [396073] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9591), 1, + STATE(9560), 1, sym_comment, - ACTIONS(4490), 2, + ACTIONS(12744), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4492), 2, + ACTIONS(12746), 2, ts_builtin_sym_end, anon_sym_LF, - [396454] = 4, + [396088] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9592), 1, + STATE(9561), 1, sym_comment, - ACTIONS(14295), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14297), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [396469] = 5, - ACTIONS(105), 1, + [396103] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15371), 1, - anon_sym_DQUOTE, - STATE(9593), 1, + STATE(9562), 1, sym_comment, - STATE(9597), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396486] = 4, + ACTIONS(15421), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [396116] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9594), 1, + STATE(9563), 1, sym_comment, - ACTIONS(14303), 2, + ACTIONS(14540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14305), 2, + ACTIONS(14542), 2, ts_builtin_sym_end, anon_sym_LF, - [396501] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(9595), 1, - sym_comment, - ACTIONS(15373), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [396514] = 6, + [396131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15353), 1, - anon_sym_LPAREN2, - ACTIONS(15375), 1, + ACTIONS(15423), 1, anon_sym_DOT2, - ACTIONS(15377), 1, + ACTIONS(15425), 1, + anon_sym_LPAREN2, + ACTIONS(15427), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15379), 1, + ACTIONS(15429), 1, aux_sym__immediate_decimal_token3, - STATE(9596), 1, + STATE(9564), 1, sym_comment, - [396533] = 5, + [396150] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15381), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9597), 1, + STATE(9565), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396550] = 6, + ACTIONS(12748), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(12750), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396165] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15383), 1, + ACTIONS(15431), 1, anon_sym_RBRACK, - STATE(9598), 1, + STATE(9566), 1, sym_comment, - STATE(9645), 1, + STATE(9569), 1, aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [396569] = 5, + [396184] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14839), 1, + anon_sym_LBRACE, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(9567), 1, + sym_comment, + STATE(9597), 1, + sym__blosure, + [396203] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15385), 1, - anon_sym_DQUOTE, - STATE(9599), 1, + ACTIONS(15433), 1, + anon_sym_LPAREN, + STATE(9568), 1, sym_comment, - STATE(9601), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396586] = 5, + ACTIONS(15435), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [396218] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15437), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9569), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [396237] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15387), 1, - anon_sym_DQUOTE, - STATE(9600), 1, + ACTIONS(15441), 1, + anon_sym_LF, + STATE(9570), 1, sym_comment, - STATE(9611), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396603] = 5, + ACTIONS(15439), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [396252] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15389), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9601), 1, + ACTIONS(15445), 1, + anon_sym_LF, + STATE(9571), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396620] = 5, + ACTIONS(15443), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [396267] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15391), 1, - anon_sym_DQUOTE, - STATE(9602), 1, + ACTIONS(15449), 1, + anon_sym_LF, + STATE(9572), 1, sym_comment, - STATE(9603), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396637] = 5, + ACTIONS(15447), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [396282] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15393), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9603), 1, + STATE(9573), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396654] = 6, + ACTIONS(14151), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14153), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15292), 1, - sym_short_flag_identifier, - ACTIONS(15395), 1, + ACTIONS(3942), 1, + anon_sym_DASH, + ACTIONS(15451), 1, + anon_sym_EQ, + STATE(9574), 1, + sym_comment, + ACTIONS(3946), 2, + sym_identifier, + anon_sym_DASH_DASH, + [396314] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15453), 1, anon_sym_DOT2, - ACTIONS(15397), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15399), 1, - aux_sym__immediate_decimal_token3, - STATE(9604), 1, + STATE(9575), 1, sym_comment, - [396673] = 6, + ACTIONS(4038), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [396329] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, - STATE(9573), 1, - sym_parameter_bracks, - STATE(9574), 1, - sym_parameter_parens, - STATE(9605), 1, + ACTIONS(15455), 1, + anon_sym_DOT2, + STATE(9576), 1, sym_comment, - [396692] = 5, - ACTIONS(105), 1, + ACTIONS(3842), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [396344] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15401), 1, - anon_sym_DQUOTE, - STATE(9606), 1, + ACTIONS(15457), 1, + anon_sym_DOT2, + STATE(9577), 1, sym_comment, - STATE(9610), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396709] = 6, + ACTIONS(3905), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [396359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15403), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9607), 1, + ACTIONS(15459), 1, + anon_sym_DOT2, + STATE(9578), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [396728] = 4, + ACTIONS(3911), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [396374] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9608), 1, + ACTIONS(15463), 1, + anon_sym_LF, + STATE(9579), 1, sym_comment, - ACTIONS(14427), 2, + ACTIONS(15461), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [396389] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9580), 1, + sym_comment, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14429), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [396743] = 6, + [396404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15405), 1, + ACTIONS(14713), 1, anon_sym_LBRACK, - ACTIONS(15407), 1, + ACTIONS(14715), 1, anon_sym_LPAREN, - STATE(2114), 1, + STATE(9581), 1, + sym_comment, + STATE(9664), 1, sym_parameter_parens, - STATE(2120), 1, + STATE(9704), 1, sym_parameter_bracks, - STATE(9609), 1, - sym_comment, - [396762] = 5, + [396423] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15409), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9610), 1, + STATE(9582), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396779] = 5, + ACTIONS(14536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14538), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396438] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15411), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9611), 1, + ACTIONS(15467), 1, + anon_sym_LF, + STATE(9583), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396796] = 5, + ACTIONS(15465), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [396453] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15413), 1, - anon_sym_DQUOTE, - STATE(9612), 1, + STATE(9584), 1, sym_comment, - STATE(9614), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396813] = 4, + ACTIONS(14536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14538), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396468] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9613), 1, + STATE(9585), 1, sym_comment, - ACTIONS(14423), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14425), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [396828] = 5, - ACTIONS(105), 1, + [396483] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15415), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9614), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2214), 1, + sym_block, + STATE(9586), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396845] = 6, + STATE(10289), 1, + sym_returns, + [396502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15417), 1, - anon_sym_RBRACK, - STATE(9607), 1, - aux_sym_val_table_repeat1, - STATE(9615), 1, + STATE(9587), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [396864] = 5, + ACTIONS(15469), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [396515] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13527), 1, + anon_sym_LPAREN2, + ACTIONS(15471), 1, + anon_sym_DOT2, + ACTIONS(15473), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15475), 1, + aux_sym__immediate_decimal_token3, + STATE(9588), 1, + sym_comment, + [396534] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2225), 1, + sym_block, + STATE(9589), 1, + sym_comment, + STATE(10201), 1, + sym_returns, + [396553] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15419), 1, - anon_sym_DQUOTE, - STATE(9616), 1, + STATE(9590), 1, sym_comment, - STATE(9618), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396881] = 6, + ACTIONS(14536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14538), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396568] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15421), 1, - anon_sym_RBRACK, - STATE(9617), 1, + ACTIONS(1329), 1, + anon_sym_DASH, + STATE(9591), 1, sym_comment, - STATE(9625), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [396900] = 5, + ACTIONS(1331), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396583] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15423), 1, + ACTIONS(15477), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9618), 1, + STATE(9592), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9596), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [396917] = 4, + [396600] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9619), 1, + STATE(9593), 1, sym_comment, - ACTIONS(14415), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14417), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [396932] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, - STATE(9620), 1, - sym_comment, - ACTIONS(863), 2, - anon_sym_in, - sym_duration_unit, - [396949] = 4, + [396615] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9621), 1, + STATE(9594), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [396964] = 5, + [396630] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13589), 1, + sym_short_flag_identifier, + ACTIONS(15479), 1, + anon_sym_DOT2, + ACTIONS(15481), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15483), 1, + aux_sym__immediate_decimal_token3, + STATE(9595), 1, + sym_comment, + [396649] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15425), 1, + ACTIONS(15485), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9622), 1, + STATE(9596), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [396981] = 5, + [396666] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15427), 1, - anon_sym_DQUOTE, - STATE(9623), 1, + ACTIONS(15489), 1, + anon_sym_LF, + STATE(9597), 1, sym_comment, - STATE(9627), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [396998] = 6, + ACTIONS(15487), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [396681] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9598), 1, + sym_comment, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15405), 1, + ACTIONS(14713), 1, anon_sym_LBRACK, - ACTIONS(15407), 1, + ACTIONS(14715), 1, anon_sym_LPAREN, - STATE(2061), 1, + STATE(9398), 1, sym_parameter_parens, - STATE(2062), 1, + STATE(9400), 1, sym_parameter_bracks, - STATE(9624), 1, + STATE(9599), 1, sym_comment, - [397017] = 6, + [396715] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9600), 1, + sym_comment, + ACTIONS(14532), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14534), 2, + ts_builtin_sym_end, + anon_sym_LF, + [396730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15429), 1, + ACTIONS(15491), 1, anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9625), 1, + STATE(9601), 1, sym_comment, - STATE(10247), 1, + STATE(9604), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [397036] = 6, + [396749] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1333), 1, + anon_sym_DASH, + STATE(9602), 1, + sym_comment, + ACTIONS(1335), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396764] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1337), 1, + anon_sym_DASH, + STATE(9603), 1, + sym_comment, + ACTIONS(1339), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, - STATE(9199), 1, - sym_parameter_parens, - STATE(9200), 1, - sym_parameter_bracks, - STATE(9626), 1, + ACTIONS(15493), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9604), 1, sym_comment, - [397055] = 5, - ACTIONS(105), 1, + STATE(10244), 1, + sym_val_list, + [396798] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15431), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9627), 1, + STATE(9605), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397072] = 6, - ACTIONS(105), 1, + ACTIONS(15495), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [396811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5207), 1, - ts_builtin_sym_end, - ACTIONS(14093), 1, - anon_sym_SEMI, - ACTIONS(14095), 1, - anon_sym_LF, - STATE(2357), 1, - sym__terminator, - STATE(9628), 1, + ACTIONS(909), 1, + anon_sym_DASH, + STATE(9606), 1, sym_comment, - [397091] = 5, - ACTIONS(105), 1, + ACTIONS(911), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396826] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15433), 1, - anon_sym_DQUOTE, - STATE(9629), 1, + ACTIONS(10533), 1, + anon_sym_DOT2, + STATE(9607), 1, sym_comment, - STATE(9631), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397108] = 6, - ACTIONS(105), 1, + ACTIONS(10471), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [396841] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13598), 1, + ACTIONS(13527), 1, + anon_sym_LPAREN2, + ACTIONS(15497), 1, anon_sym_DOT2, - ACTIONS(13602), 1, + ACTIONS(15499), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13604), 1, + ACTIONS(15501), 1, aux_sym__immediate_decimal_token3, - ACTIONS(13606), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9630), 1, + STATE(9608), 1, sym_comment, - [397127] = 5, + [396860] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15435), 1, + ACTIONS(15503), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9631), 1, + STATE(9609), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9621), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [397144] = 4, + [396877] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15505), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9610), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [396896] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1341), 1, + anon_sym_DASH, + STATE(9611), 1, + sym_comment, + ACTIONS(1343), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396911] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14579), 1, + sym_short_flag_identifier, + ACTIONS(15507), 1, + anon_sym_DOT2, + ACTIONS(15509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15511), 1, + aux_sym__immediate_decimal_token3, + STATE(9612), 1, + sym_comment, + [396930] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9632), 1, + STATE(9613), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [397159] = 4, + [396945] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9633), 1, + STATE(9614), 1, sym_comment, - ACTIONS(14419), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14421), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [397174] = 4, - ACTIONS(105), 1, + [396960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9634), 1, + ACTIONS(1345), 1, + anon_sym_DASH, + STATE(9615), 1, sym_comment, - ACTIONS(13804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(1347), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [396975] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5320), 1, ts_builtin_sym_end, + ACTIONS(13880), 1, + anon_sym_SEMI, + ACTIONS(13882), 1, anon_sym_LF, - [397189] = 4, + STATE(2344), 1, + sym__terminator, + STATE(9616), 1, + sym_comment, + [396994] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9635), 1, + STATE(9617), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [397204] = 4, + [397009] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9636), 1, + STATE(9618), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [397219] = 4, + [397024] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9637), 1, + STATE(9619), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [397234] = 4, + [397039] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7259), 1, + sym_path, + STATE(9620), 1, + sym_comment, + STATE(9648), 1, + aux_sym_cell_path_repeat1, + ACTIONS(975), 2, + anon_sym_in, + anon_sym_DOT2, + [397056] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9638), 1, + ACTIONS(15513), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9621), 1, sym_comment, - ACTIONS(13804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [397249] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [397073] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9639), 1, + ACTIONS(15515), 1, + anon_sym_DQUOTE, + STATE(9622), 1, + sym_comment, + STATE(9643), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [397090] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9623), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [397264] = 6, + [397105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_in, - ACTIONS(15437), 1, - anon_sym_DOT2, - ACTIONS(15439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15441), 1, - aux_sym_unquoted_token2, - STATE(9640), 1, + ACTIONS(4352), 1, + anon_sym_DASH, + STATE(9624), 1, sym_comment, - [397283] = 6, - ACTIONS(3), 1, + ACTIONS(4354), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [397120] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15443), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9641), 1, + ACTIONS(15519), 1, + anon_sym_LF, + STATE(9625), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [397302] = 4, + ACTIONS(15517), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [397135] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9642), 1, + ACTIONS(5365), 1, + anon_sym_LF, + STATE(9626), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(5083), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + [397150] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5340), 1, anon_sym_LF, - [397317] = 5, + STATE(9627), 1, + sym_comment, + ACTIONS(5093), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [397165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4364), 1, + anon_sym_DASH, + STATE(9628), 1, + sym_comment, + ACTIONS(4366), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [397180] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15445), 1, - anon_sym_DQUOTE, - STATE(9622), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9643), 1, + ACTIONS(15523), 1, + anon_sym_LF, + STATE(9629), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397334] = 4, + ACTIONS(15521), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [397195] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9644), 1, + STATE(9630), 1, sym_comment, - ACTIONS(4440), 2, + ACTIONS(13806), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4442), 2, + ACTIONS(13808), 2, ts_builtin_sym_end, anon_sym_LF, - [397349] = 6, + [397210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15447), 1, + ACTIONS(15525), 1, anon_sym_RBRACK, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9645), 1, + STATE(9631), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [397368] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15068), 1, - anon_sym_LPAREN2, - ACTIONS(15449), 1, - anon_sym_DOT2, - ACTIONS(15451), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15453), 1, - aux_sym__immediate_decimal_token3, - STATE(9646), 1, - sym_comment, - [397387] = 4, + [397229] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9647), 1, + STATE(9632), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [397402] = 4, + [397244] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15527), 1, + anon_sym_RBRACK, + STATE(9633), 1, + sym_comment, + STATE(9634), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [397263] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15529), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9634), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [397282] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9648), 1, + ACTIONS(15533), 1, + anon_sym_LF, + STATE(9635), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(15531), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [397417] = 4, + [397297] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9649), 1, + STATE(9636), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [397432] = 3, + [397312] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9650), 1, + STATE(9637), 1, sym_comment, - ACTIONS(15455), 4, + ACTIONS(15535), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [397445] = 4, + [397325] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13848), 1, + anon_sym_LPAREN2, + ACTIONS(15537), 1, + anon_sym_DOT2, + ACTIONS(15539), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15541), 1, + aux_sym__immediate_decimal_token3, + STATE(9638), 1, + sym_comment, + [397344] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15543), 1, + anon_sym_DOT2, + ACTIONS(15545), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15547), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15549), 1, + sym_short_flag_identifier, + STATE(9639), 1, + sym_comment, + [397363] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(9651), 1, + ACTIONS(13525), 1, + anon_sym_DOT2, + ACTIONS(13529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(13531), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(13533), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(9640), 1, sym_comment, - ACTIONS(14315), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14317), 2, - ts_builtin_sym_end, - anon_sym_LF, - [397460] = 5, + [397382] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15457), 1, + ACTIONS(15551), 1, anon_sym_DQUOTE, - STATE(9652), 1, + STATE(9641), 1, sym_comment, - STATE(9654), 1, + STATE(9652), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [397477] = 6, + [397399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15459), 1, + ACTIONS(15553), 1, anon_sym_RBRACK, - STATE(9641), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9653), 1, + STATE(9642), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [397496] = 5, + [397418] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15461), 1, + ACTIONS(15555), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9654), 1, + STATE(9643), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [397513] = 3, + [397435] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9644), 1, + sym_comment, + ACTIONS(14057), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397450] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9655), 1, + ACTIONS(968), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(7618), 1, + sym_cell_path, + STATE(9645), 1, sym_comment, - ACTIONS(15463), 4, - sym_identifier, + STATE(9646), 1, + sym_path, + [397469] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(905), 1, anon_sym_in, - anon_sym_nu, - anon_sym_env, - [397526] = 6, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(9646), 1, + sym_comment, + STATE(9647), 1, + aux_sym_cell_path_repeat1, + [397488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15465), 1, + ACTIONS(975), 1, + anon_sym_in, + ACTIONS(15557), 1, anon_sym_DOT2, - ACTIONS(15467), 1, - anon_sym_LPAREN2, - ACTIONS(15469), 1, + STATE(7259), 1, + sym_path, + STATE(9647), 1, + sym_comment, + STATE(9648), 1, + aux_sym_cell_path_repeat1, + [397507] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(944), 1, + anon_sym_in, + ACTIONS(15559), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(9648), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [397524] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15562), 1, + anon_sym_DOT2, + ACTIONS(15564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15471), 1, + ACTIONS(15566), 1, aux_sym__immediate_decimal_token3, - STATE(9656), 1, + ACTIONS(15568), 1, + sym_short_flag_identifier, + STATE(9649), 1, sym_comment, - [397545] = 4, + [397543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1309), 1, - anon_sym_DASH, - STATE(9657), 1, + ACTIONS(13535), 1, + sym_short_flag_identifier, + ACTIONS(15570), 1, + anon_sym_DOT2, + ACTIONS(15572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15574), 1, + aux_sym__immediate_decimal_token3, + STATE(9650), 1, sym_comment, - ACTIONS(1311), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [397560] = 5, + [397562] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15473), 1, + ACTIONS(15576), 1, anon_sym_DQUOTE, - STATE(9658), 1, + STATE(9651), 1, sym_comment, - STATE(9659), 1, + STATE(9778), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [397577] = 5, + [397579] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15475), 1, + ACTIONS(15578), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9659), 1, + STATE(9652), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [397594] = 5, + [397596] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15477), 1, - anon_sym_DQUOTE, - STATE(9660), 1, + STATE(9653), 1, sym_comment, - STATE(9671), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397611] = 5, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397611] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15479), 1, - anon_sym_DQUOTE, - STATE(9661), 1, + STATE(9654), 1, sym_comment, - STATE(9665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397628] = 5, + ACTIONS(13814), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397626] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15481), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9662), 1, + STATE(9655), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397645] = 4, + ACTIONS(13828), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13830), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397641] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9663), 1, + STATE(9656), 1, sym_comment, - ACTIONS(12750), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(12752), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [397660] = 6, + [397656] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15483), 1, - anon_sym_DOT2, - ACTIONS(15485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15487), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15489), 1, - sym_short_flag_identifier, - STATE(9664), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15580), 1, + anon_sym_RBRACK, + STATE(9657), 1, + sym_comment, + STATE(9658), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [397675] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15582), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9658), 1, sym_comment, - [397679] = 5, + STATE(10244), 1, + sym_val_list, + [397694] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15491), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9665), 1, + STATE(9659), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397696] = 4, + ACTIONS(13818), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397709] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9660), 1, + sym_comment, + ACTIONS(13828), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13830), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1305), 1, + ACTIONS(1361), 1, anon_sym_DASH, - STATE(9666), 1, + STATE(9661), 1, sym_comment, - ACTIONS(1307), 3, + ACTIONS(1363), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [397711] = 4, + [397739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(1266), 1, anon_sym_DASH, - STATE(9667), 1, + STATE(9662), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(1268), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [397726] = 6, + [397754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(15493), 1, - anon_sym_DOT2, - ACTIONS(15495), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15497), 1, - aux_sym__immediate_decimal_token3, - STATE(9668), 1, + ACTIONS(1266), 1, + anon_sym_DASH, + STATE(9663), 1, sym_comment, - [397745] = 3, + ACTIONS(1268), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [397769] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(9669), 1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2320), 1, + sym_block, + STATE(9664), 1, sym_comment, - ACTIONS(15499), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [397758] = 6, + STATE(10251), 1, + sym_returns, + [397788] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15501), 1, + ACTIONS(15584), 1, anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9670), 1, + STATE(9665), 1, sym_comment, - STATE(10247), 1, + STATE(9694), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [397777] = 5, - ACTIONS(105), 1, + [397807] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15503), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9671), 1, + ACTIONS(877), 1, + sym_filesize_unit, + ACTIONS(9514), 1, + aux_sym_unquoted_token6, + STATE(9666), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [397794] = 4, - ACTIONS(3), 1, + ACTIONS(879), 2, + anon_sym_in, + sym_duration_unit, + [397824] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1358), 1, - anon_sym_DASH, - STATE(9672), 1, + STATE(9667), 1, sym_comment, - ACTIONS(1360), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [397809] = 6, - ACTIONS(3), 1, + ACTIONS(13818), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397839] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14229), 1, - anon_sym_LPAREN2, - ACTIONS(14233), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15505), 1, - anon_sym_DOT2, - ACTIONS(15507), 1, - aux_sym__immediate_decimal_token1, - STATE(9673), 1, + STATE(9668), 1, sym_comment, - [397828] = 6, - ACTIONS(3), 1, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397854] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15509), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9674), 1, + STATE(9669), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [397847] = 4, + ACTIONS(13818), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397869] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9675), 1, + STATE(9670), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [397862] = 4, + [397884] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9676), 1, + STATE(9671), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(14017), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(14019), 2, ts_builtin_sym_end, anon_sym_LF, - [397877] = 6, - ACTIONS(3), 1, + [397899] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15511), 1, - anon_sym_RBRACK, - STATE(9677), 1, + STATE(9672), 1, sym_comment, - STATE(9685), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [397896] = 6, - ACTIONS(3), 1, + ACTIONS(14057), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397914] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, - STATE(9678), 1, + STATE(9673), 1, sym_comment, - STATE(9725), 1, - sym_parameter_parens, - STATE(9726), 1, - sym_parameter_bracks, - [397915] = 6, - ACTIONS(3), 1, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397929] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15513), 1, - anon_sym_RBRACK, - STATE(9670), 1, - aux_sym_val_table_repeat1, - STATE(9679), 1, + STATE(9674), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [397934] = 6, + ACTIONS(13814), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [397944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14053), 1, - anon_sym_use, - ACTIONS(14055), 1, - anon_sym_list, - ACTIONS(14057), 1, - anon_sym_hide, - ACTIONS(14059), 1, - anon_sym_new, - STATE(9680), 1, + STATE(9675), 1, sym_comment, - [397953] = 6, + ACTIONS(15586), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [397957] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15515), 1, - anon_sym_RBRACK, - STATE(9674), 1, - aux_sym_val_table_repeat1, - STATE(9681), 1, + ACTIONS(14839), 1, + anon_sym_LBRACE, + STATE(5441), 1, + sym_block, + STATE(5719), 1, + sym_val_closure, + STATE(9579), 1, + sym__blosure, + STATE(9676), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [397972] = 4, - ACTIONS(105), 1, + [397976] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9682), 1, + ACTIONS(14711), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(14725), 1, + anon_sym_LPAREN2, + ACTIONS(15588), 1, + anon_sym_DOT2, + ACTIONS(15590), 1, + aux_sym__immediate_decimal_token1, + STATE(9677), 1, sym_comment, - ACTIONS(14307), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14309), 2, - ts_builtin_sym_end, - anon_sym_LF, - [397987] = 4, + [397995] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1294), 1, - anon_sym_DASH, - STATE(9683), 1, + STATE(9678), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(15592), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [398002] = 5, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [398008] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15517), 1, + ACTIONS(15594), 1, anon_sym_DQUOTE, - STATE(9684), 1, + STATE(9679), 1, sym_comment, - STATE(9694), 1, + STATE(9691), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398019] = 6, + [398025] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15519), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9685), 1, + ACTIONS(14861), 1, + anon_sym_LPAREN2, + ACTIONS(15596), 1, + anon_sym_DOT2, + ACTIONS(15598), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15600), 1, + aux_sym__immediate_decimal_token3, + STATE(9680), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [398038] = 4, + [398044] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15523), 1, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(13968), 1, + anon_sym_SEMI, + ACTIONS(15602), 1, anon_sym_LF, - STATE(9686), 1, + STATE(4286), 1, + aux_sym_pipe_element_repeat1, + STATE(9681), 1, sym_comment, - ACTIONS(15521), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + [398063] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8011), 1, anon_sym_PIPE, - [398053] = 6, + ACTIONS(14318), 1, + anon_sym_SEMI, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4294), 1, + aux_sym_pipe_element_repeat1, + STATE(9682), 1, + sym_comment, + [398082] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15489), 1, - sym_short_flag_identifier, - ACTIONS(15525), 1, + ACTIONS(15604), 1, anon_sym_DOT2, - ACTIONS(15527), 1, + ACTIONS(15606), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15529), 1, + ACTIONS(15608), 1, aux_sym__immediate_decimal_token3, - STATE(9687), 1, + ACTIONS(15610), 1, + sym_short_flag_identifier, + STATE(9683), 1, sym_comment, - [398072] = 6, + [398101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15531), 1, - anon_sym_LBRACK, - ACTIONS(15533), 1, - anon_sym_LPAREN, - STATE(1758), 1, - sym_parameter_bracks, - STATE(1901), 1, - sym_parameter_parens, - STATE(9688), 1, + STATE(9684), 1, + sym_comment, + ACTIONS(15612), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [398114] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(14325), 1, + anon_sym_SEMI, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4311), 1, + aux_sym_pipe_element_repeat1, + STATE(9685), 1, sym_comment, - [398091] = 6, + [398133] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13552), 1, + ACTIONS(13533), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13629), 1, anon_sym_DOT2, - ACTIONS(13556), 1, + ACTIONS(13633), 1, aux_sym__immediate_decimal_token1, - ACTIONS(13558), 1, + ACTIONS(13635), 1, aux_sym__immediate_decimal_token3, - ACTIONS(13560), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(9689), 1, + STATE(9686), 1, sym_comment, - [398110] = 4, - ACTIONS(3), 1, + [398152] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1288), 1, - anon_sym_DASH, - STATE(9690), 1, + STATE(9687), 1, sym_comment, - ACTIONS(1290), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [398125] = 5, + ACTIONS(4237), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4239), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398167] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15535), 1, + ACTIONS(15614), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9691), 1, + STATE(9688), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9693), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398142] = 6, - ACTIONS(105), 1, + [398184] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14235), 1, - aux_sym__record_key_token1, - ACTIONS(15497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15537), 1, + ACTIONS(14571), 1, anon_sym_DOT2, - ACTIONS(15539), 1, + ACTIONS(14573), 1, + anon_sym_LPAREN2, + ACTIONS(14577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15616), 1, aux_sym__immediate_decimal_token1, - STATE(9692), 1, + STATE(9689), 1, sym_comment, - [398161] = 4, + [398203] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9693), 1, + STATE(9690), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [398176] = 5, + [398218] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15541), 1, + ACTIONS(15618), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9694), 1, + STATE(9691), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398193] = 5, + [398235] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15568), 1, + sym_short_flag_identifier, + ACTIONS(15620), 1, + anon_sym_DOT2, + ACTIONS(15622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15624), 1, + aux_sym__immediate_decimal_token3, + STATE(9692), 1, + sym_comment, + [398254] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15543), 1, + ACTIONS(15626), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9695), 1, + STATE(9693), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398210] = 4, + [398271] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15628), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9694), 1, + sym_comment, + STATE(10244), 1, + sym_val_list, + [398290] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15547), 1, - anon_sym_LF, - STATE(9696), 1, + STATE(9695), 1, sym_comment, - ACTIONS(15545), 3, + ACTIONS(13814), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [398225] = 5, + ACTIONS(13816), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398305] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15630), 1, + anon_sym_DQUOTE, + STATE(9696), 1, + sym_comment, + STATE(9713), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [398322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_in, - ACTIONS(15549), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(9697), 2, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15632), 1, + anon_sym_RBRACK, + STATE(9697), 1, sym_comment, - aux_sym_cell_path_repeat1, - [398242] = 6, + STATE(9699), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [398341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14493), 1, - sym_short_flag_identifier, - ACTIONS(15552), 1, - anon_sym_DOT2, - ACTIONS(15554), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15556), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2254), 1, + sym_block, STATE(9698), 1, sym_comment, - [398261] = 3, + STATE(10192), 1, + sym_returns, + [398360] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15634), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, STATE(9699), 1, sym_comment, - ACTIONS(15558), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [398274] = 6, + STATE(10244), 1, + sym_val_list, + [398379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14912), 1, - anon_sym_LPAREN2, - ACTIONS(15560), 1, - anon_sym_DOT2, - ACTIONS(15562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15564), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1368), 1, + anon_sym_DASH, STATE(9700), 1, sym_comment, - [398293] = 5, + ACTIONS(1370), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [398394] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15566), 1, - anon_sym_DQUOTE, - STATE(9662), 1, - aux_sym__str_double_quotes_repeat1, STATE(9701), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [398310] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15568), 1, - anon_sym_DQUOTE, - STATE(9691), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9702), 1, - sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [398327] = 6, + ACTIONS(14536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14538), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15570), 1, - anon_sym_DOT2, - ACTIONS(15572), 1, - anon_sym_LPAREN2, - ACTIONS(15574), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15576), 1, - aux_sym__immediate_decimal_token3, - STATE(9703), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15636), 1, + anon_sym_RBRACK, + STATE(9702), 1, sym_comment, - [398346] = 4, + STATE(9722), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [398428] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9704), 1, + STATE(9703), 1, sym_comment, - ACTIONS(12795), 2, + ACTIONS(4096), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(12797), 2, + ACTIONS(4098), 2, ts_builtin_sym_end, anon_sym_LF, - [398361] = 6, + [398443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14229), 1, - anon_sym_LPAREN2, - ACTIONS(15578), 1, - anon_sym_DOT2, - ACTIONS(15580), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15582), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2321), 1, + sym_block, + STATE(9704), 1, + sym_comment, + STATE(10174), 1, + sym_returns, + [398462] = 4, + ACTIONS(105), 1, + anon_sym_POUND, STATE(9705), 1, sym_comment, - [398380] = 3, - ACTIONS(3), 1, + ACTIONS(13818), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398477] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9706), 1, sym_comment, - ACTIONS(15584), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [398393] = 4, + ACTIONS(13828), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13830), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398492] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15588), 1, - anon_sym_LF, STATE(9707), 1, sym_comment, - ACTIONS(15586), 3, + ACTIONS(13818), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [398408] = 6, + anon_sym_PIPE, + ACTIONS(13820), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_in, - ACTIONS(10065), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15437), 1, - anon_sym_DOT2, - ACTIONS(15441), 1, - aux_sym_unquoted_token2, + ACTIONS(13003), 1, + anon_sym_LBRACE, + ACTIONS(14777), 1, + anon_sym_COLON, + STATE(2255), 1, + sym_block, STATE(9708), 1, sym_comment, - [398427] = 4, + STATE(10220), 1, + sym_returns, + [398526] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15592), 1, - anon_sym_LF, + ACTIONS(15638), 1, + anon_sym_DQUOTE, STATE(9709), 1, sym_comment, - ACTIONS(15590), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [398442] = 6, + STATE(9749), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [398543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(977), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(9697), 1, - aux_sym_cell_path_repeat1, + ACTIONS(949), 1, + anon_sym_DASH, STATE(9710), 1, sym_comment, - [398461] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(9711), 1, - sym_comment, - ACTIONS(12772), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12774), 2, - ts_builtin_sym_end, - anon_sym_LF, - [398476] = 6, + ACTIONS(951), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [398558] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(14613), 1, + ACTIONS(14599), 1, + sym_short_flag_identifier, + ACTIONS(15640), 1, anon_sym_DOT2, - STATE(7241), 1, - sym_path, - STATE(9710), 1, - aux_sym_cell_path_repeat1, - STATE(9712), 1, + ACTIONS(15642), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15644), 1, + aux_sym__immediate_decimal_token3, + STATE(9711), 1, sym_comment, - [398495] = 4, + [398577] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9713), 1, + STATE(9712), 1, sym_comment, - ACTIONS(14160), 2, + ACTIONS(14029), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14162), 2, + ACTIONS(14031), 2, ts_builtin_sym_end, anon_sym_LF, - [398510] = 5, + [398592] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15594), 1, + ACTIONS(15646), 1, anon_sym_DQUOTE, - STATE(9714), 1, - sym_comment, - STATE(9780), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, + STATE(9713), 1, + sym_comment, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398527] = 3, - ACTIONS(3), 1, + [398609] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9714), 1, + sym_comment, + ACTIONS(14035), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14037), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398624] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9715), 1, sym_comment, - ACTIONS(15596), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [398540] = 6, - ACTIONS(3), 1, + ACTIONS(14039), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14041), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398639] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14021), 1, - anon_sym_LPAREN2, - ACTIONS(15598), 1, - anon_sym_DOT2, - ACTIONS(15600), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15602), 1, - aux_sym__immediate_decimal_token3, STATE(9716), 1, sym_comment, - [398559] = 6, - ACTIONS(3), 1, + ACTIONS(13828), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13830), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398654] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(999), 1, - anon_sym_in, - ACTIONS(14613), 1, - anon_sym_DOT2, - STATE(7597), 1, - sym_cell_path, - STATE(9712), 1, - sym_path, STATE(9717), 1, sym_comment, - [398578] = 6, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398669] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13606), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(13620), 1, - anon_sym_DOT2, - ACTIONS(13624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(13626), 1, - aux_sym__immediate_decimal_token3, STATE(9718), 1, sym_comment, - [398597] = 4, - ACTIONS(3), 1, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398684] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_DASH, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, STATE(9719), 1, sym_comment, - ACTIONS(1104), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [398612] = 5, + ACTIONS(827), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [398699] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15604), 1, - anon_sym_DQUOTE, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(9834), 1, + sym_filesize_unit, + ACTIONS(9836), 1, + sym_duration_unit, STATE(9720), 1, sym_comment, - STATE(9730), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [398629] = 6, - ACTIONS(3), 1, + [398718] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15028), 1, - sym_short_flag_identifier, - ACTIONS(15606), 1, - anon_sym_DOT2, - ACTIONS(15608), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15610), 1, - aux_sym__immediate_decimal_token3, STATE(9721), 1, sym_comment, - [398648] = 6, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398733] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15612), 1, - anon_sym_DOT2, - ACTIONS(15614), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15616), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15618), 1, - sym_short_flag_identifier, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15648), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, STATE(9722), 1, sym_comment, - [398667] = 4, + STATE(10244), 1, + sym_val_list, + [398752] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9723), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [398682] = 6, - ACTIONS(3), 1, + [398767] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15531), 1, - anon_sym_LBRACK, - ACTIONS(15533), 1, - anon_sym_LPAREN, - STATE(1839), 1, - sym_parameter_bracks, - STATE(1842), 1, - sym_parameter_parens, STATE(9724), 1, sym_comment, - [398701] = 6, - ACTIONS(3), 1, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398782] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2146), 1, - sym_block, STATE(9725), 1, sym_comment, - STATE(10245), 1, - sym_returns, - [398720] = 6, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2092), 1, - sym_block, + ACTIONS(4255), 1, + anon_sym_DASH, STATE(9726), 1, sym_comment, - STATE(10246), 1, - sym_returns, - [398739] = 4, + ACTIONS(4257), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [398812] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15622), 1, - anon_sym_LF, STATE(9727), 1, sym_comment, - ACTIONS(15620), 3, + ACTIONS(14540), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - [398754] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15626), 1, + ACTIONS(14542), 2, + ts_builtin_sym_end, anon_sym_LF, + [398827] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(9728), 1, sym_comment, - ACTIONS(15624), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [398769] = 5, - ACTIONS(105), 1, + ACTIONS(15650), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [398840] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15628), 1, - anon_sym_DQUOTE, - STATE(9695), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(15652), 1, + anon_sym_DOT2, + ACTIONS(15654), 1, + anon_sym_LPAREN2, + ACTIONS(15656), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15658), 1, + aux_sym__immediate_decimal_token3, STATE(9729), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [398786] = 5, + [398859] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15630), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9730), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [398803] = 6, - ACTIONS(3), 1, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398874] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15632), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, STATE(9731), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [398822] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15634), 1, - anon_sym_RBRACK, - STATE(9732), 1, - sym_comment, - STATE(9768), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [398841] = 5, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [398889] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15636), 1, + ACTIONS(15660), 1, anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9733), 1, + STATE(9732), 1, sym_comment, - ACTIONS(14634), 2, + STATE(9738), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [398858] = 6, + [398906] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9733), 1, + sym_comment, + ACTIONS(15662), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [398919] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15638), 1, + ACTIONS(15664), 1, anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, STATE(9734), 1, sym_comment, - STATE(10247), 1, + STATE(9736), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [398877] = 6, + [398938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym_DASH, STATE(9735), 1, sym_comment, - STATE(9752), 1, - sym_parameter_parens, - STATE(9814), 1, - sym_parameter_bracks, - [398896] = 6, + ACTIONS(1276), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [398953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15640), 1, + ACTIONS(15666), 1, anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, STATE(9736), 1, sym_comment, - STATE(9744), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [398915] = 6, + [398972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, + ACTIONS(14659), 1, + sym_short_flag_identifier, + ACTIONS(15668), 1, + anon_sym_DOT2, + ACTIONS(15670), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15672), 1, + aux_sym__immediate_decimal_token3, STATE(9737), 1, sym_comment, - STATE(9760), 1, - sym_parameter_parens, - STATE(9766), 1, - sym_parameter_bracks, - [398934] = 6, - ACTIONS(3), 1, + [398991] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15642), 1, - anon_sym_RBRACK, + ACTIONS(15674), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9738), 1, sym_comment, - STATE(9748), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [398953] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [399008] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4390), 1, - anon_sym_DASH, + ACTIONS(14889), 1, + sym_short_flag_identifier, + ACTIONS(15676), 1, + anon_sym_DOT2, + ACTIONS(15678), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15680), 1, + aux_sym__immediate_decimal_token3, STATE(9739), 1, sym_comment, - ACTIONS(4392), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [398968] = 4, + [399027] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9740), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13818), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13820), 2, ts_builtin_sym_end, anon_sym_LF, - [398983] = 6, + [399042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15644), 1, - anon_sym_RBRACK, - STATE(9731), 1, - aux_sym_val_table_repeat1, + ACTIONS(1278), 1, + anon_sym_DASH, STATE(9741), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [399002] = 3, + ACTIONS(1280), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399057] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15682), 1, + anon_sym_RBRACK, STATE(9742), 1, sym_comment, - ACTIONS(15646), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [399015] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(9743), 1, - sym_comment, - ACTIONS(13804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399030] = 6, + aux_sym_val_table_repeat1, + STATE(10244), 1, + sym_val_list, + [399076] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15648), 1, + ACTIONS(15684), 1, anon_sym_RBRACK, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9744), 1, + STATE(9743), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [399049] = 6, + [399095] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14648), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_LPAREN, - STATE(9745), 1, + STATE(9744), 1, sym_comment, - STATE(9783), 1, - sym_parameter_parens, - STATE(9784), 1, - sym_parameter_bracks, - [399068] = 6, + ACTIONS(15686), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [399108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14763), 1, - anon_sym_LBRACE, - STATE(5740), 1, - sym_block, - STATE(5743), 1, - sym_val_closure, - STATE(9116), 1, - sym__blosure, + ACTIONS(14946), 1, + anon_sym_LPAREN2, + ACTIONS(15688), 1, + anon_sym_DOT2, + ACTIONS(15690), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15692), 1, + aux_sym__immediate_decimal_token3, + STATE(9745), 1, + sym_comment, + [399127] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15694), 1, + anon_sym_DQUOTE, + STATE(9190), 1, + aux_sym__str_double_quotes_repeat1, STATE(9746), 1, sym_comment, - [399087] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [399144] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9747), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(14518), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(14520), 2, ts_builtin_sym_end, anon_sym_LF, - [399102] = 6, - ACTIONS(3), 1, + [399159] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15650), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, STATE(9748), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [399121] = 4, - ACTIONS(3), 1, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399174] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4386), 1, - anon_sym_DASH, + ACTIONS(15696), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, STATE(9749), 1, sym_comment, - ACTIONS(4388), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [399136] = 4, - ACTIONS(105), 1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [399191] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15654), 1, - anon_sym_LF, + ACTIONS(14713), 1, + anon_sym_LBRACK, + ACTIONS(14715), 1, + anon_sym_LPAREN, + STATE(9586), 1, + sym_parameter_parens, + STATE(9589), 1, + sym_parameter_bracks, STATE(9750), 1, sym_comment, - ACTIONS(15652), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [399151] = 5, - ACTIONS(3), 1, + [399210] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(7241), 1, - sym_path, - STATE(9697), 1, - aux_sym_cell_path_repeat1, STATE(9751), 1, sym_comment, - ACTIONS(977), 2, - anon_sym_in, - anon_sym_DOT2, - [399168] = 6, - ACTIONS(3), 1, + ACTIONS(14057), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14059), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399225] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2057), 1, - sym_block, STATE(9752), 1, sym_comment, - STATE(10256), 1, - sym_returns, - [399187] = 5, - ACTIONS(105), 1, + ACTIONS(14522), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14524), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399240] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15656), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(951), 1, + anon_sym_in, + ACTIONS(15409), 1, + anon_sym_DOT2, + ACTIONS(15411), 1, + aux_sym_unquoted_token2, + ACTIONS(15698), 1, + aux_sym__immediate_decimal_token1, STATE(9753), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [399204] = 4, + [399259] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9754), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(14099), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(14101), 2, ts_builtin_sym_end, anon_sym_LF, - [399219] = 4, - ACTIONS(3), 1, + [399274] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1317), 1, - anon_sym_DASH, STATE(9755), 1, sym_comment, - ACTIONS(1319), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [399234] = 4, + ACTIONS(14061), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14063), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399289] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9756), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [399249] = 4, + [399304] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9757), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14099), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14101), 2, ts_builtin_sym_end, anon_sym_LF, - [399264] = 4, + [399319] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9758), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [399279] = 4, + [399334] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15658), 1, - anon_sym_LPAREN, STATE(9759), 1, sym_comment, - ACTIONS(15660), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [399294] = 6, - ACTIONS(3), 1, + ACTIONS(13810), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13812), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399349] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2039), 1, - sym_block, STATE(9760), 1, sym_comment, - STATE(10260), 1, - sym_returns, - [399313] = 4, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399364] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15664), 1, - anon_sym_LF, STATE(9761), 1, sym_comment, - ACTIONS(15662), 3, + ACTIONS(14540), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [399328] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5340), 1, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, anon_sym_LF, + [399379] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1270), 1, + anon_sym_DASH, STATE(9762), 1, sym_comment, - ACTIONS(4907), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [399343] = 4, - ACTIONS(105), 1, + ACTIONS(1272), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399394] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_LF, + ACTIONS(961), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(4742), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9763), 1, sym_comment, - ACTIONS(4897), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [399358] = 6, + [399413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15666), 1, - anon_sym_RBRACK, - STATE(9734), 1, - aux_sym_val_table_repeat1, + ACTIONS(1191), 1, + anon_sym_DASH, STATE(9764), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [399377] = 4, - ACTIONS(105), 1, + ACTIONS(1193), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399428] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(927), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(5460), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9765), 1, sym_comment, - ACTIONS(12791), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(12793), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399392] = 6, + [399447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2038), 1, - sym_block, + ACTIONS(911), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(4890), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9766), 1, sym_comment, - STATE(10263), 1, - sym_returns, - [399411] = 4, - ACTIONS(105), 1, + [399466] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(931), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(5756), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9767), 1, sym_comment, - ACTIONS(14219), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14221), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399426] = 6, + [399485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15668), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, + ACTIONS(915), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(5103), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9768), 1, sym_comment, - STATE(10247), 1, - sym_val_list, - [399445] = 5, - ACTIONS(105), 1, + [399504] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15670), 1, - anon_sym_DQUOTE, - STATE(9753), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(919), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(5107), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9769), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [399462] = 4, - ACTIONS(105), 1, + [399523] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(968), 1, + anon_sym_in, + ACTIONS(15700), 1, + anon_sym_DOT2, + STATE(7618), 1, + sym_cell_path, STATE(9770), 1, sym_comment, - ACTIONS(13804), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(13806), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399477] = 4, - ACTIONS(105), 1, + STATE(9814), 1, + sym_path, + [399542] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(14675), 1, + anon_sym_LPAREN2, + ACTIONS(15703), 1, + anon_sym_DOT2, + ACTIONS(15705), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15707), 1, + aux_sym__immediate_decimal_token3, STATE(9771), 1, sym_comment, - ACTIONS(14315), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14317), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399492] = 4, + [399561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1278), 1, - anon_sym_DASH, + ACTIONS(935), 1, + anon_sym_in, + ACTIONS(15709), 1, + anon_sym_DOT2, + STATE(4602), 1, + sym_cell_path, STATE(9772), 1, sym_comment, - ACTIONS(1280), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [399507] = 4, - ACTIONS(105), 1, + STATE(9814), 1, + sym_path, + [399580] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(935), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(4602), 1, + sym_cell_path, + STATE(9646), 1, + sym_path, STATE(9773), 1, sym_comment, - ACTIONS(13804), 2, + [399599] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9774), 1, + sym_comment, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [399522] = 3, + [399614] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9774), 1, + ACTIONS(1437), 1, + anon_sym_DASH, + STATE(9775), 1, + sym_comment, + ACTIONS(1439), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399629] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(9776), 1, sym_comment, - ACTIONS(15672), 4, + ACTIONS(15712), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [399535] = 6, + [399642] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14021), 1, + ACTIONS(14725), 1, anon_sym_LPAREN2, - ACTIONS(15674), 1, + ACTIONS(15714), 1, anon_sym_DOT2, - ACTIONS(15676), 1, + ACTIONS(15716), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15678), 1, + ACTIONS(15718), 1, aux_sym__immediate_decimal_token3, - STATE(9775), 1, + STATE(9777), 1, sym_comment, - [399554] = 5, + [399661] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15680), 1, + ACTIONS(15720), 1, anon_sym_DQUOTE, - STATE(9182), 1, + STATE(9385), 1, aux_sym__str_double_quotes_repeat1, - STATE(9776), 1, + STATE(9778), 1, sym_comment, - ACTIONS(14634), 2, + ACTIONS(14621), 2, sym__escaped_str_content, sym_escape_sequence, - [399571] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, - ACTIONS(15682), 1, - anon_sym_DOT2, - ACTIONS(15684), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15686), 1, - aux_sym__immediate_decimal_token3, - STATE(9777), 1, - sym_comment, - [399590] = 3, + [399678] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(9778), 1, - sym_comment, - ACTIONS(15688), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [399603] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15690), 1, - anon_sym_DQUOTE, + ACTIONS(1425), 1, + anon_sym_DASH, STATE(9779), 1, sym_comment, - STATE(9789), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [399620] = 5, + ACTIONS(1427), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399693] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15692), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9780), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [399637] = 4, + ACTIONS(14227), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14229), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399708] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9781), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(13824), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(13826), 2, ts_builtin_sym_end, anon_sym_LF, - [399652] = 4, + [399723] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15696), 1, - anon_sym_LF, STATE(9782), 1, sym_comment, - ACTIONS(15694), 3, + ACTIONS(14231), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [399667] = 6, + anon_sym_PIPE, + ACTIONS(14233), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(1974), 1, - sym_block, + ACTIONS(1429), 1, + anon_sym_DASH, STATE(9783), 1, sym_comment, - STATE(10273), 1, - sym_returns, - [399686] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(1972), 1, - sym_block, - STATE(9784), 1, - sym_comment, - STATE(10275), 1, - sym_returns, - [399705] = 4, + ACTIONS(1431), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399753] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9785), 1, + STATE(9784), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14099), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14101), 2, ts_builtin_sym_end, anon_sym_LF, - [399720] = 4, + [399768] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(15722), 1, + anon_sym_DQUOTE, + STATE(9785), 1, + sym_comment, + STATE(9797), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [399785] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1433), 1, + anon_sym_DASH, STATE(9786), 1, sym_comment, - ACTIONS(14307), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14309), 2, - ts_builtin_sym_end, - anon_sym_LF, - [399735] = 4, + ACTIONS(1435), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399800] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9787), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [399750] = 6, - ACTIONS(3), 1, + [399815] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15698), 1, - anon_sym_RBRACK, STATE(9788), 1, sym_comment, - STATE(9799), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [399769] = 5, + ACTIONS(14536), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14538), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399830] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15700), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9789), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [399786] = 4, + ACTIONS(14540), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14542), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399845] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9790), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [399801] = 4, + [399860] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9791), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14542), 2, ts_builtin_sym_end, anon_sym_LF, - [399816] = 4, + [399875] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9792), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [399831] = 4, - ACTIONS(105), 1, + [399890] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13535), 1, + sym_short_flag_identifier, + ACTIONS(15724), 1, + anon_sym_DOT2, + ACTIONS(15726), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15728), 1, + aux_sym__immediate_decimal_token3, STATE(9793), 1, sym_comment, - ACTIONS(14219), 2, + [399909] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9794), 1, + sym_comment, + ACTIONS(14536), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14538), 2, ts_builtin_sym_end, anon_sym_LF, - [399846] = 6, - ACTIONS(3), 1, + [399924] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(807), 1, - aux_sym_unquoted_token6, - ACTIONS(809), 1, - anon_sym_DOT2, - ACTIONS(15702), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15704), 1, - aux_sym__immediate_decimal_token2, - STATE(9794), 1, + ACTIONS(11687), 1, + aux_sym_unquoted_token3, + STATE(9795), 1, sym_comment, - [399865] = 6, + ACTIONS(827), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [399939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15706), 1, - anon_sym_RBRACK, - STATE(9795), 1, + ACTIONS(1349), 1, + anon_sym_DASH, + STATE(9796), 1, sym_comment, - STATE(9803), 1, - aux_sym_val_table_repeat1, - STATE(10247), 1, - sym_val_list, - [399884] = 4, + ACTIONS(1351), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [399954] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9796), 1, + ACTIONS(15730), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9797), 1, + sym_comment, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [399971] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9798), 1, + sym_comment, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [399986] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(9799), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14540), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14542), 2, ts_builtin_sym_end, anon_sym_LF, - [399899] = 4, + [400001] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3891), 1, + anon_sym_DASH_DASH, + ACTIONS(15732), 1, + sym_long_flag_identifier, + STATE(9800), 1, + sym_comment, + ACTIONS(3887), 2, + sym_identifier, + anon_sym_DASH, + [400018] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15734), 1, + anon_sym_DOT2, + STATE(9801), 1, + sym_comment, + ACTIONS(3979), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [400033] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15736), 1, + anon_sym_DOT2, + STATE(9802), 1, + sym_comment, + ACTIONS(4028), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [400048] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9797), 1, + STATE(9803), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(13828), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(13830), 2, ts_builtin_sym_end, anon_sym_LF, - [399914] = 4, + [400063] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9798), 1, + STATE(9804), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14099), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14101), 2, ts_builtin_sym_end, anon_sym_LF, - [399929] = 6, + [400078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15708), 1, + ACTIONS(15738), 1, anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9799), 1, + STATE(9805), 1, sym_comment, - STATE(10247), 1, + STATE(9808), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [399948] = 4, + [400097] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15710), 1, - anon_sym_LPAREN, - STATE(9800), 1, + STATE(9806), 1, sym_comment, - ACTIONS(15712), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [399963] = 5, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400112] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3943), 1, - sym__entry_separator, - ACTIONS(15714), 1, - anon_sym_DOT2, - STATE(9801), 1, - sym_comment, - ACTIONS(3941), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [399980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(815), 1, - aux_sym_unquoted_token6, - ACTIONS(817), 1, - anon_sym_DOT2, - ACTIONS(15716), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15718), 1, - aux_sym__immediate_decimal_token2, - STATE(9802), 1, + STATE(9807), 1, sym_comment, - [399999] = 6, + ACTIONS(13824), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(13826), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15720), 1, + ACTIONS(15740), 1, anon_sym_RBRACK, - STATE(9564), 1, + STATE(9332), 1, aux_sym_val_table_repeat1, - STATE(9803), 1, + STATE(9808), 1, sym_comment, - STATE(10247), 1, + STATE(10244), 1, sym_val_list, - [400018] = 5, + [400146] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3937), 1, + ACTIONS(3979), 1, sym__entry_separator, - ACTIONS(15722), 1, + ACTIONS(15742), 1, anon_sym_DOT2, - STATE(9804), 1, + STATE(9809), 1, sym_comment, - ACTIONS(3935), 2, + ACTIONS(3977), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [400035] = 4, - ACTIONS(105), 1, + [400163] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(9805), 1, + STATE(9810), 1, sym_comment, - ACTIONS(14219), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14221), 2, - ts_builtin_sym_end, - anon_sym_LF, - [400050] = 4, + ACTIONS(15744), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [400176] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14573), 1, + anon_sym_LPAREN2, + ACTIONS(15746), 1, + anon_sym_DOT2, + ACTIONS(15748), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15750), 1, + aux_sym__immediate_decimal_token3, + STATE(9811), 1, + sym_comment, + [400195] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9806), 1, + STATE(9812), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [400065] = 6, + [400210] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(9859), 1, - sym_filesize_unit, - ACTIONS(9861), 1, - sym_duration_unit, - STATE(9807), 1, + ACTIONS(15752), 1, + anon_sym_DQUOTE, + STATE(9813), 1, sym_comment, - [400084] = 4, - ACTIONS(105), 1, + STATE(9817), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [400227] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15726), 1, - anon_sym_LF, - STATE(9808), 1, + ACTIONS(905), 1, + anon_sym_in, + ACTIONS(15557), 1, + anon_sym_DOT2, + STATE(7259), 1, + sym_path, + STATE(9620), 1, + aux_sym_cell_path_repeat1, + STATE(9814), 1, sym_comment, - ACTIONS(15724), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [400099] = 4, + [400246] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9809), 1, + STATE(9815), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(14057), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(14059), 2, ts_builtin_sym_end, anon_sym_LF, - [400114] = 4, + [400261] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9810), 1, + STATE(9816), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [400129] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14628), 1, - anon_sym_LBRACK, - ACTIONS(15728), 1, - anon_sym_RBRACK, - STATE(9564), 1, - aux_sym_val_table_repeat1, - STATE(9811), 1, - sym_comment, - STATE(10247), 1, - sym_val_list, - [400148] = 4, + [400276] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(9812), 1, + ACTIONS(15754), 1, + anon_sym_DQUOTE, + STATE(9385), 1, + aux_sym__str_double_quotes_repeat1, + STATE(9817), 1, sym_comment, - ACTIONS(14219), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(14221), 2, - ts_builtin_sym_end, - anon_sym_LF, - [400163] = 4, + ACTIONS(14621), 2, + sym__escaped_str_content, + sym_escape_sequence, + [400293] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9813), 1, + STATE(9818), 1, sym_comment, - ACTIONS(14307), 2, + ACTIONS(14061), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14309), 2, + ACTIONS(14063), 2, ts_builtin_sym_end, anon_sym_LF, - [400178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - ACTIONS(14672), 1, - anon_sym_COLON, - STATE(2056), 1, - sym_block, - STATE(9814), 1, - sym_comment, - STATE(10257), 1, - sym_returns, - [400197] = 6, + [400308] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15730), 1, + ACTIONS(14889), 1, + sym_short_flag_identifier, + ACTIONS(15756), 1, anon_sym_DOT2, - ACTIONS(15732), 1, + ACTIONS(15758), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15734), 1, + ACTIONS(15760), 1, aux_sym__immediate_decimal_token3, - ACTIONS(15736), 1, - sym_short_flag_identifier, - STATE(9815), 1, - sym_comment, - [400216] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15738), 1, - anon_sym_DQUOTE, - STATE(9776), 1, - aux_sym__str_double_quotes_repeat1, - STATE(9816), 1, + STATE(9819), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [400233] = 4, + [400327] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(9817), 1, + STATE(9820), 1, sym_comment, - ACTIONS(14219), 2, + ACTIONS(13814), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14221), 2, + ACTIONS(13816), 2, ts_builtin_sym_end, anon_sym_LF, - [400248] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15742), 1, - anon_sym_LF, - STATE(9818), 1, - sym_comment, - ACTIONS(15740), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [400263] = 6, + [400342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14628), 1, + ACTIONS(14637), 1, anon_sym_LBRACK, - ACTIONS(15744), 1, + ACTIONS(15762), 1, anon_sym_RBRACK, - STATE(9811), 1, - aux_sym_val_table_repeat1, - STATE(9819), 1, + STATE(9821), 1, sym_comment, - STATE(10247), 1, + STATE(9822), 1, + aux_sym_val_table_repeat1, + STATE(10244), 1, sym_val_list, - [400282] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LBRACE, - ACTIONS(10065), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14083), 1, - anon_sym_DOT2, - ACTIONS(15746), 1, - aux_sym_unquoted_token2, - STATE(9820), 1, - sym_comment, - [400301] = 6, + [400361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15748), 1, - anon_sym_DOT2, - ACTIONS(15750), 1, - anon_sym_LPAREN2, - ACTIONS(15752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15754), 1, - aux_sym__immediate_decimal_token3, - STATE(9821), 1, + ACTIONS(14637), 1, + anon_sym_LBRACK, + ACTIONS(15764), 1, + anon_sym_RBRACK, + STATE(9332), 1, + aux_sym_val_table_repeat1, + STATE(9822), 1, sym_comment, - [400320] = 3, + STATE(10244), 1, + sym_val_list, + [400380] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(9822), 1, + STATE(9823), 1, sym_comment, - ACTIONS(15756), 4, + ACTIONS(15766), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [400333] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DASH, - ACTIONS(15758), 1, - anon_sym_EQ, - STATE(9823), 1, - sym_comment, - ACTIONS(4011), 2, - sym_identifier, - anon_sym_DASH_DASH, - [400350] = 4, + [400393] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15760), 1, + ACTIONS(14177), 1, + anon_sym_LPAREN2, + ACTIONS(14181), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15768), 1, anon_sym_DOT2, + ACTIONS(15770), 1, + aux_sym__immediate_decimal_token1, STATE(9824), 1, sym_comment, - ACTIONS(3929), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [400365] = 4, - ACTIONS(3), 1, + [400412] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15762), 1, - anon_sym_DOT2, STATE(9825), 1, sym_comment, - ACTIONS(3923), 3, + ACTIONS(14557), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [400380] = 4, + ACTIONS(14559), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400427] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15764), 1, - anon_sym_DOT2, STATE(9826), 1, sym_comment, - ACTIONS(3917), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [400395] = 4, - ACTIONS(3), 1, + ACTIONS(15772), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [400440] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15766), 1, - anon_sym_DOT2, STATE(9827), 1, sym_comment, - ACTIONS(3911), 3, + ACTIONS(14099), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [400410] = 6, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400455] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(14208), 1, - anon_sym_SEMI, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4259), 1, - aux_sym_pipe_element_repeat1, STATE(9828), 1, sym_comment, - [400429] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(14147), 1, + ACTIONS(13894), 2, anon_sym_SEMI, - ACTIONS(15768), 1, + anon_sym_PIPE, + ACTIONS(13896), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(4245), 1, - aux_sym_pipe_element_repeat1, + [400470] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(9829), 1, sym_comment, - [400448] = 6, + ACTIONS(15774), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [400483] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(13880), 1, - anon_sym_SEMI, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4352), 1, - aux_sym_pipe_element_repeat1, STATE(9830), 1, sym_comment, - [400467] = 5, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400498] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15770), 1, - anon_sym_DQUOTE, - STATE(9182), 1, - aux_sym__str_double_quotes_repeat1, STATE(9831), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [400484] = 4, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400513] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9832), 1, sym_comment, - ACTIONS(13804), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(13806), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [400499] = 3, - ACTIONS(3), 1, + [400528] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(9833), 1, sym_comment, - ACTIONS(15772), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [400512] = 6, - ACTIONS(3), 1, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400543] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14660), 1, - anon_sym_LPAREN2, - ACTIONS(15774), 1, - anon_sym_DOT2, - ACTIONS(15776), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15778), 1, - aux_sym__immediate_decimal_token3, STATE(9834), 1, sym_comment, - [400531] = 5, - ACTIONS(3), 1, + ACTIONS(14095), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14097), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400558] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(861), 1, - sym_filesize_unit, - ACTIONS(9583), 1, - aux_sym_unquoted_token6, STATE(9835), 1, sym_comment, - ACTIONS(863), 2, - anon_sym_LBRACE, - sym_duration_unit, - [400548] = 4, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400573] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9836), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(14095), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(14097), 2, ts_builtin_sym_end, anon_sym_LF, - [400563] = 4, + [400588] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(9837), 1, sym_comment, - ACTIONS(14315), 2, + ACTIONS(13898), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(14317), 2, + ACTIONS(13900), 2, ts_builtin_sym_end, anon_sym_LF, - [400578] = 5, + [400603] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15780), 1, - anon_sym_DQUOTE, - STATE(9831), 1, - aux_sym__str_double_quotes_repeat1, STATE(9838), 1, sym_comment, - ACTIONS(14634), 2, - sym__escaped_str_content, - sym_escape_sequence, - [400595] = 4, + ACTIONS(14099), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(14101), 2, + ts_builtin_sym_end, + anon_sym_LF, + [400618] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1298), 1, - anon_sym_DASH, STATE(9839), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(15776), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [400610] = 6, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [400631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - anon_sym_LBRACE, - ACTIONS(14083), 1, + ACTIONS(14573), 1, + anon_sym_LPAREN2, + ACTIONS(15778), 1, anon_sym_DOT2, - ACTIONS(15746), 1, - aux_sym_unquoted_token2, - ACTIONS(15782), 1, + ACTIONS(15780), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15782), 1, + aux_sym__immediate_decimal_token3, STATE(9840), 1, sym_comment, - [400629] = 4, + [400650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3947), 1, + ACTIONS(1303), 1, anon_sym_DASH, STATE(9841), 1, sym_comment, - ACTIONS(3951), 3, + ACTIONS(1305), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [400644] = 5, - ACTIONS(105), 1, + [400665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, ACTIONS(15784), 1, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(15786), 1, + sym_hex_digit, STATE(9842), 1, sym_comment, - [400660] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [400681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2121), 1, - sym_block, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15788), 1, + anon_sym_RBRACK, STATE(9843), 1, sym_comment, - [400676] = 5, + STATE(9845), 1, + aux_sym_val_binary_repeat1, + [400697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14812), 1, + ACTIONS(15790), 1, anon_sym_DOT2, - ACTIONS(14814), 1, + ACTIONS(15792), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14816), 1, + ACTIONS(15794), 1, aux_sym__immediate_decimal_token3, STATE(9844), 1, sym_comment, - [400692] = 5, + [400713] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(15786), 1, - anon_sym_RBRACK, - ACTIONS(15788), 1, sym_hex_digit, + ACTIONS(15796), 1, + anon_sym_RBRACK, STATE(9845), 1, sym_comment, - STATE(9849), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [400708] = 5, + [400729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15525), 1, - anon_sym_DOT2, - ACTIONS(15529), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15790), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1972), 1, + sym_block, STATE(9846), 1, sym_comment, - [400724] = 4, + [400745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15792), 1, - anon_sym_EQ, + ACTIONS(14613), 1, + anon_sym_DOT2, + ACTIONS(14615), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14617), 1, + aux_sym__immediate_decimal_token3, STATE(9847), 1, sym_comment, - ACTIONS(4011), 2, - sym_identifier, - anon_sym_DOLLAR, - [400738] = 5, + [400761] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15794), 1, + ACTIONS(13922), 1, anon_sym_DOT2, - ACTIONS(15796), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15798), 1, + ACTIONS(13928), 1, aux_sym__immediate_decimal_token3, + ACTIONS(15798), 1, + aux_sym__immediate_decimal_token1, STATE(9848), 1, sym_comment, - [400754] = 5, + [400777] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15800), 1, anon_sym_RBRACK, STATE(9849), 1, sym_comment, - STATE(10102), 1, + STATE(9885), 1, aux_sym_val_binary_repeat1, - [400770] = 5, + [400793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, + ACTIONS(6032), 1, + anon_sym_COLON, ACTIONS(15802), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, + STATE(8508), 1, + sym_block, STATE(9850), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [400786] = 5, + [400809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15804), 1, - anon_sym_DOT2, - ACTIONS(15806), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15808), 1, - aux_sym__immediate_decimal_token3, STATE(9851), 1, sym_comment, - [400802] = 5, + ACTIONS(11257), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [400821] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15810), 1, - anon_sym_RBRACK, + ACTIONS(14944), 1, + anon_sym_DOT2, + ACTIONS(14948), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14950), 1, + aux_sym__immediate_decimal_token3, STATE(9852), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [400818] = 5, + [400837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15812), 1, - anon_sym_DOT2, - ACTIONS(15814), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15816), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15804), 1, + anon_sym_RBRACK, STATE(9853), 1, sym_comment, - [400834] = 5, + STATE(9856), 1, + aux_sym_val_binary_repeat1, + [400853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15818), 1, + ACTIONS(15806), 1, anon_sym_RBRACK, STATE(9854), 1, sym_comment, - STATE(10102), 1, + STATE(9860), 1, aux_sym_val_binary_repeat1, - [400850] = 5, + [400869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15820), 1, - anon_sym_RBRACK, + ACTIONS(15808), 1, + anon_sym_DOT2, + ACTIONS(15810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15812), 1, + aux_sym__immediate_decimal_token3, STATE(9855), 1, sym_comment, - STATE(9865), 1, - aux_sym_val_binary_repeat1, - [400866] = 4, + [400885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DASH, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15814), 1, + anon_sym_RBRACK, STATE(9856), 1, sym_comment, - ACTIONS(4326), 2, - sym_identifier, - anon_sym_DASH_DASH, - [400880] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [400901] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3942), 1, + anon_sym_RBRACK, + ACTIONS(3946), 1, + sym__entry_separator, + ACTIONS(15816), 1, + anon_sym_EQ, + STATE(9857), 1, + sym_comment, + [400917] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15822), 1, + ACTIONS(15818), 1, anon_sym_DOT2, - ACTIONS(15824), 1, + ACTIONS(15820), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15826), 1, + ACTIONS(15822), 1, aux_sym__immediate_decimal_token3, - STATE(9857), 1, - sym_comment, - [400896] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_DOLLAR, - ACTIONS(825), 1, - anon_sym_LBRACE, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, STATE(9858), 1, sym_comment, - [400912] = 5, - ACTIONS(105), 1, + [400933] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4229), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(15239), 1, + anon_sym_DOT2, + ACTIONS(15243), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15245), 1, + aux_sym__immediate_decimal_token3, STATE(9859), 1, sym_comment, - [400928] = 5, - ACTIONS(105), 1, + [400949] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4276), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15824), 1, + anon_sym_RBRACK, STATE(9860), 1, sym_comment, - [400944] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [400965] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15828), 1, + ACTIONS(15826), 1, anon_sym_RBRACK, - STATE(9850), 1, - aux_sym_val_binary_repeat1, STATE(9861), 1, sym_comment, - [400960] = 5, + STATE(9864), 1, + aux_sym_val_binary_repeat1, + [400981] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15552), 1, + ACTIONS(15828), 1, anon_sym_DOT2, - ACTIONS(15556), 1, - aux_sym__immediate_decimal_token3, ACTIONS(15830), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15832), 1, + aux_sym__immediate_decimal_token3, STATE(9862), 1, sym_comment, - [400976] = 5, + [400997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15832), 1, - anon_sym_DOT2, ACTIONS(15834), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, ACTIONS(15836), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15838), 1, aux_sym__immediate_decimal_token3, STATE(9863), 1, sym_comment, - [400992] = 5, + [401013] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15840), 1, + anon_sym_RBRACK, + STATE(9864), 1, + sym_comment, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401029] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, + ACTIONS(807), 1, aux_sym_unquoted_token6, - ACTIONS(846), 1, + ACTIONS(809), 1, anon_sym_DOT2, - ACTIONS(15838), 1, + ACTIONS(14785), 1, aux_sym__immediate_decimal_token2, - STATE(9864), 1, + STATE(9865), 1, sym_comment, - [401008] = 5, + [401045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15840), 1, + ACTIONS(15842), 1, anon_sym_RBRACK, - STATE(9865), 1, - sym_comment, - STATE(10102), 1, + STATE(9842), 1, aux_sym_val_binary_repeat1, - [401024] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(2400), 1, - sym__terminator, STATE(9866), 1, sym_comment, - [401040] = 5, + [401061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15842), 1, - anon_sym_RBRACK, + ACTIONS(15471), 1, + anon_sym_DOT2, + ACTIONS(15473), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15475), 1, + aux_sym__immediate_decimal_token3, STATE(9867), 1, sym_comment, - STATE(9983), 1, - aux_sym_val_binary_repeat1, - [401056] = 5, + [401077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15844), 1, anon_sym_RBRACK, STATE(9868), 1, sym_comment, - STATE(10102), 1, + STATE(9870), 1, aux_sym_val_binary_repeat1, - [401072] = 5, + [401093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15846), 1, + ACTIONS(15808), 1, anon_sym_DOT2, - ACTIONS(15848), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15850), 1, + ACTIONS(15812), 1, aux_sym__immediate_decimal_token3, + ACTIONS(15846), 1, + aux_sym__immediate_decimal_token1, STATE(9869), 1, sym_comment, - [401088] = 5, + [401109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(815), 1, - aux_sym_unquoted_token6, - ACTIONS(817), 1, - anon_sym_DOT2, - ACTIONS(15718), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15848), 1, + anon_sym_RBRACK, STATE(9870), 1, sym_comment, - [401104] = 5, - ACTIONS(3), 1, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401125] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15674), 1, - anon_sym_DOT2, - ACTIONS(15676), 1, + ACTIONS(2998), 1, + aux_sym_unquoted_token3, + ACTIONS(15850), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15678), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15852), 1, + aux_sym__immediate_decimal_token2, STATE(9871), 1, sym_comment, - [401120] = 4, - ACTIONS(105), 1, + [401141] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14751), 1, - anon_sym_SEMI, STATE(9872), 1, sym_comment, - ACTIONS(14753), 2, - ts_builtin_sym_end, - anon_sym_LF, - [401134] = 5, + ACTIONS(11289), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [401153] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_RBRACK, - ACTIONS(4011), 1, - sym__entry_separator, - ACTIONS(15852), 1, - anon_sym_EQ, + ACTIONS(15856), 1, + anon_sym_LF, STATE(9873), 1, sym_comment, - [401150] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15854), 1, - anon_sym_RBRACK, - STATE(9874), 1, - sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [401166] = 5, + ACTIONS(15854), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [401167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15856), 1, - anon_sym_DOT2, ACTIONS(15858), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, ACTIONS(15860), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15862), 1, aux_sym__immediate_decimal_token3, - STATE(9875), 1, + STATE(9874), 1, sym_comment, - [401182] = 4, + [401183] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14755), 1, + ACTIONS(14996), 1, anon_sym_SEMI, - STATE(9876), 1, + STATE(9875), 1, sym_comment, - ACTIONS(14757), 2, + ACTIONS(14998), 2, ts_builtin_sym_end, anon_sym_LF, - [401196] = 5, + [401197] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4233), 1, + aux_sym_pipe_element_repeat1, + STATE(9876), 1, + sym_comment, + [401213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(807), 1, - aux_sym_unquoted_token6, - ACTIONS(809), 1, + ACTIONS(14859), 1, anon_sym_DOT2, - ACTIONS(15704), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(14863), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14865), 1, + aux_sym__immediate_decimal_token3, STATE(9877), 1, sym_comment, - [401212] = 5, + [401229] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(807), 1, - aux_sym_unquoted_token6, - ACTIONS(15704), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(15862), 1, - anon_sym_DOT2, STATE(9878), 1, sym_comment, - [401228] = 5, + ACTIONS(11293), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [401241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12625), 1, - anon_sym_EQ, - ACTIONS(15865), 1, - anon_sym_AT, - STATE(7815), 1, - sym_param_cmd, + ACTIONS(15537), 1, + anon_sym_DOT2, + ACTIONS(15539), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15541), 1, + aux_sym__immediate_decimal_token3, STATE(9879), 1, sym_comment, - [401244] = 5, - ACTIONS(105), 1, + [401257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3947), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15864), 1, anon_sym_RBRACK, - ACTIONS(3951), 1, - sym__entry_separator, - ACTIONS(15867), 1, - sym_long_flag_identifier, STATE(9880), 1, sym_comment, - [401260] = 5, + STATE(9882), 1, + aux_sym_val_binary_repeat1, + [401273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15869), 1, - anon_sym_RBRACK, - STATE(9868), 1, - aux_sym_val_binary_repeat1, + ACTIONS(15866), 1, + anon_sym_DOT2, + ACTIONS(15868), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15870), 1, + aux_sym__immediate_decimal_token3, STATE(9881), 1, sym_comment, - [401276] = 5, + [401289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(835), 1, - aux_sym_unquoted_token6, - ACTIONS(15871), 1, - anon_sym_DOT2, - ACTIONS(15874), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15872), 1, + anon_sym_RBRACK, STATE(9882), 1, sym_comment, - [401292] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401305] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14233), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15505), 1, + ACTIONS(15874), 1, anon_sym_DOT2, - ACTIONS(15507), 1, + ACTIONS(15876), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15878), 1, + aux_sym__immediate_decimal_token3, STATE(9883), 1, sym_comment, - [401308] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4732), 1, - anon_sym_SEMI, - STATE(9884), 1, - sym_comment, - ACTIONS(4734), 2, - ts_builtin_sym_end, - anon_sym_LF, - [401322] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(15876), 1, - anon_sym_RBRACK, - STATE(9852), 1, - aux_sym_val_binary_repeat1, - STATE(9885), 1, - sym_comment, - [401338] = 5, + [401321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15878), 1, + ACTIONS(15880), 1, anon_sym_RBRACK, - STATE(9886), 1, + STATE(9884), 1, sym_comment, - STATE(10102), 1, + STATE(9892), 1, aux_sym_val_binary_repeat1, - [401354] = 5, + [401337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15880), 1, + ACTIONS(15882), 1, anon_sym_RBRACK, - STATE(9887), 1, + STATE(9885), 1, sym_comment, - STATE(9900), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [401370] = 5, + [401353] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15882), 1, - anon_sym_DOT2, ACTIONS(15884), 1, - aux_sym__immediate_decimal_token1, + anon_sym_EQ, ACTIONS(15886), 1, - aux_sym__immediate_decimal_token3, - STATE(9888), 1, + anon_sym_COLON, + STATE(9886), 1, sym_comment, - [401386] = 5, + STATE(10813), 1, + sym_param_type, + [401369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14714), 1, + ACTIONS(15596), 1, anon_sym_DOT2, - ACTIONS(14716), 1, + ACTIONS(15598), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14718), 1, + ACTIONS(15600), 1, aux_sym__immediate_decimal_token3, - STATE(9889), 1, + STATE(9887), 1, sym_comment, - [401402] = 5, + [401385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15888), 1, anon_sym_RBRACK, - STATE(9874), 1, - aux_sym_val_binary_repeat1, - STATE(9890), 1, + STATE(9888), 1, sym_comment, - [401418] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14910), 1, - anon_sym_DOT2, - ACTIONS(14914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14916), 1, - aux_sym__immediate_decimal_token3, STATE(9891), 1, - sym_comment, - [401434] = 5, - ACTIONS(105), 1, + aux_sym_val_binary_repeat1, + [401401] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym_unquoted_token3, ACTIONS(15890), 1, anon_sym_DOT2, ACTIONS(15892), 1, - aux_sym__immediate_decimal_token2, - STATE(9892), 1, - sym_comment, - [401450] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15578), 1, - anon_sym_DOT2, - ACTIONS(15580), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15582), 1, + ACTIONS(15894), 1, aux_sym__immediate_decimal_token3, - STATE(9893), 1, + STATE(9889), 1, sym_comment, - [401466] = 5, + [401417] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13985), 1, + ACTIONS(15896), 1, anon_sym_DOT2, - ACTIONS(13991), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15894), 1, + ACTIONS(15898), 1, aux_sym__immediate_decimal_token1, - STATE(9894), 1, + ACTIONS(15900), 1, + aux_sym__immediate_decimal_token3, + STATE(9890), 1, sym_comment, - [401482] = 5, + [401433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15896), 1, + ACTIONS(15902), 1, anon_sym_RBRACK, - STATE(9886), 1, - aux_sym_val_binary_repeat1, - STATE(9895), 1, - sym_comment, - [401498] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(15898), 1, - anon_sym_LPAREN, - STATE(9896), 1, + STATE(9891), 1, sym_comment, - ACTIONS(15900), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [401512] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15902), 1, + ACTIONS(15904), 1, anon_sym_RBRACK, - STATE(9897), 1, + STATE(9892), 1, sym_comment, - STATE(9919), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [401528] = 4, + [401465] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3165), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(15906), 1, + anon_sym_DOT2, + ACTIONS(15908), 1, + aux_sym__immediate_decimal_token2, + STATE(9893), 1, + sym_comment, + [401481] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15904), 1, - anon_sym_COMMA, - STATE(9898), 1, + ACTIONS(14051), 1, + anon_sym_PIPE, + ACTIONS(15910), 1, + anon_sym_EQ_GT, + STATE(9894), 1, sym_comment, - ACTIONS(15906), 2, - anon_sym_RBRACK, - sym_hex_digit, - [401542] = 5, + STATE(10129), 1, + aux_sym_match_pattern_repeat1, + [401497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15908), 1, + ACTIONS(15756), 1, anon_sym_DOT2, - ACTIONS(15910), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15912), 1, + ACTIONS(15760), 1, aux_sym__immediate_decimal_token3, - STATE(9899), 1, + ACTIONS(15912), 1, + aux_sym__immediate_decimal_token1, + STATE(9895), 1, sym_comment, - [401558] = 5, + [401513] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15914), 1, anon_sym_RBRACK, - STATE(9900), 1, + STATE(9896), 1, sym_comment, - STATE(10102), 1, + STATE(9899), 1, aux_sym_val_binary_repeat1, - [401574] = 4, - ACTIONS(105), 1, + [401529] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15916), 1, - anon_sym_LPAREN, - STATE(9901), 1, + ACTIONS(14910), 1, + anon_sym_DOT2, + ACTIONS(14914), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14916), 1, + aux_sym__immediate_decimal_token3, + STATE(9897), 1, sym_comment, - ACTIONS(15918), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [401588] = 5, + [401545] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, + ACTIONS(15916), 1, + anon_sym_DOT2, + ACTIONS(15918), 1, + aux_sym__immediate_decimal_token1, ACTIONS(15920), 1, - anon_sym_RBRACK, - STATE(9902), 1, + aux_sym__immediate_decimal_token3, + STATE(9898), 1, sym_comment, - STATE(9915), 1, - aux_sym_val_binary_repeat1, - [401604] = 5, + [401561] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15922), 1, anon_sym_RBRACK, - STATE(9903), 1, + STATE(9899), 1, sym_comment, - STATE(10102), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [401620] = 5, + [401577] = 3, ACTIONS(3), 1, anon_sym_POUND, + STATE(9900), 1, + sym_comment, + ACTIONS(10174), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [401589] = 5, + ACTIONS(105), 1, + anon_sym_POUND, ACTIONS(15924), 1, - anon_sym_DOT2, + anon_sym_SEMI, ACTIONS(15926), 1, - aux_sym__immediate_decimal_token1, + anon_sym_LF, ACTIONS(15928), 1, - aux_sym__immediate_decimal_token3, - STATE(9904), 1, + anon_sym_RPAREN, + STATE(9901), 1, sym_comment, - [401636] = 4, + [401605] = 4, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(15932), 1, anon_sym_LF, - STATE(9905), 1, + STATE(9902), 1, sym_comment, ACTIONS(15930), 2, anon_sym_SEMI, anon_sym_RPAREN, - [401650] = 5, + [401619] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, ACTIONS(15934), 1, + anon_sym_RBRACK, + STATE(9903), 1, + sym_comment, + STATE(10096), 1, + aux_sym_val_binary_repeat1, + [401635] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15189), 1, + anon_sym_SEMI, + STATE(9904), 1, + sym_comment, + ACTIONS(15191), 2, + ts_builtin_sym_end, + anon_sym_LF, + [401649] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15652), 1, anon_sym_DOT2, - ACTIONS(15936), 1, + ACTIONS(15656), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15938), 1, + ACTIONS(15658), 1, aux_sym__immediate_decimal_token3, - STATE(9906), 1, + STATE(9905), 1, sym_comment, - [401666] = 5, + [401665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15940), 1, + ACTIONS(15936), 1, anon_sym_RBRACK, - STATE(9907), 1, + STATE(9906), 1, sym_comment, - STATE(10102), 1, + STATE(9908), 1, aux_sym_val_binary_repeat1, - [401682] = 5, + [401681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15822), 1, + ACTIONS(15938), 1, anon_sym_DOT2, - ACTIONS(15826), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(15942), 1, + ACTIONS(15940), 1, aux_sym__immediate_decimal_token1, - STATE(9908), 1, + ACTIONS(15942), 1, + aux_sym__immediate_decimal_token3, + STATE(9907), 1, sym_comment, - [401698] = 5, + [401697] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, ACTIONS(15944), 1, - anon_sym_DOT2, + anon_sym_RBRACK, + STATE(9908), 1, + sym_comment, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401713] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2998), 1, + aux_sym__unquoted_in_list_token3, ACTIONS(15946), 1, aux_sym__immediate_decimal_token1, ACTIONS(15948), 1, - aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token2, STATE(9909), 1, sym_comment, - [401714] = 4, - ACTIONS(105), 1, + [401729] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(15543), 1, + anon_sym_DOT2, + ACTIONS(15547), 1, + aux_sym__immediate_decimal_token3, ACTIONS(15950), 1, - anon_sym_LF, + aux_sym__immediate_decimal_token1, STATE(9910), 1, sym_comment, - ACTIONS(5253), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [401728] = 4, - ACTIONS(105), 1, + [401745] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15952), 1, - anon_sym_LF, + ACTIONS(14571), 1, + anon_sym_DOT2, + ACTIONS(14577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15616), 1, + aux_sym__immediate_decimal_token1, STATE(9911), 1, sym_comment, - ACTIONS(5235), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [401742] = 4, - ACTIONS(105), 1, + [401761] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15956), 1, - anon_sym_LF, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15952), 1, + anon_sym_RBRACK, STATE(9912), 1, sym_comment, - ACTIONS(15954), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [401756] = 5, + STATE(9915), 1, + aux_sym_val_binary_repeat1, + [401777] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15774), 1, - anon_sym_DOT2, - ACTIONS(15776), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15778), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15954), 1, + anon_sym_RBRACK, STATE(9913), 1, sym_comment, - [401772] = 5, + STATE(9966), 1, + aux_sym_val_binary_repeat1, + [401793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15958), 1, + ACTIONS(15808), 1, anon_sym_DOT2, - ACTIONS(15960), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15962), 1, + ACTIONS(15812), 1, aux_sym__immediate_decimal_token3, + ACTIONS(15956), 1, + aux_sym__immediate_decimal_token1, STATE(9914), 1, sym_comment, - [401788] = 5, + [401809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15964), 1, + ACTIONS(15958), 1, anon_sym_RBRACK, STATE(9915), 1, sym_comment, - STATE(10102), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [401804] = 5, - ACTIONS(105), 1, + [401825] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4259), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(14673), 1, + anon_sym_DOT2, + ACTIONS(14677), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14679), 1, + aux_sym__immediate_decimal_token3, STATE(9916), 1, sym_comment, - [401820] = 5, + [401841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15966), 1, + ACTIONS(15746), 1, anon_sym_DOT2, - ACTIONS(15968), 1, + ACTIONS(15748), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15970), 1, + ACTIONS(15750), 1, aux_sym__immediate_decimal_token3, STATE(9917), 1, sym_comment, - [401836] = 4, - ACTIONS(105), 1, + [401857] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15972), 1, - anon_sym_DQUOTE, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15960), 1, + anon_sym_RBRACK, STATE(9918), 1, sym_comment, - ACTIONS(15974), 2, - sym__escaped_str_content, - sym_escape_sequence, - [401850] = 5, + STATE(9926), 1, + aux_sym_val_binary_repeat1, + [401873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15976), 1, + ACTIONS(15962), 1, anon_sym_RBRACK, STATE(9919), 1, sym_comment, - STATE(10102), 1, + STATE(9921), 1, aux_sym_val_binary_repeat1, - [401866] = 5, + [401889] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15978), 1, + ACTIONS(15964), 1, anon_sym_DOT2, - ACTIONS(15980), 1, + ACTIONS(15966), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15982), 1, + ACTIONS(15968), 1, aux_sym__immediate_decimal_token3, STATE(9920), 1, sym_comment, - [401882] = 5, + [401905] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(15984), 1, + ACTIONS(15970), 1, anon_sym_RBRACK, - STATE(9907), 1, - aux_sym_val_binary_repeat1, STATE(9921), 1, sym_comment, - [401898] = 5, - ACTIONS(105), 1, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401921] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(15986), 1, - anon_sym_SEMI, + ACTIONS(15972), 1, + anon_sym_COMMA, STATE(9922), 1, sym_comment, - [401914] = 5, + ACTIONS(15974), 2, + anon_sym_RBRACK, + sym_hex_digit, + [401935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15598), 1, + ACTIONS(15778), 1, anon_sym_DOT2, - ACTIONS(15600), 1, + ACTIONS(15780), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15602), 1, + ACTIONS(15782), 1, aux_sym__immediate_decimal_token3, STATE(9923), 1, sym_comment, - [401930] = 5, - ACTIONS(105), 1, + [401951] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4245), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15976), 1, + anon_sym_RBRACK, STATE(9924), 1, sym_comment, - [401946] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_PIPE, - ACTIONS(15768), 1, - anon_sym_LF, - STATE(4352), 1, - aux_sym_pipe_element_repeat1, - STATE(9925), 1, - sym_comment, - [401962] = 5, + STATE(9928), 1, + aux_sym_val_binary_repeat1, + [401967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15682), 1, + ACTIONS(15978), 1, anon_sym_DOT2, - ACTIONS(15684), 1, + ACTIONS(15980), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15686), 1, + ACTIONS(15982), 1, aux_sym__immediate_decimal_token3, + STATE(9925), 1, + sym_comment, + [401983] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15984), 1, + anon_sym_RBRACK, STATE(9926), 1, sym_comment, - [401978] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [401999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15335), 1, + ACTIONS(15986), 1, anon_sym_DOT2, - ACTIONS(15339), 1, - aux_sym__immediate_decimal_token3, ACTIONS(15988), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15990), 1, + aux_sym__immediate_decimal_token3, STATE(9927), 1, sym_comment, - [401994] = 5, - ACTIONS(105), 1, + [402015] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15990), 1, - anon_sym_SEMI, + ACTIONS(15786), 1, + sym_hex_digit, ACTIONS(15992), 1, - anon_sym_LF, - ACTIONS(15994), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(9928), 1, sym_comment, - [402010] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(15996), 1, - anon_sym_LBRACE, - STATE(8334), 1, - sym_block, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(15994), 1, + anon_sym_RBRACK, STATE(9929), 1, sym_comment, - [402026] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2121), 1, - sym_block, + ACTIONS(14667), 1, + anon_sym_DOT2, + ACTIONS(14671), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15996), 1, + aux_sym__immediate_decimal_token1, STATE(9930), 1, sym_comment, - [402042] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_RBRACK, - ACTIONS(825), 1, - sym__entry_separator, - ACTIONS(8863), 1, - aux_sym_unquoted_token3, - STATE(9931), 1, - sym_comment, - [402058] = 5, + [402063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, ACTIONS(15998), 1, anon_sym_RBRACK, - STATE(9854), 1, - aux_sym_val_binary_repeat1, - STATE(9932), 1, + STATE(9931), 1, sym_comment, - [402074] = 5, + STATE(9933), 1, + aux_sym_val_binary_repeat1, + [402079] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14503), 1, - anon_sym_if, ACTIONS(16000), 1, - anon_sym_EQ_GT, - STATE(9933), 1, + anon_sym_DOT2, + ACTIONS(16002), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16004), 1, + aux_sym__immediate_decimal_token3, + STATE(9932), 1, sym_comment, - STATE(10987), 1, - sym_match_guard, - [402090] = 3, + [402095] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9934), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16006), 1, + anon_sym_RBRACK, + STATE(9933), 1, sym_comment, - ACTIONS(11045), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402102] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15010), 1, + ACTIONS(14683), 1, anon_sym_DOT2, - ACTIONS(15014), 1, + ACTIONS(14687), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15016), 1, + ACTIONS(14689), 1, aux_sym__immediate_decimal_token3, + STATE(9934), 1, + sym_comment, + [402127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16008), 1, + anon_sym_RBRACK, STATE(9935), 1, sym_comment, - [402118] = 5, - ACTIONS(105), 1, + STATE(9947), 1, + aux_sym_val_binary_repeat1, + [402143] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3489), 1, - aux_sym_unquoted_token3, - ACTIONS(16002), 1, - anon_sym_DOT2, - ACTIONS(16004), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(12342), 1, + anon_sym_EQ, + ACTIONS(16010), 1, + anon_sym_AT, + STATE(7653), 1, + sym_param_cmd, STATE(9936), 1, sym_comment, - [402134] = 3, - ACTIONS(3), 1, + [402159] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4981), 1, + anon_sym_SEMI, STATE(9937), 1, sym_comment, - ACTIONS(10529), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402146] = 5, + ACTIONS(4983), 2, + ts_builtin_sym_end, + anon_sym_LF, + [402173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16006), 1, - anon_sym_RBRACK, + ACTIONS(16012), 1, + anon_sym_DOT2, + ACTIONS(16014), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16016), 1, + aux_sym__immediate_decimal_token3, STATE(9938), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402162] = 5, + [402189] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7834), 1, - anon_sym_RBRACK, - ACTIONS(7854), 1, + ACTIONS(10136), 1, + anon_sym_DOT2, + ACTIONS(10614), 1, sym__entry_separator, - ACTIONS(7858), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(16018), 1, + anon_sym_RBRACK, STATE(9939), 1, sym_comment, - [402178] = 5, + [402205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15002), 1, + ACTIONS(14723), 1, anon_sym_DOT2, - ACTIONS(15006), 1, + ACTIONS(14727), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15008), 1, + ACTIONS(14729), 1, aux_sym__immediate_decimal_token3, STATE(9940), 1, sym_comment, - [402194] = 5, - ACTIONS(3), 1, + [402221] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13828), 1, - anon_sym_DOT2, - ACTIONS(13834), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16008), 1, + ACTIONS(2957), 1, + aux_sym_unquoted_token3, + ACTIONS(16020), 1, aux_sym__immediate_decimal_token1, + ACTIONS(16022), 1, + aux_sym__immediate_decimal_token2, STATE(9941), 1, sym_comment, - [402210] = 5, + [402237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15958), 1, + ACTIONS(15357), 1, anon_sym_DOT2, - ACTIONS(15962), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16010), 1, + ACTIONS(15359), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15361), 1, + aux_sym__immediate_decimal_token3, STATE(9942), 1, sym_comment, - [402226] = 3, - ACTIONS(3), 1, + [402253] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(3929), 1, + anon_sym_RBRACK, + ACTIONS(3931), 1, + sym__entry_separator, + ACTIONS(10136), 1, + anon_sym_DOT2, STATE(9943), 1, sym_comment, - ACTIONS(11049), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402238] = 4, + [402269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9926), 1, + ACTIONS(16024), 1, anon_sym_DOT2, + ACTIONS(16026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16028), 1, + aux_sym__immediate_decimal_token3, STATE(9944), 1, sym_comment, - ACTIONS(4015), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [402252] = 5, + [402285] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(809), 1, - anon_sym_COLON, - ACTIONS(8590), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16012), 1, + ACTIONS(14918), 1, anon_sym_DOT2, + ACTIONS(14922), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16030), 1, + aux_sym__immediate_decimal_token1, STATE(9945), 1, sym_comment, - [402268] = 5, + [402301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16014), 1, - anon_sym_RBRACK, + ACTIONS(15874), 1, + anon_sym_DOT2, + ACTIONS(15878), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16032), 1, + aux_sym__immediate_decimal_token1, STATE(9946), 1, sym_comment, - STATE(9965), 1, - aux_sym_val_binary_repeat1, - [402284] = 4, + [402317] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16016), 1, - sym_long_flag_identifier, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16034), 1, + anon_sym_RBRACK, STATE(9947), 1, sym_comment, - ACTIONS(3951), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [402298] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402333] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2011), 1, - sym_block, + ACTIONS(16036), 1, + anon_sym_DOT2, + ACTIONS(16038), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16040), 1, + aux_sym__immediate_decimal_token3, STATE(9948), 1, sym_comment, - [402314] = 5, + [402349] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16018), 1, - anon_sym_RBRACK, - STATE(9903), 1, - aux_sym_val_binary_repeat1, + ACTIONS(15389), 1, + anon_sym_DOT2, + ACTIONS(15393), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16042), 1, + aux_sym__immediate_decimal_token1, STATE(9949), 1, sym_comment, - [402330] = 5, + [402365] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16020), 1, + ACTIONS(16044), 1, anon_sym_RBRACK, STATE(9950), 1, sym_comment, - STATE(9962), 1, + STATE(9955), 1, aux_sym_val_binary_repeat1, - [402346] = 3, + [402381] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16046), 1, + anon_sym_DOT2, + ACTIONS(16048), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16050), 1, + aux_sym__immediate_decimal_token3, STATE(9951), 1, sym_comment, - ACTIONS(16022), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402358] = 5, + [402397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16024), 1, + ACTIONS(15507), 1, anon_sym_DOT2, - ACTIONS(16026), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16028), 1, + ACTIONS(15511), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16052), 1, + aux_sym__immediate_decimal_token1, STATE(9952), 1, sym_comment, - [402374] = 5, + [402413] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16030), 1, - anon_sym_EQ, - ACTIONS(16032), 1, - anon_sym_COLON, + ACTIONS(16054), 1, + anon_sym_DOT2, + ACTIONS(16056), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16058), 1, + aux_sym__immediate_decimal_token3, STATE(9953), 1, sym_comment, - STATE(10888), 1, - sym_param_type, - [402390] = 5, + [402429] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16034), 1, - anon_sym_RBRACK, + ACTIONS(16060), 1, + anon_sym_DOT2, + ACTIONS(16062), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16064), 1, + aux_sym__immediate_decimal_token3, STATE(9954), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402406] = 5, + [402445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16036), 1, - anon_sym_DOT2, - ACTIONS(16038), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16040), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16066), 1, + anon_sym_RBRACK, STATE(9955), 1, sym_comment, - [402422] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15286), 1, + ACTIONS(14755), 1, anon_sym_DOT2, - ACTIONS(15290), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16042), 1, + ACTIONS(14759), 1, aux_sym__immediate_decimal_token1, + ACTIONS(14761), 1, + aux_sym__immediate_decimal_token3, STATE(9956), 1, sym_comment, - [402438] = 3, + [402477] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16068), 1, + anon_sym_DOT2, + ACTIONS(16070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16072), 1, + aux_sym__immediate_decimal_token3, STATE(9957), 1, sym_comment, - ACTIONS(10760), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402450] = 5, - ACTIONS(105), 1, + [402493] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16044), 1, - anon_sym_SEMI, + ACTIONS(15640), 1, + anon_sym_DOT2, + ACTIONS(15644), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16074), 1, + aux_sym__immediate_decimal_token1, STATE(9958), 1, sym_comment, - [402466] = 5, + [402509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_COLON, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16046), 1, + ACTIONS(15896), 1, anon_sym_DOT2, + ACTIONS(15900), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16076), 1, + aux_sym__immediate_decimal_token1, STATE(9959), 1, sym_comment, - [402482] = 3, + [402525] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16078), 1, + anon_sym_DOT2, + ACTIONS(16080), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16082), 1, + aux_sym__immediate_decimal_token3, STATE(9960), 1, sym_comment, - ACTIONS(10887), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402494] = 5, + [402541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16048), 1, + ACTIONS(14797), 1, anon_sym_DOT2, - ACTIONS(16050), 1, + ACTIONS(14801), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16052), 1, + ACTIONS(14803), 1, aux_sym__immediate_decimal_token3, STATE(9961), 1, sym_comment, - [402510] = 5, + [402557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16054), 1, - anon_sym_RBRACK, + ACTIONS(16084), 1, + anon_sym_DOT2, + ACTIONS(16086), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16088), 1, + aux_sym__immediate_decimal_token3, STATE(9962), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402526] = 5, + [402573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15856), 1, + ACTIONS(14825), 1, anon_sym_DOT2, - ACTIONS(15860), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16056), 1, + ACTIONS(14827), 1, aux_sym__immediate_decimal_token1, + ACTIONS(14829), 1, + aux_sym__immediate_decimal_token3, STATE(9963), 1, sym_comment, - [402542] = 3, + [402589] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_block, STATE(9964), 1, sym_comment, - ACTIONS(10891), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402554] = 5, + [402605] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16058), 1, - anon_sym_RBRACK, + ACTIONS(16090), 1, + anon_sym_DOT2, + ACTIONS(16092), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16094), 1, + aux_sym__immediate_decimal_token3, STATE(9965), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402570] = 5, + [402621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15351), 1, - anon_sym_DOT2, - ACTIONS(15355), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15357), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16096), 1, + anon_sym_RBRACK, STATE(9966), 1, sym_comment, - [402586] = 5, - ACTIONS(105), 1, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [402637] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_RBRACK, - ACTIONS(4015), 1, - sym__entry_separator, - ACTIONS(10076), 1, + ACTIONS(14629), 1, anon_sym_DOT2, + ACTIONS(14633), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16098), 1, + aux_sym__immediate_decimal_token1, STATE(9967), 1, sym_comment, - [402602] = 5, + [402653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16060), 1, - anon_sym_RBRACK, - STATE(9954), 1, - aux_sym_val_binary_repeat1, + ACTIONS(14711), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15588), 1, + anon_sym_DOT2, + ACTIONS(15590), 1, + aux_sym__immediate_decimal_token1, STATE(9968), 1, sym_comment, - [402618] = 3, + [402669] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16100), 1, + anon_sym_DOT2, + ACTIONS(16102), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16104), 1, + aux_sym__immediate_decimal_token3, STATE(9969), 1, sym_comment, - ACTIONS(10895), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402630] = 4, + [402685] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(11697), 1, - aux_sym_unquoted_token3, + ACTIONS(16108), 1, + anon_sym_LF, STATE(9970), 1, sym_comment, - ACTIONS(823), 2, - sym_identifier, - anon_sym_DOLLAR, - [402644] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16062), 1, + ACTIONS(16106), 2, anon_sym_SEMI, + anon_sym_RPAREN, + [402699] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(14843), 1, + anon_sym_DOT2, + ACTIONS(14845), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14847), 1, + aux_sym__immediate_decimal_token3, STATE(9971), 1, sym_comment, - [402660] = 5, + [402715] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16064), 1, - anon_sym_RBRACK, - STATE(9938), 1, - aux_sym_val_binary_repeat1, + ACTIONS(16110), 1, + anon_sym_DOT2, + ACTIONS(16112), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16114), 1, + aux_sym__immediate_decimal_token3, STATE(9972), 1, sym_comment, - [402676] = 5, + [402731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15327), 1, + ACTIONS(14875), 1, anon_sym_DOT2, - ACTIONS(15331), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16066), 1, + ACTIONS(14877), 1, aux_sym__immediate_decimal_token1, + ACTIONS(14879), 1, + aux_sym__immediate_decimal_token3, STATE(9973), 1, sym_comment, - [402692] = 5, - ACTIONS(105), 1, + [402747] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16068), 1, - anon_sym_SEMI, + ACTIONS(16116), 1, + anon_sym_DOT2, + ACTIONS(16118), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16120), 1, + aux_sym__immediate_decimal_token3, STATE(9974), 1, sym_comment, - [402708] = 5, - ACTIONS(105), 1, + [402763] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10076), 1, + ACTIONS(14928), 1, anon_sym_DOT2, - ACTIONS(10387), 1, - sym__entry_separator, - ACTIONS(16070), 1, - anon_sym_RBRACK, + ACTIONS(14932), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14934), 1, + aux_sym__immediate_decimal_token3, STATE(9975), 1, sym_comment, - [402724] = 5, + [402779] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(16124), 1, + anon_sym_LF, + STATE(9976), 1, + sym_comment, + ACTIONS(16122), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [402793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15032), 1, + ACTIONS(14787), 1, anon_sym_DOT2, - ACTIONS(15036), 1, + ACTIONS(14791), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16072), 1, + ACTIONS(16126), 1, aux_sym__immediate_decimal_token1, - STATE(9976), 1, + STATE(9977), 1, sym_comment, - [402740] = 5, + [402809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15172), 1, + ACTIONS(15497), 1, anon_sym_DOT2, - ACTIONS(15174), 1, + ACTIONS(15499), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15176), 1, + ACTIONS(15501), 1, aux_sym__immediate_decimal_token3, - STATE(9977), 1, + STATE(9978), 1, sym_comment, - [402756] = 3, + [402825] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(9978), 1, + ACTIONS(15000), 1, + anon_sym_DOT2, + ACTIONS(15004), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16128), 1, + aux_sym__immediate_decimal_token1, + STATE(9979), 1, sym_comment, - ACTIONS(16074), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402768] = 4, + [402841] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16078), 1, - anon_sym_LF, - STATE(9979), 1, - sym_comment, - ACTIONS(16076), 2, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16130), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [402782] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(15996), 1, - anon_sym_LBRACE, - STATE(8334), 1, - sym_block, STATE(9980), 1, sym_comment, - [402798] = 5, + [402857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15908), 1, + ACTIONS(14958), 1, anon_sym_DOT2, - ACTIONS(15912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16080), 1, + ACTIONS(14962), 1, aux_sym__immediate_decimal_token1, + ACTIONS(14964), 1, + aux_sym__immediate_decimal_token3, STATE(9981), 1, sym_comment, - [402814] = 5, + [402873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15483), 1, + ACTIONS(15347), 1, anon_sym_DOT2, - ACTIONS(15487), 1, + ACTIONS(15351), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16082), 1, + ACTIONS(16132), 1, aux_sym__immediate_decimal_token1, STATE(9982), 1, sym_comment, - [402830] = 5, + [402889] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16084), 1, - anon_sym_RBRACK, + ACTIONS(15479), 1, + anon_sym_DOT2, + ACTIONS(15483), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16134), 1, + aux_sym__immediate_decimal_token1, STATE(9983), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402846] = 5, + [402905] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16086), 1, - anon_sym_RBRACK, + ACTIONS(14982), 1, + anon_sym_DOT2, + ACTIONS(14984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(14986), 1, + aux_sym__immediate_decimal_token3, STATE(9984), 1, sym_comment, - STATE(10021), 1, - aux_sym_val_binary_repeat1, - [402862] = 5, + [402921] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15908), 1, - anon_sym_DOT2, - ACTIONS(15912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16088), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16136), 1, + anon_sym_RBRACK, STATE(9985), 1, sym_comment, - [402878] = 5, + STATE(9997), 1, + aux_sym_val_binary_repeat1, + [402937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16090), 1, - anon_sym_RBRACK, + ACTIONS(15014), 1, + anon_sym_DOT2, + ACTIONS(15016), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15018), 1, + aux_sym__immediate_decimal_token3, STATE(9986), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402894] = 5, + [402953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15138), 1, + ACTIONS(15714), 1, anon_sym_DOT2, - ACTIONS(15140), 1, + ACTIONS(15716), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15142), 1, + ACTIONS(15718), 1, aux_sym__immediate_decimal_token3, STATE(9987), 1, sym_comment, - [402910] = 5, + [402969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15730), 1, + ACTIONS(15040), 1, anon_sym_DOT2, - ACTIONS(15734), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16092), 1, + ACTIONS(15042), 1, aux_sym__immediate_decimal_token1, + ACTIONS(15044), 1, + aux_sym__immediate_decimal_token3, STATE(9988), 1, sym_comment, - [402926] = 3, + [402985] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(15067), 1, + anon_sym_DOT2, + ACTIONS(15069), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15071), 1, + aux_sym__immediate_decimal_token3, STATE(9989), 1, sym_comment, - ACTIONS(10132), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [402938] = 5, + [403001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16094), 1, + ACTIONS(15688), 1, anon_sym_DOT2, - ACTIONS(16096), 1, + ACTIONS(15690), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16098), 1, + ACTIONS(15692), 1, aux_sym__immediate_decimal_token3, STATE(9990), 1, sym_comment, - [402954] = 5, + [403017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16100), 1, - anon_sym_RBRACK, + ACTIONS(15089), 1, + anon_sym_DOT2, + ACTIONS(15093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15095), 1, + aux_sym__immediate_decimal_token3, STATE(9991), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [402970] = 5, + [403033] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16102), 1, - anon_sym_SEMI, + ACTIONS(16140), 1, + anon_sym_LF, STATE(9992), 1, sym_comment, - [402986] = 5, + ACTIONS(16138), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15096), 1, + ACTIONS(15113), 1, anon_sym_DOT2, - ACTIONS(15100), 1, + ACTIONS(15115), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15102), 1, + ACTIONS(15117), 1, aux_sym__immediate_decimal_token3, STATE(9993), 1, sym_comment, - [403002] = 4, - ACTIONS(105), 1, + [403063] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15586), 1, - anon_sym_SEMI, + ACTIONS(15129), 1, + anon_sym_DOT2, + ACTIONS(15133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15135), 1, + aux_sym__immediate_decimal_token3, STATE(9994), 1, sym_comment, - ACTIONS(15588), 2, - ts_builtin_sym_end, - anon_sym_LF, - [403016] = 5, + [403079] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16104), 1, - anon_sym_RBRACK, + ACTIONS(15147), 1, + anon_sym_DOT2, + ACTIONS(15149), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15151), 1, + aux_sym__immediate_decimal_token3, STATE(9995), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [403032] = 5, + [403095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15395), 1, + ACTIONS(16142), 1, anon_sym_DOT2, - ACTIONS(15399), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16106), 1, + ACTIONS(16144), 1, aux_sym__immediate_decimal_token1, + ACTIONS(16146), 1, + aux_sym__immediate_decimal_token3, STATE(9996), 1, sym_comment, - [403048] = 5, + [403111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16108), 1, + ACTIONS(16148), 1, anon_sym_RBRACK, STATE(9997), 1, sym_comment, - STATE(10008), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - [403064] = 5, + [403127] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16048), 1, + ACTIONS(15570), 1, anon_sym_DOT2, - ACTIONS(16052), 1, + ACTIONS(15574), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16110), 1, + ACTIONS(16150), 1, aux_sym__immediate_decimal_token1, STATE(9998), 1, sym_comment, - [403080] = 5, - ACTIONS(3), 1, + [403143] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16112), 1, - anon_sym_DOT2, - ACTIONS(16114), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16116), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(5083), 1, + anon_sym_SEMI, STATE(9999), 1, sym_comment, - [403096] = 5, + ACTIONS(5365), 2, + ts_builtin_sym_end, + anon_sym_LF, + [403157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14501), 1, - anon_sym_PIPE, - ACTIONS(16118), 1, - anon_sym_EQ_GT, + ACTIONS(15163), 1, + anon_sym_DOT2, + ACTIONS(15167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15169), 1, + aux_sym__immediate_decimal_token3, STATE(10000), 1, sym_comment, - STATE(10020), 1, - aux_sym_match_pattern_repeat1, - [403112] = 5, - ACTIONS(105), 1, + [403173] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16120), 1, - anon_sym_SEMI, + ACTIONS(15177), 1, + anon_sym_DOT2, + ACTIONS(15181), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15183), 1, + aux_sym__immediate_decimal_token3, STATE(10001), 1, sym_comment, - [403128] = 5, + [403189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15066), 1, + ACTIONS(15195), 1, anon_sym_DOT2, - ACTIONS(15070), 1, + ACTIONS(15197), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15072), 1, + ACTIONS(15199), 1, aux_sym__immediate_decimal_token3, STATE(10002), 1, sym_comment, - [403144] = 5, + [403205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16122), 1, - anon_sym_RBRACK, + ACTIONS(15620), 1, + anon_sym_DOT2, + ACTIONS(15624), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16152), 1, + aux_sym__immediate_decimal_token1, STATE(10003), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [403160] = 4, - ACTIONS(105), 1, + [403221] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15694), 1, - anon_sym_SEMI, + ACTIONS(15207), 1, + anon_sym_DOT2, + ACTIONS(15211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15213), 1, + aux_sym__immediate_decimal_token3, STATE(10004), 1, sym_comment, - ACTIONS(15696), 2, - ts_builtin_sym_end, - anon_sym_LF, - [403174] = 5, - ACTIONS(105), 1, + [403237] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16124), 1, - anon_sym_SEMI, + ACTIONS(15668), 1, + anon_sym_DOT2, + ACTIONS(15672), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16154), 1, + aux_sym__immediate_decimal_token1, STATE(10005), 1, sym_comment, - [403190] = 5, + [403253] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15044), 1, + ACTIONS(15221), 1, anon_sym_DOT2, - ACTIONS(15048), 1, + ACTIONS(15223), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15050), 1, + ACTIONS(15225), 1, aux_sym__immediate_decimal_token3, STATE(10006), 1, sym_comment, - [403206] = 5, + [403269] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15958), 1, - anon_sym_DOT2, - ACTIONS(15962), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16126), 1, - aux_sym__immediate_decimal_token1, STATE(10007), 1, sym_comment, - [403222] = 5, + ACTIONS(16156), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [403281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16128), 1, + ACTIONS(16158), 1, anon_sym_RBRACK, STATE(10008), 1, sym_comment, - STATE(10102), 1, + STATE(10022), 1, aux_sym_val_binary_repeat1, - [403238] = 5, - ACTIONS(3), 1, + [403297] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16130), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - STATE(9995), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16160), 1, + anon_sym_SEMI, STATE(10009), 1, sym_comment, - [403254] = 5, + [403313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16132), 1, - anon_sym_DOT2, - ACTIONS(16134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16136), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_block, STATE(10010), 1, sym_comment, - [403270] = 5, - ACTIONS(105), 1, + [403329] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16138), 1, - anon_sym_SEMI, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1972), 1, + sym_block, STATE(10011), 1, sym_comment, - [403286] = 5, + [403345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14986), 1, + ACTIONS(15604), 1, anon_sym_DOT2, - ACTIONS(14990), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14992), 1, + ACTIONS(15608), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16162), 1, + aux_sym__immediate_decimal_token1, STATE(10012), 1, sym_comment, - [403302] = 5, - ACTIONS(3), 1, + [403361] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16032), 1, - anon_sym_COLON, - ACTIONS(16140), 1, - anon_sym_EQ, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4286), 1, + aux_sym_pipe_element_repeat1, STATE(10013), 1, sym_comment, - STATE(10729), 1, - sym_param_type, - [403318] = 3, - ACTIONS(3), 1, + [403377] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(16166), 1, + anon_sym_LF, STATE(10014), 1, sym_comment, - ACTIONS(11053), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [403330] = 5, + ACTIONS(16164), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15262), 1, - anon_sym_DOT2, - ACTIONS(15266), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16142), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(15802), 1, + anon_sym_LBRACE, + STATE(8508), 1, + sym_block, STATE(10015), 1, sym_comment, - [403346] = 5, + [403407] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16144), 1, + ACTIONS(15024), 1, anon_sym_SEMI, STATE(10016), 1, sym_comment, - [403362] = 5, - ACTIONS(3), 1, + ACTIONS(15026), 2, + ts_builtin_sym_end, + anon_sym_LF, + [403421] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16146), 1, - anon_sym_DOT2, - ACTIONS(16148), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16150), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4294), 1, + aux_sym_pipe_element_repeat1, STATE(10017), 1, sym_comment, - [403378] = 5, + [403437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14640), 1, + ACTIONS(14765), 1, anon_sym_DOT2, - ACTIONS(14644), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16152), 1, + ACTIONS(14769), 1, aux_sym__immediate_decimal_token1, + ACTIONS(14771), 1, + aux_sym__immediate_decimal_token3, STATE(10018), 1, sym_comment, - [403394] = 5, - ACTIONS(3), 1, + [403453] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14952), 1, - anon_sym_DOT2, - ACTIONS(14954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14956), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15447), 1, + anon_sym_SEMI, STATE(10019), 1, sym_comment, - [403410] = 4, - ACTIONS(3), 1, + ACTIONS(15449), 2, + ts_builtin_sym_end, + anon_sym_LF, + [403467] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16154), 1, - anon_sym_PIPE, - ACTIONS(16157), 1, - anon_sym_EQ_GT, - STATE(10020), 2, + ACTIONS(2957), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16170), 1, + aux_sym__immediate_decimal_token2, + STATE(10020), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [403424] = 5, + [403483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16159), 1, - anon_sym_RBRACK, + ACTIONS(16142), 1, + anon_sym_DOT2, + ACTIONS(16146), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16172), 1, + aux_sym__immediate_decimal_token1, STATE(10021), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [403440] = 5, + [403499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16161), 1, + ACTIONS(16174), 1, anon_sym_RBRACK, - STATE(10003), 1, - aux_sym_val_binary_repeat1, STATE(10022), 1, sym_comment, - [403456] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [403515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15828), 1, + anon_sym_DOT2, + ACTIONS(15832), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16176), 1, + aux_sym__immediate_decimal_token1, + STATE(10023), 1, + sym_comment, + [403531] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16163), 1, + ACTIONS(16178), 1, anon_sym_RBRACK, - STATE(9991), 1, - aux_sym_val_binary_repeat1, - STATE(10023), 1, + STATE(10024), 1, sym_comment, - [403472] = 4, + STATE(10027), 1, + aux_sym_val_binary_repeat1, + [403547] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16167), 1, + ACTIONS(16182), 1, anon_sym_LF, - STATE(10024), 1, + STATE(10025), 1, sym_comment, - ACTIONS(16165), 2, + ACTIONS(16180), 2, anon_sym_SEMI, anon_sym_RPAREN, - [403486] = 5, + [403561] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14866), 1, + ACTIONS(16184), 1, anon_sym_DOT2, - ACTIONS(14870), 1, + ACTIONS(16186), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14872), 1, + ACTIONS(16188), 1, aux_sym__immediate_decimal_token3, - STATE(10025), 1, - sym_comment, - [403502] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym_unquoted_token3, - ACTIONS(15892), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16169), 1, - aux_sym__immediate_decimal_token1, STATE(10026), 1, sym_comment, - [403518] = 5, + [403577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15106), 1, - anon_sym_DOT2, - ACTIONS(15110), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16171), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16190), 1, + anon_sym_RBRACK, STATE(10027), 1, sym_comment, - [403534] = 5, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + [403593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14820), 1, + ACTIONS(15703), 1, anon_sym_DOT2, - ACTIONS(14822), 1, + ACTIONS(15705), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14824), 1, + ACTIONS(15707), 1, aux_sym__immediate_decimal_token3, STATE(10028), 1, sym_comment, - [403550] = 5, + [403609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16173), 1, + ACTIONS(16192), 1, anon_sym_RBRACK, - STATE(10029), 1, + ACTIONS(16194), 1, + sym_hex_digit, + STATE(10029), 2, sym_comment, - STATE(10102), 1, aux_sym_val_binary_repeat1, - [403566] = 5, + [403623] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_unquoted_token3, - ACTIONS(16175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16177), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(14891), 1, + anon_sym_LPAREN, STATE(10030), 1, sym_comment, - [403582] = 5, + ACTIONS(14893), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [403637] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16179), 1, + ACTIONS(4877), 1, anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(2387), 1, + sym__terminator, STATE(10031), 1, sym_comment, - [403598] = 3, + [403653] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(846), 1, + aux_sym_unquoted_token6, + ACTIONS(16197), 1, + anon_sym_DOT2, + ACTIONS(16200), 1, + aux_sym__immediate_decimal_token2, STATE(10032), 1, sym_comment, - ACTIONS(11169), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [403610] = 5, - ACTIONS(3), 1, + [403669] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15244), 1, - anon_sym_DOT2, - ACTIONS(15246), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15248), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(827), 1, + anon_sym_DOLLAR, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, STATE(10033), 1, sym_comment, - [403626] = 3, + [403685] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4283), 1, + anon_sym_DASH, STATE(10034), 1, sym_comment, - ACTIONS(11165), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [403638] = 5, + ACTIONS(4285), 2, + sym_identifier, + anon_sym_DASH_DASH, + [403699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16181), 1, + ACTIONS(16202), 1, anon_sym_RBRACK, STATE(10035), 1, sym_comment, - STATE(10102), 1, + STATE(10126), 1, aux_sym_val_binary_repeat1, - [403654] = 5, + [403715] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16183), 1, - anon_sym_SEMI, + ACTIONS(16206), 1, + anon_sym_LF, STATE(10036), 1, sym_comment, - [403670] = 3, - ACTIONS(3), 1, + ACTIONS(16204), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403729] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5332), 1, + anon_sym_RPAREN, + ACTIONS(16208), 1, + anon_sym_SEMI, + ACTIONS(16210), 1, + anon_sym_LF, STATE(10037), 1, sym_comment, - ACTIONS(11165), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [403682] = 4, - ACTIONS(105), 1, + [403745] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16187), 1, - anon_sym_LF, + ACTIONS(15886), 1, + anon_sym_COLON, + ACTIONS(16212), 1, + anon_sym_EQ, STATE(10038), 1, sym_comment, - ACTIONS(16185), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [403696] = 5, + STATE(10909), 1, + sym_param_type, + [403761] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14769), 1, + ACTIONS(15724), 1, anon_sym_DOT2, - ACTIONS(14773), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14775), 1, + ACTIONS(15728), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16214), 1, + aux_sym__immediate_decimal_token1, STATE(10039), 1, sym_comment, - [403712] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16189), 1, - anon_sym_SEMI, - STATE(10040), 1, - sym_comment, - [403728] = 5, + [403777] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16191), 1, + ACTIONS(14653), 1, anon_sym_DOT2, - ACTIONS(16193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16195), 1, + ACTIONS(14657), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16216), 1, + aux_sym__immediate_decimal_token1, + STATE(10040), 1, + sym_comment, + [403793] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15517), 1, + anon_sym_SEMI, STATE(10041), 1, sym_comment, - [403744] = 5, + ACTIONS(15519), 2, + ts_builtin_sym_end, + anon_sym_LF, + [403807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14615), 1, - anon_sym_DOT2, - ACTIONS(14619), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14621), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15886), 1, + anon_sym_COLON, + ACTIONS(16218), 1, + anon_sym_EQ, STATE(10042), 1, sym_comment, - [403760] = 5, - ACTIONS(3), 1, + STATE(11481), 1, + sym_param_type, + [403823] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16197), 1, - anon_sym_RBRACK, + ACTIONS(11687), 1, + aux_sym_unquoted_token3, STATE(10043), 1, sym_comment, - STATE(10054), 1, - aux_sym_val_binary_repeat1, - [403776] = 5, + ACTIONS(827), 2, + sym_identifier, + anon_sym_DOLLAR, + [403837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16199), 1, - anon_sym_RBRACK, + ACTIONS(15886), 1, + anon_sym_COLON, + ACTIONS(16220), 1, + anon_sym_EQ, STATE(10044), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [403792] = 5, + STATE(10470), 1, + sym_param_type, + [403853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14706), 1, - anon_sym_DOT2, - ACTIONS(14708), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14710), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16222), 1, + anon_sym_RBRACK, STATE(10045), 1, sym_comment, - [403808] = 5, - ACTIONS(3), 1, + STATE(10054), 1, + aux_sym_val_binary_repeat1, + [403869] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15748), 1, - anon_sym_DOT2, - ACTIONS(15752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15754), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(16226), 1, + anon_sym_LF, STATE(10046), 1, sym_comment, - [403824] = 5, + ACTIONS(16224), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16201), 1, - anon_sym_DOT2, - ACTIONS(16203), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16205), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(16228), 1, + anon_sym_EQ, STATE(10047), 1, sym_comment, - [403840] = 5, - ACTIONS(3), 1, + ACTIONS(3946), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [403897] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16207), 1, - anon_sym_DOT2, - ACTIONS(16209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16211), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(16230), 1, + anon_sym_LF, STATE(10048), 1, sym_comment, - [403856] = 5, + ACTIONS(5229), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403911] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16213), 1, + ACTIONS(4877), 1, anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LF, + STATE(2418), 1, + sym__terminator, STATE(10049), 1, sym_comment, - [403872] = 5, - ACTIONS(3), 1, + [403927] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14019), 1, - anon_sym_DOT2, - ACTIONS(14025), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(14745), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16232), 1, + anon_sym_LF, STATE(10050), 1, sym_comment, - [403888] = 5, + ACTIONS(5353), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [403941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14658), 1, - anon_sym_DOT2, - ACTIONS(14662), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14664), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14053), 1, + anon_sym_if, + ACTIONS(16234), 1, + anon_sym_EQ_GT, STATE(10051), 1, sym_comment, - [403904] = 5, - ACTIONS(3), 1, + STATE(10786), 1, + sym_match_guard, + [403957] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16215), 1, + ACTIONS(827), 1, anon_sym_RBRACK, + ACTIONS(829), 1, + sym__entry_separator, + ACTIONS(9054), 1, + aux_sym_unquoted_token3, STATE(10052), 1, sym_comment, - STATE(10106), 1, - aux_sym_val_binary_repeat1, - [403920] = 5, + [403973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16217), 1, + ACTIONS(15834), 1, anon_sym_DOT2, - ACTIONS(16219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16221), 1, + ACTIONS(15838), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16236), 1, + aux_sym__immediate_decimal_token1, STATE(10053), 1, sym_comment, - [403936] = 5, + [403989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16223), 1, + ACTIONS(16238), 1, anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10054), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [403952] = 5, - ACTIONS(105), 1, + [404005] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16225), 1, - anon_sym_SEMI, + ACTIONS(15423), 1, + anon_sym_DOT2, + ACTIONS(15427), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15429), 1, + aux_sym__immediate_decimal_token3, STATE(10055), 1, sym_comment, - [403968] = 5, - ACTIONS(3), 1, + [404021] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16227), 1, - anon_sym_RBRACK, - STATE(10035), 1, - aux_sym_val_binary_repeat1, + ACTIONS(15101), 1, + anon_sym_SEMI, STATE(10056), 1, sym_comment, - [403984] = 5, + ACTIONS(15103), 2, + ts_builtin_sym_end, + anon_sym_LF, + [404035] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14678), 1, - anon_sym_DOT2, - ACTIONS(14682), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14684), 1, - aux_sym__immediate_decimal_token3, STATE(10057), 1, sym_comment, - [404000] = 5, - ACTIONS(3), 1, + ACTIONS(11003), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404047] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14878), 1, - anon_sym_DOT2, - ACTIONS(14882), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14884), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4385), 1, + aux_sym_pipe_element_repeat1, STATE(10058), 1, sym_comment, - [404016] = 4, + [404063] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15740), 1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16240), 1, anon_sym_SEMI, STATE(10059), 1, sym_comment, - ACTIONS(15742), 2, - ts_builtin_sym_end, - anon_sym_LF, - [404030] = 5, + [404079] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14779), 1, - anon_sym_DOT2, - ACTIONS(14781), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14783), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16242), 1, + anon_sym_RBRACK, STATE(10060), 1, sym_comment, - [404046] = 5, - ACTIONS(105), 1, + STATE(10070), 1, + aux_sym_val_binary_repeat1, + [404095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16229), 1, - anon_sym_SEMI, + ACTIONS(9917), 1, + anon_sym_DOT2, STATE(10061), 1, sym_comment, - [404062] = 5, + ACTIONS(3931), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [404109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16231), 1, - anon_sym_RBRACK, - STATE(10044), 1, - aux_sym_val_binary_repeat1, + ACTIONS(16244), 1, + sym_long_flag_identifier, STATE(10062), 1, sym_comment, - [404078] = 4, + ACTIONS(3891), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [404123] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15724), 1, + ACTIONS(15030), 1, anon_sym_SEMI, STATE(10063), 1, sym_comment, - ACTIONS(15726), 2, + ACTIONS(15032), 2, ts_builtin_sym_end, anon_sym_LF, - [404092] = 5, + [404137] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16233), 1, - anon_sym_RBRACK, - STATE(9986), 1, - aux_sym_val_binary_repeat1, + ACTIONS(848), 1, + anon_sym_COLON, + ACTIONS(9125), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16246), 1, + anon_sym_DOT2, STATE(10064), 1, sym_comment, - [404108] = 5, + [404153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3947), 1, - sym_identifier, - ACTIONS(3951), 1, - anon_sym_DOLLAR, - ACTIONS(16235), 1, - sym_long_flag_identifier, + ACTIONS(855), 1, + aux_sym_unquoted_token6, + ACTIONS(857), 1, + anon_sym_DOT2, + ACTIONS(16248), 1, + aux_sym__immediate_decimal_token2, STATE(10065), 1, sym_comment, - [404124] = 4, - ACTIONS(105), 1, + [404169] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15168), 1, - anon_sym_SEMI, + ACTIONS(15676), 1, + anon_sym_DOT2, + ACTIONS(15680), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16250), 1, + aux_sym__immediate_decimal_token1, STATE(10066), 1, sym_comment, - ACTIONS(15170), 2, - ts_builtin_sym_end, - anon_sym_LF, - [404138] = 5, + [404185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16032), 1, - anon_sym_COLON, - ACTIONS(16237), 1, + ACTIONS(16252), 1, anon_sym_EQ, STATE(10067), 1, sym_comment, - STATE(10980), 1, - sym_param_type, - [404154] = 5, + ACTIONS(3946), 2, + sym_identifier, + anon_sym_DOLLAR, + [404199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(16254), 1, + anon_sym_DOT2, + ACTIONS(16256), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16258), 1, + aux_sym__immediate_decimal_token3, + STATE(10068), 1, + sym_comment, + [404215] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16239), 1, + ACTIONS(16260), 1, anon_sym_RBRACK, - STATE(10068), 1, + STATE(10069), 1, sym_comment, - STATE(10081), 1, + STATE(10076), 1, aux_sym_val_binary_repeat1, - [404170] = 5, + [404231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15158), 1, - anon_sym_DOT2, - ACTIONS(15162), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16241), 1, - aux_sym__immediate_decimal_token1, - STATE(10069), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16262), 1, + anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, + STATE(10070), 1, sym_comment, - [404186] = 4, + [404247] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15662), 1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16264), 1, anon_sym_SEMI, - STATE(10070), 1, + STATE(10071), 1, + sym_comment, + [404263] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5093), 1, + anon_sym_SEMI, + STATE(10072), 1, sym_comment, - ACTIONS(15664), 2, + ACTIONS(5340), 2, ts_builtin_sym_end, anon_sym_LF, - [404200] = 5, + [404277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15612), 1, + ACTIONS(16266), 1, anon_sym_DOT2, - ACTIONS(15616), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16243), 1, + ACTIONS(16268), 1, aux_sym__immediate_decimal_token1, - STATE(10071), 1, - sym_comment, - [404216] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15022), 1, - anon_sym_DOT2, - ACTIONS(15026), 1, + ACTIONS(16270), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16245), 1, - aux_sym__immediate_decimal_token1, - STATE(10072), 1, - sym_comment, - [404232] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16247), 1, - anon_sym_SEMI, STATE(10073), 1, sym_comment, - [404248] = 4, - ACTIONS(105), 1, + [404293] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16251), 1, - anon_sym_LF, STATE(10074), 1, sym_comment, - ACTIONS(16249), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [404262] = 5, + ACTIONS(11003), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404305] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14848), 1, + ACTIONS(15978), 1, anon_sym_DOT2, - ACTIONS(14852), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14854), 1, + ACTIONS(15982), 1, aux_sym__immediate_decimal_token3, + ACTIONS(16272), 1, + aux_sym__immediate_decimal_token1, STATE(10075), 1, sym_comment, - [404278] = 5, - ACTIONS(105), 1, + [404321] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16274), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16253), 1, - anon_sym_SEMI, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10076), 1, sym_comment, - [404294] = 5, + [404337] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16255), 1, + ACTIONS(16276), 1, anon_sym_SEMI, STATE(10077), 1, sym_comment, - [404310] = 5, + [404353] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2011), 1, - sym_block, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16278), 1, + anon_sym_RBRACK, STATE(10078), 1, sym_comment, - [404326] = 5, + STATE(10111), 1, + aux_sym_val_binary_repeat1, + [404369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15375), 1, - anon_sym_DOT2, - ACTIONS(15377), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15379), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16280), 1, + anon_sym_RBRACK, STATE(10079), 1, sym_comment, - [404342] = 5, - ACTIONS(3), 1, + STATE(10098), 1, + aux_sym_val_binary_repeat1, + [404385] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15934), 1, - anon_sym_DOT2, - ACTIONS(15938), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16257), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16282), 1, + anon_sym_SEMI, STATE(10080), 1, sym_comment, - [404358] = 5, - ACTIONS(3), 1, + [404401] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16259), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16284), 1, + anon_sym_SEMI, STATE(10081), 1, sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [404374] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(14896), 1, - anon_sym_DOT2, - ACTIONS(14900), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16261), 1, - aux_sym__immediate_decimal_token1, - STATE(10082), 1, - sym_comment, - [404390] = 5, + [404417] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16263), 1, + ACTIONS(16286), 1, anon_sym_SEMI, - STATE(10083), 1, + STATE(10082), 1, sym_comment, - [404406] = 5, + [404433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16036), 1, + ACTIONS(817), 1, + anon_sym_COLON, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16288), 1, anon_sym_DOT2, - ACTIONS(16040), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16265), 1, - aux_sym__immediate_decimal_token1, + STATE(10083), 1, + sym_comment, + [404449] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16290), 1, + anon_sym_SEMI, STATE(10084), 1, sym_comment, - [404422] = 5, - ACTIONS(3), 1, + [404465] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14932), 1, - anon_sym_DOT2, - ACTIONS(14936), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16267), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16292), 1, + anon_sym_SEMI, STATE(10085), 1, sym_comment, - [404438] = 4, + [404481] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15164), 1, - anon_sym_SEMI, + ACTIONS(3887), 1, + anon_sym_RBRACK, + ACTIONS(3891), 1, + sym__entry_separator, + ACTIONS(16294), 1, + sym_long_flag_identifier, STATE(10086), 1, sym_comment, - ACTIONS(15166), 2, - ts_builtin_sym_end, - anon_sym_LF, - [404452] = 5, + [404497] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_SEMI, - ACTIONS(4746), 1, - anon_sym_LF, - STATE(2420), 1, - sym__terminator, + ACTIONS(2998), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(15948), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16296), 1, + anon_sym_DOT2, STATE(10087), 1, sym_comment, - [404468] = 5, - ACTIONS(3), 1, + [404513] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14834), 1, - anon_sym_DOT2, - ACTIONS(14838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16269), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16298), 1, + anon_sym_SEMI, STATE(10088), 1, sym_comment, - [404484] = 5, + [404529] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16271), 1, - anon_sym_RBRACK, + ACTIONS(15828), 1, + anon_sym_DOT2, + ACTIONS(15832), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16300), 1, + aux_sym__immediate_decimal_token1, STATE(10089), 1, sym_comment, - STATE(10100), 1, - aux_sym_val_binary_repeat1, - [404500] = 5, + [404545] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16273), 1, + ACTIONS(16302), 1, anon_sym_SEMI, STATE(10090), 1, sym_comment, - [404516] = 5, - ACTIONS(3), 1, + [404561] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16032), 1, - anon_sym_COLON, - ACTIONS(16275), 1, - anon_sym_EQ, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16304), 1, + anon_sym_SEMI, STATE(10091), 1, sym_comment, - STATE(10664), 1, - sym_param_type, - [404532] = 5, + [404577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15822), 1, + ACTIONS(14883), 1, anon_sym_DOT2, - ACTIONS(15826), 1, + ACTIONS(14887), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16277), 1, + ACTIONS(16306), 1, aux_sym__immediate_decimal_token1, STATE(10092), 1, sym_comment, - [404548] = 5, + [404593] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16279), 1, + ACTIONS(16308), 1, anon_sym_SEMI, STATE(10093), 1, sym_comment, - [404564] = 4, - ACTIONS(105), 1, + [404609] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15074), 1, - anon_sym_LPAREN, + ACTIONS(15896), 1, + anon_sym_DOT2, + ACTIONS(15900), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16310), 1, + aux_sym__immediate_decimal_token1, STATE(10094), 1, sym_comment, - ACTIONS(15076), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [404578] = 4, - ACTIONS(105), 1, + [404625] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16283), 1, - anon_sym_LF, STATE(10095), 1, sym_comment, - ACTIONS(16281), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [404592] = 5, + ACTIONS(10471), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404637] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14972), 1, - anon_sym_DOT2, - ACTIONS(14976), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(14978), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16312), 1, + anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10096), 1, sym_comment, - [404608] = 5, - ACTIONS(3), 1, + [404653] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16285), 1, - anon_sym_DOT2, - ACTIONS(16287), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16289), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16314), 1, + anon_sym_SEMI, STATE(10097), 1, sym_comment, - [404624] = 5, + [404669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16032), 1, - anon_sym_COLON, - ACTIONS(16291), 1, - anon_sym_EQ, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16316), 1, + anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10098), 1, sym_comment, - STATE(11393), 1, - sym_param_type, - [404640] = 5, + [404685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15856), 1, + ACTIONS(16318), 1, anon_sym_DOT2, - ACTIONS(15860), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16293), 1, + ACTIONS(16320), 1, aux_sym__immediate_decimal_token1, + ACTIONS(16322), 1, + aux_sym__immediate_decimal_token3, STATE(10099), 1, sym_comment, - [404656] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16295), 1, - anon_sym_RBRACK, - STATE(10100), 1, - sym_comment, - STATE(10102), 1, - aux_sym_val_binary_repeat1, - [404672] = 5, + [404701] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16297), 1, + ACTIONS(16324), 1, anon_sym_SEMI, - STATE(10101), 1, + STATE(10100), 1, sym_comment, - [404688] = 4, + [404717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16299), 1, - anon_sym_RBRACK, - ACTIONS(16301), 1, - sym_hex_digit, - STATE(10102), 2, + ACTIONS(15858), 1, + anon_sym_DOT2, + ACTIONS(15862), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(16326), 1, + aux_sym__immediate_decimal_token1, + STATE(10101), 1, sym_comment, - aux_sym_val_binary_repeat1, - [404702] = 5, + [404733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15120), 1, - anon_sym_DOT2, - ACTIONS(15122), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15124), 1, - aux_sym__immediate_decimal_token3, + STATE(10102), 1, + sym_comment, + ACTIONS(11007), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404745] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16328), 1, + anon_sym_SEMI, STATE(10103), 1, sym_comment, - [404718] = 5, - ACTIONS(3), 1, + [404761] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16304), 1, - anon_sym_DOT2, - ACTIONS(16306), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16308), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16330), 1, + anon_sym_SEMI, STATE(10104), 1, sym_comment, - [404734] = 4, + [404777] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16312), 1, - anon_sym_LF, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16332), 1, + anon_sym_SEMI, STATE(10105), 1, sym_comment, - ACTIONS(16310), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [404748] = 5, - ACTIONS(3), 1, + [404793] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16314), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - STATE(10102), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16334), 1, + anon_sym_SEMI, STATE(10106), 1, sym_comment, - [404764] = 5, + [404809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15228), 1, - anon_sym_DOT2, - ACTIONS(15230), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15232), 1, - aux_sym__immediate_decimal_token3, STATE(10107), 1, sym_comment, - [404780] = 5, - ACTIONS(105), 1, + ACTIONS(10833), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404821] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16336), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16316), 1, - anon_sym_SEMI, STATE(10108), 1, sym_comment, - [404796] = 5, - ACTIONS(3), 1, + STATE(10124), 1, + aux_sym_val_binary_repeat1, + [404837] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16318), 1, + ACTIONS(3165), 1, + aux_sym_unquoted_token3, + ACTIONS(16338), 1, anon_sym_DOT2, - ACTIONS(16320), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16322), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(16340), 1, + aux_sym__immediate_decimal_token2, STATE(10109), 1, sym_comment, - [404812] = 4, + [404853] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16326), 1, - anon_sym_LF, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16342), 1, + anon_sym_SEMI, STATE(10110), 1, sym_comment, - ACTIONS(16324), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [404826] = 5, + [404869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16328), 1, + ACTIONS(16344), 1, anon_sym_RBRACK, - STATE(10102), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, STATE(10111), 1, sym_comment, - [404842] = 5, - ACTIONS(3), 1, + [404885] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16330), 1, - anon_sym_DOT2, - ACTIONS(16332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16334), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16346), 1, + anon_sym_SEMI, STATE(10112), 1, sym_comment, - [404858] = 5, + [404901] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16336), 1, + ACTIONS(16348), 1, anon_sym_SEMI, STATE(10113), 1, sym_comment, - [404874] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16338), 1, - anon_sym_DOT2, - ACTIONS(16340), 1, - aux_sym__immediate_decimal_token2, - STATE(10114), 1, - sym_comment, - [404890] = 5, + [404917] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14728), 1, - anon_sym_DOT2, - ACTIONS(14732), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16342), 1, - aux_sym__immediate_decimal_token1, - STATE(10115), 1, + STATE(10114), 1, sym_comment, - [404906] = 5, + ACTIONS(10837), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [404929] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3489), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16344), 1, - anon_sym_DOT2, - ACTIONS(16346), 1, - aux_sym__immediate_decimal_token2, - STATE(10116), 1, - sym_comment, - [404922] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16348), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - STATE(10111), 1, - aux_sym_val_binary_repeat1, - STATE(10117), 1, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16350), 1, + anon_sym_SEMI, + STATE(10115), 1, sym_comment, - [404938] = 5, + [404945] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16350), 1, + ACTIONS(16352), 1, anon_sym_SEMI, - STATE(10118), 1, + STATE(10116), 1, sym_comment, - [404954] = 4, - ACTIONS(105), 1, + [404961] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, - STATE(10119), 1, + STATE(10117), 1, sym_comment, - ACTIONS(823), 2, + ACTIONS(10841), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [404968] = 5, + [404973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16352), 1, + ACTIONS(13846), 1, anon_sym_DOT2, + ACTIONS(13852), 1, + aux_sym__immediate_decimal_token3, ACTIONS(16354), 1, aux_sym__immediate_decimal_token1, + STATE(10118), 1, + sym_comment, + [404989] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, ACTIONS(16356), 1, - aux_sym__immediate_decimal_token3, + anon_sym_SEMI, + STATE(10119), 1, + sym_comment, + [405005] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16358), 1, + anon_sym_SEMI, STATE(10120), 1, sym_comment, - [404984] = 5, + [405021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14920), 1, + ACTIONS(16360), 1, anon_sym_DOT2, - ACTIONS(14922), 1, + ACTIONS(16362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(14924), 1, + ACTIONS(16364), 1, aux_sym__immediate_decimal_token3, STATE(10121), 1, sym_comment, - [405000] = 5, - ACTIONS(105), 1, + [405037] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16366), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16358), 1, - anon_sym_SEMI, + STATE(9929), 1, + aux_sym_val_binary_repeat1, STATE(10122), 1, sym_comment, - [405016] = 5, + [405053] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16360), 1, + ACTIONS(16368), 1, anon_sym_SEMI, STATE(10123), 1, sym_comment, - [405032] = 5, + [405069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16362), 1, + ACTIONS(16370), 1, anon_sym_RBRACK, STATE(10029), 1, aux_sym_val_binary_repeat1, STATE(10124), 1, sym_comment, - [405048] = 5, - ACTIONS(3), 1, + [405085] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15606), 1, - anon_sym_DOT2, - ACTIONS(15610), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16364), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16372), 1, + anon_sym_SEMI, STATE(10125), 1, sym_comment, - [405064] = 5, + [405101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15465), 1, - anon_sym_DOT2, - ACTIONS(15469), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15471), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16374), 1, + anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10126), 1, sym_comment, - [405080] = 5, - ACTIONS(3), 1, + [405117] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16366), 1, - anon_sym_DOT2, - ACTIONS(16368), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16370), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16376), 1, + anon_sym_SEMI, STATE(10127), 1, sym_comment, - [405096] = 5, - ACTIONS(3), 1, + [405133] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15560), 1, - anon_sym_DOT2, - ACTIONS(15562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15564), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16378), 1, + anon_sym_SEMI, STATE(10128), 1, sym_comment, - [405112] = 5, - ACTIONS(105), 1, + [405149] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16340), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(16372), 1, - aux_sym__immediate_decimal_token1, - STATE(10129), 1, + ACTIONS(16380), 1, + anon_sym_PIPE, + ACTIONS(16383), 1, + anon_sym_EQ_GT, + STATE(10129), 2, sym_comment, - [405128] = 5, - ACTIONS(3), 1, + aux_sym_match_pattern_repeat1, + [405163] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15345), 1, - anon_sym_DOT2, - ACTIONS(15347), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15349), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16385), 1, + anon_sym_SEMI, STATE(10130), 1, sym_comment, - [405144] = 5, + [405179] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16374), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16376), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16387), 1, + anon_sym_SEMI, STATE(10131), 1, sym_comment, - [405160] = 5, + [405195] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16378), 1, + ACTIONS(16389), 1, anon_sym_SEMI, STATE(10132), 1, sym_comment, - [405176] = 5, - ACTIONS(3), 1, + [405211] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16380), 1, - anon_sym_DOT2, - ACTIONS(16382), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16384), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(15371), 1, + anon_sym_SEMI, STATE(10133), 1, sym_comment, - [405192] = 5, - ACTIONS(3), 1, + ACTIONS(15373), 2, + ts_builtin_sym_end, + anon_sym_LF, + [405225] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15274), 1, - anon_sym_DOT2, - ACTIONS(15276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15278), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16391), 1, + anon_sym_SEMI, STATE(10134), 1, sym_comment, - [405208] = 5, - ACTIONS(3), 1, + [405241] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16386), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16393), 1, + anon_sym_SEMI, STATE(10135), 1, sym_comment, - STATE(10146), 1, - aux_sym_val_binary_repeat1, - [405224] = 5, + [405257] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16388), 1, + ACTIONS(16395), 1, anon_sym_SEMI, STATE(10136), 1, sym_comment, - [405240] = 5, - ACTIONS(3), 1, + [405273] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16390), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16397), 1, + anon_sym_SEMI, STATE(10137), 1, sym_comment, - STATE(10161), 1, - aux_sym_val_binary_repeat1, - [405256] = 5, - ACTIONS(3), 1, + [405289] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15449), 1, - anon_sym_DOT2, - ACTIONS(15451), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15453), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1056), 1, + sym__entry_separator, + ACTIONS(16399), 1, + anon_sym_SEMI, STATE(10138), 1, sym_comment, - [405272] = 5, + [405305] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, - ACTIONS(16392), 1, + ACTIONS(16401), 1, anon_sym_SEMI, STATE(10139), 1, sym_comment, - [405288] = 5, + [405321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16394), 1, + ACTIONS(16403), 1, anon_sym_RBRACK, - STATE(10102), 1, - aux_sym_val_binary_repeat1, STATE(10140), 1, sym_comment, - [405304] = 5, + STATE(10159), 1, + aux_sym_val_binary_repeat1, + [405337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16396), 1, + ACTIONS(815), 1, + aux_sym_unquoted_token6, + ACTIONS(14651), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16405), 1, anon_sym_DOT2, - ACTIONS(16398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16400), 1, - aux_sym__immediate_decimal_token3, STATE(10141), 1, sym_comment, - [405320] = 5, + [405353] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16402), 1, + ACTIONS(815), 1, + aux_sym_unquoted_token6, + ACTIONS(817), 1, anon_sym_DOT2, - ACTIONS(16404), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16406), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(14651), 1, + aux_sym__immediate_decimal_token2, STATE(10142), 1, sym_comment, - [405336] = 5, - ACTIONS(105), 1, + [405369] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16408), 1, - anon_sym_SEMI, + ACTIONS(15403), 1, + anon_sym_DOT2, + ACTIONS(15405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(15407), 1, + aux_sym__immediate_decimal_token3, STATE(10143), 1, sym_comment, - [405352] = 5, + [405385] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16410), 1, - anon_sym_SEMI, + ACTIONS(16408), 1, + anon_sym_DQUOTE, STATE(10144), 1, sym_comment, - [405368] = 5, + ACTIONS(16410), 2, + sym__escaped_str_content, + sym_escape_sequence, + [405399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16412), 1, + ACTIONS(14181), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(15768), 1, anon_sym_DOT2, - ACTIONS(16414), 1, + ACTIONS(15770), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16416), 1, - aux_sym__immediate_decimal_token3, STATE(10145), 1, sym_comment, - [405384] = 5, - ACTIONS(3), 1, + [405415] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16418), 1, - anon_sym_RBRACK, - STATE(10102), 1, - aux_sym_val_binary_repeat1, + ACTIONS(16412), 1, + anon_sym_LPAREN, STATE(10146), 1, sym_comment, - [405400] = 5, - ACTIONS(3), 1, + ACTIONS(16414), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [405429] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14698), 1, - anon_sym_DOT2, - ACTIONS(14702), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(16420), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16416), 1, + anon_sym_LPAREN, STATE(10147), 1, sym_comment, - [405416] = 4, - ACTIONS(105), 1, + ACTIONS(16418), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [405443] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4897), 1, - anon_sym_SEMI, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16420), 1, + anon_sym_RBRACK, STATE(10148), 1, sym_comment, - ACTIONS(5342), 2, - ts_builtin_sym_end, - anon_sym_LF, - [405430] = 5, - ACTIONS(105), 1, + STATE(10158), 1, + aux_sym_val_binary_repeat1, + [405459] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, + ACTIONS(15562), 1, + anon_sym_DOT2, + ACTIONS(15566), 1, + aux_sym__immediate_decimal_token3, ACTIONS(16422), 1, - anon_sym_SEMI, + aux_sym__immediate_decimal_token1, STATE(10149), 1, sym_comment, - [405446] = 4, - ACTIONS(105), 1, + [405475] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4907), 1, - anon_sym_SEMI, STATE(10150), 1, sym_comment, - ACTIONS(5340), 2, - ts_builtin_sym_end, - anon_sym_LF, - [405460] = 5, + ACTIONS(16424), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [405487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16424), 1, - anon_sym_DOT2, ACTIONS(16426), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16428), 1, - aux_sym__immediate_decimal_token3, - STATE(10151), 1, - sym_comment, - [405476] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(15788), 1, - sym_hex_digit, - ACTIONS(16430), 1, - anon_sym_RBRACK, - STATE(10140), 1, - aux_sym_val_binary_repeat1, - STATE(10152), 1, + anon_sym_DOT2, + ACTIONS(16428), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16430), 1, + aux_sym__immediate_decimal_token3, + STATE(10151), 1, sym_comment, - [405492] = 5, + [405503] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(1054), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(1056), 1, sym__entry_separator, ACTIONS(16432), 1, anon_sym_SEMI, - STATE(10153), 1, + STATE(10152), 1, sym_comment, - [405508] = 5, - ACTIONS(105), 1, + [405519] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_RPAREN, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3891), 1, + anon_sym_DOLLAR, ACTIONS(16434), 1, - anon_sym_SEMI, - ACTIONS(16436), 1, - anon_sym_LF, - STATE(10154), 1, + sym_long_flag_identifier, + STATE(10153), 1, sym_comment, - [405524] = 5, + [405535] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(7801), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(7821), 1, sym__entry_separator, - ACTIONS(16438), 1, - anon_sym_SEMI, - STATE(10155), 1, + ACTIONS(7825), 1, + aux_sym__unquoted_in_list_token3, + STATE(10154), 1, sym_comment, - [405540] = 5, - ACTIONS(3), 1, + [405551] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15493), 1, + ACTIONS(2998), 1, + aux_sym_unquoted_token3, + ACTIONS(15852), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(16436), 1, anon_sym_DOT2, - ACTIONS(15495), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15497), 1, - aux_sym__immediate_decimal_token3, - STATE(10156), 1, + STATE(10155), 1, sym_comment, - [405556] = 5, - ACTIONS(105), 1, + [405567] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16438), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16440), 1, - anon_sym_SEMI, - STATE(10157), 1, + STATE(10156), 1, sym_comment, - [405572] = 5, + STATE(10162), 1, + aux_sym_val_binary_repeat1, + [405583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15144), 1, + ACTIONS(16440), 1, anon_sym_DOT2, - ACTIONS(15146), 1, + ACTIONS(16442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(15148), 1, + ACTIONS(16444), 1, aux_sym__immediate_decimal_token3, + STATE(10157), 1, + sym_comment, + [405599] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16446), 1, + anon_sym_RBRACK, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10158), 1, sym_comment, - [405588] = 5, - ACTIONS(105), 1, + [405615] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1102), 1, + ACTIONS(15786), 1, + sym_hex_digit, + ACTIONS(16448), 1, anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16442), 1, - anon_sym_SEMI, + STATE(10029), 1, + aux_sym_val_binary_repeat1, STATE(10159), 1, sym_comment, - [405604] = 5, + [405631] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(15375), 1, + anon_sym_SEMI, + STATE(10160), 1, + sym_comment, + ACTIONS(15377), 2, + ts_builtin_sym_end, + anon_sym_LF, + [405645] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16330), 1, + ACTIONS(15858), 1, anon_sym_DOT2, - ACTIONS(16334), 1, + ACTIONS(15862), 1, aux_sym__immediate_decimal_token3, - ACTIONS(16444), 1, + ACTIONS(16450), 1, aux_sym__immediate_decimal_token1, - STATE(10160), 1, + STATE(10161), 1, sym_comment, - [405620] = 5, + [405661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15788), 1, + ACTIONS(15786), 1, sym_hex_digit, - ACTIONS(16446), 1, + ACTIONS(16452), 1, anon_sym_RBRACK, - STATE(10102), 1, + STATE(10029), 1, aux_sym_val_binary_repeat1, - STATE(10161), 1, + STATE(10162), 1, sym_comment, - [405636] = 5, + [405677] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16448), 1, - anon_sym_SEMI, - STATE(10162), 1, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, + STATE(10163), 1, sym_comment, - [405652] = 4, + ACTIONS(827), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [405691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16450), 1, + ACTIONS(15886), 1, + anon_sym_COLON, + ACTIONS(16454), 1, anon_sym_EQ, - STATE(10163), 1, - sym_comment, - ACTIONS(4011), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [405666] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16452), 1, - anon_sym_SEMI, STATE(10164), 1, sym_comment, - [405682] = 5, + STATE(10882), 1, + sym_param_type, + [405707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15570), 1, - anon_sym_DOT2, - ACTIONS(15574), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(15576), 1, - aux_sym__immediate_decimal_token3, STATE(10165), 1, sym_comment, - [405698] = 5, + ACTIONS(10624), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [405719] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, - sym__entry_separator, - ACTIONS(16454), 1, - anon_sym_SEMI, + ACTIONS(8011), 1, + anon_sym_PIPE, + ACTIONS(15602), 1, + anon_sym_LF, + STATE(4311), 1, + aux_sym_pipe_element_repeat1, STATE(10166), 1, sym_comment, - [405714] = 4, + [405735] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_block, STATE(10167), 1, sym_comment, - [405727] = 4, - ACTIONS(3), 1, + ACTIONS(16383), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [405746] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16456), 1, - anon_sym_DOT2, - ACTIONS(16458), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(10803), 1, + anon_sym_RBRACK, + ACTIONS(10805), 1, + sym__entry_separator, STATE(10168), 1, sym_comment, - [405740] = 4, + [405759] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16460), 1, - anon_sym_DOT2, - ACTIONS(16462), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1988), 1, + sym_block, STATE(10169), 1, sym_comment, - [405753] = 4, + [405772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3917), 1, - anon_sym_in, - ACTIONS(16464), 1, - anon_sym_DOT2, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1989), 1, + sym_block, STATE(10170), 1, sym_comment, - [405766] = 4, + [405785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16466), 1, - anon_sym_DOT2, - ACTIONS(16468), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(16456), 1, + anon_sym_make, STATE(10171), 1, sym_comment, - [405779] = 4, + [405798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2236), 1, + STATE(1990), 1, sym_block, STATE(10172), 1, sym_comment, - [405792] = 4, + [405811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3923), 1, + ACTIONS(3887), 1, anon_sym_in, - ACTIONS(16470), 1, - anon_sym_DOT2, + ACTIONS(16458), 1, + sym_long_flag_identifier, STATE(10173), 1, sym_comment, - [405805] = 4, - ACTIONS(105), 1, + [405824] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16474), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2253), 1, + sym_block, STATE(10174), 1, sym_comment, - [405818] = 3, - ACTIONS(3), 1, + [405837] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2957), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16170), 1, + aux_sym__immediate_decimal_token2, STATE(10175), 1, sym_comment, - ACTIONS(16476), 2, - anon_sym_RBRACK, - sym_hex_digit, - [405829] = 4, - ACTIONS(3), 1, + [405850] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2212), 1, - sym_block, + ACTIONS(16460), 1, + anon_sym_RBRACE, + ACTIONS(16462), 1, + sym__entry_separator, STATE(10176), 1, sym_comment, - [405842] = 4, - ACTIONS(105), 1, + [405863] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16478), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2278), 1, + sym_block, STATE(10177), 1, sym_comment, - [405855] = 4, - ACTIONS(105), 1, + [405876] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16482), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13142), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym_val_record, STATE(10178), 1, sym_comment, - [405868] = 4, + [405889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(16464), 1, anon_sym_LBRACE, - STATE(2222), 1, + STATE(8692), 1, sym_block, STATE(10179), 1, sym_comment, - [405881] = 3, - ACTIONS(3), 1, + [405902] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(829), 1, + anon_sym_LBRACE, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, STATE(10180), 1, sym_comment, - ACTIONS(5072), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [405892] = 3, + [405915] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16466), 1, + anon_sym_DOT2, + ACTIONS(16468), 1, + aux_sym__immediate_decimal_token1, STATE(10181), 1, sym_comment, - ACTIONS(5068), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [405903] = 4, + [405928] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16484), 1, - anon_sym_RBRACK, - ACTIONS(16486), 1, + ACTIONS(6628), 1, + anon_sym_RBRACE, + ACTIONS(6630), 1, sym__entry_separator, STATE(10182), 1, sym_comment, - [405916] = 4, + [405941] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(16470), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16472), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10183), 1, + sym_comment, + [405954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(2306), 1, + STATE(2295), 1, sym_block, - STATE(10183), 1, + STATE(10184), 1, sym_comment, - [405929] = 4, + [405967] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7152), 1, - anon_sym_RBRACE, - ACTIONS(7154), 1, + ACTIONS(16474), 1, + anon_sym_RBRACK, + ACTIONS(16476), 1, sym__entry_separator, - STATE(10184), 1, - sym_comment, - [405942] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_block, STATE(10185), 1, sym_comment, - [405955] = 4, + [405980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_block, + ACTIONS(894), 1, + aux_sym_unquoted_token6, + ACTIONS(896), 1, + anon_sym_DOT2, STATE(10186), 1, sym_comment, - [405968] = 4, - ACTIONS(3), 1, + [405993] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16488), 1, - anon_sym_DOT2, - ACTIONS(16490), 1, + ACTIONS(16478), 1, aux_sym__immediate_decimal_token1, + ACTIONS(16480), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10187), 1, sym_comment, - [405981] = 4, + [406006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16492), 1, - anon_sym_DOT2, - ACTIONS(16494), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_block, STATE(10188), 1, sym_comment, - [405994] = 4, + [406019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16496), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(8955), 1, + STATE(1992), 1, sym_block, STATE(10189), 1, sym_comment, - [406007] = 4, + [406032] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16498), 1, - anon_sym_DOT2, - ACTIONS(16500), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2256), 1, + sym_block, STATE(10190), 1, sym_comment, - [406020] = 4, - ACTIONS(105), 1, + [406045] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_in, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, + ACTIONS(13144), 1, + anon_sym_LBRACE, + STATE(2260), 1, + sym_val_record, STATE(10191), 1, sym_comment, - [406033] = 4, + [406058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16502), 1, - anon_sym_DOT2, - ACTIONS(16504), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2279), 1, + sym_block, STATE(10192), 1, sym_comment, - [406046] = 4, - ACTIONS(3), 1, + [406071] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2213), 1, - sym_block, + ACTIONS(3804), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(16482), 1, + aux_sym__immediate_decimal_token2, STATE(10193), 1, sym_comment, - [406059] = 4, - ACTIONS(3), 1, + [406084] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_block, + ACTIONS(16484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16486), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10194), 1, sym_comment, - [406072] = 4, + [406097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_block, + ACTIONS(807), 1, + aux_sym_unquoted_token6, + ACTIONS(809), 1, + anon_sym_DOT2, STATE(10195), 1, sym_comment, - [406085] = 4, + [406110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2342), 1, - sym_block, STATE(10196), 1, sym_comment, - [406098] = 4, - ACTIONS(105), 1, + ACTIONS(16488), 2, + anon_sym_RBRACK, + sym_hex_digit, + [406121] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16508), 1, - aux_sym__list_item_starts_with_sign_token1, STATE(10197), 1, sym_comment, - [406111] = 4, - ACTIONS(3), 1, + ACTIONS(4855), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [406132] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(14503), 1, - anon_sym_if, + ACTIONS(16490), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16492), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10198), 1, sym_comment, - STATE(10987), 1, - sym_match_guard, - [406124] = 3, + [406145] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2257), 1, + sym_block, STATE(10199), 1, sym_comment, - ACTIONS(16157), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [406135] = 4, - ACTIONS(3), 1, + [406158] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16510), 1, - anon_sym_COMMA, - ACTIONS(16512), 1, - anon_sym_RBRACE, + ACTIONS(2998), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(15948), 1, + aux_sym__immediate_decimal_token2, STATE(10200), 1, sym_comment, - [406148] = 4, + [406171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(2366), 1, + STATE(2329), 1, sym_block, STATE(10201), 1, sym_comment, - [406161] = 4, - ACTIONS(3), 1, + [406184] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16514), 1, - anon_sym_DOT2, - ACTIONS(16516), 1, - aux_sym_unquoted_token6, + ACTIONS(10795), 1, + sym__entry_separator, + ACTIONS(16494), 1, + anon_sym_RBRACK, STATE(10202), 1, sym_comment, - [406174] = 4, + [406197] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16518), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16520), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(2957), 1, + aux_sym_unquoted_token3, + ACTIONS(16022), 1, + aux_sym__immediate_decimal_token2, STATE(10203), 1, sym_comment, - [406187] = 4, - ACTIONS(105), 1, + [406210] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16522), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16524), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(3891), 1, + anon_sym_LBRACE, + ACTIONS(16496), 1, + sym_long_flag_identifier, STATE(10204), 1, sym_comment, - [406200] = 4, - ACTIONS(105), 1, + [406223] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16526), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1958), 1, + sym_block, STATE(10205), 1, sym_comment, - [406213] = 4, - ACTIONS(105), 1, + [406236] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16528), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16530), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(15802), 1, + anon_sym_LBRACE, + STATE(8968), 1, + sym_block, STATE(10206), 1, sym_comment, - [406226] = 4, + [406249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, - ACTIONS(16532), 1, - anon_sym_make, STATE(10207), 1, sym_comment, - [406239] = 4, - ACTIONS(105), 1, + ACTIONS(4863), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [406260] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16376), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3931), 1, + anon_sym_in, + ACTIONS(10643), 1, + anon_sym_DOT2, STATE(10208), 1, sym_comment, - [406252] = 4, + [406273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16534), 1, - anon_sym_DASH, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1959), 1, + sym_block, STATE(10209), 1, sym_comment, - STATE(10968), 1, - sym_param_short_flag, - [406265] = 4, + [406286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3911), 1, - anon_sym_in, - ACTIONS(16536), 1, - anon_sym_DOT2, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2302), 1, + sym_block, STATE(10210), 1, sym_comment, - [406278] = 4, - ACTIONS(105), 1, + [406299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16538), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16540), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(6032), 1, + anon_sym_COLON, + ACTIONS(16456), 1, + anon_sym_make, STATE(10211), 1, sym_comment, - [406291] = 4, + [406312] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10387), 1, - sym__entry_separator, - ACTIONS(16070), 1, - anon_sym_RBRACK, + ACTIONS(16498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16500), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10212), 1, sym_comment, - [406304] = 4, - ACTIONS(3), 1, + [406325] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4011), 1, - anon_sym_LBRACE, - ACTIONS(16542), 1, - anon_sym_EQ, + ACTIONS(827), 1, + anon_sym_in, + ACTIONS(9395), 1, + aux_sym_unquoted_token3, STATE(10213), 1, sym_comment, - [406317] = 4, + [406338] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2011), 1, - sym_block, + ACTIONS(16502), 1, + anon_sym_DOT2, + ACTIONS(16504), 1, + aux_sym__immediate_decimal_token1, STATE(10214), 1, sym_comment, - [406330] = 4, - ACTIONS(105), 1, + [406351] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16544), 1, - anon_sym_RBRACK, - ACTIONS(16546), 1, - sym__entry_separator, + ACTIONS(16506), 1, + anon_sym_DASH, STATE(10215), 1, sym_comment, - [406343] = 4, - ACTIONS(105), 1, + STATE(10756), 1, + sym_param_short_flag, + [406364] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16548), 1, + ACTIONS(16508), 1, + anon_sym_DOT2, + ACTIONS(16510), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16550), 1, - aux_sym__list_item_starts_with_sign_token1, STATE(10216), 1, sym_comment, - [406356] = 4, + [406377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(2121), 1, + STATE(2220), 1, sym_block, STATE(10217), 1, sym_comment, - [406369] = 4, + [406390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16552), 1, + ACTIONS(16512), 1, anon_sym_DOT2, - ACTIONS(16554), 1, + ACTIONS(16514), 1, aux_sym__immediate_decimal_token1, STATE(10218), 1, sym_comment, - [406382] = 4, + [406403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16556), 1, + ACTIONS(16516), 1, anon_sym_DOT2, - ACTIONS(16558), 1, - aux_sym_unquoted_token6, + ACTIONS(16518), 1, + aux_sym__immediate_decimal_token1, STATE(10219), 1, sym_comment, - [406395] = 4, + [406416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15996), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(8334), 1, + STATE(2280), 1, sym_block, STATE(10220), 1, sym_comment, - [406408] = 4, - ACTIONS(3), 1, + [406429] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_block, + ACTIONS(16470), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16520), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10221), 1, sym_comment, - [406421] = 4, + [406442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15996), 1, - anon_sym_LBRACE, - STATE(8403), 1, - sym_block, + ACTIONS(16522), 1, + anon_sym_DOT2, + ACTIONS(16524), 1, + aux_sym__immediate_decimal_token1, STATE(10222), 1, sym_comment, - [406434] = 4, + [406455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, - ACTIONS(16532), 1, - anon_sym_make, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2307), 1, + sym_block, STATE(10223), 1, sym_comment, - [406447] = 4, + [406468] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(16340), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(16484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16526), 1, + aux_sym__unquoted_in_list_token5, STATE(10224), 1, sym_comment, - [406460] = 4, + [406481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16560), 1, - anon_sym_DOT2, - ACTIONS(16562), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16464), 1, + anon_sym_LBRACE, + STATE(8948), 1, + sym_block, STATE(10225), 1, sym_comment, - [406473] = 4, + [406494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - anon_sym_in, - ACTIONS(16564), 1, - anon_sym_DOT2, + ACTIONS(16528), 1, + anon_sym_COMMA, + ACTIONS(16530), 1, + anon_sym_RBRACE, STATE(10226), 1, sym_comment, - [406486] = 4, + [406507] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16566), 1, + ACTIONS(16532), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16568), 1, + ACTIONS(16534), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10227), 1, sym_comment, - [406499] = 4, + [406520] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13024), 1, - anon_sym_LBRACE, - STATE(2347), 1, - sym_val_record, + ACTIONS(16536), 1, + anon_sym_DOT2, + ACTIONS(16538), 1, + aux_sym__immediate_decimal_token1, STATE(10228), 1, sym_comment, - [406512] = 4, + [406533] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10805), 1, + ACTIONS(10614), 1, sym__entry_separator, - ACTIONS(16570), 1, + ACTIONS(16018), 1, anon_sym_RBRACK, STATE(10229), 1, sym_comment, - [406525] = 4, + [406546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16572), 1, + ACTIONS(16540), 1, anon_sym_DOT2, - ACTIONS(16574), 1, + ACTIONS(16542), 1, aux_sym__immediate_decimal_token1, STATE(10230), 1, sym_comment, - [406538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16576), 1, - anon_sym_DOT2, - ACTIONS(16578), 1, - aux_sym__immediate_decimal_token1, - STATE(10231), 1, - sym_comment, - [406551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(10697), 1, - anon_sym_DOT2, - STATE(10232), 1, - sym_comment, - [406564] = 4, + [406559] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(3804), 1, aux_sym_unquoted_token3, - ACTIONS(15892), 1, + ACTIONS(16544), 1, aux_sym__immediate_decimal_token2, - STATE(10233), 1, + STATE(10231), 1, sym_comment, - [406577] = 4, + [406572] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16580), 1, - anon_sym_RBRACK, - ACTIONS(16582), 1, - sym__entry_separator, - STATE(10234), 1, + ACTIONS(16546), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16548), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10232), 1, sym_comment, - [406590] = 4, + [406585] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(10703), 1, + ACTIONS(16550), 1, anon_sym_RBRACK, - ACTIONS(10705), 1, + ACTIONS(16552), 1, sym__entry_separator, - STATE(10235), 1, + STATE(10233), 1, sym_comment, - [406603] = 4, + [406598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2293), 1, - sym_block, - STATE(10236), 1, + ACTIONS(14053), 1, + anon_sym_if, + STATE(10234), 1, sym_comment, - [406616] = 4, + STATE(10786), 1, + sym_match_guard, + [406611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4011), 1, - anon_sym_in, - ACTIONS(16584), 1, - anon_sym_EQ, - STATE(10237), 1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(2083), 1, + sym_block, + STATE(10235), 1, sym_comment, - [406629] = 4, + [406624] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16586), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16588), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10238), 1, + ACTIONS(2998), 1, + aux_sym_unquoted_token3, + ACTIONS(15852), 1, + aux_sym__immediate_decimal_token2, + STATE(10236), 1, sym_comment, - [406642] = 4, + [406637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15996), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(9114), 1, + STATE(1972), 1, sym_block, - STATE(10239), 1, + STATE(10237), 1, sym_comment, - [406655] = 4, + [406650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15996), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(9010), 1, + STATE(1963), 1, sym_block, - STATE(10240), 1, - sym_comment, - [406668] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13197), 1, - anon_sym_LBRACE, - STATE(2115), 1, - sym_val_record, - STATE(10241), 1, + STATE(10238), 1, sym_comment, - [406681] = 4, + [406663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16590), 1, + ACTIONS(16554), 1, anon_sym_DOT2, - STATE(10242), 1, + ACTIONS(16556), 1, + aux_sym__immediate_decimal_token1, + STATE(10239), 1, sym_comment, - [406694] = 4, + [406676] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16592), 1, + ACTIONS(16558), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16594), 1, + ACTIONS(16560), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10243), 1, + STATE(10240), 1, sym_comment, - [406707] = 4, - ACTIONS(105), 1, + [406689] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16596), 1, + ACTIONS(16562), 1, + anon_sym_DOT2, + ACTIONS(16564), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16598), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10244), 1, + STATE(10241), 1, sym_comment, - [406720] = 4, + [406702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(15802), 1, anon_sym_LBRACE, - STATE(2041), 1, + STATE(8508), 1, sym_block, - STATE(10245), 1, + STATE(10242), 1, sym_comment, - [406733] = 4, + [406715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2040), 1, + STATE(1964), 1, sym_block, - STATE(10246), 1, + STATE(10243), 1, sym_comment, - [406746] = 3, + [406728] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(10247), 1, + STATE(10244), 1, sym_comment, - ACTIONS(16600), 2, + ACTIONS(16566), 2, anon_sym_LBRACK, anon_sym_RBRACK, - [406757] = 4, + [406739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3943), 1, - anon_sym_in, - ACTIONS(16602), 1, + ACTIONS(16568), 1, anon_sym_DOT2, - STATE(10248), 1, + ACTIONS(16570), 1, + aux_sym_unquoted_token6, + STATE(10245), 1, sym_comment, - [406770] = 4, + [406752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3937), 1, - anon_sym_in, - ACTIONS(16604), 1, + ACTIONS(16542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16572), 1, + anon_sym_DOT2, + STATE(10246), 1, + sym_comment, + [406765] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACE, + ACTIONS(16574), 1, + anon_sym_EQ, + STATE(10247), 1, + sym_comment, + [406778] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16576), 1, anon_sym_DOT2, + ACTIONS(16578), 1, + aux_sym__immediate_decimal_token1, + STATE(10248), 1, + sym_comment, + [406791] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1978), 1, + sym_block, STATE(10249), 1, sym_comment, - [406783] = 4, + [406804] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16472), 1, + ACTIONS(16580), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16606), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(16582), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10250), 1, sym_comment, - [406796] = 4, + [406817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16608), 1, - anon_sym_DOT2, - ACTIONS(16610), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13003), 1, + anon_sym_LBRACE, + STATE(2252), 1, + sym_block, STATE(10251), 1, sym_comment, - [406809] = 4, - ACTIONS(105), 1, + [406830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16612), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(15802), 1, + anon_sym_LBRACE, + STATE(8703), 1, + sym_block, STATE(10252), 1, sym_comment, - [406822] = 4, + [406843] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3834), 1, - aux_sym_unquoted_token3, - ACTIONS(16614), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(16584), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16586), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10253), 1, sym_comment, - [406835] = 4, - ACTIONS(105), 1, + [406856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_unquoted_token3, - ACTIONS(16177), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3946), 1, + anon_sym_in, + ACTIONS(16588), 1, + anon_sym_EQ, STATE(10254), 1, sym_comment, - [406848] = 4, + [406869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2169), 1, - sym_block, + ACTIONS(16590), 1, + anon_sym_DOT2, + ACTIONS(16592), 1, + aux_sym__immediate_decimal_token1, STATE(10255), 1, sym_comment, - [406861] = 4, + [406882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(1976), 1, + STATE(2129), 1, sym_block, STATE(10256), 1, sym_comment, - [406874] = 4, + [406895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(1975), 1, + STATE(2167), 1, sym_block, STATE(10257), 1, sym_comment, - [406887] = 4, + [406908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(2168), 1, + STATE(1979), 1, sym_block, STATE(10258), 1, sym_comment, - [406900] = 3, + [406921] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(2139), 1, + sym_block, STATE(10259), 1, sym_comment, - ACTIONS(5088), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [406911] = 4, + [406934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13001), 1, anon_sym_LBRACE, - STATE(1966), 1, + STATE(1965), 1, sym_block, STATE(10260), 1, sym_comment, - [406924] = 3, + [406947] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(16594), 1, + anon_sym_DOT2, + ACTIONS(16596), 1, + aux_sym__immediate_decimal_token1, STATE(10261), 1, sym_comment, - ACTIONS(5092), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [406935] = 4, + [406960] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16616), 1, + ACTIONS(16598), 1, aux_sym__immediate_decimal_token1, - ACTIONS(16618), 1, + ACTIONS(16600), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10262), 1, sym_comment, - [406948] = 4, + [406973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1964), 1, - sym_block, + ACTIONS(855), 1, + aux_sym_unquoted_token6, + ACTIONS(857), 1, + anon_sym_DOT2, STATE(10263), 1, sym_comment, - [406961] = 4, - ACTIONS(3), 1, + [406986] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16620), 1, - anon_sym_DOT2, - ACTIONS(16622), 1, + ACTIONS(16598), 1, aux_sym__immediate_decimal_token1, + ACTIONS(16602), 1, + aux_sym__unquoted_in_list_token5, STATE(10264), 1, sym_comment, - [406974] = 4, + [406999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16496), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(9098), 1, + STATE(2283), 1, sym_block, STATE(10265), 1, sym_comment, - [406987] = 4, + [407012] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(1963), 1, + STATE(2284), 1, sym_block, STATE(10266), 1, sym_comment, - [407000] = 4, + [407025] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(807), 1, - aux_sym_unquoted_token6, - ACTIONS(809), 1, - anon_sym_DOT2, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1981), 1, + sym_block, STATE(10267), 1, sym_comment, - [407013] = 4, - ACTIONS(105), 1, + [407038] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16530), 1, - aux_sym__list_item_starts_with_sign_token1, - ACTIONS(16596), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym_block, STATE(10268), 1, sym_comment, - [407026] = 4, - ACTIONS(105), 1, + [407051] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(825), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - ACTIONS(9373), 1, - aux_sym_unquoted_token3, + STATE(2264), 1, + sym_block, STATE(10269), 1, sym_comment, - [407039] = 4, - ACTIONS(105), 1, + [407064] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16624), 1, - anon_sym_RBRACE, - ACTIONS(16626), 1, - sym__entry_separator, + ACTIONS(13001), 1, + anon_sym_LBRACE, + STATE(1984), 1, + sym_block, STATE(10270), 1, sym_comment, - [407052] = 4, + [407077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(815), 1, - aux_sym_unquoted_token6, - ACTIONS(817), 1, + ACTIONS(4038), 1, + anon_sym_in, + ACTIONS(16604), 1, anon_sym_DOT2, STATE(10271), 1, sym_comment, - [407065] = 4, + [407090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2309), 1, - sym_block, + ACTIONS(3842), 1, + anon_sym_in, + ACTIONS(16606), 1, + anon_sym_DOT2, STATE(10272), 1, sym_comment, - [407078] = 4, + [407103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1981), 1, - sym_block, + ACTIONS(3905), 1, + anon_sym_in, + ACTIONS(16608), 1, + anon_sym_DOT2, STATE(10273), 1, sym_comment, - [407091] = 4, - ACTIONS(105), 1, + [407116] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(16630), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(3911), 1, + anon_sym_in, + ACTIONS(16610), 1, + anon_sym_DOT2, STATE(10274), 1, sym_comment, - [407104] = 4, - ACTIONS(3), 1, + [407129] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1982), 1, - sym_block, + ACTIONS(16612), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16614), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10275), 1, sym_comment, - [407117] = 4, + [407142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(1987), 1, + STATE(2287), 1, sym_block, STATE(10276), 1, sym_comment, - [407130] = 4, - ACTIONS(3), 1, + [407155] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(1988), 1, - sym_block, + ACTIONS(16616), 1, + anon_sym_RBRACK, + ACTIONS(16618), 1, + sym__entry_separator, STATE(10277), 1, sym_comment, - [407143] = 4, + [407168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - STATE(1990), 1, + STATE(2312), 1, sym_block, STATE(10278), 1, sym_comment, - [407156] = 4, - ACTIONS(3), 1, + [407181] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2031), 1, - sym_block, + ACTIONS(16472), 1, + aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16620), 1, + aux_sym__immediate_decimal_token1, STATE(10279), 1, sym_comment, - [407169] = 4, + [407194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2032), 1, - sym_block, + ACTIONS(16622), 1, + anon_sym_DOT2, + ACTIONS(16624), 1, + aux_sym_unquoted_token6, STATE(10280), 1, sym_comment, - [407182] = 4, + [407207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(889), 1, - aux_sym_unquoted_token6, - ACTIONS(891), 1, + ACTIONS(3979), 1, + anon_sym_in, + ACTIONS(16626), 1, anon_sym_DOT2, STATE(10281), 1, sym_comment, - [407195] = 4, + [407220] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_block, + ACTIONS(4028), 1, + anon_sym_in, + ACTIONS(16628), 1, + anon_sym_DOT2, STATE(10282), 1, sym_comment, - [407208] = 4, + [407233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2207), 1, - sym_block, + ACTIONS(815), 1, + aux_sym_unquoted_token6, + ACTIONS(817), 1, + anon_sym_DOT2, STATE(10283), 1, sym_comment, - [407221] = 4, - ACTIONS(3), 1, + [407246] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_LBRACE, - STATE(2208), 1, - sym_block, + ACTIONS(16484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16630), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10284), 1, sym_comment, - [407234] = 4, - ACTIONS(3), 1, + [407259] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2033), 1, - sym_block, + ACTIONS(16632), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(16634), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10285), 1, sym_comment, - [407247] = 4, + [407272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3947), 1, - anon_sym_in, - ACTIONS(16632), 1, - sym_long_flag_identifier, + ACTIONS(15802), 1, + anon_sym_LBRACE, + STATE(8586), 1, + sym_block, STATE(10286), 1, sym_comment, - [407260] = 4, + [407285] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(844), 1, - aux_sym_unquoted_token6, - ACTIONS(846), 1, - anon_sym_DOT2, STATE(10287), 1, sym_comment, - [407273] = 4, + ACTIONS(4867), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [407296] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_LBRACE, - STATE(2059), 1, - sym_block, STATE(10288), 1, sym_comment, - [407286] = 4, + ACTIONS(4851), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [407307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, - ACTIONS(16634), 1, - sym_long_flag_identifier, + STATE(2328), 1, + sym_block, STATE(10289), 1, sym_comment, - [407299] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8668), 1, - aux_sym__immediate_decimal_token1, - STATE(10290), 1, - sym_comment, - [407309] = 3, + [407320] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16636), 1, - aux_sym__immediate_decimal_token1, - STATE(10291), 1, + anon_sym_DOT2, + STATE(10290), 1, sym_comment, - [407319] = 3, + [407330] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16638), 1, aux_sym__immediate_decimal_token1, - STATE(10292), 1, + STATE(10291), 1, sym_comment, - [407329] = 3, + [407340] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16640), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10293), 1, + STATE(10292), 1, sym_comment, - [407339] = 3, + [407350] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16642), 1, aux_sym__immediate_decimal_token1, - STATE(10294), 1, + STATE(10293), 1, sym_comment, - [407349] = 3, + [407360] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16644), 1, aux_sym_unquoted_token3, + STATE(10294), 1, + sym_comment, + [407370] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7950), 1, + aux_sym__unquoted_in_list_token5, STATE(10295), 1, sym_comment, - [407359] = 3, - ACTIONS(3), 1, + [407380] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16646), 1, - anon_sym_DOT2, + aux_sym__list_item_starts_with_sign_token1, STATE(10296), 1, sym_comment, - [407369] = 3, + [407390] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16648), 1, - anon_sym_RBRACK, + aux_sym__immediate_decimal_token1, STATE(10297), 1, sym_comment, - [407379] = 3, + [407400] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16650), 1, - anon_sym_RPAREN, + anon_sym_DOT2, STATE(10298), 1, sym_comment, - [407389] = 3, + [407410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13279), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16652), 1, + anon_sym_RBRACE, STATE(10299), 1, sym_comment, - [407399] = 3, + [407420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16652), 1, - anon_sym_RBRACE, + ACTIONS(16654), 1, + anon_sym_DOT2, STATE(10300), 1, sym_comment, - [407409] = 3, + [407430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16654), 1, - anon_sym_RBRACE, + ACTIONS(16656), 1, + anon_sym_DOT2, STATE(10301), 1, sym_comment, - [407419] = 3, + [407440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16656), 1, - anon_sym_RBRACE, + ACTIONS(16658), 1, + anon_sym_DOT2, STATE(10302), 1, sym_comment, - [407429] = 3, + [407450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16658), 1, + ACTIONS(16660), 1, anon_sym_RBRACE, STATE(10303), 1, sym_comment, - [407439] = 3, + [407460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16660), 1, - sym_short_flag_identifier, + ACTIONS(16662), 1, + anon_sym_RBRACK, STATE(10304), 1, sym_comment, - [407449] = 3, - ACTIONS(105), 1, + [407470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(833), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16664), 1, + anon_sym_RPAREN, STATE(10305), 1, sym_comment, - [407459] = 3, + [407480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13292), 1, + ACTIONS(9001), 1, aux_sym__immediate_decimal_token1, STATE(10306), 1, sym_comment, - [407469] = 3, + [407490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16662), 1, + ACTIONS(16666), 1, anon_sym_RBRACE, STATE(10307), 1, sym_comment, - [407479] = 3, + [407500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16664), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16668), 1, + anon_sym_RBRACE, STATE(10308), 1, sym_comment, - [407489] = 3, + [407510] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16666), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16670), 1, + aux_sym_unquoted_token3, STATE(10309), 1, sym_comment, - [407499] = 3, + [407520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16668), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16672), 1, + anon_sym_DOT2, STATE(10310), 1, sym_comment, - [407509] = 3, - ACTIONS(105), 1, + [407530] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16670), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16674), 1, + anon_sym_DOT2, STATE(10311), 1, sym_comment, - [407519] = 3, + [407540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16672), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16676), 1, + anon_sym_RBRACE, STATE(10312), 1, sym_comment, - [407529] = 3, + [407550] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16674), 1, + ACTIONS(16678), 1, aux_sym_unquoted_token3, STATE(10313), 1, sym_comment, - [407539] = 3, - ACTIONS(3), 1, + [407560] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13157), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1556), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10314), 1, sym_comment, - [407549] = 3, + [407570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16676), 1, + ACTIONS(16680), 1, anon_sym_RPAREN, STATE(10315), 1, sym_comment, - [407559] = 3, + [407580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16678), 1, - anon_sym_RBRACK, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token1, STATE(10316), 1, sym_comment, - [407569] = 3, + [407590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14880), 1, - anon_sym_LPAREN2, + ACTIONS(16682), 1, + anon_sym_RBRACE, STATE(10317), 1, sym_comment, - [407579] = 3, + [407600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16680), 1, - anon_sym_RBRACK, + ACTIONS(16684), 1, + aux_sym__immediate_decimal_token1, STATE(10318), 1, sym_comment, - [407589] = 3, + [407610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16682), 1, - anon_sym_RPAREN, + ACTIONS(16686), 1, + anon_sym_EQ, STATE(10319), 1, sym_comment, - [407599] = 3, + [407620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16688), 1, + anon_sym_RPAREN, STATE(10320), 1, sym_comment, - [407609] = 3, - ACTIONS(3), 1, + [407630] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16684), 1, - anon_sym_RBRACE, + ACTIONS(16690), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10321), 1, sym_comment, - [407619] = 3, + [407640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16686), 1, - anon_sym_RBRACE, + ACTIONS(8396), 1, + aux_sym__immediate_decimal_token1, STATE(10322), 1, sym_comment, - [407629] = 3, - ACTIONS(105), 1, + [407650] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1563), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16692), 1, + aux_sym__immediate_decimal_token1, STATE(10323), 1, sym_comment, - [407639] = 3, - ACTIONS(3), 1, + [407660] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9015), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16694), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10324), 1, sym_comment, - [407649] = 3, + [407670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16688), 1, - anon_sym_RBRACE, + ACTIONS(16696), 1, + aux_sym__immediate_decimal_token1, STATE(10325), 1, sym_comment, - [407659] = 3, - ACTIONS(3), 1, + [407680] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16690), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16698), 1, + aux_sym_unquoted_token3, STATE(10326), 1, sym_comment, - [407669] = 3, - ACTIONS(105), 1, + [407690] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16692), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16700), 1, + anon_sym_RBRACE, STATE(10327), 1, sym_comment, - [407679] = 3, + [407700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16694), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16702), 1, + anon_sym_RBRACE, STATE(10328), 1, sym_comment, - [407689] = 3, - ACTIONS(105), 1, + [407710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16696), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16704), 1, + anon_sym_DOT2, STATE(10329), 1, sym_comment, - [407699] = 3, + [407720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16698), 1, + ACTIONS(12081), 1, aux_sym__immediate_decimal_token1, STATE(10330), 1, sym_comment, - [407709] = 3, - ACTIONS(105), 1, + [407730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16700), 1, - aux_sym_unquoted_token3, + ACTIONS(16706), 1, + anon_sym_DOT2, STATE(10331), 1, sym_comment, - [407719] = 3, + [407740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16702), 1, - sym_short_flag_identifier, + ACTIONS(16708), 1, + anon_sym_EQ, STATE(10332), 1, sym_comment, - [407729] = 3, - ACTIONS(3), 1, + [407750] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16704), 1, - anon_sym_RBRACE, + ACTIONS(16710), 1, + aux_sym_unquoted_token3, STATE(10333), 1, sym_comment, - [407739] = 3, + [407760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16706), 1, + ACTIONS(8110), 1, aux_sym__immediate_decimal_token1, STATE(10334), 1, sym_comment, - [407749] = 3, + [407770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16708), 1, - anon_sym_RBRACE, + ACTIONS(16712), 1, + anon_sym_RBRACK, STATE(10335), 1, sym_comment, - [407759] = 3, + [407780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16710), 1, - anon_sym_RBRACK, + ACTIONS(16714), 1, + anon_sym_RPAREN, STATE(10336), 1, sym_comment, - [407769] = 3, + [407790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16712), 1, - anon_sym_RPAREN, + ACTIONS(8674), 1, + aux_sym__immediate_decimal_token1, STATE(10337), 1, sym_comment, - [407779] = 3, + [407800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16714), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16716), 1, + anon_sym_RBRACE, STATE(10338), 1, sym_comment, - [407789] = 3, + [407810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16716), 1, - anon_sym_RBRACE, + ACTIONS(16718), 1, + anon_sym_RPAREN, STATE(10339), 1, sym_comment, - [407799] = 3, + [407820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16718), 1, + ACTIONS(9336), 1, aux_sym__immediate_decimal_token1, STATE(10340), 1, sym_comment, - [407809] = 3, - ACTIONS(105), 1, + [407830] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(899), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16720), 1, + anon_sym_DOT2, STATE(10341), 1, sym_comment, - [407819] = 3, + [407840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16720), 1, - anon_sym_DOT2, + ACTIONS(16722), 1, + anon_sym_RBRACE, STATE(10342), 1, sym_comment, - [407829] = 3, + [407850] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7352), 1, + ACTIONS(5730), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10343), 1, sym_comment, - [407839] = 3, - ACTIONS(105), 1, + [407860] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5668), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16724), 1, + anon_sym_DOT2, STATE(10344), 1, sym_comment, - [407849] = 3, + [407870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16722), 1, - anon_sym_RBRACK, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token1, STATE(10345), 1, sym_comment, - [407859] = 3, + [407880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8664), 1, + ACTIONS(16726), 1, aux_sym__immediate_decimal_token1, STATE(10346), 1, sym_comment, - [407869] = 3, + [407890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16724), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16728), 1, + anon_sym_DASH_GT, STATE(10347), 1, sym_comment, - [407879] = 3, - ACTIONS(3), 1, + [407900] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16726), 1, - anon_sym_RBRACE, + ACTIONS(16730), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10348), 1, sym_comment, - [407889] = 3, + [407910] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16728), 1, + ACTIONS(9054), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10349), 1, sym_comment, - [407899] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(16730), 1, - aux_sym__immediate_decimal_token1, - STATE(10350), 1, - sym_comment, - [407909] = 3, + [407920] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16732), 1, aux_sym__immediate_decimal_token1, - STATE(10351), 1, + STATE(10350), 1, sym_comment, - [407919] = 3, + [407930] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16734), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10352), 1, + STATE(10351), 1, sym_comment, - [407929] = 3, + [407940] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16736), 1, aux_sym__immediate_decimal_token1, - STATE(10353), 1, + STATE(10352), 1, sym_comment, - [407939] = 3, + [407950] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16738), 1, aux_sym_unquoted_token3, - STATE(10354), 1, + STATE(10353), 1, sym_comment, - [407949] = 3, + [407960] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16740), 1, - anon_sym_DOT2, - STATE(10355), 1, + anon_sym_LBRACE, + STATE(10354), 1, sym_comment, - [407959] = 3, + [407970] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16742), 1, - anon_sym_RPAREN, - STATE(10356), 1, + anon_sym_DOT2, + STATE(10355), 1, sym_comment, - [407969] = 3, + [407980] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16744), 1, - anon_sym_RBRACK, - STATE(10357), 1, + aux_sym__immediate_decimal_token1, + STATE(10356), 1, sym_comment, - [407979] = 3, + [407990] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16746), 1, anon_sym_RPAREN, - STATE(10358), 1, + STATE(10357), 1, sym_comment, - [407989] = 3, + [408000] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16748), 1, - anon_sym_LBRACE, - STATE(10359), 1, + sym_short_flag_identifier, + STATE(10358), 1, sym_comment, - [407999] = 3, + [408010] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16750), 1, - anon_sym_LBRACE, - STATE(10360), 1, + anon_sym_DOT2, + STATE(10359), 1, sym_comment, - [408009] = 3, + [408020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13161), 1, + ACTIONS(8553), 1, aux_sym__immediate_decimal_token1, - STATE(10361), 1, + STATE(10360), 1, sym_comment, - [408019] = 3, - ACTIONS(105), 1, + [408030] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16752), 1, - aux_sym_unquoted_token3, - STATE(10362), 1, + anon_sym_DOT2, + STATE(10361), 1, sym_comment, - [408029] = 3, + [408040] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16754), 1, anon_sym_RBRACK, - STATE(10363), 1, + STATE(10362), 1, sym_comment, - [408039] = 3, + [408050] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16756), 1, anon_sym_RPAREN, - STATE(10364), 1, + STATE(10363), 1, sym_comment, - [408049] = 3, + [408060] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16758), 1, aux_sym__immediate_decimal_token1, - STATE(10365), 1, + STATE(10364), 1, sym_comment, - [408059] = 3, + [408070] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16760), 1, anon_sym_RBRACE, - STATE(10366), 1, + STATE(10365), 1, sym_comment, - [408069] = 3, + [408080] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16762), 1, - aux_sym__immediate_decimal_token1, - STATE(10367), 1, + anon_sym_RBRACE, + STATE(10366), 1, sym_comment, - [408079] = 3, + [408090] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16764), 1, + ACTIONS(11521), 1, aux_sym__list_item_starts_with_sign_token1, + STATE(10367), 1, + sym_comment, + [408100] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(16764), 1, + anon_sym_DOT2, STATE(10368), 1, sym_comment, - [408089] = 3, + [408110] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16766), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACK, STATE(10369), 1, sym_comment, - [408099] = 3, + [408120] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16768), 1, + ACTIONS(5560), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10370), 1, sym_comment, - [408109] = 3, - ACTIONS(105), 1, + [408130] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5519), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16768), 1, + anon_sym_RPAREN, STATE(10371), 1, sym_comment, - [408119] = 3, + [408140] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16770), 1, aux_sym__immediate_decimal_token1, STATE(10372), 1, sym_comment, - [408129] = 3, + [408150] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16772), 1, aux_sym__immediate_decimal_token1, STATE(10373), 1, sym_comment, - [408139] = 3, - ACTIONS(3), 1, + [408160] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16774), 1, - anon_sym_RBRACE, + aux_sym__list_item_starts_with_sign_token1, STATE(10374), 1, sym_comment, - [408149] = 3, - ACTIONS(105), 1, + [408170] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16776), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(8429), 1, + anon_sym_PIPE, STATE(10375), 1, sym_comment, - [408159] = 3, - ACTIONS(3), 1, + [408180] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13223), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16776), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10376), 1, sym_comment, - [408169] = 3, + [408190] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16778), 1, - aux_sym__list_item_starts_with_sign_token1, + aux_sym_unquoted_token3, STATE(10377), 1, sym_comment, - [408179] = 3, - ACTIONS(105), 1, + [408200] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16780), 1, - aux_sym_unquoted_token3, + anon_sym_DOT2, STATE(10378), 1, sym_comment, - [408189] = 3, - ACTIONS(105), 1, + [408210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16782), 1, + aux_sym__immediate_decimal_token1, STATE(10379), 1, sym_comment, - [408199] = 3, - ACTIONS(3), 1, + [408220] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16782), 1, - anon_sym_RBRACE, + ACTIONS(16548), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10380), 1, sym_comment, - [408209] = 3, + [408230] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16784), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(10381), 1, sym_comment, - [408219] = 3, + [408240] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16786), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10382), 1, sym_comment, - [408229] = 3, + [408250] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16788), 1, anon_sym_RBRACE, STATE(10383), 1, sym_comment, - [408239] = 3, + [408260] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16790), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(10384), 1, sym_comment, - [408249] = 3, + [408270] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16792), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, STATE(10385), 1, sym_comment, - [408259] = 3, + [408280] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16794), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10386), 1, sym_comment, - [408269] = 3, + [408290] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16796), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10387), 1, sym_comment, - [408279] = 3, + [408300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16798), 1, anon_sym_RBRACE, STATE(10388), 1, sym_comment, - [408289] = 3, + [408310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13219), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16800), 1, + anon_sym_RBRACK, STATE(10389), 1, sym_comment, - [408299] = 3, + [408320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16800), 1, - anon_sym_EQ, + ACTIONS(16802), 1, + anon_sym_RPAREN, STATE(10390), 1, sym_comment, - [408309] = 3, + [408330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16802), 1, - anon_sym_RPAREN, + ACTIONS(16804), 1, + aux_sym__immediate_decimal_token1, STATE(10391), 1, sym_comment, - [408319] = 3, + [408340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16804), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16806), 1, + anon_sym_DOT2, STATE(10392), 1, sym_comment, - [408329] = 3, - ACTIONS(105), 1, + [408350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9479), 1, + aux_sym__immediate_decimal_token1, STATE(10393), 1, sym_comment, - [408339] = 3, - ACTIONS(105), 1, + [408360] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16550), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16808), 1, + anon_sym_DOT2, STATE(10394), 1, sym_comment, - [408349] = 3, + [408370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13068), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16810), 1, + anon_sym_RBRACE, STATE(10395), 1, sym_comment, - [408359] = 3, - ACTIONS(105), 1, + [408380] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16806), 1, - aux_sym_unquoted_token3, + ACTIONS(16812), 1, + anon_sym_RBRACE, STATE(10396), 1, sym_comment, - [408369] = 3, - ACTIONS(3), 1, + [408390] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16808), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1765), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10397), 1, sym_comment, - [408379] = 3, - ACTIONS(105), 1, + [408400] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16810), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16814), 1, + anon_sym_RPAREN, STATE(10398), 1, sym_comment, - [408389] = 3, + [408410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16812), 1, + ACTIONS(16816), 1, aux_sym__immediate_decimal_token1, STATE(10399), 1, sym_comment, - [408399] = 3, - ACTIONS(105), 1, + [408420] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16814), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16818), 1, + anon_sym_RBRACK, STATE(10400), 1, sym_comment, - [408409] = 3, + [408430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16816), 1, - anon_sym_RBRACK, + ACTIONS(16820), 1, + anon_sym_RPAREN, STATE(10401), 1, sym_comment, - [408419] = 3, + [408440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16818), 1, - anon_sym_RPAREN, + ACTIONS(16822), 1, + aux_sym__immediate_decimal_token1, STATE(10402), 1, sym_comment, - [408429] = 3, + [408450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16820), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16824), 1, + anon_sym_RBRACE, STATE(10403), 1, sym_comment, - [408439] = 3, - ACTIONS(3), 1, + [408460] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16822), 1, - anon_sym_RBRACE, + ACTIONS(5678), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10404), 1, sym_comment, - [408449] = 3, - ACTIONS(3), 1, + [408470] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16824), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16630), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10405), 1, sym_comment, - [408459] = 3, + [408480] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16826), 1, anon_sym_DOT2, STATE(10406), 1, sym_comment, - [408469] = 3, + [408490] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16828), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(10407), 1, sym_comment, - [408479] = 3, + [408500] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16830), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10408), 1, sym_comment, - [408489] = 3, + [408510] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16832), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(10409), 1, sym_comment, - [408499] = 3, - ACTIONS(105), 1, + [408520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4279), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16834), 1, + aux_sym__immediate_decimal_token1, STATE(10410), 1, sym_comment, - [408509] = 3, + [408530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16834), 1, - anon_sym_DOT2, + ACTIONS(16836), 1, + aux_sym__immediate_decimal_token1, STATE(10411), 1, sym_comment, - [408519] = 3, + [408540] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16836), 1, + ACTIONS(8851), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10412), 1, sym_comment, - [408529] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13046), 1, - aux_sym__immediate_decimal_token1, - STATE(10413), 1, - sym_comment, - [408539] = 3, - ACTIONS(3), 1, + [408550] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16838), 1, - anon_sym_RBRACE, - STATE(10414), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(10413), 1, sym_comment, - [408549] = 3, + [408560] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16840), 1, anon_sym_RBRACE, - STATE(10415), 1, + STATE(10414), 1, sym_comment, - [408559] = 3, + [408570] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16842), 1, aux_sym__immediate_decimal_token1, - STATE(10416), 1, + STATE(10415), 1, sym_comment, - [408569] = 3, + [408580] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16844), 1, anon_sym_RBRACK, - STATE(10417), 1, + STATE(10416), 1, sym_comment, - [408579] = 3, + [408590] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16846), 1, anon_sym_RPAREN, - STATE(10418), 1, + STATE(10417), 1, sym_comment, - [408589] = 3, + [408600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13093), 1, + ACTIONS(13069), 1, aux_sym__immediate_decimal_token1, - STATE(10419), 1, + STATE(10418), 1, sym_comment, - [408599] = 3, + [408610] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16848), 1, anon_sym_RBRACE, - STATE(10420), 1, + STATE(10419), 1, sym_comment, - [408609] = 3, + [408620] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16850), 1, anon_sym_RPAREN, + STATE(10420), 1, + sym_comment, + [408630] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9487), 1, + aux_sym__immediate_decimal_token1, STATE(10421), 1, sym_comment, - [408619] = 3, + [408640] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16852), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(10422), 1, sym_comment, - [408629] = 3, + [408650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16854), 1, - anon_sym_DOT2, + ACTIONS(13073), 1, + aux_sym__immediate_decimal_token1, STATE(10423), 1, sym_comment, - [408639] = 3, + [408660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13078), 1, + ACTIONS(16854), 1, aux_sym__immediate_decimal_token1, STATE(10424), 1, sym_comment, - [408649] = 3, + [408670] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16856), 1, - anon_sym_DOT2, + aux_sym__immediate_decimal_token1, STATE(10425), 1, sym_comment, - [408659] = 3, + [408680] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16858), 1, - anon_sym_DOT2, + anon_sym_RBRACE, STATE(10426), 1, sym_comment, - [408669] = 3, + [408690] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16860), 1, - anon_sym_DOT2, + anon_sym_RBRACE, STATE(10427), 1, sym_comment, - [408679] = 3, + [408700] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16862), 1, - aux_sym_unquoted_token3, + aux_sym__list_item_starts_with_sign_token1, STATE(10428), 1, sym_comment, - [408689] = 3, - ACTIONS(3), 1, + [408710] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16864), 1, - anon_sym_DOT2, + aux_sym__list_item_starts_with_sign_token1, STATE(10429), 1, sym_comment, - [408699] = 3, + [408720] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16866), 1, - anon_sym_GT, + anon_sym_RPAREN, STATE(10430), 1, sym_comment, - [408709] = 3, + [408730] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16868), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10431), 1, sym_comment, - [408719] = 3, + [408740] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16870), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10432), 1, sym_comment, - [408729] = 3, + [408750] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16872), 1, anon_sym_RBRACE, STATE(10433), 1, sym_comment, - [408739] = 3, - ACTIONS(105), 1, + [408760] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16874), 1, - aux_sym_unquoted_token3, + aux_sym__immediate_decimal_token1, STATE(10434), 1, sym_comment, - [408749] = 3, + [408770] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16876), 1, - anon_sym_LBRACE, + aux_sym__immediate_decimal_token1, STATE(10435), 1, sym_comment, - [408759] = 3, + [408780] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16878), 1, aux_sym__immediate_decimal_token1, STATE(10436), 1, sym_comment, - [408769] = 3, + [408790] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16880), 1, - aux_sym_unquoted_token3, + aux_sym__list_item_starts_with_sign_token1, STATE(10437), 1, sym_comment, - [408779] = 3, + [408800] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16882), 1, aux_sym__immediate_decimal_token1, STATE(10438), 1, sym_comment, - [408789] = 3, + [408810] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16884), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10439), 1, sym_comment, - [408799] = 3, + [408820] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16886), 1, aux_sym__immediate_decimal_token1, STATE(10440), 1, sym_comment, - [408809] = 3, - ACTIONS(105), 1, + [408830] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16888), 1, - aux_sym__list_item_starts_with_sign_token1, + anon_sym_RPAREN, STATE(10441), 1, sym_comment, - [408819] = 3, + [408840] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16890), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10442), 1, sym_comment, - [408829] = 3, + [408850] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16892), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10443), 1, sym_comment, - [408839] = 3, + [408860] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16894), 1, - anon_sym_RBRACE, + anon_sym_DOT2, STATE(10444), 1, sym_comment, - [408849] = 3, + [408870] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16896), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(10445), 1, sym_comment, - [408859] = 3, - ACTIONS(105), 1, + [408880] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16898), 1, - aux_sym_unquoted_token3, + aux_sym__immediate_decimal_token1, STATE(10446), 1, sym_comment, - [408869] = 3, - ACTIONS(3), 1, + [408890] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(16900), 1, - aux_sym__immediate_decimal_token1, + aux_sym_unquoted_token3, STATE(10447), 1, sym_comment, - [408879] = 3, + [408900] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16902), 1, - anon_sym_RBRACE, + anon_sym_DOT2, STATE(10448), 1, sym_comment, - [408889] = 3, + [408910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8052), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16904), 1, + anon_sym_DOT2, STATE(10449), 1, sym_comment, - [408899] = 3, - ACTIONS(105), 1, + [408920] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16906), 1, + anon_sym_RPAREN, STATE(10450), 1, sym_comment, - [408909] = 3, + [408930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16904), 1, - anon_sym_RBRACK, + ACTIONS(16908), 1, + anon_sym_DOT2, STATE(10451), 1, sym_comment, - [408919] = 3, + [408940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16906), 1, + ACTIONS(16910), 1, anon_sym_RPAREN, STATE(10452), 1, sym_comment, - [408929] = 3, + [408950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16908), 1, - anon_sym_RPAREN, + ACTIONS(16912), 1, + aux_sym__immediate_decimal_token1, STATE(10453), 1, sym_comment, - [408939] = 3, - ACTIONS(3), 1, + [408960] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16910), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16914), 1, + aux_sym_unquoted_token3, STATE(10454), 1, sym_comment, - [408949] = 3, + [408970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8093), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16916), 1, + anon_sym_DOT2, STATE(10455), 1, sym_comment, - [408959] = 3, + [408980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16912), 1, - anon_sym_GT, + ACTIONS(16918), 1, + aux_sym__immediate_decimal_token1, STATE(10456), 1, sym_comment, - [408969] = 3, + [408990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16914), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4492), 1, + anon_sym_in, STATE(10457), 1, sym_comment, - [408979] = 3, + [409000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16916), 1, - anon_sym_RBRACE, + ACTIONS(16920), 1, + anon_sym_DOT2, STATE(10458), 1, sym_comment, - [408989] = 3, + [409010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16918), 1, - anon_sym_RBRACE, + ACTIONS(16922), 1, + anon_sym_DOT2, STATE(10459), 1, sym_comment, - [408999] = 3, + [409020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8015), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16924), 1, + anon_sym_RPAREN, STATE(10460), 1, sym_comment, - [409009] = 3, - ACTIONS(3), 1, + [409030] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16920), 1, - anon_sym_RPAREN, + ACTIONS(16926), 1, + aux_sym_unquoted_token3, STATE(10461), 1, sym_comment, - [409019] = 3, + [409040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16922), 1, - anon_sym_RBRACK, + ACTIONS(16928), 1, + anon_sym_RPAREN, STATE(10462), 1, sym_comment, - [409029] = 3, + [409050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16924), 1, - anon_sym_RPAREN, + ACTIONS(16930), 1, + aux_sym__immediate_decimal_token1, STATE(10463), 1, sym_comment, - [409039] = 3, + [409060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16926), 1, + ACTIONS(16932), 1, aux_sym__immediate_decimal_token1, STATE(10464), 1, sym_comment, - [409049] = 3, + [409070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16928), 1, - sym_short_flag_identifier, + ACTIONS(16934), 1, + anon_sym_RBRACE, STATE(10465), 1, sym_comment, - [409059] = 3, + [409080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16930), 1, - anon_sym_DOT2, + ACTIONS(16936), 1, + aux_sym__immediate_decimal_token1, STATE(10466), 1, sym_comment, - [409069] = 3, + [409090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16932), 1, + ACTIONS(8241), 1, aux_sym__immediate_decimal_token1, STATE(10467), 1, sym_comment, - [409079] = 3, + [409100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16934), 1, - anon_sym_RBRACE, + ACTIONS(16938), 1, + aux_sym__immediate_decimal_token1, STATE(10468), 1, sym_comment, - [409089] = 3, + [409110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16936), 1, - anon_sym_RBRACE, + ACTIONS(4297), 1, + anon_sym_in, STATE(10469), 1, sym_comment, - [409099] = 3, + [409120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16938), 1, - anon_sym_DOT2, + ACTIONS(16940), 1, + anon_sym_EQ, STATE(10470), 1, sym_comment, - [409109] = 3, + [409130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16940), 1, - anon_sym_DOT2, + ACTIONS(16942), 1, + anon_sym_RBRACE, STATE(10471), 1, sym_comment, - [409119] = 3, + [409140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4354), 1, - anon_sym_in, + ACTIONS(16944), 1, + anon_sym_RPAREN, STATE(10472), 1, sym_comment, - [409129] = 3, + [409150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16942), 1, - anon_sym_RPAREN, + ACTIONS(12523), 1, + aux_sym__immediate_decimal_token1, STATE(10473), 1, sym_comment, - [409139] = 3, - ACTIONS(3), 1, + [409160] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12621), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16946), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10474), 1, sym_comment, - [409149] = 3, - ACTIONS(105), 1, + [409170] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16944), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16948), 1, + aux_sym__immediate_decimal_token1, STATE(10475), 1, sym_comment, - [409159] = 3, - ACTIONS(105), 1, + [409180] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16946), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(12527), 1, + aux_sym__immediate_decimal_token1, STATE(10476), 1, sym_comment, - [409169] = 3, + [409190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12436), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16740), 1, + anon_sym_LBRACE, STATE(10477), 1, sym_comment, - [409179] = 3, + [409200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16948), 1, - anon_sym_RPAREN, + ACTIONS(16950), 1, + anon_sym_RBRACE, STATE(10478), 1, sym_comment, - [409189] = 3, - ACTIONS(3), 1, + [409210] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3804), 1, + aux_sym_unquoted_token3, STATE(10479), 1, sym_comment, - [409199] = 3, + [409220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16950), 1, - anon_sym_RBRACE, + ACTIONS(16952), 1, + anon_sym_LBRACE, STATE(10480), 1, sym_comment, - [409209] = 3, + [409230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16952), 1, - anon_sym_RBRACE, + ACTIONS(16954), 1, + anon_sym_RPAREN, STATE(10481), 1, sym_comment, - [409219] = 3, + [409240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16954), 1, - anon_sym_RPAREN, + ACTIONS(16956), 1, + aux_sym__immediate_decimal_token1, STATE(10482), 1, sym_comment, - [409229] = 3, + [409250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16956), 1, + ACTIONS(16958), 1, aux_sym__immediate_decimal_token1, STATE(10483), 1, sym_comment, - [409239] = 3, + [409260] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16958), 1, - aux_sym_unquoted_token3, + ACTIONS(16960), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10484), 1, sym_comment, - [409249] = 3, + [409270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16960), 1, - anon_sym_DOT2, + ACTIONS(16962), 1, + aux_sym__immediate_decimal_token1, STATE(10485), 1, sym_comment, - [409259] = 3, + [409280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16962), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16964), 1, + anon_sym_RBRACE, STATE(10486), 1, sym_comment, - [409269] = 3, + [409290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16964), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16966), 1, + anon_sym_RBRACK, STATE(10487), 1, sym_comment, - [409279] = 3, - ACTIONS(105), 1, + [409300] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16966), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16968), 1, + anon_sym_RBRACE, STATE(10488), 1, sym_comment, - [409289] = 3, + [409310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16968), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16970), 1, + anon_sym_RPAREN, STATE(10489), 1, sym_comment, - [409299] = 3, + [409320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16970), 1, - anon_sym_RPAREN, + ACTIONS(16972), 1, + aux_sym__immediate_decimal_token1, STATE(10490), 1, sym_comment, - [409309] = 3, + [409330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16972), 1, + ACTIONS(16974), 1, aux_sym__immediate_decimal_token1, STATE(10491), 1, sym_comment, - [409319] = 3, - ACTIONS(105), 1, + [409340] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16474), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16976), 1, + anon_sym_DOT2, STATE(10492), 1, sym_comment, - [409329] = 3, + [409350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16974), 1, - anon_sym_DOT2, + ACTIONS(16978), 1, + aux_sym__immediate_decimal_token1, STATE(10493), 1, sym_comment, - [409339] = 3, + [409360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16976), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16980), 1, + anon_sym_RPAREN, STATE(10494), 1, sym_comment, - [409349] = 3, + [409370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16978), 1, + ACTIONS(8205), 1, aux_sym__immediate_decimal_token1, STATE(10495), 1, sym_comment, - [409359] = 3, + [409380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16980), 1, + ACTIONS(16982), 1, anon_sym_RBRACE, STATE(10496), 1, sym_comment, - [409369] = 3, + [409390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8764), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16984), 1, + anon_sym_RPAREN, STATE(10497), 1, sym_comment, - [409379] = 3, + [409400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16982), 1, - anon_sym_RPAREN, + ACTIONS(16986), 1, + aux_sym__immediate_decimal_token1, STATE(10498), 1, sym_comment, - [409389] = 3, + [409410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16984), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16988), 1, + anon_sym_LBRACE, STATE(10499), 1, sym_comment, - [409399] = 3, + [409420] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7973), 1, + ACTIONS(2829), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10500), 1, sym_comment, - [409409] = 3, + [409430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16986), 1, + ACTIONS(16990), 1, aux_sym__immediate_decimal_token1, STATE(10501), 1, sym_comment, - [409419] = 3, - ACTIONS(3), 1, + [409440] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16988), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16472), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10502), 1, sym_comment, - [409429] = 3, + [409450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16990), 1, - anon_sym_RBRACE, + ACTIONS(16992), 1, + anon_sym_DOT2, STATE(10503), 1, sym_comment, - [409439] = 3, + [409460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16992), 1, - anon_sym_RBRACE, + ACTIONS(16994), 1, + anon_sym_RPAREN, STATE(10504), 1, sym_comment, - [409449] = 3, + [409470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16994), 1, - anon_sym_RPAREN, + ACTIONS(16996), 1, + aux_sym__immediate_decimal_token1, STATE(10505), 1, sym_comment, - [409459] = 3, + [409480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16996), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6308), 1, + anon_sym_COLON, STATE(10506), 1, sym_comment, - [409469] = 3, + [409490] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(16998), 1, - anon_sym_RBRACE, + anon_sym_DOT2, STATE(10507), 1, sym_comment, - [409479] = 3, + [409500] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17000), 1, - anon_sym_DOT2, + aux_sym__immediate_decimal_token1, STATE(10508), 1, sym_comment, - [409489] = 3, + [409510] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17002), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10509), 1, sym_comment, - [409499] = 3, + [409520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17004), 1, + anon_sym_DOT2, STATE(10510), 1, sym_comment, - [409509] = 3, + [409530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17004), 1, + ACTIONS(17006), 1, anon_sym_RPAREN, STATE(10511), 1, sym_comment, - [409519] = 3, + [409540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17006), 1, - anon_sym_RPAREN, + ACTIONS(17008), 1, + aux_sym__immediate_decimal_token1, STATE(10512), 1, sym_comment, - [409529] = 3, + [409550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17008), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17010), 1, + anon_sym_DOT2, STATE(10513), 1, sym_comment, - [409539] = 3, + [409560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17010), 1, + ACTIONS(17012), 1, anon_sym_RBRACK, STATE(10514), 1, sym_comment, - [409549] = 3, + [409570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13614), 1, + ACTIONS(17014), 1, aux_sym__immediate_decimal_token1, STATE(10515), 1, sym_comment, - [409559] = 3, + [409580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17012), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17016), 1, + anon_sym_RPAREN, STATE(10516), 1, sym_comment, - [409569] = 3, - ACTIONS(3), 1, + [409590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17014), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17018), 1, + aux_sym_unquoted_token3, STATE(10517), 1, sym_comment, - [409579] = 3, + [409600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17016), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17020), 1, + anon_sym_RPAREN, STATE(10518), 1, sym_comment, - [409589] = 3, + [409610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17018), 1, - anon_sym_RPAREN, + ACTIONS(17022), 1, + aux_sym__immediate_decimal_token1, STATE(10519), 1, sym_comment, - [409599] = 3, + [409620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17020), 1, + ACTIONS(17024), 1, aux_sym__immediate_decimal_token1, STATE(10520), 1, sym_comment, - [409609] = 3, - ACTIONS(105), 1, + [409630] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17022), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17026), 1, + aux_sym__immediate_decimal_token1, STATE(10521), 1, sym_comment, - [409619] = 3, + [409640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17024), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17028), 1, + anon_sym_RBRACE, STATE(10522), 1, sym_comment, - [409629] = 3, + [409650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17026), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17030), 1, + anon_sym_RBRACK, STATE(10523), 1, sym_comment, - [409639] = 3, - ACTIONS(105), 1, + [409660] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17028), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(17032), 1, + anon_sym_RPAREN, STATE(10524), 1, sym_comment, - [409649] = 3, + [409670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17030), 1, - anon_sym_RPAREN, + ACTIONS(11995), 1, + aux_sym__immediate_decimal_token1, STATE(10525), 1, sym_comment, - [409659] = 3, + [409680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12023), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17034), 1, + anon_sym_RPAREN, STATE(10526), 1, sym_comment, - [409669] = 3, + [409690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17032), 1, - anon_sym_DOT2, + ACTIONS(11999), 1, + aux_sym__immediate_decimal_token1, STATE(10527), 1, sym_comment, - [409679] = 3, + [409700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12052), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17036), 1, + anon_sym_RBRACE, STATE(10528), 1, sym_comment, - [409689] = 3, + [409710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17034), 1, - anon_sym_DOT2, + ACTIONS(12900), 1, + aux_sym__immediate_decimal_token1, STATE(10529), 1, sym_comment, - [409699] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(17036), 1, - anon_sym_DOT2, - STATE(10530), 1, - sym_comment, - [409709] = 3, + [409720] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17038), 1, anon_sym_RPAREN, - STATE(10531), 1, + STATE(10530), 1, sym_comment, - [409719] = 3, + [409730] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17040), 1, aux_sym__immediate_decimal_token1, - STATE(10532), 1, + STATE(10531), 1, sym_comment, - [409729] = 3, + [409740] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17042), 1, - anon_sym_DOT2, - STATE(10533), 1, + anon_sym_RBRACE, + STATE(10532), 1, sym_comment, - [409739] = 3, + [409750] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17044), 1, aux_sym__immediate_decimal_token1, - STATE(10534), 1, + STATE(10533), 1, sym_comment, - [409749] = 3, - ACTIONS(105), 1, + [409760] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17046), 1, - aux_sym_unquoted_token3, - STATE(10535), 1, + anon_sym_DOT2, + STATE(10534), 1, sym_comment, - [409759] = 3, - ACTIONS(105), 1, + [409770] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17048), 1, - aux_sym_unquoted_token3, - STATE(10536), 1, + anon_sym_RBRACE, + STATE(10535), 1, sym_comment, - [409769] = 3, + [409780] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17050), 1, anon_sym_RPAREN, - STATE(10537), 1, + STATE(10536), 1, sym_comment, - [409779] = 3, + [409790] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17052), 1, aux_sym__immediate_decimal_token1, - STATE(10538), 1, + STATE(10537), 1, sym_comment, - [409789] = 3, + [409800] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17054), 1, aux_sym__immediate_decimal_token1, - STATE(10539), 1, + STATE(10538), 1, sym_comment, - [409799] = 3, + [409810] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17056), 1, aux_sym__immediate_decimal_token1, - STATE(10540), 1, + STATE(10539), 1, sym_comment, - [409809] = 3, + [409820] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17058), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(10541), 1, + STATE(10540), 1, sym_comment, - [409819] = 3, + [409830] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17060), 1, aux_sym__immediate_decimal_token1, - STATE(10542), 1, + STATE(10541), 1, sym_comment, - [409829] = 3, + [409840] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17062), 1, anon_sym_RPAREN, - STATE(10543), 1, + STATE(10542), 1, sym_comment, - [409839] = 3, + [409850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13205), 1, + ACTIONS(13042), 1, aux_sym__immediate_decimal_token1, - STATE(10544), 1, + STATE(10543), 1, sym_comment, - [409849] = 3, - ACTIONS(105), 1, + [409860] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17064), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10545), 1, + anon_sym_RBRACK, + STATE(10544), 1, sym_comment, - [409859] = 3, + [409870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13209), 1, + ACTIONS(13057), 1, aux_sym__immediate_decimal_token1, + STATE(10545), 1, + sym_comment, + [409880] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10546), 1, sym_comment, - [409869] = 3, + [409890] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17066), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACK, STATE(10547), 1, sym_comment, - [409879] = 3, + [409900] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17068), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(10548), 1, sym_comment, - [409889] = 3, + [409910] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17070), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10549), 1, sym_comment, - [409899] = 3, + [409920] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17072), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(10550), 1, sym_comment, - [409909] = 3, + [409930] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17074), 1, aux_sym__immediate_decimal_token1, STATE(10551), 1, sym_comment, - [409919] = 3, + [409940] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17076), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RPAREN, STATE(10552), 1, sym_comment, - [409929] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4720), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10553), 1, - sym_comment, - [409939] = 3, + [409950] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17078), 1, - anon_sym_RBRACE, - STATE(10554), 1, + aux_sym__immediate_decimal_token1, + STATE(10553), 1, sym_comment, - [409949] = 3, + [409960] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17080), 1, anon_sym_RPAREN, - STATE(10555), 1, + STATE(10554), 1, sym_comment, - [409959] = 3, + [409970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9417), 1, + ACTIONS(9409), 1, aux_sym__immediate_decimal_token1, + STATE(10555), 1, + sym_comment, + [409980] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7619), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10556), 1, sym_comment, - [409969] = 3, + [409990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17082), 1, - anon_sym_RBRACE, + ACTIONS(9415), 1, + aux_sym__immediate_decimal_token1, STATE(10557), 1, sym_comment, - [409979] = 3, + [410000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9423), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17082), 1, + anon_sym_RBRACE, STATE(10558), 1, sym_comment, - [409989] = 3, + [410010] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17084), 1, aux_sym__immediate_decimal_token1, STATE(10559), 1, sym_comment, - [409999] = 3, + [410020] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17086), 1, anon_sym_RPAREN, STATE(10560), 1, sym_comment, - [410009] = 3, + [410030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17088), 1, - anon_sym_RPAREN, + ACTIONS(9062), 1, + aux_sym__immediate_decimal_token1, STATE(10561), 1, sym_comment, - [410019] = 3, + [410040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, + ACTIONS(9066), 1, aux_sym__immediate_decimal_token1, STATE(10562), 1, sym_comment, - [410029] = 3, + [410050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17090), 1, - anon_sym_RBRACK, + ACTIONS(17088), 1, + anon_sym_RBRACE, STATE(10563), 1, sym_comment, - [410039] = 3, + [410060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17090), 1, + anon_sym_RPAREN, STATE(10564), 1, sym_comment, - [410049] = 3, + [410070] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17092), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, STATE(10565), 1, sym_comment, - [410059] = 3, + [410080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8588), 1, + ACTIONS(17094), 1, aux_sym__immediate_decimal_token1, STATE(10566), 1, sym_comment, - [410069] = 3, + [410090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17094), 1, - anon_sym_RPAREN, + ACTIONS(12910), 1, + aux_sym__immediate_decimal_token1, STATE(10567), 1, sym_comment, - [410079] = 3, + [410100] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17096), 1, aux_sym__immediate_decimal_token1, STATE(10568), 1, sym_comment, - [410089] = 3, + [410110] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17098), 1, - sym_short_flag_identifier, + anon_sym_RBRACK, STATE(10569), 1, sym_comment, - [410099] = 3, + [410120] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17100), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10570), 1, sym_comment, - [410109] = 3, + [410130] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17102), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(10571), 1, sym_comment, - [410119] = 3, + [410140] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17104), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(10572), 1, sym_comment, - [410129] = 3, + [410150] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17106), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10573), 1, sym_comment, - [410139] = 3, + [410160] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17108), 1, aux_sym__immediate_decimal_token1, STATE(10574), 1, sym_comment, - [410149] = 3, - ACTIONS(3), 1, + [410170] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17110), 1, - anon_sym_DOT2, + aux_sym__list_item_starts_with_sign_token1, STATE(10575), 1, sym_comment, - [410159] = 3, + [410180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17112), 1, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token1, STATE(10576), 1, sym_comment, - [410169] = 3, + [410190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17114), 1, - anon_sym_DOT2, + ACTIONS(17112), 1, + anon_sym_RPAREN, STATE(10577), 1, sym_comment, - [410179] = 3, - ACTIONS(105), 1, + [410200] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17114), 1, + aux_sym__immediate_decimal_token1, STATE(10578), 1, sym_comment, - [410189] = 3, + [410210] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17116), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10579), 1, sym_comment, - [410199] = 3, + [410220] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17118), 1, aux_sym__immediate_decimal_token1, STATE(10580), 1, sym_comment, - [410209] = 3, - ACTIONS(3), 1, + [410230] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17120), 1, - anon_sym_RPAREN, + aux_sym__list_item_starts_with_sign_token1, STATE(10581), 1, sym_comment, - [410219] = 3, - ACTIONS(3), 1, + [410240] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17122), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16500), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10582), 1, sym_comment, - [410229] = 3, + [410250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8532), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17122), 1, + anon_sym_RPAREN, STATE(10583), 1, sym_comment, - [410239] = 3, + [410260] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17124), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(10584), 1, sym_comment, - [410249] = 3, + [410270] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17126), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, STATE(10585), 1, sym_comment, - [410259] = 3, + [410280] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17128), 1, aux_sym__immediate_decimal_token1, STATE(10586), 1, sym_comment, - [410269] = 3, + [410290] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17130), 1, aux_sym_unquoted_token3, STATE(10587), 1, sym_comment, - [410279] = 3, + [410300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17132), 1, aux_sym__immediate_decimal_token1, STATE(10588), 1, sym_comment, - [410289] = 3, + [410310] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17134), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RPAREN, STATE(10589), 1, sym_comment, - [410299] = 3, - ACTIONS(105), 1, + [410320] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17136), 1, - aux_sym__list_item_starts_with_sign_token1, + aux_sym__immediate_decimal_token1, STATE(10590), 1, sym_comment, - [410309] = 3, - ACTIONS(3), 1, + [410330] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17138), 1, - anon_sym_RPAREN, + aux_sym__list_item_starts_with_sign_token1, STATE(10591), 1, sym_comment, - [410319] = 3, + [410340] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17140), 1, aux_sym__immediate_decimal_token1, STATE(10592), 1, sym_comment, - [410329] = 3, + [410350] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17142), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10593), 1, sym_comment, - [410339] = 3, + [410360] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17144), 1, aux_sym__immediate_decimal_token1, STATE(10594), 1, sym_comment, - [410349] = 3, - ACTIONS(105), 1, + [410370] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17146), 1, - aux_sym__list_item_starts_with_sign_token1, + anon_sym_RPAREN, STATE(10595), 1, sym_comment, - [410359] = 3, + [410380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17148), 1, + ACTIONS(9118), 1, aux_sym__immediate_decimal_token1, STATE(10596), 1, sym_comment, - [410369] = 3, + [410390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17150), 1, - anon_sym_RPAREN, + ACTIONS(17148), 1, + anon_sym_else, STATE(10597), 1, sym_comment, - [410379] = 3, + [410400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8928), 1, + ACTIONS(9127), 1, aux_sym__immediate_decimal_token1, STATE(10598), 1, sym_comment, - [410389] = 3, + [410410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17152), 1, - anon_sym_RBRACE, + ACTIONS(17150), 1, + anon_sym_COLON, STATE(10599), 1, sym_comment, - [410399] = 3, + [410420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17152), 1, + anon_sym_LBRACE, STATE(10600), 1, sym_comment, - [410409] = 3, + [410430] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17154), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(10601), 1, sym_comment, - [410419] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5634), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(10602), 1, - sym_comment, - [410429] = 3, + [410440] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17156), 1, - anon_sym_RPAREN, - STATE(10603), 1, + aux_sym__immediate_decimal_token1, + STATE(10602), 1, sym_comment, - [410439] = 3, + [410450] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17158), 1, - aux_sym__immediate_decimal_token1, - STATE(10604), 1, + anon_sym_DOT2, + STATE(10603), 1, sym_comment, - [410449] = 3, + [410460] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17160), 1, - anon_sym_RBRACE, - STATE(10605), 1, + aux_sym__immediate_decimal_token1, + STATE(10604), 1, sym_comment, - [410459] = 3, + [410470] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17162), 1, - aux_sym__immediate_decimal_token1, - STATE(10606), 1, + anon_sym_RPAREN, + STATE(10605), 1, sym_comment, - [410469] = 3, + [410480] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17164), 1, - aux_sym__immediate_decimal_token1, - STATE(10607), 1, + anon_sym_DOT2, + STATE(10606), 1, sym_comment, - [410479] = 3, + [410490] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17166), 1, - anon_sym_RBRACE, - STATE(10608), 1, + anon_sym_RPAREN, + STATE(10607), 1, sym_comment, - [410489] = 3, + [410500] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17168), 1, - anon_sym_RPAREN, - STATE(10609), 1, + aux_sym__immediate_decimal_token1, + STATE(10608), 1, sym_comment, - [410499] = 3, + [410510] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17170), 1, - aux_sym__immediate_decimal_token1, - STATE(10610), 1, + anon_sym_DOT2, + STATE(10609), 1, sym_comment, - [410509] = 3, + [410520] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17172), 1, - anon_sym_RBRACE, - STATE(10611), 1, + aux_sym__immediate_decimal_token1, + STATE(10610), 1, sym_comment, - [410519] = 3, + [410530] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17174), 1, aux_sym__immediate_decimal_token1, - STATE(10612), 1, + STATE(10611), 1, sym_comment, - [410529] = 3, + [410540] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17176), 1, - aux_sym__immediate_decimal_token1, - STATE(10613), 1, + anon_sym_DOT2, + STATE(10612), 1, sym_comment, - [410539] = 3, + [410550] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17178), 1, anon_sym_RPAREN, - STATE(10614), 1, + STATE(10613), 1, sym_comment, - [410549] = 3, + [410560] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17180), 1, - anon_sym_RPAREN, + aux_sym__immediate_decimal_token1, + STATE(10614), 1, + sym_comment, + [410570] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(17182), 1, + aux_sym_unquoted_token3, STATE(10615), 1, sym_comment, - [410559] = 3, + [410580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17182), 1, + ACTIONS(17184), 1, aux_sym__immediate_decimal_token1, STATE(10616), 1, sym_comment, - [410569] = 3, + [410590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17184), 1, - anon_sym_RBRACK, + ACTIONS(17186), 1, + anon_sym_RBRACE, STATE(10617), 1, sym_comment, - [410579] = 3, + [410600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17186), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17188), 1, + anon_sym_in, STATE(10618), 1, sym_comment, - [410589] = 3, - ACTIONS(105), 1, + [410610] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17188), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17190), 1, + anon_sym_RPAREN, STATE(10619), 1, sym_comment, - [410599] = 3, + [410620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12972), 1, + ACTIONS(17192), 1, aux_sym__immediate_decimal_token1, STATE(10620), 1, sym_comment, - [410609] = 3, + [410630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17190), 1, - anon_sym_RPAREN, + ACTIONS(17194), 1, + anon_sym_SEMI, STATE(10621), 1, sym_comment, - [410619] = 3, + [410640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17192), 1, + ACTIONS(17196), 1, aux_sym__immediate_decimal_token1, STATE(10622), 1, sym_comment, - [410629] = 3, - ACTIONS(105), 1, + [410650] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17194), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17198), 1, + anon_sym_RBRACE, STATE(10623), 1, sym_comment, - [410639] = 3, + [410660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17196), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17200), 1, + anon_sym_RBRACK, STATE(10624), 1, sym_comment, - [410649] = 3, + [410670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12976), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17202), 1, + anon_sym_RPAREN, STATE(10625), 1, sym_comment, - [410659] = 3, + [410680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17198), 1, - anon_sym_DOT2, + ACTIONS(12850), 1, + aux_sym__immediate_decimal_token1, STATE(10626), 1, sym_comment, - [410669] = 3, + [410690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17200), 1, - anon_sym_RPAREN, + ACTIONS(17204), 1, + anon_sym_RBRACE, STATE(10627), 1, sym_comment, - [410679] = 3, + [410700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12857), 1, + ACTIONS(12858), 1, aux_sym__immediate_decimal_token1, STATE(10628), 1, sym_comment, - [410689] = 3, + [410710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17202), 1, - anon_sym_DOT2, + ACTIONS(17206), 1, + anon_sym_RPAREN, STATE(10629), 1, sym_comment, - [410699] = 3, + [410720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12851), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17208), 1, + anon_sym_RPAREN, STATE(10630), 1, sym_comment, - [410709] = 3, + [410730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17204), 1, - anon_sym_DOT2, + ACTIONS(17210), 1, + aux_sym__immediate_decimal_token1, STATE(10631), 1, sym_comment, - [410719] = 3, + [410740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17206), 1, - anon_sym_RPAREN, + ACTIONS(8512), 1, + aux_sym__immediate_decimal_token1, STATE(10632), 1, sym_comment, - [410729] = 3, + [410750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17208), 1, + ACTIONS(17212), 1, aux_sym__immediate_decimal_token1, STATE(10633), 1, sym_comment, - [410739] = 3, + [410760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17210), 1, - anon_sym_DOT2, + ACTIONS(17214), 1, + anon_sym_RPAREN, STATE(10634), 1, sym_comment, - [410749] = 3, + [410770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17212), 1, + ACTIONS(12786), 1, aux_sym__immediate_decimal_token1, STATE(10635), 1, sym_comment, - [410759] = 3, + [410780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17214), 1, - anon_sym_RPAREN, + ACTIONS(12794), 1, + aux_sym__immediate_decimal_token1, STATE(10636), 1, sym_comment, - [410769] = 3, + [410790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12736), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17216), 1, + anon_sym_RPAREN, STATE(10637), 1, sym_comment, - [410779] = 3, + [410800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12746), 1, + ACTIONS(17218), 1, aux_sym__immediate_decimal_token1, STATE(10638), 1, sym_comment, - [410789] = 3, + [410810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17216), 1, - anon_sym_RPAREN, + ACTIONS(17220), 1, + aux_sym__immediate_decimal_token1, STATE(10639), 1, sym_comment, - [410799] = 3, + [410820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17218), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17222), 1, + anon_sym_RPAREN, STATE(10640), 1, sym_comment, - [410809] = 3, + [410830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17220), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17224), 1, + anon_sym_RPAREN, STATE(10641), 1, sym_comment, - [410819] = 3, + [410840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17222), 1, + ACTIONS(17226), 1, anon_sym_RPAREN, STATE(10642), 1, sym_comment, - [410829] = 3, + [410850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17224), 1, + ACTIONS(17228), 1, anon_sym_RPAREN, STATE(10643), 1, sym_comment, - [410839] = 3, + [410860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17226), 1, + ACTIONS(17230), 1, anon_sym_RPAREN, STATE(10644), 1, sym_comment, - [410849] = 3, + [410870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17228), 1, + ACTIONS(17232), 1, anon_sym_RPAREN, STATE(10645), 1, sym_comment, - [410859] = 3, + [410880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17230), 1, + ACTIONS(17234), 1, anon_sym_RPAREN, STATE(10646), 1, sym_comment, - [410869] = 3, + [410890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17232), 1, + ACTIONS(17236), 1, anon_sym_RPAREN, STATE(10647), 1, sym_comment, - [410879] = 3, + [410900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17234), 1, + ACTIONS(17238), 1, anon_sym_RPAREN, STATE(10648), 1, sym_comment, - [410889] = 3, + [410910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17236), 1, + ACTIONS(17240), 1, anon_sym_RPAREN, STATE(10649), 1, sym_comment, - [410899] = 3, + [410920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17238), 1, + ACTIONS(17242), 1, anon_sym_RPAREN, STATE(10650), 1, sym_comment, - [410909] = 3, + [410930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17240), 1, + ACTIONS(17244), 1, anon_sym_RPAREN, STATE(10651), 1, sym_comment, - [410919] = 3, + [410940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17242), 1, + ACTIONS(17246), 1, anon_sym_RPAREN, STATE(10652), 1, sym_comment, - [410929] = 3, + [410950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17244), 1, + ACTIONS(17248), 1, anon_sym_RPAREN, STATE(10653), 1, sym_comment, - [410939] = 3, + [410960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17246), 1, + ACTIONS(17250), 1, anon_sym_RPAREN, STATE(10654), 1, sym_comment, - [410949] = 3, + [410970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17248), 1, + ACTIONS(17252), 1, anon_sym_RPAREN, STATE(10655), 1, sym_comment, - [410959] = 3, + [410980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17250), 1, + ACTIONS(17254), 1, anon_sym_RPAREN, STATE(10656), 1, sym_comment, - [410969] = 3, + [410990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17252), 1, + ACTIONS(17256), 1, anon_sym_RPAREN, STATE(10657), 1, sym_comment, - [410979] = 3, + [411000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17254), 1, + ACTIONS(17258), 1, anon_sym_RPAREN, STATE(10658), 1, sym_comment, - [410989] = 3, + [411010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17256), 1, + ACTIONS(17260), 1, anon_sym_RPAREN, STATE(10659), 1, sym_comment, - [410999] = 3, + [411020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17258), 1, + ACTIONS(17262), 1, anon_sym_RPAREN, STATE(10660), 1, sym_comment, - [411009] = 3, + [411030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17260), 1, - anon_sym_RPAREN, + ACTIONS(17264), 1, + anon_sym_GT, STATE(10661), 1, sym_comment, - [411019] = 3, - ACTIONS(3), 1, + [411040] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17262), 1, - anon_sym_RPAREN, + ACTIONS(17266), 1, + aux_sym_unquoted_token3, STATE(10662), 1, sym_comment, - [411029] = 3, + [411050] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17264), 1, - aux_sym_unquoted_token3, + ACTIONS(17268), 1, + aux_sym__unquoted_in_list_token3, STATE(10663), 1, sym_comment, - [411039] = 3, + [411060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17266), 1, - anon_sym_EQ, + ACTIONS(17270), 1, + anon_sym_DOT2, STATE(10664), 1, sym_comment, - [411049] = 3, + [411070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17272), 1, + anon_sym_DOT2, STATE(10665), 1, sym_comment, - [411059] = 3, + [411080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17268), 1, - anon_sym_RPAREN, + ACTIONS(16456), 1, + anon_sym_make, STATE(10666), 1, sym_comment, - [411069] = 3, - ACTIONS(105), 1, + [411090] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17270), 1, - aux_sym_unquoted_token3, + ACTIONS(17274), 1, + anon_sym_RBRACE, STATE(10667), 1, sym_comment, - [411079] = 3, + [411100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16532), 1, - anon_sym_make, + ACTIONS(17276), 1, + anon_sym_RPAREN, STATE(10668), 1, sym_comment, - [411089] = 3, + [411110] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16598), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17278), 1, + aux_sym__unquoted_in_list_token3, STATE(10669), 1, sym_comment, - [411099] = 3, + [411120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17272), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17280), 1, + anon_sym_LBRACK2, STATE(10670), 1, sym_comment, - [411109] = 3, + [411130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17274), 1, - anon_sym_DOT2, + ACTIONS(17282), 1, + anon_sym_RBRACE, STATE(10671), 1, sym_comment, - [411119] = 3, + [411140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17276), 1, - anon_sym_LBRACK2, + ACTIONS(17284), 1, + aux_sym__immediate_decimal_token1, STATE(10672), 1, sym_comment, - [411129] = 3, - ACTIONS(105), 1, + [411150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17278), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17286), 1, + anon_sym_RBRACK, STATE(10673), 1, sym_comment, - [411139] = 3, - ACTIONS(3), 1, + [411160] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17280), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2957), 1, + aux_sym__unquoted_in_list_token3, STATE(10674), 1, sym_comment, - [411149] = 3, + [411170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17282), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17288), 1, + anon_sym_RPAREN, STATE(10675), 1, sym_comment, - [411159] = 3, + [411180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17284), 1, - anon_sym_RBRACE, + ACTIONS(8053), 1, + aux_sym__immediate_decimal_token1, STATE(10676), 1, sym_comment, - [411169] = 3, + [411190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17286), 1, - anon_sym_RBRACE, + ACTIONS(17290), 1, + anon_sym_RBRACK, STATE(10677), 1, sym_comment, - [411179] = 3, - ACTIONS(105), 1, + [411200] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16508), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(16624), 1, + aux_sym_unquoted_token6, STATE(10678), 1, sym_comment, - [411189] = 3, - ACTIONS(3), 1, + [411210] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(15716), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16534), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10679), 1, sym_comment, - [411199] = 3, + [411220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16558), 1, - aux_sym_unquoted_token6, + ACTIONS(17292), 1, + anon_sym_DOT2, STATE(10680), 1, sym_comment, - [411209] = 3, + [411230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17288), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17294), 1, + anon_sym_RBRACK, STATE(10681), 1, sym_comment, - [411219] = 3, + [411240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17290), 1, - anon_sym_RBRACE, + ACTIONS(17296), 1, + anon_sym_RPAREN, STATE(10682), 1, sym_comment, - [411229] = 3, + [411250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17292), 1, + ACTIONS(17298), 1, anon_sym_RBRACK, STATE(10683), 1, sym_comment, - [411239] = 3, + [411260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17294), 1, - anon_sym_RPAREN, + ACTIONS(17300), 1, + anon_sym_DOT2, STATE(10684), 1, sym_comment, - [411249] = 3, + [411270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17302), 1, + anon_sym_LBRACE, STATE(10685), 1, sym_comment, - [411259] = 3, + [411280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17296), 1, - anon_sym_DOT2, + ACTIONS(17304), 1, + anon_sym_LBRACE, STATE(10686), 1, sym_comment, - [411269] = 3, + [411290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17298), 1, - anon_sym_LBRACE, + ACTIONS(17306), 1, + anon_sym_DOT2, STATE(10687), 1, sym_comment, - [411279] = 3, - ACTIONS(3), 1, + [411300] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17300), 1, - anon_sym_LBRACE, + ACTIONS(3804), 1, + aux_sym__unquoted_in_list_token3, STATE(10688), 1, sym_comment, - [411289] = 3, + [411310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17302), 1, - anon_sym_RPAREN, + ACTIONS(17308), 1, + anon_sym_DOT2, STATE(10689), 1, sym_comment, - [411299] = 3, - ACTIONS(3), 1, + [411320] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17304), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11687), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10690), 1, sym_comment, - [411309] = 3, + [411330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17306), 1, - anon_sym_RBRACE, + ACTIONS(17310), 1, + anon_sym_DOT2, STATE(10691), 1, sym_comment, - [411319] = 3, + [411340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17308), 1, + ACTIONS(17312), 1, anon_sym_RPAREN, STATE(10692), 1, sym_comment, - [411329] = 3, - ACTIONS(105), 1, + [411350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8091), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17314), 1, + anon_sym_RPAREN, STATE(10693), 1, sym_comment, - [411339] = 3, - ACTIONS(105), 1, + [411360] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9373), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17316), 1, + anon_sym_DOT2, STATE(10694), 1, sym_comment, - [411349] = 3, + [411370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17310), 1, - anon_sym_DOT2, + ACTIONS(4265), 1, + anon_sym_in, STATE(10695), 1, sym_comment, - [411359] = 3, - ACTIONS(105), 1, + [411380] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9285), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17318), 1, + anon_sym_DOT2, STATE(10696), 1, sym_comment, - [411369] = 3, + [411390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17312), 1, + ACTIONS(17320), 1, anon_sym_DOT2, STATE(10697), 1, sym_comment, - [411379] = 3, - ACTIONS(3), 1, + [411400] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17314), 1, - anon_sym_RBRACE, + ACTIONS(9373), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10698), 1, sym_comment, - [411389] = 3, + [411410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17316), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17322), 1, + anon_sym_COLON, STATE(10699), 1, sym_comment, - [411399] = 3, + [411420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17318), 1, - anon_sym_RPAREN, + ACTIONS(8466), 1, + aux_sym__immediate_decimal_token1, STATE(10700), 1, sym_comment, - [411409] = 3, + [411430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17320), 1, - anon_sym_COLON, + ACTIONS(17324), 1, + anon_sym_RBRACE, STATE(10701), 1, sym_comment, - [411419] = 3, - ACTIONS(3), 1, + [411440] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1245), 1, - anon_sym_in, + ACTIONS(8195), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10702), 1, sym_comment, - [411429] = 3, + [411450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17322), 1, - anon_sym_RBRACE, + ACTIONS(17326), 1, + anon_sym_DOT2, STATE(10703), 1, sym_comment, - [411439] = 3, - ACTIONS(3), 1, + [411460] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17324), 1, - anon_sym_RBRACE, + ACTIONS(17328), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10704), 1, sym_comment, - [411449] = 3, + [411470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17326), 1, - anon_sym_RBRACK, + ACTIONS(17330), 1, + anon_sym_DOT2, STATE(10705), 1, sym_comment, - [411459] = 3, + [411480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_COLON, + ACTIONS(8494), 1, + aux_sym__immediate_decimal_token1, STATE(10706), 1, sym_comment, - [411469] = 3, + [411490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17328), 1, - sym_short_flag_identifier, + ACTIONS(17332), 1, + anon_sym_RBRACK, STATE(10707), 1, sym_comment, - [411479] = 3, + [411500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15702), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17334), 1, + anon_sym_RPAREN, STATE(10708), 1, sym_comment, - [411489] = 3, + [411510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17330), 1, - anon_sym_RPAREN, + ACTIONS(8801), 1, + aux_sym__immediate_decimal_token1, STATE(10709), 1, sym_comment, - [411499] = 3, + [411520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_in, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token1, STATE(10710), 1, sym_comment, - [411509] = 3, + [411530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4334), 1, - anon_sym_in, + ACTIONS(17336), 1, + anon_sym_RBRACE, STATE(10711), 1, sym_comment, - [411519] = 3, + [411540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17332), 1, - anon_sym_RBRACK, + ACTIONS(17338), 1, + anon_sym_RBRACE, STATE(10712), 1, sym_comment, - [411529] = 3, + [411550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3951), 1, - anon_sym_in, + ACTIONS(17340), 1, + aux_sym__immediate_decimal_token1, STATE(10713), 1, sym_comment, - [411539] = 3, + [411560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4342), 1, - anon_sym_in, + ACTIONS(17342), 1, + anon_sym_DOT2, STATE(10714), 1, sym_comment, - [411549] = 3, + [411570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17334), 1, - anon_sym_RBRACK, + ACTIONS(17344), 1, + anon_sym_RPAREN, STATE(10715), 1, sym_comment, - [411559] = 3, + [411580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4360), 1, - anon_sym_in, + ACTIONS(8215), 1, + aux_sym__immediate_decimal_token1, STATE(10716), 1, sym_comment, - [411569] = 3, - ACTIONS(105), 1, + [411590] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17336), 1, - aux_sym_unquoted_token3, + ACTIONS(17346), 1, + anon_sym_RBRACE, STATE(10717), 1, sym_comment, - [411579] = 3, + [411600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17338), 1, + ACTIONS(17348), 1, aux_sym__immediate_decimal_token1, STATE(10718), 1, sym_comment, - [411589] = 3, - ACTIONS(105), 1, + [411610] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17340), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17350), 1, + anon_sym_RBRACE, STATE(10719), 1, sym_comment, - [411599] = 3, + [411620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17342), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14177), 1, + anon_sym_LPAREN2, STATE(10720), 1, sym_comment, - [411609] = 3, - ACTIONS(3), 1, + [411630] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17344), 1, - anon_sym_RBRACE, + ACTIONS(7880), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10721), 1, sym_comment, - [411619] = 3, + [411640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14229), 1, - anon_sym_LPAREN2, + ACTIONS(17352), 1, + anon_sym_RBRACK, STATE(10722), 1, sym_comment, - [411629] = 3, + [411650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17346), 1, + ACTIONS(17354), 1, anon_sym_RPAREN, STATE(10723), 1, sym_comment, - [411639] = 3, - ACTIONS(105), 1, + [411660] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17348), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(9360), 1, + aux_sym__immediate_decimal_token1, STATE(10724), 1, sym_comment, - [411649] = 3, + [411670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17350), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17356), 1, + anon_sym_RBRACE, STATE(10725), 1, sym_comment, - [411659] = 3, + [411680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17352), 1, - anon_sym_RBRACE, + ACTIONS(17358), 1, + anon_sym_RPAREN, STATE(10726), 1, sym_comment, - [411669] = 3, + [411690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17354), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17360), 1, + anon_sym_RBRACE, STATE(10727), 1, sym_comment, - [411679] = 3, + [411700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17356), 1, - anon_sym_RPAREN, + ACTIONS(8805), 1, + aux_sym__immediate_decimal_token1, STATE(10728), 1, sym_comment, - [411689] = 3, - ACTIONS(3), 1, + [411710] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17358), 1, - anon_sym_EQ, + ACTIONS(16560), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10729), 1, sym_comment, - [411699] = 3, + [411720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17360), 1, - anon_sym_RPAREN, + ACTIONS(17362), 1, + anon_sym_RBRACE, STATE(10730), 1, sym_comment, - [411709] = 3, + [411730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17362), 1, - anon_sym_DOT2, + ACTIONS(17364), 1, + sym_short_flag_identifier, STATE(10731), 1, sym_comment, - [411719] = 3, + [411740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9480), 1, + ACTIONS(12824), 1, aux_sym__immediate_decimal_token1, STATE(10732), 1, sym_comment, - [411729] = 3, + [411750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_PIPE, + ACTIONS(17366), 1, + anon_sym_DOT2, STATE(10733), 1, sym_comment, - [411739] = 3, - ACTIONS(3), 1, + [411760] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17364), 1, - sym_short_flag_identifier, + ACTIONS(17368), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10734), 1, sym_comment, - [411749] = 3, + [411770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17366), 1, - anon_sym_RBRACE, + ACTIONS(17370), 1, + anon_sym_DOT2, STATE(10735), 1, sym_comment, - [411759] = 3, + [411780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17368), 1, - anon_sym_RBRACE, + ACTIONS(17372), 1, + anon_sym_DOT2, STATE(10736), 1, sym_comment, - [411769] = 3, + [411790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17370), 1, + ACTIONS(17374), 1, anon_sym_DOT2, STATE(10737), 1, sym_comment, - [411779] = 3, - ACTIONS(3), 1, + [411800] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17372), 1, - anon_sym_DOT2, + ACTIONS(7580), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10738), 1, sym_comment, - [411789] = 3, + [411810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17374), 1, - anon_sym_DOT2, + ACTIONS(12874), 1, + aux_sym__immediate_decimal_token1, STATE(10739), 1, sym_comment, - [411799] = 3, + [411820] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17376), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10740), 1, sym_comment, - [411809] = 3, + [411830] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17378), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(10741), 1, sym_comment, - [411819] = 3, + [411840] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17380), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, STATE(10742), 1, sym_comment, - [411829] = 3, + [411850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4364), 1, - anon_sym_in, + ACTIONS(9377), 1, + aux_sym__immediate_decimal_token1, STATE(10743), 1, sym_comment, - [411839] = 3, + [411860] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17382), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(10744), 1, sym_comment, - [411849] = 3, + [411870] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17384), 1, anon_sym_RBRACE, STATE(10745), 1, sym_comment, - [411859] = 3, + [411880] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17386), 1, - anon_sym_DOT2, + aux_sym__immediate_decimal_token1, STATE(10746), 1, sym_comment, - [411869] = 3, + [411890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4330), 1, - anon_sym_in, + ACTIONS(17388), 1, + anon_sym_SEMI, STATE(10747), 1, sym_comment, - [411879] = 3, + [411900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17388), 1, + ACTIONS(17390), 1, anon_sym_DOT2, STATE(10748), 1, sym_comment, - [411889] = 3, + [411910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17390), 1, - anon_sym_SEMI, + ACTIONS(17392), 1, + anon_sym_DOT2, STATE(10749), 1, sym_comment, - [411899] = 3, + [411920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17392), 1, + ACTIONS(17394), 1, anon_sym_DOT2, STATE(10750), 1, sym_comment, - [411909] = 3, + [411930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17394), 1, + ACTIONS(17396), 1, anon_sym_DOT2, STATE(10751), 1, sym_comment, - [411919] = 3, + [411940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17396), 1, - anon_sym_DOT2, + ACTIONS(17398), 1, + aux_sym__immediate_decimal_token1, STATE(10752), 1, sym_comment, - [411929] = 3, + [411950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17398), 1, - anon_sym_DOT2, + ACTIONS(17400), 1, + anon_sym_RBRACE, STATE(10753), 1, sym_comment, - [411939] = 3, + [411960] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8490), 1, + ACTIONS(16486), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10754), 1, sym_comment, - [411949] = 3, - ACTIONS(3), 1, + [411970] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17400), 1, - anon_sym_RPAREN, + ACTIONS(16582), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10755), 1, sym_comment, - [411959] = 3, + [411980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9484), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17402), 1, + anon_sym_RPAREN, STATE(10756), 1, sym_comment, - [411969] = 3, - ACTIONS(105), 1, + [411990] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym_unquoted_token3, + ACTIONS(17404), 1, + sym_identifier, STATE(10757), 1, sym_comment, - [411979] = 3, + [412000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17402), 1, - anon_sym_RBRACE, + ACTIONS(17406), 1, + aux_sym__immediate_decimal_token1, STATE(10758), 1, sym_comment, - [411989] = 3, + [412010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17404), 1, + ACTIONS(17408), 1, aux_sym__immediate_decimal_token1, STATE(10759), 1, sym_comment, - [411999] = 3, + [412020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, - anon_sym_in, + ACTIONS(17410), 1, + aux_sym__immediate_decimal_token1, STATE(10760), 1, sym_comment, - [412009] = 3, + [412030] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17406), 1, + ACTIONS(17412), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10761), 1, sym_comment, - [412019] = 3, - ACTIONS(3), 1, + [412040] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17408), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17414), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10762), 1, sym_comment, - [412029] = 3, - ACTIONS(105), 1, + [412050] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17410), 1, - aux_sym_unquoted_token3, + ACTIONS(17416), 1, + aux_sym__immediate_decimal_token1, STATE(10763), 1, sym_comment, - [412039] = 3, + [412060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_in, + ACTIONS(17418), 1, + anon_sym_DOT2, STATE(10764), 1, sym_comment, - [412049] = 3, - ACTIONS(105), 1, + [412070] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17412), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17420), 1, + aux_sym__immediate_decimal_token1, STATE(10765), 1, sym_comment, - [412059] = 3, + [412080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17414), 1, - ts_builtin_sym_end, + ACTIONS(17422), 1, + anon_sym_RBRACE, STATE(10766), 1, sym_comment, - [412069] = 3, + [412090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17416), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17424), 1, + anon_sym_DOT2, STATE(10767), 1, sym_comment, - [412079] = 3, - ACTIONS(105), 1, + [412100] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17418), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17426), 1, + anon_sym_DOT2, STATE(10768), 1, sym_comment, - [412089] = 3, + [412110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17420), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17428), 1, + anon_sym_DOT2, STATE(10769), 1, sym_comment, - [412099] = 3, - ACTIONS(105), 1, + [412120] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16588), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17430), 1, + anon_sym_DOT2, STATE(10770), 1, sym_comment, - [412109] = 3, - ACTIONS(3), 1, + [412130] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17422), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17432), 1, + aux_sym_unquoted_token3, STATE(10771), 1, sym_comment, - [412119] = 3, + [412140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17424), 1, - anon_sym_RBRACE, + ACTIONS(17434), 1, + anon_sym_DOT2, STATE(10772), 1, sym_comment, - [412129] = 3, + [412150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8118), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17436), 1, + anon_sym_DOT2, STATE(10773), 1, sym_comment, - [412139] = 3, + [412160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17426), 1, - anon_sym_RPAREN, + ACTIONS(17438), 1, + anon_sym_DOT2, STATE(10774), 1, sym_comment, - [412149] = 3, + [412170] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17440), 1, + aux_sym_unquoted_token3, STATE(10775), 1, sym_comment, - [412159] = 3, + [412180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17428), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17442), 1, + anon_sym_RBRACE, STATE(10776), 1, sym_comment, - [412169] = 3, - ACTIONS(3), 1, + [412190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17430), 1, - anon_sym_DOT2, + ACTIONS(17444), 1, + aux_sym_unquoted_token3, STATE(10777), 1, sym_comment, - [412179] = 3, + [412200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17432), 1, - anon_sym_EQ, + ACTIONS(17446), 1, + aux_sym__immediate_decimal_token1, STATE(10778), 1, sym_comment, - [412189] = 3, + [412210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17434), 1, - anon_sym_DOT2, + ACTIONS(17448), 1, + anon_sym_EQ, STATE(10779), 1, sym_comment, - [412199] = 3, + [412220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17436), 1, - anon_sym_RBRACE, + ACTIONS(17450), 1, + aux_sym__immediate_decimal_token1, STATE(10780), 1, sym_comment, - [412209] = 3, - ACTIONS(3), 1, + [412230] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17438), 1, - anon_sym_RBRACE, + ACTIONS(17452), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10781), 1, sym_comment, - [412219] = 3, - ACTIONS(3), 1, + [412240] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8232), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(16614), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10782), 1, sym_comment, - [412229] = 3, + [412250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17440), 1, - anon_sym_RPAREN, + ACTIONS(17454), 1, + anon_sym_EQ, STATE(10783), 1, sym_comment, - [412239] = 3, + [412260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_in, + ACTIONS(17456), 1, + anon_sym_DOT2, STATE(10784), 1, sym_comment, - [412249] = 3, + [412270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17442), 1, - anon_sym_RBRACK, + ACTIONS(16542), 1, + aux_sym__immediate_decimal_token1, STATE(10785), 1, sym_comment, - [412259] = 3, - ACTIONS(105), 1, + [412280] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_unquoted_token3, + ACTIONS(15910), 1, + anon_sym_EQ_GT, STATE(10786), 1, sym_comment, - [412269] = 3, + [412290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17444), 1, - anon_sym_DOT2, + ACTIONS(3931), 1, + anon_sym_in, STATE(10787), 1, sym_comment, - [412279] = 3, - ACTIONS(105), 1, + [412300] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, - aux_sym_unquoted_token3, + ACTIONS(17458), 1, + anon_sym_DOT2, STATE(10788), 1, sym_comment, - [412289] = 3, - ACTIONS(105), 1, + [412310] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3888), 1, - aux_sym_unquoted_token3, + ACTIONS(17460), 1, + anon_sym_RBRACE, STATE(10789), 1, sym_comment, - [412299] = 3, - ACTIONS(3), 1, + [412320] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17446), 1, - anon_sym_DOT2, + ACTIONS(16602), 1, + aux_sym__unquoted_in_list_token5, STATE(10790), 1, sym_comment, - [412309] = 3, - ACTIONS(105), 1, + [412330] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17448), 1, - aux_sym_unquoted_token3, + ACTIONS(17462), 1, + aux_sym__immediate_decimal_token1, STATE(10791), 1, sym_comment, - [412319] = 3, + [412340] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17450), 1, + ACTIONS(17464), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10792), 1, sym_comment, - [412329] = 3, + [412350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17452), 1, - anon_sym_DOT2, + ACTIONS(4250), 1, + anon_sym_in, STATE(10793), 1, sym_comment, - [412339] = 3, + [412360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17454), 1, - anon_sym_RBRACK, + ACTIONS(17466), 1, + anon_sym_DOT2, STATE(10794), 1, sym_comment, - [412349] = 3, + [412370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17456), 1, - anon_sym_RBRACK, + ACTIONS(17468), 1, + aux_sym__immediate_decimal_token1, STATE(10795), 1, sym_comment, - [412359] = 3, + [412380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17458), 1, - anon_sym_RBRACK, + ACTIONS(17470), 1, + anon_sym_RPAREN, STATE(10796), 1, sym_comment, - [412369] = 3, + [412390] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17460), 1, - aux_sym_unquoted_token3, + ACTIONS(17472), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10797), 1, sym_comment, - [412379] = 3, + [412400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17462), 1, - anon_sym_DOT2, + ACTIONS(17474), 1, + sym_identifier, STATE(10798), 1, sym_comment, - [412389] = 3, - ACTIONS(3), 1, + [412410] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17464), 1, - anon_sym_DOT2, + ACTIONS(16526), 1, + aux_sym__unquoted_in_list_token5, STATE(10799), 1, sym_comment, - [412399] = 3, - ACTIONS(105), 1, + [412420] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17466), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(4257), 1, + anon_sym_in, STATE(10800), 1, sym_comment, - [412409] = 3, - ACTIONS(105), 1, + [412430] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17468), 1, - aux_sym_unquoted_token3, + ACTIONS(17476), 1, + anon_sym_SEMI, STATE(10801), 1, sym_comment, - [412419] = 3, + [412440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17470), 1, - anon_sym_GT, + ACTIONS(467), 1, + ts_builtin_sym_end, STATE(10802), 1, sym_comment, - [412429] = 3, + [412450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17472), 1, + ACTIONS(17478), 1, anon_sym_DOT2, STATE(10803), 1, sym_comment, - [412439] = 3, + [412460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17474), 1, - anon_sym_DOT2, + ACTIONS(1253), 1, + anon_sym_in, STATE(10804), 1, sym_comment, - [412449] = 3, + [412470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17476), 1, - anon_sym_RPAREN, + ACTIONS(17480), 1, + aux_sym__immediate_decimal_token1, STATE(10805), 1, sym_comment, - [412459] = 3, + [412480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17478), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(3891), 1, + anon_sym_in, STATE(10806), 1, sym_comment, - [412469] = 3, + [412490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17480), 1, - anon_sym_DOT2, + ACTIONS(17482), 1, + anon_sym_RBRACE, STATE(10807), 1, sym_comment, - [412479] = 3, + [412500] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17482), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17484), 1, + aux_sym_unquoted_token3, STATE(10808), 1, sym_comment, - [412489] = 3, + [412510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17484), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17486), 1, + anon_sym_EQ, STATE(10809), 1, sym_comment, - [412499] = 3, - ACTIONS(105), 1, + [412520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17486), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(4281), 1, + anon_sym_in, STATE(10810), 1, sym_comment, - [412509] = 3, + [412530] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17488), 1, - anon_sym_DOT2, + anon_sym_SEMI, STATE(10811), 1, sym_comment, - [412519] = 3, + [412540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17490), 1, - anon_sym_DOT2, + ACTIONS(7284), 1, + anon_sym_RBRACE, STATE(10812), 1, sym_comment, - [412529] = 3, + [412550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17492), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17490), 1, + anon_sym_EQ, STATE(10813), 1, sym_comment, - [412539] = 3, + [412560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17494), 1, - anon_sym_DOT2, + ACTIONS(17492), 1, + anon_sym_RBRACK, STATE(10814), 1, sym_comment, - [412549] = 3, + [412570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17496), 1, - anon_sym_RBRACE, + ACTIONS(17494), 1, + aux_sym__immediate_decimal_token1, STATE(10815), 1, sym_comment, - [412559] = 3, - ACTIONS(3), 1, + [412580] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12872), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17496), 1, + aux_sym_unquoted_token3, STATE(10816), 1, sym_comment, - [412569] = 3, + [412590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17498), 1, - anon_sym_RPAREN, + ACTIONS(7286), 1, + anon_sym_RBRACE, STATE(10817), 1, sym_comment, - [412579] = 3, - ACTIONS(105), 1, + [412600] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8612), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17498), 1, + anon_sym_DOT2, STATE(10818), 1, sym_comment, - [412589] = 3, + [412610] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17500), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACK, STATE(10819), 1, sym_comment, - [412599] = 3, + [412620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12029), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17502), 1, + anon_sym_RPAREN, STATE(10820), 1, sym_comment, - [412609] = 3, + [412630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17502), 1, - anon_sym_RBRACE, + ACTIONS(17504), 1, + aux_sym__immediate_decimal_token1, STATE(10821), 1, sym_comment, - [412619] = 3, + [412640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17504), 1, - anon_sym_RBRACE, + ACTIONS(17506), 1, + anon_sym_DOT2, STATE(10822), 1, sym_comment, - [412629] = 3, + [412650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17506), 1, - anon_sym_RBRACK, + ACTIONS(17508), 1, + anon_sym_EQ, STATE(10823), 1, sym_comment, - [412639] = 3, + [412660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17508), 1, - anon_sym_DOT2, + ACTIONS(17510), 1, + anon_sym_RBRACE, STATE(10824), 1, sym_comment, - [412649] = 3, + [412670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17510), 1, - sym_short_flag_identifier, + ACTIONS(17512), 1, + anon_sym_EQ, STATE(10825), 1, sym_comment, - [412659] = 3, - ACTIONS(105), 1, + [412680] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17512), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(17514), 1, + anon_sym_DOT2, STATE(10826), 1, sym_comment, - [412669] = 3, + [412690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17514), 1, - anon_sym_RBRACE, + ACTIONS(17516), 1, + sym_identifier, STATE(10827), 1, sym_comment, - [412679] = 3, + [412700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17516), 1, + ACTIONS(17518), 1, anon_sym_RBRACE, STATE(10828), 1, sym_comment, - [412689] = 3, + [412710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17518), 1, + ACTIONS(17520), 1, anon_sym_RBRACE, STATE(10829), 1, sym_comment, - [412699] = 3, + [412720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17520), 1, - anon_sym_DASH_GT, + ACTIONS(17522), 1, + anon_sym_DOT2, STATE(10830), 1, sym_comment, - [412709] = 3, - ACTIONS(105), 1, + [412730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17522), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17524), 1, + anon_sym_RBRACK, STATE(10831), 1, sym_comment, - [412719] = 3, - ACTIONS(3), 1, + [412740] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12868), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17526), 1, + sym__entry_separator, STATE(10832), 1, sym_comment, - [412729] = 3, - ACTIONS(3), 1, + [412750] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17524), 1, - anon_sym_RPAREN, + ACTIONS(2998), 1, + aux_sym_unquoted_token3, STATE(10833), 1, sym_comment, - [412739] = 3, + [412760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17526), 1, - anon_sym_RBRACK, + ACTIONS(17528), 1, + anon_sym_RPAREN, STATE(10834), 1, sym_comment, - [412749] = 3, + [412770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17528), 1, - anon_sym_RBRACE, + ACTIONS(17530), 1, + anon_sym_DOT2, STATE(10835), 1, sym_comment, - [412759] = 3, + [412780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12065), 1, + ACTIONS(17532), 1, aux_sym__immediate_decimal_token1, STATE(10836), 1, sym_comment, - [412769] = 3, - ACTIONS(105), 1, + [412790] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(8057), 1, + aux_sym__immediate_decimal_token1, STATE(10837), 1, sym_comment, - [412779] = 3, + [412800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7362), 1, + ACTIONS(17534), 1, anon_sym_RBRACE, STATE(10838), 1, sym_comment, - [412789] = 3, + [412810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(17536), 1, anon_sym_RBRACE, STATE(10839), 1, sym_comment, - [412799] = 3, - ACTIONS(105), 1, + [412820] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(17538), 1, + anon_sym_DOT2, STATE(10840), 1, sym_comment, - [412809] = 3, + [412830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17530), 1, + ACTIONS(17540), 1, anon_sym_DOT2, STATE(10841), 1, sym_comment, - [412819] = 3, - ACTIONS(105), 1, + [412840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(17542), 1, + anon_sym_DOT2, STATE(10842), 1, sym_comment, - [412829] = 3, + [412850] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16612), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(8239), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10843), 1, sym_comment, - [412839] = 3, + [412860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17532), 1, + ACTIONS(17544), 1, anon_sym_DOT2, STATE(10844), 1, sym_comment, - [412849] = 3, - ACTIONS(105), 1, + [412870] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17546), 1, + anon_sym_RPAREN, STATE(10845), 1, sym_comment, - [412859] = 3, - ACTIONS(105), 1, + [412880] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3888), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(17548), 1, + aux_sym__immediate_decimal_token1, STATE(10846), 1, sym_comment, - [412869] = 3, + [412890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17534), 1, - anon_sym_RPAREN, + ACTIONS(17550), 1, + anon_sym_DOT2, STATE(10847), 1, sym_comment, - [412879] = 3, + [412900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17536), 1, + ACTIONS(12077), 1, aux_sym__immediate_decimal_token1, STATE(10848), 1, sym_comment, - [412889] = 3, - ACTIONS(105), 1, + [412910] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17538), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17552), 1, + anon_sym_RBRACE, STATE(10849), 1, sym_comment, - [412899] = 3, - ACTIONS(3), 1, + [412920] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17540), 1, - anon_sym_RBRACE, + ACTIONS(17554), 1, + aux_sym_comment_token1, STATE(10850), 1, sym_comment, - [412909] = 3, + [412930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17542), 1, + ACTIONS(17556), 1, aux_sym__immediate_decimal_token1, STATE(10851), 1, sym_comment, - [412919] = 3, + [412940] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17544), 1, + ACTIONS(17558), 1, aux_sym_unquoted_token3, STATE(10852), 1, sym_comment, - [412929] = 3, + [412950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17546), 1, - anon_sym_DOT2, + ACTIONS(17560), 1, + ts_builtin_sym_end, STATE(10853), 1, sym_comment, - [412939] = 3, - ACTIONS(3), 1, + [412960] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17548), 1, - anon_sym_DOT2, + ACTIONS(1611), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10854), 1, sym_comment, - [412949] = 3, - ACTIONS(3), 1, + [412970] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17550), 1, - anon_sym_DOT2, + ACTIONS(2158), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10855), 1, sym_comment, - [412959] = 3, - ACTIONS(3), 1, + [412980] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17552), 1, - anon_sym_DOT2, + ACTIONS(16586), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10856), 1, sym_comment, - [412969] = 3, + [412990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17554), 1, - anon_sym_RPAREN, + ACTIONS(17562), 1, + anon_sym_DOT2, STATE(10857), 1, sym_comment, - [412979] = 3, + [413000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17556), 1, - anon_sym_DOT2, + ACTIONS(8070), 1, + aux_sym__immediate_decimal_token1, STATE(10858), 1, sym_comment, - [412989] = 3, + [413010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17558), 1, - anon_sym_DOT2, + ACTIONS(17564), 1, + aux_sym__immediate_decimal_token1, STATE(10859), 1, sym_comment, - [412999] = 3, + [413020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17560), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17566), 1, + anon_sym_DOT2, STATE(10860), 1, sym_comment, - [413009] = 3, - ACTIONS(105), 1, + [413030] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17562), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17568), 1, + anon_sym_DOT2, STATE(10861), 1, sym_comment, - [413019] = 3, + [413040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17564), 1, + ACTIONS(17570), 1, anon_sym_DOT2, STATE(10862), 1, sym_comment, - [413029] = 3, + [413050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17566), 1, + ACTIONS(17572), 1, anon_sym_DOT2, STATE(10863), 1, sym_comment, - [413039] = 3, - ACTIONS(3), 1, + [413060] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17568), 1, - anon_sym_DOT2, + ACTIONS(17574), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10864), 1, sym_comment, - [413049] = 3, + [413070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17570), 1, - anon_sym_DOT2, + ACTIONS(17576), 1, + aux_sym__immediate_decimal_token1, STATE(10865), 1, sym_comment, - [413059] = 3, + [413080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17572), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17578), 1, + anon_sym_catch, STATE(10866), 1, sym_comment, - [413069] = 3, - ACTIONS(3), 1, + [413090] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17574), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8748), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10867), 1, sym_comment, - [413079] = 3, + [413100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6488), 1, - anon_sym_COLON, + ACTIONS(17580), 1, + sym_short_flag_identifier, STATE(10868), 1, sym_comment, - [413089] = 3, + [413110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17576), 1, + ACTIONS(17582), 1, anon_sym_RBRACE, STATE(10869), 1, sym_comment, - [413099] = 3, - ACTIONS(105), 1, + [413120] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16540), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17584), 1, + aux_sym__immediate_decimal_token1, STATE(10870), 1, sym_comment, - [413109] = 3, + [413130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17578), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17586), 1, + anon_sym_RPAREN, STATE(10871), 1, sym_comment, - [413119] = 3, + [413140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17580), 1, - anon_sym_RBRACE, + ACTIONS(17588), 1, + anon_sym_DOT2, STATE(10872), 1, sym_comment, - [413129] = 3, + [413150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17582), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17590), 1, + anon_sym_DOT2, STATE(10873), 1, sym_comment, - [413139] = 3, + [413160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17584), 1, - anon_sym_RPAREN, + ACTIONS(17592), 1, + anon_sym_DOT2, STATE(10874), 1, sym_comment, - [413149] = 3, - ACTIONS(3), 1, + [413170] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17586), 1, - anon_sym_RBRACE, + ACTIONS(7382), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10875), 1, sym_comment, - [413159] = 3, + [413180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17588), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17594), 1, + anon_sym_RBRACK, STATE(10876), 1, sym_comment, - [413169] = 3, + [413190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17590), 1, - anon_sym_RPAREN, + ACTIONS(17596), 1, + anon_sym_DOT2, STATE(10877), 1, sym_comment, - [413179] = 3, - ACTIONS(105), 1, + [413200] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13373), 1, + aux_sym__immediate_decimal_token1, STATE(10878), 1, sym_comment, - [413189] = 3, - ACTIONS(3), 1, + [413210] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17592), 1, - anon_sym_DOT2, + ACTIONS(17598), 1, + aux_sym_unquoted_token3, STATE(10879), 1, sym_comment, - [413199] = 3, - ACTIONS(105), 1, + [413220] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7890), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(17600), 1, + aux_sym__immediate_decimal_token1, STATE(10880), 1, sym_comment, - [413209] = 3, + [413230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17594), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17602), 1, + sym_long_flag_identifier, STATE(10881), 1, sym_comment, - [413219] = 3, + [413240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17596), 1, - anon_sym_RBRACE, + ACTIONS(17604), 1, + anon_sym_EQ, STATE(10882), 1, sym_comment, - [413229] = 3, - ACTIONS(105), 1, + [413250] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17598), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17606), 1, + anon_sym_RBRACK, STATE(10883), 1, sym_comment, - [413239] = 3, + [413260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17600), 1, - anon_sym_RBRACE, + ACTIONS(17608), 1, + anon_sym_RBRACK, STATE(10884), 1, sym_comment, - [413249] = 3, + [413270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17602), 1, - anon_sym_RBRACE, + ACTIONS(6032), 1, + anon_sym_COLON, STATE(10885), 1, sym_comment, - [413259] = 3, + [413280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17604), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17610), 1, + anon_sym_RPAREN, STATE(10886), 1, sym_comment, - [413269] = 3, - ACTIONS(105), 1, + [413290] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2923), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17612), 1, + aux_sym__immediate_decimal_token1, STATE(10887), 1, sym_comment, - [413279] = 3, + [413300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17606), 1, - anon_sym_EQ, + ACTIONS(17614), 1, + anon_sym_LBRACK2, STATE(10888), 1, sym_comment, - [413289] = 3, + [413310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17608), 1, - anon_sym_RPAREN, + ACTIONS(17616), 1, + anon_sym_RBRACE, STATE(10889), 1, sym_comment, - [413299] = 3, - ACTIONS(3), 1, + [413320] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17610), 1, - anon_sym_LBRACK2, + ACTIONS(17618), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10890), 1, sym_comment, - [413309] = 3, + [413330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17612), 1, - anon_sym_EQ, + ACTIONS(17620), 1, + anon_sym_RBRACE, STATE(10891), 1, sym_comment, - [413319] = 3, + [413340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17614), 1, - anon_sym_RBRACK, + ACTIONS(17622), 1, + anon_sym_DOT2, STATE(10892), 1, sym_comment, - [413329] = 3, - ACTIONS(105), 1, + [413350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17616), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(5961), 1, + anon_sym_COLON, STATE(10893), 1, sym_comment, - [413339] = 3, + [413360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17618), 1, - anon_sym_DOT2, + ACTIONS(4354), 1, + anon_sym_in, STATE(10894), 1, sym_comment, - [413349] = 3, + [413370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_COLON, + ACTIONS(13527), 1, + anon_sym_LPAREN2, STATE(10895), 1, sym_comment, - [413359] = 3, + [413380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17620), 1, - anon_sym_DOT2, + ACTIONS(17624), 1, + anon_sym_LBRACK2, STATE(10896), 1, sym_comment, - [413369] = 3, + [413390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13600), 1, - anon_sym_LPAREN2, + ACTIONS(17626), 1, + anon_sym_DOT2, STATE(10897), 1, sym_comment, - [413379] = 3, + [413400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17622), 1, + ACTIONS(17628), 1, anon_sym_DOT2, STATE(10898), 1, sym_comment, - [413389] = 3, + [413410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17624), 1, + ACTIONS(17630), 1, anon_sym_DOT2, STATE(10899), 1, sym_comment, - [413399] = 3, + [413420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17626), 1, - anon_sym_DOT2, + ACTIONS(17632), 1, + anon_sym_COLON, STATE(10900), 1, sym_comment, - [413409] = 3, + [413430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17628), 1, - anon_sym_DOT2, + ACTIONS(17634), 1, + aux_sym__immediate_decimal_token1, STATE(10901), 1, sym_comment, - [413419] = 3, + [413440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17630), 1, - anon_sym_DOT2, + ACTIONS(17636), 1, + anon_sym_RPAREN, STATE(10902), 1, sym_comment, - [413429] = 3, + [413450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17632), 1, - anon_sym_DOT2, + ACTIONS(17638), 1, + aux_sym__immediate_decimal_token1, STATE(10903), 1, sym_comment, - [413439] = 3, + [413460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17634), 1, - anon_sym_DOT2, + ACTIONS(17640), 1, + sym_param_short_flag_identifier, STATE(10904), 1, sym_comment, - [413449] = 3, - ACTIONS(3), 1, + [413470] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17636), 1, - anon_sym_DOT2, + ACTIONS(17642), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10905), 1, sym_comment, - [413459] = 3, - ACTIONS(105), 1, + [413480] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17638), 1, - aux_sym_unquoted_token3, + ACTIONS(17644), 1, + aux_sym__immediate_decimal_token1, STATE(10906), 1, sym_comment, - [413469] = 3, - ACTIONS(3), 1, + [413490] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17640), 1, - anon_sym_RBRACK, + ACTIONS(17646), 1, + aux_sym_unquoted_token3, STATE(10907), 1, sym_comment, - [413479] = 3, + [413500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17642), 1, - anon_sym_RPAREN, + ACTIONS(17648), 1, + aux_sym__immediate_decimal_token1, STATE(10908), 1, sym_comment, - [413489] = 3, - ACTIONS(105), 1, + [413510] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17644), 1, - aux_sym_unquoted_token3, + ACTIONS(17650), 1, + anon_sym_EQ, STATE(10909), 1, sym_comment, - [413499] = 3, + [413520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17646), 1, + ACTIONS(17652), 1, anon_sym_DOT2, STATE(10910), 1, sym_comment, - [413509] = 3, - ACTIONS(3), 1, + [413530] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17648), 1, - anon_sym_RBRACE, + ACTIONS(17654), 1, + aux_sym_shebang_token1, STATE(10911), 1, sym_comment, - [413519] = 3, + [413540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17650), 1, - anon_sym_RBRACE, + ACTIONS(17656), 1, + anon_sym_RPAREN, STATE(10912), 1, sym_comment, - [413529] = 3, + [413550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17652), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17658), 1, + anon_sym_DOT2, STATE(10913), 1, sym_comment, - [413539] = 3, + [413560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17654), 1, - anon_sym_DOT2, + ACTIONS(17660), 1, + sym_short_flag_identifier, STATE(10914), 1, sym_comment, - [413549] = 3, + [413570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17656), 1, - anon_sym_DOT2, + ACTIONS(17662), 1, + anon_sym_GT, STATE(10915), 1, sym_comment, - [413559] = 3, + [413580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17658), 1, - sym_short_flag_identifier, + ACTIONS(17664), 1, + anon_sym_DOT2, STATE(10916), 1, sym_comment, - [413569] = 3, - ACTIONS(3), 1, + [413590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17660), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4032), 1, + aux_sym_unquoted_token3, STATE(10917), 1, sym_comment, - [413579] = 3, - ACTIONS(3), 1, + [413600] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17662), 1, - anon_sym_RPAREN, + ACTIONS(8443), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10918), 1, sym_comment, - [413589] = 3, + [413610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17664), 1, - anon_sym_RBRACK, + ACTIONS(4366), 1, + anon_sym_in, STATE(10919), 1, sym_comment, - [413599] = 3, + [413620] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17666), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(10920), 1, sym_comment, - [413609] = 3, + [413630] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17668), 1, anon_sym_RBRACE, STATE(10921), 1, sym_comment, - [413619] = 3, + [413640] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17670), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RPAREN, STATE(10922), 1, sym_comment, - [413629] = 3, + [413650] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17672), 1, + ACTIONS(2946), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10923), 1, sym_comment, - [413639] = 3, + [413660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17674), 1, - anon_sym_EQ, + ACTIONS(17672), 1, + aux_sym__immediate_decimal_token1, STATE(10924), 1, sym_comment, - [413649] = 3, + [413670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17676), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17674), 1, + anon_sym_RBRACE, STATE(10925), 1, sym_comment, - [413659] = 3, - ACTIONS(105), 1, + [413680] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17678), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17676), 1, + anon_sym_RPAREN, STATE(10926), 1, sym_comment, - [413669] = 3, + [413690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17680), 1, + ACTIONS(17678), 1, aux_sym__immediate_decimal_token1, STATE(10927), 1, sym_comment, - [413679] = 3, + [413700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17682), 1, - anon_sym_RBRACE, + ACTIONS(4305), 1, + anon_sym_in, STATE(10928), 1, sym_comment, - [413689] = 3, + [413710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13133), 1, + ACTIONS(8308), 1, aux_sym__immediate_decimal_token1, STATE(10929), 1, sym_comment, - [413699] = 3, + [413720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17684), 1, - anon_sym_RPAREN, + ACTIONS(17680), 1, + anon_sym_RBRACK, STATE(10930), 1, sym_comment, - [413709] = 3, - ACTIONS(105), 1, + [413730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17682), 1, + anon_sym_RPAREN, STATE(10931), 1, sym_comment, - [413719] = 3, + [413740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17686), 1, - anon_sym_RBRACE, + ACTIONS(13020), 1, + aux_sym__immediate_decimal_token1, STATE(10932), 1, sym_comment, - [413729] = 3, + [413750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17688), 1, - anon_sym_DOT2, + ACTIONS(17684), 1, + anon_sym_RBRACE, STATE(10933), 1, sym_comment, - [413739] = 3, - ACTIONS(3), 1, + [413760] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17690), 1, - anon_sym_RBRACK, + ACTIONS(17686), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10934), 1, sym_comment, - [413749] = 3, + [413770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17692), 1, + ACTIONS(17688), 1, anon_sym_RBRACE, STATE(10935), 1, sym_comment, - [413759] = 3, + [413780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17694), 1, - anon_sym_RBRACK, + ACTIONS(17690), 1, + anon_sym_RBRACE, STATE(10936), 1, sym_comment, - [413769] = 3, + [413790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17696), 1, - anon_sym_RBRACE, + ACTIONS(17692), 1, + anon_sym_LBRACK2, STATE(10937), 1, sym_comment, - [413779] = 3, + [413800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13139), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17694), 1, + anon_sym_RBRACE, STATE(10938), 1, sym_comment, - [413789] = 3, - ACTIONS(3), 1, + [413810] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17698), 1, - anon_sym_LBRACK2, + ACTIONS(17696), 1, + sym__entry_separator, STATE(10939), 1, sym_comment, - [413799] = 3, + [413820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17700), 1, - anon_sym_RPAREN, + ACTIONS(17698), 1, + anon_sym_DOT2, STATE(10940), 1, sym_comment, - [413809] = 3, + [413830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17702), 1, - anon_sym_RBRACK, + ACTIONS(17700), 1, + anon_sym_DOT2, STATE(10941), 1, sym_comment, - [413819] = 3, - ACTIONS(3), 1, + [413840] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17704), 1, - anon_sym_DOT2, + ACTIONS(16480), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10942), 1, sym_comment, - [413829] = 3, + [413850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17706), 1, + ACTIONS(17702), 1, anon_sym_DOT2, STATE(10943), 1, sym_comment, - [413839] = 3, + [413860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17708), 1, + ACTIONS(17704), 1, anon_sym_DOT2, STATE(10944), 1, sym_comment, - [413849] = 3, - ACTIONS(105), 1, + [413870] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11541), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17706), 1, + anon_sym_DOT2, STATE(10945), 1, sym_comment, - [413859] = 3, + [413880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17710), 1, + ACTIONS(17708), 1, anon_sym_DOT2, STATE(10946), 1, sym_comment, - [413869] = 3, + [413890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17712), 1, - anon_sym_DOT2, + ACTIONS(17710), 1, + aux_sym__immediate_decimal_token1, STATE(10947), 1, sym_comment, - [413879] = 3, - ACTIONS(3), 1, + [413900] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17714), 1, - anon_sym_DOT2, + ACTIONS(7904), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10948), 1, sym_comment, - [413889] = 3, + [413910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17716), 1, - anon_sym_RPAREN, + ACTIONS(17712), 1, + aux_sym__immediate_decimal_token1, STATE(10949), 1, sym_comment, - [413899] = 3, + [413920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17718), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17714), 1, + anon_sym_RPAREN, STATE(10950), 1, sym_comment, - [413909] = 3, + [413930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17720), 1, - anon_sym_RBRACE, + ACTIONS(13031), 1, + aux_sym__immediate_decimal_token1, STATE(10951), 1, sym_comment, - [413919] = 3, + [413940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17722), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17716), 1, + anon_sym_RBRACE, STATE(10952), 1, sym_comment, - [413929] = 3, - ACTIONS(105), 1, + [413950] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16530), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17718), 1, + aux_sym__immediate_decimal_token1, STATE(10953), 1, sym_comment, - [413939] = 3, + [413960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17724), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17720), 1, + sym_short_flag_identifier, STATE(10954), 1, sym_comment, - [413949] = 3, + [413970] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17726), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17722), 1, + aux_sym_unquoted_token3, STATE(10955), 1, sym_comment, - [413959] = 3, + [413980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17728), 1, + ACTIONS(17724), 1, aux_sym__immediate_decimal_token1, STATE(10956), 1, sym_comment, - [413969] = 3, - ACTIONS(3), 1, + [413990] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17730), 1, - anon_sym_RBRACK, + ACTIONS(17726), 1, + aux_sym_unquoted_token3, STATE(10957), 1, sym_comment, - [413979] = 3, - ACTIONS(105), 1, + [414000] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17732), 1, - aux_sym_unquoted_token3, + ACTIONS(17728), 1, + anon_sym_RBRACK, STATE(10958), 1, sym_comment, - [413989] = 3, - ACTIONS(3), 1, + [414010] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17734), 1, - anon_sym_DOT2, + ACTIONS(17730), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10959), 1, sym_comment, - [413999] = 3, - ACTIONS(3), 1, + [414020] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17736), 1, - anon_sym_DOT2, + ACTIONS(17732), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10960), 1, sym_comment, - [414009] = 3, + [414030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17738), 1, - anon_sym_DOT2, + ACTIONS(17734), 1, + aux_sym__immediate_decimal_token1, STATE(10961), 1, sym_comment, - [414019] = 3, - ACTIONS(3), 1, + [414040] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(13285), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17736), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10962), 1, sym_comment, - [414029] = 3, + [414050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16516), 1, - aux_sym_unquoted_token6, + ACTIONS(17738), 1, + anon_sym_LBRACK2, STATE(10963), 1, sym_comment, - [414039] = 3, + [414060] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17740), 1, - anon_sym_DOT2, + aux_sym__immediate_decimal_token1, STATE(10964), 1, sym_comment, - [414049] = 3, - ACTIONS(3), 1, + [414070] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17742), 1, - anon_sym_LBRACK2, + aux_sym__unquoted_in_list_token5, STATE(10965), 1, sym_comment, - [414059] = 3, + [414080] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17744), 1, - anon_sym_DOT2, + anon_sym_RBRACK, STATE(10966), 1, sym_comment, - [414069] = 3, + [414090] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17746), 1, anon_sym_DOT2, STATE(10967), 1, sym_comment, - [414079] = 3, + [414100] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17748), 1, anon_sym_RPAREN, STATE(10968), 1, sym_comment, - [414089] = 3, + [414110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17750), 1, - anon_sym_DOT2, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token1, STATE(10969), 1, sym_comment, - [414099] = 3, + [414120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17752), 1, + ACTIONS(17750), 1, anon_sym_DOT2, STATE(10970), 1, sym_comment, - [414109] = 3, + [414130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17754), 1, + ACTIONS(17752), 1, anon_sym_DOT2, STATE(10971), 1, sym_comment, - [414119] = 3, + [414140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17756), 1, - anon_sym_DOT2, + ACTIONS(17754), 1, + aux_sym__immediate_decimal_token1, STATE(10972), 1, sym_comment, - [414129] = 3, + [414150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17758), 1, - anon_sym_DOT2, + ACTIONS(14649), 1, + aux_sym__immediate_decimal_token1, STATE(10973), 1, sym_comment, - [414139] = 3, + [414160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17760), 1, - anon_sym_DOT2, + ACTIONS(17756), 1, + sym_short_flag_identifier, STATE(10974), 1, sym_comment, - [414149] = 3, - ACTIONS(3), 1, + [414170] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17762), 1, - anon_sym_EQ, + ACTIONS(17758), 1, + aux_sym_unquoted_token3, STATE(10975), 1, sym_comment, - [414159] = 3, + [414180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17764), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17760), 1, + anon_sym_RBRACE, STATE(10976), 1, sym_comment, - [414169] = 3, - ACTIONS(105), 1, + [414190] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17766), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17762), 1, + anon_sym_RBRACE, STATE(10977), 1, sym_comment, - [414179] = 3, + [414200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17768), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17764), 1, + anon_sym_DOT2, STATE(10978), 1, sym_comment, - [414189] = 3, + [414210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17770), 1, - anon_sym_RBRACE, + ACTIONS(17766), 1, + anon_sym_DOT2, STATE(10979), 1, sym_comment, - [414199] = 3, - ACTIONS(3), 1, + [414220] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17772), 1, - anon_sym_EQ, + ACTIONS(17768), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(10980), 1, sym_comment, - [414209] = 3, - ACTIONS(105), 1, + [414230] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16482), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17770), 1, + anon_sym_DOT2, STATE(10981), 1, sym_comment, - [414219] = 3, + [414240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17774), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17772), 1, + anon_sym_DOT2, STATE(10982), 1, sym_comment, - [414229] = 3, - ACTIONS(3), 1, + [414250] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17776), 1, - anon_sym_RBRACE, + ACTIONS(17774), 1, + aux_sym_unquoted_token3, STATE(10983), 1, sym_comment, - [414239] = 3, + [414260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17778), 1, - anon_sym_RBRACE, + ACTIONS(17776), 1, + anon_sym_DOT2, STATE(10984), 1, sym_comment, - [414249] = 3, + [414270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17780), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17778), 1, + anon_sym_RPAREN, STATE(10985), 1, sym_comment, - [414259] = 3, + [414280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17782), 1, - anon_sym_LBRACE, + ACTIONS(17780), 1, + anon_sym_LBRACK2, STATE(10986), 1, sym_comment, - [414269] = 3, + [414290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16118), 1, - anon_sym_EQ_GT, + ACTIONS(17782), 1, + anon_sym_RBRACK, STATE(10987), 1, sym_comment, - [414279] = 3, + [414300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17784), 1, - anon_sym_LBRACK2, + anon_sym_RPAREN, STATE(10988), 1, sym_comment, - [414289] = 3, + [414310] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17786), 1, - anon_sym_SEMI, + anon_sym_DOT2, STATE(10989), 1, sym_comment, - [414299] = 3, + [414320] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17788), 1, - anon_sym_RPAREN, + anon_sym_DOT2, STATE(10990), 1, sym_comment, - [414309] = 3, + [414330] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8220), 1, + ACTIONS(9395), 1, aux_sym__list_item_starts_with_sign_token1, STATE(10991), 1, sym_comment, - [414319] = 3, + [414340] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17790), 1, anon_sym_DOT2, STATE(10992), 1, sym_comment, - [414329] = 3, + [414350] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17792), 1, anon_sym_DOT2, STATE(10993), 1, sym_comment, - [414339] = 3, + [414360] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17794), 1, anon_sym_DOT2, STATE(10994), 1, sym_comment, - [414349] = 3, + [414370] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17796), 1, anon_sym_DOT2, STATE(10995), 1, sym_comment, - [414359] = 3, + [414380] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17798), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(10996), 1, sym_comment, - [414369] = 3, + [414390] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17800), 1, - anon_sym_RBRACK, + anon_sym_DOT2, STATE(10997), 1, sym_comment, - [414379] = 3, + [414400] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17802), 1, - anon_sym_LBRACK2, + aux_sym__immediate_decimal_token1, STATE(10998), 1, sym_comment, - [414389] = 3, + [414410] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17804), 1, anon_sym_DOT2, STATE(10999), 1, sym_comment, - [414399] = 3, + [414420] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17806), 1, anon_sym_DOT2, STATE(11000), 1, sym_comment, - [414409] = 3, - ACTIONS(105), 1, + [414430] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17808), 1, - aux_sym_unquoted_token3, + anon_sym_DOT2, STATE(11001), 1, sym_comment, - [414419] = 3, + [414440] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17810), 1, anon_sym_DOT2, STATE(11002), 1, sym_comment, - [414429] = 3, + [414450] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17812), 1, - anon_sym_RBRACE, + anon_sym_DOT2, STATE(11003), 1, sym_comment, - [414439] = 3, + [414460] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17814), 1, anon_sym_DOT2, STATE(11004), 1, sym_comment, - [414449] = 3, - ACTIONS(3), 1, + [414470] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17816), 1, - anon_sym_DOT2, + aux_sym_unquoted_token3, STATE(11005), 1, sym_comment, - [414459] = 3, + [414480] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17818), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11006), 1, sym_comment, - [414469] = 3, + [414490] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17820), 1, anon_sym_RBRACE, STATE(11007), 1, sym_comment, - [414479] = 3, + [414500] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17822), 1, - anon_sym_LBRACK2, + anon_sym_RBRACE, STATE(11008), 1, sym_comment, - [414489] = 3, + [414510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17824), 1, - anon_sym_SEMI, + ACTIONS(8623), 1, + aux_sym__immediate_decimal_token1, STATE(11009), 1, sym_comment, - [414499] = 3, + [414520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17826), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17824), 1, + anon_sym_DOT2, STATE(11010), 1, sym_comment, - [414509] = 3, - ACTIONS(105), 1, + [414530] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7382), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17826), 1, + anon_sym_RBRACE, STATE(11011), 1, sym_comment, - [414519] = 3, + [414540] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17828), 1, anon_sym_DOT2, STATE(11012), 1, sym_comment, - [414529] = 3, + [414550] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17830), 1, - anon_sym_RPAREN, + anon_sym_DOT2, STATE(11013), 1, sym_comment, - [414539] = 3, + [414560] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17832), 1, anon_sym_DOT2, STATE(11014), 1, sym_comment, - [414549] = 3, + [414570] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17834), 1, - anon_sym_DOT2, + anon_sym_RBRACE, STATE(11015), 1, sym_comment, - [414559] = 3, + [414580] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17836), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11016), 1, sym_comment, - [414569] = 3, + [414590] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17838), 1, - anon_sym_RBRACK, + anon_sym_DOT2, STATE(11017), 1, sym_comment, - [414579] = 3, - ACTIONS(3), 1, + [414600] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(17840), 1, - anon_sym_LBRACK2, + aux_sym__list_item_starts_with_sign_token1, STATE(11018), 1, sym_comment, - [414589] = 3, + [414610] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17842), 1, - anon_sym_EQ, + anon_sym_RPAREN, STATE(11019), 1, sym_comment, - [414599] = 3, + [414620] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17844), 1, - anon_sym_RBRACK, + anon_sym_DOT2, STATE(11020), 1, sym_comment, - [414609] = 3, + [414630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17846), 1, - anon_sym_RBRACE, + ACTIONS(14783), 1, + aux_sym__immediate_decimal_token1, STATE(11021), 1, sym_comment, - [414619] = 3, + [414640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17848), 1, + ACTIONS(17846), 1, anon_sym_DOT2, STATE(11022), 1, sym_comment, - [414629] = 3, - ACTIONS(105), 1, + [414650] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17850), 1, - aux_sym_unquoted_token3, + ACTIONS(17848), 1, + anon_sym_DOT2, STATE(11023), 1, sym_comment, - [414639] = 3, + [414660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17852), 1, + ACTIONS(17850), 1, anon_sym_DOT2, STATE(11024), 1, sym_comment, - [414649] = 3, + [414670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17854), 1, + ACTIONS(17852), 1, anon_sym_DOT2, STATE(11025), 1, sym_comment, - [414659] = 3, + [414680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17856), 1, - anon_sym_DOT2, + ACTIONS(17854), 1, + anon_sym_LBRACK2, STATE(11026), 1, sym_comment, - [414669] = 3, + [414690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17858), 1, - anon_sym_DOT2, + ACTIONS(17856), 1, + anon_sym_RBRACE, STATE(11027), 1, sym_comment, - [414679] = 3, + [414700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17860), 1, - anon_sym_LBRACK2, + ACTIONS(17858), 1, + anon_sym_RPAREN, STATE(11028), 1, sym_comment, - [414689] = 3, - ACTIONS(3), 1, + [414710] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17862), 1, - anon_sym_DOT2, + ACTIONS(17860), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11029), 1, sym_comment, - [414699] = 3, + [414720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17864), 1, + ACTIONS(17862), 1, anon_sym_DOT2, STATE(11030), 1, sym_comment, - [414709] = 3, + [414730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17866), 1, - anon_sym_DOT2, + ACTIONS(17864), 1, + anon_sym_DASH_GT, STATE(11031), 1, sym_comment, - [414719] = 3, + [414740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17868), 1, + ACTIONS(17866), 1, anon_sym_DOT2, STATE(11032), 1, sym_comment, - [414729] = 3, + [414750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17870), 1, - anon_sym_else, + ACTIONS(17868), 1, + anon_sym_DOT2, STATE(11033), 1, sym_comment, - [414739] = 3, + [414760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17872), 1, + ACTIONS(17870), 1, anon_sym_DOT2, STATE(11034), 1, sym_comment, - [414749] = 3, + [414770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17874), 1, - anon_sym_DOT2, + ACTIONS(17872), 1, + anon_sym_RBRACK, STATE(11035), 1, sym_comment, - [414759] = 3, + [414780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17876), 1, - anon_sym_DOT2, + ACTIONS(17874), 1, + anon_sym_LBRACK2, STATE(11036), 1, sym_comment, - [414769] = 3, + [414790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17878), 1, + ACTIONS(17876), 1, anon_sym_RBRACE, STATE(11037), 1, sym_comment, - [414779] = 3, + [414800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17880), 1, - anon_sym_LBRACK2, + ACTIONS(9299), 1, + aux_sym__immediate_decimal_token1, STATE(11038), 1, sym_comment, - [414789] = 3, + [414810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17882), 1, - anon_sym_RBRACK, + ACTIONS(17878), 1, + anon_sym_RBRACE, STATE(11039), 1, sym_comment, - [414799] = 3, + [414820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17884), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17880), 1, + anon_sym_DOT2, STATE(11040), 1, sym_comment, - [414809] = 3, - ACTIONS(105), 1, + [414830] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17886), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17882), 1, + anon_sym_DOT2, STATE(11041), 1, sym_comment, - [414819] = 3, + [414840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17888), 1, + ACTIONS(17884), 1, anon_sym_DOT2, STATE(11042), 1, sym_comment, - [414829] = 3, + [414850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17890), 1, - anon_sym_EQ_GT, + ACTIONS(17886), 1, + anon_sym_DOT2, STATE(11043), 1, sym_comment, - [414839] = 3, + [414860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17892), 1, + ACTIONS(17888), 1, anon_sym_DOT2, STATE(11044), 1, sym_comment, - [414849] = 3, - ACTIONS(3), 1, + [414870] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17894), 1, - anon_sym_DOT2, + ACTIONS(2293), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11045), 1, sym_comment, - [414859] = 3, + [414880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17896), 1, - anon_sym_DOT2, + ACTIONS(17890), 1, + anon_sym_LBRACK2, STATE(11046), 1, sym_comment, - [414869] = 3, + [414890] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17898), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(4229), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11047), 1, sym_comment, - [414879] = 3, + [414900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17900), 1, - anon_sym_LBRACK2, + ACTIONS(17892), 1, + anon_sym_RBRACE, STATE(11048), 1, sym_comment, - [414889] = 3, - ACTIONS(105), 1, + [414910] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16524), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17894), 1, + aux_sym__immediate_decimal_token1, STATE(11049), 1, sym_comment, - [414899] = 3, + [414920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17902), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17896), 1, + anon_sym_DOT2, STATE(11050), 1, sym_comment, - [414909] = 3, + [414930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17904), 1, - anon_sym_RBRACE, + ACTIONS(17898), 1, + anon_sym_RPAREN, STATE(11051), 1, sym_comment, - [414919] = 3, + [414940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17906), 1, + ACTIONS(17900), 1, anon_sym_DOT2, STATE(11052), 1, sym_comment, - [414929] = 3, + [414950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17908), 1, - anon_sym_DASH_GT, + ACTIONS(17902), 1, + anon_sym_DOT2, STATE(11053), 1, sym_comment, - [414939] = 3, + [414960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17910), 1, + ACTIONS(17904), 1, anon_sym_DOT2, STATE(11054), 1, sym_comment, - [414949] = 3, + [414970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17912), 1, - anon_sym_DOT2, + ACTIONS(17906), 1, + aux_sym__immediate_decimal_token1, STATE(11055), 1, sym_comment, - [414959] = 3, + [414980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17914), 1, - anon_sym_DOT2, + ACTIONS(17908), 1, + anon_sym_LBRACK2, STATE(11056), 1, sym_comment, - [414969] = 3, + [414990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9290), 1, + ACTIONS(17910), 1, aux_sym__immediate_decimal_token1, STATE(11057), 1, sym_comment, - [414979] = 3, + [415000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17916), 1, - anon_sym_LBRACK2, + ACTIONS(17912), 1, + anon_sym_RBRACE, STATE(11058), 1, sym_comment, - [414989] = 3, + [415010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17782), 1, - anon_sym_LBRACE, + ACTIONS(17914), 1, + anon_sym_RBRACE, STATE(11059), 1, sym_comment, - [414999] = 3, + [415020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17918), 1, - anon_sym_RPAREN, + ACTIONS(17916), 1, + anon_sym_DOT2, STATE(11060), 1, sym_comment, - [415009] = 3, + [415030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17920), 1, - anon_sym_RPAREN, + ACTIONS(17918), 1, + aux_sym__immediate_decimal_token1, STATE(11061), 1, sym_comment, - [415019] = 3, + [415040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17922), 1, + ACTIONS(17920), 1, anon_sym_DOT2, STATE(11062), 1, sym_comment, - [415029] = 3, - ACTIONS(105), 1, + [415050] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17922), 1, + anon_sym_DOT2, STATE(11063), 1, sym_comment, - [415039] = 3, + [415060] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17924), 1, anon_sym_DOT2, STATE(11064), 1, sym_comment, - [415049] = 3, + [415070] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17926), 1, - anon_sym_DOT2, + anon_sym_RBRACK, STATE(11065), 1, sym_comment, - [415059] = 3, + [415080] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(17928), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11066), 1, sym_comment, - [415069] = 3, + [415090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8391), 1, + ACTIONS(17930), 1, aux_sym__immediate_decimal_token1, STATE(11067), 1, sym_comment, - [415079] = 3, + [415100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17930), 1, - anon_sym_LBRACK2, + ACTIONS(17932), 1, + anon_sym_RPAREN, STATE(11068), 1, sym_comment, - [415089] = 3, - ACTIONS(3), 1, + [415110] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17932), 1, - anon_sym_DOT2, + ACTIONS(17934), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11069), 1, sym_comment, - [415099] = 3, + [415120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17934), 1, - anon_sym_RBRACE, + ACTIONS(17936), 1, + anon_sym_DOT2, STATE(11070), 1, sym_comment, - [415109] = 3, - ACTIONS(105), 1, + [415130] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17936), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(17938), 1, + sym_short_flag_identifier, STATE(11071), 1, sym_comment, - [415119] = 3, + [415140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17938), 1, + ACTIONS(17940), 1, anon_sym_DOT2, STATE(11072), 1, sym_comment, - [415129] = 3, + [415150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17940), 1, - anon_sym_RBRACE, + ACTIONS(17942), 1, + anon_sym_DOT2, STATE(11073), 1, sym_comment, - [415139] = 3, + [415160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17942), 1, + ACTIONS(17944), 1, anon_sym_DOT2, STATE(11074), 1, sym_comment, - [415149] = 3, + [415170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17944), 1, - anon_sym_DOT2, + ACTIONS(17946), 1, + aux_sym__immediate_decimal_token1, STATE(11075), 1, sym_comment, - [415159] = 3, + [415180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17946), 1, - anon_sym_DOT2, + ACTIONS(17948), 1, + anon_sym_LBRACK2, STATE(11076), 1, sym_comment, - [415169] = 3, - ACTIONS(3), 1, + [415190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17948), 1, - anon_sym_RBRACE, + ACTIONS(17950), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11077), 1, sym_comment, - [415179] = 3, + [415200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17950), 1, - anon_sym_LBRACK2, + ACTIONS(17952), 1, + aux_sym__immediate_decimal_token1, STATE(11078), 1, sym_comment, - [415189] = 3, - ACTIONS(3), 1, + [415210] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17952), 1, - anon_sym_RBRACE, + ACTIONS(17954), 1, + aux_sym_unquoted_token3, STATE(11079), 1, sym_comment, - [415199] = 3, + [415220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17956), 1, + anon_sym_DOT2, STATE(11080), 1, sym_comment, - [415209] = 3, - ACTIONS(105), 1, + [415230] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7858), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(17958), 1, + aux_sym__immediate_decimal_token1, STATE(11081), 1, sym_comment, - [415219] = 3, + [415240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17954), 1, + ACTIONS(17960), 1, anon_sym_DOT2, STATE(11082), 1, sym_comment, - [415229] = 3, + [415250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17956), 1, - anon_sym_RPAREN, + ACTIONS(17962), 1, + anon_sym_DOT2, STATE(11083), 1, sym_comment, - [415239] = 3, + [415260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17958), 1, + ACTIONS(17964), 1, anon_sym_DOT2, STATE(11084), 1, sym_comment, - [415249] = 3, + [415270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17960), 1, - anon_sym_DOT2, + ACTIONS(17966), 1, + aux_sym__immediate_decimal_token1, STATE(11085), 1, sym_comment, - [415259] = 3, + [415280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17962), 1, - anon_sym_DOT2, + ACTIONS(17968), 1, + anon_sym_LBRACK2, STATE(11086), 1, sym_comment, - [415269] = 3, + [415290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17964), 1, - anon_sym_RBRACK, + ACTIONS(17970), 1, + anon_sym_RBRACE, STATE(11087), 1, sym_comment, - [415279] = 3, + [415300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17966), 1, - anon_sym_LBRACK2, + ACTIONS(17972), 1, + anon_sym_RBRACE, STATE(11088), 1, sym_comment, - [415289] = 3, - ACTIONS(3), 1, + [415310] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(17968), 1, - anon_sym_DOT2, + ACTIONS(16520), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11089), 1, sym_comment, - [415299] = 3, + [415320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17970), 1, + ACTIONS(17974), 1, anon_sym_DOT2, STATE(11090), 1, sym_comment, - [415309] = 3, - ACTIONS(105), 1, + [415330] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(13405), 1, + aux_sym__immediate_decimal_token1, STATE(11091), 1, sym_comment, - [415319] = 3, + [415340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17972), 1, + ACTIONS(17976), 1, anon_sym_DOT2, STATE(11092), 1, sym_comment, - [415329] = 3, + [415350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17974), 1, - sym_identifier, + ACTIONS(17978), 1, + anon_sym_DOT2, STATE(11093), 1, sym_comment, - [415339] = 3, + [415360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17976), 1, + ACTIONS(17980), 1, anon_sym_DOT2, STATE(11094), 1, sym_comment, - [415349] = 3, + [415370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17978), 1, - anon_sym_DOT2, + ACTIONS(17982), 1, + anon_sym_RBRACE, STATE(11095), 1, sym_comment, - [415359] = 3, + [415380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17980), 1, - anon_sym_DOT2, + ACTIONS(17984), 1, + anon_sym_LBRACK2, STATE(11096), 1, sym_comment, - [415369] = 3, + [415390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17982), 1, - anon_sym_RPAREN, + ACTIONS(17986), 1, + anon_sym_RBRACE, STATE(11097), 1, sym_comment, - [415379] = 3, + [415400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17984), 1, - anon_sym_LBRACK2, + ACTIONS(17988), 1, + aux_sym__immediate_decimal_token1, STATE(11098), 1, sym_comment, - [415389] = 3, + [415410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8562), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17990), 1, + anon_sym_RBRACK, STATE(11099), 1, sym_comment, - [415399] = 3, + [415420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17986), 1, - anon_sym_RBRACE, + ACTIONS(17992), 1, + anon_sym_DOT2, STATE(11100), 1, sym_comment, - [415409] = 3, + [415430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17988), 1, - anon_sym_EQ, + ACTIONS(13684), 1, + aux_sym__immediate_decimal_token1, STATE(11101), 1, sym_comment, - [415419] = 3, + [415440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17990), 1, + ACTIONS(17994), 1, anon_sym_DOT2, STATE(11102), 1, sym_comment, - [415429] = 3, + [415450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17992), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(17996), 1, + anon_sym_DOT2, STATE(11103), 1, sym_comment, - [415439] = 3, + [415460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17994), 1, + ACTIONS(17998), 1, anon_sym_DOT2, STATE(11104), 1, sym_comment, - [415449] = 3, + [415470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17996), 1, - anon_sym_DOT2, + ACTIONS(18000), 1, + anon_sym_RPAREN, STATE(11105), 1, sym_comment, - [415459] = 3, + [415480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(17998), 1, - anon_sym_DOT2, + ACTIONS(18002), 1, + anon_sym_LBRACK2, STATE(11106), 1, sym_comment, - [415469] = 3, - ACTIONS(105), 1, + [415490] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16478), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18004), 1, + anon_sym_RBRACE, STATE(11107), 1, sym_comment, - [415479] = 3, + [415500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18000), 1, - anon_sym_LBRACK2, + ACTIONS(18006), 1, + aux_sym__immediate_decimal_token1, STATE(11108), 1, sym_comment, - [415489] = 3, + [415510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18002), 1, + ACTIONS(18008), 1, aux_sym__immediate_decimal_token1, STATE(11109), 1, sym_comment, - [415499] = 3, - ACTIONS(105), 1, + [415520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18004), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18010), 1, + anon_sym_DOT2, STATE(11110), 1, sym_comment, - [415509] = 3, + [415530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18006), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(14675), 1, + anon_sym_LPAREN2, STATE(11111), 1, sym_comment, - [415519] = 3, + [415540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18008), 1, + ACTIONS(18012), 1, anon_sym_DOT2, STATE(11112), 1, sym_comment, - [415529] = 3, + [415550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18010), 1, - anon_sym_EQ, + ACTIONS(18014), 1, + anon_sym_DOT2, STATE(11113), 1, sym_comment, - [415539] = 3, + [415560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18012), 1, + ACTIONS(18016), 1, anon_sym_DOT2, STATE(11114), 1, sym_comment, - [415549] = 3, + [415570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18014), 1, - anon_sym_DOT2, + ACTIONS(18018), 1, + anon_sym_RBRACE, STATE(11115), 1, sym_comment, - [415559] = 3, + [415580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18016), 1, - anon_sym_DOT2, + ACTIONS(18020), 1, + anon_sym_LBRACK2, STATE(11116), 1, sym_comment, - [415569] = 3, - ACTIONS(3), 1, + [415590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9451), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18022), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11117), 1, sym_comment, - [415579] = 3, - ACTIONS(3), 1, + [415600] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18018), 1, - anon_sym_LBRACK2, + ACTIONS(2998), 1, + aux_sym__unquoted_in_list_token3, STATE(11118), 1, sym_comment, - [415589] = 3, + [415610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18020), 1, - anon_sym_EQ, + ACTIONS(18024), 1, + ts_builtin_sym_end, STATE(11119), 1, sym_comment, - [415599] = 3, + [415620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18022), 1, + ACTIONS(18026), 1, anon_sym_DOT2, STATE(11120), 1, sym_comment, - [415609] = 3, + [415630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18024), 1, - anon_sym_DOT2, + ACTIONS(13711), 1, + aux_sym__immediate_decimal_token1, STATE(11121), 1, sym_comment, - [415619] = 3, + [415640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18026), 1, + ACTIONS(18028), 1, anon_sym_DOT2, STATE(11122), 1, sym_comment, - [415629] = 3, + [415650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18028), 1, + ACTIONS(18030), 1, anon_sym_DOT2, STATE(11123), 1, sym_comment, - [415639] = 3, + [415660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18030), 1, + ACTIONS(18032), 1, anon_sym_DOT2, STATE(11124), 1, sym_comment, - [415649] = 3, + [415670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18032), 1, - anon_sym_DOT2, + ACTIONS(18034), 1, + anon_sym_RBRACE, STATE(11125), 1, sym_comment, - [415659] = 3, + [415680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18034), 1, - anon_sym_DOT2, + ACTIONS(18036), 1, + anon_sym_LBRACK2, STATE(11126), 1, sym_comment, - [415669] = 3, + [415690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18036), 1, + ACTIONS(18038), 1, anon_sym_DOT2, STATE(11127), 1, sym_comment, - [415679] = 3, - ACTIONS(3), 1, + [415700] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18038), 1, - anon_sym_LBRACK2, + ACTIONS(18040), 1, + aux_sym__unquoted_in_list_token5, STATE(11128), 1, sym_comment, - [415689] = 3, - ACTIONS(105), 1, + [415710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18040), 1, - aux_sym_unquoted_token3, + ACTIONS(18042), 1, + anon_sym_in, STATE(11129), 1, sym_comment, - [415699] = 3, + [415720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18042), 1, + ACTIONS(18044), 1, anon_sym_DOT2, STATE(11130), 1, sym_comment, - [415709] = 3, - ACTIONS(3), 1, + [415730] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18044), 1, - anon_sym_RPAREN, + ACTIONS(18046), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11131), 1, sym_comment, - [415719] = 3, + [415740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18046), 1, + ACTIONS(18048), 1, anon_sym_DOT2, STATE(11132), 1, sym_comment, - [415729] = 3, + [415750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18048), 1, + ACTIONS(18050), 1, anon_sym_DOT2, STATE(11133), 1, sym_comment, - [415739] = 3, + [415760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18050), 1, + ACTIONS(18052), 1, anon_sym_DOT2, STATE(11134), 1, sym_comment, - [415749] = 3, + [415770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18052), 1, - anon_sym_DOT2, + ACTIONS(18054), 1, + anon_sym_RBRACK, STATE(11135), 1, sym_comment, - [415759] = 3, + [415780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18054), 1, - anon_sym_DOT2, + ACTIONS(18056), 1, + anon_sym_LBRACK2, STATE(11136), 1, sym_comment, - [415769] = 3, + [415790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18056), 1, - anon_sym_DOT2, + ACTIONS(18058), 1, + anon_sym_RPAREN, STATE(11137), 1, sym_comment, - [415779] = 3, + [415800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18058), 1, - anon_sym_LBRACK2, + ACTIONS(13327), 1, + aux_sym__immediate_decimal_token1, STATE(11138), 1, sym_comment, - [415789] = 3, + [415810] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18060), 1, anon_sym_DOT2, STATE(11139), 1, sym_comment, - [415799] = 3, - ACTIONS(105), 1, + [415820] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18062), 1, - aux_sym_unquoted_token3, + anon_sym_DOT2, STATE(11140), 1, sym_comment, - [415809] = 3, + [415830] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18064), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(11141), 1, sym_comment, - [415819] = 3, + [415840] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18066), 1, anon_sym_DOT2, STATE(11142), 1, sym_comment, - [415829] = 3, - ACTIONS(105), 1, + [415850] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18068), 1, - aux_sym__list_item_starts_with_sign_token1, + anon_sym_DOT2, STATE(11143), 1, sym_comment, - [415839] = 3, + [415860] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18070), 1, anon_sym_DOT2, STATE(11144), 1, sym_comment, - [415849] = 3, + [415870] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18072), 1, - anon_sym_DOT2, + anon_sym_RBRACE, STATE(11145), 1, sym_comment, - [415859] = 3, + [415880] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18074), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11146), 1, sym_comment, - [415869] = 3, + [415890] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18076), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(11147), 1, sym_comment, - [415879] = 3, + [415900] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18078), 1, - anon_sym_LBRACK2, + anon_sym_RBRACE, STATE(11148), 1, sym_comment, - [415889] = 3, - ACTIONS(105), 1, + [415910] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16594), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18080), 1, + anon_sym_DOT2, STATE(11149), 1, sym_comment, - [415899] = 3, + [415920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18080), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18082), 1, + anon_sym_DOT2, STATE(11150), 1, sym_comment, - [415909] = 3, - ACTIONS(3), 1, + [415930] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18082), 1, - anon_sym_RBRACE, + ACTIONS(2957), 1, + aux_sym_unquoted_token3, STATE(11151), 1, sym_comment, - [415919] = 3, + [415940] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18084), 1, anon_sym_DOT2, STATE(11152), 1, sym_comment, - [415929] = 3, + [415950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12900), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18086), 1, + anon_sym_DOT2, STATE(11153), 1, sym_comment, - [415939] = 3, + [415960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18086), 1, + ACTIONS(18088), 1, anon_sym_DOT2, STATE(11154), 1, sym_comment, - [415949] = 3, + [415970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18088), 1, - anon_sym_DOT2, + ACTIONS(18090), 1, + aux_sym__immediate_decimal_token1, STATE(11155), 1, sym_comment, - [415959] = 3, + [415980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18090), 1, - anon_sym_DOT2, + ACTIONS(18092), 1, + anon_sym_LBRACK2, STATE(11156), 1, sym_comment, - [415969] = 3, + [415990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18092), 1, - anon_sym_RPAREN, + ACTIONS(18094), 1, + anon_sym_GT, STATE(11157), 1, sym_comment, - [415979] = 3, + [416000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18094), 1, - anon_sym_LBRACK2, + ACTIONS(18096), 1, + anon_sym_RBRACE, STATE(11158), 1, sym_comment, - [415989] = 3, + [416010] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7614), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18098), 1, + aux_sym_unquoted_token3, STATE(11159), 1, sym_comment, - [415999] = 3, + [416020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18096), 1, + ACTIONS(18100), 1, anon_sym_DOT2, STATE(11160), 1, sym_comment, - [416009] = 3, - ACTIONS(3), 1, + [416030] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18098), 1, - anon_sym_RBRACE, + ACTIONS(18102), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11161), 1, sym_comment, - [416019] = 3, + [416040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18100), 1, + ACTIONS(18104), 1, anon_sym_DOT2, STATE(11162), 1, sym_comment, - [416029] = 3, + [416050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18102), 1, - anon_sym_RBRACE, + ACTIONS(18106), 1, + anon_sym_DOT2, STATE(11163), 1, sym_comment, - [416039] = 3, + [416060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18104), 1, + ACTIONS(18108), 1, anon_sym_DOT2, STATE(11164), 1, sym_comment, - [416049] = 3, + [416070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18106), 1, + ACTIONS(18110), 1, anon_sym_DOT2, STATE(11165), 1, sym_comment, - [416059] = 3, + [416080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18108), 1, - anon_sym_DOT2, + ACTIONS(18112), 1, + anon_sym_LBRACK2, STATE(11166), 1, sym_comment, - [416069] = 3, - ACTIONS(3), 1, + [416090] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(12937), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18114), 1, + aux_sym_unquoted_token3, STATE(11167), 1, sym_comment, - [416079] = 3, - ACTIONS(3), 1, + [416100] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18110), 1, - anon_sym_LBRACK2, + ACTIONS(8082), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11168), 1, sym_comment, - [416089] = 3, + [416110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18112), 1, - anon_sym_RPAREN, + ACTIONS(18116), 1, + anon_sym_RBRACK, STATE(11169), 1, sym_comment, - [416099] = 3, + [416120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18114), 1, - anon_sym_RBRACK, + ACTIONS(18118), 1, + anon_sym_DOT2, STATE(11170), 1, sym_comment, - [416109] = 3, + [416130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18116), 1, - anon_sym_LBRACE, + ACTIONS(18120), 1, + anon_sym_RBRACK, STATE(11171), 1, sym_comment, - [416119] = 3, + [416140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18118), 1, + ACTIONS(18122), 1, anon_sym_DOT2, STATE(11172), 1, sym_comment, - [416129] = 3, + [416150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18120), 1, - anon_sym_RBRACK, + ACTIONS(18124), 1, + anon_sym_DOT2, STATE(11173), 1, sym_comment, - [416139] = 3, + [416160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18122), 1, + ACTIONS(18126), 1, anon_sym_DOT2, STATE(11174), 1, sym_comment, - [416149] = 3, + [416170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18124), 1, + ACTIONS(18128), 1, anon_sym_DOT2, STATE(11175), 1, sym_comment, - [416159] = 3, + [416180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18126), 1, - anon_sym_DOT2, + ACTIONS(18130), 1, + anon_sym_LBRACK2, STATE(11176), 1, sym_comment, - [416169] = 3, - ACTIONS(3), 1, + [416190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18128), 1, - anon_sym_RPAREN, + ACTIONS(1785), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11177), 1, sym_comment, - [416179] = 3, - ACTIONS(3), 1, + [416200] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18130), 1, - anon_sym_LBRACK2, + ACTIONS(5822), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11178), 1, sym_comment, - [416189] = 3, + [416210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, + ACTIONS(18132), 1, aux_sym__immediate_decimal_token1, STATE(11179), 1, sym_comment, - [416199] = 3, + [416220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18132), 1, - anon_sym_RBRACE, + ACTIONS(18134), 1, + anon_sym_DOT2, STATE(11180), 1, sym_comment, - [416209] = 3, + [416230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18134), 1, - anon_sym_RBRACE, + ACTIONS(18136), 1, + anon_sym_DOT2, STATE(11181), 1, sym_comment, - [416219] = 3, + [416240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18136), 1, + ACTIONS(18138), 1, anon_sym_DOT2, STATE(11182), 1, sym_comment, - [416229] = 3, - ACTIONS(105), 1, + [416250] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18138), 1, - aux_sym_unquoted_token3, + ACTIONS(18140), 1, + anon_sym_DOT2, STATE(11183), 1, sym_comment, - [416239] = 3, + [416260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18140), 1, + ACTIONS(18142), 1, anon_sym_DOT2, STATE(11184), 1, sym_comment, - [416249] = 3, + [416270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18142), 1, - anon_sym_DOT2, + ACTIONS(13349), 1, + aux_sym__immediate_decimal_token1, STATE(11185), 1, sym_comment, - [416259] = 3, + [416280] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18144), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11186), 1, sym_comment, - [416269] = 3, + [416290] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18146), 1, - anon_sym_DOT2, + anon_sym_RPAREN, STATE(11187), 1, sym_comment, - [416279] = 3, + [416300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18148), 1, - anon_sym_LBRACK2, + anon_sym_RBRACE, STATE(11188), 1, sym_comment, - [416289] = 3, + [416310] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18150), 1, anon_sym_DOT2, STATE(11189), 1, sym_comment, - [416299] = 3, + [416320] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18152), 1, anon_sym_DOT2, STATE(11190), 1, sym_comment, - [416309] = 3, + [416330] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18154), 1, - anon_sym_DOT2, + aux_sym__immediate_decimal_token1, STATE(11191), 1, sym_comment, - [416319] = 3, + [416340] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18156), 1, anon_sym_DOT2, STATE(11192), 1, sym_comment, - [416329] = 3, + [416350] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18158), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RBRACE, STATE(11193), 1, sym_comment, - [416339] = 3, + [416360] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18160), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11194), 1, sym_comment, - [416349] = 3, - ACTIONS(105), 1, + [416370] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18162), 1, - aux_sym__list_item_starts_with_sign_token1, + anon_sym_make, STATE(11195), 1, sym_comment, - [416359] = 3, + [416380] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18164), 1, - anon_sym_LBRACK2, + aux_sym__immediate_decimal_token1, STATE(11196), 1, sym_comment, - [416369] = 3, + [416390] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18166), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT2, STATE(11197), 1, sym_comment, - [416379] = 3, - ACTIONS(105), 1, + [416400] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18168), 1, - aux_sym__list_item_starts_with_sign_token1, + aux_sym__immediate_decimal_token1, STATE(11198), 1, sym_comment, - [416389] = 3, + [416410] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18170), 1, anon_sym_DOT2, STATE(11199), 1, sym_comment, - [416399] = 3, + [416420] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18172), 1, - aux_sym__immediate_decimal_token1, + anon_sym_RPAREN, STATE(11200), 1, sym_comment, - [416409] = 3, + [416430] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18174), 1, - anon_sym_DOT2, + anon_sym_LBRACK2, STATE(11201), 1, sym_comment, - [416419] = 3, + [416440] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18176), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(11202), 1, sym_comment, - [416429] = 3, - ACTIONS(3), 1, + [416450] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18178), 1, - anon_sym_LBRACK2, + aux_sym__list_item_starts_with_sign_token1, STATE(11203), 1, sym_comment, - [416439] = 3, + [416460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12876), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18180), 1, + anon_sym_DOT2, STATE(11204), 1, sym_comment, - [416449] = 3, + [416470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18180), 1, - anon_sym_RPAREN, + ACTIONS(18182), 1, + anon_sym_EQ_GT, STATE(11205), 1, sym_comment, - [416459] = 3, + [416480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18182), 1, + ACTIONS(18184), 1, anon_sym_DOT2, STATE(11206), 1, sym_comment, - [416469] = 3, + [416490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(453), 1, - ts_builtin_sym_end, + ACTIONS(18186), 1, + anon_sym_RBRACE, STATE(11207), 1, sym_comment, - [416479] = 3, + [416500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18184), 1, - anon_sym_DOT2, + ACTIONS(18188), 1, + anon_sym_LBRACK2, STATE(11208), 1, sym_comment, - [416489] = 3, + [416510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18186), 1, - anon_sym_DOT2, + ACTIONS(18190), 1, + aux_sym__immediate_decimal_token1, STATE(11209), 1, sym_comment, - [416499] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(18188), 1, - anon_sym_LBRACK2, - STATE(11210), 1, - sym_comment, - [416509] = 3, + [416520] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9097), 1, + ACTIONS(18192), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11211), 1, + STATE(11210), 1, sym_comment, - [416519] = 3, + [416530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18190), 1, + ACTIONS(18194), 1, anon_sym_DOT2, + STATE(11211), 1, + sym_comment, + [416540] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(16634), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11212), 1, sym_comment, - [416529] = 3, + [416550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18192), 1, + ACTIONS(18196), 1, anon_sym_DOT2, STATE(11213), 1, sym_comment, - [416539] = 3, + [416560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18194), 1, - anon_sym_DOT2, + ACTIONS(18198), 1, + aux_sym__immediate_decimal_token1, STATE(11214), 1, sym_comment, - [416549] = 3, + [416570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18196), 1, - anon_sym_DOT2, + ACTIONS(18200), 1, + anon_sym_LBRACK2, STATE(11215), 1, sym_comment, - [416559] = 3, - ACTIONS(105), 1, + [416580] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11697), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18202), 1, + aux_sym__immediate_decimal_token1, STATE(11216), 1, sym_comment, - [416569] = 3, - ACTIONS(3), 1, + [416590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18198), 1, - anon_sym_LBRACK2, + ACTIONS(18204), 1, + aux_sym_unquoted_token3, STATE(11217), 1, sym_comment, - [416579] = 3, - ACTIONS(105), 1, + [416600] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18200), 1, - aux_sym_comment_token1, + ACTIONS(18206), 1, + anon_sym_DOT2, STATE(11218), 1, sym_comment, - [416589] = 3, - ACTIONS(3), 1, + [416610] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18202), 1, - anon_sym_RBRACE, + ACTIONS(18208), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11219), 1, sym_comment, - [416599] = 3, + [416620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18204), 1, + ACTIONS(18210), 1, anon_sym_DOT2, STATE(11220), 1, sym_comment, - [416609] = 3, + [416630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18206), 1, - anon_sym_RBRACE, + ACTIONS(18212), 1, + aux_sym__immediate_decimal_token1, STATE(11221), 1, sym_comment, - [416619] = 3, + [416640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18208), 1, - anon_sym_DOT2, + ACTIONS(18214), 1, + anon_sym_LBRACK2, STATE(11222), 1, sym_comment, - [416629] = 3, + [416650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9434), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18216), 1, + anon_sym_RBRACK, STATE(11223), 1, sym_comment, - [416639] = 3, + [416660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18210), 1, - anon_sym_LBRACK2, + ACTIONS(18218), 1, + anon_sym_LBRACE, STATE(11224), 1, sym_comment, - [416649] = 3, + [416670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18212), 1, - anon_sym_RPAREN, + ACTIONS(18220), 1, + anon_sym_DOT2, STATE(11225), 1, sym_comment, - [416659] = 3, + [416680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18214), 1, - anon_sym_RBRACK, + ACTIONS(18222), 1, + anon_sym_RPAREN, STATE(11226), 1, sym_comment, - [416669] = 3, + [416690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18216), 1, + ACTIONS(18224), 1, anon_sym_DOT2, STATE(11227), 1, sym_comment, - [416679] = 3, + [416700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18218), 1, - anon_sym_RPAREN, + ACTIONS(18226), 1, + aux_sym__immediate_decimal_token1, STATE(11228), 1, sym_comment, - [416689] = 3, + [416710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18220), 1, - anon_sym_DOT2, + ACTIONS(18228), 1, + anon_sym_LBRACK2, STATE(11229), 1, sym_comment, - [416699] = 3, - ACTIONS(3), 1, + [416720] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8566), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18230), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11230), 1, sym_comment, - [416709] = 3, + [416730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18222), 1, - anon_sym_LBRACK2, + ACTIONS(18232), 1, + aux_sym__immediate_decimal_token1, STATE(11231), 1, sym_comment, - [416719] = 3, + [416740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18224), 1, - anon_sym_RBRACE, + ACTIONS(18234), 1, + anon_sym_DOT2, STATE(11232), 1, sym_comment, - [416729] = 3, + [416750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18226), 1, + ACTIONS(18236), 1, aux_sym__immediate_decimal_token1, STATE(11233), 1, sym_comment, - [416739] = 3, + [416760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18228), 1, + ACTIONS(18238), 1, anon_sym_DOT2, STATE(11234), 1, sym_comment, - [416749] = 3, + [416770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18230), 1, - anon_sym_COLON, + ACTIONS(18240), 1, + anon_sym_DOT2, STATE(11235), 1, sym_comment, - [416759] = 3, + [416780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18232), 1, - anon_sym_DOT2, + ACTIONS(18242), 1, + anon_sym_LBRACK2, STATE(11236), 1, sym_comment, - [416769] = 3, + [416790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18234), 1, - anon_sym_RBRACE, + ACTIONS(18244), 1, + anon_sym_DOT2, STATE(11237), 1, sym_comment, - [416779] = 3, + [416800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18236), 1, - anon_sym_LBRACK2, + ACTIONS(18246), 1, + anon_sym_DOT2, STATE(11238), 1, sym_comment, - [416789] = 3, + [416810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18238), 1, - ts_builtin_sym_end, + ACTIONS(18248), 1, + anon_sym_DOT2, STATE(11239), 1, sym_comment, - [416799] = 3, - ACTIONS(105), 1, + [416820] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16520), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18250), 1, + anon_sym_DOT2, STATE(11240), 1, sym_comment, - [416809] = 3, + [416830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18240), 1, + ACTIONS(18252), 1, anon_sym_DOT2, STATE(11241), 1, sym_comment, - [416819] = 3, - ACTIONS(105), 1, + [416840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8144), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18254), 1, + anon_sym_DOT2, STATE(11242), 1, sym_comment, - [416829] = 3, + [416850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18242), 1, - anon_sym_DOT2, + ACTIONS(18256), 1, + anon_sym_LBRACK2, STATE(11243), 1, sym_comment, - [416839] = 3, + [416860] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18244), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18258), 1, + aux_sym_unquoted_token3, STATE(11244), 1, sym_comment, - [416849] = 3, + [416870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18246), 1, - anon_sym_LBRACK2, + ACTIONS(18260), 1, + anon_sym_RBRACE, STATE(11245), 1, sym_comment, - [416859] = 3, + [416880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12880), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18262), 1, + anon_sym_DOT2, STATE(11246), 1, sym_comment, - [416869] = 3, + [416890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18248), 1, - anon_sym_DOT2, + ACTIONS(18264), 1, + anon_sym_RBRACE, STATE(11247), 1, sym_comment, - [416879] = 3, + [416900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18250), 1, + ACTIONS(18266), 1, anon_sym_DOT2, STATE(11248), 1, sym_comment, - [416889] = 3, + [416910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18252), 1, - anon_sym_DOT2, + ACTIONS(18268), 1, + aux_sym__immediate_decimal_token1, STATE(11249), 1, sym_comment, - [416899] = 3, + [416920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18254), 1, - anon_sym_DOT2, + ACTIONS(18270), 1, + anon_sym_LBRACK2, STATE(11250), 1, sym_comment, - [416909] = 3, + [416930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18256), 1, - anon_sym_DOT2, + ACTIONS(18272), 1, + anon_sym_RBRACK, STATE(11251), 1, sym_comment, - [416919] = 3, + [416940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18258), 1, - anon_sym_LBRACK2, + ACTIONS(18274), 1, + anon_sym_RBRACK, STATE(11252), 1, sym_comment, - [416929] = 3, + [416950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18260), 1, + ACTIONS(18276), 1, anon_sym_DOT2, STATE(11253), 1, sym_comment, - [416939] = 3, - ACTIONS(105), 1, + [416960] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18262), 1, - aux_sym_unquoted_token3, + ACTIONS(18278), 1, + anon_sym_RPAREN, STATE(11254), 1, sym_comment, - [416949] = 3, + [416970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18264), 1, + ACTIONS(18280), 1, anon_sym_DOT2, STATE(11255), 1, sym_comment, - [416959] = 3, - ACTIONS(105), 1, + [416980] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18266), 1, - aux_sym_unquoted_token3, + ACTIONS(18282), 1, + aux_sym__immediate_decimal_token1, STATE(11256), 1, sym_comment, - [416969] = 3, + [416990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18268), 1, - anon_sym_DOT2, + ACTIONS(18284), 1, + anon_sym_RBRACE, STATE(11257), 1, sym_comment, - [416979] = 3, + [417000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18270), 1, - anon_sym_DOT2, + ACTIONS(18286), 1, + anon_sym_RBRACE, STATE(11258), 1, sym_comment, - [416989] = 3, + [417010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18272), 1, + ACTIONS(18288), 1, anon_sym_DOT2, STATE(11259), 1, sym_comment, - [416999] = 3, + [417020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18274), 1, + ACTIONS(18290), 1, anon_sym_DOT2, STATE(11260), 1, sym_comment, - [417009] = 3, + [417030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18276), 1, - anon_sym_DOT2, + ACTIONS(18292), 1, + anon_sym_EQ, STATE(11261), 1, sym_comment, - [417019] = 3, + [417040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18278), 1, - anon_sym_DOT2, + ACTIONS(18294), 1, + anon_sym_RBRACK, STATE(11262), 1, sym_comment, - [417029] = 3, - ACTIONS(3), 1, + [417050] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18280), 1, - anon_sym_DOT2, + ACTIONS(16600), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11263), 1, sym_comment, - [417039] = 3, + [417060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18282), 1, - anon_sym_LBRACK2, + ACTIONS(18296), 1, + anon_sym_DOT2, STATE(11264), 1, sym_comment, - [417049] = 3, + [417070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18284), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18298), 1, + anon_sym_RPAREN, STATE(11265), 1, sym_comment, - [417059] = 3, + [417080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18286), 1, - anon_sym_DOT2, + ACTIONS(18300), 1, + aux_sym__immediate_decimal_token1, STATE(11266), 1, sym_comment, - [417069] = 3, + [417090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18288), 1, - anon_sym_RPAREN, + ACTIONS(18302), 1, + anon_sym_DOT2, STATE(11267), 1, sym_comment, - [417079] = 3, - ACTIONS(105), 1, + [417100] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18290), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18304), 1, + anon_sym_DOT2, STATE(11268), 1, sym_comment, - [417089] = 3, + [417110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18292), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18306), 1, + anon_sym_RBRACE, STATE(11269), 1, sym_comment, - [417099] = 3, + [417120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18294), 1, - anon_sym_DOT2, + ACTIONS(8339), 1, + aux_sym__immediate_decimal_token1, STATE(11270), 1, sym_comment, - [417109] = 3, - ACTIONS(105), 1, + [417130] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18296), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18308), 1, + anon_sym_DOT2, STATE(11271), 1, sym_comment, - [417119] = 3, + [417140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18298), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18310), 1, + anon_sym_DOT2, STATE(11272), 1, sym_comment, - [417129] = 3, + [417150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18300), 1, + ACTIONS(18312), 1, anon_sym_DOT2, STATE(11273), 1, sym_comment, - [417139] = 3, + [417160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18302), 1, - anon_sym_RBRACE, + ACTIONS(18314), 1, + anon_sym_DOT2, STATE(11274), 1, sym_comment, - [417149] = 3, + [417170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18304), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18316), 1, + anon_sym_RBRACE, STATE(11275), 1, sym_comment, - [417159] = 3, + [417180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18306), 1, + ACTIONS(18318), 1, anon_sym_DOT2, STATE(11276), 1, sym_comment, - [417169] = 3, + [417190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18308), 1, - anon_sym_RPAREN, + ACTIONS(7364), 1, + anon_sym_RBRACE, STATE(11277), 1, sym_comment, - [417179] = 3, + [417200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18310), 1, + ACTIONS(18320), 1, anon_sym_DOT2, STATE(11278), 1, sym_comment, - [417189] = 3, - ACTIONS(3), 1, + [417210] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18312), 1, - anon_sym_EQ_GT, + ACTIONS(871), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11279), 1, sym_comment, - [417199] = 3, + [417220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18314), 1, + ACTIONS(18322), 1, anon_sym_DOT2, STATE(11280), 1, sym_comment, - [417209] = 3, - ACTIONS(105), 1, + [417230] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18324), 1, + anon_sym_DOT2, STATE(11281), 1, sym_comment, - [417219] = 3, + [417240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18316), 1, + ACTIONS(18326), 1, anon_sym_DOT2, STATE(11282), 1, sym_comment, - [417229] = 3, - ACTIONS(3), 1, + [417250] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18318), 1, - anon_sym_DOT2, + ACTIONS(18328), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11283), 1, sym_comment, - [417239] = 3, + [417260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18320), 1, + ACTIONS(18330), 1, anon_sym_DOT2, STATE(11284), 1, sym_comment, - [417249] = 3, + [417270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18322), 1, - anon_sym_RBRACE, + ACTIONS(18332), 1, + anon_sym_DOT2, STATE(11285), 1, sym_comment, - [417259] = 3, + [417280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18324), 1, + ACTIONS(18334), 1, anon_sym_DOT2, STATE(11286), 1, sym_comment, - [417269] = 3, + [417290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18326), 1, - anon_sym_RBRACE, + ACTIONS(18336), 1, + aux_sym__immediate_decimal_token1, STATE(11287), 1, sym_comment, - [417279] = 3, + [417300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18328), 1, + ACTIONS(18338), 1, anon_sym_DOT2, STATE(11288), 1, sym_comment, - [417289] = 3, + [417310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18330), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18340), 1, + anon_sym_EQ_GT, STATE(11289), 1, sym_comment, - [417299] = 3, + [417320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18332), 1, + ACTIONS(18342), 1, anon_sym_DOT2, STATE(11290), 1, sym_comment, - [417309] = 3, + [417330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18334), 1, - anon_sym_RPAREN, + ACTIONS(18344), 1, + anon_sym_DOT2, STATE(11291), 1, sym_comment, - [417319] = 3, + [417340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18336), 1, + ACTIONS(18346), 1, anon_sym_DOT2, STATE(11292), 1, sym_comment, - [417329] = 3, + [417350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18338), 1, - anon_sym_RBRACK, + ACTIONS(18348), 1, + anon_sym_DOT2, STATE(11293), 1, sym_comment, - [417339] = 3, + [417360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18340), 1, + ACTIONS(18350), 1, anon_sym_DOT2, STATE(11294), 1, sym_comment, - [417349] = 3, + [417370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18342), 1, - anon_sym_RBRACK, + ACTIONS(18352), 1, + anon_sym_DOT2, STATE(11295), 1, sym_comment, - [417359] = 3, + [417380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18344), 1, + ACTIONS(18354), 1, anon_sym_DOT2, STATE(11296), 1, sym_comment, - [417369] = 3, - ACTIONS(3), 1, + [417390] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18346), 1, - anon_sym_RPAREN, + ACTIONS(1175), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11297), 1, sym_comment, - [417379] = 3, + [417400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18348), 1, + ACTIONS(18356), 1, anon_sym_DOT2, STATE(11298), 1, sym_comment, - [417389] = 3, + [417410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18350), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18358), 1, + anon_sym_RBRACE, STATE(11299), 1, sym_comment, - [417399] = 3, + [417420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18352), 1, + ACTIONS(18360), 1, anon_sym_DOT2, STATE(11300), 1, sym_comment, - [417409] = 3, + [417430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18354), 1, - anon_sym_RBRACE, + ACTIONS(18362), 1, + aux_sym__immediate_decimal_token1, STATE(11301), 1, sym_comment, - [417419] = 3, + [417440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18356), 1, + ACTIONS(18364), 1, anon_sym_DOT2, STATE(11302), 1, sym_comment, - [417429] = 3, + [417450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18358), 1, - anon_sym_RBRACE, + ACTIONS(18366), 1, + anon_sym_DOT2, STATE(11303), 1, sym_comment, - [417439] = 3, + [417460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18360), 1, + ACTIONS(18368), 1, anon_sym_DOT2, STATE(11304), 1, sym_comment, - [417449] = 3, - ACTIONS(3), 1, + [417470] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18362), 1, - anon_sym_DOT2, + ACTIONS(18370), 1, + aux_sym_unquoted_token3, STATE(11305), 1, sym_comment, - [417459] = 3, + [417480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18364), 1, + ACTIONS(18372), 1, anon_sym_DOT2, STATE(11306), 1, sym_comment, - [417469] = 3, + [417490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18366), 1, - anon_sym_DOT2, + ACTIONS(18374), 1, + aux_sym__immediate_decimal_token1, STATE(11307), 1, sym_comment, - [417479] = 3, + [417500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18368), 1, + ACTIONS(18376), 1, anon_sym_DOT2, STATE(11308), 1, sym_comment, - [417489] = 3, - ACTIONS(105), 1, + [417510] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18378), 1, + anon_sym_RPAREN, STATE(11309), 1, sym_comment, - [417499] = 3, + [417520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18370), 1, + ACTIONS(18380), 1, anon_sym_DOT2, STATE(11310), 1, sym_comment, - [417509] = 3, - ACTIONS(105), 1, + [417530] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18372), 1, - aux_sym_unquoted_token3, + ACTIONS(18382), 1, + aux_sym__immediate_decimal_token1, STATE(11311), 1, sym_comment, - [417519] = 3, + [417540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18374), 1, + ACTIONS(18384), 1, anon_sym_DOT2, STATE(11312), 1, sym_comment, - [417529] = 3, + [417550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18376), 1, - anon_sym_DOT2, + ACTIONS(18386), 1, + anon_sym_RBRACE, STATE(11313), 1, sym_comment, - [417539] = 3, + [417560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18378), 1, + ACTIONS(18388), 1, anon_sym_DOT2, STATE(11314), 1, sym_comment, - [417549] = 3, - ACTIONS(3), 1, + [417570] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18380), 1, - anon_sym_DOT2, + ACTIONS(18390), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11315), 1, sym_comment, - [417559] = 3, + [417580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18382), 1, + ACTIONS(18392), 1, anon_sym_DOT2, STATE(11316), 1, sym_comment, - [417569] = 3, - ACTIONS(3), 1, + [417590] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18384), 1, - anon_sym_make, + ACTIONS(18394), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11317), 1, sym_comment, - [417579] = 3, + [417600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18386), 1, + ACTIONS(18396), 1, anon_sym_DOT2, STATE(11318), 1, sym_comment, - [417589] = 3, - ACTIONS(3), 1, + [417610] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18388), 1, - anon_sym_DOT2, + ACTIONS(983), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11319), 1, sym_comment, - [417599] = 3, + [417620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18390), 1, + ACTIONS(18398), 1, anon_sym_DOT2, STATE(11320), 1, sym_comment, - [417609] = 3, + [417630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18392), 1, - anon_sym_DOT2, + ACTIONS(18400), 1, + anon_sym_RBRACK, STATE(11321), 1, sym_comment, - [417619] = 3, + [417640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18394), 1, + ACTIONS(18402), 1, anon_sym_DOT2, STATE(11322), 1, sym_comment, - [417629] = 3, + [417650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18396), 1, + ACTIONS(18404), 1, anon_sym_RPAREN, STATE(11323), 1, sym_comment, - [417639] = 3, + [417660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18398), 1, + ACTIONS(18406), 1, anon_sym_DOT2, STATE(11324), 1, sym_comment, - [417649] = 3, + [417670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18400), 1, + ACTIONS(12854), 1, aux_sym__immediate_decimal_token1, STATE(11325), 1, sym_comment, - [417659] = 3, + [417680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18402), 1, + ACTIONS(18408), 1, anon_sym_DOT2, STATE(11326), 1, sym_comment, - [417669] = 3, - ACTIONS(105), 1, + [417690] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18404), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18410), 1, + aux_sym__immediate_decimal_token1, STATE(11327), 1, sym_comment, - [417679] = 3, + [417700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18406), 1, + ACTIONS(18412), 1, anon_sym_DOT2, STATE(11328), 1, sym_comment, - [417689] = 3, + [417710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18408), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18414), 1, + anon_sym_RBRACE, STATE(11329), 1, sym_comment, - [417699] = 3, + [417720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18410), 1, + ACTIONS(18416), 1, anon_sym_DOT2, STATE(11330), 1, sym_comment, - [417709] = 3, - ACTIONS(105), 1, + [417730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16630), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18418), 1, + anon_sym_RBRACE, STATE(11331), 1, sym_comment, - [417719] = 3, + [417740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18412), 1, + ACTIONS(18420), 1, anon_sym_DOT2, STATE(11332), 1, sym_comment, - [417729] = 3, - ACTIONS(3), 1, + [417750] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18414), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18422), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11333), 1, sym_comment, - [417739] = 3, + [417760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18416), 1, + ACTIONS(18424), 1, anon_sym_DOT2, STATE(11334), 1, sym_comment, - [417749] = 3, - ACTIONS(3), 1, + [417770] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18418), 1, - anon_sym_RBRACE, + ACTIONS(4032), 1, + aux_sym__unquoted_in_list_token3, STATE(11335), 1, sym_comment, - [417759] = 3, + [417780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18420), 1, + ACTIONS(18426), 1, anon_sym_DOT2, STATE(11336), 1, sym_comment, - [417769] = 3, + [417790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8249), 1, + ACTIONS(18428), 1, aux_sym__immediate_decimal_token1, STATE(11337), 1, sym_comment, - [417779] = 3, + [417800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18422), 1, + ACTIONS(18430), 1, anon_sym_DOT2, STATE(11338), 1, sym_comment, - [417789] = 3, + [417810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18424), 1, - anon_sym_RPAREN, + ACTIONS(18432), 1, + aux_sym__immediate_decimal_token1, STATE(11339), 1, sym_comment, - [417799] = 3, + [417820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18426), 1, - anon_sym_DOT2, + ACTIONS(16570), 1, + aux_sym_unquoted_token6, STATE(11340), 1, sym_comment, - [417809] = 3, + [417830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18428), 1, - anon_sym_RBRACE, + ACTIONS(18434), 1, + anon_sym_DOT2, STATE(11341), 1, sym_comment, - [417819] = 3, - ACTIONS(3), 1, + [417840] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8387), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18436), 1, + aux_sym_unquoted_token3, STATE(11342), 1, sym_comment, - [417829] = 3, + [417850] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18430), 1, - aux_sym_shebang_token1, + ACTIONS(8617), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11343), 1, sym_comment, - [417839] = 3, + [417860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18432), 1, + ACTIONS(18438), 1, anon_sym_DOT2, STATE(11344), 1, sym_comment, - [417849] = 3, + [417870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18434), 1, - anon_sym_DOT2, + ACTIONS(18440), 1, + anon_sym_RBRACK, STATE(11345), 1, sym_comment, - [417859] = 3, - ACTIONS(3), 1, + [417880] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18436), 1, - anon_sym_DOT2, + ACTIONS(8451), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11346), 1, sym_comment, - [417869] = 3, + [417890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18438), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18442), 1, + anon_sym_RBRACK, STATE(11347), 1, sym_comment, - [417879] = 3, + [417900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18440), 1, - anon_sym_DOT2, + ACTIONS(18444), 1, + anon_sym_in, STATE(11348), 1, sym_comment, - [417889] = 3, + [417910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13319), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18446), 1, + anon_sym_RPAREN, STATE(11349), 1, sym_comment, - [417899] = 3, + [417920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18442), 1, - anon_sym_in, + ACTIONS(13168), 1, + aux_sym__immediate_decimal_token1, STATE(11350), 1, sym_comment, - [417909] = 3, + [417930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18444), 1, - anon_sym_in, + ACTIONS(18448), 1, + sym_short_flag_identifier, STATE(11351), 1, sym_comment, - [417919] = 3, + [417940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18446), 1, - anon_sym_DOT2, + ACTIONS(18450), 1, + anon_sym_RPAREN, STATE(11352), 1, sym_comment, - [417929] = 3, + [417950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18448), 1, - anon_sym_RBRACE, + ACTIONS(18452), 1, + anon_sym_RPAREN, STATE(11353), 1, sym_comment, - [417939] = 3, + [417960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18450), 1, - anon_sym_RBRACE, + ACTIONS(18454), 1, + anon_sym_DOT2, STATE(11354), 1, sym_comment, - [417949] = 3, - ACTIONS(105), 1, + [417970] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18452), 1, - sym__entry_separator, + ACTIONS(18456), 1, + anon_sym_DOT2, STATE(11355), 1, sym_comment, - [417959] = 3, + [417980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18454), 1, - anon_sym_DOT2, + ACTIONS(18458), 1, + anon_sym_in, STATE(11356), 1, sym_comment, - [417969] = 3, + [417990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18456), 1, - anon_sym_DOT2, + ACTIONS(18460), 1, + anon_sym_RBRACE, STATE(11357), 1, sym_comment, - [417979] = 3, + [418000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18458), 1, - anon_sym_in, + ACTIONS(18462), 1, + anon_sym_RBRACE, STATE(11358), 1, sym_comment, - [417989] = 3, + [418010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7332), 1, - anon_sym_RBRACE, + ACTIONS(12862), 1, + aux_sym__immediate_decimal_token1, STATE(11359), 1, sym_comment, - [417999] = 3, + [418020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18460), 1, + ACTIONS(18464), 1, anon_sym_RBRACE, STATE(11360), 1, sym_comment, - [418009] = 3, + [418030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8158), 1, + ACTIONS(18466), 1, aux_sym__immediate_decimal_token1, STATE(11361), 1, sym_comment, - [418019] = 3, - ACTIONS(3), 1, + [418040] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18462), 1, - anon_sym_RPAREN, + ACTIONS(18468), 1, + aux_sym_unquoted_token3, STATE(11362), 1, sym_comment, - [418029] = 3, + [418050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18464), 1, - anon_sym_RBRACK, + ACTIONS(18470), 1, + aux_sym__immediate_decimal_token1, STATE(11363), 1, sym_comment, - [418039] = 3, - ACTIONS(105), 1, + [418060] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16568), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18472), 1, + aux_sym__immediate_decimal_token1, STATE(11364), 1, sym_comment, - [418049] = 3, + [418070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18466), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18474), 1, + anon_sym_RBRACE, STATE(11365), 1, sym_comment, - [418059] = 3, + [418080] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18468), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(7825), 1, + aux_sym__unquoted_in_list_token5, STATE(11366), 1, sym_comment, - [418069] = 3, - ACTIONS(3), 1, + [418090] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18470), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18476), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11367), 1, sym_comment, - [418079] = 3, + [418100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18472), 1, - anon_sym_DOT2, + ACTIONS(18478), 1, + aux_sym__immediate_decimal_token1, STATE(11368), 1, sym_comment, - [418089] = 3, + [418110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18474), 1, - anon_sym_RBRACE, + ACTIONS(18480), 1, + aux_sym__immediate_decimal_token1, STATE(11369), 1, sym_comment, - [418099] = 3, + [418120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18476), 1, - anon_sym_DOT2, + ACTIONS(18482), 1, + anon_sym_RBRACK, STATE(11370), 1, sym_comment, - [418109] = 3, + [418130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18478), 1, - anon_sym_DOT2, + ACTIONS(18484), 1, + anon_sym_RPAREN, STATE(11371), 1, sym_comment, - [418119] = 3, - ACTIONS(105), 1, + [418140] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18480), 1, - aux_sym_unquoted_token3, + ACTIONS(13340), 1, + aux_sym__immediate_decimal_token1, STATE(11372), 1, sym_comment, - [418129] = 3, - ACTIONS(105), 1, + [418150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18482), 1, - aux_sym_unquoted_token3, + ACTIONS(18486), 1, + anon_sym_RBRACE, STATE(11373), 1, sym_comment, - [418139] = 3, + [418160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18484), 1, + ACTIONS(18488), 1, anon_sym_DOT2, STATE(11374), 1, sym_comment, - [418149] = 3, - ACTIONS(3), 1, + [418170] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18486), 1, - anon_sym_DOT2, + ACTIONS(18490), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11375), 1, sym_comment, - [418159] = 3, - ACTIONS(105), 1, + [418180] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18488), 1, - sym__entry_separator, + ACTIONS(18492), 1, + anon_sym_DOT2, STATE(11376), 1, sym_comment, - [418169] = 3, - ACTIONS(3), 1, + [418190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7334), 1, - anon_sym_RBRACE, + ACTIONS(7226), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11377), 1, sym_comment, - [418179] = 3, + [418200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18490), 1, - anon_sym_DOT2, + ACTIONS(18494), 1, + aux_sym__immediate_decimal_token1, STATE(11378), 1, sym_comment, - [418189] = 3, + [418210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18492), 1, - anon_sym_DOT2, + ACTIONS(18496), 1, + anon_sym_RBRACE, STATE(11379), 1, sym_comment, - [418199] = 3, + [418220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18494), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18498), 1, + anon_sym_RBRACE, STATE(11380), 1, sym_comment, - [418209] = 3, + [418230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18496), 1, - anon_sym_in, + ACTIONS(18500), 1, + anon_sym_RPAREN, STATE(11381), 1, sym_comment, - [418219] = 3, + [418240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18498), 1, - anon_sym_SEMI, + ACTIONS(13189), 1, + aux_sym__immediate_decimal_token1, STATE(11382), 1, sym_comment, - [418229] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(18500), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11383), 1, - sym_comment, - [418239] = 3, + [418250] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18502), 1, - aux_sym__immediate_decimal_token1, - STATE(11384), 1, + anon_sym_RBRACE, + STATE(11383), 1, sym_comment, - [418249] = 3, + [418260] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18504), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11385), 1, + STATE(11384), 1, sym_comment, - [418259] = 3, + [418270] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18506), 1, - aux_sym__immediate_decimal_token1, - STATE(11386), 1, + anon_sym_RBRACE, + STATE(11385), 1, sym_comment, - [418269] = 3, + [418280] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18508), 1, - anon_sym_RBRACE, - STATE(11387), 1, + anon_sym_DOT2, + STATE(11386), 1, sym_comment, - [418279] = 3, + [418290] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18510), 1, - anon_sym_catch, - STATE(11388), 1, + aux_sym__immediate_decimal_token1, + STATE(11387), 1, sym_comment, - [418289] = 3, + [418300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18512), 1, - sym_identifier, - STATE(11389), 1, + anon_sym_DOT2, + STATE(11388), 1, sym_comment, - [418299] = 3, + [418310] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18514), 1, - sym_identifier, - STATE(11390), 1, + anon_sym_RBRACE, + STATE(11389), 1, sym_comment, - [418309] = 3, + [418320] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18516), 1, - sym_long_flag_identifier, - STATE(11391), 1, + anon_sym_COLON, + STATE(11390), 1, sym_comment, - [418319] = 3, + [418330] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18518), 1, - sym_param_short_flag_identifier, + anon_sym_RBRACE, + STATE(11391), 1, + sym_comment, + [418340] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(16492), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11392), 1, sym_comment, - [418329] = 3, + [418350] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18520), 1, - anon_sym_EQ, + anon_sym_DOT2, STATE(11393), 1, sym_comment, - [418339] = 3, + [418360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8196), 1, + ACTIONS(13052), 1, aux_sym__immediate_decimal_token1, STATE(11394), 1, sym_comment, - [418349] = 3, + [418370] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18522), 1, - anon_sym_RPAREN, + anon_sym_DOT2, STATE(11395), 1, sym_comment, - [418359] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2189), 1, - aux_sym__list_item_starts_with_sign_token1, - STATE(11396), 1, - sym_comment, - [418369] = 3, + [418380] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18524), 1, anon_sym_DOT2, - STATE(11397), 1, + STATE(11396), 1, sym_comment, - [418379] = 3, + [418390] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18526), 1, anon_sym_DOT2, - STATE(11398), 1, + STATE(11397), 1, sym_comment, - [418389] = 3, + [418400] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18528), 1, anon_sym_DOT2, + STATE(11398), 1, + sym_comment, + [418410] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(18530), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11399), 1, sym_comment, - [418399] = 3, + [418420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18530), 1, - anon_sym_DOT2, + ACTIONS(13048), 1, + aux_sym__immediate_decimal_token1, STATE(11400), 1, sym_comment, - [418409] = 3, - ACTIONS(3), 1, + [418430] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18532), 1, - anon_sym_EQ, + aux_sym__list_item_starts_with_sign_token1, STATE(11401), 1, sym_comment, - [418419] = 3, + [418440] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18534), 1, anon_sym_DOT2, STATE(11402), 1, sym_comment, - [418429] = 3, + [418450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18536), 1, - anon_sym_DOT2, + ACTIONS(14725), 1, + anon_sym_LPAREN2, STATE(11403), 1, sym_comment, - [418439] = 3, + [418460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18538), 1, - anon_sym_RBRACE, + ACTIONS(18536), 1, + anon_sym_DOT2, STATE(11404), 1, sym_comment, - [418449] = 3, + [418470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14680), 1, - anon_sym_LPAREN2, + ACTIONS(18538), 1, + anon_sym_DOT2, STATE(11405), 1, sym_comment, - [418459] = 3, + [418480] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18540), 1, anon_sym_DOT2, STATE(11406), 1, sym_comment, - [418469] = 3, - ACTIONS(3), 1, + [418490] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18542), 1, - anon_sym_DOT2, + ACTIONS(837), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11407), 1, sym_comment, - [418479] = 3, + [418500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18544), 1, - anon_sym_DOT2, + ACTIONS(18542), 1, + anon_sym_RBRACK, STATE(11408), 1, sym_comment, - [418489] = 3, + [418510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18546), 1, - anon_sym_RBRACE, + ACTIONS(14912), 1, + anon_sym_LPAREN2, STATE(11409), 1, sym_comment, - [418499] = 3, + [418520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18544), 1, + anon_sym_DOT2, STATE(11410), 1, sym_comment, - [418509] = 3, + [418530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15012), 1, + ACTIONS(13924), 1, anon_sym_LPAREN2, STATE(11411), 1, sym_comment, - [418519] = 3, + [418540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18548), 1, + ACTIONS(18546), 1, anon_sym_DOT2, STATE(11412), 1, sym_comment, - [418529] = 3, + [418550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13830), 1, + ACTIONS(14946), 1, anon_sym_LPAREN2, STATE(11413), 1, sym_comment, - [418539] = 3, + [418560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18550), 1, + ACTIONS(18548), 1, anon_sym_DOT2, STATE(11414), 1, sym_comment, - [418549] = 3, + [418570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14912), 1, + ACTIONS(15425), 1, anon_sym_LPAREN2, STATE(11415), 1, sym_comment, - [418559] = 3, + [418580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18552), 1, + ACTIONS(18550), 1, anon_sym_DOT2, STATE(11416), 1, sym_comment, - [418569] = 3, + [418590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15750), 1, + ACTIONS(13848), 1, anon_sym_LPAREN2, STATE(11417), 1, sym_comment, - [418579] = 3, + [418600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18554), 1, + ACTIONS(18552), 1, anon_sym_DOT2, STATE(11418), 1, sym_comment, - [418589] = 3, + [418610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13987), 1, + ACTIONS(14861), 1, anon_sym_LPAREN2, STATE(11419), 1, sym_comment, - [418599] = 3, + [418620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18556), 1, + ACTIONS(18554), 1, anon_sym_DOT2, STATE(11420), 1, sym_comment, - [418609] = 3, + [418630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15353), 1, + ACTIONS(14573), 1, anon_sym_LPAREN2, STATE(11421), 1, sym_comment, - [418619] = 3, + [418640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18558), 1, + ACTIONS(18556), 1, anon_sym_DOT2, STATE(11422), 1, sym_comment, - [418629] = 3, + [418650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14021), 1, + ACTIONS(14767), 1, anon_sym_LPAREN2, STATE(11423), 1, sym_comment, - [418639] = 3, + [418660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18560), 1, + ACTIONS(18558), 1, anon_sym_DOT2, STATE(11424), 1, sym_comment, - [418649] = 3, + [418670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14617), 1, + ACTIONS(15241), 1, anon_sym_LPAREN2, STATE(11425), 1, sym_comment, - [418659] = 3, + [418680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18562), 1, + ACTIONS(18560), 1, anon_sym_DOT2, STATE(11426), 1, sym_comment, - [418669] = 3, + [418690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15004), 1, + ACTIONS(15654), 1, anon_sym_LPAREN2, STATE(11427), 1, sym_comment, - [418679] = 3, + [418700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18564), 1, + ACTIONS(18562), 1, anon_sym_DOT2, STATE(11428), 1, sym_comment, - [418689] = 3, + [418710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15467), 1, + ACTIONS(14685), 1, anon_sym_LPAREN2, STATE(11429), 1, sym_comment, - [418699] = 3, + [418720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18566), 1, + ACTIONS(18564), 1, anon_sym_DOT2, STATE(11430), 1, sym_comment, - [418709] = 3, + [418730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14660), 1, + ACTIONS(14757), 1, anon_sym_LPAREN2, STATE(11431), 1, sym_comment, - [418719] = 3, + [418740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18568), 1, + ACTIONS(18566), 1, anon_sym_DOT2, STATE(11432), 1, sym_comment, - [418729] = 3, + [418750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15572), 1, + ACTIONS(14799), 1, anon_sym_LPAREN2, STATE(11433), 1, sym_comment, - [418739] = 3, + [418760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18570), 1, + ACTIONS(18568), 1, anon_sym_DOT2, STATE(11434), 1, sym_comment, - [418749] = 3, + [418770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15068), 1, + ACTIONS(14930), 1, anon_sym_LPAREN2, STATE(11435), 1, sym_comment, - [418759] = 3, + [418780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18572), 1, + ACTIONS(18570), 1, anon_sym_DOT2, STATE(11436), 1, sym_comment, - [418769] = 3, + [418790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14974), 1, + ACTIONS(14960), 1, anon_sym_LPAREN2, STATE(11437), 1, sym_comment, - [418779] = 3, + [418800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18574), 1, + ACTIONS(18572), 1, anon_sym_DOT2, STATE(11438), 1, sym_comment, - [418789] = 3, + [418810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14850), 1, + ACTIONS(15091), 1, anon_sym_LPAREN2, STATE(11439), 1, sym_comment, - [418799] = 3, + [418820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18576), 1, + ACTIONS(18574), 1, anon_sym_DOT2, STATE(11440), 1, sym_comment, - [418809] = 3, + [418830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14771), 1, + ACTIONS(15131), 1, anon_sym_LPAREN2, STATE(11441), 1, sym_comment, - [418819] = 3, + [418840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18578), 1, + ACTIONS(18576), 1, anon_sym_DOT2, STATE(11442), 1, sym_comment, - [418829] = 3, + [418850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14868), 1, + ACTIONS(15165), 1, anon_sym_LPAREN2, STATE(11443), 1, sym_comment, - [418839] = 3, + [418860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18580), 1, + ACTIONS(18578), 1, anon_sym_DOT2, STATE(11444), 1, sym_comment, - [418849] = 3, + [418870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(14988), 1, + ACTIONS(15179), 1, anon_sym_LPAREN2, STATE(11445), 1, sym_comment, - [418859] = 3, + [418880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18582), 1, + ACTIONS(18580), 1, anon_sym_DOT2, STATE(11446), 1, sym_comment, - [418869] = 3, + [418890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15046), 1, + ACTIONS(15209), 1, anon_sym_LPAREN2, STATE(11447), 1, sym_comment, - [418879] = 3, + [418900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18584), 1, + ACTIONS(18582), 1, anon_sym_DOT2, STATE(11448), 1, sym_comment, - [418889] = 3, + [418910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(15098), 1, - anon_sym_LPAREN2, + ACTIONS(18584), 1, + anon_sym_DOT2, STATE(11449), 1, sym_comment, - [418899] = 3, + [418920] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18586), 1, anon_sym_DOT2, STATE(11450), 1, sym_comment, - [418909] = 3, + [418930] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18588), 1, anon_sym_DOT2, STATE(11451), 1, sym_comment, - [418919] = 3, + [418940] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18590), 1, anon_sym_DOT2, STATE(11452), 1, sym_comment, - [418929] = 3, + [418950] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18592), 1, anon_sym_DOT2, STATE(11453), 1, sym_comment, - [418939] = 3, + [418960] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18594), 1, anon_sym_DOT2, STATE(11454), 1, sym_comment, - [418949] = 3, + [418970] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18596), 1, anon_sym_DOT2, STATE(11455), 1, sym_comment, - [418959] = 3, + [418980] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18598), 1, anon_sym_DOT2, STATE(11456), 1, sym_comment, - [418969] = 3, + [418990] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18600), 1, anon_sym_DOT2, STATE(11457), 1, sym_comment, - [418979] = 3, + [419000] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18602), 1, anon_sym_DOT2, STATE(11458), 1, sym_comment, - [418989] = 3, + [419010] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18604), 1, anon_sym_DOT2, STATE(11459), 1, sym_comment, - [418999] = 3, + [419020] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18606), 1, anon_sym_DOT2, STATE(11460), 1, sym_comment, - [419009] = 3, + [419030] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18608), 1, anon_sym_DOT2, STATE(11461), 1, sym_comment, - [419019] = 3, + [419040] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18610), 1, anon_sym_DOT2, STATE(11462), 1, sym_comment, - [419029] = 3, + [419050] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18612), 1, anon_sym_DOT2, STATE(11463), 1, sym_comment, - [419039] = 3, + [419060] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18614), 1, anon_sym_DOT2, STATE(11464), 1, sym_comment, - [419049] = 3, - ACTIONS(3), 1, + [419070] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18616), 1, - anon_sym_COLON, + aux_sym_unquoted_token3, STATE(11465), 1, sym_comment, - [419059] = 3, - ACTIONS(3), 1, + [419080] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18618), 1, - anon_sym_DOT2, + aux_sym__list_item_starts_with_sign_token1, STATE(11466), 1, sym_comment, - [419069] = 3, - ACTIONS(105), 1, + [419090] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16606), 1, - aux_sym__unquoted_in_list_token5, + ACTIONS(18620), 1, + aux_sym__immediate_decimal_token1, STATE(11467), 1, sym_comment, - [419079] = 3, - ACTIONS(3), 1, + [419100] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(18620), 1, - anon_sym_RPAREN, + ACTIONS(18622), 1, + aux_sym__list_item_starts_with_sign_token1, STATE(11468), 1, sym_comment, - [419089] = 3, + [419110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18622), 1, - anon_sym_RBRACK, + ACTIONS(7288), 1, + anon_sym_RBRACE, STATE(11469), 1, sym_comment, - [419099] = 3, + [419120] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18624), 1, - anon_sym_RBRACE, + aux_sym__immediate_decimal_token1, STATE(11470), 1, sym_comment, - [419109] = 3, + [419130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18626), 1, - anon_sym_RBRACE, + ACTIONS(13365), 1, + aux_sym__immediate_decimal_token1, STATE(11471), 1, sym_comment, - [419119] = 3, + [419140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18628), 1, - anon_sym_RBRACK, + ACTIONS(18626), 1, + anon_sym_RBRACE, STATE(11472), 1, sym_comment, - [419129] = 3, + [419150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18630), 1, - anon_sym_RPAREN, + ACTIONS(12979), 1, + aux_sym__immediate_decimal_token1, STATE(11473), 1, sym_comment, - [419139] = 3, + [419160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18632), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18628), 1, + anon_sym_DOT2, STATE(11474), 1, sym_comment, - [419149] = 3, + [419170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18634), 1, - anon_sym_DOT2, + ACTIONS(18630), 1, + anon_sym_EQ, STATE(11475), 1, sym_comment, - [419159] = 3, - ACTIONS(105), 1, + [419180] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(16618), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18632), 1, + aux_sym__immediate_decimal_token1, STATE(11476), 1, sym_comment, - [419169] = 3, - ACTIONS(105), 1, + [419190] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18636), 1, - aux_sym_unquoted_token3, + ACTIONS(18634), 1, + anon_sym_DOT2, STATE(11477), 1, sym_comment, - [419179] = 3, + [419200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18638), 1, + ACTIONS(18636), 1, anon_sym_DOT2, STATE(11478), 1, sym_comment, - [419189] = 3, + [419210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18640), 1, + ACTIONS(18638), 1, anon_sym_DOT2, STATE(11479), 1, sym_comment, - [419199] = 3, - ACTIONS(3), 1, + [419220] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(16458), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18640), 1, + aux_sym_unquoted_token3, STATE(11480), 1, sym_comment, - [419209] = 3, + [419230] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18642), 1, - anon_sym_COLON, + anon_sym_EQ, STATE(11481), 1, sym_comment, - [419219] = 3, - ACTIONS(3), 1, + [419240] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18644), 1, - anon_sym_DOT2, + aux_sym__list_item_starts_with_sign_token1, STATE(11482), 1, sym_comment, - [419229] = 3, + [419250] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18646), 1, - anon_sym_DOT2, + anon_sym_EQ, STATE(11483), 1, sym_comment, - [419239] = 3, + [419260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18648), 1, + ACTIONS(12995), 1, aux_sym__immediate_decimal_token1, STATE(11484), 1, sym_comment, - [419249] = 3, + [419270] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(18648), 1, + anon_sym_DOT2, + STATE(11485), 1, + sym_comment, + [419280] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18650), 1, aux_sym__list_item_starts_with_sign_token1, - STATE(11485), 1, + STATE(11486), 1, sym_comment, - [419259] = 3, - ACTIONS(3), 1, + [419290] = 3, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(18652), 1, - aux_sym__immediate_decimal_token1, - STATE(11486), 1, + aux_sym__list_item_starts_with_sign_token1, + STATE(11487), 1, sym_comment, - [419269] = 3, + [419300] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18654), 1, aux_sym__immediate_decimal_token1, - STATE(11487), 1, - sym_comment, - [419279] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(18656), 1, - aux_sym__list_item_starts_with_sign_token1, STATE(11488), 1, sym_comment, - [419289] = 3, + [419310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18658), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18656), 1, + anon_sym_RBRACK, STATE(11489), 1, sym_comment, - [419299] = 3, + [419320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18660), 1, - anon_sym_RBRACE, + ACTIONS(18658), 1, + anon_sym_DOT2, STATE(11490), 1, sym_comment, - [419309] = 3, + [419330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18662), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(18660), 1, + anon_sym_DOT2, STATE(11491), 1, sym_comment, - [419319] = 3, + [419340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(18664), 1, + ACTIONS(18662), 1, anon_sym_RPAREN, STATE(11492), 1, sym_comment, - [419329] = 3, - ACTIONS(105), 1, + [419350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1075), 1, - aux_sym__list_item_starts_with_sign_token1, + ACTIONS(18664), 1, + anon_sym_DOT2, STATE(11493), 1, sym_comment, - [419339] = 3, + [419360] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18666), 1, - anon_sym_DOT2, + anon_sym_RBRACK, STATE(11494), 1, sym_comment, - [419349] = 3, + [419370] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18668), 1, - anon_sym_DOT2, + anon_sym_RPAREN, STATE(11495), 1, sym_comment, - [419359] = 3, + [419380] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(18670), 1, - anon_sym_RBRACE, + anon_sym_DOT2, STATE(11496), 1, sym_comment, - [419369] = 1, + [419390] = 1, ACTIONS(18672), 1, ts_builtin_sym_end, }; @@ -585942,1942 +585984,1942 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1925)] = 0, [SMALL_STATE(1926)] = 73, - [SMALL_STATE(1927)] = 152, - [SMALL_STATE(1928)] = 225, - [SMALL_STATE(1929)] = 300, - [SMALL_STATE(1930)] = 373, - [SMALL_STATE(1931)] = 446, - [SMALL_STATE(1932)] = 525, - [SMALL_STATE(1933)] = 598, - [SMALL_STATE(1934)] = 671, - [SMALL_STATE(1935)] = 746, - [SMALL_STATE(1936)] = 819, - [SMALL_STATE(1937)] = 892, - [SMALL_STATE(1938)] = 965, - [SMALL_STATE(1939)] = 1040, - [SMALL_STATE(1940)] = 1113, - [SMALL_STATE(1941)] = 1186, - [SMALL_STATE(1942)] = 1259, - [SMALL_STATE(1943)] = 1332, - [SMALL_STATE(1944)] = 1407, - [SMALL_STATE(1945)] = 1482, - [SMALL_STATE(1946)] = 1555, - [SMALL_STATE(1947)] = 1628, - [SMALL_STATE(1948)] = 1701, - [SMALL_STATE(1949)] = 1774, - [SMALL_STATE(1950)] = 1847, - [SMALL_STATE(1951)] = 1920, - [SMALL_STATE(1952)] = 1993, - [SMALL_STATE(1953)] = 2072, - [SMALL_STATE(1954)] = 2145, - [SMALL_STATE(1955)] = 2218, - [SMALL_STATE(1956)] = 2293, - [SMALL_STATE(1957)] = 2366, - [SMALL_STATE(1958)] = 2441, - [SMALL_STATE(1959)] = 2514, - [SMALL_STATE(1960)] = 2587, - [SMALL_STATE(1961)] = 2660, - [SMALL_STATE(1962)] = 2733, - [SMALL_STATE(1963)] = 2806, - [SMALL_STATE(1964)] = 2879, - [SMALL_STATE(1965)] = 2952, - [SMALL_STATE(1966)] = 3027, - [SMALL_STATE(1967)] = 3100, - [SMALL_STATE(1968)] = 3173, - [SMALL_STATE(1969)] = 3246, - [SMALL_STATE(1970)] = 3319, - [SMALL_STATE(1971)] = 3392, - [SMALL_STATE(1972)] = 3465, - [SMALL_STATE(1973)] = 3538, - [SMALL_STATE(1974)] = 3617, - [SMALL_STATE(1975)] = 3690, - [SMALL_STATE(1976)] = 3763, - [SMALL_STATE(1977)] = 3836, - [SMALL_STATE(1978)] = 3909, - [SMALL_STATE(1979)] = 3982, - [SMALL_STATE(1980)] = 4055, - [SMALL_STATE(1981)] = 4130, - [SMALL_STATE(1982)] = 4203, - [SMALL_STATE(1983)] = 4276, - [SMALL_STATE(1984)] = 4349, - [SMALL_STATE(1985)] = 4422, - [SMALL_STATE(1986)] = 4495, - [SMALL_STATE(1987)] = 4568, - [SMALL_STATE(1988)] = 4641, - [SMALL_STATE(1989)] = 4714, - [SMALL_STATE(1990)] = 4787, - [SMALL_STATE(1991)] = 4860, - [SMALL_STATE(1992)] = 4933, - [SMALL_STATE(1993)] = 5006, - [SMALL_STATE(1994)] = 5081, - [SMALL_STATE(1995)] = 5154, - [SMALL_STATE(1996)] = 5227, - [SMALL_STATE(1997)] = 5304, - [SMALL_STATE(1998)] = 5377, - [SMALL_STATE(1999)] = 5450, - [SMALL_STATE(2000)] = 5527, - [SMALL_STATE(2001)] = 5600, - [SMALL_STATE(2002)] = 5673, - [SMALL_STATE(2003)] = 5746, - [SMALL_STATE(2004)] = 5823, - [SMALL_STATE(2005)] = 5896, - [SMALL_STATE(2006)] = 5975, - [SMALL_STATE(2007)] = 6048, - [SMALL_STATE(2008)] = 6123, - [SMALL_STATE(2009)] = 6196, - [SMALL_STATE(2010)] = 6269, - [SMALL_STATE(2011)] = 6342, - [SMALL_STATE(2012)] = 6415, - [SMALL_STATE(2013)] = 6494, - [SMALL_STATE(2014)] = 6567, - [SMALL_STATE(2015)] = 6640, - [SMALL_STATE(2016)] = 6715, - [SMALL_STATE(2017)] = 6790, - [SMALL_STATE(2018)] = 6869, - [SMALL_STATE(2019)] = 6942, - [SMALL_STATE(2020)] = 7015, - [SMALL_STATE(2021)] = 7088, - [SMALL_STATE(2022)] = 7161, - [SMALL_STATE(2023)] = 7234, - [SMALL_STATE(2024)] = 7307, - [SMALL_STATE(2025)] = 7384, - [SMALL_STATE(2026)] = 7461, - [SMALL_STATE(2027)] = 7534, - [SMALL_STATE(2028)] = 7607, - [SMALL_STATE(2029)] = 7680, - [SMALL_STATE(2030)] = 7753, - [SMALL_STATE(2031)] = 7826, - [SMALL_STATE(2032)] = 7899, - [SMALL_STATE(2033)] = 7972, - [SMALL_STATE(2034)] = 8045, - [SMALL_STATE(2035)] = 8118, - [SMALL_STATE(2036)] = 8191, - [SMALL_STATE(2037)] = 8264, - [SMALL_STATE(2038)] = 8337, - [SMALL_STATE(2039)] = 8410, - [SMALL_STATE(2040)] = 8483, - [SMALL_STATE(2041)] = 8556, - [SMALL_STATE(2042)] = 8629, - [SMALL_STATE(2043)] = 8702, - [SMALL_STATE(2044)] = 8781, - [SMALL_STATE(2045)] = 8854, - [SMALL_STATE(2046)] = 8927, - [SMALL_STATE(2047)] = 9018, - [SMALL_STATE(2048)] = 9091, - [SMALL_STATE(2049)] = 9182, - [SMALL_STATE(2050)] = 9255, - [SMALL_STATE(2051)] = 9328, - [SMALL_STATE(2052)] = 9419, - [SMALL_STATE(2053)] = 9492, - [SMALL_STATE(2054)] = 9565, - [SMALL_STATE(2055)] = 9638, - [SMALL_STATE(2056)] = 9711, - [SMALL_STATE(2057)] = 9784, - [SMALL_STATE(2058)] = 9857, - [SMALL_STATE(2059)] = 9930, - [SMALL_STATE(2060)] = 10003, - [SMALL_STATE(2061)] = 10078, - [SMALL_STATE(2062)] = 10155, - [SMALL_STATE(2063)] = 10232, - [SMALL_STATE(2064)] = 10305, - [SMALL_STATE(2065)] = 10378, - [SMALL_STATE(2066)] = 10451, - [SMALL_STATE(2067)] = 10524, - [SMALL_STATE(2068)] = 10597, - [SMALL_STATE(2069)] = 10670, - [SMALL_STATE(2070)] = 10743, - [SMALL_STATE(2071)] = 10816, - [SMALL_STATE(2072)] = 10961, - [SMALL_STATE(2073)] = 11034, - [SMALL_STATE(2074)] = 11107, - [SMALL_STATE(2075)] = 11180, - [SMALL_STATE(2076)] = 11253, - [SMALL_STATE(2077)] = 11326, - [SMALL_STATE(2078)] = 11399, + [SMALL_STATE(1927)] = 146, + [SMALL_STATE(1928)] = 219, + [SMALL_STATE(1929)] = 292, + [SMALL_STATE(1930)] = 365, + [SMALL_STATE(1931)] = 438, + [SMALL_STATE(1932)] = 511, + [SMALL_STATE(1933)] = 584, + [SMALL_STATE(1934)] = 657, + [SMALL_STATE(1935)] = 730, + [SMALL_STATE(1936)] = 803, + [SMALL_STATE(1937)] = 876, + [SMALL_STATE(1938)] = 949, + [SMALL_STATE(1939)] = 1022, + [SMALL_STATE(1940)] = 1095, + [SMALL_STATE(1941)] = 1168, + [SMALL_STATE(1942)] = 1241, + [SMALL_STATE(1943)] = 1314, + [SMALL_STATE(1944)] = 1387, + [SMALL_STATE(1945)] = 1460, + [SMALL_STATE(1946)] = 1533, + [SMALL_STATE(1947)] = 1606, + [SMALL_STATE(1948)] = 1679, + [SMALL_STATE(1949)] = 1752, + [SMALL_STATE(1950)] = 1825, + [SMALL_STATE(1951)] = 1898, + [SMALL_STATE(1952)] = 1971, + [SMALL_STATE(1953)] = 2044, + [SMALL_STATE(1954)] = 2117, + [SMALL_STATE(1955)] = 2190, + [SMALL_STATE(1956)] = 2269, + [SMALL_STATE(1957)] = 2346, + [SMALL_STATE(1958)] = 2419, + [SMALL_STATE(1959)] = 2492, + [SMALL_STATE(1960)] = 2565, + [SMALL_STATE(1961)] = 2638, + [SMALL_STATE(1962)] = 2711, + [SMALL_STATE(1963)] = 2784, + [SMALL_STATE(1964)] = 2857, + [SMALL_STATE(1965)] = 2930, + [SMALL_STATE(1966)] = 3003, + [SMALL_STATE(1967)] = 3076, + [SMALL_STATE(1968)] = 3149, + [SMALL_STATE(1969)] = 3222, + [SMALL_STATE(1970)] = 3295, + [SMALL_STATE(1971)] = 3368, + [SMALL_STATE(1972)] = 3441, + [SMALL_STATE(1973)] = 3514, + [SMALL_STATE(1974)] = 3587, + [SMALL_STATE(1975)] = 3660, + [SMALL_STATE(1976)] = 3735, + [SMALL_STATE(1977)] = 3808, + [SMALL_STATE(1978)] = 3881, + [SMALL_STATE(1979)] = 3954, + [SMALL_STATE(1980)] = 4027, + [SMALL_STATE(1981)] = 4100, + [SMALL_STATE(1982)] = 4173, + [SMALL_STATE(1983)] = 4246, + [SMALL_STATE(1984)] = 4319, + [SMALL_STATE(1985)] = 4392, + [SMALL_STATE(1986)] = 4465, + [SMALL_STATE(1987)] = 4538, + [SMALL_STATE(1988)] = 4611, + [SMALL_STATE(1989)] = 4684, + [SMALL_STATE(1990)] = 4757, + [SMALL_STATE(1991)] = 4830, + [SMALL_STATE(1992)] = 4903, + [SMALL_STATE(1993)] = 4976, + [SMALL_STATE(1994)] = 5049, + [SMALL_STATE(1995)] = 5122, + [SMALL_STATE(1996)] = 5195, + [SMALL_STATE(1997)] = 5268, + [SMALL_STATE(1998)] = 5341, + [SMALL_STATE(1999)] = 5414, + [SMALL_STATE(2000)] = 5491, + [SMALL_STATE(2001)] = 5564, + [SMALL_STATE(2002)] = 5637, + [SMALL_STATE(2003)] = 5710, + [SMALL_STATE(2004)] = 5783, + [SMALL_STATE(2005)] = 5856, + [SMALL_STATE(2006)] = 5929, + [SMALL_STATE(2007)] = 6002, + [SMALL_STATE(2008)] = 6075, + [SMALL_STATE(2009)] = 6148, + [SMALL_STATE(2010)] = 6227, + [SMALL_STATE(2011)] = 6300, + [SMALL_STATE(2012)] = 6375, + [SMALL_STATE(2013)] = 6448, + [SMALL_STATE(2014)] = 6521, + [SMALL_STATE(2015)] = 6594, + [SMALL_STATE(2016)] = 6667, + [SMALL_STATE(2017)] = 6740, + [SMALL_STATE(2018)] = 6813, + [SMALL_STATE(2019)] = 6890, + [SMALL_STATE(2020)] = 6967, + [SMALL_STATE(2021)] = 7046, + [SMALL_STATE(2022)] = 7123, + [SMALL_STATE(2023)] = 7196, + [SMALL_STATE(2024)] = 7269, + [SMALL_STATE(2025)] = 7348, + [SMALL_STATE(2026)] = 7421, + [SMALL_STATE(2027)] = 7494, + [SMALL_STATE(2028)] = 7571, + [SMALL_STATE(2029)] = 7644, + [SMALL_STATE(2030)] = 7717, + [SMALL_STATE(2031)] = 7796, + [SMALL_STATE(2032)] = 7869, + [SMALL_STATE(2033)] = 7942, + [SMALL_STATE(2034)] = 8015, + [SMALL_STATE(2035)] = 8160, + [SMALL_STATE(2036)] = 8233, + [SMALL_STATE(2037)] = 8312, + [SMALL_STATE(2038)] = 8385, + [SMALL_STATE(2039)] = 8462, + [SMALL_STATE(2040)] = 8541, + [SMALL_STATE(2041)] = 8614, + [SMALL_STATE(2042)] = 8687, + [SMALL_STATE(2043)] = 8762, + [SMALL_STATE(2044)] = 8837, + [SMALL_STATE(2045)] = 8910, + [SMALL_STATE(2046)] = 8989, + [SMALL_STATE(2047)] = 9068, + [SMALL_STATE(2048)] = 9141, + [SMALL_STATE(2049)] = 9220, + [SMALL_STATE(2050)] = 9293, + [SMALL_STATE(2051)] = 9366, + [SMALL_STATE(2052)] = 9441, + [SMALL_STATE(2053)] = 9514, + [SMALL_STATE(2054)] = 9587, + [SMALL_STATE(2055)] = 9666, + [SMALL_STATE(2056)] = 9745, + [SMALL_STATE(2057)] = 9818, + [SMALL_STATE(2058)] = 9891, + [SMALL_STATE(2059)] = 9966, + [SMALL_STATE(2060)] = 10039, + [SMALL_STATE(2061)] = 10114, + [SMALL_STATE(2062)] = 10187, + [SMALL_STATE(2063)] = 10266, + [SMALL_STATE(2064)] = 10339, + [SMALL_STATE(2065)] = 10414, + [SMALL_STATE(2066)] = 10493, + [SMALL_STATE(2067)] = 10566, + [SMALL_STATE(2068)] = 10641, + [SMALL_STATE(2069)] = 10716, + [SMALL_STATE(2070)] = 10791, + [SMALL_STATE(2071)] = 10866, + [SMALL_STATE(2072)] = 10939, + [SMALL_STATE(2073)] = 11018, + [SMALL_STATE(2074)] = 11091, + [SMALL_STATE(2075)] = 11170, + [SMALL_STATE(2076)] = 11249, + [SMALL_STATE(2077)] = 11322, + [SMALL_STATE(2078)] = 11395, [SMALL_STATE(2079)] = 11472, - [SMALL_STATE(2080)] = 11563, - [SMALL_STATE(2081)] = 11640, - [SMALL_STATE(2082)] = 11713, - [SMALL_STATE(2083)] = 11786, - [SMALL_STATE(2084)] = 11859, - [SMALL_STATE(2085)] = 11932, - [SMALL_STATE(2086)] = 12011, - [SMALL_STATE(2087)] = 12084, - [SMALL_STATE(2088)] = 12229, - [SMALL_STATE(2089)] = 12302, - [SMALL_STATE(2090)] = 12381, - [SMALL_STATE(2091)] = 12460, - [SMALL_STATE(2092)] = 12533, - [SMALL_STATE(2093)] = 12606, - [SMALL_STATE(2094)] = 12679, - [SMALL_STATE(2095)] = 12758, - [SMALL_STATE(2096)] = 12837, - [SMALL_STATE(2097)] = 12910, - [SMALL_STATE(2098)] = 13001, - [SMALL_STATE(2099)] = 13092, - [SMALL_STATE(2100)] = 13183, - [SMALL_STATE(2101)] = 13274, - [SMALL_STATE(2102)] = 13365, - [SMALL_STATE(2103)] = 13438, - [SMALL_STATE(2104)] = 13511, - [SMALL_STATE(2105)] = 13602, - [SMALL_STATE(2106)] = 13693, - [SMALL_STATE(2107)] = 13766, - [SMALL_STATE(2108)] = 13839, - [SMALL_STATE(2109)] = 13930, - [SMALL_STATE(2110)] = 14005, - [SMALL_STATE(2111)] = 14078, - [SMALL_STATE(2112)] = 14151, - [SMALL_STATE(2113)] = 14224, - [SMALL_STATE(2114)] = 14297, - [SMALL_STATE(2115)] = 14374, - [SMALL_STATE(2116)] = 14447, - [SMALL_STATE(2117)] = 14520, - [SMALL_STATE(2118)] = 14593, - [SMALL_STATE(2119)] = 14666, - [SMALL_STATE(2120)] = 14743, - [SMALL_STATE(2121)] = 14820, - [SMALL_STATE(2122)] = 14893, - [SMALL_STATE(2123)] = 14972, - [SMALL_STATE(2124)] = 15045, - [SMALL_STATE(2125)] = 15118, - [SMALL_STATE(2126)] = 15191, - [SMALL_STATE(2127)] = 15264, - [SMALL_STATE(2128)] = 15343, - [SMALL_STATE(2129)] = 15416, - [SMALL_STATE(2130)] = 15489, - [SMALL_STATE(2131)] = 15562, - [SMALL_STATE(2132)] = 15635, - [SMALL_STATE(2133)] = 15708, - [SMALL_STATE(2134)] = 15781, - [SMALL_STATE(2135)] = 15854, - [SMALL_STATE(2136)] = 15927, - [SMALL_STATE(2137)] = 16000, - [SMALL_STATE(2138)] = 16073, - [SMALL_STATE(2139)] = 16152, - [SMALL_STATE(2140)] = 16225, - [SMALL_STATE(2141)] = 16304, - [SMALL_STATE(2142)] = 16381, - [SMALL_STATE(2143)] = 16458, - [SMALL_STATE(2144)] = 16535, - [SMALL_STATE(2145)] = 16608, - [SMALL_STATE(2146)] = 16681, - [SMALL_STATE(2147)] = 16754, + [SMALL_STATE(2080)] = 11549, + [SMALL_STATE(2081)] = 11622, + [SMALL_STATE(2082)] = 11767, + [SMALL_STATE(2083)] = 11840, + [SMALL_STATE(2084)] = 11913, + [SMALL_STATE(2085)] = 11986, + [SMALL_STATE(2086)] = 12059, + [SMALL_STATE(2087)] = 12132, + [SMALL_STATE(2088)] = 12223, + [SMALL_STATE(2089)] = 12314, + [SMALL_STATE(2090)] = 12405, + [SMALL_STATE(2091)] = 12496, + [SMALL_STATE(2092)] = 12569, + [SMALL_STATE(2093)] = 12648, + [SMALL_STATE(2094)] = 12721, + [SMALL_STATE(2095)] = 12794, + [SMALL_STATE(2096)] = 12867, + [SMALL_STATE(2097)] = 12958, + [SMALL_STATE(2098)] = 13049, + [SMALL_STATE(2099)] = 13140, + [SMALL_STATE(2100)] = 13231, + [SMALL_STATE(2101)] = 13322, + [SMALL_STATE(2102)] = 13413, + [SMALL_STATE(2103)] = 13504, + [SMALL_STATE(2104)] = 13595, + [SMALL_STATE(2105)] = 13668, + [SMALL_STATE(2106)] = 13741, + [SMALL_STATE(2107)] = 13814, + [SMALL_STATE(2108)] = 13887, + [SMALL_STATE(2109)] = 13964, + [SMALL_STATE(2110)] = 14039, + [SMALL_STATE(2111)] = 14112, + [SMALL_STATE(2112)] = 14185, + [SMALL_STATE(2113)] = 14258, + [SMALL_STATE(2114)] = 14331, + [SMALL_STATE(2115)] = 14408, + [SMALL_STATE(2116)] = 14483, + [SMALL_STATE(2117)] = 14560, + [SMALL_STATE(2118)] = 14637, + [SMALL_STATE(2119)] = 14710, + [SMALL_STATE(2120)] = 14783, + [SMALL_STATE(2121)] = 14856, + [SMALL_STATE(2122)] = 14929, + [SMALL_STATE(2123)] = 15002, + [SMALL_STATE(2124)] = 15075, + [SMALL_STATE(2125)] = 15148, + [SMALL_STATE(2126)] = 15221, + [SMALL_STATE(2127)] = 15294, + [SMALL_STATE(2128)] = 15367, + [SMALL_STATE(2129)] = 15440, + [SMALL_STATE(2130)] = 15513, + [SMALL_STATE(2131)] = 15588, + [SMALL_STATE(2132)] = 15661, + [SMALL_STATE(2133)] = 15738, + [SMALL_STATE(2134)] = 15811, + [SMALL_STATE(2135)] = 15884, + [SMALL_STATE(2136)] = 15957, + [SMALL_STATE(2137)] = 16030, + [SMALL_STATE(2138)] = 16103, + [SMALL_STATE(2139)] = 16176, + [SMALL_STATE(2140)] = 16249, + [SMALL_STATE(2141)] = 16322, + [SMALL_STATE(2142)] = 16395, + [SMALL_STATE(2143)] = 16468, + [SMALL_STATE(2144)] = 16541, + [SMALL_STATE(2145)] = 16614, + [SMALL_STATE(2146)] = 16687, + [SMALL_STATE(2147)] = 16760, [SMALL_STATE(2148)] = 16833, - [SMALL_STATE(2149)] = 16981, - [SMALL_STATE(2150)] = 17129, - [SMALL_STATE(2151)] = 17205, - [SMALL_STATE(2152)] = 17277, - [SMALL_STATE(2153)] = 17349, - [SMALL_STATE(2154)] = 17421, - [SMALL_STATE(2155)] = 17493, - [SMALL_STATE(2156)] = 17565, - [SMALL_STATE(2157)] = 17637, - [SMALL_STATE(2158)] = 17709, - [SMALL_STATE(2159)] = 17781, - [SMALL_STATE(2160)] = 17929, - [SMALL_STATE(2161)] = 18001, - [SMALL_STATE(2162)] = 18073, - [SMALL_STATE(2163)] = 18145, - [SMALL_STATE(2164)] = 18217, - [SMALL_STATE(2165)] = 18289, - [SMALL_STATE(2166)] = 18437, - [SMALL_STATE(2167)] = 18509, - [SMALL_STATE(2168)] = 18583, - [SMALL_STATE(2169)] = 18655, - [SMALL_STATE(2170)] = 18727, - [SMALL_STATE(2171)] = 18875, - [SMALL_STATE(2172)] = 18947, - [SMALL_STATE(2173)] = 19019, - [SMALL_STATE(2174)] = 19091, - [SMALL_STATE(2175)] = 19163, - [SMALL_STATE(2176)] = 19235, - [SMALL_STATE(2177)] = 19307, - [SMALL_STATE(2178)] = 19379, - [SMALL_STATE(2179)] = 19451, - [SMALL_STATE(2180)] = 19523, - [SMALL_STATE(2181)] = 19595, - [SMALL_STATE(2182)] = 19739, - [SMALL_STATE(2183)] = 19811, - [SMALL_STATE(2184)] = 19883, - [SMALL_STATE(2185)] = 19955, - [SMALL_STATE(2186)] = 20027, - [SMALL_STATE(2187)] = 20117, - [SMALL_STATE(2188)] = 20207, - [SMALL_STATE(2189)] = 20279, - [SMALL_STATE(2190)] = 20351, - [SMALL_STATE(2191)] = 20423, - [SMALL_STATE(2192)] = 20571, - [SMALL_STATE(2193)] = 20645, - [SMALL_STATE(2194)] = 20719, - [SMALL_STATE(2195)] = 20791, - [SMALL_STATE(2196)] = 20863, - [SMALL_STATE(2197)] = 20935, - [SMALL_STATE(2198)] = 21007, - [SMALL_STATE(2199)] = 21079, - [SMALL_STATE(2200)] = 21227, - [SMALL_STATE(2201)] = 21299, - [SMALL_STATE(2202)] = 21371, - [SMALL_STATE(2203)] = 21519, - [SMALL_STATE(2204)] = 21591, - [SMALL_STATE(2205)] = 21663, - [SMALL_STATE(2206)] = 21735, - [SMALL_STATE(2207)] = 21807, - [SMALL_STATE(2208)] = 21879, - [SMALL_STATE(2209)] = 21951, - [SMALL_STATE(2210)] = 22041, - [SMALL_STATE(2211)] = 22189, - [SMALL_STATE(2212)] = 22337, - [SMALL_STATE(2213)] = 22409, - [SMALL_STATE(2214)] = 22481, - [SMALL_STATE(2215)] = 22553, - [SMALL_STATE(2216)] = 22625, - [SMALL_STATE(2217)] = 22697, - [SMALL_STATE(2218)] = 22769, - [SMALL_STATE(2219)] = 22841, - [SMALL_STATE(2220)] = 22913, - [SMALL_STATE(2221)] = 22989, - [SMALL_STATE(2222)] = 23135, - [SMALL_STATE(2223)] = 23207, - [SMALL_STATE(2224)] = 23355, - [SMALL_STATE(2225)] = 23433, - [SMALL_STATE(2226)] = 23505, - [SMALL_STATE(2227)] = 23653, - [SMALL_STATE(2228)] = 23725, - [SMALL_STATE(2229)] = 23797, - [SMALL_STATE(2230)] = 23869, - [SMALL_STATE(2231)] = 23941, - [SMALL_STATE(2232)] = 24085, - [SMALL_STATE(2233)] = 24157, - [SMALL_STATE(2234)] = 24229, - [SMALL_STATE(2235)] = 24301, - [SMALL_STATE(2236)] = 24379, - [SMALL_STATE(2237)] = 24451, - [SMALL_STATE(2238)] = 24527, - [SMALL_STATE(2239)] = 24617, - [SMALL_STATE(2240)] = 24689, - [SMALL_STATE(2241)] = 24761, - [SMALL_STATE(2242)] = 24909, - [SMALL_STATE(2243)] = 25057, - [SMALL_STATE(2244)] = 25205, - [SMALL_STATE(2245)] = 25353, - [SMALL_STATE(2246)] = 25425, - [SMALL_STATE(2247)] = 25497, - [SMALL_STATE(2248)] = 25641, - [SMALL_STATE(2249)] = 25713, - [SMALL_STATE(2250)] = 25789, - [SMALL_STATE(2251)] = 25937, - [SMALL_STATE(2252)] = 26009, - [SMALL_STATE(2253)] = 26157, - [SMALL_STATE(2254)] = 26229, - [SMALL_STATE(2255)] = 26301, - [SMALL_STATE(2256)] = 26373, - [SMALL_STATE(2257)] = 26445, - [SMALL_STATE(2258)] = 26593, - [SMALL_STATE(2259)] = 26741, - [SMALL_STATE(2260)] = 26817, - [SMALL_STATE(2261)] = 26965, - [SMALL_STATE(2262)] = 27055, - [SMALL_STATE(2263)] = 27145, - [SMALL_STATE(2264)] = 27235, - [SMALL_STATE(2265)] = 27307, - [SMALL_STATE(2266)] = 27381, - [SMALL_STATE(2267)] = 27453, - [SMALL_STATE(2268)] = 27525, - [SMALL_STATE(2269)] = 27615, - [SMALL_STATE(2270)] = 27705, - [SMALL_STATE(2271)] = 27853, - [SMALL_STATE(2272)] = 28001, - [SMALL_STATE(2273)] = 28149, - [SMALL_STATE(2274)] = 28221, - [SMALL_STATE(2275)] = 28293, - [SMALL_STATE(2276)] = 28365, - [SMALL_STATE(2277)] = 28437, - [SMALL_STATE(2278)] = 28509, - [SMALL_STATE(2279)] = 28657, - [SMALL_STATE(2280)] = 28729, - [SMALL_STATE(2281)] = 28877, - [SMALL_STATE(2282)] = 29025, - [SMALL_STATE(2283)] = 29101, - [SMALL_STATE(2284)] = 29173, - [SMALL_STATE(2285)] = 29321, - [SMALL_STATE(2286)] = 29393, - [SMALL_STATE(2287)] = 29465, - [SMALL_STATE(2288)] = 29613, - [SMALL_STATE(2289)] = 29685, - [SMALL_STATE(2290)] = 29757, - [SMALL_STATE(2291)] = 29847, - [SMALL_STATE(2292)] = 29919, - [SMALL_STATE(2293)] = 29991, - [SMALL_STATE(2294)] = 30063, - [SMALL_STATE(2295)] = 30153, - [SMALL_STATE(2296)] = 30243, - [SMALL_STATE(2297)] = 30315, - [SMALL_STATE(2298)] = 30387, - [SMALL_STATE(2299)] = 30535, - [SMALL_STATE(2300)] = 30607, - [SMALL_STATE(2301)] = 30679, - [SMALL_STATE(2302)] = 30757, - [SMALL_STATE(2303)] = 30835, - [SMALL_STATE(2304)] = 30907, - [SMALL_STATE(2305)] = 30979, - [SMALL_STATE(2306)] = 31123, - [SMALL_STATE(2307)] = 31195, - [SMALL_STATE(2308)] = 31273, - [SMALL_STATE(2309)] = 31421, - [SMALL_STATE(2310)] = 31493, - [SMALL_STATE(2311)] = 31571, - [SMALL_STATE(2312)] = 31643, - [SMALL_STATE(2313)] = 31715, - [SMALL_STATE(2314)] = 31787, - [SMALL_STATE(2315)] = 31935, - [SMALL_STATE(2316)] = 32083, - [SMALL_STATE(2317)] = 32155, - [SMALL_STATE(2318)] = 32303, - [SMALL_STATE(2319)] = 32451, - [SMALL_STATE(2320)] = 32529, - [SMALL_STATE(2321)] = 32601, - [SMALL_STATE(2322)] = 32677, - [SMALL_STATE(2323)] = 32753, - [SMALL_STATE(2324)] = 32825, - [SMALL_STATE(2325)] = 32901, - [SMALL_STATE(2326)] = 32973, - [SMALL_STATE(2327)] = 33045, - [SMALL_STATE(2328)] = 33117, - [SMALL_STATE(2329)] = 33189, - [SMALL_STATE(2330)] = 33261, - [SMALL_STATE(2331)] = 33339, - [SMALL_STATE(2332)] = 33411, - [SMALL_STATE(2333)] = 33559, - [SMALL_STATE(2334)] = 33631, - [SMALL_STATE(2335)] = 33703, - [SMALL_STATE(2336)] = 33775, - [SMALL_STATE(2337)] = 33847, - [SMALL_STATE(2338)] = 33919, - [SMALL_STATE(2339)] = 33991, - [SMALL_STATE(2340)] = 34063, - [SMALL_STATE(2341)] = 34135, - [SMALL_STATE(2342)] = 34283, - [SMALL_STATE(2343)] = 34355, - [SMALL_STATE(2344)] = 34427, - [SMALL_STATE(2345)] = 34499, - [SMALL_STATE(2346)] = 34571, - [SMALL_STATE(2347)] = 34643, - [SMALL_STATE(2348)] = 34715, - [SMALL_STATE(2349)] = 34863, - [SMALL_STATE(2350)] = 34935, - [SMALL_STATE(2351)] = 35011, - [SMALL_STATE(2352)] = 35089, - [SMALL_STATE(2353)] = 35161, - [SMALL_STATE(2354)] = 35239, - [SMALL_STATE(2355)] = 35311, - [SMALL_STATE(2356)] = 35383, - [SMALL_STATE(2357)] = 35455, - [SMALL_STATE(2358)] = 35531, - [SMALL_STATE(2359)] = 35679, - [SMALL_STATE(2360)] = 35757, - [SMALL_STATE(2361)] = 35835, - [SMALL_STATE(2362)] = 35913, - [SMALL_STATE(2363)] = 35985, - [SMALL_STATE(2364)] = 36133, - [SMALL_STATE(2365)] = 36209, - [SMALL_STATE(2366)] = 36281, - [SMALL_STATE(2367)] = 36353, - [SMALL_STATE(2368)] = 36431, + [SMALL_STATE(2149)] = 16911, + [SMALL_STATE(2150)] = 16983, + [SMALL_STATE(2151)] = 17055, + [SMALL_STATE(2152)] = 17127, + [SMALL_STATE(2153)] = 17199, + [SMALL_STATE(2154)] = 17271, + [SMALL_STATE(2155)] = 17343, + [SMALL_STATE(2156)] = 17491, + [SMALL_STATE(2157)] = 17563, + [SMALL_STATE(2158)] = 17635, + [SMALL_STATE(2159)] = 17707, + [SMALL_STATE(2160)] = 17779, + [SMALL_STATE(2161)] = 17851, + [SMALL_STATE(2162)] = 17923, + [SMALL_STATE(2163)] = 17995, + [SMALL_STATE(2164)] = 18067, + [SMALL_STATE(2165)] = 18139, + [SMALL_STATE(2166)] = 18217, + [SMALL_STATE(2167)] = 18289, + [SMALL_STATE(2168)] = 18361, + [SMALL_STATE(2169)] = 18433, + [SMALL_STATE(2170)] = 18505, + [SMALL_STATE(2171)] = 18577, + [SMALL_STATE(2172)] = 18649, + [SMALL_STATE(2173)] = 18797, + [SMALL_STATE(2174)] = 18869, + [SMALL_STATE(2175)] = 18941, + [SMALL_STATE(2176)] = 19031, + [SMALL_STATE(2177)] = 19121, + [SMALL_STATE(2178)] = 19211, + [SMALL_STATE(2179)] = 19359, + [SMALL_STATE(2180)] = 19449, + [SMALL_STATE(2181)] = 19521, + [SMALL_STATE(2182)] = 19593, + [SMALL_STATE(2183)] = 19665, + [SMALL_STATE(2184)] = 19755, + [SMALL_STATE(2185)] = 19903, + [SMALL_STATE(2186)] = 19993, + [SMALL_STATE(2187)] = 20083, + [SMALL_STATE(2188)] = 20231, + [SMALL_STATE(2189)] = 20321, + [SMALL_STATE(2190)] = 20411, + [SMALL_STATE(2191)] = 20559, + [SMALL_STATE(2192)] = 20649, + [SMALL_STATE(2193)] = 20739, + [SMALL_STATE(2194)] = 20887, + [SMALL_STATE(2195)] = 20977, + [SMALL_STATE(2196)] = 21125, + [SMALL_STATE(2197)] = 21197, + [SMALL_STATE(2198)] = 21341, + [SMALL_STATE(2199)] = 21489, + [SMALL_STATE(2200)] = 21561, + [SMALL_STATE(2201)] = 21709, + [SMALL_STATE(2202)] = 21781, + [SMALL_STATE(2203)] = 21853, + [SMALL_STATE(2204)] = 22001, + [SMALL_STATE(2205)] = 22073, + [SMALL_STATE(2206)] = 22145, + [SMALL_STATE(2207)] = 22293, + [SMALL_STATE(2208)] = 22441, + [SMALL_STATE(2209)] = 22589, + [SMALL_STATE(2210)] = 22737, + [SMALL_STATE(2211)] = 22885, + [SMALL_STATE(2212)] = 23033, + [SMALL_STATE(2213)] = 23181, + [SMALL_STATE(2214)] = 23329, + [SMALL_STATE(2215)] = 23401, + [SMALL_STATE(2216)] = 23473, + [SMALL_STATE(2217)] = 23621, + [SMALL_STATE(2218)] = 23769, + [SMALL_STATE(2219)] = 23917, + [SMALL_STATE(2220)] = 24065, + [SMALL_STATE(2221)] = 24137, + [SMALL_STATE(2222)] = 24285, + [SMALL_STATE(2223)] = 24433, + [SMALL_STATE(2224)] = 24505, + [SMALL_STATE(2225)] = 24653, + [SMALL_STATE(2226)] = 24725, + [SMALL_STATE(2227)] = 24797, + [SMALL_STATE(2228)] = 24945, + [SMALL_STATE(2229)] = 25017, + [SMALL_STATE(2230)] = 25165, + [SMALL_STATE(2231)] = 25237, + [SMALL_STATE(2232)] = 25385, + [SMALL_STATE(2233)] = 25461, + [SMALL_STATE(2234)] = 25609, + [SMALL_STATE(2235)] = 25681, + [SMALL_STATE(2236)] = 25753, + [SMALL_STATE(2237)] = 25901, + [SMALL_STATE(2238)] = 25973, + [SMALL_STATE(2239)] = 26121, + [SMALL_STATE(2240)] = 26267, + [SMALL_STATE(2241)] = 26415, + [SMALL_STATE(2242)] = 26563, + [SMALL_STATE(2243)] = 26711, + [SMALL_STATE(2244)] = 26859, + [SMALL_STATE(2245)] = 27007, + [SMALL_STATE(2246)] = 27155, + [SMALL_STATE(2247)] = 27303, + [SMALL_STATE(2248)] = 27451, + [SMALL_STATE(2249)] = 27525, + [SMALL_STATE(2250)] = 27597, + [SMALL_STATE(2251)] = 27675, + [SMALL_STATE(2252)] = 27747, + [SMALL_STATE(2253)] = 27819, + [SMALL_STATE(2254)] = 27891, + [SMALL_STATE(2255)] = 27963, + [SMALL_STATE(2256)] = 28035, + [SMALL_STATE(2257)] = 28107, + [SMALL_STATE(2258)] = 28179, + [SMALL_STATE(2259)] = 28323, + [SMALL_STATE(2260)] = 28399, + [SMALL_STATE(2261)] = 28471, + [SMALL_STATE(2262)] = 28549, + [SMALL_STATE(2263)] = 28621, + [SMALL_STATE(2264)] = 28699, + [SMALL_STATE(2265)] = 28771, + [SMALL_STATE(2266)] = 28843, + [SMALL_STATE(2267)] = 28915, + [SMALL_STATE(2268)] = 28987, + [SMALL_STATE(2269)] = 29065, + [SMALL_STATE(2270)] = 29209, + [SMALL_STATE(2271)] = 29283, + [SMALL_STATE(2272)] = 29355, + [SMALL_STATE(2273)] = 29427, + [SMALL_STATE(2274)] = 29499, + [SMALL_STATE(2275)] = 29575, + [SMALL_STATE(2276)] = 29649, + [SMALL_STATE(2277)] = 29721, + [SMALL_STATE(2278)] = 29793, + [SMALL_STATE(2279)] = 29865, + [SMALL_STATE(2280)] = 29937, + [SMALL_STATE(2281)] = 30009, + [SMALL_STATE(2282)] = 30085, + [SMALL_STATE(2283)] = 30157, + [SMALL_STATE(2284)] = 30229, + [SMALL_STATE(2285)] = 30301, + [SMALL_STATE(2286)] = 30373, + [SMALL_STATE(2287)] = 30445, + [SMALL_STATE(2288)] = 30517, + [SMALL_STATE(2289)] = 30589, + [SMALL_STATE(2290)] = 30661, + [SMALL_STATE(2291)] = 30733, + [SMALL_STATE(2292)] = 30805, + [SMALL_STATE(2293)] = 30881, + [SMALL_STATE(2294)] = 30953, + [SMALL_STATE(2295)] = 31025, + [SMALL_STATE(2296)] = 31097, + [SMALL_STATE(2297)] = 31169, + [SMALL_STATE(2298)] = 31317, + [SMALL_STATE(2299)] = 31389, + [SMALL_STATE(2300)] = 31465, + [SMALL_STATE(2301)] = 31541, + [SMALL_STATE(2302)] = 31613, + [SMALL_STATE(2303)] = 31685, + [SMALL_STATE(2304)] = 31757, + [SMALL_STATE(2305)] = 31829, + [SMALL_STATE(2306)] = 31907, + [SMALL_STATE(2307)] = 31979, + [SMALL_STATE(2308)] = 32051, + [SMALL_STATE(2309)] = 32123, + [SMALL_STATE(2310)] = 32195, + [SMALL_STATE(2311)] = 32269, + [SMALL_STATE(2312)] = 32341, + [SMALL_STATE(2313)] = 32413, + [SMALL_STATE(2314)] = 32485, + [SMALL_STATE(2315)] = 32563, + [SMALL_STATE(2316)] = 32641, + [SMALL_STATE(2317)] = 32713, + [SMALL_STATE(2318)] = 32785, + [SMALL_STATE(2319)] = 32863, + [SMALL_STATE(2320)] = 32941, + [SMALL_STATE(2321)] = 33013, + [SMALL_STATE(2322)] = 33085, + [SMALL_STATE(2323)] = 33157, + [SMALL_STATE(2324)] = 33235, + [SMALL_STATE(2325)] = 33307, + [SMALL_STATE(2326)] = 33379, + [SMALL_STATE(2327)] = 33451, + [SMALL_STATE(2328)] = 33523, + [SMALL_STATE(2329)] = 33595, + [SMALL_STATE(2330)] = 33667, + [SMALL_STATE(2331)] = 33739, + [SMALL_STATE(2332)] = 33811, + [SMALL_STATE(2333)] = 33887, + [SMALL_STATE(2334)] = 33959, + [SMALL_STATE(2335)] = 34031, + [SMALL_STATE(2336)] = 34103, + [SMALL_STATE(2337)] = 34247, + [SMALL_STATE(2338)] = 34319, + [SMALL_STATE(2339)] = 34395, + [SMALL_STATE(2340)] = 34467, + [SMALL_STATE(2341)] = 34539, + [SMALL_STATE(2342)] = 34611, + [SMALL_STATE(2343)] = 34683, + [SMALL_STATE(2344)] = 34755, + [SMALL_STATE(2345)] = 34831, + [SMALL_STATE(2346)] = 34903, + [SMALL_STATE(2347)] = 34975, + [SMALL_STATE(2348)] = 35047, + [SMALL_STATE(2349)] = 35125, + [SMALL_STATE(2350)] = 35197, + [SMALL_STATE(2351)] = 35269, + [SMALL_STATE(2352)] = 35341, + [SMALL_STATE(2353)] = 35413, + [SMALL_STATE(2354)] = 35485, + [SMALL_STATE(2355)] = 35557, + [SMALL_STATE(2356)] = 35633, + [SMALL_STATE(2357)] = 35709, + [SMALL_STATE(2358)] = 35781, + [SMALL_STATE(2359)] = 35853, + [SMALL_STATE(2360)] = 35925, + [SMALL_STATE(2361)] = 35997, + [SMALL_STATE(2362)] = 36069, + [SMALL_STATE(2363)] = 36141, + [SMALL_STATE(2364)] = 36213, + [SMALL_STATE(2365)] = 36291, + [SMALL_STATE(2366)] = 36363, + [SMALL_STATE(2367)] = 36435, + [SMALL_STATE(2368)] = 36507, [SMALL_STATE(2369)] = 36579, - [SMALL_STATE(2370)] = 36655, - [SMALL_STATE(2371)] = 36727, - [SMALL_STATE(2372)] = 36799, + [SMALL_STATE(2370)] = 36651, + [SMALL_STATE(2371)] = 36723, + [SMALL_STATE(2372)] = 36795, [SMALL_STATE(2373)] = 36871, [SMALL_STATE(2374)] = 36942, [SMALL_STATE(2375)] = 37013, - [SMALL_STATE(2376)] = 37084, - [SMALL_STATE(2377)] = 37157, + [SMALL_STATE(2376)] = 37088, + [SMALL_STATE(2377)] = 37159, [SMALL_STATE(2378)] = 37230, [SMALL_STATE(2379)] = 37301, - [SMALL_STATE(2380)] = 37444, - [SMALL_STATE(2381)] = 37587, - [SMALL_STATE(2382)] = 37730, - [SMALL_STATE(2383)] = 37801, - [SMALL_STATE(2384)] = 37872, - [SMALL_STATE(2385)] = 37943, - [SMALL_STATE(2386)] = 38018, - [SMALL_STATE(2387)] = 38089, - [SMALL_STATE(2388)] = 38160, - [SMALL_STATE(2389)] = 38231, - [SMALL_STATE(2390)] = 38306, - [SMALL_STATE(2391)] = 38377, - [SMALL_STATE(2392)] = 38452, - [SMALL_STATE(2393)] = 38523, - [SMALL_STATE(2394)] = 38594, - [SMALL_STATE(2395)] = 38667, - [SMALL_STATE(2396)] = 38740, - [SMALL_STATE(2397)] = 38811, - [SMALL_STATE(2398)] = 38954, - [SMALL_STATE(2399)] = 39027, - [SMALL_STATE(2400)] = 39098, - [SMALL_STATE(2401)] = 39169, - [SMALL_STATE(2402)] = 39242, - [SMALL_STATE(2403)] = 39313, - [SMALL_STATE(2404)] = 39384, - [SMALL_STATE(2405)] = 39455, - [SMALL_STATE(2406)] = 39526, - [SMALL_STATE(2407)] = 39599, - [SMALL_STATE(2408)] = 39742, - [SMALL_STATE(2409)] = 39813, - [SMALL_STATE(2410)] = 39884, - [SMALL_STATE(2411)] = 40027, - [SMALL_STATE(2412)] = 40106, - [SMALL_STATE(2413)] = 40177, - [SMALL_STATE(2414)] = 40248, - [SMALL_STATE(2415)] = 40323, - [SMALL_STATE(2416)] = 40400, - [SMALL_STATE(2417)] = 40471, - [SMALL_STATE(2418)] = 40544, - [SMALL_STATE(2419)] = 40615, - [SMALL_STATE(2420)] = 40686, - [SMALL_STATE(2421)] = 40757, - [SMALL_STATE(2422)] = 40828, - [SMALL_STATE(2423)] = 40899, - [SMALL_STATE(2424)] = 40974, - [SMALL_STATE(2425)] = 41045, - [SMALL_STATE(2426)] = 41116, - [SMALL_STATE(2427)] = 41187, - [SMALL_STATE(2428)] = 41262, - [SMALL_STATE(2429)] = 41333, - [SMALL_STATE(2430)] = 41408, + [SMALL_STATE(2380)] = 37372, + [SMALL_STATE(2381)] = 37443, + [SMALL_STATE(2382)] = 37514, + [SMALL_STATE(2383)] = 37587, + [SMALL_STATE(2384)] = 37730, + [SMALL_STATE(2385)] = 37801, + [SMALL_STATE(2386)] = 37876, + [SMALL_STATE(2387)] = 37951, + [SMALL_STATE(2388)] = 38022, + [SMALL_STATE(2389)] = 38093, + [SMALL_STATE(2390)] = 38164, + [SMALL_STATE(2391)] = 38235, + [SMALL_STATE(2392)] = 38306, + [SMALL_STATE(2393)] = 38377, + [SMALL_STATE(2394)] = 38448, + [SMALL_STATE(2395)] = 38519, + [SMALL_STATE(2396)] = 38662, + [SMALL_STATE(2397)] = 38733, + [SMALL_STATE(2398)] = 38806, + [SMALL_STATE(2399)] = 38881, + [SMALL_STATE(2400)] = 38956, + [SMALL_STATE(2401)] = 39027, + [SMALL_STATE(2402)] = 39098, + [SMALL_STATE(2403)] = 39171, + [SMALL_STATE(2404)] = 39244, + [SMALL_STATE(2405)] = 39319, + [SMALL_STATE(2406)] = 39394, + [SMALL_STATE(2407)] = 39465, + [SMALL_STATE(2408)] = 39608, + [SMALL_STATE(2409)] = 39681, + [SMALL_STATE(2410)] = 39754, + [SMALL_STATE(2411)] = 39825, + [SMALL_STATE(2412)] = 39896, + [SMALL_STATE(2413)] = 39967, + [SMALL_STATE(2414)] = 40038, + [SMALL_STATE(2415)] = 40109, + [SMALL_STATE(2416)] = 40180, + [SMALL_STATE(2417)] = 40257, + [SMALL_STATE(2418)] = 40400, + [SMALL_STATE(2419)] = 40471, + [SMALL_STATE(2420)] = 40542, + [SMALL_STATE(2421)] = 40613, + [SMALL_STATE(2422)] = 40756, + [SMALL_STATE(2423)] = 40827, + [SMALL_STATE(2424)] = 40898, + [SMALL_STATE(2425)] = 41041, + [SMALL_STATE(2426)] = 41112, + [SMALL_STATE(2427)] = 41183, + [SMALL_STATE(2428)] = 41256, + [SMALL_STATE(2429)] = 41335, + [SMALL_STATE(2430)] = 41406, [SMALL_STATE(2431)] = 41479, [SMALL_STATE(2432)] = 41549, - [SMALL_STATE(2433)] = 41623, - [SMALL_STATE(2434)] = 41693, - [SMALL_STATE(2435)] = 41831, - [SMALL_STATE(2436)] = 41901, - [SMALL_STATE(2437)] = 41971, - [SMALL_STATE(2438)] = 42041, - [SMALL_STATE(2439)] = 42111, - [SMALL_STATE(2440)] = 42181, - [SMALL_STATE(2441)] = 42321, - [SMALL_STATE(2442)] = 42391, - [SMALL_STATE(2443)] = 42469, - [SMALL_STATE(2444)] = 42539, - [SMALL_STATE(2445)] = 42609, - [SMALL_STATE(2446)] = 42681, - [SMALL_STATE(2447)] = 42751, - [SMALL_STATE(2448)] = 42821, - [SMALL_STATE(2449)] = 42893, - [SMALL_STATE(2450)] = 42963, - [SMALL_STATE(2451)] = 43035, - [SMALL_STATE(2452)] = 43105, - [SMALL_STATE(2453)] = 43175, - [SMALL_STATE(2454)] = 43245, - [SMALL_STATE(2455)] = 43315, - [SMALL_STATE(2456)] = 43455, - [SMALL_STATE(2457)] = 43533, - [SMALL_STATE(2458)] = 43603, - [SMALL_STATE(2459)] = 43673, - [SMALL_STATE(2460)] = 43743, - [SMALL_STATE(2461)] = 43813, - [SMALL_STATE(2462)] = 43883, - [SMALL_STATE(2463)] = 44023, - [SMALL_STATE(2464)] = 44163, - [SMALL_STATE(2465)] = 44303, - [SMALL_STATE(2466)] = 44377, - [SMALL_STATE(2467)] = 44447, - [SMALL_STATE(2468)] = 44519, - [SMALL_STATE(2469)] = 44589, - [SMALL_STATE(2470)] = 44659, - [SMALL_STATE(2471)] = 44729, - [SMALL_STATE(2472)] = 44799, - [SMALL_STATE(2473)] = 44873, - [SMALL_STATE(2474)] = 45013, - [SMALL_STATE(2475)] = 45083, - [SMALL_STATE(2476)] = 45153, - [SMALL_STATE(2477)] = 45223, - [SMALL_STATE(2478)] = 45293, - [SMALL_STATE(2479)] = 45433, - [SMALL_STATE(2480)] = 45503, - [SMALL_STATE(2481)] = 45643, - [SMALL_STATE(2482)] = 45713, - [SMALL_STATE(2483)] = 45783, - [SMALL_STATE(2484)] = 45853, - [SMALL_STATE(2485)] = 45925, - [SMALL_STATE(2486)] = 45999, - [SMALL_STATE(2487)] = 46069, - [SMALL_STATE(2488)] = 46139, - [SMALL_STATE(2489)] = 46209, - [SMALL_STATE(2490)] = 46279, - [SMALL_STATE(2491)] = 46349, - [SMALL_STATE(2492)] = 46419, - [SMALL_STATE(2493)] = 46489, - [SMALL_STATE(2494)] = 46559, - [SMALL_STATE(2495)] = 46629, - [SMALL_STATE(2496)] = 46699, - [SMALL_STATE(2497)] = 46779, - [SMALL_STATE(2498)] = 46855, - [SMALL_STATE(2499)] = 46929, - [SMALL_STATE(2500)] = 46999, - [SMALL_STATE(2501)] = 47069, - [SMALL_STATE(2502)] = 47151, - [SMALL_STATE(2503)] = 47225, - [SMALL_STATE(2504)] = 47295, - [SMALL_STATE(2505)] = 47367, - [SMALL_STATE(2506)] = 47445, - [SMALL_STATE(2507)] = 47529, - [SMALL_STATE(2508)] = 47615, - [SMALL_STATE(2509)] = 47703, - [SMALL_STATE(2510)] = 47773, - [SMALL_STATE(2511)] = 47863, - [SMALL_STATE(2512)] = 47955, - [SMALL_STATE(2513)] = 48049, - [SMALL_STATE(2514)] = 48145, - [SMALL_STATE(2515)] = 48219, - [SMALL_STATE(2516)] = 48289, - [SMALL_STATE(2517)] = 48359, - [SMALL_STATE(2518)] = 48431, - [SMALL_STATE(2519)] = 48503, - [SMALL_STATE(2520)] = 48573, - [SMALL_STATE(2521)] = 48643, - [SMALL_STATE(2522)] = 48713, - [SMALL_STATE(2523)] = 48787, - [SMALL_STATE(2524)] = 48859, - [SMALL_STATE(2525)] = 48929, - [SMALL_STATE(2526)] = 48999, + [SMALL_STATE(2433)] = 41621, + [SMALL_STATE(2434)] = 41691, + [SMALL_STATE(2435)] = 41763, + [SMALL_STATE(2436)] = 41833, + [SMALL_STATE(2437)] = 41907, + [SMALL_STATE(2438)] = 41977, + [SMALL_STATE(2439)] = 42047, + [SMALL_STATE(2440)] = 42117, + [SMALL_STATE(2441)] = 42187, + [SMALL_STATE(2442)] = 42257, + [SMALL_STATE(2443)] = 42327, + [SMALL_STATE(2444)] = 42401, + [SMALL_STATE(2445)] = 42541, + [SMALL_STATE(2446)] = 42615, + [SMALL_STATE(2447)] = 42755, + [SMALL_STATE(2448)] = 42825, + [SMALL_STATE(2449)] = 42895, + [SMALL_STATE(2450)] = 43035, + [SMALL_STATE(2451)] = 43173, + [SMALL_STATE(2452)] = 43243, + [SMALL_STATE(2453)] = 43313, + [SMALL_STATE(2454)] = 43385, + [SMALL_STATE(2455)] = 43455, + [SMALL_STATE(2456)] = 43525, + [SMALL_STATE(2457)] = 43599, + [SMALL_STATE(2458)] = 43669, + [SMALL_STATE(2459)] = 43739, + [SMALL_STATE(2460)] = 43809, + [SMALL_STATE(2461)] = 43879, + [SMALL_STATE(2462)] = 43949, + [SMALL_STATE(2463)] = 44019, + [SMALL_STATE(2464)] = 44089, + [SMALL_STATE(2465)] = 44159, + [SMALL_STATE(2466)] = 44229, + [SMALL_STATE(2467)] = 44299, + [SMALL_STATE(2468)] = 44373, + [SMALL_STATE(2469)] = 44443, + [SMALL_STATE(2470)] = 44513, + [SMALL_STATE(2471)] = 44583, + [SMALL_STATE(2472)] = 44653, + [SMALL_STATE(2473)] = 44723, + [SMALL_STATE(2474)] = 44793, + [SMALL_STATE(2475)] = 44869, + [SMALL_STATE(2476)] = 44943, + [SMALL_STATE(2477)] = 45013, + [SMALL_STATE(2478)] = 45091, + [SMALL_STATE(2479)] = 45161, + [SMALL_STATE(2480)] = 45241, + [SMALL_STATE(2481)] = 45317, + [SMALL_STATE(2482)] = 45399, + [SMALL_STATE(2483)] = 45469, + [SMALL_STATE(2484)] = 45543, + [SMALL_STATE(2485)] = 45615, + [SMALL_STATE(2486)] = 45693, + [SMALL_STATE(2487)] = 45777, + [SMALL_STATE(2488)] = 45851, + [SMALL_STATE(2489)] = 45939, + [SMALL_STATE(2490)] = 46029, + [SMALL_STATE(2491)] = 46121, + [SMALL_STATE(2492)] = 46215, + [SMALL_STATE(2493)] = 46311, + [SMALL_STATE(2494)] = 46381, + [SMALL_STATE(2495)] = 46451, + [SMALL_STATE(2496)] = 46521, + [SMALL_STATE(2497)] = 46591, + [SMALL_STATE(2498)] = 46661, + [SMALL_STATE(2499)] = 46731, + [SMALL_STATE(2500)] = 46801, + [SMALL_STATE(2501)] = 46871, + [SMALL_STATE(2502)] = 46941, + [SMALL_STATE(2503)] = 47013, + [SMALL_STATE(2504)] = 47083, + [SMALL_STATE(2505)] = 47157, + [SMALL_STATE(2506)] = 47227, + [SMALL_STATE(2507)] = 47367, + [SMALL_STATE(2508)] = 47507, + [SMALL_STATE(2509)] = 47647, + [SMALL_STATE(2510)] = 47787, + [SMALL_STATE(2511)] = 47857, + [SMALL_STATE(2512)] = 47931, + [SMALL_STATE(2513)] = 48009, + [SMALL_STATE(2514)] = 48079, + [SMALL_STATE(2515)] = 48149, + [SMALL_STATE(2516)] = 48219, + [SMALL_STATE(2517)] = 48289, + [SMALL_STATE(2518)] = 48359, + [SMALL_STATE(2519)] = 48431, + [SMALL_STATE(2520)] = 48503, + [SMALL_STATE(2521)] = 48573, + [SMALL_STATE(2522)] = 48643, + [SMALL_STATE(2523)] = 48713, + [SMALL_STATE(2524)] = 48785, + [SMALL_STATE(2525)] = 48925, + [SMALL_STATE(2526)] = 48997, [SMALL_STATE(2527)] = 49069, - [SMALL_STATE(2528)] = 49139, - [SMALL_STATE(2529)] = 49213, - [SMALL_STATE(2530)] = 49353, - [SMALL_STATE(2531)] = 49427, - [SMALL_STATE(2532)] = 49501, - [SMALL_STATE(2533)] = 49573, - [SMALL_STATE(2534)] = 49647, - [SMALL_STATE(2535)] = 49723, + [SMALL_STATE(2528)] = 49143, + [SMALL_STATE(2529)] = 49217, + [SMALL_STATE(2530)] = 49287, + [SMALL_STATE(2531)] = 49357, + [SMALL_STATE(2532)] = 49497, + [SMALL_STATE(2533)] = 49567, + [SMALL_STATE(2534)] = 49637, + [SMALL_STATE(2535)] = 49707, [SMALL_STATE(2536)] = 49793, - [SMALL_STATE(2537)] = 49936, - [SMALL_STATE(2538)] = 50005, - [SMALL_STATE(2539)] = 50074, - [SMALL_STATE(2540)] = 50143, - [SMALL_STATE(2541)] = 50214, - [SMALL_STATE(2542)] = 50283, - [SMALL_STATE(2543)] = 50352, - [SMALL_STATE(2544)] = 50421, - [SMALL_STATE(2545)] = 50494, - [SMALL_STATE(2546)] = 50569, - [SMALL_STATE(2547)] = 50638, - [SMALL_STATE(2548)] = 50707, - [SMALL_STATE(2549)] = 50776, - [SMALL_STATE(2550)] = 50851, - [SMALL_STATE(2551)] = 50930, - [SMALL_STATE(2552)] = 51005, - [SMALL_STATE(2553)] = 51086, - [SMALL_STATE(2554)] = 51161, - [SMALL_STATE(2555)] = 51234, - [SMALL_STATE(2556)] = 51305, - [SMALL_STATE(2557)] = 51374, - [SMALL_STATE(2558)] = 51443, - [SMALL_STATE(2559)] = 51526, - [SMALL_STATE(2560)] = 51595, - [SMALL_STATE(2561)] = 51680, - [SMALL_STATE(2562)] = 51767, - [SMALL_STATE(2563)] = 51836, - [SMALL_STATE(2564)] = 51925, - [SMALL_STATE(2565)] = 52016, - [SMALL_STATE(2566)] = 52085, - [SMALL_STATE(2567)] = 52154, - [SMALL_STATE(2568)] = 52223, - [SMALL_STATE(2569)] = 52292, - [SMALL_STATE(2570)] = 52385, - [SMALL_STATE(2571)] = 52454, - [SMALL_STATE(2572)] = 52523, - [SMALL_STATE(2573)] = 52594, - [SMALL_STATE(2574)] = 52689, - [SMALL_STATE(2575)] = 52758, - [SMALL_STATE(2576)] = 52827, - [SMALL_STATE(2577)] = 52902, - [SMALL_STATE(2578)] = 52971, - [SMALL_STATE(2579)] = 53046, - [SMALL_STATE(2580)] = 53115, - [SMALL_STATE(2581)] = 53190, - [SMALL_STATE(2582)] = 53259, - [SMALL_STATE(2583)] = 53334, - [SMALL_STATE(2584)] = 53403, - [SMALL_STATE(2585)] = 53478, - [SMALL_STATE(2586)] = 53553, - [SMALL_STATE(2587)] = 53622, - [SMALL_STATE(2588)] = 53691, - [SMALL_STATE(2589)] = 53768, - [SMALL_STATE(2590)] = 53837, - [SMALL_STATE(2591)] = 53906, - [SMALL_STATE(2592)] = 53977, - [SMALL_STATE(2593)] = 54046, - [SMALL_STATE(2594)] = 54115, - [SMALL_STATE(2595)] = 54184, - [SMALL_STATE(2596)] = 54257, - [SMALL_STATE(2597)] = 54326, - [SMALL_STATE(2598)] = 54395, - [SMALL_STATE(2599)] = 54464, - [SMALL_STATE(2600)] = 54533, - [SMALL_STATE(2601)] = 54608, - [SMALL_STATE(2602)] = 54683, - [SMALL_STATE(2603)] = 54754, - [SMALL_STATE(2604)] = 54827, - [SMALL_STATE(2605)] = 54896, - [SMALL_STATE(2606)] = 54965, - [SMALL_STATE(2607)] = 55034, - [SMALL_STATE(2608)] = 55103, - [SMALL_STATE(2609)] = 55176, - [SMALL_STATE(2610)] = 55251, - [SMALL_STATE(2611)] = 55324, - [SMALL_STATE(2612)] = 55393, - [SMALL_STATE(2613)] = 55468, - [SMALL_STATE(2614)] = 55541, - [SMALL_STATE(2615)] = 55610, - [SMALL_STATE(2616)] = 55679, - [SMALL_STATE(2617)] = 55748, - [SMALL_STATE(2618)] = 55817, - [SMALL_STATE(2619)] = 55888, - [SMALL_STATE(2620)] = 55957, - [SMALL_STATE(2621)] = 56034, - [SMALL_STATE(2622)] = 56103, - [SMALL_STATE(2623)] = 56172, - [SMALL_STATE(2624)] = 56247, - [SMALL_STATE(2625)] = 56316, - [SMALL_STATE(2626)] = 56389, - [SMALL_STATE(2627)] = 56458, - [SMALL_STATE(2628)] = 56531, - [SMALL_STATE(2629)] = 56600, - [SMALL_STATE(2630)] = 56675, - [SMALL_STATE(2631)] = 56744, - [SMALL_STATE(2632)] = 56813, - [SMALL_STATE(2633)] = 56884, - [SMALL_STATE(2634)] = 56953, - [SMALL_STATE(2635)] = 57026, - [SMALL_STATE(2636)] = 57095, - [SMALL_STATE(2637)] = 57170, - [SMALL_STATE(2638)] = 57241, - [SMALL_STATE(2639)] = 57314, - [SMALL_STATE(2640)] = 57389, - [SMALL_STATE(2641)] = 57458, - [SMALL_STATE(2642)] = 57527, - [SMALL_STATE(2643)] = 57600, - [SMALL_STATE(2644)] = 57669, - [SMALL_STATE(2645)] = 57738, - [SMALL_STATE(2646)] = 57809, - [SMALL_STATE(2647)] = 57952, + [SMALL_STATE(2537)] = 49862, + [SMALL_STATE(2538)] = 49933, + [SMALL_STATE(2539)] = 50008, + [SMALL_STATE(2540)] = 50077, + [SMALL_STATE(2541)] = 50148, + [SMALL_STATE(2542)] = 50217, + [SMALL_STATE(2543)] = 50286, + [SMALL_STATE(2544)] = 50357, + [SMALL_STATE(2545)] = 50426, + [SMALL_STATE(2546)] = 50495, + [SMALL_STATE(2547)] = 50568, + [SMALL_STATE(2548)] = 50641, + [SMALL_STATE(2549)] = 50710, + [SMALL_STATE(2550)] = 50779, + [SMALL_STATE(2551)] = 50848, + [SMALL_STATE(2552)] = 50917, + [SMALL_STATE(2553)] = 50986, + [SMALL_STATE(2554)] = 51055, + [SMALL_STATE(2555)] = 51130, + [SMALL_STATE(2556)] = 51199, + [SMALL_STATE(2557)] = 51268, + [SMALL_STATE(2558)] = 51337, + [SMALL_STATE(2559)] = 51412, + [SMALL_STATE(2560)] = 51487, + [SMALL_STATE(2561)] = 51560, + [SMALL_STATE(2562)] = 51635, + [SMALL_STATE(2563)] = 51710, + [SMALL_STATE(2564)] = 51779, + [SMALL_STATE(2565)] = 51848, + [SMALL_STATE(2566)] = 51917, + [SMALL_STATE(2567)] = 51990, + [SMALL_STATE(2568)] = 52059, + [SMALL_STATE(2569)] = 52128, + [SMALL_STATE(2570)] = 52197, + [SMALL_STATE(2571)] = 52266, + [SMALL_STATE(2572)] = 52335, + [SMALL_STATE(2573)] = 52408, + [SMALL_STATE(2574)] = 52477, + [SMALL_STATE(2575)] = 52546, + [SMALL_STATE(2576)] = 52621, + [SMALL_STATE(2577)] = 52764, + [SMALL_STATE(2578)] = 52833, + [SMALL_STATE(2579)] = 52902, + [SMALL_STATE(2580)] = 52971, + [SMALL_STATE(2581)] = 53040, + [SMALL_STATE(2582)] = 53109, + [SMALL_STATE(2583)] = 53178, + [SMALL_STATE(2584)] = 53247, + [SMALL_STATE(2585)] = 53318, + [SMALL_STATE(2586)] = 53387, + [SMALL_STATE(2587)] = 53456, + [SMALL_STATE(2588)] = 53529, + [SMALL_STATE(2589)] = 53598, + [SMALL_STATE(2590)] = 53675, + [SMALL_STATE(2591)] = 53748, + [SMALL_STATE(2592)] = 53817, + [SMALL_STATE(2593)] = 53890, + [SMALL_STATE(2594)] = 53963, + [SMALL_STATE(2595)] = 54034, + [SMALL_STATE(2596)] = 54175, + [SMALL_STATE(2597)] = 54254, + [SMALL_STATE(2598)] = 54323, + [SMALL_STATE(2599)] = 54398, + [SMALL_STATE(2600)] = 54467, + [SMALL_STATE(2601)] = 54536, + [SMALL_STATE(2602)] = 54617, + [SMALL_STATE(2603)] = 54686, + [SMALL_STATE(2604)] = 54755, + [SMALL_STATE(2605)] = 54828, + [SMALL_STATE(2606)] = 54897, + [SMALL_STATE(2607)] = 54968, + [SMALL_STATE(2608)] = 55037, + [SMALL_STATE(2609)] = 55106, + [SMALL_STATE(2610)] = 55177, + [SMALL_STATE(2611)] = 55246, + [SMALL_STATE(2612)] = 55315, + [SMALL_STATE(2613)] = 55384, + [SMALL_STATE(2614)] = 55453, + [SMALL_STATE(2615)] = 55530, + [SMALL_STATE(2616)] = 55599, + [SMALL_STATE(2617)] = 55668, + [SMALL_STATE(2618)] = 55751, + [SMALL_STATE(2619)] = 55820, + [SMALL_STATE(2620)] = 55905, + [SMALL_STATE(2621)] = 55992, + [SMALL_STATE(2622)] = 56081, + [SMALL_STATE(2623)] = 56150, + [SMALL_STATE(2624)] = 56219, + [SMALL_STATE(2625)] = 56310, + [SMALL_STATE(2626)] = 56403, + [SMALL_STATE(2627)] = 56478, + [SMALL_STATE(2628)] = 56553, + [SMALL_STATE(2629)] = 56622, + [SMALL_STATE(2630)] = 56717, + [SMALL_STATE(2631)] = 56792, + [SMALL_STATE(2632)] = 56861, + [SMALL_STATE(2633)] = 56936, + [SMALL_STATE(2634)] = 57011, + [SMALL_STATE(2635)] = 57086, + [SMALL_STATE(2636)] = 57229, + [SMALL_STATE(2637)] = 57304, + [SMALL_STATE(2638)] = 57379, + [SMALL_STATE(2639)] = 57448, + [SMALL_STATE(2640)] = 57519, + [SMALL_STATE(2641)] = 57592, + [SMALL_STATE(2642)] = 57667, + [SMALL_STATE(2643)] = 57742, + [SMALL_STATE(2644)] = 57811, + [SMALL_STATE(2645)] = 57884, + [SMALL_STATE(2646)] = 57955, + [SMALL_STATE(2647)] = 58024, [SMALL_STATE(2648)] = 58093, - [SMALL_STATE(2649)] = 58167, - [SMALL_STATE(2650)] = 58241, - [SMALL_STATE(2651)] = 58311, - [SMALL_STATE(2652)] = 58379, - [SMALL_STATE(2653)] = 58453, + [SMALL_STATE(2649)] = 58161, + [SMALL_STATE(2650)] = 58231, + [SMALL_STATE(2651)] = 58305, + [SMALL_STATE(2652)] = 58373, + [SMALL_STATE(2653)] = 58447, [SMALL_STATE(2654)] = 58521, - [SMALL_STATE(2655)] = 58589, - [SMALL_STATE(2656)] = 58663, - [SMALL_STATE(2657)] = 58735, - [SMALL_STATE(2658)] = 58803, - [SMALL_STATE(2659)] = 58877, - [SMALL_STATE(2660)] = 58949, - [SMALL_STATE(2661)] = 59019, - [SMALL_STATE(2662)] = 59093, - [SMALL_STATE(2663)] = 59163, - [SMALL_STATE(2664)] = 59231, - [SMALL_STATE(2665)] = 59369, - [SMALL_STATE(2666)] = 59437, - [SMALL_STATE(2667)] = 59505, - [SMALL_STATE(2668)] = 59579, - [SMALL_STATE(2669)] = 59653, - [SMALL_STATE(2670)] = 59727, - [SMALL_STATE(2671)] = 59801, - [SMALL_STATE(2672)] = 59875, - [SMALL_STATE(2673)] = 59947, - [SMALL_STATE(2674)] = 60021, - [SMALL_STATE(2675)] = 60159, - [SMALL_STATE(2676)] = 60227, - [SMALL_STATE(2677)] = 60301, - [SMALL_STATE(2678)] = 60373, - [SMALL_STATE(2679)] = 60447, - [SMALL_STATE(2680)] = 60515, - [SMALL_STATE(2681)] = 60589, - [SMALL_STATE(2682)] = 60657, - [SMALL_STATE(2683)] = 60731, - [SMALL_STATE(2684)] = 60805, - [SMALL_STATE(2685)] = 60875, - [SMALL_STATE(2686)] = 60945, - [SMALL_STATE(2687)] = 61013, - [SMALL_STATE(2688)] = 61087, - [SMALL_STATE(2689)] = 61161, - [SMALL_STATE(2690)] = 61233, - [SMALL_STATE(2691)] = 61307, - [SMALL_STATE(2692)] = 61379, - [SMALL_STATE(2693)] = 61453, - [SMALL_STATE(2694)] = 61527, - [SMALL_STATE(2695)] = 61601, - [SMALL_STATE(2696)] = 61675, - [SMALL_STATE(2697)] = 61747, - [SMALL_STATE(2698)] = 61821, - [SMALL_STATE(2699)] = 61893, - [SMALL_STATE(2700)] = 61967, - [SMALL_STATE(2701)] = 62041, - [SMALL_STATE(2702)] = 62111, - [SMALL_STATE(2703)] = 62185, - [SMALL_STATE(2704)] = 62323, - [SMALL_STATE(2705)] = 62395, - [SMALL_STATE(2706)] = 62469, - [SMALL_STATE(2707)] = 62543, - [SMALL_STATE(2708)] = 62681, - [SMALL_STATE(2709)] = 62751, - [SMALL_STATE(2710)] = 62825, - [SMALL_STATE(2711)] = 62965, - [SMALL_STATE(2712)] = 63039, - [SMALL_STATE(2713)] = 63109, - [SMALL_STATE(2714)] = 63247, - [SMALL_STATE(2715)] = 63315, - [SMALL_STATE(2716)] = 63383, - [SMALL_STATE(2717)] = 63455, - [SMALL_STATE(2718)] = 63593, - [SMALL_STATE(2719)] = 63667, - [SMALL_STATE(2720)] = 63741, - [SMALL_STATE(2721)] = 63815, - [SMALL_STATE(2722)] = 63893, + [SMALL_STATE(2655)] = 58659, + [SMALL_STATE(2656)] = 58733, + [SMALL_STATE(2657)] = 58801, + [SMALL_STATE(2658)] = 58875, + [SMALL_STATE(2659)] = 58945, + [SMALL_STATE(2660)] = 59013, + [SMALL_STATE(2661)] = 59083, + [SMALL_STATE(2662)] = 59157, + [SMALL_STATE(2663)] = 59231, + [SMALL_STATE(2664)] = 59305, + [SMALL_STATE(2665)] = 59383, + [SMALL_STATE(2666)] = 59457, + [SMALL_STATE(2667)] = 59529, + [SMALL_STATE(2668)] = 59667, + [SMALL_STATE(2669)] = 59741, + [SMALL_STATE(2670)] = 59809, + [SMALL_STATE(2671)] = 59883, + [SMALL_STATE(2672)] = 59951, + [SMALL_STATE(2673)] = 60025, + [SMALL_STATE(2674)] = 60093, + [SMALL_STATE(2675)] = 60165, + [SMALL_STATE(2676)] = 60239, + [SMALL_STATE(2677)] = 60311, + [SMALL_STATE(2678)] = 60383, + [SMALL_STATE(2679)] = 60457, + [SMALL_STATE(2680)] = 60531, + [SMALL_STATE(2681)] = 60669, + [SMALL_STATE(2682)] = 60807, + [SMALL_STATE(2683)] = 60877, + [SMALL_STATE(2684)] = 60951, + [SMALL_STATE(2685)] = 61025, + [SMALL_STATE(2686)] = 61099, + [SMALL_STATE(2687)] = 61173, + [SMALL_STATE(2688)] = 61247, + [SMALL_STATE(2689)] = 61321, + [SMALL_STATE(2690)] = 61389, + [SMALL_STATE(2691)] = 61527, + [SMALL_STATE(2692)] = 61595, + [SMALL_STATE(2693)] = 61733, + [SMALL_STATE(2694)] = 61807, + [SMALL_STATE(2695)] = 61879, + [SMALL_STATE(2696)] = 61953, + [SMALL_STATE(2697)] = 62021, + [SMALL_STATE(2698)] = 62161, + [SMALL_STATE(2699)] = 62229, + [SMALL_STATE(2700)] = 62301, + [SMALL_STATE(2701)] = 62375, + [SMALL_STATE(2702)] = 62443, + [SMALL_STATE(2703)] = 62513, + [SMALL_STATE(2704)] = 62587, + [SMALL_STATE(2705)] = 62661, + [SMALL_STATE(2706)] = 62733, + [SMALL_STATE(2707)] = 62807, + [SMALL_STATE(2708)] = 62879, + [SMALL_STATE(2709)] = 62953, + [SMALL_STATE(2710)] = 63027, + [SMALL_STATE(2711)] = 63101, + [SMALL_STATE(2712)] = 63175, + [SMALL_STATE(2713)] = 63245, + [SMALL_STATE(2714)] = 63319, + [SMALL_STATE(2715)] = 63391, + [SMALL_STATE(2716)] = 63461, + [SMALL_STATE(2717)] = 63531, + [SMALL_STATE(2718)] = 63605, + [SMALL_STATE(2719)] = 63679, + [SMALL_STATE(2720)] = 63751, + [SMALL_STATE(2721)] = 63819, + [SMALL_STATE(2722)] = 63887, [SMALL_STATE(2723)] = 63961, [SMALL_STATE(2724)] = 64033, - [SMALL_STATE(2725)] = 64104, - [SMALL_STATE(2726)] = 64177, - [SMALL_STATE(2727)] = 64312, - [SMALL_STATE(2728)] = 64381, - [SMALL_STATE(2729)] = 64516, - [SMALL_STATE(2730)] = 64651, - [SMALL_STATE(2731)] = 64786, - [SMALL_STATE(2732)] = 64857, - [SMALL_STATE(2733)] = 64992, - [SMALL_STATE(2734)] = 65059, - [SMALL_STATE(2735)] = 65194, - [SMALL_STATE(2736)] = 65329, - [SMALL_STATE(2737)] = 65464, - [SMALL_STATE(2738)] = 65537, - [SMALL_STATE(2739)] = 65610, - [SMALL_STATE(2740)] = 65745, - [SMALL_STATE(2741)] = 65880, - [SMALL_STATE(2742)] = 66015, - [SMALL_STATE(2743)] = 66088, - [SMALL_STATE(2744)] = 66221, - [SMALL_STATE(2745)] = 66290, - [SMALL_STATE(2746)] = 66423, - [SMALL_STATE(2747)] = 66496, - [SMALL_STATE(2748)] = 66565, - [SMALL_STATE(2749)] = 66636, - [SMALL_STATE(2750)] = 66771, - [SMALL_STATE(2751)] = 66906, - [SMALL_STATE(2752)] = 67041, - [SMALL_STATE(2753)] = 67176, - [SMALL_STATE(2754)] = 67243, - [SMALL_STATE(2755)] = 67378, - [SMALL_STATE(2756)] = 67451, - [SMALL_STATE(2757)] = 67518, - [SMALL_STATE(2758)] = 67587, - [SMALL_STATE(2759)] = 67656, - [SMALL_STATE(2760)] = 67791, - [SMALL_STATE(2761)] = 67926, - [SMALL_STATE(2762)] = 68061, - [SMALL_STATE(2763)] = 68196, - [SMALL_STATE(2764)] = 68333, - [SMALL_STATE(2765)] = 68404, - [SMALL_STATE(2766)] = 68539, - [SMALL_STATE(2767)] = 68674, - [SMALL_STATE(2768)] = 68809, - [SMALL_STATE(2769)] = 68880, - [SMALL_STATE(2770)] = 68949, - [SMALL_STATE(2771)] = 69084, - [SMALL_STATE(2772)] = 69219, - [SMALL_STATE(2773)] = 69292, - [SMALL_STATE(2774)] = 69427, - [SMALL_STATE(2775)] = 69562, - [SMALL_STATE(2776)] = 69629, - [SMALL_STATE(2777)] = 69696, - [SMALL_STATE(2778)] = 69767, - [SMALL_STATE(2779)] = 69838, - [SMALL_STATE(2780)] = 69973, - [SMALL_STATE(2781)] = 70108, - [SMALL_STATE(2782)] = 70243, - [SMALL_STATE(2783)] = 70378, - [SMALL_STATE(2784)] = 70451, - [SMALL_STATE(2785)] = 70586, - [SMALL_STATE(2786)] = 70721, - [SMALL_STATE(2787)] = 70856, - [SMALL_STATE(2788)] = 70991, - [SMALL_STATE(2789)] = 71126, - [SMALL_STATE(2790)] = 71261, - [SMALL_STATE(2791)] = 71396, - [SMALL_STATE(2792)] = 71531, - [SMALL_STATE(2793)] = 71666, - [SMALL_STATE(2794)] = 71801, - [SMALL_STATE(2795)] = 71936, - [SMALL_STATE(2796)] = 72071, - [SMALL_STATE(2797)] = 72142, - [SMALL_STATE(2798)] = 72213, - [SMALL_STATE(2799)] = 72284, - [SMALL_STATE(2800)] = 72351, - [SMALL_STATE(2801)] = 72486, - [SMALL_STATE(2802)] = 72621, - [SMALL_STATE(2803)] = 72756, - [SMALL_STATE(2804)] = 72891, - [SMALL_STATE(2805)] = 72964, - [SMALL_STATE(2806)] = 73037, - [SMALL_STATE(2807)] = 73104, - [SMALL_STATE(2808)] = 73239, - [SMALL_STATE(2809)] = 73306, - [SMALL_STATE(2810)] = 73441, - [SMALL_STATE(2811)] = 73508, - [SMALL_STATE(2812)] = 73581, - [SMALL_STATE(2813)] = 73650, - [SMALL_STATE(2814)] = 73785, - [SMALL_STATE(2815)] = 73920, - [SMALL_STATE(2816)] = 73989, - [SMALL_STATE(2817)] = 74056, - [SMALL_STATE(2818)] = 74125, - [SMALL_STATE(2819)] = 74194, - [SMALL_STATE(2820)] = 74329, - [SMALL_STATE(2821)] = 74398, - [SMALL_STATE(2822)] = 74533, - [SMALL_STATE(2823)] = 74668, - [SMALL_STATE(2824)] = 74803, - [SMALL_STATE(2825)] = 74938, - [SMALL_STATE(2826)] = 75073, - [SMALL_STATE(2827)] = 75208, - [SMALL_STATE(2828)] = 75343, - [SMALL_STATE(2829)] = 75478, - [SMALL_STATE(2830)] = 75613, - [SMALL_STATE(2831)] = 75748, - [SMALL_STATE(2832)] = 75883, - [SMALL_STATE(2833)] = 76018, - [SMALL_STATE(2834)] = 76153, - [SMALL_STATE(2835)] = 76288, - [SMALL_STATE(2836)] = 76423, - [SMALL_STATE(2837)] = 76558, - [SMALL_STATE(2838)] = 76631, - [SMALL_STATE(2839)] = 76766, - [SMALL_STATE(2840)] = 76901, - [SMALL_STATE(2841)] = 76968, - [SMALL_STATE(2842)] = 77103, - [SMALL_STATE(2843)] = 77238, - [SMALL_STATE(2844)] = 77373, - [SMALL_STATE(2845)] = 77446, - [SMALL_STATE(2846)] = 77515, - [SMALL_STATE(2847)] = 77586, - [SMALL_STATE(2848)] = 77653, - [SMALL_STATE(2849)] = 77724, - [SMALL_STATE(2850)] = 77793, - [SMALL_STATE(2851)] = 77864, - [SMALL_STATE(2852)] = 77933, - [SMALL_STATE(2853)] = 78068, - [SMALL_STATE(2854)] = 78203, - [SMALL_STATE(2855)] = 78276, - [SMALL_STATE(2856)] = 78411, - [SMALL_STATE(2857)] = 78478, - [SMALL_STATE(2858)] = 78613, - [SMALL_STATE(2859)] = 78748, - [SMALL_STATE(2860)] = 78883, - [SMALL_STATE(2861)] = 79018, - [SMALL_STATE(2862)] = 79153, - [SMALL_STATE(2863)] = 79288, - [SMALL_STATE(2864)] = 79423, - [SMALL_STATE(2865)] = 79558, - [SMALL_STATE(2866)] = 79693, - [SMALL_STATE(2867)] = 79828, - [SMALL_STATE(2868)] = 79963, - [SMALL_STATE(2869)] = 80098, - [SMALL_STATE(2870)] = 80233, - [SMALL_STATE(2871)] = 80368, - [SMALL_STATE(2872)] = 80503, - [SMALL_STATE(2873)] = 80638, - [SMALL_STATE(2874)] = 80705, - [SMALL_STATE(2875)] = 80840, - [SMALL_STATE(2876)] = 80975, - [SMALL_STATE(2877)] = 81110, - [SMALL_STATE(2878)] = 81245, - [SMALL_STATE(2879)] = 81380, - [SMALL_STATE(2880)] = 81515, - [SMALL_STATE(2881)] = 81650, - [SMALL_STATE(2882)] = 81785, - [SMALL_STATE(2883)] = 81920, - [SMALL_STATE(2884)] = 82055, - [SMALL_STATE(2885)] = 82190, - [SMALL_STATE(2886)] = 82325, - [SMALL_STATE(2887)] = 82460, - [SMALL_STATE(2888)] = 82595, - [SMALL_STATE(2889)] = 82668, - [SMALL_STATE(2890)] = 82803, - [SMALL_STATE(2891)] = 82938, - [SMALL_STATE(2892)] = 83073, - [SMALL_STATE(2893)] = 83208, - [SMALL_STATE(2894)] = 83343, - [SMALL_STATE(2895)] = 83478, - [SMALL_STATE(2896)] = 83613, - [SMALL_STATE(2897)] = 83748, - [SMALL_STATE(2898)] = 83883, - [SMALL_STATE(2899)] = 84018, - [SMALL_STATE(2900)] = 84153, - [SMALL_STATE(2901)] = 84226, - [SMALL_STATE(2902)] = 84361, - [SMALL_STATE(2903)] = 84428, - [SMALL_STATE(2904)] = 84501, - [SMALL_STATE(2905)] = 84636, - [SMALL_STATE(2906)] = 84771, - [SMALL_STATE(2907)] = 84838, - [SMALL_STATE(2908)] = 84973, - [SMALL_STATE(2909)] = 85040, - [SMALL_STATE(2910)] = 85175, - [SMALL_STATE(2911)] = 85310, - [SMALL_STATE(2912)] = 85445, - [SMALL_STATE(2913)] = 85580, - [SMALL_STATE(2914)] = 85715, - [SMALL_STATE(2915)] = 85850, - [SMALL_STATE(2916)] = 85917, - [SMALL_STATE(2917)] = 86052, - [SMALL_STATE(2918)] = 86187, - [SMALL_STATE(2919)] = 86322, - [SMALL_STATE(2920)] = 86457, - [SMALL_STATE(2921)] = 86592, - [SMALL_STATE(2922)] = 86727, - [SMALL_STATE(2923)] = 86862, - [SMALL_STATE(2924)] = 86997, - [SMALL_STATE(2925)] = 87132, - [SMALL_STATE(2926)] = 87267, - [SMALL_STATE(2927)] = 87402, - [SMALL_STATE(2928)] = 87537, - [SMALL_STATE(2929)] = 87672, - [SMALL_STATE(2930)] = 87807, - [SMALL_STATE(2931)] = 87942, - [SMALL_STATE(2932)] = 88079, - [SMALL_STATE(2933)] = 88214, - [SMALL_STATE(2934)] = 88349, - [SMALL_STATE(2935)] = 88484, - [SMALL_STATE(2936)] = 88557, - [SMALL_STATE(2937)] = 88692, - [SMALL_STATE(2938)] = 88827, - [SMALL_STATE(2939)] = 88962, - [SMALL_STATE(2940)] = 89097, - [SMALL_STATE(2941)] = 89232, - [SMALL_STATE(2942)] = 89367, - [SMALL_STATE(2943)] = 89502, - [SMALL_STATE(2944)] = 89575, - [SMALL_STATE(2945)] = 89710, - [SMALL_STATE(2946)] = 89845, - [SMALL_STATE(2947)] = 89980, - [SMALL_STATE(2948)] = 90115, - [SMALL_STATE(2949)] = 90250, - [SMALL_STATE(2950)] = 90385, - [SMALL_STATE(2951)] = 90520, - [SMALL_STATE(2952)] = 90655, + [SMALL_STATE(2725)] = 64168, + [SMALL_STATE(2726)] = 64303, + [SMALL_STATE(2727)] = 64376, + [SMALL_STATE(2728)] = 64511, + [SMALL_STATE(2729)] = 64646, + [SMALL_STATE(2730)] = 64781, + [SMALL_STATE(2731)] = 64848, + [SMALL_STATE(2732)] = 64983, + [SMALL_STATE(2733)] = 65052, + [SMALL_STATE(2734)] = 65187, + [SMALL_STATE(2735)] = 65256, + [SMALL_STATE(2736)] = 65391, + [SMALL_STATE(2737)] = 65458, + [SMALL_STATE(2738)] = 65593, + [SMALL_STATE(2739)] = 65728, + [SMALL_STATE(2740)] = 65795, + [SMALL_STATE(2741)] = 65930, + [SMALL_STATE(2742)] = 66065, + [SMALL_STATE(2743)] = 66200, + [SMALL_STATE(2744)] = 66335, + [SMALL_STATE(2745)] = 66470, + [SMALL_STATE(2746)] = 66605, + [SMALL_STATE(2747)] = 66742, + [SMALL_STATE(2748)] = 66813, + [SMALL_STATE(2749)] = 66948, + [SMALL_STATE(2750)] = 67083, + [SMALL_STATE(2751)] = 67218, + [SMALL_STATE(2752)] = 67353, + [SMALL_STATE(2753)] = 67488, + [SMALL_STATE(2754)] = 67623, + [SMALL_STATE(2755)] = 67758, + [SMALL_STATE(2756)] = 67893, + [SMALL_STATE(2757)] = 68028, + [SMALL_STATE(2758)] = 68163, + [SMALL_STATE(2759)] = 68298, + [SMALL_STATE(2760)] = 68371, + [SMALL_STATE(2761)] = 68506, + [SMALL_STATE(2762)] = 68641, + [SMALL_STATE(2763)] = 68776, + [SMALL_STATE(2764)] = 68911, + [SMALL_STATE(2765)] = 68984, + [SMALL_STATE(2766)] = 69119, + [SMALL_STATE(2767)] = 69254, + [SMALL_STATE(2768)] = 69389, + [SMALL_STATE(2769)] = 69524, + [SMALL_STATE(2770)] = 69659, + [SMALL_STATE(2771)] = 69794, + [SMALL_STATE(2772)] = 69929, + [SMALL_STATE(2773)] = 70064, + [SMALL_STATE(2774)] = 70199, + [SMALL_STATE(2775)] = 70266, + [SMALL_STATE(2776)] = 70401, + [SMALL_STATE(2777)] = 70536, + [SMALL_STATE(2778)] = 70671, + [SMALL_STATE(2779)] = 70806, + [SMALL_STATE(2780)] = 70941, + [SMALL_STATE(2781)] = 71076, + [SMALL_STATE(2782)] = 71211, + [SMALL_STATE(2783)] = 71284, + [SMALL_STATE(2784)] = 71419, + [SMALL_STATE(2785)] = 71492, + [SMALL_STATE(2786)] = 71627, + [SMALL_STATE(2787)] = 71696, + [SMALL_STATE(2788)] = 71831, + [SMALL_STATE(2789)] = 71966, + [SMALL_STATE(2790)] = 72101, + [SMALL_STATE(2791)] = 72236, + [SMALL_STATE(2792)] = 72371, + [SMALL_STATE(2793)] = 72506, + [SMALL_STATE(2794)] = 72641, + [SMALL_STATE(2795)] = 72776, + [SMALL_STATE(2796)] = 72911, + [SMALL_STATE(2797)] = 73046, + [SMALL_STATE(2798)] = 73181, + [SMALL_STATE(2799)] = 73316, + [SMALL_STATE(2800)] = 73451, + [SMALL_STATE(2801)] = 73586, + [SMALL_STATE(2802)] = 73659, + [SMALL_STATE(2803)] = 73794, + [SMALL_STATE(2804)] = 73861, + [SMALL_STATE(2805)] = 73934, + [SMALL_STATE(2806)] = 74071, + [SMALL_STATE(2807)] = 74142, + [SMALL_STATE(2808)] = 74277, + [SMALL_STATE(2809)] = 74412, + [SMALL_STATE(2810)] = 74547, + [SMALL_STATE(2811)] = 74682, + [SMALL_STATE(2812)] = 74817, + [SMALL_STATE(2813)] = 74952, + [SMALL_STATE(2814)] = 75021, + [SMALL_STATE(2815)] = 75156, + [SMALL_STATE(2816)] = 75289, + [SMALL_STATE(2817)] = 75424, + [SMALL_STATE(2818)] = 75559, + [SMALL_STATE(2819)] = 75692, + [SMALL_STATE(2820)] = 75827, + [SMALL_STATE(2821)] = 75894, + [SMALL_STATE(2822)] = 76029, + [SMALL_STATE(2823)] = 76164, + [SMALL_STATE(2824)] = 76299, + [SMALL_STATE(2825)] = 76372, + [SMALL_STATE(2826)] = 76507, + [SMALL_STATE(2827)] = 76642, + [SMALL_STATE(2828)] = 76777, + [SMALL_STATE(2829)] = 76912, + [SMALL_STATE(2830)] = 77047, + [SMALL_STATE(2831)] = 77182, + [SMALL_STATE(2832)] = 77317, + [SMALL_STATE(2833)] = 77452, + [SMALL_STATE(2834)] = 77521, + [SMALL_STATE(2835)] = 77656, + [SMALL_STATE(2836)] = 77791, + [SMALL_STATE(2837)] = 77926, + [SMALL_STATE(2838)] = 78061, + [SMALL_STATE(2839)] = 78196, + [SMALL_STATE(2840)] = 78263, + [SMALL_STATE(2841)] = 78398, + [SMALL_STATE(2842)] = 78533, + [SMALL_STATE(2843)] = 78668, + [SMALL_STATE(2844)] = 78803, + [SMALL_STATE(2845)] = 78872, + [SMALL_STATE(2846)] = 79007, + [SMALL_STATE(2847)] = 79142, + [SMALL_STATE(2848)] = 79277, + [SMALL_STATE(2849)] = 79412, + [SMALL_STATE(2850)] = 79485, + [SMALL_STATE(2851)] = 79554, + [SMALL_STATE(2852)] = 79689, + [SMALL_STATE(2853)] = 79824, + [SMALL_STATE(2854)] = 79959, + [SMALL_STATE(2855)] = 80094, + [SMALL_STATE(2856)] = 80229, + [SMALL_STATE(2857)] = 80364, + [SMALL_STATE(2858)] = 80499, + [SMALL_STATE(2859)] = 80634, + [SMALL_STATE(2860)] = 80769, + [SMALL_STATE(2861)] = 80904, + [SMALL_STATE(2862)] = 81039, + [SMALL_STATE(2863)] = 81174, + [SMALL_STATE(2864)] = 81309, + [SMALL_STATE(2865)] = 81444, + [SMALL_STATE(2866)] = 81579, + [SMALL_STATE(2867)] = 81714, + [SMALL_STATE(2868)] = 81849, + [SMALL_STATE(2869)] = 81984, + [SMALL_STATE(2870)] = 82119, + [SMALL_STATE(2871)] = 82254, + [SMALL_STATE(2872)] = 82389, + [SMALL_STATE(2873)] = 82524, + [SMALL_STATE(2874)] = 82597, + [SMALL_STATE(2875)] = 82732, + [SMALL_STATE(2876)] = 82799, + [SMALL_STATE(2877)] = 82934, + [SMALL_STATE(2878)] = 83001, + [SMALL_STATE(2879)] = 83072, + [SMALL_STATE(2880)] = 83139, + [SMALL_STATE(2881)] = 83212, + [SMALL_STATE(2882)] = 83279, + [SMALL_STATE(2883)] = 83414, + [SMALL_STATE(2884)] = 83481, + [SMALL_STATE(2885)] = 83616, + [SMALL_STATE(2886)] = 83751, + [SMALL_STATE(2887)] = 83886, + [SMALL_STATE(2888)] = 83955, + [SMALL_STATE(2889)] = 84090, + [SMALL_STATE(2890)] = 84163, + [SMALL_STATE(2891)] = 84230, + [SMALL_STATE(2892)] = 84365, + [SMALL_STATE(2893)] = 84438, + [SMALL_STATE(2894)] = 84507, + [SMALL_STATE(2895)] = 84642, + [SMALL_STATE(2896)] = 84777, + [SMALL_STATE(2897)] = 84912, + [SMALL_STATE(2898)] = 85047, + [SMALL_STATE(2899)] = 85120, + [SMALL_STATE(2900)] = 85191, + [SMALL_STATE(2901)] = 85326, + [SMALL_STATE(2902)] = 85461, + [SMALL_STATE(2903)] = 85596, + [SMALL_STATE(2904)] = 85731, + [SMALL_STATE(2905)] = 85866, + [SMALL_STATE(2906)] = 85939, + [SMALL_STATE(2907)] = 86074, + [SMALL_STATE(2908)] = 86209, + [SMALL_STATE(2909)] = 86344, + [SMALL_STATE(2910)] = 86413, + [SMALL_STATE(2911)] = 86548, + [SMALL_STATE(2912)] = 86683, + [SMALL_STATE(2913)] = 86818, + [SMALL_STATE(2914)] = 86889, + [SMALL_STATE(2915)] = 87024, + [SMALL_STATE(2916)] = 87095, + [SMALL_STATE(2917)] = 87164, + [SMALL_STATE(2918)] = 87231, + [SMALL_STATE(2919)] = 87366, + [SMALL_STATE(2920)] = 87501, + [SMALL_STATE(2921)] = 87636, + [SMALL_STATE(2922)] = 87771, + [SMALL_STATE(2923)] = 87906, + [SMALL_STATE(2924)] = 87977, + [SMALL_STATE(2925)] = 88112, + [SMALL_STATE(2926)] = 88247, + [SMALL_STATE(2927)] = 88382, + [SMALL_STATE(2928)] = 88453, + [SMALL_STATE(2929)] = 88522, + [SMALL_STATE(2930)] = 88657, + [SMALL_STATE(2931)] = 88792, + [SMALL_STATE(2932)] = 88865, + [SMALL_STATE(2933)] = 89000, + [SMALL_STATE(2934)] = 89067, + [SMALL_STATE(2935)] = 89202, + [SMALL_STATE(2936)] = 89273, + [SMALL_STATE(2937)] = 89344, + [SMALL_STATE(2938)] = 89479, + [SMALL_STATE(2939)] = 89614, + [SMALL_STATE(2940)] = 89687, + [SMALL_STATE(2941)] = 89758, + [SMALL_STATE(2942)] = 89829, + [SMALL_STATE(2943)] = 89964, + [SMALL_STATE(2944)] = 90037, + [SMALL_STATE(2945)] = 90104, + [SMALL_STATE(2946)] = 90171, + [SMALL_STATE(2947)] = 90244, + [SMALL_STATE(2948)] = 90315, + [SMALL_STATE(2949)] = 90450, + [SMALL_STATE(2950)] = 90517, + [SMALL_STATE(2951)] = 90652, + [SMALL_STATE(2952)] = 90721, [SMALL_STATE(2953)] = 90790, [SMALL_STATE(2954)] = 90925, [SMALL_STATE(2955)] = 91060, - [SMALL_STATE(2956)] = 91128, - [SMALL_STATE(2957)] = 91194, - [SMALL_STATE(2958)] = 91330, - [SMALL_STATE(2959)] = 91398, - [SMALL_STATE(2960)] = 91472, - [SMALL_STATE(2961)] = 91540, - [SMALL_STATE(2962)] = 91606, - [SMALL_STATE(2963)] = 91674, - [SMALL_STATE(2964)] = 91742, - [SMALL_STATE(2965)] = 91810, - [SMALL_STATE(2966)] = 91876, - [SMALL_STATE(2967)] = 91944, - [SMALL_STATE(2968)] = 92012, - [SMALL_STATE(2969)] = 92144, - [SMALL_STATE(2970)] = 92276, - [SMALL_STATE(2971)] = 92346, - [SMALL_STATE(2972)] = 92412, - [SMALL_STATE(2973)] = 92544, - [SMALL_STATE(2974)] = 92612, - [SMALL_STATE(2975)] = 92744, - [SMALL_STATE(2976)] = 92814, - [SMALL_STATE(2977)] = 92888, - [SMALL_STATE(2978)] = 92956, - [SMALL_STATE(2979)] = 93088, - [SMALL_STATE(2980)] = 93156, - [SMALL_STATE(2981)] = 93222, - [SMALL_STATE(2982)] = 93302, - [SMALL_STATE(2983)] = 93370, - [SMALL_STATE(2984)] = 93436, - [SMALL_STATE(2985)] = 93502, - [SMALL_STATE(2986)] = 93568, - [SMALL_STATE(2987)] = 93634, - [SMALL_STATE(2988)] = 93700, - [SMALL_STATE(2989)] = 93766, - [SMALL_STATE(2990)] = 93898, - [SMALL_STATE(2991)] = 94030, - [SMALL_STATE(2992)] = 94096, - [SMALL_STATE(2993)] = 94162, - [SMALL_STATE(2994)] = 94228, - [SMALL_STATE(2995)] = 94294, - [SMALL_STATE(2996)] = 94360, - [SMALL_STATE(2997)] = 94426, - [SMALL_STATE(2998)] = 94492, - [SMALL_STATE(2999)] = 94560, - [SMALL_STATE(3000)] = 94626, - [SMALL_STATE(3001)] = 94692, - [SMALL_STATE(3002)] = 94822, - [SMALL_STATE(3003)] = 94890, - [SMALL_STATE(3004)] = 95022, - [SMALL_STATE(3005)] = 95088, - [SMALL_STATE(3006)] = 95162, - [SMALL_STATE(3007)] = 95228, - [SMALL_STATE(3008)] = 95296, - [SMALL_STATE(3009)] = 95372, - [SMALL_STATE(3010)] = 95440, - [SMALL_STATE(3011)] = 95506, - [SMALL_STATE(3012)] = 95572, - [SMALL_STATE(3013)] = 95638, - [SMALL_STATE(3014)] = 95704, - [SMALL_STATE(3015)] = 95772, - [SMALL_STATE(3016)] = 95844, - [SMALL_STATE(3017)] = 95922, - [SMALL_STATE(3018)] = 95992, - [SMALL_STATE(3019)] = 96062, - [SMALL_STATE(3020)] = 96130, - [SMALL_STATE(3021)] = 96196, - [SMALL_STATE(3022)] = 96264, - [SMALL_STATE(3023)] = 96330, - [SMALL_STATE(3024)] = 96412, - [SMALL_STATE(3025)] = 96478, - [SMALL_STATE(3026)] = 96548, - [SMALL_STATE(3027)] = 96614, - [SMALL_STATE(3028)] = 96680, - [SMALL_STATE(3029)] = 96764, - [SMALL_STATE(3030)] = 96850, - [SMALL_STATE(3031)] = 96916, - [SMALL_STATE(3032)] = 97004, - [SMALL_STATE(3033)] = 97070, - [SMALL_STATE(3034)] = 97140, - [SMALL_STATE(3035)] = 97206, - [SMALL_STATE(3036)] = 97296, - [SMALL_STATE(3037)] = 97366, - [SMALL_STATE(3038)] = 97458, - [SMALL_STATE(3039)] = 97524, - [SMALL_STATE(3040)] = 97594, - [SMALL_STATE(3041)] = 97664, - [SMALL_STATE(3042)] = 97730, - [SMALL_STATE(3043)] = 97796, - [SMALL_STATE(3044)] = 97862, - [SMALL_STATE(3045)] = 97928, - [SMALL_STATE(3046)] = 97994, - [SMALL_STATE(3047)] = 98060, - [SMALL_STATE(3048)] = 98126, - [SMALL_STATE(3049)] = 98192, - [SMALL_STATE(3050)] = 98258, - [SMALL_STATE(3051)] = 98324, - [SMALL_STATE(3052)] = 98390, - [SMALL_STATE(3053)] = 98456, - [SMALL_STATE(3054)] = 98522, - [SMALL_STATE(3055)] = 98588, - [SMALL_STATE(3056)] = 98654, - [SMALL_STATE(3057)] = 98720, - [SMALL_STATE(3058)] = 98856, - [SMALL_STATE(3059)] = 98922, - [SMALL_STATE(3060)] = 98988, - [SMALL_STATE(3061)] = 99056, - [SMALL_STATE(3062)] = 99122, - [SMALL_STATE(3063)] = 99188, - [SMALL_STATE(3064)] = 99254, - [SMALL_STATE(3065)] = 99324, - [SMALL_STATE(3066)] = 99390, - [SMALL_STATE(3067)] = 99456, - [SMALL_STATE(3068)] = 99524, - [SMALL_STATE(3069)] = 99590, - [SMALL_STATE(3070)] = 99656, - [SMALL_STATE(3071)] = 99722, - [SMALL_STATE(3072)] = 99788, - [SMALL_STATE(3073)] = 99854, - [SMALL_STATE(3074)] = 99920, - [SMALL_STATE(3075)] = 99986, - [SMALL_STATE(3076)] = 100052, - [SMALL_STATE(3077)] = 100118, - [SMALL_STATE(3078)] = 100184, - [SMALL_STATE(3079)] = 100250, - [SMALL_STATE(3080)] = 100316, - [SMALL_STATE(3081)] = 100446, - [SMALL_STATE(3082)] = 100512, - [SMALL_STATE(3083)] = 100578, - [SMALL_STATE(3084)] = 100644, - [SMALL_STATE(3085)] = 100710, + [SMALL_STATE(2956)] = 91130, + [SMALL_STATE(2957)] = 91196, + [SMALL_STATE(2958)] = 91262, + [SMALL_STATE(2959)] = 91328, + [SMALL_STATE(2960)] = 91394, + [SMALL_STATE(2961)] = 91460, + [SMALL_STATE(2962)] = 91526, + [SMALL_STATE(2963)] = 91592, + [SMALL_STATE(2964)] = 91658, + [SMALL_STATE(2965)] = 91724, + [SMALL_STATE(2966)] = 91790, + [SMALL_STATE(2967)] = 91856, + [SMALL_STATE(2968)] = 91924, + [SMALL_STATE(2969)] = 91990, + [SMALL_STATE(2970)] = 92058, + [SMALL_STATE(2971)] = 92124, + [SMALL_STATE(2972)] = 92190, + [SMALL_STATE(2973)] = 92256, + [SMALL_STATE(2974)] = 92322, + [SMALL_STATE(2975)] = 92454, + [SMALL_STATE(2976)] = 92522, + [SMALL_STATE(2977)] = 92590, + [SMALL_STATE(2978)] = 92722, + [SMALL_STATE(2979)] = 92790, + [SMALL_STATE(2980)] = 92858, + [SMALL_STATE(2981)] = 92926, + [SMALL_STATE(2982)] = 92992, + [SMALL_STATE(2983)] = 93058, + [SMALL_STATE(2984)] = 93128, + [SMALL_STATE(2985)] = 93194, + [SMALL_STATE(2986)] = 93260, + [SMALL_STATE(2987)] = 93326, + [SMALL_STATE(2988)] = 93394, + [SMALL_STATE(2989)] = 93460, + [SMALL_STATE(2990)] = 93536, + [SMALL_STATE(2991)] = 93604, + [SMALL_STATE(2992)] = 93672, + [SMALL_STATE(2993)] = 93738, + [SMALL_STATE(2994)] = 93804, + [SMALL_STATE(2995)] = 93870, + [SMALL_STATE(2996)] = 93936, + [SMALL_STATE(2997)] = 94002, + [SMALL_STATE(2998)] = 94134, + [SMALL_STATE(2999)] = 94206, + [SMALL_STATE(3000)] = 94338, + [SMALL_STATE(3001)] = 94404, + [SMALL_STATE(3002)] = 94474, + [SMALL_STATE(3003)] = 94542, + [SMALL_STATE(3004)] = 94608, + [SMALL_STATE(3005)] = 94740, + [SMALL_STATE(3006)] = 94806, + [SMALL_STATE(3007)] = 94872, + [SMALL_STATE(3008)] = 94938, + [SMALL_STATE(3009)] = 95070, + [SMALL_STATE(3010)] = 95148, + [SMALL_STATE(3011)] = 95278, + [SMALL_STATE(3012)] = 95344, + [SMALL_STATE(3013)] = 95414, + [SMALL_STATE(3014)] = 95488, + [SMALL_STATE(3015)] = 95554, + [SMALL_STATE(3016)] = 95620, + [SMALL_STATE(3017)] = 95686, + [SMALL_STATE(3018)] = 95752, + [SMALL_STATE(3019)] = 95818, + [SMALL_STATE(3020)] = 95888, + [SMALL_STATE(3021)] = 95954, + [SMALL_STATE(3022)] = 96020, + [SMALL_STATE(3023)] = 96086, + [SMALL_STATE(3024)] = 96222, + [SMALL_STATE(3025)] = 96288, + [SMALL_STATE(3026)] = 96354, + [SMALL_STATE(3027)] = 96420, + [SMALL_STATE(3028)] = 96512, + [SMALL_STATE(3029)] = 96578, + [SMALL_STATE(3030)] = 96644, + [SMALL_STATE(3031)] = 96710, + [SMALL_STATE(3032)] = 96840, + [SMALL_STATE(3033)] = 96906, + [SMALL_STATE(3034)] = 96972, + [SMALL_STATE(3035)] = 97038, + [SMALL_STATE(3036)] = 97104, + [SMALL_STATE(3037)] = 97172, + [SMALL_STATE(3038)] = 97238, + [SMALL_STATE(3039)] = 97304, + [SMALL_STATE(3040)] = 97370, + [SMALL_STATE(3041)] = 97438, + [SMALL_STATE(3042)] = 97504, + [SMALL_STATE(3043)] = 97636, + [SMALL_STATE(3044)] = 97702, + [SMALL_STATE(3045)] = 97770, + [SMALL_STATE(3046)] = 97836, + [SMALL_STATE(3047)] = 97910, + [SMALL_STATE(3048)] = 97976, + [SMALL_STATE(3049)] = 98042, + [SMALL_STATE(3050)] = 98108, + [SMALL_STATE(3051)] = 98244, + [SMALL_STATE(3052)] = 98314, + [SMALL_STATE(3053)] = 98384, + [SMALL_STATE(3054)] = 98516, + [SMALL_STATE(3055)] = 98582, + [SMALL_STATE(3056)] = 98656, + [SMALL_STATE(3057)] = 98722, + [SMALL_STATE(3058)] = 98792, + [SMALL_STATE(3059)] = 98872, + [SMALL_STATE(3060)] = 99004, + [SMALL_STATE(3061)] = 99070, + [SMALL_STATE(3062)] = 99152, + [SMALL_STATE(3063)] = 99218, + [SMALL_STATE(3064)] = 99284, + [SMALL_STATE(3065)] = 99368, + [SMALL_STATE(3066)] = 99436, + [SMALL_STATE(3067)] = 99502, + [SMALL_STATE(3068)] = 99568, + [SMALL_STATE(3069)] = 99654, + [SMALL_STATE(3070)] = 99724, + [SMALL_STATE(3071)] = 99790, + [SMALL_STATE(3072)] = 99856, + [SMALL_STATE(3073)] = 99944, + [SMALL_STATE(3074)] = 100012, + [SMALL_STATE(3075)] = 100078, + [SMALL_STATE(3076)] = 100144, + [SMALL_STATE(3077)] = 100210, + [SMALL_STATE(3078)] = 100280, + [SMALL_STATE(3079)] = 100348, + [SMALL_STATE(3080)] = 100438, + [SMALL_STATE(3081)] = 100504, + [SMALL_STATE(3082)] = 100572, + [SMALL_STATE(3083)] = 100640, + [SMALL_STATE(3084)] = 100708, + [SMALL_STATE(3085)] = 100776, [SMALL_STATE(3086)] = 100842, [SMALL_STATE(3087)] = 100967, - [SMALL_STATE(3088)] = 101092, - [SMALL_STATE(3089)] = 101157, - [SMALL_STATE(3090)] = 101252, - [SMALL_STATE(3091)] = 101345, - [SMALL_STATE(3092)] = 101436, - [SMALL_STATE(3093)] = 101525, - [SMALL_STATE(3094)] = 101612, - [SMALL_STATE(3095)] = 101737, - [SMALL_STATE(3096)] = 101822, - [SMALL_STATE(3097)] = 101897, - [SMALL_STATE(3098)] = 102022, - [SMALL_STATE(3099)] = 102149, - [SMALL_STATE(3100)] = 102216, - [SMALL_STATE(3101)] = 102341, - [SMALL_STATE(3102)] = 102412, - [SMALL_STATE(3103)] = 102537, - [SMALL_STATE(3104)] = 102662, - [SMALL_STATE(3105)] = 102787, - [SMALL_STATE(3106)] = 102870, - [SMALL_STATE(3107)] = 102943, - [SMALL_STATE(3108)] = 103008, - [SMALL_STATE(3109)] = 103087, - [SMALL_STATE(3110)] = 103212, - [SMALL_STATE(3111)] = 103337, - [SMALL_STATE(3112)] = 103462, - [SMALL_STATE(3113)] = 103527, - [SMALL_STATE(3114)] = 103652, - [SMALL_STATE(3115)] = 103777, - [SMALL_STATE(3116)] = 103902, - [SMALL_STATE(3117)] = 104027, - [SMALL_STATE(3118)] = 104152, - [SMALL_STATE(3119)] = 104249, - [SMALL_STATE(3120)] = 104374, - [SMALL_STATE(3121)] = 104499, - [SMALL_STATE(3122)] = 104624, - [SMALL_STATE(3123)] = 104749, - [SMALL_STATE(3124)] = 104874, - [SMALL_STATE(3125)] = 104999, - [SMALL_STATE(3126)] = 105124, - [SMALL_STATE(3127)] = 105249, - [SMALL_STATE(3128)] = 105316, - [SMALL_STATE(3129)] = 105441, - [SMALL_STATE(3130)] = 105508, - [SMALL_STATE(3131)] = 105633, - [SMALL_STATE(3132)] = 105758, - [SMALL_STATE(3133)] = 105883, - [SMALL_STATE(3134)] = 106008, - [SMALL_STATE(3135)] = 106133, - [SMALL_STATE(3136)] = 106258, - [SMALL_STATE(3137)] = 106323, - [SMALL_STATE(3138)] = 106448, - [SMALL_STATE(3139)] = 106573, - [SMALL_STATE(3140)] = 106698, - [SMALL_STATE(3141)] = 106823, - [SMALL_STATE(3142)] = 106948, - [SMALL_STATE(3143)] = 107073, - [SMALL_STATE(3144)] = 107140, - [SMALL_STATE(3145)] = 107265, - [SMALL_STATE(3146)] = 107390, - [SMALL_STATE(3147)] = 107455, - [SMALL_STATE(3148)] = 107580, - [SMALL_STATE(3149)] = 107705, - [SMALL_STATE(3150)] = 107830, - [SMALL_STATE(3151)] = 107955, - [SMALL_STATE(3152)] = 108080, - [SMALL_STATE(3153)] = 108205, - [SMALL_STATE(3154)] = 108330, - [SMALL_STATE(3155)] = 108455, - [SMALL_STATE(3156)] = 108580, - [SMALL_STATE(3157)] = 108705, - [SMALL_STATE(3158)] = 108830, - [SMALL_STATE(3159)] = 108895, - [SMALL_STATE(3160)] = 109020, - [SMALL_STATE(3161)] = 109145, - [SMALL_STATE(3162)] = 109270, - [SMALL_STATE(3163)] = 109395, - [SMALL_STATE(3164)] = 109520, - [SMALL_STATE(3165)] = 109645, - [SMALL_STATE(3166)] = 109770, - [SMALL_STATE(3167)] = 109895, - [SMALL_STATE(3168)] = 110020, - [SMALL_STATE(3169)] = 110145, - [SMALL_STATE(3170)] = 110270, - [SMALL_STATE(3171)] = 110395, - [SMALL_STATE(3172)] = 110520, - [SMALL_STATE(3173)] = 110585, - [SMALL_STATE(3174)] = 110710, - [SMALL_STATE(3175)] = 110835, - [SMALL_STATE(3176)] = 110960, - [SMALL_STATE(3177)] = 111085, - [SMALL_STATE(3178)] = 111210, - [SMALL_STATE(3179)] = 111335, - [SMALL_STATE(3180)] = 111460, - [SMALL_STATE(3181)] = 111585, - [SMALL_STATE(3182)] = 111710, - [SMALL_STATE(3183)] = 111835, - [SMALL_STATE(3184)] = 111960, - [SMALL_STATE(3185)] = 112025, - [SMALL_STATE(3186)] = 112150, - [SMALL_STATE(3187)] = 112275, - [SMALL_STATE(3188)] = 112400, - [SMALL_STATE(3189)] = 112525, - [SMALL_STATE(3190)] = 112650, - [SMALL_STATE(3191)] = 112775, - [SMALL_STATE(3192)] = 112900, - [SMALL_STATE(3193)] = 113025, - [SMALL_STATE(3194)] = 113150, - [SMALL_STATE(3195)] = 113275, - [SMALL_STATE(3196)] = 113400, - [SMALL_STATE(3197)] = 113525, - [SMALL_STATE(3198)] = 113650, - [SMALL_STATE(3199)] = 113775, - [SMALL_STATE(3200)] = 113900, - [SMALL_STATE(3201)] = 114025, - [SMALL_STATE(3202)] = 114150, - [SMALL_STATE(3203)] = 114215, - [SMALL_STATE(3204)] = 114340, - [SMALL_STATE(3205)] = 114465, - [SMALL_STATE(3206)] = 114530, - [SMALL_STATE(3207)] = 114655, - [SMALL_STATE(3208)] = 114720, - [SMALL_STATE(3209)] = 114785, - [SMALL_STATE(3210)] = 114910, - [SMALL_STATE(3211)] = 115035, - [SMALL_STATE(3212)] = 115100, - [SMALL_STATE(3213)] = 115165, - [SMALL_STATE(3214)] = 115230, - [SMALL_STATE(3215)] = 115295, - [SMALL_STATE(3216)] = 115360, - [SMALL_STATE(3217)] = 115425, - [SMALL_STATE(3218)] = 115550, - [SMALL_STATE(3219)] = 115615, - [SMALL_STATE(3220)] = 115680, - [SMALL_STATE(3221)] = 115805, - [SMALL_STATE(3222)] = 115870, - [SMALL_STATE(3223)] = 115935, - [SMALL_STATE(3224)] = 116000, - [SMALL_STATE(3225)] = 116125, - [SMALL_STATE(3226)] = 116250, - [SMALL_STATE(3227)] = 116315, - [SMALL_STATE(3228)] = 116380, - [SMALL_STATE(3229)] = 116445, - [SMALL_STATE(3230)] = 116510, - [SMALL_STATE(3231)] = 116575, - [SMALL_STATE(3232)] = 116640, - [SMALL_STATE(3233)] = 116765, - [SMALL_STATE(3234)] = 116892, - [SMALL_STATE(3235)] = 117017, - [SMALL_STATE(3236)] = 117142, - [SMALL_STATE(3237)] = 117267, - [SMALL_STATE(3238)] = 117392, - [SMALL_STATE(3239)] = 117517, - [SMALL_STATE(3240)] = 117642, - [SMALL_STATE(3241)] = 117767, - [SMALL_STATE(3242)] = 117832, - [SMALL_STATE(3243)] = 117957, - [SMALL_STATE(3244)] = 118082, - [SMALL_STATE(3245)] = 118207, - [SMALL_STATE(3246)] = 118272, - [SMALL_STATE(3247)] = 118397, - [SMALL_STATE(3248)] = 118462, - [SMALL_STATE(3249)] = 118587, - [SMALL_STATE(3250)] = 118712, - [SMALL_STATE(3251)] = 118777, - [SMALL_STATE(3252)] = 118902, - [SMALL_STATE(3253)] = 119027, - [SMALL_STATE(3254)] = 119152, - [SMALL_STATE(3255)] = 119277, - [SMALL_STATE(3256)] = 119402, - [SMALL_STATE(3257)] = 119527, - [SMALL_STATE(3258)] = 119592, - [SMALL_STATE(3259)] = 119717, - [SMALL_STATE(3260)] = 119842, - [SMALL_STATE(3261)] = 119967, - [SMALL_STATE(3262)] = 120064, - [SMALL_STATE(3263)] = 120189, - [SMALL_STATE(3264)] = 120284, - [SMALL_STATE(3265)] = 120349, - [SMALL_STATE(3266)] = 120442, - [SMALL_STATE(3267)] = 120567, - [SMALL_STATE(3268)] = 120658, - [SMALL_STATE(3269)] = 120783, - [SMALL_STATE(3270)] = 120872, - [SMALL_STATE(3271)] = 120997, - [SMALL_STATE(3272)] = 121084, - [SMALL_STATE(3273)] = 121209, - [SMALL_STATE(3274)] = 121294, - [SMALL_STATE(3275)] = 121419, - [SMALL_STATE(3276)] = 121494, - [SMALL_STATE(3277)] = 121567, - [SMALL_STATE(3278)] = 121634, - [SMALL_STATE(3279)] = 121759, - [SMALL_STATE(3280)] = 121830, - [SMALL_STATE(3281)] = 121955, - [SMALL_STATE(3282)] = 122038, - [SMALL_STATE(3283)] = 122163, - [SMALL_STATE(3284)] = 122288, - [SMALL_STATE(3285)] = 122361, - [SMALL_STATE(3286)] = 122486, - [SMALL_STATE(3287)] = 122565, - [SMALL_STATE(3288)] = 122630, - [SMALL_STATE(3289)] = 122755, - [SMALL_STATE(3290)] = 122880, - [SMALL_STATE(3291)] = 122949, - [SMALL_STATE(3292)] = 123074, - [SMALL_STATE(3293)] = 123199, - [SMALL_STATE(3294)] = 123264, - [SMALL_STATE(3295)] = 123389, - [SMALL_STATE(3296)] = 123454, - [SMALL_STATE(3297)] = 123579, - [SMALL_STATE(3298)] = 123704, - [SMALL_STATE(3299)] = 123829, - [SMALL_STATE(3300)] = 123954, - [SMALL_STATE(3301)] = 124079, - [SMALL_STATE(3302)] = 124204, - [SMALL_STATE(3303)] = 124331, - [SMALL_STATE(3304)] = 124458, - [SMALL_STATE(3305)] = 124523, - [SMALL_STATE(3306)] = 124594, - [SMALL_STATE(3307)] = 124659, - [SMALL_STATE(3308)] = 124784, - [SMALL_STATE(3309)] = 124909, - [SMALL_STATE(3310)] = 124974, - [SMALL_STATE(3311)] = 125039, - [SMALL_STATE(3312)] = 125164, - [SMALL_STATE(3313)] = 125289, - [SMALL_STATE(3314)] = 125354, - [SMALL_STATE(3315)] = 125479, - [SMALL_STATE(3316)] = 125604, - [SMALL_STATE(3317)] = 125669, - [SMALL_STATE(3318)] = 125794, - [SMALL_STATE(3319)] = 125919, - [SMALL_STATE(3320)] = 126044, - [SMALL_STATE(3321)] = 126109, - [SMALL_STATE(3322)] = 126234, - [SMALL_STATE(3323)] = 126359, - [SMALL_STATE(3324)] = 126484, - [SMALL_STATE(3325)] = 126609, - [SMALL_STATE(3326)] = 126674, - [SMALL_STATE(3327)] = 126739, - [SMALL_STATE(3328)] = 126864, - [SMALL_STATE(3329)] = 126989, - [SMALL_STATE(3330)] = 127114, - [SMALL_STATE(3331)] = 127239, - [SMALL_STATE(3332)] = 127364, - [SMALL_STATE(3333)] = 127489, - [SMALL_STATE(3334)] = 127614, - [SMALL_STATE(3335)] = 127739, - [SMALL_STATE(3336)] = 127866, - [SMALL_STATE(3337)] = 127991, - [SMALL_STATE(3338)] = 128116, - [SMALL_STATE(3339)] = 128241, - [SMALL_STATE(3340)] = 128366, - [SMALL_STATE(3341)] = 128491, - [SMALL_STATE(3342)] = 128616, - [SMALL_STATE(3343)] = 128741, - [SMALL_STATE(3344)] = 128866, - [SMALL_STATE(3345)] = 128991, - [SMALL_STATE(3346)] = 129116, - [SMALL_STATE(3347)] = 129241, - [SMALL_STATE(3348)] = 129366, - [SMALL_STATE(3349)] = 129491, - [SMALL_STATE(3350)] = 129616, - [SMALL_STATE(3351)] = 129681, - [SMALL_STATE(3352)] = 129746, - [SMALL_STATE(3353)] = 129871, - [SMALL_STATE(3354)] = 129996, - [SMALL_STATE(3355)] = 130061, - [SMALL_STATE(3356)] = 130186, - [SMALL_STATE(3357)] = 130311, - [SMALL_STATE(3358)] = 130376, - [SMALL_STATE(3359)] = 130501, - [SMALL_STATE(3360)] = 130626, - [SMALL_STATE(3361)] = 130751, - [SMALL_STATE(3362)] = 130816, - [SMALL_STATE(3363)] = 130943, - [SMALL_STATE(3364)] = 131068, - [SMALL_STATE(3365)] = 131193, - [SMALL_STATE(3366)] = 131258, - [SMALL_STATE(3367)] = 131323, - [SMALL_STATE(3368)] = 131448, - [SMALL_STATE(3369)] = 131573, - [SMALL_STATE(3370)] = 131698, - [SMALL_STATE(3371)] = 131825, - [SMALL_STATE(3372)] = 131950, - [SMALL_STATE(3373)] = 132075, - [SMALL_STATE(3374)] = 132140, - [SMALL_STATE(3375)] = 132265, - [SMALL_STATE(3376)] = 132330, - [SMALL_STATE(3377)] = 132457, - [SMALL_STATE(3378)] = 132582, - [SMALL_STATE(3379)] = 132709, - [SMALL_STATE(3380)] = 132834, - [SMALL_STATE(3381)] = 132961, - [SMALL_STATE(3382)] = 133086, - [SMALL_STATE(3383)] = 133211, - [SMALL_STATE(3384)] = 133336, - [SMALL_STATE(3385)] = 133463, - [SMALL_STATE(3386)] = 133588, - [SMALL_STATE(3387)] = 133653, - [SMALL_STATE(3388)] = 133778, - [SMALL_STATE(3389)] = 133903, - [SMALL_STATE(3390)] = 134028, - [SMALL_STATE(3391)] = 134153, - [SMALL_STATE(3392)] = 134278, - [SMALL_STATE(3393)] = 134403, - [SMALL_STATE(3394)] = 134528, - [SMALL_STATE(3395)] = 134653, - [SMALL_STATE(3396)] = 134778, - [SMALL_STATE(3397)] = 134903, - [SMALL_STATE(3398)] = 135028, - [SMALL_STATE(3399)] = 135153, - [SMALL_STATE(3400)] = 135280, - [SMALL_STATE(3401)] = 135405, - [SMALL_STATE(3402)] = 135470, - [SMALL_STATE(3403)] = 135535, - [SMALL_STATE(3404)] = 135600, - [SMALL_STATE(3405)] = 135725, - [SMALL_STATE(3406)] = 135850, - [SMALL_STATE(3407)] = 135975, - [SMALL_STATE(3408)] = 136100, - [SMALL_STATE(3409)] = 136225, - [SMALL_STATE(3410)] = 136350, - [SMALL_STATE(3411)] = 136475, - [SMALL_STATE(3412)] = 136600, - [SMALL_STATE(3413)] = 136725, - [SMALL_STATE(3414)] = 136796, - [SMALL_STATE(3415)] = 136921, - [SMALL_STATE(3416)] = 137046, - [SMALL_STATE(3417)] = 137171, - [SMALL_STATE(3418)] = 137298, - [SMALL_STATE(3419)] = 137423, - [SMALL_STATE(3420)] = 137548, - [SMALL_STATE(3421)] = 137673, - [SMALL_STATE(3422)] = 137798, - [SMALL_STATE(3423)] = 137923, - [SMALL_STATE(3424)] = 138048, - [SMALL_STATE(3425)] = 138173, - [SMALL_STATE(3426)] = 138298, - [SMALL_STATE(3427)] = 138363, - [SMALL_STATE(3428)] = 138428, - [SMALL_STATE(3429)] = 138553, - [SMALL_STATE(3430)] = 138618, - [SMALL_STATE(3431)] = 138743, - [SMALL_STATE(3432)] = 138868, - [SMALL_STATE(3433)] = 138993, - [SMALL_STATE(3434)] = 139058, - [SMALL_STATE(3435)] = 139183, - [SMALL_STATE(3436)] = 139308, - [SMALL_STATE(3437)] = 139433, - [SMALL_STATE(3438)] = 139558, - [SMALL_STATE(3439)] = 139683, - [SMALL_STATE(3440)] = 139748, - [SMALL_STATE(3441)] = 139873, - [SMALL_STATE(3442)] = 139938, - [SMALL_STATE(3443)] = 140063, - [SMALL_STATE(3444)] = 140188, - [SMALL_STATE(3445)] = 140313, - [SMALL_STATE(3446)] = 140438, - [SMALL_STATE(3447)] = 140503, - [SMALL_STATE(3448)] = 140568, - [SMALL_STATE(3449)] = 140693, - [SMALL_STATE(3450)] = 140818, - [SMALL_STATE(3451)] = 140943, - [SMALL_STATE(3452)] = 141068, - [SMALL_STATE(3453)] = 141193, - [SMALL_STATE(3454)] = 141318, - [SMALL_STATE(3455)] = 141443, - [SMALL_STATE(3456)] = 141568, - [SMALL_STATE(3457)] = 141633, - [SMALL_STATE(3458)] = 141758, - [SMALL_STATE(3459)] = 141883, - [SMALL_STATE(3460)] = 142008, - [SMALL_STATE(3461)] = 142133, - [SMALL_STATE(3462)] = 142258, - [SMALL_STATE(3463)] = 142383, - [SMALL_STATE(3464)] = 142508, - [SMALL_STATE(3465)] = 142633, - [SMALL_STATE(3466)] = 142758, - [SMALL_STATE(3467)] = 142883, - [SMALL_STATE(3468)] = 143008, - [SMALL_STATE(3469)] = 143133, - [SMALL_STATE(3470)] = 143258, - [SMALL_STATE(3471)] = 143383, - [SMALL_STATE(3472)] = 143508, - [SMALL_STATE(3473)] = 143633, - [SMALL_STATE(3474)] = 143758, - [SMALL_STATE(3475)] = 143883, - [SMALL_STATE(3476)] = 144008, - [SMALL_STATE(3477)] = 144135, - [SMALL_STATE(3478)] = 144200, - [SMALL_STATE(3479)] = 144265, - [SMALL_STATE(3480)] = 144390, - [SMALL_STATE(3481)] = 144457, - [SMALL_STATE(3482)] = 144524, - [SMALL_STATE(3483)] = 144589, - [SMALL_STATE(3484)] = 144714, - [SMALL_STATE(3485)] = 144779, - [SMALL_STATE(3486)] = 144906, - [SMALL_STATE(3487)] = 144971, - [SMALL_STATE(3488)] = 145036, - [SMALL_STATE(3489)] = 145161, - [SMALL_STATE(3490)] = 145286, - [SMALL_STATE(3491)] = 145351, - [SMALL_STATE(3492)] = 145476, - [SMALL_STATE(3493)] = 145601, - [SMALL_STATE(3494)] = 145666, - [SMALL_STATE(3495)] = 145791, - [SMALL_STATE(3496)] = 145916, - [SMALL_STATE(3497)] = 146041, - [SMALL_STATE(3498)] = 146106, - [SMALL_STATE(3499)] = 146231, - [SMALL_STATE(3500)] = 146356, - [SMALL_STATE(3501)] = 146421, - [SMALL_STATE(3502)] = 146486, - [SMALL_STATE(3503)] = 146551, - [SMALL_STATE(3504)] = 146676, - [SMALL_STATE(3505)] = 146741, - [SMALL_STATE(3506)] = 146866, - [SMALL_STATE(3507)] = 146991, - [SMALL_STATE(3508)] = 147116, - [SMALL_STATE(3509)] = 147241, - [SMALL_STATE(3510)] = 147306, - [SMALL_STATE(3511)] = 147371, - [SMALL_STATE(3512)] = 147436, - [SMALL_STATE(3513)] = 147501, - [SMALL_STATE(3514)] = 147566, - [SMALL_STATE(3515)] = 147631, - [SMALL_STATE(3516)] = 147696, - [SMALL_STATE(3517)] = 147761, - [SMALL_STATE(3518)] = 147826, - [SMALL_STATE(3519)] = 147951, - [SMALL_STATE(3520)] = 148076, - [SMALL_STATE(3521)] = 148201, - [SMALL_STATE(3522)] = 148328, - [SMALL_STATE(3523)] = 148393, - [SMALL_STATE(3524)] = 148518, - [SMALL_STATE(3525)] = 148643, - [SMALL_STATE(3526)] = 148768, - [SMALL_STATE(3527)] = 148893, - [SMALL_STATE(3528)] = 149018, - [SMALL_STATE(3529)] = 149083, - [SMALL_STATE(3530)] = 149208, - [SMALL_STATE(3531)] = 149333, - [SMALL_STATE(3532)] = 149458, - [SMALL_STATE(3533)] = 149523, - [SMALL_STATE(3534)] = 149588, - [SMALL_STATE(3535)] = 149713, - [SMALL_STATE(3536)] = 149838, - [SMALL_STATE(3537)] = 149963, - [SMALL_STATE(3538)] = 150030, - [SMALL_STATE(3539)] = 150155, - [SMALL_STATE(3540)] = 150280, - [SMALL_STATE(3541)] = 150405, - [SMALL_STATE(3542)] = 150530, - [SMALL_STATE(3543)] = 150595, - [SMALL_STATE(3544)] = 150660, - [SMALL_STATE(3545)] = 150725, - [SMALL_STATE(3546)] = 150790, - [SMALL_STATE(3547)] = 150855, - [SMALL_STATE(3548)] = 150920, - [SMALL_STATE(3549)] = 150985, - [SMALL_STATE(3550)] = 151050, - [SMALL_STATE(3551)] = 151175, - [SMALL_STATE(3552)] = 151300, - [SMALL_STATE(3553)] = 151425, - [SMALL_STATE(3554)] = 151550, - [SMALL_STATE(3555)] = 151675, - [SMALL_STATE(3556)] = 151740, - [SMALL_STATE(3557)] = 151805, - [SMALL_STATE(3558)] = 151870, - [SMALL_STATE(3559)] = 151935, - [SMALL_STATE(3560)] = 152002, - [SMALL_STATE(3561)] = 152127, - [SMALL_STATE(3562)] = 152252, - [SMALL_STATE(3563)] = 152377, - [SMALL_STATE(3564)] = 152504, - [SMALL_STATE(3565)] = 152629, - [SMALL_STATE(3566)] = 152694, - [SMALL_STATE(3567)] = 152759, - [SMALL_STATE(3568)] = 152824, - [SMALL_STATE(3569)] = 152889, - [SMALL_STATE(3570)] = 152954, - [SMALL_STATE(3571)] = 153019, - [SMALL_STATE(3572)] = 153084, - [SMALL_STATE(3573)] = 153149, - [SMALL_STATE(3574)] = 153274, - [SMALL_STATE(3575)] = 153399, - [SMALL_STATE(3576)] = 153464, - [SMALL_STATE(3577)] = 153529, - [SMALL_STATE(3578)] = 153594, - [SMALL_STATE(3579)] = 153659, - [SMALL_STATE(3580)] = 153724, - [SMALL_STATE(3581)] = 153789, - [SMALL_STATE(3582)] = 153854, - [SMALL_STATE(3583)] = 153979, - [SMALL_STATE(3584)] = 154044, - [SMALL_STATE(3585)] = 154109, - [SMALL_STATE(3586)] = 154234, - [SMALL_STATE(3587)] = 154359, - [SMALL_STATE(3588)] = 154424, - [SMALL_STATE(3589)] = 154489, - [SMALL_STATE(3590)] = 154554, - [SMALL_STATE(3591)] = 154619, - [SMALL_STATE(3592)] = 154684, - [SMALL_STATE(3593)] = 154749, - [SMALL_STATE(3594)] = 154814, - [SMALL_STATE(3595)] = 154879, - [SMALL_STATE(3596)] = 154944, - [SMALL_STATE(3597)] = 155009, - [SMALL_STATE(3598)] = 155074, - [SMALL_STATE(3599)] = 155139, - [SMALL_STATE(3600)] = 155204, - [SMALL_STATE(3601)] = 155269, - [SMALL_STATE(3602)] = 155334, - [SMALL_STATE(3603)] = 155399, - [SMALL_STATE(3604)] = 155464, - [SMALL_STATE(3605)] = 155529, - [SMALL_STATE(3606)] = 155654, - [SMALL_STATE(3607)] = 155779, - [SMALL_STATE(3608)] = 155904, - [SMALL_STATE(3609)] = 156029, - [SMALL_STATE(3610)] = 156154, - [SMALL_STATE(3611)] = 156279, - [SMALL_STATE(3612)] = 156344, - [SMALL_STATE(3613)] = 156469, - [SMALL_STATE(3614)] = 156534, - [SMALL_STATE(3615)] = 156659, - [SMALL_STATE(3616)] = 156724, - [SMALL_STATE(3617)] = 156849, - [SMALL_STATE(3618)] = 156914, - [SMALL_STATE(3619)] = 156979, - [SMALL_STATE(3620)] = 157104, - [SMALL_STATE(3621)] = 157229, - [SMALL_STATE(3622)] = 157294, - [SMALL_STATE(3623)] = 157419, - [SMALL_STATE(3624)] = 157544, - [SMALL_STATE(3625)] = 157609, - [SMALL_STATE(3626)] = 157734, - [SMALL_STATE(3627)] = 157859, - [SMALL_STATE(3628)] = 157984, - [SMALL_STATE(3629)] = 158109, - [SMALL_STATE(3630)] = 158234, - [SMALL_STATE(3631)] = 158359, - [SMALL_STATE(3632)] = 158484, - [SMALL_STATE(3633)] = 158609, - [SMALL_STATE(3634)] = 158734, - [SMALL_STATE(3635)] = 158859, - [SMALL_STATE(3636)] = 158926, - [SMALL_STATE(3637)] = 158993, - [SMALL_STATE(3638)] = 159060, - [SMALL_STATE(3639)] = 159127, - [SMALL_STATE(3640)] = 159192, - [SMALL_STATE(3641)] = 159257, - [SMALL_STATE(3642)] = 159322, - [SMALL_STATE(3643)] = 159387, - [SMALL_STATE(3644)] = 159512, - [SMALL_STATE(3645)] = 159577, - [SMALL_STATE(3646)] = 159642, - [SMALL_STATE(3647)] = 159709, - [SMALL_STATE(3648)] = 159834, - [SMALL_STATE(3649)] = 159959, - [SMALL_STATE(3650)] = 160084, - [SMALL_STATE(3651)] = 160209, - [SMALL_STATE(3652)] = 160334, - [SMALL_STATE(3653)] = 160459, - [SMALL_STATE(3654)] = 160584, - [SMALL_STATE(3655)] = 160709, - [SMALL_STATE(3656)] = 160774, - [SMALL_STATE(3657)] = 160899, - [SMALL_STATE(3658)] = 161024, - [SMALL_STATE(3659)] = 161149, - [SMALL_STATE(3660)] = 161214, - [SMALL_STATE(3661)] = 161339, - [SMALL_STATE(3662)] = 161464, - [SMALL_STATE(3663)] = 161529, - [SMALL_STATE(3664)] = 161654, - [SMALL_STATE(3665)] = 161779, - [SMALL_STATE(3666)] = 161904, - [SMALL_STATE(3667)] = 162029, - [SMALL_STATE(3668)] = 162154, - [SMALL_STATE(3669)] = 162279, - [SMALL_STATE(3670)] = 162344, - [SMALL_STATE(3671)] = 162469, - [SMALL_STATE(3672)] = 162534, - [SMALL_STATE(3673)] = 162659, - [SMALL_STATE(3674)] = 162784, - [SMALL_STATE(3675)] = 162909, - [SMALL_STATE(3676)] = 162974, - [SMALL_STATE(3677)] = 163099, - [SMALL_STATE(3678)] = 163224, - [SMALL_STATE(3679)] = 163349, - [SMALL_STATE(3680)] = 163474, - [SMALL_STATE(3681)] = 163539, - [SMALL_STATE(3682)] = 163664, - [SMALL_STATE(3683)] = 163789, - [SMALL_STATE(3684)] = 163914, - [SMALL_STATE(3685)] = 163979, - [SMALL_STATE(3686)] = 164104, - [SMALL_STATE(3687)] = 164229, - [SMALL_STATE(3688)] = 164354, - [SMALL_STATE(3689)] = 164479, - [SMALL_STATE(3690)] = 164604, - [SMALL_STATE(3691)] = 164729, - [SMALL_STATE(3692)] = 164794, - [SMALL_STATE(3693)] = 164861, - [SMALL_STATE(3694)] = 164986, - [SMALL_STATE(3695)] = 165111, - [SMALL_STATE(3696)] = 165236, - [SMALL_STATE(3697)] = 165361, - [SMALL_STATE(3698)] = 165486, - [SMALL_STATE(3699)] = 165611, - [SMALL_STATE(3700)] = 165736, - [SMALL_STATE(3701)] = 165861, - [SMALL_STATE(3702)] = 165986, - [SMALL_STATE(3703)] = 166051, - [SMALL_STATE(3704)] = 166176, - [SMALL_STATE(3705)] = 166301, - [SMALL_STATE(3706)] = 166426, - [SMALL_STATE(3707)] = 166551, - [SMALL_STATE(3708)] = 166676, - [SMALL_STATE(3709)] = 166801, - [SMALL_STATE(3710)] = 166926, - [SMALL_STATE(3711)] = 167051, - [SMALL_STATE(3712)] = 167176, - [SMALL_STATE(3713)] = 167241, - [SMALL_STATE(3714)] = 167366, - [SMALL_STATE(3715)] = 167491, - [SMALL_STATE(3716)] = 167616, - [SMALL_STATE(3717)] = 167741, - [SMALL_STATE(3718)] = 167866, - [SMALL_STATE(3719)] = 167991, - [SMALL_STATE(3720)] = 168116, - [SMALL_STATE(3721)] = 168241, - [SMALL_STATE(3722)] = 168366, - [SMALL_STATE(3723)] = 168491, - [SMALL_STATE(3724)] = 168616, - [SMALL_STATE(3725)] = 168741, - [SMALL_STATE(3726)] = 168806, - [SMALL_STATE(3727)] = 168931, + [SMALL_STATE(3088)] = 101032, + [SMALL_STATE(3089)] = 101097, + [SMALL_STATE(3090)] = 101222, + [SMALL_STATE(3091)] = 101347, + [SMALL_STATE(3092)] = 101472, + [SMALL_STATE(3093)] = 101597, + [SMALL_STATE(3094)] = 101722, + [SMALL_STATE(3095)] = 101789, + [SMALL_STATE(3096)] = 101856, + [SMALL_STATE(3097)] = 101981, + [SMALL_STATE(3098)] = 102106, + [SMALL_STATE(3099)] = 102231, + [SMALL_STATE(3100)] = 102356, + [SMALL_STATE(3101)] = 102481, + [SMALL_STATE(3102)] = 102606, + [SMALL_STATE(3103)] = 102731, + [SMALL_STATE(3104)] = 102856, + [SMALL_STATE(3105)] = 102925, + [SMALL_STATE(3106)] = 102992, + [SMALL_STATE(3107)] = 103059, + [SMALL_STATE(3108)] = 103126, + [SMALL_STATE(3109)] = 103193, + [SMALL_STATE(3110)] = 103258, + [SMALL_STATE(3111)] = 103323, + [SMALL_STATE(3112)] = 103388, + [SMALL_STATE(3113)] = 103453, + [SMALL_STATE(3114)] = 103518, + [SMALL_STATE(3115)] = 103591, + [SMALL_STATE(3116)] = 103656, + [SMALL_STATE(3117)] = 103721, + [SMALL_STATE(3118)] = 103786, + [SMALL_STATE(3119)] = 103851, + [SMALL_STATE(3120)] = 103916, + [SMALL_STATE(3121)] = 103981, + [SMALL_STATE(3122)] = 104046, + [SMALL_STATE(3123)] = 104111, + [SMALL_STATE(3124)] = 104176, + [SMALL_STATE(3125)] = 104241, + [SMALL_STATE(3126)] = 104306, + [SMALL_STATE(3127)] = 104371, + [SMALL_STATE(3128)] = 104436, + [SMALL_STATE(3129)] = 104501, + [SMALL_STATE(3130)] = 104566, + [SMALL_STATE(3131)] = 104631, + [SMALL_STATE(3132)] = 104696, + [SMALL_STATE(3133)] = 104761, + [SMALL_STATE(3134)] = 104886, + [SMALL_STATE(3135)] = 105013, + [SMALL_STATE(3136)] = 105140, + [SMALL_STATE(3137)] = 105205, + [SMALL_STATE(3138)] = 105270, + [SMALL_STATE(3139)] = 105395, + [SMALL_STATE(3140)] = 105520, + [SMALL_STATE(3141)] = 105645, + [SMALL_STATE(3142)] = 105770, + [SMALL_STATE(3143)] = 105895, + [SMALL_STATE(3144)] = 105960, + [SMALL_STATE(3145)] = 106085, + [SMALL_STATE(3146)] = 106150, + [SMALL_STATE(3147)] = 106215, + [SMALL_STATE(3148)] = 106280, + [SMALL_STATE(3149)] = 106345, + [SMALL_STATE(3150)] = 106410, + [SMALL_STATE(3151)] = 106475, + [SMALL_STATE(3152)] = 106540, + [SMALL_STATE(3153)] = 106605, + [SMALL_STATE(3154)] = 106670, + [SMALL_STATE(3155)] = 106735, + [SMALL_STATE(3156)] = 106800, + [SMALL_STATE(3157)] = 106865, + [SMALL_STATE(3158)] = 106930, + [SMALL_STATE(3159)] = 106995, + [SMALL_STATE(3160)] = 107060, + [SMALL_STATE(3161)] = 107125, + [SMALL_STATE(3162)] = 107190, + [SMALL_STATE(3163)] = 107315, + [SMALL_STATE(3164)] = 107386, + [SMALL_STATE(3165)] = 107511, + [SMALL_STATE(3166)] = 107590, + [SMALL_STATE(3167)] = 107663, + [SMALL_STATE(3168)] = 107746, + [SMALL_STATE(3169)] = 107817, + [SMALL_STATE(3170)] = 107884, + [SMALL_STATE(3171)] = 107959, + [SMALL_STATE(3172)] = 108044, + [SMALL_STATE(3173)] = 108131, + [SMALL_STATE(3174)] = 108220, + [SMALL_STATE(3175)] = 108311, + [SMALL_STATE(3176)] = 108404, + [SMALL_STATE(3177)] = 108499, + [SMALL_STATE(3178)] = 108596, + [SMALL_STATE(3179)] = 108721, + [SMALL_STATE(3180)] = 108848, + [SMALL_STATE(3181)] = 108973, + [SMALL_STATE(3182)] = 109098, + [SMALL_STATE(3183)] = 109223, + [SMALL_STATE(3184)] = 109350, + [SMALL_STATE(3185)] = 109417, + [SMALL_STATE(3186)] = 109484, + [SMALL_STATE(3187)] = 109551, + [SMALL_STATE(3188)] = 109678, + [SMALL_STATE(3189)] = 109805, + [SMALL_STATE(3190)] = 109872, + [SMALL_STATE(3191)] = 109939, + [SMALL_STATE(3192)] = 110004, + [SMALL_STATE(3193)] = 110069, + [SMALL_STATE(3194)] = 110136, + [SMALL_STATE(3195)] = 110201, + [SMALL_STATE(3196)] = 110266, + [SMALL_STATE(3197)] = 110331, + [SMALL_STATE(3198)] = 110396, + [SMALL_STATE(3199)] = 110461, + [SMALL_STATE(3200)] = 110526, + [SMALL_STATE(3201)] = 110591, + [SMALL_STATE(3202)] = 110656, + [SMALL_STATE(3203)] = 110721, + [SMALL_STATE(3204)] = 110786, + [SMALL_STATE(3205)] = 110851, + [SMALL_STATE(3206)] = 110916, + [SMALL_STATE(3207)] = 110981, + [SMALL_STATE(3208)] = 111046, + [SMALL_STATE(3209)] = 111111, + [SMALL_STATE(3210)] = 111176, + [SMALL_STATE(3211)] = 111241, + [SMALL_STATE(3212)] = 111306, + [SMALL_STATE(3213)] = 111371, + [SMALL_STATE(3214)] = 111436, + [SMALL_STATE(3215)] = 111501, + [SMALL_STATE(3216)] = 111566, + [SMALL_STATE(3217)] = 111631, + [SMALL_STATE(3218)] = 111696, + [SMALL_STATE(3219)] = 111761, + [SMALL_STATE(3220)] = 111826, + [SMALL_STATE(3221)] = 111891, + [SMALL_STATE(3222)] = 111956, + [SMALL_STATE(3223)] = 112021, + [SMALL_STATE(3224)] = 112086, + [SMALL_STATE(3225)] = 112151, + [SMALL_STATE(3226)] = 112216, + [SMALL_STATE(3227)] = 112281, + [SMALL_STATE(3228)] = 112346, + [SMALL_STATE(3229)] = 112411, + [SMALL_STATE(3230)] = 112476, + [SMALL_STATE(3231)] = 112541, + [SMALL_STATE(3232)] = 112606, + [SMALL_STATE(3233)] = 112671, + [SMALL_STATE(3234)] = 112736, + [SMALL_STATE(3235)] = 112801, + [SMALL_STATE(3236)] = 112866, + [SMALL_STATE(3237)] = 112931, + [SMALL_STATE(3238)] = 112996, + [SMALL_STATE(3239)] = 113061, + [SMALL_STATE(3240)] = 113126, + [SMALL_STATE(3241)] = 113191, + [SMALL_STATE(3242)] = 113256, + [SMALL_STATE(3243)] = 113321, + [SMALL_STATE(3244)] = 113386, + [SMALL_STATE(3245)] = 113451, + [SMALL_STATE(3246)] = 113516, + [SMALL_STATE(3247)] = 113581, + [SMALL_STATE(3248)] = 113646, + [SMALL_STATE(3249)] = 113711, + [SMALL_STATE(3250)] = 113776, + [SMALL_STATE(3251)] = 113841, + [SMALL_STATE(3252)] = 113906, + [SMALL_STATE(3253)] = 113971, + [SMALL_STATE(3254)] = 114036, + [SMALL_STATE(3255)] = 114101, + [SMALL_STATE(3256)] = 114226, + [SMALL_STATE(3257)] = 114291, + [SMALL_STATE(3258)] = 114356, + [SMALL_STATE(3259)] = 114481, + [SMALL_STATE(3260)] = 114606, + [SMALL_STATE(3261)] = 114671, + [SMALL_STATE(3262)] = 114796, + [SMALL_STATE(3263)] = 114921, + [SMALL_STATE(3264)] = 114986, + [SMALL_STATE(3265)] = 115051, + [SMALL_STATE(3266)] = 115176, + [SMALL_STATE(3267)] = 115301, + [SMALL_STATE(3268)] = 115426, + [SMALL_STATE(3269)] = 115491, + [SMALL_STATE(3270)] = 115556, + [SMALL_STATE(3271)] = 115681, + [SMALL_STATE(3272)] = 115806, + [SMALL_STATE(3273)] = 115931, + [SMALL_STATE(3274)] = 115996, + [SMALL_STATE(3275)] = 116121, + [SMALL_STATE(3276)] = 116186, + [SMALL_STATE(3277)] = 116311, + [SMALL_STATE(3278)] = 116376, + [SMALL_STATE(3279)] = 116441, + [SMALL_STATE(3280)] = 116506, + [SMALL_STATE(3281)] = 116571, + [SMALL_STATE(3282)] = 116636, + [SMALL_STATE(3283)] = 116701, + [SMALL_STATE(3284)] = 116766, + [SMALL_STATE(3285)] = 116831, + [SMALL_STATE(3286)] = 116896, + [SMALL_STATE(3287)] = 116961, + [SMALL_STATE(3288)] = 117026, + [SMALL_STATE(3289)] = 117091, + [SMALL_STATE(3290)] = 117156, + [SMALL_STATE(3291)] = 117221, + [SMALL_STATE(3292)] = 117286, + [SMALL_STATE(3293)] = 117351, + [SMALL_STATE(3294)] = 117416, + [SMALL_STATE(3295)] = 117481, + [SMALL_STATE(3296)] = 117546, + [SMALL_STATE(3297)] = 117611, + [SMALL_STATE(3298)] = 117676, + [SMALL_STATE(3299)] = 117741, + [SMALL_STATE(3300)] = 117806, + [SMALL_STATE(3301)] = 117871, + [SMALL_STATE(3302)] = 117936, + [SMALL_STATE(3303)] = 118003, + [SMALL_STATE(3304)] = 118068, + [SMALL_STATE(3305)] = 118133, + [SMALL_STATE(3306)] = 118198, + [SMALL_STATE(3307)] = 118325, + [SMALL_STATE(3308)] = 118390, + [SMALL_STATE(3309)] = 118455, + [SMALL_STATE(3310)] = 118520, + [SMALL_STATE(3311)] = 118647, + [SMALL_STATE(3312)] = 118772, + [SMALL_STATE(3313)] = 118897, + [SMALL_STATE(3314)] = 119022, + [SMALL_STATE(3315)] = 119147, + [SMALL_STATE(3316)] = 119272, + [SMALL_STATE(3317)] = 119397, + [SMALL_STATE(3318)] = 119522, + [SMALL_STATE(3319)] = 119647, + [SMALL_STATE(3320)] = 119772, + [SMALL_STATE(3321)] = 119897, + [SMALL_STATE(3322)] = 120022, + [SMALL_STATE(3323)] = 120147, + [SMALL_STATE(3324)] = 120272, + [SMALL_STATE(3325)] = 120397, + [SMALL_STATE(3326)] = 120522, + [SMALL_STATE(3327)] = 120647, + [SMALL_STATE(3328)] = 120772, + [SMALL_STATE(3329)] = 120897, + [SMALL_STATE(3330)] = 121022, + [SMALL_STATE(3331)] = 121147, + [SMALL_STATE(3332)] = 121272, + [SMALL_STATE(3333)] = 121397, + [SMALL_STATE(3334)] = 121522, + [SMALL_STATE(3335)] = 121647, + [SMALL_STATE(3336)] = 121772, + [SMALL_STATE(3337)] = 121897, + [SMALL_STATE(3338)] = 122022, + [SMALL_STATE(3339)] = 122147, + [SMALL_STATE(3340)] = 122272, + [SMALL_STATE(3341)] = 122397, + [SMALL_STATE(3342)] = 122522, + [SMALL_STATE(3343)] = 122647, + [SMALL_STATE(3344)] = 122772, + [SMALL_STATE(3345)] = 122897, + [SMALL_STATE(3346)] = 123022, + [SMALL_STATE(3347)] = 123147, + [SMALL_STATE(3348)] = 123272, + [SMALL_STATE(3349)] = 123397, + [SMALL_STATE(3350)] = 123522, + [SMALL_STATE(3351)] = 123647, + [SMALL_STATE(3352)] = 123772, + [SMALL_STATE(3353)] = 123897, + [SMALL_STATE(3354)] = 124022, + [SMALL_STATE(3355)] = 124147, + [SMALL_STATE(3356)] = 124272, + [SMALL_STATE(3357)] = 124397, + [SMALL_STATE(3358)] = 124522, + [SMALL_STATE(3359)] = 124647, + [SMALL_STATE(3360)] = 124772, + [SMALL_STATE(3361)] = 124897, + [SMALL_STATE(3362)] = 125022, + [SMALL_STATE(3363)] = 125147, + [SMALL_STATE(3364)] = 125272, + [SMALL_STATE(3365)] = 125397, + [SMALL_STATE(3366)] = 125522, + [SMALL_STATE(3367)] = 125647, + [SMALL_STATE(3368)] = 125772, + [SMALL_STATE(3369)] = 125897, + [SMALL_STATE(3370)] = 126022, + [SMALL_STATE(3371)] = 126147, + [SMALL_STATE(3372)] = 126272, + [SMALL_STATE(3373)] = 126397, + [SMALL_STATE(3374)] = 126522, + [SMALL_STATE(3375)] = 126647, + [SMALL_STATE(3376)] = 126772, + [SMALL_STATE(3377)] = 126897, + [SMALL_STATE(3378)] = 127022, + [SMALL_STATE(3379)] = 127147, + [SMALL_STATE(3380)] = 127272, + [SMALL_STATE(3381)] = 127397, + [SMALL_STATE(3382)] = 127522, + [SMALL_STATE(3383)] = 127647, + [SMALL_STATE(3384)] = 127772, + [SMALL_STATE(3385)] = 127897, + [SMALL_STATE(3386)] = 128022, + [SMALL_STATE(3387)] = 128147, + [SMALL_STATE(3388)] = 128272, + [SMALL_STATE(3389)] = 128397, + [SMALL_STATE(3390)] = 128522, + [SMALL_STATE(3391)] = 128647, + [SMALL_STATE(3392)] = 128772, + [SMALL_STATE(3393)] = 128897, + [SMALL_STATE(3394)] = 129022, + [SMALL_STATE(3395)] = 129147, + [SMALL_STATE(3396)] = 129272, + [SMALL_STATE(3397)] = 129397, + [SMALL_STATE(3398)] = 129522, + [SMALL_STATE(3399)] = 129647, + [SMALL_STATE(3400)] = 129772, + [SMALL_STATE(3401)] = 129897, + [SMALL_STATE(3402)] = 130022, + [SMALL_STATE(3403)] = 130147, + [SMALL_STATE(3404)] = 130272, + [SMALL_STATE(3405)] = 130397, + [SMALL_STATE(3406)] = 130522, + [SMALL_STATE(3407)] = 130647, + [SMALL_STATE(3408)] = 130772, + [SMALL_STATE(3409)] = 130897, + [SMALL_STATE(3410)] = 131022, + [SMALL_STATE(3411)] = 131147, + [SMALL_STATE(3412)] = 131272, + [SMALL_STATE(3413)] = 131397, + [SMALL_STATE(3414)] = 131522, + [SMALL_STATE(3415)] = 131647, + [SMALL_STATE(3416)] = 131772, + [SMALL_STATE(3417)] = 131897, + [SMALL_STATE(3418)] = 132022, + [SMALL_STATE(3419)] = 132147, + [SMALL_STATE(3420)] = 132272, + [SMALL_STATE(3421)] = 132397, + [SMALL_STATE(3422)] = 132522, + [SMALL_STATE(3423)] = 132647, + [SMALL_STATE(3424)] = 132772, + [SMALL_STATE(3425)] = 132897, + [SMALL_STATE(3426)] = 133022, + [SMALL_STATE(3427)] = 133147, + [SMALL_STATE(3428)] = 133272, + [SMALL_STATE(3429)] = 133397, + [SMALL_STATE(3430)] = 133522, + [SMALL_STATE(3431)] = 133647, + [SMALL_STATE(3432)] = 133772, + [SMALL_STATE(3433)] = 133897, + [SMALL_STATE(3434)] = 134022, + [SMALL_STATE(3435)] = 134147, + [SMALL_STATE(3436)] = 134272, + [SMALL_STATE(3437)] = 134397, + [SMALL_STATE(3438)] = 134522, + [SMALL_STATE(3439)] = 134647, + [SMALL_STATE(3440)] = 134772, + [SMALL_STATE(3441)] = 134897, + [SMALL_STATE(3442)] = 135022, + [SMALL_STATE(3443)] = 135147, + [SMALL_STATE(3444)] = 135272, + [SMALL_STATE(3445)] = 135397, + [SMALL_STATE(3446)] = 135522, + [SMALL_STATE(3447)] = 135647, + [SMALL_STATE(3448)] = 135772, + [SMALL_STATE(3449)] = 135897, + [SMALL_STATE(3450)] = 136022, + [SMALL_STATE(3451)] = 136149, + [SMALL_STATE(3452)] = 136274, + [SMALL_STATE(3453)] = 136399, + [SMALL_STATE(3454)] = 136524, + [SMALL_STATE(3455)] = 136649, + [SMALL_STATE(3456)] = 136774, + [SMALL_STATE(3457)] = 136899, + [SMALL_STATE(3458)] = 137024, + [SMALL_STATE(3459)] = 137149, + [SMALL_STATE(3460)] = 137274, + [SMALL_STATE(3461)] = 137399, + [SMALL_STATE(3462)] = 137524, + [SMALL_STATE(3463)] = 137649, + [SMALL_STATE(3464)] = 137774, + [SMALL_STATE(3465)] = 137899, + [SMALL_STATE(3466)] = 138024, + [SMALL_STATE(3467)] = 138149, + [SMALL_STATE(3468)] = 138274, + [SMALL_STATE(3469)] = 138399, + [SMALL_STATE(3470)] = 138524, + [SMALL_STATE(3471)] = 138649, + [SMALL_STATE(3472)] = 138774, + [SMALL_STATE(3473)] = 138899, + [SMALL_STATE(3474)] = 139024, + [SMALL_STATE(3475)] = 139149, + [SMALL_STATE(3476)] = 139274, + [SMALL_STATE(3477)] = 139399, + [SMALL_STATE(3478)] = 139524, + [SMALL_STATE(3479)] = 139649, + [SMALL_STATE(3480)] = 139774, + [SMALL_STATE(3481)] = 139899, + [SMALL_STATE(3482)] = 140024, + [SMALL_STATE(3483)] = 140149, + [SMALL_STATE(3484)] = 140274, + [SMALL_STATE(3485)] = 140399, + [SMALL_STATE(3486)] = 140524, + [SMALL_STATE(3487)] = 140649, + [SMALL_STATE(3488)] = 140774, + [SMALL_STATE(3489)] = 140899, + [SMALL_STATE(3490)] = 141024, + [SMALL_STATE(3491)] = 141149, + [SMALL_STATE(3492)] = 141274, + [SMALL_STATE(3493)] = 141399, + [SMALL_STATE(3494)] = 141524, + [SMALL_STATE(3495)] = 141649, + [SMALL_STATE(3496)] = 141774, + [SMALL_STATE(3497)] = 141899, + [SMALL_STATE(3498)] = 142024, + [SMALL_STATE(3499)] = 142149, + [SMALL_STATE(3500)] = 142274, + [SMALL_STATE(3501)] = 142399, + [SMALL_STATE(3502)] = 142524, + [SMALL_STATE(3503)] = 142649, + [SMALL_STATE(3504)] = 142774, + [SMALL_STATE(3505)] = 142899, + [SMALL_STATE(3506)] = 143024, + [SMALL_STATE(3507)] = 143149, + [SMALL_STATE(3508)] = 143274, + [SMALL_STATE(3509)] = 143399, + [SMALL_STATE(3510)] = 143524, + [SMALL_STATE(3511)] = 143649, + [SMALL_STATE(3512)] = 143774, + [SMALL_STATE(3513)] = 143899, + [SMALL_STATE(3514)] = 144024, + [SMALL_STATE(3515)] = 144149, + [SMALL_STATE(3516)] = 144274, + [SMALL_STATE(3517)] = 144399, + [SMALL_STATE(3518)] = 144524, + [SMALL_STATE(3519)] = 144649, + [SMALL_STATE(3520)] = 144774, + [SMALL_STATE(3521)] = 144899, + [SMALL_STATE(3522)] = 145024, + [SMALL_STATE(3523)] = 145149, + [SMALL_STATE(3524)] = 145274, + [SMALL_STATE(3525)] = 145399, + [SMALL_STATE(3526)] = 145524, + [SMALL_STATE(3527)] = 145649, + [SMALL_STATE(3528)] = 145774, + [SMALL_STATE(3529)] = 145899, + [SMALL_STATE(3530)] = 146024, + [SMALL_STATE(3531)] = 146149, + [SMALL_STATE(3532)] = 146274, + [SMALL_STATE(3533)] = 146399, + [SMALL_STATE(3534)] = 146524, + [SMALL_STATE(3535)] = 146649, + [SMALL_STATE(3536)] = 146774, + [SMALL_STATE(3537)] = 146899, + [SMALL_STATE(3538)] = 147024, + [SMALL_STATE(3539)] = 147149, + [SMALL_STATE(3540)] = 147274, + [SMALL_STATE(3541)] = 147399, + [SMALL_STATE(3542)] = 147524, + [SMALL_STATE(3543)] = 147649, + [SMALL_STATE(3544)] = 147774, + [SMALL_STATE(3545)] = 147899, + [SMALL_STATE(3546)] = 148024, + [SMALL_STATE(3547)] = 148149, + [SMALL_STATE(3548)] = 148274, + [SMALL_STATE(3549)] = 148399, + [SMALL_STATE(3550)] = 148524, + [SMALL_STATE(3551)] = 148649, + [SMALL_STATE(3552)] = 148774, + [SMALL_STATE(3553)] = 148899, + [SMALL_STATE(3554)] = 149024, + [SMALL_STATE(3555)] = 149149, + [SMALL_STATE(3556)] = 149274, + [SMALL_STATE(3557)] = 149399, + [SMALL_STATE(3558)] = 149524, + [SMALL_STATE(3559)] = 149649, + [SMALL_STATE(3560)] = 149774, + [SMALL_STATE(3561)] = 149899, + [SMALL_STATE(3562)] = 150024, + [SMALL_STATE(3563)] = 150149, + [SMALL_STATE(3564)] = 150274, + [SMALL_STATE(3565)] = 150399, + [SMALL_STATE(3566)] = 150524, + [SMALL_STATE(3567)] = 150649, + [SMALL_STATE(3568)] = 150774, + [SMALL_STATE(3569)] = 150899, + [SMALL_STATE(3570)] = 151024, + [SMALL_STATE(3571)] = 151149, + [SMALL_STATE(3572)] = 151274, + [SMALL_STATE(3573)] = 151399, + [SMALL_STATE(3574)] = 151524, + [SMALL_STATE(3575)] = 151649, + [SMALL_STATE(3576)] = 151774, + [SMALL_STATE(3577)] = 151899, + [SMALL_STATE(3578)] = 152024, + [SMALL_STATE(3579)] = 152149, + [SMALL_STATE(3580)] = 152274, + [SMALL_STATE(3581)] = 152399, + [SMALL_STATE(3582)] = 152524, + [SMALL_STATE(3583)] = 152649, + [SMALL_STATE(3584)] = 152774, + [SMALL_STATE(3585)] = 152899, + [SMALL_STATE(3586)] = 153024, + [SMALL_STATE(3587)] = 153149, + [SMALL_STATE(3588)] = 153274, + [SMALL_STATE(3589)] = 153399, + [SMALL_STATE(3590)] = 153524, + [SMALL_STATE(3591)] = 153649, + [SMALL_STATE(3592)] = 153774, + [SMALL_STATE(3593)] = 153899, + [SMALL_STATE(3594)] = 154024, + [SMALL_STATE(3595)] = 154149, + [SMALL_STATE(3596)] = 154274, + [SMALL_STATE(3597)] = 154399, + [SMALL_STATE(3598)] = 154524, + [SMALL_STATE(3599)] = 154649, + [SMALL_STATE(3600)] = 154774, + [SMALL_STATE(3601)] = 154899, + [SMALL_STATE(3602)] = 155024, + [SMALL_STATE(3603)] = 155149, + [SMALL_STATE(3604)] = 155274, + [SMALL_STATE(3605)] = 155399, + [SMALL_STATE(3606)] = 155524, + [SMALL_STATE(3607)] = 155649, + [SMALL_STATE(3608)] = 155774, + [SMALL_STATE(3609)] = 155899, + [SMALL_STATE(3610)] = 156024, + [SMALL_STATE(3611)] = 156149, + [SMALL_STATE(3612)] = 156274, + [SMALL_STATE(3613)] = 156399, + [SMALL_STATE(3614)] = 156524, + [SMALL_STATE(3615)] = 156649, + [SMALL_STATE(3616)] = 156774, + [SMALL_STATE(3617)] = 156899, + [SMALL_STATE(3618)] = 157024, + [SMALL_STATE(3619)] = 157149, + [SMALL_STATE(3620)] = 157274, + [SMALL_STATE(3621)] = 157399, + [SMALL_STATE(3622)] = 157524, + [SMALL_STATE(3623)] = 157649, + [SMALL_STATE(3624)] = 157720, + [SMALL_STATE(3625)] = 157785, + [SMALL_STATE(3626)] = 157910, + [SMALL_STATE(3627)] = 158035, + [SMALL_STATE(3628)] = 158160, + [SMALL_STATE(3629)] = 158285, + [SMALL_STATE(3630)] = 158410, + [SMALL_STATE(3631)] = 158535, + [SMALL_STATE(3632)] = 158660, + [SMALL_STATE(3633)] = 158785, + [SMALL_STATE(3634)] = 158910, + [SMALL_STATE(3635)] = 159035, + [SMALL_STATE(3636)] = 159160, + [SMALL_STATE(3637)] = 159285, + [SMALL_STATE(3638)] = 159410, + [SMALL_STATE(3639)] = 159535, + [SMALL_STATE(3640)] = 159660, + [SMALL_STATE(3641)] = 159785, + [SMALL_STATE(3642)] = 159910, + [SMALL_STATE(3643)] = 160035, + [SMALL_STATE(3644)] = 160160, + [SMALL_STATE(3645)] = 160285, + [SMALL_STATE(3646)] = 160410, + [SMALL_STATE(3647)] = 160535, + [SMALL_STATE(3648)] = 160660, + [SMALL_STATE(3649)] = 160785, + [SMALL_STATE(3650)] = 160910, + [SMALL_STATE(3651)] = 161035, + [SMALL_STATE(3652)] = 161160, + [SMALL_STATE(3653)] = 161285, + [SMALL_STATE(3654)] = 161410, + [SMALL_STATE(3655)] = 161535, + [SMALL_STATE(3656)] = 161660, + [SMALL_STATE(3657)] = 161785, + [SMALL_STATE(3658)] = 161910, + [SMALL_STATE(3659)] = 162035, + [SMALL_STATE(3660)] = 162160, + [SMALL_STATE(3661)] = 162285, + [SMALL_STATE(3662)] = 162410, + [SMALL_STATE(3663)] = 162535, + [SMALL_STATE(3664)] = 162660, + [SMALL_STATE(3665)] = 162785, + [SMALL_STATE(3666)] = 162910, + [SMALL_STATE(3667)] = 163035, + [SMALL_STATE(3668)] = 163160, + [SMALL_STATE(3669)] = 163285, + [SMALL_STATE(3670)] = 163410, + [SMALL_STATE(3671)] = 163535, + [SMALL_STATE(3672)] = 163660, + [SMALL_STATE(3673)] = 163785, + [SMALL_STATE(3674)] = 163910, + [SMALL_STATE(3675)] = 164035, + [SMALL_STATE(3676)] = 164160, + [SMALL_STATE(3677)] = 164225, + [SMALL_STATE(3678)] = 164350, + [SMALL_STATE(3679)] = 164475, + [SMALL_STATE(3680)] = 164600, + [SMALL_STATE(3681)] = 164725, + [SMALL_STATE(3682)] = 164850, + [SMALL_STATE(3683)] = 164975, + [SMALL_STATE(3684)] = 165100, + [SMALL_STATE(3685)] = 165225, + [SMALL_STATE(3686)] = 165350, + [SMALL_STATE(3687)] = 165475, + [SMALL_STATE(3688)] = 165600, + [SMALL_STATE(3689)] = 165725, + [SMALL_STATE(3690)] = 165850, + [SMALL_STATE(3691)] = 165915, + [SMALL_STATE(3692)] = 165980, + [SMALL_STATE(3693)] = 166045, + [SMALL_STATE(3694)] = 166110, + [SMALL_STATE(3695)] = 166175, + [SMALL_STATE(3696)] = 166240, + [SMALL_STATE(3697)] = 166305, + [SMALL_STATE(3698)] = 166370, + [SMALL_STATE(3699)] = 166435, + [SMALL_STATE(3700)] = 166562, + [SMALL_STATE(3701)] = 166627, + [SMALL_STATE(3702)] = 166692, + [SMALL_STATE(3703)] = 166757, + [SMALL_STATE(3704)] = 166822, + [SMALL_STATE(3705)] = 166887, + [SMALL_STATE(3706)] = 167014, + [SMALL_STATE(3707)] = 167141, + [SMALL_STATE(3708)] = 167268, + [SMALL_STATE(3709)] = 167395, + [SMALL_STATE(3710)] = 167522, + [SMALL_STATE(3711)] = 167649, + [SMALL_STATE(3712)] = 167776, + [SMALL_STATE(3713)] = 167855, + [SMALL_STATE(3714)] = 167928, + [SMALL_STATE(3715)] = 168011, + [SMALL_STATE(3716)] = 168082, + [SMALL_STATE(3717)] = 168149, + [SMALL_STATE(3718)] = 168224, + [SMALL_STATE(3719)] = 168309, + [SMALL_STATE(3720)] = 168396, + [SMALL_STATE(3721)] = 168485, + [SMALL_STATE(3722)] = 168576, + [SMALL_STATE(3723)] = 168669, + [SMALL_STATE(3724)] = 168764, + [SMALL_STATE(3725)] = 168861, + [SMALL_STATE(3726)] = 168926, + [SMALL_STATE(3727)] = 168991, [SMALL_STATE(3728)] = 169056, [SMALL_STATE(3729)] = 169181, [SMALL_STATE(3730)] = 169245, - [SMALL_STATE(3731)] = 169315, - [SMALL_STATE(3732)] = 169379, - [SMALL_STATE(3733)] = 169443, - [SMALL_STATE(3734)] = 169507, - [SMALL_STATE(3735)] = 169571, - [SMALL_STATE(3736)] = 169635, - [SMALL_STATE(3737)] = 169699, - [SMALL_STATE(3738)] = 169763, - [SMALL_STATE(3739)] = 169827, - [SMALL_STATE(3740)] = 169891, - [SMALL_STATE(3741)] = 169955, - [SMALL_STATE(3742)] = 170019, - [SMALL_STATE(3743)] = 170083, - [SMALL_STATE(3744)] = 170149, + [SMALL_STATE(3731)] = 169309, + [SMALL_STATE(3732)] = 169399, + [SMALL_STATE(3733)] = 169463, + [SMALL_STATE(3734)] = 169527, + [SMALL_STATE(3735)] = 169591, + [SMALL_STATE(3736)] = 169655, + [SMALL_STATE(3737)] = 169719, + [SMALL_STATE(3738)] = 169789, + [SMALL_STATE(3739)] = 169853, + [SMALL_STATE(3740)] = 169931, + [SMALL_STATE(3741)] = 170003, + [SMALL_STATE(3742)] = 170085, + [SMALL_STATE(3743)] = 170155, + [SMALL_STATE(3744)] = 170221, [SMALL_STATE(3745)] = 170285, [SMALL_STATE(3746)] = 170349, - [SMALL_STATE(3747)] = 170413, - [SMALL_STATE(3748)] = 170477, - [SMALL_STATE(3749)] = 170541, - [SMALL_STATE(3750)] = 170605, - [SMALL_STATE(3751)] = 170669, - [SMALL_STATE(3752)] = 170797, - [SMALL_STATE(3753)] = 170861, - [SMALL_STATE(3754)] = 170925, - [SMALL_STATE(3755)] = 170989, - [SMALL_STATE(3756)] = 171053, - [SMALL_STATE(3757)] = 171117, - [SMALL_STATE(3758)] = 171181, - [SMALL_STATE(3759)] = 171245, - [SMALL_STATE(3760)] = 171309, - [SMALL_STATE(3761)] = 171405, - [SMALL_STATE(3762)] = 171499, - [SMALL_STATE(3763)] = 171563, - [SMALL_STATE(3764)] = 171655, - [SMALL_STATE(3765)] = 171719, - [SMALL_STATE(3766)] = 171855, - [SMALL_STATE(3767)] = 171919, - [SMALL_STATE(3768)] = 172009, - [SMALL_STATE(3769)] = 172073, - [SMALL_STATE(3770)] = 172137, - [SMALL_STATE(3771)] = 172201, - [SMALL_STATE(3772)] = 172265, - [SMALL_STATE(3773)] = 172329, - [SMALL_STATE(3774)] = 172417, - [SMALL_STATE(3775)] = 172481, - [SMALL_STATE(3776)] = 172545, - [SMALL_STATE(3777)] = 172631, - [SMALL_STATE(3778)] = 172715, - [SMALL_STATE(3779)] = 172779, - [SMALL_STATE(3780)] = 172853, - [SMALL_STATE(3781)] = 172919, - [SMALL_STATE(3782)] = 172983, - [SMALL_STATE(3783)] = 173047, - [SMALL_STATE(3784)] = 173111, - [SMALL_STATE(3785)] = 173175, - [SMALL_STATE(3786)] = 173239, - [SMALL_STATE(3787)] = 173303, - [SMALL_STATE(3788)] = 173373, - [SMALL_STATE(3789)] = 173437, - [SMALL_STATE(3790)] = 173501, - [SMALL_STATE(3791)] = 173565, - [SMALL_STATE(3792)] = 173647, - [SMALL_STATE(3793)] = 173711, - [SMALL_STATE(3794)] = 173775, - [SMALL_STATE(3795)] = 173839, - [SMALL_STATE(3796)] = 173903, - [SMALL_STATE(3797)] = 173967, - [SMALL_STATE(3798)] = 174031, - [SMALL_STATE(3799)] = 174103, - [SMALL_STATE(3800)] = 174167, - [SMALL_STATE(3801)] = 174231, - [SMALL_STATE(3802)] = 174295, - [SMALL_STATE(3803)] = 174359, - [SMALL_STATE(3804)] = 174423, - [SMALL_STATE(3805)] = 174487, - [SMALL_STATE(3806)] = 174551, - [SMALL_STATE(3807)] = 174615, - [SMALL_STATE(3808)] = 174693, - [SMALL_STATE(3809)] = 174829, - [SMALL_STATE(3810)] = 174893, - [SMALL_STATE(3811)] = 174957, - [SMALL_STATE(3812)] = 175021, - [SMALL_STATE(3813)] = 175085, - [SMALL_STATE(3814)] = 175149, - [SMALL_STATE(3815)] = 175213, - [SMALL_STATE(3816)] = 175277, - [SMALL_STATE(3817)] = 175413, - [SMALL_STATE(3818)] = 175477, - [SMALL_STATE(3819)] = 175567, - [SMALL_STATE(3820)] = 175633, - [SMALL_STATE(3821)] = 175697, - [SMALL_STATE(3822)] = 175761, - [SMALL_STATE(3823)] = 175825, - [SMALL_STATE(3824)] = 175889, - [SMALL_STATE(3825)] = 175953, - [SMALL_STATE(3826)] = 176017, - [SMALL_STATE(3827)] = 176081, - [SMALL_STATE(3828)] = 176145, - [SMALL_STATE(3829)] = 176209, - [SMALL_STATE(3830)] = 176273, - [SMALL_STATE(3831)] = 176337, - [SMALL_STATE(3832)] = 176401, - [SMALL_STATE(3833)] = 176537, - [SMALL_STATE(3834)] = 176601, - [SMALL_STATE(3835)] = 176665, - [SMALL_STATE(3836)] = 176801, - [SMALL_STATE(3837)] = 176865, - [SMALL_STATE(3838)] = 176929, - [SMALL_STATE(3839)] = 176993, - [SMALL_STATE(3840)] = 177057, - [SMALL_STATE(3841)] = 177193, - [SMALL_STATE(3842)] = 177329, - [SMALL_STATE(3843)] = 177393, - [SMALL_STATE(3844)] = 177457, - [SMALL_STATE(3845)] = 177521, - [SMALL_STATE(3846)] = 177585, - [SMALL_STATE(3847)] = 177649, - [SMALL_STATE(3848)] = 177713, - [SMALL_STATE(3849)] = 177777, - [SMALL_STATE(3850)] = 177841, - [SMALL_STATE(3851)] = 177905, - [SMALL_STATE(3852)] = 177969, - [SMALL_STATE(3853)] = 178033, - [SMALL_STATE(3854)] = 178097, - [SMALL_STATE(3855)] = 178161, - [SMALL_STATE(3856)] = 178225, - [SMALL_STATE(3857)] = 178289, - [SMALL_STATE(3858)] = 178353, - [SMALL_STATE(3859)] = 178417, - [SMALL_STATE(3860)] = 178481, - [SMALL_STATE(3861)] = 178545, - [SMALL_STATE(3862)] = 178609, + [SMALL_STATE(3747)] = 170423, + [SMALL_STATE(3748)] = 170507, + [SMALL_STATE(3749)] = 170571, + [SMALL_STATE(3750)] = 170657, + [SMALL_STATE(3751)] = 170721, + [SMALL_STATE(3752)] = 170809, + [SMALL_STATE(3753)] = 170899, + [SMALL_STATE(3754)] = 170991, + [SMALL_STATE(3755)] = 171055, + [SMALL_STATE(3756)] = 171149, + [SMALL_STATE(3757)] = 171245, + [SMALL_STATE(3758)] = 171381, + [SMALL_STATE(3759)] = 171517, + [SMALL_STATE(3760)] = 171653, + [SMALL_STATE(3761)] = 171789, + [SMALL_STATE(3762)] = 171853, + [SMALL_STATE(3763)] = 171917, + [SMALL_STATE(3764)] = 171981, + [SMALL_STATE(3765)] = 172045, + [SMALL_STATE(3766)] = 172109, + [SMALL_STATE(3767)] = 172173, + [SMALL_STATE(3768)] = 172237, + [SMALL_STATE(3769)] = 172301, + [SMALL_STATE(3770)] = 172365, + [SMALL_STATE(3771)] = 172429, + [SMALL_STATE(3772)] = 172493, + [SMALL_STATE(3773)] = 172557, + [SMALL_STATE(3774)] = 172621, + [SMALL_STATE(3775)] = 172685, + [SMALL_STATE(3776)] = 172749, + [SMALL_STATE(3777)] = 172813, + [SMALL_STATE(3778)] = 172877, + [SMALL_STATE(3779)] = 172941, + [SMALL_STATE(3780)] = 173005, + [SMALL_STATE(3781)] = 173069, + [SMALL_STATE(3782)] = 173133, + [SMALL_STATE(3783)] = 173197, + [SMALL_STATE(3784)] = 173261, + [SMALL_STATE(3785)] = 173325, + [SMALL_STATE(3786)] = 173389, + [SMALL_STATE(3787)] = 173453, + [SMALL_STATE(3788)] = 173517, + [SMALL_STATE(3789)] = 173581, + [SMALL_STATE(3790)] = 173645, + [SMALL_STATE(3791)] = 173709, + [SMALL_STATE(3792)] = 173773, + [SMALL_STATE(3793)] = 173837, + [SMALL_STATE(3794)] = 173901, + [SMALL_STATE(3795)] = 173965, + [SMALL_STATE(3796)] = 174029, + [SMALL_STATE(3797)] = 174093, + [SMALL_STATE(3798)] = 174157, + [SMALL_STATE(3799)] = 174221, + [SMALL_STATE(3800)] = 174285, + [SMALL_STATE(3801)] = 174349, + [SMALL_STATE(3802)] = 174413, + [SMALL_STATE(3803)] = 174477, + [SMALL_STATE(3804)] = 174541, + [SMALL_STATE(3805)] = 174677, + [SMALL_STATE(3806)] = 174741, + [SMALL_STATE(3807)] = 174805, + [SMALL_STATE(3808)] = 174869, + [SMALL_STATE(3809)] = 174933, + [SMALL_STATE(3810)] = 174997, + [SMALL_STATE(3811)] = 175063, + [SMALL_STATE(3812)] = 175127, + [SMALL_STATE(3813)] = 175191, + [SMALL_STATE(3814)] = 175319, + [SMALL_STATE(3815)] = 175383, + [SMALL_STATE(3816)] = 175447, + [SMALL_STATE(3817)] = 175511, + [SMALL_STATE(3818)] = 175575, + [SMALL_STATE(3819)] = 175639, + [SMALL_STATE(3820)] = 175703, + [SMALL_STATE(3821)] = 175767, + [SMALL_STATE(3822)] = 175831, + [SMALL_STATE(3823)] = 175895, + [SMALL_STATE(3824)] = 175959, + [SMALL_STATE(3825)] = 176023, + [SMALL_STATE(3826)] = 176087, + [SMALL_STATE(3827)] = 176151, + [SMALL_STATE(3828)] = 176215, + [SMALL_STATE(3829)] = 176279, + [SMALL_STATE(3830)] = 176343, + [SMALL_STATE(3831)] = 176407, + [SMALL_STATE(3832)] = 176471, + [SMALL_STATE(3833)] = 176535, + [SMALL_STATE(3834)] = 176599, + [SMALL_STATE(3835)] = 176663, + [SMALL_STATE(3836)] = 176727, + [SMALL_STATE(3837)] = 176791, + [SMALL_STATE(3838)] = 176855, + [SMALL_STATE(3839)] = 176919, + [SMALL_STATE(3840)] = 176983, + [SMALL_STATE(3841)] = 177047, + [SMALL_STATE(3842)] = 177111, + [SMALL_STATE(3843)] = 177175, + [SMALL_STATE(3844)] = 177239, + [SMALL_STATE(3845)] = 177303, + [SMALL_STATE(3846)] = 177367, + [SMALL_STATE(3847)] = 177431, + [SMALL_STATE(3848)] = 177495, + [SMALL_STATE(3849)] = 177559, + [SMALL_STATE(3850)] = 177623, + [SMALL_STATE(3851)] = 177687, + [SMALL_STATE(3852)] = 177751, + [SMALL_STATE(3853)] = 177815, + [SMALL_STATE(3854)] = 177951, + [SMALL_STATE(3855)] = 178015, + [SMALL_STATE(3856)] = 178079, + [SMALL_STATE(3857)] = 178143, + [SMALL_STATE(3858)] = 178207, + [SMALL_STATE(3859)] = 178271, + [SMALL_STATE(3860)] = 178335, + [SMALL_STATE(3861)] = 178471, + [SMALL_STATE(3862)] = 178537, [SMALL_STATE(3863)] = 178673, [SMALL_STATE(3864)] = 178737, [SMALL_STATE(3865)] = 178826, @@ -587890,7 +587932,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3872)] = 179440, [SMALL_STATE(3873)] = 179524, [SMALL_STATE(3874)] = 179607, - [SMALL_STATE(3875)] = 179688, + [SMALL_STATE(3875)] = 179690, [SMALL_STATE(3876)] = 179771, [SMALL_STATE(3877)] = 179854, [SMALL_STATE(3878)] = 179937, @@ -587906,10 +587948,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3888)] = 180730, [SMALL_STATE(3889)] = 180808, [SMALL_STATE(3890)] = 180886, - [SMALL_STATE(3891)] = 180964, - [SMALL_STATE(3892)] = 181044, - [SMALL_STATE(3893)] = 181122, - [SMALL_STATE(3894)] = 181200, + [SMALL_STATE(3891)] = 180966, + [SMALL_STATE(3892)] = 181046, + [SMALL_STATE(3893)] = 181124, + [SMALL_STATE(3894)] = 181202, [SMALL_STATE(3895)] = 181280, [SMALL_STATE(3896)] = 181357, [SMALL_STATE(3897)] = 181434, @@ -587924,1939 +587966,1939 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3906)] = 182127, [SMALL_STATE(3907)] = 182204, [SMALL_STATE(3908)] = 182266, - [SMALL_STATE(3909)] = 182328, + [SMALL_STATE(3909)] = 182384, [SMALL_STATE(3910)] = 182446, [SMALL_STATE(3911)] = 182507, - [SMALL_STATE(3912)] = 182568, + [SMALL_STATE(3912)] = 182566, [SMALL_STATE(3913)] = 182627, [SMALL_STATE(3914)] = 182686, [SMALL_STATE(3915)] = 182747, [SMALL_STATE(3916)] = 182806, [SMALL_STATE(3917)] = 182867, - [SMALL_STATE(3918)] = 182949, - [SMALL_STATE(3919)] = 183007, - [SMALL_STATE(3920)] = 183065, - [SMALL_STATE(3921)] = 183125, - [SMALL_STATE(3922)] = 183185, - [SMALL_STATE(3923)] = 183241, - [SMALL_STATE(3924)] = 183297, + [SMALL_STATE(3918)] = 182923, + [SMALL_STATE(3919)] = 182983, + [SMALL_STATE(3920)] = 183043, + [SMALL_STATE(3921)] = 183099, + [SMALL_STATE(3922)] = 183155, + [SMALL_STATE(3923)] = 183215, + [SMALL_STATE(3924)] = 183271, [SMALL_STATE(3925)] = 183353, [SMALL_STATE(3926)] = 183411, - [SMALL_STATE(3927)] = 183467, + [SMALL_STATE(3927)] = 183469, [SMALL_STATE(3928)] = 183527, - [SMALL_STATE(3929)] = 183588, + [SMALL_STATE(3929)] = 183586, [SMALL_STATE(3930)] = 183647, - [SMALL_STATE(3931)] = 183702, - [SMALL_STATE(3932)] = 183763, - [SMALL_STATE(3933)] = 183824, - [SMALL_STATE(3934)] = 183879, - [SMALL_STATE(3935)] = 183940, - [SMALL_STATE(3936)] = 184001, - [SMALL_STATE(3937)] = 184062, - [SMALL_STATE(3938)] = 184143, - [SMALL_STATE(3939)] = 184204, - [SMALL_STATE(3940)] = 184265, - [SMALL_STATE(3941)] = 184324, - [SMALL_STATE(3942)] = 184381, - [SMALL_STATE(3943)] = 184442, - [SMALL_STATE(3944)] = 184503, - [SMALL_STATE(3945)] = 184564, - [SMALL_STATE(3946)] = 184625, - [SMALL_STATE(3947)] = 184684, - [SMALL_STATE(3948)] = 184743, - [SMALL_STATE(3949)] = 184798, - [SMALL_STATE(3950)] = 184853, - [SMALL_STATE(3951)] = 184914, + [SMALL_STATE(3931)] = 183708, + [SMALL_STATE(3932)] = 183769, + [SMALL_STATE(3933)] = 183826, + [SMALL_STATE(3934)] = 183887, + [SMALL_STATE(3935)] = 183946, + [SMALL_STATE(3936)] = 184007, + [SMALL_STATE(3937)] = 184068, + [SMALL_STATE(3938)] = 184129, + [SMALL_STATE(3939)] = 184184, + [SMALL_STATE(3940)] = 184245, + [SMALL_STATE(3941)] = 184306, + [SMALL_STATE(3942)] = 184367, + [SMALL_STATE(3943)] = 184422, + [SMALL_STATE(3944)] = 184481, + [SMALL_STATE(3945)] = 184536, + [SMALL_STATE(3946)] = 184597, + [SMALL_STATE(3947)] = 184658, + [SMALL_STATE(3948)] = 184713, + [SMALL_STATE(3949)] = 184774, + [SMALL_STATE(3950)] = 184855, + [SMALL_STATE(3951)] = 184916, [SMALL_STATE(3952)] = 184975, - [SMALL_STATE(3953)] = 185036, + [SMALL_STATE(3953)] = 185034, [SMALL_STATE(3954)] = 185095, - [SMALL_STATE(3955)] = 185151, - [SMALL_STATE(3956)] = 185207, - [SMALL_STATE(3957)] = 185267, - [SMALL_STATE(3958)] = 185327, - [SMALL_STATE(3959)] = 185385, - [SMALL_STATE(3960)] = 185445, - [SMALL_STATE(3961)] = 185505, - [SMALL_STATE(3962)] = 185563, - [SMALL_STATE(3963)] = 185623, - [SMALL_STATE(3964)] = 185681, - [SMALL_STATE(3965)] = 185739, - [SMALL_STATE(3966)] = 185795, - [SMALL_STATE(3967)] = 185855, - [SMALL_STATE(3968)] = 185913, - [SMALL_STATE(3969)] = 185971, - [SMALL_STATE(3970)] = 186029, - [SMALL_STATE(3971)] = 186089, - [SMALL_STATE(3972)] = 186143, - [SMALL_STATE(3973)] = 186219, - [SMALL_STATE(3974)] = 186277, - [SMALL_STATE(3975)] = 186335, - [SMALL_STATE(3976)] = 186393, - [SMALL_STATE(3977)] = 186453, - [SMALL_STATE(3978)] = 186511, - [SMALL_STATE(3979)] = 186565, - [SMALL_STATE(3980)] = 186619, - [SMALL_STATE(3981)] = 186675, - [SMALL_STATE(3982)] = 186733, - [SMALL_STATE(3983)] = 186793, - [SMALL_STATE(3984)] = 186851, - [SMALL_STATE(3985)] = 186907, - [SMALL_STATE(3986)] = 186961, - [SMALL_STATE(3987)] = 187021, - [SMALL_STATE(3988)] = 187077, - [SMALL_STATE(3989)] = 187137, - [SMALL_STATE(3990)] = 187197, - [SMALL_STATE(3991)] = 187257, - [SMALL_STATE(3992)] = 187317, - [SMALL_STATE(3993)] = 187375, - [SMALL_STATE(3994)] = 187435, - [SMALL_STATE(3995)] = 187495, - [SMALL_STATE(3996)] = 187571, - [SMALL_STATE(3997)] = 187647, - [SMALL_STATE(3998)] = 187707, - [SMALL_STATE(3999)] = 187783, - [SMALL_STATE(4000)] = 187859, + [SMALL_STATE(3955)] = 185153, + [SMALL_STATE(3956)] = 185229, + [SMALL_STATE(3957)] = 185305, + [SMALL_STATE(3958)] = 185381, + [SMALL_STATE(3959)] = 185437, + [SMALL_STATE(3960)] = 185495, + [SMALL_STATE(3961)] = 185555, + [SMALL_STATE(3962)] = 185631, + [SMALL_STATE(3963)] = 185689, + [SMALL_STATE(3964)] = 185749, + [SMALL_STATE(3965)] = 185803, + [SMALL_STATE(3966)] = 185857, + [SMALL_STATE(3967)] = 185913, + [SMALL_STATE(3968)] = 185971, + [SMALL_STATE(3969)] = 186029, + [SMALL_STATE(3970)] = 186087, + [SMALL_STATE(3971)] = 186147, + [SMALL_STATE(3972)] = 186207, + [SMALL_STATE(3973)] = 186263, + [SMALL_STATE(3974)] = 186317, + [SMALL_STATE(3975)] = 186371, + [SMALL_STATE(3976)] = 186427, + [SMALL_STATE(3977)] = 186487, + [SMALL_STATE(3978)] = 186543, + [SMALL_STATE(3979)] = 186603, + [SMALL_STATE(3980)] = 186663, + [SMALL_STATE(3981)] = 186721, + [SMALL_STATE(3982)] = 186781, + [SMALL_STATE(3983)] = 186841, + [SMALL_STATE(3984)] = 186917, + [SMALL_STATE(3985)] = 186975, + [SMALL_STATE(3986)] = 187033, + [SMALL_STATE(3987)] = 187093, + [SMALL_STATE(3988)] = 187153, + [SMALL_STATE(3989)] = 187229, + [SMALL_STATE(3990)] = 187289, + [SMALL_STATE(3991)] = 187349, + [SMALL_STATE(3992)] = 187407, + [SMALL_STATE(3993)] = 187465, + [SMALL_STATE(3994)] = 187525, + [SMALL_STATE(3995)] = 187583, + [SMALL_STATE(3996)] = 187643, + [SMALL_STATE(3997)] = 187701, + [SMALL_STATE(3998)] = 187757, + [SMALL_STATE(3999)] = 187815, + [SMALL_STATE(4000)] = 187875, [SMALL_STATE(4001)] = 187935, - [SMALL_STATE(4002)] = 187988, - [SMALL_STATE(4003)] = 188045, - [SMALL_STATE(4004)] = 188098, - [SMALL_STATE(4005)] = 188151, - [SMALL_STATE(4006)] = 188208, - [SMALL_STATE(4007)] = 188263, - [SMALL_STATE(4008)] = 188318, - [SMALL_STATE(4009)] = 188371, - [SMALL_STATE(4010)] = 188426, - [SMALL_STATE(4011)] = 188481, - [SMALL_STATE(4012)] = 188536, - [SMALL_STATE(4013)] = 188589, - [SMALL_STATE(4014)] = 188644, - [SMALL_STATE(4015)] = 188699, - [SMALL_STATE(4016)] = 188754, - [SMALL_STATE(4017)] = 188809, - [SMALL_STATE(4018)] = 188866, - [SMALL_STATE(4019)] = 188919, - [SMALL_STATE(4020)] = 188976, - [SMALL_STATE(4021)] = 189031, - [SMALL_STATE(4022)] = 189088, - [SMALL_STATE(4023)] = 189143, - [SMALL_STATE(4024)] = 189196, - [SMALL_STATE(4025)] = 189249, - [SMALL_STATE(4026)] = 189304, - [SMALL_STATE(4027)] = 189361, - [SMALL_STATE(4028)] = 189418, - [SMALL_STATE(4029)] = 189473, - [SMALL_STATE(4030)] = 189528, - [SMALL_STATE(4031)] = 189585, - [SMALL_STATE(4032)] = 189638, - [SMALL_STATE(4033)] = 189693, - [SMALL_STATE(4034)] = 189768, - [SMALL_STATE(4035)] = 189821, - [SMALL_STATE(4036)] = 189876, - [SMALL_STATE(4037)] = 189931, - [SMALL_STATE(4038)] = 189986, - [SMALL_STATE(4039)] = 190039, + [SMALL_STATE(4002)] = 187992, + [SMALL_STATE(4003)] = 188067, + [SMALL_STATE(4004)] = 188120, + [SMALL_STATE(4005)] = 188173, + [SMALL_STATE(4006)] = 188226, + [SMALL_STATE(4007)] = 188279, + [SMALL_STATE(4008)] = 188336, + [SMALL_STATE(4009)] = 188389, + [SMALL_STATE(4010)] = 188464, + [SMALL_STATE(4011)] = 188519, + [SMALL_STATE(4012)] = 188574, + [SMALL_STATE(4013)] = 188629, + [SMALL_STATE(4014)] = 188684, + [SMALL_STATE(4015)] = 188737, + [SMALL_STATE(4016)] = 188794, + [SMALL_STATE(4017)] = 188849, + [SMALL_STATE(4018)] = 188906, + [SMALL_STATE(4019)] = 188959, + [SMALL_STATE(4020)] = 189016, + [SMALL_STATE(4021)] = 189071, + [SMALL_STATE(4022)] = 189128, + [SMALL_STATE(4023)] = 189183, + [SMALL_STATE(4024)] = 189238, + [SMALL_STATE(4025)] = 189293, + [SMALL_STATE(4026)] = 189346, + [SMALL_STATE(4027)] = 189401, + [SMALL_STATE(4028)] = 189456, + [SMALL_STATE(4029)] = 189513, + [SMALL_STATE(4030)] = 189568, + [SMALL_STATE(4031)] = 189623, + [SMALL_STATE(4032)] = 189678, + [SMALL_STATE(4033)] = 189733, + [SMALL_STATE(4034)] = 189788, + [SMALL_STATE(4035)] = 189843, + [SMALL_STATE(4036)] = 189900, + [SMALL_STATE(4037)] = 189955, + [SMALL_STATE(4038)] = 190008, + [SMALL_STATE(4039)] = 190061, [SMALL_STATE(4040)] = 190114, - [SMALL_STATE(4041)] = 190189, - [SMALL_STATE(4042)] = 190242, - [SMALL_STATE(4043)] = 190297, - [SMALL_STATE(4044)] = 190372, - [SMALL_STATE(4045)] = 190429, - [SMALL_STATE(4046)] = 190504, - [SMALL_STATE(4047)] = 190579, - [SMALL_STATE(4048)] = 190632, - [SMALL_STATE(4049)] = 190685, - [SMALL_STATE(4050)] = 190758, - [SMALL_STATE(4051)] = 190841, - [SMALL_STATE(4052)] = 190894, - [SMALL_STATE(4053)] = 190951, - [SMALL_STATE(4054)] = 191008, - [SMALL_STATE(4055)] = 191081, + [SMALL_STATE(4041)] = 190197, + [SMALL_STATE(4042)] = 190254, + [SMALL_STATE(4043)] = 190311, + [SMALL_STATE(4044)] = 190384, + [SMALL_STATE(4045)] = 190441, + [SMALL_STATE(4046)] = 190516, + [SMALL_STATE(4047)] = 190569, + [SMALL_STATE(4048)] = 190644, + [SMALL_STATE(4049)] = 190697, + [SMALL_STATE(4050)] = 190752, + [SMALL_STATE(4051)] = 190825, + [SMALL_STATE(4052)] = 190900, + [SMALL_STATE(4053)] = 190975, + [SMALL_STATE(4054)] = 191028, + [SMALL_STATE(4055)] = 191083, [SMALL_STATE(4056)] = 191136, [SMALL_STATE(4057)] = 191191, - [SMALL_STATE(4058)] = 191248, + [SMALL_STATE(4058)] = 191246, [SMALL_STATE(4059)] = 191303, - [SMALL_STATE(4060)] = 191385, - [SMALL_STATE(4061)] = 191437, - [SMALL_STATE(4062)] = 191489, - [SMALL_STATE(4063)] = 191541, - [SMALL_STATE(4064)] = 191593, - [SMALL_STATE(4065)] = 191645, - [SMALL_STATE(4066)] = 191697, - [SMALL_STATE(4067)] = 191749, - [SMALL_STATE(4068)] = 191801, - [SMALL_STATE(4069)] = 191853, - [SMALL_STATE(4070)] = 191905, - [SMALL_STATE(4071)] = 191957, - [SMALL_STATE(4072)] = 192009, - [SMALL_STATE(4073)] = 192061, - [SMALL_STATE(4074)] = 192113, - [SMALL_STATE(4075)] = 192165, - [SMALL_STATE(4076)] = 192217, - [SMALL_STATE(4077)] = 192269, - [SMALL_STATE(4078)] = 192321, - [SMALL_STATE(4079)] = 192373, - [SMALL_STATE(4080)] = 192429, - [SMALL_STATE(4081)] = 192481, - [SMALL_STATE(4082)] = 192533, - [SMALL_STATE(4083)] = 192585, - [SMALL_STATE(4084)] = 192639, - [SMALL_STATE(4085)] = 192691, - [SMALL_STATE(4086)] = 192743, - [SMALL_STATE(4087)] = 192797, - [SMALL_STATE(4088)] = 192849, - [SMALL_STATE(4089)] = 192907, - [SMALL_STATE(4090)] = 192961, - [SMALL_STATE(4091)] = 193013, - [SMALL_STATE(4092)] = 193071, - [SMALL_STATE(4093)] = 193123, - [SMALL_STATE(4094)] = 193179, - [SMALL_STATE(4095)] = 193231, - [SMALL_STATE(4096)] = 193283, - [SMALL_STATE(4097)] = 193335, - [SMALL_STATE(4098)] = 193387, - [SMALL_STATE(4099)] = 193443, - [SMALL_STATE(4100)] = 193495, - [SMALL_STATE(4101)] = 193553, - [SMALL_STATE(4102)] = 193605, - [SMALL_STATE(4103)] = 193657, - [SMALL_STATE(4104)] = 193713, - [SMALL_STATE(4105)] = 193767, - [SMALL_STATE(4106)] = 193821, + [SMALL_STATE(4060)] = 191355, + [SMALL_STATE(4061)] = 191407, + [SMALL_STATE(4062)] = 191459, + [SMALL_STATE(4063)] = 191511, + [SMALL_STATE(4064)] = 191563, + [SMALL_STATE(4065)] = 191615, + [SMALL_STATE(4066)] = 191667, + [SMALL_STATE(4067)] = 191719, + [SMALL_STATE(4068)] = 191771, + [SMALL_STATE(4069)] = 191823, + [SMALL_STATE(4070)] = 191875, + [SMALL_STATE(4071)] = 191927, + [SMALL_STATE(4072)] = 192005, + [SMALL_STATE(4073)] = 192057, + [SMALL_STATE(4074)] = 192109, + [SMALL_STATE(4075)] = 192161, + [SMALL_STATE(4076)] = 192213, + [SMALL_STATE(4077)] = 192265, + [SMALL_STATE(4078)] = 192317, + [SMALL_STATE(4079)] = 192369, + [SMALL_STATE(4080)] = 192421, + [SMALL_STATE(4081)] = 192473, + [SMALL_STATE(4082)] = 192525, + [SMALL_STATE(4083)] = 192577, + [SMALL_STATE(4084)] = 192629, + [SMALL_STATE(4085)] = 192681, + [SMALL_STATE(4086)] = 192733, + [SMALL_STATE(4087)] = 192785, + [SMALL_STATE(4088)] = 192837, + [SMALL_STATE(4089)] = 192889, + [SMALL_STATE(4090)] = 192941, + [SMALL_STATE(4091)] = 192993, + [SMALL_STATE(4092)] = 193057, + [SMALL_STATE(4093)] = 193109, + [SMALL_STATE(4094)] = 193161, + [SMALL_STATE(4095)] = 193213, + [SMALL_STATE(4096)] = 193265, + [SMALL_STATE(4097)] = 193317, + [SMALL_STATE(4098)] = 193369, + [SMALL_STATE(4099)] = 193421, + [SMALL_STATE(4100)] = 193473, + [SMALL_STATE(4101)] = 193525, + [SMALL_STATE(4102)] = 193577, + [SMALL_STATE(4103)] = 193629, + [SMALL_STATE(4104)] = 193681, + [SMALL_STATE(4105)] = 193753, + [SMALL_STATE(4106)] = 193825, [SMALL_STATE(4107)] = 193877, [SMALL_STATE(4108)] = 193929, - [SMALL_STATE(4109)] = 193983, - [SMALL_STATE(4110)] = 194035, - [SMALL_STATE(4111)] = 194087, - [SMALL_STATE(4112)] = 194139, + [SMALL_STATE(4109)] = 193981, + [SMALL_STATE(4110)] = 194033, + [SMALL_STATE(4111)] = 194089, + [SMALL_STATE(4112)] = 194141, [SMALL_STATE(4113)] = 194193, - [SMALL_STATE(4114)] = 194245, - [SMALL_STATE(4115)] = 194297, - [SMALL_STATE(4116)] = 194349, - [SMALL_STATE(4117)] = 194405, - [SMALL_STATE(4118)] = 194457, - [SMALL_STATE(4119)] = 194509, - [SMALL_STATE(4120)] = 194561, - [SMALL_STATE(4121)] = 194617, - [SMALL_STATE(4122)] = 194669, - [SMALL_STATE(4123)] = 194723, - [SMALL_STATE(4124)] = 194775, - [SMALL_STATE(4125)] = 194827, - [SMALL_STATE(4126)] = 194881, - [SMALL_STATE(4127)] = 194933, - [SMALL_STATE(4128)] = 194985, - [SMALL_STATE(4129)] = 195037, - [SMALL_STATE(4130)] = 195089, - [SMALL_STATE(4131)] = 195141, - [SMALL_STATE(4132)] = 195193, - [SMALL_STATE(4133)] = 195247, - [SMALL_STATE(4134)] = 195301, - [SMALL_STATE(4135)] = 195355, - [SMALL_STATE(4136)] = 195409, - [SMALL_STATE(4137)] = 195461, - [SMALL_STATE(4138)] = 195517, - [SMALL_STATE(4139)] = 195569, - [SMALL_STATE(4140)] = 195621, - [SMALL_STATE(4141)] = 195691, - [SMALL_STATE(4142)] = 195761, - [SMALL_STATE(4143)] = 195831, - [SMALL_STATE(4144)] = 195901, - [SMALL_STATE(4145)] = 195971, - [SMALL_STATE(4146)] = 196025, - [SMALL_STATE(4147)] = 196077, - [SMALL_STATE(4148)] = 196129, - [SMALL_STATE(4149)] = 196199, - [SMALL_STATE(4150)] = 196251, - [SMALL_STATE(4151)] = 196321, - [SMALL_STATE(4152)] = 196391, - [SMALL_STATE(4153)] = 196443, - [SMALL_STATE(4154)] = 196495, - [SMALL_STATE(4155)] = 196547, - [SMALL_STATE(4156)] = 196599, - [SMALL_STATE(4157)] = 196651, - [SMALL_STATE(4158)] = 196703, - [SMALL_STATE(4159)] = 196755, - [SMALL_STATE(4160)] = 196809, - [SMALL_STATE(4161)] = 196861, - [SMALL_STATE(4162)] = 196913, - [SMALL_STATE(4163)] = 196965, - [SMALL_STATE(4164)] = 197017, - [SMALL_STATE(4165)] = 197087, - [SMALL_STATE(4166)] = 197151, - [SMALL_STATE(4167)] = 197203, - [SMALL_STATE(4168)] = 197273, - [SMALL_STATE(4169)] = 197325, - [SMALL_STATE(4170)] = 197377, - [SMALL_STATE(4171)] = 197447, - [SMALL_STATE(4172)] = 197517, - [SMALL_STATE(4173)] = 197569, - [SMALL_STATE(4174)] = 197621, - [SMALL_STATE(4175)] = 197673, - [SMALL_STATE(4176)] = 197725, - [SMALL_STATE(4177)] = 197797, - [SMALL_STATE(4178)] = 197869, - [SMALL_STATE(4179)] = 197931, - [SMALL_STATE(4180)] = 197983, - [SMALL_STATE(4181)] = 198061, - [SMALL_STATE(4182)] = 198113, - [SMALL_STATE(4183)] = 198165, - [SMALL_STATE(4184)] = 198217, - [SMALL_STATE(4185)] = 198269, - [SMALL_STATE(4186)] = 198321, - [SMALL_STATE(4187)] = 198375, - [SMALL_STATE(4188)] = 198427, - [SMALL_STATE(4189)] = 198479, - [SMALL_STATE(4190)] = 198531, - [SMALL_STATE(4191)] = 198583, - [SMALL_STATE(4192)] = 198635, - [SMALL_STATE(4193)] = 198687, - [SMALL_STATE(4194)] = 198739, - [SMALL_STATE(4195)] = 198803, - [SMALL_STATE(4196)] = 198855, - [SMALL_STATE(4197)] = 198911, - [SMALL_STATE(4198)] = 198963, - [SMALL_STATE(4199)] = 199015, - [SMALL_STATE(4200)] = 199067, - [SMALL_STATE(4201)] = 199119, - [SMALL_STATE(4202)] = 199171, - [SMALL_STATE(4203)] = 199223, - [SMALL_STATE(4204)] = 199275, - [SMALL_STATE(4205)] = 199327, - [SMALL_STATE(4206)] = 199379, - [SMALL_STATE(4207)] = 199433, - [SMALL_STATE(4208)] = 199487, - [SMALL_STATE(4209)] = 199541, - [SMALL_STATE(4210)] = 199595, - [SMALL_STATE(4211)] = 199649, - [SMALL_STATE(4212)] = 199701, - [SMALL_STATE(4213)] = 199765, - [SMALL_STATE(4214)] = 199817, - [SMALL_STATE(4215)] = 199869, - [SMALL_STATE(4216)] = 199921, - [SMALL_STATE(4217)] = 199973, - [SMALL_STATE(4218)] = 200029, - [SMALL_STATE(4219)] = 200081, - [SMALL_STATE(4220)] = 200133, - [SMALL_STATE(4221)] = 200185, - [SMALL_STATE(4222)] = 200237, + [SMALL_STATE(4114)] = 194249, + [SMALL_STATE(4115)] = 194307, + [SMALL_STATE(4116)] = 194359, + [SMALL_STATE(4117)] = 194411, + [SMALL_STATE(4118)] = 194463, + [SMALL_STATE(4119)] = 194517, + [SMALL_STATE(4120)] = 194569, + [SMALL_STATE(4121)] = 194623, + [SMALL_STATE(4122)] = 194675, + [SMALL_STATE(4123)] = 194727, + [SMALL_STATE(4124)] = 194781, + [SMALL_STATE(4125)] = 194833, + [SMALL_STATE(4126)] = 194887, + [SMALL_STATE(4127)] = 194939, + [SMALL_STATE(4128)] = 194993, + [SMALL_STATE(4129)] = 195047, + [SMALL_STATE(4130)] = 195099, + [SMALL_STATE(4131)] = 195151, + [SMALL_STATE(4132)] = 195205, + [SMALL_STATE(4133)] = 195261, + [SMALL_STATE(4134)] = 195317, + [SMALL_STATE(4135)] = 195373, + [SMALL_STATE(4136)] = 195427, + [SMALL_STATE(4137)] = 195491, + [SMALL_STATE(4138)] = 195547, + [SMALL_STATE(4139)] = 195605, + [SMALL_STATE(4140)] = 195661, + [SMALL_STATE(4141)] = 195713, + [SMALL_STATE(4142)] = 195795, + [SMALL_STATE(4143)] = 195847, + [SMALL_STATE(4144)] = 195899, + [SMALL_STATE(4145)] = 195953, + [SMALL_STATE(4146)] = 196005, + [SMALL_STATE(4147)] = 196067, + [SMALL_STATE(4148)] = 196121, + [SMALL_STATE(4149)] = 196179, + [SMALL_STATE(4150)] = 196235, + [SMALL_STATE(4151)] = 196287, + [SMALL_STATE(4152)] = 196341, + [SMALL_STATE(4153)] = 196397, + [SMALL_STATE(4154)] = 196449, + [SMALL_STATE(4155)] = 196501, + [SMALL_STATE(4156)] = 196557, + [SMALL_STATE(4157)] = 196609, + [SMALL_STATE(4158)] = 196661, + [SMALL_STATE(4159)] = 196713, + [SMALL_STATE(4160)] = 196765, + [SMALL_STATE(4161)] = 196817, + [SMALL_STATE(4162)] = 196869, + [SMALL_STATE(4163)] = 196923, + [SMALL_STATE(4164)] = 196975, + [SMALL_STATE(4165)] = 197027, + [SMALL_STATE(4166)] = 197079, + [SMALL_STATE(4167)] = 197131, + [SMALL_STATE(4168)] = 197183, + [SMALL_STATE(4169)] = 197235, + [SMALL_STATE(4170)] = 197287, + [SMALL_STATE(4171)] = 197339, + [SMALL_STATE(4172)] = 197391, + [SMALL_STATE(4173)] = 197443, + [SMALL_STATE(4174)] = 197497, + [SMALL_STATE(4175)] = 197549, + [SMALL_STATE(4176)] = 197601, + [SMALL_STATE(4177)] = 197653, + [SMALL_STATE(4178)] = 197705, + [SMALL_STATE(4179)] = 197759, + [SMALL_STATE(4180)] = 197813, + [SMALL_STATE(4181)] = 197867, + [SMALL_STATE(4182)] = 197921, + [SMALL_STATE(4183)] = 197973, + [SMALL_STATE(4184)] = 198025, + [SMALL_STATE(4185)] = 198077, + [SMALL_STATE(4186)] = 198129, + [SMALL_STATE(4187)] = 198181, + [SMALL_STATE(4188)] = 198233, + [SMALL_STATE(4189)] = 198285, + [SMALL_STATE(4190)] = 198337, + [SMALL_STATE(4191)] = 198391, + [SMALL_STATE(4192)] = 198443, + [SMALL_STATE(4193)] = 198495, + [SMALL_STATE(4194)] = 198547, + [SMALL_STATE(4195)] = 198599, + [SMALL_STATE(4196)] = 198651, + [SMALL_STATE(4197)] = 198703, + [SMALL_STATE(4198)] = 198755, + [SMALL_STATE(4199)] = 198807, + [SMALL_STATE(4200)] = 198859, + [SMALL_STATE(4201)] = 198913, + [SMALL_STATE(4202)] = 198965, + [SMALL_STATE(4203)] = 199019, + [SMALL_STATE(4204)] = 199071, + [SMALL_STATE(4205)] = 199123, + [SMALL_STATE(4206)] = 199175, + [SMALL_STATE(4207)] = 199227, + [SMALL_STATE(4208)] = 199297, + [SMALL_STATE(4209)] = 199367, + [SMALL_STATE(4210)] = 199437, + [SMALL_STATE(4211)] = 199507, + [SMALL_STATE(4212)] = 199577, + [SMALL_STATE(4213)] = 199647, + [SMALL_STATE(4214)] = 199717, + [SMALL_STATE(4215)] = 199787, + [SMALL_STATE(4216)] = 199857, + [SMALL_STATE(4217)] = 199927, + [SMALL_STATE(4218)] = 199997, + [SMALL_STATE(4219)] = 200067, + [SMALL_STATE(4220)] = 200119, + [SMALL_STATE(4221)] = 200171, + [SMALL_STATE(4222)] = 200225, [SMALL_STATE(4223)] = 200289, - [SMALL_STATE(4224)] = 200344, - [SMALL_STATE(4225)] = 200395, - [SMALL_STATE(4226)] = 200446, - [SMALL_STATE(4227)] = 200497, - [SMALL_STATE(4228)] = 200548, - [SMALL_STATE(4229)] = 200599, - [SMALL_STATE(4230)] = 200654, - [SMALL_STATE(4231)] = 200705, - [SMALL_STATE(4232)] = 200756, - [SMALL_STATE(4233)] = 200811, - [SMALL_STATE(4234)] = 200862, - [SMALL_STATE(4235)] = 200913, - [SMALL_STATE(4236)] = 200968, - [SMALL_STATE(4237)] = 201019, - [SMALL_STATE(4238)] = 201070, - [SMALL_STATE(4239)] = 201127, - [SMALL_STATE(4240)] = 201178, - [SMALL_STATE(4241)] = 201235, - [SMALL_STATE(4242)] = 201286, - [SMALL_STATE(4243)] = 201341, - [SMALL_STATE(4244)] = 201396, - [SMALL_STATE(4245)] = 201447, - [SMALL_STATE(4246)] = 201502, - [SMALL_STATE(4247)] = 201559, - [SMALL_STATE(4248)] = 201616, - [SMALL_STATE(4249)] = 201667, - [SMALL_STATE(4250)] = 201718, - [SMALL_STATE(4251)] = 201775, - [SMALL_STATE(4252)] = 201826, - [SMALL_STATE(4253)] = 201877, - [SMALL_STATE(4254)] = 201928, - [SMALL_STATE(4255)] = 201979, - [SMALL_STATE(4256)] = 202030, - [SMALL_STATE(4257)] = 202081, - [SMALL_STATE(4258)] = 202132, - [SMALL_STATE(4259)] = 202183, - [SMALL_STATE(4260)] = 202238, - [SMALL_STATE(4261)] = 202295, - [SMALL_STATE(4262)] = 202346, - [SMALL_STATE(4263)] = 202397, - [SMALL_STATE(4264)] = 202474, - [SMALL_STATE(4265)] = 202525, - [SMALL_STATE(4266)] = 202576, - [SMALL_STATE(4267)] = 202631, - [SMALL_STATE(4268)] = 202682, - [SMALL_STATE(4269)] = 202739, - [SMALL_STATE(4270)] = 202790, - [SMALL_STATE(4271)] = 202847, - [SMALL_STATE(4272)] = 202904, - [SMALL_STATE(4273)] = 202955, - [SMALL_STATE(4274)] = 203006, - [SMALL_STATE(4275)] = 203057, - [SMALL_STATE(4276)] = 203108, - [SMALL_STATE(4277)] = 203163, - [SMALL_STATE(4278)] = 203218, - [SMALL_STATE(4279)] = 203273, - [SMALL_STATE(4280)] = 203328, - [SMALL_STATE(4281)] = 203381, - [SMALL_STATE(4282)] = 203432, - [SMALL_STATE(4283)] = 203483, - [SMALL_STATE(4284)] = 203534, - [SMALL_STATE(4285)] = 203585, - [SMALL_STATE(4286)] = 203636, - [SMALL_STATE(4287)] = 203687, - [SMALL_STATE(4288)] = 203738, - [SMALL_STATE(4289)] = 203789, - [SMALL_STATE(4290)] = 203840, - [SMALL_STATE(4291)] = 203891, - [SMALL_STATE(4292)] = 203942, - [SMALL_STATE(4293)] = 203993, - [SMALL_STATE(4294)] = 204044, - [SMALL_STATE(4295)] = 204095, - [SMALL_STATE(4296)] = 204146, - [SMALL_STATE(4297)] = 204201, - [SMALL_STATE(4298)] = 204252, - [SMALL_STATE(4299)] = 204305, - [SMALL_STATE(4300)] = 204358, - [SMALL_STATE(4301)] = 204409, - [SMALL_STATE(4302)] = 204462, - [SMALL_STATE(4303)] = 204513, - [SMALL_STATE(4304)] = 204570, - [SMALL_STATE(4305)] = 204621, - [SMALL_STATE(4306)] = 204672, - [SMALL_STATE(4307)] = 204723, - [SMALL_STATE(4308)] = 204774, - [SMALL_STATE(4309)] = 204825, - [SMALL_STATE(4310)] = 204876, - [SMALL_STATE(4311)] = 204927, - [SMALL_STATE(4312)] = 204978, - [SMALL_STATE(4313)] = 205033, - [SMALL_STATE(4314)] = 205084, - [SMALL_STATE(4315)] = 205141, - [SMALL_STATE(4316)] = 205192, - [SMALL_STATE(4317)] = 205243, - [SMALL_STATE(4318)] = 205296, - [SMALL_STATE(4319)] = 205347, + [SMALL_STATE(4224)] = 200340, + [SMALL_STATE(4225)] = 200393, + [SMALL_STATE(4226)] = 200444, + [SMALL_STATE(4227)] = 200495, + [SMALL_STATE(4228)] = 200546, + [SMALL_STATE(4229)] = 200597, + [SMALL_STATE(4230)] = 200648, + [SMALL_STATE(4231)] = 200699, + [SMALL_STATE(4232)] = 200750, + [SMALL_STATE(4233)] = 200801, + [SMALL_STATE(4234)] = 200856, + [SMALL_STATE(4235)] = 200907, + [SMALL_STATE(4236)] = 200958, + [SMALL_STATE(4237)] = 201009, + [SMALL_STATE(4238)] = 201060, + [SMALL_STATE(4239)] = 201111, + [SMALL_STATE(4240)] = 201162, + [SMALL_STATE(4241)] = 201213, + [SMALL_STATE(4242)] = 201264, + [SMALL_STATE(4243)] = 201315, + [SMALL_STATE(4244)] = 201366, + [SMALL_STATE(4245)] = 201417, + [SMALL_STATE(4246)] = 201468, + [SMALL_STATE(4247)] = 201525, + [SMALL_STATE(4248)] = 201576, + [SMALL_STATE(4249)] = 201627, + [SMALL_STATE(4250)] = 201678, + [SMALL_STATE(4251)] = 201729, + [SMALL_STATE(4252)] = 201786, + [SMALL_STATE(4253)] = 201839, + [SMALL_STATE(4254)] = 201892, + [SMALL_STATE(4255)] = 201943, + [SMALL_STATE(4256)] = 201994, + [SMALL_STATE(4257)] = 202045, + [SMALL_STATE(4258)] = 202096, + [SMALL_STATE(4259)] = 202147, + [SMALL_STATE(4260)] = 202198, + [SMALL_STATE(4261)] = 202249, + [SMALL_STATE(4262)] = 202300, + [SMALL_STATE(4263)] = 202351, + [SMALL_STATE(4264)] = 202402, + [SMALL_STATE(4265)] = 202453, + [SMALL_STATE(4266)] = 202504, + [SMALL_STATE(4267)] = 202555, + [SMALL_STATE(4268)] = 202606, + [SMALL_STATE(4269)] = 202655, + [SMALL_STATE(4270)] = 202706, + [SMALL_STATE(4271)] = 202757, + [SMALL_STATE(4272)] = 202808, + [SMALL_STATE(4273)] = 202863, + [SMALL_STATE(4274)] = 202918, + [SMALL_STATE(4275)] = 202969, + [SMALL_STATE(4276)] = 203020, + [SMALL_STATE(4277)] = 203071, + [SMALL_STATE(4278)] = 203126, + [SMALL_STATE(4279)] = 203181, + [SMALL_STATE(4280)] = 203234, + [SMALL_STATE(4281)] = 203285, + [SMALL_STATE(4282)] = 203336, + [SMALL_STATE(4283)] = 203387, + [SMALL_STATE(4284)] = 203438, + [SMALL_STATE(4285)] = 203489, + [SMALL_STATE(4286)] = 203540, + [SMALL_STATE(4287)] = 203595, + [SMALL_STATE(4288)] = 203648, + [SMALL_STATE(4289)] = 203699, + [SMALL_STATE(4290)] = 203752, + [SMALL_STATE(4291)] = 203807, + [SMALL_STATE(4292)] = 203862, + [SMALL_STATE(4293)] = 203913, + [SMALL_STATE(4294)] = 203964, + [SMALL_STATE(4295)] = 204019, + [SMALL_STATE(4296)] = 204070, + [SMALL_STATE(4297)] = 204121, + [SMALL_STATE(4298)] = 204172, + [SMALL_STATE(4299)] = 204227, + [SMALL_STATE(4300)] = 204278, + [SMALL_STATE(4301)] = 204329, + [SMALL_STATE(4302)] = 204380, + [SMALL_STATE(4303)] = 204431, + [SMALL_STATE(4304)] = 204482, + [SMALL_STATE(4305)] = 204533, + [SMALL_STATE(4306)] = 204584, + [SMALL_STATE(4307)] = 204639, + [SMALL_STATE(4308)] = 204690, + [SMALL_STATE(4309)] = 204745, + [SMALL_STATE(4310)] = 204796, + [SMALL_STATE(4311)] = 204847, + [SMALL_STATE(4312)] = 204902, + [SMALL_STATE(4313)] = 204959, + [SMALL_STATE(4314)] = 205014, + [SMALL_STATE(4315)] = 205065, + [SMALL_STATE(4316)] = 205122, + [SMALL_STATE(4317)] = 205191, + [SMALL_STATE(4318)] = 205260, + [SMALL_STATE(4319)] = 205329, [SMALL_STATE(4320)] = 205398, - [SMALL_STATE(4321)] = 205449, - [SMALL_STATE(4322)] = 205500, - [SMALL_STATE(4323)] = 205551, - [SMALL_STATE(4324)] = 205602, - [SMALL_STATE(4325)] = 205655, - [SMALL_STATE(4326)] = 205712, - [SMALL_STATE(4327)] = 205763, - [SMALL_STATE(4328)] = 205814, - [SMALL_STATE(4329)] = 205865, - [SMALL_STATE(4330)] = 205942, - [SMALL_STATE(4331)] = 205993, - [SMALL_STATE(4332)] = 206044, - [SMALL_STATE(4333)] = 206095, - [SMALL_STATE(4334)] = 206152, - [SMALL_STATE(4335)] = 206203, - [SMALL_STATE(4336)] = 206258, - [SMALL_STATE(4337)] = 206309, - [SMALL_STATE(4338)] = 206360, - [SMALL_STATE(4339)] = 206411, - [SMALL_STATE(4340)] = 206462, - [SMALL_STATE(4341)] = 206513, - [SMALL_STATE(4342)] = 206564, - [SMALL_STATE(4343)] = 206615, - [SMALL_STATE(4344)] = 206666, - [SMALL_STATE(4345)] = 206717, - [SMALL_STATE(4346)] = 206768, - [SMALL_STATE(4347)] = 206819, - [SMALL_STATE(4348)] = 206872, - [SMALL_STATE(4349)] = 206923, - [SMALL_STATE(4350)] = 206974, - [SMALL_STATE(4351)] = 207027, - [SMALL_STATE(4352)] = 207078, - [SMALL_STATE(4353)] = 207133, - [SMALL_STATE(4354)] = 207188, - [SMALL_STATE(4355)] = 207245, - [SMALL_STATE(4356)] = 207314, - [SMALL_STATE(4357)] = 207383, - [SMALL_STATE(4358)] = 207434, - [SMALL_STATE(4359)] = 207489, - [SMALL_STATE(4360)] = 207558, - [SMALL_STATE(4361)] = 207627, - [SMALL_STATE(4362)] = 207676, - [SMALL_STATE(4363)] = 207733, - [SMALL_STATE(4364)] = 207784, - [SMALL_STATE(4365)] = 207835, - [SMALL_STATE(4366)] = 207886, - [SMALL_STATE(4367)] = 207937, - [SMALL_STATE(4368)] = 207988, - [SMALL_STATE(4369)] = 208039, - [SMALL_STATE(4370)] = 208090, - [SMALL_STATE(4371)] = 208141, - [SMALL_STATE(4372)] = 208192, - [SMALL_STATE(4373)] = 208243, - [SMALL_STATE(4374)] = 208294, - [SMALL_STATE(4375)] = 208345, - [SMALL_STATE(4376)] = 208402, - [SMALL_STATE(4377)] = 208453, - [SMALL_STATE(4378)] = 208504, - [SMALL_STATE(4379)] = 208555, - [SMALL_STATE(4380)] = 208624, - [SMALL_STATE(4381)] = 208693, - [SMALL_STATE(4382)] = 208762, - [SMALL_STATE(4383)] = 208831, - [SMALL_STATE(4384)] = 208882, - [SMALL_STATE(4385)] = 208951, - [SMALL_STATE(4386)] = 209020, - [SMALL_STATE(4387)] = 209073, - [SMALL_STATE(4388)] = 209142, - [SMALL_STATE(4389)] = 209211, - [SMALL_STATE(4390)] = 209264, + [SMALL_STATE(4321)] = 205455, + [SMALL_STATE(4322)] = 205506, + [SMALL_STATE(4323)] = 205563, + [SMALL_STATE(4324)] = 205614, + [SMALL_STATE(4325)] = 205665, + [SMALL_STATE(4326)] = 205716, + [SMALL_STATE(4327)] = 205767, + [SMALL_STATE(4328)] = 205818, + [SMALL_STATE(4329)] = 205871, + [SMALL_STATE(4330)] = 205922, + [SMALL_STATE(4331)] = 205991, + [SMALL_STATE(4332)] = 206042, + [SMALL_STATE(4333)] = 206093, + [SMALL_STATE(4334)] = 206162, + [SMALL_STATE(4335)] = 206239, + [SMALL_STATE(4336)] = 206290, + [SMALL_STATE(4337)] = 206367, + [SMALL_STATE(4338)] = 206436, + [SMALL_STATE(4339)] = 206487, + [SMALL_STATE(4340)] = 206556, + [SMALL_STATE(4341)] = 206607, + [SMALL_STATE(4342)] = 206676, + [SMALL_STATE(4343)] = 206745, + [SMALL_STATE(4344)] = 206796, + [SMALL_STATE(4345)] = 206865, + [SMALL_STATE(4346)] = 206934, + [SMALL_STATE(4347)] = 206985, + [SMALL_STATE(4348)] = 207036, + [SMALL_STATE(4349)] = 207087, + [SMALL_STATE(4350)] = 207138, + [SMALL_STATE(4351)] = 207191, + [SMALL_STATE(4352)] = 207242, + [SMALL_STATE(4353)] = 207299, + [SMALL_STATE(4354)] = 207350, + [SMALL_STATE(4355)] = 207401, + [SMALL_STATE(4356)] = 207452, + [SMALL_STATE(4357)] = 207503, + [SMALL_STATE(4358)] = 207554, + [SMALL_STATE(4359)] = 207611, + [SMALL_STATE(4360)] = 207662, + [SMALL_STATE(4361)] = 207715, + [SMALL_STATE(4362)] = 207772, + [SMALL_STATE(4363)] = 207823, + [SMALL_STATE(4364)] = 207874, + [SMALL_STATE(4365)] = 207931, + [SMALL_STATE(4366)] = 207988, + [SMALL_STATE(4367)] = 208039, + [SMALL_STATE(4368)] = 208096, + [SMALL_STATE(4369)] = 208147, + [SMALL_STATE(4370)] = 208198, + [SMALL_STATE(4371)] = 208249, + [SMALL_STATE(4372)] = 208302, + [SMALL_STATE(4373)] = 208359, + [SMALL_STATE(4374)] = 208414, + [SMALL_STATE(4375)] = 208465, + [SMALL_STATE(4376)] = 208520, + [SMALL_STATE(4377)] = 208575, + [SMALL_STATE(4378)] = 208626, + [SMALL_STATE(4379)] = 208677, + [SMALL_STATE(4380)] = 208728, + [SMALL_STATE(4381)] = 208785, + [SMALL_STATE(4382)] = 208836, + [SMALL_STATE(4383)] = 208887, + [SMALL_STATE(4384)] = 208942, + [SMALL_STATE(4385)] = 208993, + [SMALL_STATE(4386)] = 209048, + [SMALL_STATE(4387)] = 209099, + [SMALL_STATE(4388)] = 209150, + [SMALL_STATE(4389)] = 209207, + [SMALL_STATE(4390)] = 209258, [SMALL_STATE(4391)] = 209315, [SMALL_STATE(4392)] = 209366, [SMALL_STATE(4393)] = 209418, [SMALL_STATE(4394)] = 209472, - [SMALL_STATE(4395)] = 209526, - [SMALL_STATE(4396)] = 209580, - [SMALL_STATE(4397)] = 209634, - [SMALL_STATE(4398)] = 209686, - [SMALL_STATE(4399)] = 209736, - [SMALL_STATE(4400)] = 209794, - [SMALL_STATE(4401)] = 209846, - [SMALL_STATE(4402)] = 209896, - [SMALL_STATE(4403)] = 209952, - [SMALL_STATE(4404)] = 210002, - [SMALL_STATE(4405)] = 210054, - [SMALL_STATE(4406)] = 210112, - [SMALL_STATE(4407)] = 210164, - [SMALL_STATE(4408)] = 210216, - [SMALL_STATE(4409)] = 210270, - [SMALL_STATE(4410)] = 210324, - [SMALL_STATE(4411)] = 210374, - [SMALL_STATE(4412)] = 210446, - [SMALL_STATE(4413)] = 210496, - [SMALL_STATE(4414)] = 210554, - [SMALL_STATE(4415)] = 210608, - [SMALL_STATE(4416)] = 210660, - [SMALL_STATE(4417)] = 210714, - [SMALL_STATE(4418)] = 210766, - [SMALL_STATE(4419)] = 210816, - [SMALL_STATE(4420)] = 210870, - [SMALL_STATE(4421)] = 210924, - [SMALL_STATE(4422)] = 210974, - [SMALL_STATE(4423)] = 211028, - [SMALL_STATE(4424)] = 211078, - [SMALL_STATE(4425)] = 211134, - [SMALL_STATE(4426)] = 211192, - [SMALL_STATE(4427)] = 211242, - [SMALL_STATE(4428)] = 211318, - [SMALL_STATE(4429)] = 211368, - [SMALL_STATE(4430)] = 211422, - [SMALL_STATE(4431)] = 211472, - [SMALL_STATE(4432)] = 211524, - [SMALL_STATE(4433)] = 211574, - [SMALL_STATE(4434)] = 211624, - [SMALL_STATE(4435)] = 211676, - [SMALL_STATE(4436)] = 211748, - [SMALL_STATE(4437)] = 211798, - [SMALL_STATE(4438)] = 211852, - [SMALL_STATE(4439)] = 211906, - [SMALL_STATE(4440)] = 211978, - [SMALL_STATE(4441)] = 212032, - [SMALL_STATE(4442)] = 212086, - [SMALL_STATE(4443)] = 212158, - [SMALL_STATE(4444)] = 212208, - [SMALL_STATE(4445)] = 212260, - [SMALL_STATE(4446)] = 212314, - [SMALL_STATE(4447)] = 212386, - [SMALL_STATE(4448)] = 212440, - [SMALL_STATE(4449)] = 212490, - [SMALL_STATE(4450)] = 212540, - [SMALL_STATE(4451)] = 212628, - [SMALL_STATE(4452)] = 212700, - [SMALL_STATE(4453)] = 212754, + [SMALL_STATE(4395)] = 209560, + [SMALL_STATE(4396)] = 209632, + [SMALL_STATE(4397)] = 209684, + [SMALL_STATE(4398)] = 209736, + [SMALL_STATE(4399)] = 209790, + [SMALL_STATE(4400)] = 209844, + [SMALL_STATE(4401)] = 209898, + [SMALL_STATE(4402)] = 209952, + [SMALL_STATE(4403)] = 210006, + [SMALL_STATE(4404)] = 210064, + [SMALL_STATE(4405)] = 210118, + [SMALL_STATE(4406)] = 210168, + [SMALL_STATE(4407)] = 210222, + [SMALL_STATE(4408)] = 210272, + [SMALL_STATE(4409)] = 210326, + [SMALL_STATE(4410)] = 210376, + [SMALL_STATE(4411)] = 210426, + [SMALL_STATE(4412)] = 210478, + [SMALL_STATE(4413)] = 210532, + [SMALL_STATE(4414)] = 210584, + [SMALL_STATE(4415)] = 210638, + [SMALL_STATE(4416)] = 210692, + [SMALL_STATE(4417)] = 210748, + [SMALL_STATE(4418)] = 210800, + [SMALL_STATE(4419)] = 210850, + [SMALL_STATE(4420)] = 210900, + [SMALL_STATE(4421)] = 210950, + [SMALL_STATE(4422)] = 211000, + [SMALL_STATE(4423)] = 211076, + [SMALL_STATE(4424)] = 211130, + [SMALL_STATE(4425)] = 211188, + [SMALL_STATE(4426)] = 211238, + [SMALL_STATE(4427)] = 211294, + [SMALL_STATE(4428)] = 211344, + [SMALL_STATE(4429)] = 211416, + [SMALL_STATE(4430)] = 211488, + [SMALL_STATE(4431)] = 211560, + [SMALL_STATE(4432)] = 211632, + [SMALL_STATE(4433)] = 211682, + [SMALL_STATE(4434)] = 211740, + [SMALL_STATE(4435)] = 211792, + [SMALL_STATE(4436)] = 211846, + [SMALL_STATE(4437)] = 211896, + [SMALL_STATE(4438)] = 211954, + [SMALL_STATE(4439)] = 212008, + [SMALL_STATE(4440)] = 212080, + [SMALL_STATE(4441)] = 212134, + [SMALL_STATE(4442)] = 212184, + [SMALL_STATE(4443)] = 212234, + [SMALL_STATE(4444)] = 212288, + [SMALL_STATE(4445)] = 212340, + [SMALL_STATE(4446)] = 212394, + [SMALL_STATE(4447)] = 212446, + [SMALL_STATE(4448)] = 212500, + [SMALL_STATE(4449)] = 212554, + [SMALL_STATE(4450)] = 212606, + [SMALL_STATE(4451)] = 212656, + [SMALL_STATE(4452)] = 212706, + [SMALL_STATE(4453)] = 212758, [SMALL_STATE(4454)] = 212808, [SMALL_STATE(4455)] = 212860, [SMALL_STATE(4456)] = 212910, - [SMALL_STATE(4457)] = 212961, + [SMALL_STATE(4457)] = 212963, [SMALL_STATE(4458)] = 213016, - [SMALL_STATE(4459)] = 213065, - [SMALL_STATE(4460)] = 213116, - [SMALL_STATE(4461)] = 213167, - [SMALL_STATE(4462)] = 213220, + [SMALL_STATE(4459)] = 213067, + [SMALL_STATE(4460)] = 213120, + [SMALL_STATE(4461)] = 213189, + [SMALL_STATE(4462)] = 213238, [SMALL_STATE(4463)] = 213291, - [SMALL_STATE(4464)] = 213340, - [SMALL_STATE(4465)] = 213409, - [SMALL_STATE(4466)] = 213464, - [SMALL_STATE(4467)] = 213513, - [SMALL_STATE(4468)] = 213566, - [SMALL_STATE(4469)] = 213617, - [SMALL_STATE(4470)] = 213686, - [SMALL_STATE(4471)] = 213735, - [SMALL_STATE(4472)] = 213788, - [SMALL_STATE(4473)] = 213841, - [SMALL_STATE(4474)] = 213892, - [SMALL_STATE(4475)] = 213943, - [SMALL_STATE(4476)] = 214014, - [SMALL_STATE(4477)] = 214063, - [SMALL_STATE(4478)] = 214114, - [SMALL_STATE(4479)] = 214167, - [SMALL_STATE(4480)] = 214218, - [SMALL_STATE(4481)] = 214269, - [SMALL_STATE(4482)] = 214322, - [SMALL_STATE(4483)] = 214371, - [SMALL_STATE(4484)] = 214426, - [SMALL_STATE(4485)] = 214479, - [SMALL_STATE(4486)] = 214528, - [SMALL_STATE(4487)] = 214579, - [SMALL_STATE(4488)] = 214650, - [SMALL_STATE(4489)] = 214703, - [SMALL_STATE(4490)] = 214758, - [SMALL_STATE(4491)] = 214811, - [SMALL_STATE(4492)] = 214882, - [SMALL_STATE(4493)] = 214933, - [SMALL_STATE(4494)] = 215004, - [SMALL_STATE(4495)] = 215091, - [SMALL_STATE(4496)] = 215162, - [SMALL_STATE(4497)] = 215211, - [SMALL_STATE(4498)] = 215282, - [SMALL_STATE(4499)] = 215333, - [SMALL_STATE(4500)] = 215388, - [SMALL_STATE(4501)] = 215439, - [SMALL_STATE(4502)] = 215492, - [SMALL_STATE(4503)] = 215563, - [SMALL_STATE(4504)] = 215612, - [SMALL_STATE(4505)] = 215665, - [SMALL_STATE(4506)] = 215722, - [SMALL_STATE(4507)] = 215771, - [SMALL_STATE(4508)] = 215826, - [SMALL_STATE(4509)] = 215897, - [SMALL_STATE(4510)] = 215948, - [SMALL_STATE(4511)] = 216003, - [SMALL_STATE(4512)] = 216058, - [SMALL_STATE(4513)] = 216109, - [SMALL_STATE(4514)] = 216160, - [SMALL_STATE(4515)] = 216215, - [SMALL_STATE(4516)] = 216264, - [SMALL_STATE(4517)] = 216319, - [SMALL_STATE(4518)] = 216372, - [SMALL_STATE(4519)] = 216427, - [SMALL_STATE(4520)] = 216482, - [SMALL_STATE(4521)] = 216531, - [SMALL_STATE(4522)] = 216602, - [SMALL_STATE(4523)] = 216657, - [SMALL_STATE(4524)] = 216710, - [SMALL_STATE(4525)] = 216763, - [SMALL_STATE(4526)] = 216816, - [SMALL_STATE(4527)] = 216867, - [SMALL_STATE(4528)] = 216920, - [SMALL_STATE(4529)] = 216969, - [SMALL_STATE(4530)] = 217020, - [SMALL_STATE(4531)] = 217073, - [SMALL_STATE(4532)] = 217128, - [SMALL_STATE(4533)] = 217179, - [SMALL_STATE(4534)] = 217230, - [SMALL_STATE(4535)] = 217279, - [SMALL_STATE(4536)] = 217332, - [SMALL_STATE(4537)] = 217381, - [SMALL_STATE(4538)] = 217434, - [SMALL_STATE(4539)] = 217489, - [SMALL_STATE(4540)] = 217540, - [SMALL_STATE(4541)] = 217589, - [SMALL_STATE(4542)] = 217660, - [SMALL_STATE(4543)] = 217713, - [SMALL_STATE(4544)] = 217768, - [SMALL_STATE(4545)] = 217823, - [SMALL_STATE(4546)] = 217874, - [SMALL_STATE(4547)] = 217927, - [SMALL_STATE(4548)] = 217980, - [SMALL_STATE(4549)] = 218031, - [SMALL_STATE(4550)] = 218080, - [SMALL_STATE(4551)] = 218133, - [SMALL_STATE(4552)] = 218182, - [SMALL_STATE(4553)] = 218231, - [SMALL_STATE(4554)] = 218300, - [SMALL_STATE(4555)] = 218371, - [SMALL_STATE(4556)] = 218428, - [SMALL_STATE(4557)] = 218481, - [SMALL_STATE(4558)] = 218532, - [SMALL_STATE(4559)] = 218589, - [SMALL_STATE(4560)] = 218658, - [SMALL_STATE(4561)] = 218711, + [SMALL_STATE(4464)] = 213342, + [SMALL_STATE(4465)] = 213391, + [SMALL_STATE(4466)] = 213442, + [SMALL_STATE(4467)] = 213495, + [SMALL_STATE(4468)] = 213544, + [SMALL_STATE(4469)] = 213615, + [SMALL_STATE(4470)] = 213668, + [SMALL_STATE(4471)] = 213717, + [SMALL_STATE(4472)] = 213772, + [SMALL_STATE(4473)] = 213859, + [SMALL_STATE(4474)] = 213908, + [SMALL_STATE(4475)] = 213961, + [SMALL_STATE(4476)] = 214012, + [SMALL_STATE(4477)] = 214081, + [SMALL_STATE(4478)] = 214150, + [SMALL_STATE(4479)] = 214205, + [SMALL_STATE(4480)] = 214256, + [SMALL_STATE(4481)] = 214309, + [SMALL_STATE(4482)] = 214378, + [SMALL_STATE(4483)] = 214449, + [SMALL_STATE(4484)] = 214500, + [SMALL_STATE(4485)] = 214551, + [SMALL_STATE(4486)] = 214604, + [SMALL_STATE(4487)] = 214655, + [SMALL_STATE(4488)] = 214706, + [SMALL_STATE(4489)] = 214761, + [SMALL_STATE(4490)] = 214818, + [SMALL_STATE(4491)] = 214869, + [SMALL_STATE(4492)] = 214926, + [SMALL_STATE(4493)] = 214997, + [SMALL_STATE(4494)] = 215048, + [SMALL_STATE(4495)] = 215099, + [SMALL_STATE(4496)] = 215154, + [SMALL_STATE(4497)] = 215225, + [SMALL_STATE(4498)] = 215278, + [SMALL_STATE(4499)] = 215327, + [SMALL_STATE(4500)] = 215382, + [SMALL_STATE(4501)] = 215435, + [SMALL_STATE(4502)] = 215506, + [SMALL_STATE(4503)] = 215557, + [SMALL_STATE(4504)] = 215628, + [SMALL_STATE(4505)] = 215683, + [SMALL_STATE(4506)] = 215736, + [SMALL_STATE(4507)] = 215785, + [SMALL_STATE(4508)] = 215838, + [SMALL_STATE(4509)] = 215891, + [SMALL_STATE(4510)] = 215942, + [SMALL_STATE(4511)] = 215997, + [SMALL_STATE(4512)] = 216050, + [SMALL_STATE(4513)] = 216099, + [SMALL_STATE(4514)] = 216152, + [SMALL_STATE(4515)] = 216205, + [SMALL_STATE(4516)] = 216260, + [SMALL_STATE(4517)] = 216309, + [SMALL_STATE(4518)] = 216358, + [SMALL_STATE(4519)] = 216409, + [SMALL_STATE(4520)] = 216466, + [SMALL_STATE(4521)] = 216517, + [SMALL_STATE(4522)] = 216566, + [SMALL_STATE(4523)] = 216621, + [SMALL_STATE(4524)] = 216676, + [SMALL_STATE(4525)] = 216729, + [SMALL_STATE(4526)] = 216780, + [SMALL_STATE(4527)] = 216833, + [SMALL_STATE(4528)] = 216884, + [SMALL_STATE(4529)] = 216937, + [SMALL_STATE(4530)] = 216992, + [SMALL_STATE(4531)] = 217045, + [SMALL_STATE(4532)] = 217100, + [SMALL_STATE(4533)] = 217151, + [SMALL_STATE(4534)] = 217200, + [SMALL_STATE(4535)] = 217255, + [SMALL_STATE(4536)] = 217308, + [SMALL_STATE(4537)] = 217363, + [SMALL_STATE(4538)] = 217414, + [SMALL_STATE(4539)] = 217467, + [SMALL_STATE(4540)] = 217538, + [SMALL_STATE(4541)] = 217609, + [SMALL_STATE(4542)] = 217680, + [SMALL_STATE(4543)] = 217751, + [SMALL_STATE(4544)] = 217822, + [SMALL_STATE(4545)] = 217873, + [SMALL_STATE(4546)] = 217926, + [SMALL_STATE(4547)] = 217997, + [SMALL_STATE(4548)] = 218046, + [SMALL_STATE(4549)] = 218095, + [SMALL_STATE(4550)] = 218146, + [SMALL_STATE(4551)] = 218195, + [SMALL_STATE(4552)] = 218244, + [SMALL_STATE(4553)] = 218299, + [SMALL_STATE(4554)] = 218354, + [SMALL_STATE(4555)] = 218403, + [SMALL_STATE(4556)] = 218452, + [SMALL_STATE(4557)] = 218509, + [SMALL_STATE(4558)] = 218564, + [SMALL_STATE(4559)] = 218613, + [SMALL_STATE(4560)] = 218664, + [SMALL_STATE(4561)] = 218715, [SMALL_STATE(4562)] = 218768, - [SMALL_STATE(4563)] = 218838, - [SMALL_STATE(4564)] = 218886, - [SMALL_STATE(4565)] = 218934, - [SMALL_STATE(4566)] = 218988, - [SMALL_STATE(4567)] = 219036, - [SMALL_STATE(4568)] = 219084, - [SMALL_STATE(4569)] = 219132, - [SMALL_STATE(4570)] = 219180, - [SMALL_STATE(4571)] = 219234, - [SMALL_STATE(4572)] = 219282, - [SMALL_STATE(4573)] = 219330, - [SMALL_STATE(4574)] = 219378, - [SMALL_STATE(4575)] = 219444, + [SMALL_STATE(4563)] = 218818, + [SMALL_STATE(4564)] = 218868, + [SMALL_STATE(4565)] = 218950, + [SMALL_STATE(4566)] = 218998, + [SMALL_STATE(4567)] = 219046, + [SMALL_STATE(4568)] = 219098, + [SMALL_STATE(4569)] = 219152, + [SMALL_STATE(4570)] = 219204, + [SMALL_STATE(4571)] = 219254, + [SMALL_STATE(4572)] = 219308, + [SMALL_STATE(4573)] = 219356, + [SMALL_STATE(4574)] = 219408, + [SMALL_STATE(4575)] = 219460, [SMALL_STATE(4576)] = 219510, - [SMALL_STATE(4577)] = 219576, - [SMALL_STATE(4578)] = 219642, - [SMALL_STATE(4579)] = 219690, - [SMALL_STATE(4580)] = 219738, - [SMALL_STATE(4581)] = 219786, - [SMALL_STATE(4582)] = 219838, - [SMALL_STATE(4583)] = 219890, - [SMALL_STATE(4584)] = 219938, - [SMALL_STATE(4585)] = 219986, - [SMALL_STATE(4586)] = 220034, - [SMALL_STATE(4587)] = 220082, - [SMALL_STATE(4588)] = 220130, - [SMALL_STATE(4589)] = 220184, - [SMALL_STATE(4590)] = 220232, - [SMALL_STATE(4591)] = 220280, - [SMALL_STATE(4592)] = 220330, - [SMALL_STATE(4593)] = 220378, - [SMALL_STATE(4594)] = 220428, - [SMALL_STATE(4595)] = 220476, - [SMALL_STATE(4596)] = 220524, - [SMALL_STATE(4597)] = 220572, - [SMALL_STATE(4598)] = 220620, - [SMALL_STATE(4599)] = 220668, - [SMALL_STATE(4600)] = 220718, - [SMALL_STATE(4601)] = 220772, - [SMALL_STATE(4602)] = 220822, - [SMALL_STATE(4603)] = 220872, - [SMALL_STATE(4604)] = 220924, - [SMALL_STATE(4605)] = 220974, - [SMALL_STATE(4606)] = 221022, - [SMALL_STATE(4607)] = 221074, - [SMALL_STATE(4608)] = 221126, - [SMALL_STATE(4609)] = 221174, - [SMALL_STATE(4610)] = 221224, - [SMALL_STATE(4611)] = 221272, - [SMALL_STATE(4612)] = 221320, - [SMALL_STATE(4613)] = 221372, - [SMALL_STATE(4614)] = 221422, - [SMALL_STATE(4615)] = 221472, - [SMALL_STATE(4616)] = 221524, - [SMALL_STATE(4617)] = 221574, - [SMALL_STATE(4618)] = 221644, - [SMALL_STATE(4619)] = 221692, - [SMALL_STATE(4620)] = 221740, - [SMALL_STATE(4621)] = 221806, - [SMALL_STATE(4622)] = 221872, - [SMALL_STATE(4623)] = 221920, - [SMALL_STATE(4624)] = 221968, - [SMALL_STATE(4625)] = 222034, - [SMALL_STATE(4626)] = 222100, - [SMALL_STATE(4627)] = 222148, - [SMALL_STATE(4628)] = 222198, - [SMALL_STATE(4629)] = 222264, - [SMALL_STATE(4630)] = 222330, - [SMALL_STATE(4631)] = 222400, - [SMALL_STATE(4632)] = 222448, - [SMALL_STATE(4633)] = 222514, - [SMALL_STATE(4634)] = 222580, - [SMALL_STATE(4635)] = 222650, - [SMALL_STATE(4636)] = 222700, - [SMALL_STATE(4637)] = 222752, - [SMALL_STATE(4638)] = 222800, - [SMALL_STATE(4639)] = 222850, - [SMALL_STATE(4640)] = 222904, - [SMALL_STATE(4641)] = 222952, - [SMALL_STATE(4642)] = 223008, - [SMALL_STATE(4643)] = 223062, - [SMALL_STATE(4644)] = 223116, - [SMALL_STATE(4645)] = 223162, - [SMALL_STATE(4646)] = 223212, - [SMALL_STATE(4647)] = 223266, - [SMALL_STATE(4648)] = 223318, - [SMALL_STATE(4649)] = 223366, - [SMALL_STATE(4650)] = 223448, - [SMALL_STATE(4651)] = 223496, - [SMALL_STATE(4652)] = 223548, - [SMALL_STATE(4653)] = 223596, - [SMALL_STATE(4654)] = 223648, - [SMALL_STATE(4655)] = 223700, - [SMALL_STATE(4656)] = 223748, - [SMALL_STATE(4657)] = 223800, - [SMALL_STATE(4658)] = 223854, - [SMALL_STATE(4659)] = 223908, - [SMALL_STATE(4660)] = 223960, - [SMALL_STATE(4661)] = 224008, - [SMALL_STATE(4662)] = 224056, - [SMALL_STATE(4663)] = 224106, - [SMALL_STATE(4664)] = 224174, - [SMALL_STATE(4665)] = 224226, - [SMALL_STATE(4666)] = 224280, - [SMALL_STATE(4667)] = 224348, - [SMALL_STATE(4668)] = 224396, - [SMALL_STATE(4669)] = 224450, - [SMALL_STATE(4670)] = 224498, - [SMALL_STATE(4671)] = 224546, - [SMALL_STATE(4672)] = 224596, - [SMALL_STATE(4673)] = 224648, - [SMALL_STATE(4674)] = 224702, - [SMALL_STATE(4675)] = 224752, - [SMALL_STATE(4676)] = 224800, - [SMALL_STATE(4677)] = 224848, - [SMALL_STATE(4678)] = 224896, - [SMALL_STATE(4679)] = 224950, - [SMALL_STATE(4680)] = 225018, - [SMALL_STATE(4681)] = 225068, - [SMALL_STATE(4682)] = 225116, - [SMALL_STATE(4683)] = 225164, - [SMALL_STATE(4684)] = 225216, - [SMALL_STATE(4685)] = 225268, - [SMALL_STATE(4686)] = 225320, - [SMALL_STATE(4687)] = 225374, - [SMALL_STATE(4688)] = 225422, - [SMALL_STATE(4689)] = 225470, - [SMALL_STATE(4690)] = 225538, - [SMALL_STATE(4691)] = 225592, - [SMALL_STATE(4692)] = 225640, - [SMALL_STATE(4693)] = 225688, - [SMALL_STATE(4694)] = 225740, - [SMALL_STATE(4695)] = 225790, - [SMALL_STATE(4696)] = 225840, - [SMALL_STATE(4697)] = 225890, - [SMALL_STATE(4698)] = 225942, - [SMALL_STATE(4699)] = 226012, - [SMALL_STATE(4700)] = 226064, - [SMALL_STATE(4701)] = 226112, - [SMALL_STATE(4702)] = 226160, - [SMALL_STATE(4703)] = 226208, - [SMALL_STATE(4704)] = 226256, - [SMALL_STATE(4705)] = 226326, - [SMALL_STATE(4706)] = 226374, - [SMALL_STATE(4707)] = 226422, - [SMALL_STATE(4708)] = 226470, - [SMALL_STATE(4709)] = 226518, - [SMALL_STATE(4710)] = 226566, - [SMALL_STATE(4711)] = 226614, - [SMALL_STATE(4712)] = 226662, - [SMALL_STATE(4713)] = 226710, - [SMALL_STATE(4714)] = 226758, - [SMALL_STATE(4715)] = 226806, - [SMALL_STATE(4716)] = 226854, - [SMALL_STATE(4717)] = 226904, - [SMALL_STATE(4718)] = 226952, - [SMALL_STATE(4719)] = 227004, - [SMALL_STATE(4720)] = 227058, - [SMALL_STATE(4721)] = 227106, + [SMALL_STATE(4577)] = 219560, + [SMALL_STATE(4578)] = 219608, + [SMALL_STATE(4579)] = 219662, + [SMALL_STATE(4580)] = 219712, + [SMALL_STATE(4581)] = 219762, + [SMALL_STATE(4582)] = 219812, + [SMALL_STATE(4583)] = 219862, + [SMALL_STATE(4584)] = 219914, + [SMALL_STATE(4585)] = 219968, + [SMALL_STATE(4586)] = 220020, + [SMALL_STATE(4587)] = 220088, + [SMALL_STATE(4588)] = 220156, + [SMALL_STATE(4589)] = 220210, + [SMALL_STATE(4590)] = 220258, + [SMALL_STATE(4591)] = 220306, + [SMALL_STATE(4592)] = 220360, + [SMALL_STATE(4593)] = 220408, + [SMALL_STATE(4594)] = 220456, + [SMALL_STATE(4595)] = 220508, + [SMALL_STATE(4596)] = 220556, + [SMALL_STATE(4597)] = 220606, + [SMALL_STATE(4598)] = 220658, + [SMALL_STATE(4599)] = 220712, + [SMALL_STATE(4600)] = 220760, + [SMALL_STATE(4601)] = 220808, + [SMALL_STATE(4602)] = 220862, + [SMALL_STATE(4603)] = 220910, + [SMALL_STATE(4604)] = 220962, + [SMALL_STATE(4605)] = 221010, + [SMALL_STATE(4606)] = 221060, + [SMALL_STATE(4607)] = 221108, + [SMALL_STATE(4608)] = 221156, + [SMALL_STATE(4609)] = 221204, + [SMALL_STATE(4610)] = 221252, + [SMALL_STATE(4611)] = 221300, + [SMALL_STATE(4612)] = 221348, + [SMALL_STATE(4613)] = 221396, + [SMALL_STATE(4614)] = 221444, + [SMALL_STATE(4615)] = 221492, + [SMALL_STATE(4616)] = 221540, + [SMALL_STATE(4617)] = 221588, + [SMALL_STATE(4618)] = 221636, + [SMALL_STATE(4619)] = 221684, + [SMALL_STATE(4620)] = 221732, + [SMALL_STATE(4621)] = 221780, + [SMALL_STATE(4622)] = 221850, + [SMALL_STATE(4623)] = 221898, + [SMALL_STATE(4624)] = 221950, + [SMALL_STATE(4625)] = 221998, + [SMALL_STATE(4626)] = 222048, + [SMALL_STATE(4627)] = 222102, + [SMALL_STATE(4628)] = 222152, + [SMALL_STATE(4629)] = 222204, + [SMALL_STATE(4630)] = 222258, + [SMALL_STATE(4631)] = 222310, + [SMALL_STATE(4632)] = 222358, + [SMALL_STATE(4633)] = 222410, + [SMALL_STATE(4634)] = 222458, + [SMALL_STATE(4635)] = 222506, + [SMALL_STATE(4636)] = 222560, + [SMALL_STATE(4637)] = 222614, + [SMALL_STATE(4638)] = 222670, + [SMALL_STATE(4639)] = 222718, + [SMALL_STATE(4640)] = 222770, + [SMALL_STATE(4641)] = 222822, + [SMALL_STATE(4642)] = 222876, + [SMALL_STATE(4643)] = 222924, + [SMALL_STATE(4644)] = 222972, + [SMALL_STATE(4645)] = 223020, + [SMALL_STATE(4646)] = 223090, + [SMALL_STATE(4647)] = 223144, + [SMALL_STATE(4648)] = 223214, + [SMALL_STATE(4649)] = 223284, + [SMALL_STATE(4650)] = 223354, + [SMALL_STATE(4651)] = 223406, + [SMALL_STATE(4652)] = 223454, + [SMALL_STATE(4653)] = 223524, + [SMALL_STATE(4654)] = 223572, + [SMALL_STATE(4655)] = 223620, + [SMALL_STATE(4656)] = 223668, + [SMALL_STATE(4657)] = 223716, + [SMALL_STATE(4658)] = 223764, + [SMALL_STATE(4659)] = 223812, + [SMALL_STATE(4660)] = 223860, + [SMALL_STATE(4661)] = 223912, + [SMALL_STATE(4662)] = 223962, + [SMALL_STATE(4663)] = 224010, + [SMALL_STATE(4664)] = 224058, + [SMALL_STATE(4665)] = 224104, + [SMALL_STATE(4666)] = 224152, + [SMALL_STATE(4667)] = 224200, + [SMALL_STATE(4668)] = 224266, + [SMALL_STATE(4669)] = 224314, + [SMALL_STATE(4670)] = 224380, + [SMALL_STATE(4671)] = 224432, + [SMALL_STATE(4672)] = 224498, + [SMALL_STATE(4673)] = 224550, + [SMALL_STATE(4674)] = 224616, + [SMALL_STATE(4675)] = 224666, + [SMALL_STATE(4676)] = 224714, + [SMALL_STATE(4677)] = 224762, + [SMALL_STATE(4678)] = 224814, + [SMALL_STATE(4679)] = 224866, + [SMALL_STATE(4680)] = 224932, + [SMALL_STATE(4681)] = 224998, + [SMALL_STATE(4682)] = 225064, + [SMALL_STATE(4683)] = 225130, + [SMALL_STATE(4684)] = 225196, + [SMALL_STATE(4685)] = 225246, + [SMALL_STATE(4686)] = 225296, + [SMALL_STATE(4687)] = 225344, + [SMALL_STATE(4688)] = 225410, + [SMALL_STATE(4689)] = 225476, + [SMALL_STATE(4690)] = 225542, + [SMALL_STATE(4691)] = 225590, + [SMALL_STATE(4692)] = 225644, + [SMALL_STATE(4693)] = 225698, + [SMALL_STATE(4694)] = 225750, + [SMALL_STATE(4695)] = 225798, + [SMALL_STATE(4696)] = 225852, + [SMALL_STATE(4697)] = 225904, + [SMALL_STATE(4698)] = 225952, + [SMALL_STATE(4699)] = 226002, + [SMALL_STATE(4700)] = 226050, + [SMALL_STATE(4701)] = 226098, + [SMALL_STATE(4702)] = 226146, + [SMALL_STATE(4703)] = 226200, + [SMALL_STATE(4704)] = 226250, + [SMALL_STATE(4705)] = 226298, + [SMALL_STATE(4706)] = 226346, + [SMALL_STATE(4707)] = 226394, + [SMALL_STATE(4708)] = 226462, + [SMALL_STATE(4709)] = 226510, + [SMALL_STATE(4710)] = 226558, + [SMALL_STATE(4711)] = 226606, + [SMALL_STATE(4712)] = 226674, + [SMALL_STATE(4713)] = 226724, + [SMALL_STATE(4714)] = 226772, + [SMALL_STATE(4715)] = 226820, + [SMALL_STATE(4716)] = 226870, + [SMALL_STATE(4717)] = 226920, + [SMALL_STATE(4718)] = 226968, + [SMALL_STATE(4719)] = 227016, + [SMALL_STATE(4720)] = 227064, + [SMALL_STATE(4721)] = 227112, [SMALL_STATE(4722)] = 227160, [SMALL_STATE(4723)] = 227209, - [SMALL_STATE(4724)] = 227258, - [SMALL_STATE(4725)] = 227307, - [SMALL_STATE(4726)] = 227360, - [SMALL_STATE(4727)] = 227413, - [SMALL_STATE(4728)] = 227466, - [SMALL_STATE(4729)] = 227517, - [SMALL_STATE(4730)] = 227570, - [SMALL_STATE(4731)] = 227621, + [SMALL_STATE(4724)] = 227262, + [SMALL_STATE(4725)] = 227309, + [SMALL_STATE(4726)] = 227356, + [SMALL_STATE(4727)] = 227407, + [SMALL_STATE(4728)] = 227462, + [SMALL_STATE(4729)] = 227515, + [SMALL_STATE(4730)] = 227568, + [SMALL_STATE(4731)] = 227619, [SMALL_STATE(4732)] = 227672, [SMALL_STATE(4733)] = 227723, - [SMALL_STATE(4734)] = 227770, - [SMALL_STATE(4735)] = 227825, - [SMALL_STATE(4736)] = 227878, - [SMALL_STATE(4737)] = 227931, - [SMALL_STATE(4738)] = 227980, + [SMALL_STATE(4734)] = 227776, + [SMALL_STATE(4735)] = 227829, + [SMALL_STATE(4736)] = 227882, + [SMALL_STATE(4737)] = 227935, + [SMALL_STATE(4738)] = 227986, [SMALL_STATE(4739)] = 228033, [SMALL_STATE(4740)] = 228086, - [SMALL_STATE(4741)] = 228133, + [SMALL_STATE(4741)] = 228139, [SMALL_STATE(4742)] = 228186, - [SMALL_STATE(4743)] = 228239, - [SMALL_STATE(4744)] = 228286, - [SMALL_STATE(4745)] = 228339, - [SMALL_STATE(4746)] = 228392, - [SMALL_STATE(4747)] = 228439, - [SMALL_STATE(4748)] = 228486, - [SMALL_STATE(4749)] = 228533, - [SMALL_STATE(4750)] = 228580, - [SMALL_STATE(4751)] = 228661, - [SMALL_STATE(4752)] = 228708, - [SMALL_STATE(4753)] = 228759, - [SMALL_STATE(4754)] = 228806, + [SMALL_STATE(4743)] = 228233, + [SMALL_STATE(4744)] = 228278, + [SMALL_STATE(4745)] = 228325, + [SMALL_STATE(4746)] = 228372, + [SMALL_STATE(4747)] = 228425, + [SMALL_STATE(4748)] = 228476, + [SMALL_STATE(4749)] = 228529, + [SMALL_STATE(4750)] = 228576, + [SMALL_STATE(4751)] = 228629, + [SMALL_STATE(4752)] = 228678, + [SMALL_STATE(4753)] = 228731, + [SMALL_STATE(4754)] = 228810, [SMALL_STATE(4755)] = 228859, [SMALL_STATE(4756)] = 228906, - [SMALL_STATE(4757)] = 228959, - [SMALL_STATE(4758)] = 229010, - [SMALL_STATE(4759)] = 229063, - [SMALL_STATE(4760)] = 229114, - [SMALL_STATE(4761)] = 229167, - [SMALL_STATE(4762)] = 229218, - [SMALL_STATE(4763)] = 229267, - [SMALL_STATE(4764)] = 229314, - [SMALL_STATE(4765)] = 229369, - [SMALL_STATE(4766)] = 229420, - [SMALL_STATE(4767)] = 229485, - [SMALL_STATE(4768)] = 229550, - [SMALL_STATE(4769)] = 229603, - [SMALL_STATE(4770)] = 229654, - [SMALL_STATE(4771)] = 229707, - [SMALL_STATE(4772)] = 229758, - [SMALL_STATE(4773)] = 229823, - [SMALL_STATE(4774)] = 229888, - [SMALL_STATE(4775)] = 229941, - [SMALL_STATE(4776)] = 229988, - [SMALL_STATE(4777)] = 230055, - [SMALL_STATE(4778)] = 230122, - [SMALL_STATE(4779)] = 230173, - [SMALL_STATE(4780)] = 230226, - [SMALL_STATE(4781)] = 230279, - [SMALL_STATE(4782)] = 230326, - [SMALL_STATE(4783)] = 230377, - [SMALL_STATE(4784)] = 230426, - [SMALL_STATE(4785)] = 230475, - [SMALL_STATE(4786)] = 230526, - [SMALL_STATE(4787)] = 230573, - [SMALL_STATE(4788)] = 230620, - [SMALL_STATE(4789)] = 230673, - [SMALL_STATE(4790)] = 230752, - [SMALL_STATE(4791)] = 230805, - [SMALL_STATE(4792)] = 230852, + [SMALL_STATE(4757)] = 228953, + [SMALL_STATE(4758)] = 229000, + [SMALL_STATE(4759)] = 229047, + [SMALL_STATE(4760)] = 229128, + [SMALL_STATE(4761)] = 229175, + [SMALL_STATE(4762)] = 229228, + [SMALL_STATE(4763)] = 229281, + [SMALL_STATE(4764)] = 229328, + [SMALL_STATE(4765)] = 229375, + [SMALL_STATE(4766)] = 229422, + [SMALL_STATE(4767)] = 229501, + [SMALL_STATE(4768)] = 229548, + [SMALL_STATE(4769)] = 229613, + [SMALL_STATE(4770)] = 229660, + [SMALL_STATE(4771)] = 229725, + [SMALL_STATE(4772)] = 229778, + [SMALL_STATE(4773)] = 229827, + [SMALL_STATE(4774)] = 229876, + [SMALL_STATE(4775)] = 229923, + [SMALL_STATE(4776)] = 229976, + [SMALL_STATE(4777)] = 230023, + [SMALL_STATE(4778)] = 230090, + [SMALL_STATE(4779)] = 230157, + [SMALL_STATE(4780)] = 230210, + [SMALL_STATE(4781)] = 230263, + [SMALL_STATE(4782)] = 230316, + [SMALL_STATE(4783)] = 230369, + [SMALL_STATE(4784)] = 230422, + [SMALL_STATE(4785)] = 230469, + [SMALL_STATE(4786)] = 230522, + [SMALL_STATE(4787)] = 230587, + [SMALL_STATE(4788)] = 230634, + [SMALL_STATE(4789)] = 230687, + [SMALL_STATE(4790)] = 230740, + [SMALL_STATE(4791)] = 230793, + [SMALL_STATE(4792)] = 230840, [SMALL_STATE(4793)] = 230905, - [SMALL_STATE(4794)] = 230958, - [SMALL_STATE(4795)] = 231011, - [SMALL_STATE(4796)] = 231062, - [SMALL_STATE(4797)] = 231117, - [SMALL_STATE(4798)] = 231168, - [SMALL_STATE(4799)] = 231221, - [SMALL_STATE(4800)] = 231274, - [SMALL_STATE(4801)] = 231325, - [SMALL_STATE(4802)] = 231374, - [SMALL_STATE(4803)] = 231423, - [SMALL_STATE(4804)] = 231472, - [SMALL_STATE(4805)] = 231519, - [SMALL_STATE(4806)] = 231570, - [SMALL_STATE(4807)] = 231621, - [SMALL_STATE(4808)] = 231670, - [SMALL_STATE(4809)] = 231723, - [SMALL_STATE(4810)] = 231770, - [SMALL_STATE(4811)] = 231819, - [SMALL_STATE(4812)] = 231898, - [SMALL_STATE(4813)] = 231975, - [SMALL_STATE(4814)] = 232050, - [SMALL_STATE(4815)] = 232115, - [SMALL_STATE(4816)] = 232180, - [SMALL_STATE(4817)] = 232233, - [SMALL_STATE(4818)] = 232306, - [SMALL_STATE(4819)] = 232371, - [SMALL_STATE(4820)] = 232436, - [SMALL_STATE(4821)] = 232489, - [SMALL_STATE(4822)] = 232560, - [SMALL_STATE(4823)] = 232625, - [SMALL_STATE(4824)] = 232690, - [SMALL_STATE(4825)] = 232759, - [SMALL_STATE(4826)] = 232826, - [SMALL_STATE(4827)] = 232891, - [SMALL_STATE(4828)] = 232956, - [SMALL_STATE(4829)] = 233013, - [SMALL_STATE(4830)] = 233064, - [SMALL_STATE(4831)] = 233113, - [SMALL_STATE(4832)] = 233160, - [SMALL_STATE(4833)] = 233213, - [SMALL_STATE(4834)] = 233266, - [SMALL_STATE(4835)] = 233331, - [SMALL_STATE(4836)] = 233384, - [SMALL_STATE(4837)] = 233431, - [SMALL_STATE(4838)] = 233484, - [SMALL_STATE(4839)] = 233545, - [SMALL_STATE(4840)] = 233598, - [SMALL_STATE(4841)] = 233651, - [SMALL_STATE(4842)] = 233704, - [SMALL_STATE(4843)] = 233757, - [SMALL_STATE(4844)] = 233804, - [SMALL_STATE(4845)] = 233851, - [SMALL_STATE(4846)] = 233904, - [SMALL_STATE(4847)] = 233953, - [SMALL_STATE(4848)] = 234002, - [SMALL_STATE(4849)] = 234049, - [SMALL_STATE(4850)] = 234096, - [SMALL_STATE(4851)] = 234149, - [SMALL_STATE(4852)] = 234202, - [SMALL_STATE(4853)] = 234253, - [SMALL_STATE(4854)] = 234302, - [SMALL_STATE(4855)] = 234353, - [SMALL_STATE(4856)] = 234406, - [SMALL_STATE(4857)] = 234459, - [SMALL_STATE(4858)] = 234506, - [SMALL_STATE(4859)] = 234553, - [SMALL_STATE(4860)] = 234606, - [SMALL_STATE(4861)] = 234659, - [SMALL_STATE(4862)] = 234712, - [SMALL_STATE(4863)] = 234759, - [SMALL_STATE(4864)] = 234810, - [SMALL_STATE(4865)] = 234863, - [SMALL_STATE(4866)] = 234910, - [SMALL_STATE(4867)] = 234961, - [SMALL_STATE(4868)] = 235010, - [SMALL_STATE(4869)] = 235063, - [SMALL_STATE(4870)] = 235114, - [SMALL_STATE(4871)] = 235161, - [SMALL_STATE(4872)] = 235214, - [SMALL_STATE(4873)] = 235265, - [SMALL_STATE(4874)] = 235316, - [SMALL_STATE(4875)] = 235361, - [SMALL_STATE(4876)] = 235414, - [SMALL_STATE(4877)] = 235461, - [SMALL_STATE(4878)] = 235510, - [SMALL_STATE(4879)] = 235555, - [SMALL_STATE(4880)] = 235602, - [SMALL_STATE(4881)] = 235655, - [SMALL_STATE(4882)] = 235720, - [SMALL_STATE(4883)] = 235785, - [SMALL_STATE(4884)] = 235850, - [SMALL_STATE(4885)] = 235897, - [SMALL_STATE(4886)] = 235962, - [SMALL_STATE(4887)] = 236009, - [SMALL_STATE(4888)] = 236064, - [SMALL_STATE(4889)] = 236117, - [SMALL_STATE(4890)] = 236170, - [SMALL_STATE(4891)] = 236223, - [SMALL_STATE(4892)] = 236270, - [SMALL_STATE(4893)] = 236315, - [SMALL_STATE(4894)] = 236368, - [SMALL_STATE(4895)] = 236421, - [SMALL_STATE(4896)] = 236486, - [SMALL_STATE(4897)] = 236533, - [SMALL_STATE(4898)] = 236598, - [SMALL_STATE(4899)] = 236647, - [SMALL_STATE(4900)] = 236694, - [SMALL_STATE(4901)] = 236741, - [SMALL_STATE(4902)] = 236806, - [SMALL_STATE(4903)] = 236871, - [SMALL_STATE(4904)] = 236936, - [SMALL_STATE(4905)] = 236989, - [SMALL_STATE(4906)] = 237054, - [SMALL_STATE(4907)] = 237101, - [SMALL_STATE(4908)] = 237166, - [SMALL_STATE(4909)] = 237231, - [SMALL_STATE(4910)] = 237280, - [SMALL_STATE(4911)] = 237359, - [SMALL_STATE(4912)] = 237408, - [SMALL_STATE(4913)] = 237457, - [SMALL_STATE(4914)] = 237508, - [SMALL_STATE(4915)] = 237553, - [SMALL_STATE(4916)] = 237598, - [SMALL_STATE(4917)] = 237651, + [SMALL_STATE(4794)] = 230954, + [SMALL_STATE(4795)] = 231007, + [SMALL_STATE(4796)] = 231054, + [SMALL_STATE(4797)] = 231107, + [SMALL_STATE(4798)] = 231156, + [SMALL_STATE(4799)] = 231211, + [SMALL_STATE(4800)] = 231258, + [SMALL_STATE(4801)] = 231307, + [SMALL_STATE(4802)] = 231360, + [SMALL_STATE(4803)] = 231409, + [SMALL_STATE(4804)] = 231460, + [SMALL_STATE(4805)] = 231507, + [SMALL_STATE(4806)] = 231556, + [SMALL_STATE(4807)] = 231603, + [SMALL_STATE(4808)] = 231652, + [SMALL_STATE(4809)] = 231705, + [SMALL_STATE(4810)] = 231756, + [SMALL_STATE(4811)] = 231805, + [SMALL_STATE(4812)] = 231856, + [SMALL_STATE(4813)] = 231907, + [SMALL_STATE(4814)] = 231958, + [SMALL_STATE(4815)] = 232009, + [SMALL_STATE(4816)] = 232054, + [SMALL_STATE(4817)] = 232099, + [SMALL_STATE(4818)] = 232144, + [SMALL_STATE(4819)] = 232195, + [SMALL_STATE(4820)] = 232248, + [SMALL_STATE(4821)] = 232299, + [SMALL_STATE(4822)] = 232346, + [SMALL_STATE(4823)] = 232391, + [SMALL_STATE(4824)] = 232440, + [SMALL_STATE(4825)] = 232505, + [SMALL_STATE(4826)] = 232554, + [SMALL_STATE(4827)] = 232603, + [SMALL_STATE(4828)] = 232668, + [SMALL_STATE(4829)] = 232719, + [SMALL_STATE(4830)] = 232770, + [SMALL_STATE(4831)] = 232821, + [SMALL_STATE(4832)] = 232874, + [SMALL_STATE(4833)] = 232921, + [SMALL_STATE(4834)] = 232974, + [SMALL_STATE(4835)] = 233021, + [SMALL_STATE(4836)] = 233072, + [SMALL_STATE(4837)] = 233137, + [SMALL_STATE(4838)] = 233190, + [SMALL_STATE(4839)] = 233239, + [SMALL_STATE(4840)] = 233292, + [SMALL_STATE(4841)] = 233345, + [SMALL_STATE(4842)] = 233398, + [SMALL_STATE(4843)] = 233463, + [SMALL_STATE(4844)] = 233516, + [SMALL_STATE(4845)] = 233567, + [SMALL_STATE(4846)] = 233614, + [SMALL_STATE(4847)] = 233679, + [SMALL_STATE(4848)] = 233732, + [SMALL_STATE(4849)] = 233787, + [SMALL_STATE(4850)] = 233840, + [SMALL_STATE(4851)] = 233905, + [SMALL_STATE(4852)] = 233958, + [SMALL_STATE(4853)] = 234011, + [SMALL_STATE(4854)] = 234062, + [SMALL_STATE(4855)] = 234113, + [SMALL_STATE(4856)] = 234166, + [SMALL_STATE(4857)] = 234213, + [SMALL_STATE(4858)] = 234262, + [SMALL_STATE(4859)] = 234323, + [SMALL_STATE(4860)] = 234378, + [SMALL_STATE(4861)] = 234443, + [SMALL_STATE(4862)] = 234496, + [SMALL_STATE(4863)] = 234545, + [SMALL_STATE(4864)] = 234602, + [SMALL_STATE(4865)] = 234669, + [SMALL_STATE(4866)] = 234738, + [SMALL_STATE(4867)] = 234809, + [SMALL_STATE(4868)] = 234882, + [SMALL_STATE(4869)] = 234957, + [SMALL_STATE(4870)] = 235034, + [SMALL_STATE(4871)] = 235113, + [SMALL_STATE(4872)] = 235162, + [SMALL_STATE(4873)] = 235227, + [SMALL_STATE(4874)] = 235292, + [SMALL_STATE(4875)] = 235343, + [SMALL_STATE(4876)] = 235408, + [SMALL_STATE(4877)] = 235473, + [SMALL_STATE(4878)] = 235522, + [SMALL_STATE(4879)] = 235587, + [SMALL_STATE(4880)] = 235652, + [SMALL_STATE(4881)] = 235717, + [SMALL_STATE(4882)] = 235782, + [SMALL_STATE(4883)] = 235847, + [SMALL_STATE(4884)] = 235912, + [SMALL_STATE(4885)] = 235977, + [SMALL_STATE(4886)] = 236042, + [SMALL_STATE(4887)] = 236089, + [SMALL_STATE(4888)] = 236142, + [SMALL_STATE(4889)] = 236207, + [SMALL_STATE(4890)] = 236254, + [SMALL_STATE(4891)] = 236301, + [SMALL_STATE(4892)] = 236354, + [SMALL_STATE(4893)] = 236419, + [SMALL_STATE(4894)] = 236466, + [SMALL_STATE(4895)] = 236517, + [SMALL_STATE(4896)] = 236568, + [SMALL_STATE(4897)] = 236621, + [SMALL_STATE(4898)] = 236670, + [SMALL_STATE(4899)] = 236723, + [SMALL_STATE(4900)] = 236774, + [SMALL_STATE(4901)] = 236825, + [SMALL_STATE(4902)] = 236878, + [SMALL_STATE(4903)] = 236925, + [SMALL_STATE(4904)] = 236976, + [SMALL_STATE(4905)] = 237029, + [SMALL_STATE(4906)] = 237082, + [SMALL_STATE(4907)] = 237135, + [SMALL_STATE(4908)] = 237186, + [SMALL_STATE(4909)] = 237239, + [SMALL_STATE(4910)] = 237290, + [SMALL_STATE(4911)] = 237343, + [SMALL_STATE(4912)] = 237396, + [SMALL_STATE(4913)] = 237449, + [SMALL_STATE(4914)] = 237502, + [SMALL_STATE(4915)] = 237551, + [SMALL_STATE(4916)] = 237604, + [SMALL_STATE(4917)] = 237657, [SMALL_STATE(4918)] = 237704, - [SMALL_STATE(4919)] = 237756, - [SMALL_STATE(4920)] = 237808, - [SMALL_STATE(4921)] = 237858, - [SMALL_STATE(4922)] = 237908, - [SMALL_STATE(4923)] = 237986, - [SMALL_STATE(4924)] = 238032, - [SMALL_STATE(4925)] = 238084, - [SMALL_STATE(4926)] = 238134, - [SMALL_STATE(4927)] = 238186, - [SMALL_STATE(4928)] = 238264, - [SMALL_STATE(4929)] = 238314, - [SMALL_STATE(4930)] = 238362, - [SMALL_STATE(4931)] = 238414, - [SMALL_STATE(4932)] = 238466, - [SMALL_STATE(4933)] = 238514, - [SMALL_STATE(4934)] = 238564, - [SMALL_STATE(4935)] = 238614, - [SMALL_STATE(4936)] = 238666, - [SMALL_STATE(4937)] = 238712, - [SMALL_STATE(4938)] = 238760, - [SMALL_STATE(4939)] = 238838, - [SMALL_STATE(4940)] = 238914, - [SMALL_STATE(4941)] = 238988, - [SMALL_STATE(4942)] = 239040, - [SMALL_STATE(4943)] = 239112, - [SMALL_STATE(4944)] = 239182, - [SMALL_STATE(4945)] = 239250, - [SMALL_STATE(4946)] = 239296, - [SMALL_STATE(4947)] = 239362, - [SMALL_STATE(4948)] = 239418, - [SMALL_STATE(4949)] = 239466, - [SMALL_STATE(4950)] = 239518, - [SMALL_STATE(4951)] = 239570, - [SMALL_STATE(4952)] = 239618, - [SMALL_STATE(4953)] = 239666, - [SMALL_STATE(4954)] = 239730, - [SMALL_STATE(4955)] = 239778, - [SMALL_STATE(4956)] = 239832, - [SMALL_STATE(4957)] = 239882, - [SMALL_STATE(4958)] = 239942, - [SMALL_STATE(4959)] = 239988, - [SMALL_STATE(4960)] = 240038, - [SMALL_STATE(4961)] = 240088, - [SMALL_STATE(4962)] = 240140, - [SMALL_STATE(4963)] = 240190, - [SMALL_STATE(4964)] = 240244, - [SMALL_STATE(4965)] = 240296, - [SMALL_STATE(4966)] = 240348, - [SMALL_STATE(4967)] = 240398, - [SMALL_STATE(4968)] = 240444, - [SMALL_STATE(4969)] = 240490, - [SMALL_STATE(4970)] = 240544, - [SMALL_STATE(4971)] = 240610, - [SMALL_STATE(4972)] = 240656, - [SMALL_STATE(4973)] = 240704, - [SMALL_STATE(4974)] = 240750, - [SMALL_STATE(4975)] = 240798, - [SMALL_STATE(4976)] = 240844, - [SMALL_STATE(4977)] = 240922, - [SMALL_STATE(4978)] = 240998, - [SMALL_STATE(4979)] = 241072, - [SMALL_STATE(4980)] = 241120, - [SMALL_STATE(4981)] = 241168, - [SMALL_STATE(4982)] = 241214, - [SMALL_STATE(4983)] = 241262, - [SMALL_STATE(4984)] = 241308, - [SMALL_STATE(4985)] = 241354, - [SMALL_STATE(4986)] = 241426, - [SMALL_STATE(4987)] = 241496, - [SMALL_STATE(4988)] = 241542, - [SMALL_STATE(4989)] = 241592, - [SMALL_STATE(4990)] = 241660, - [SMALL_STATE(4991)] = 241710, - [SMALL_STATE(4992)] = 241762, - [SMALL_STATE(4993)] = 241818, - [SMALL_STATE(4994)] = 241868, - [SMALL_STATE(4995)] = 241916, - [SMALL_STATE(4996)] = 241968, - [SMALL_STATE(4997)] = 242032, - [SMALL_STATE(4998)] = 242080, - [SMALL_STATE(4999)] = 242130, - [SMALL_STATE(5000)] = 242184, - [SMALL_STATE(5001)] = 242244, - [SMALL_STATE(5002)] = 242292, - [SMALL_STATE(5003)] = 242344, - [SMALL_STATE(5004)] = 242392, - [SMALL_STATE(5005)] = 242442, - [SMALL_STATE(5006)] = 242488, - [SMALL_STATE(5007)] = 242540, - [SMALL_STATE(5008)] = 242592, - [SMALL_STATE(5009)] = 242644, - [SMALL_STATE(5010)] = 242696, - [SMALL_STATE(5011)] = 242746, - [SMALL_STATE(5012)] = 242798, - [SMALL_STATE(5013)] = 242848, - [SMALL_STATE(5014)] = 242898, - [SMALL_STATE(5015)] = 242944, - [SMALL_STATE(5016)] = 242992, - [SMALL_STATE(5017)] = 243038, - [SMALL_STATE(5018)] = 243086, - [SMALL_STATE(5019)] = 243134, - [SMALL_STATE(5020)] = 243188, - [SMALL_STATE(5021)] = 243232, - [SMALL_STATE(5022)] = 243284, - [SMALL_STATE(5023)] = 243332, - [SMALL_STATE(5024)] = 243378, - [SMALL_STATE(5025)] = 243424, - [SMALL_STATE(5026)] = 243476, - [SMALL_STATE(5027)] = 243530, - [SMALL_STATE(5028)] = 243576, - [SMALL_STATE(5029)] = 243628, - [SMALL_STATE(5030)] = 243674, - [SMALL_STATE(5031)] = 243720, - [SMALL_STATE(5032)] = 243772, - [SMALL_STATE(5033)] = 243824, - [SMALL_STATE(5034)] = 243874, - [SMALL_STATE(5035)] = 243924, - [SMALL_STATE(5036)] = 243974, - [SMALL_STATE(5037)] = 244024, - [SMALL_STATE(5038)] = 244074, - [SMALL_STATE(5039)] = 244126, - [SMALL_STATE(5040)] = 244176, - [SMALL_STATE(5041)] = 244228, - [SMALL_STATE(5042)] = 244278, - [SMALL_STATE(5043)] = 244328, - [SMALL_STATE(5044)] = 244374, - [SMALL_STATE(5045)] = 244424, - [SMALL_STATE(5046)] = 244474, - [SMALL_STATE(5047)] = 244524, - [SMALL_STATE(5048)] = 244572, - [SMALL_STATE(5049)] = 244622, - [SMALL_STATE(5050)] = 244670, - [SMALL_STATE(5051)] = 244720, - [SMALL_STATE(5052)] = 244768, - [SMALL_STATE(5053)] = 244820, - [SMALL_STATE(5054)] = 244868, - [SMALL_STATE(5055)] = 244914, - [SMALL_STATE(5056)] = 244960, - [SMALL_STATE(5057)] = 245010, - [SMALL_STATE(5058)] = 245060, - [SMALL_STATE(5059)] = 245106, - [SMALL_STATE(5060)] = 245170, - [SMALL_STATE(5061)] = 245222, - [SMALL_STATE(5062)] = 245270, - [SMALL_STATE(5063)] = 245334, - [SMALL_STATE(5064)] = 245380, - [SMALL_STATE(5065)] = 245426, - [SMALL_STATE(5066)] = 245474, - [SMALL_STATE(5067)] = 245522, - [SMALL_STATE(5068)] = 245586, - [SMALL_STATE(5069)] = 245650, - [SMALL_STATE(5070)] = 245700, - [SMALL_STATE(5071)] = 245746, - [SMALL_STATE(5072)] = 245792, - [SMALL_STATE(5073)] = 245838, - [SMALL_STATE(5074)] = 245884, - [SMALL_STATE(5075)] = 245936, - [SMALL_STATE(5076)] = 246000, - [SMALL_STATE(5077)] = 246050, - [SMALL_STATE(5078)] = 246096, - [SMALL_STATE(5079)] = 246142, - [SMALL_STATE(5080)] = 246206, - [SMALL_STATE(5081)] = 246254, - [SMALL_STATE(5082)] = 246306, - [SMALL_STATE(5083)] = 246352, - [SMALL_STATE(5084)] = 246398, - [SMALL_STATE(5085)] = 246448, - [SMALL_STATE(5086)] = 246498, - [SMALL_STATE(5087)] = 246562, - [SMALL_STATE(5088)] = 246626, - [SMALL_STATE(5089)] = 246672, - [SMALL_STATE(5090)] = 246718, - [SMALL_STATE(5091)] = 246764, - [SMALL_STATE(5092)] = 246816, - [SMALL_STATE(5093)] = 246862, - [SMALL_STATE(5094)] = 246910, - [SMALL_STATE(5095)] = 246958, - [SMALL_STATE(5096)] = 247006, - [SMALL_STATE(5097)] = 247056, - [SMALL_STATE(5098)] = 247106, - [SMALL_STATE(5099)] = 247158, - [SMALL_STATE(5100)] = 247222, - [SMALL_STATE(5101)] = 247286, - [SMALL_STATE(5102)] = 247340, - [SMALL_STATE(5103)] = 247404, - [SMALL_STATE(5104)] = 247450, - [SMALL_STATE(5105)] = 247496, - [SMALL_STATE(5106)] = 247546, - [SMALL_STATE(5107)] = 247592, - [SMALL_STATE(5108)] = 247638, - [SMALL_STATE(5109)] = 247702, - [SMALL_STATE(5110)] = 247748, - [SMALL_STATE(5111)] = 247798, - [SMALL_STATE(5112)] = 247846, + [SMALL_STATE(4919)] = 237754, + [SMALL_STATE(4920)] = 237800, + [SMALL_STATE(4921)] = 237848, + [SMALL_STATE(4922)] = 237898, + [SMALL_STATE(4923)] = 237948, + [SMALL_STATE(4924)] = 237998, + [SMALL_STATE(4925)] = 238046, + [SMALL_STATE(4926)] = 238094, + [SMALL_STATE(4927)] = 238146, + [SMALL_STATE(4928)] = 238196, + [SMALL_STATE(4929)] = 238248, + [SMALL_STATE(4930)] = 238296, + [SMALL_STATE(4931)] = 238360, + [SMALL_STATE(4932)] = 238408, + [SMALL_STATE(4933)] = 238456, + [SMALL_STATE(4934)] = 238508, + [SMALL_STATE(4935)] = 238586, + [SMALL_STATE(4936)] = 238650, + [SMALL_STATE(4937)] = 238696, + [SMALL_STATE(4938)] = 238748, + [SMALL_STATE(4939)] = 238796, + [SMALL_STATE(4940)] = 238846, + [SMALL_STATE(4941)] = 238892, + [SMALL_STATE(4942)] = 238938, + [SMALL_STATE(4943)] = 238988, + [SMALL_STATE(4944)] = 239040, + [SMALL_STATE(4945)] = 239090, + [SMALL_STATE(4946)] = 239138, + [SMALL_STATE(4947)] = 239186, + [SMALL_STATE(4948)] = 239232, + [SMALL_STATE(4949)] = 239284, + [SMALL_STATE(4950)] = 239334, + [SMALL_STATE(4951)] = 239380, + [SMALL_STATE(4952)] = 239426, + [SMALL_STATE(4953)] = 239478, + [SMALL_STATE(4954)] = 239530, + [SMALL_STATE(4955)] = 239578, + [SMALL_STATE(4956)] = 239630, + [SMALL_STATE(4957)] = 239682, + [SMALL_STATE(4958)] = 239728, + [SMALL_STATE(4959)] = 239780, + [SMALL_STATE(4960)] = 239828, + [SMALL_STATE(4961)] = 239880, + [SMALL_STATE(4962)] = 239926, + [SMALL_STATE(4963)] = 239990, + [SMALL_STATE(4964)] = 240042, + [SMALL_STATE(4965)] = 240094, + [SMALL_STATE(4966)] = 240140, + [SMALL_STATE(4967)] = 240186, + [SMALL_STATE(4968)] = 240232, + [SMALL_STATE(4969)] = 240278, + [SMALL_STATE(4970)] = 240356, + [SMALL_STATE(4971)] = 240408, + [SMALL_STATE(4972)] = 240454, + [SMALL_STATE(4973)] = 240500, + [SMALL_STATE(4974)] = 240552, + [SMALL_STATE(4975)] = 240606, + [SMALL_STATE(4976)] = 240654, + [SMALL_STATE(4977)] = 240704, + [SMALL_STATE(4978)] = 240754, + [SMALL_STATE(4979)] = 240818, + [SMALL_STATE(4980)] = 240868, + [SMALL_STATE(4981)] = 240920, + [SMALL_STATE(4982)] = 240972, + [SMALL_STATE(4983)] = 241018, + [SMALL_STATE(4984)] = 241078, + [SMALL_STATE(4985)] = 241128, + [SMALL_STATE(4986)] = 241192, + [SMALL_STATE(4987)] = 241246, + [SMALL_STATE(4988)] = 241296, + [SMALL_STATE(4989)] = 241348, + [SMALL_STATE(4990)] = 241398, + [SMALL_STATE(4991)] = 241448, + [SMALL_STATE(4992)] = 241512, + [SMALL_STATE(4993)] = 241562, + [SMALL_STATE(4994)] = 241614, + [SMALL_STATE(4995)] = 241660, + [SMALL_STATE(4996)] = 241708, + [SMALL_STATE(4997)] = 241756, + [SMALL_STATE(4998)] = 241810, + [SMALL_STATE(4999)] = 241862, + [SMALL_STATE(5000)] = 241910, + [SMALL_STATE(5001)] = 241960, + [SMALL_STATE(5002)] = 242004, + [SMALL_STATE(5003)] = 242060, + [SMALL_STATE(5004)] = 242112, + [SMALL_STATE(5005)] = 242178, + [SMALL_STATE(5006)] = 242226, + [SMALL_STATE(5007)] = 242294, + [SMALL_STATE(5008)] = 242346, + [SMALL_STATE(5009)] = 242398, + [SMALL_STATE(5010)] = 242448, + [SMALL_STATE(5011)] = 242494, + [SMALL_STATE(5012)] = 242540, + [SMALL_STATE(5013)] = 242610, + [SMALL_STATE(5014)] = 242662, + [SMALL_STATE(5015)] = 242734, + [SMALL_STATE(5016)] = 242786, + [SMALL_STATE(5017)] = 242836, + [SMALL_STATE(5018)] = 242886, + [SMALL_STATE(5019)] = 242960, + [SMALL_STATE(5020)] = 243006, + [SMALL_STATE(5021)] = 243052, + [SMALL_STATE(5022)] = 243102, + [SMALL_STATE(5023)] = 243150, + [SMALL_STATE(5024)] = 243196, + [SMALL_STATE(5025)] = 243242, + [SMALL_STATE(5026)] = 243290, + [SMALL_STATE(5027)] = 243336, + [SMALL_STATE(5028)] = 243384, + [SMALL_STATE(5029)] = 243430, + [SMALL_STATE(5030)] = 243506, + [SMALL_STATE(5031)] = 243554, + [SMALL_STATE(5032)] = 243602, + [SMALL_STATE(5033)] = 243652, + [SMALL_STATE(5034)] = 243702, + [SMALL_STATE(5035)] = 243780, + [SMALL_STATE(5036)] = 243832, + [SMALL_STATE(5037)] = 243884, + [SMALL_STATE(5038)] = 243936, + [SMALL_STATE(5039)] = 243986, + [SMALL_STATE(5040)] = 244032, + [SMALL_STATE(5041)] = 244078, + [SMALL_STATE(5042)] = 244124, + [SMALL_STATE(5043)] = 244188, + [SMALL_STATE(5044)] = 244234, + [SMALL_STATE(5045)] = 244284, + [SMALL_STATE(5046)] = 244330, + [SMALL_STATE(5047)] = 244380, + [SMALL_STATE(5048)] = 244426, + [SMALL_STATE(5049)] = 244480, + [SMALL_STATE(5050)] = 244532, + [SMALL_STATE(5051)] = 244580, + [SMALL_STATE(5052)] = 244626, + [SMALL_STATE(5053)] = 244680, + [SMALL_STATE(5054)] = 244730, + [SMALL_STATE(5055)] = 244780, + [SMALL_STATE(5056)] = 244830, + [SMALL_STATE(5057)] = 244876, + [SMALL_STATE(5058)] = 244922, + [SMALL_STATE(5059)] = 244976, + [SMALL_STATE(5060)] = 245022, + [SMALL_STATE(5061)] = 245074, + [SMALL_STATE(5062)] = 245126, + [SMALL_STATE(5063)] = 245176, + [SMALL_STATE(5064)] = 245226, + [SMALL_STATE(5065)] = 245278, + [SMALL_STATE(5066)] = 245328, + [SMALL_STATE(5067)] = 245378, + [SMALL_STATE(5068)] = 245442, + [SMALL_STATE(5069)] = 245490, + [SMALL_STATE(5070)] = 245538, + [SMALL_STATE(5071)] = 245590, + [SMALL_STATE(5072)] = 245640, + [SMALL_STATE(5073)] = 245704, + [SMALL_STATE(5074)] = 245752, + [SMALL_STATE(5075)] = 245798, + [SMALL_STATE(5076)] = 245846, + [SMALL_STATE(5077)] = 245894, + [SMALL_STATE(5078)] = 245944, + [SMALL_STATE(5079)] = 245994, + [SMALL_STATE(5080)] = 246046, + [SMALL_STATE(5081)] = 246092, + [SMALL_STATE(5082)] = 246138, + [SMALL_STATE(5083)] = 246184, + [SMALL_STATE(5084)] = 246234, + [SMALL_STATE(5085)] = 246298, + [SMALL_STATE(5086)] = 246358, + [SMALL_STATE(5087)] = 246412, + [SMALL_STATE(5088)] = 246476, + [SMALL_STATE(5089)] = 246528, + [SMALL_STATE(5090)] = 246576, + [SMALL_STATE(5091)] = 246632, + [SMALL_STATE(5092)] = 246698, + [SMALL_STATE(5093)] = 246766, + [SMALL_STATE(5094)] = 246836, + [SMALL_STATE(5095)] = 246908, + [SMALL_STATE(5096)] = 246982, + [SMALL_STATE(5097)] = 247058, + [SMALL_STATE(5098)] = 247136, + [SMALL_STATE(5099)] = 247182, + [SMALL_STATE(5100)] = 247232, + [SMALL_STATE(5101)] = 247278, + [SMALL_STATE(5102)] = 247328, + [SMALL_STATE(5103)] = 247376, + [SMALL_STATE(5104)] = 247422, + [SMALL_STATE(5105)] = 247476, + [SMALL_STATE(5106)] = 247540, + [SMALL_STATE(5107)] = 247588, + [SMALL_STATE(5108)] = 247634, + [SMALL_STATE(5109)] = 247680, + [SMALL_STATE(5110)] = 247732, + [SMALL_STATE(5111)] = 247780, + [SMALL_STATE(5112)] = 247830, [SMALL_STATE(5113)] = 247894, - [SMALL_STATE(5114)] = 247940, - [SMALL_STATE(5115)] = 247992, - [SMALL_STATE(5116)] = 248042, - [SMALL_STATE(5117)] = 248094, - [SMALL_STATE(5118)] = 248144, - [SMALL_STATE(5119)] = 248196, - [SMALL_STATE(5120)] = 248242, - [SMALL_STATE(5121)] = 248296, + [SMALL_STATE(5114)] = 247942, + [SMALL_STATE(5115)] = 247988, + [SMALL_STATE(5116)] = 248040, + [SMALL_STATE(5117)] = 248090, + [SMALL_STATE(5118)] = 248138, + [SMALL_STATE(5119)] = 248188, + [SMALL_STATE(5120)] = 248252, + [SMALL_STATE(5121)] = 248302, [SMALL_STATE(5122)] = 248348, [SMALL_STATE(5123)] = 248393, - [SMALL_STATE(5124)] = 248440, - [SMALL_STATE(5125)] = 248513, - [SMALL_STATE(5126)] = 248562, - [SMALL_STATE(5127)] = 248611, - [SMALL_STATE(5128)] = 248660, - [SMALL_STATE(5129)] = 248713, - [SMALL_STATE(5130)] = 248760, - [SMALL_STATE(5131)] = 248807, - [SMALL_STATE(5132)] = 248854, - [SMALL_STATE(5133)] = 248903, - [SMALL_STATE(5134)] = 248952, - [SMALL_STATE(5135)] = 248999, - [SMALL_STATE(5136)] = 249046, - [SMALL_STATE(5137)] = 249095, - [SMALL_STATE(5138)] = 249140, - [SMALL_STATE(5139)] = 249189, - [SMALL_STATE(5140)] = 249240, - [SMALL_STATE(5141)] = 249289, - [SMALL_STATE(5142)] = 249336, - [SMALL_STATE(5143)] = 249385, - [SMALL_STATE(5144)] = 249432, - [SMALL_STATE(5145)] = 249481, - [SMALL_STATE(5146)] = 249532, - [SMALL_STATE(5147)] = 249581, - [SMALL_STATE(5148)] = 249630, - [SMALL_STATE(5149)] = 249681, - [SMALL_STATE(5150)] = 249726, - [SMALL_STATE(5151)] = 249771, - [SMALL_STATE(5152)] = 249820, - [SMALL_STATE(5153)] = 249867, - [SMALL_STATE(5154)] = 249912, - [SMALL_STATE(5155)] = 249957, - [SMALL_STATE(5156)] = 250004, - [SMALL_STATE(5157)] = 250049, - [SMALL_STATE(5158)] = 250100, - [SMALL_STATE(5159)] = 250145, - [SMALL_STATE(5160)] = 250192, - [SMALL_STATE(5161)] = 250241, - [SMALL_STATE(5162)] = 250288, - [SMALL_STATE(5163)] = 250335, - [SMALL_STATE(5164)] = 250386, - [SMALL_STATE(5165)] = 250431, - [SMALL_STATE(5166)] = 250476, - [SMALL_STATE(5167)] = 250531, - [SMALL_STATE(5168)] = 250576, - [SMALL_STATE(5169)] = 250627, - [SMALL_STATE(5170)] = 250672, - [SMALL_STATE(5171)] = 250719, - [SMALL_STATE(5172)] = 250764, - [SMALL_STATE(5173)] = 250809, - [SMALL_STATE(5174)] = 250866, - [SMALL_STATE(5175)] = 250911, - [SMALL_STATE(5176)] = 250960, - [SMALL_STATE(5177)] = 251005, - [SMALL_STATE(5178)] = 251052, - [SMALL_STATE(5179)] = 251097, - [SMALL_STATE(5180)] = 251150, - [SMALL_STATE(5181)] = 251195, - [SMALL_STATE(5182)] = 251254, - [SMALL_STATE(5183)] = 251299, - [SMALL_STATE(5184)] = 251360, - [SMALL_STATE(5185)] = 251405, - [SMALL_STATE(5186)] = 251468, - [SMALL_STATE(5187)] = 251513, - [SMALL_STATE(5188)] = 251578, - [SMALL_STATE(5189)] = 251623, - [SMALL_STATE(5190)] = 251690, - [SMALL_STATE(5191)] = 251735, - [SMALL_STATE(5192)] = 251804, - [SMALL_STATE(5193)] = 251849, - [SMALL_STATE(5194)] = 251920, - [SMALL_STATE(5195)] = 251965, - [SMALL_STATE(5196)] = 252012, - [SMALL_STATE(5197)] = 252059, - [SMALL_STATE(5198)] = 252108, - [SMALL_STATE(5199)] = 252153, - [SMALL_STATE(5200)] = 252204, - [SMALL_STATE(5201)] = 252249, - [SMALL_STATE(5202)] = 252300, - [SMALL_STATE(5203)] = 252345, - [SMALL_STATE(5204)] = 252392, - [SMALL_STATE(5205)] = 252437, - [SMALL_STATE(5206)] = 252484, - [SMALL_STATE(5207)] = 252535, - [SMALL_STATE(5208)] = 252580, - [SMALL_STATE(5209)] = 252625, - [SMALL_STATE(5210)] = 252674, - [SMALL_STATE(5211)] = 252723, - [SMALL_STATE(5212)] = 252770, - [SMALL_STATE(5213)] = 252815, - [SMALL_STATE(5214)] = 252866, - [SMALL_STATE(5215)] = 252913, - [SMALL_STATE(5216)] = 252960, - [SMALL_STATE(5217)] = 253009, - [SMALL_STATE(5218)] = 253060, - [SMALL_STATE(5219)] = 253109, - [SMALL_STATE(5220)] = 253154, - [SMALL_STATE(5221)] = 253201, - [SMALL_STATE(5222)] = 253246, - [SMALL_STATE(5223)] = 253293, - [SMALL_STATE(5224)] = 253340, - [SMALL_STATE(5225)] = 253387, - [SMALL_STATE(5226)] = 253434, - [SMALL_STATE(5227)] = 253479, - [SMALL_STATE(5228)] = 253524, - [SMALL_STATE(5229)] = 253569, - [SMALL_STATE(5230)] = 253616, - [SMALL_STATE(5231)] = 253663, - [SMALL_STATE(5232)] = 253708, - [SMALL_STATE(5233)] = 253755, - [SMALL_STATE(5234)] = 253806, - [SMALL_STATE(5235)] = 253855, - [SMALL_STATE(5236)] = 253902, - [SMALL_STATE(5237)] = 253951, - [SMALL_STATE(5238)] = 254000, - [SMALL_STATE(5239)] = 254047, - [SMALL_STATE(5240)] = 254094, - [SMALL_STATE(5241)] = 254145, - [SMALL_STATE(5242)] = 254192, - [SMALL_STATE(5243)] = 254239, - [SMALL_STATE(5244)] = 254290, - [SMALL_STATE(5245)] = 254337, - [SMALL_STATE(5246)] = 254384, - [SMALL_STATE(5247)] = 254433, - [SMALL_STATE(5248)] = 254478, - [SMALL_STATE(5249)] = 254527, - [SMALL_STATE(5250)] = 254574, - [SMALL_STATE(5251)] = 254623, - [SMALL_STATE(5252)] = 254670, - [SMALL_STATE(5253)] = 254721, - [SMALL_STATE(5254)] = 254766, - [SMALL_STATE(5255)] = 254815, - [SMALL_STATE(5256)] = 254866, - [SMALL_STATE(5257)] = 254911, - [SMALL_STATE(5258)] = 254956, - [SMALL_STATE(5259)] = 255005, - [SMALL_STATE(5260)] = 255056, - [SMALL_STATE(5261)] = 255101, - [SMALL_STATE(5262)] = 255146, - [SMALL_STATE(5263)] = 255191, - [SMALL_STATE(5264)] = 255236, - [SMALL_STATE(5265)] = 255283, - [SMALL_STATE(5266)] = 255328, - [SMALL_STATE(5267)] = 255373, - [SMALL_STATE(5268)] = 255418, - [SMALL_STATE(5269)] = 255463, - [SMALL_STATE(5270)] = 255508, - [SMALL_STATE(5271)] = 255553, - [SMALL_STATE(5272)] = 255598, - [SMALL_STATE(5273)] = 255643, - [SMALL_STATE(5274)] = 255688, - [SMALL_STATE(5275)] = 255739, - [SMALL_STATE(5276)] = 255790, - [SMALL_STATE(5277)] = 255843, - [SMALL_STATE(5278)] = 255888, - [SMALL_STATE(5279)] = 255939, - [SMALL_STATE(5280)] = 255984, - [SMALL_STATE(5281)] = 256029, - [SMALL_STATE(5282)] = 256076, - [SMALL_STATE(5283)] = 256121, - [SMALL_STATE(5284)] = 256166, - [SMALL_STATE(5285)] = 256217, - [SMALL_STATE(5286)] = 256264, - [SMALL_STATE(5287)] = 256313, - [SMALL_STATE(5288)] = 256358, - [SMALL_STATE(5289)] = 256403, - [SMALL_STATE(5290)] = 256454, - [SMALL_STATE(5291)] = 256499, - [SMALL_STATE(5292)] = 256544, - [SMALL_STATE(5293)] = 256593, - [SMALL_STATE(5294)] = 256638, - [SMALL_STATE(5295)] = 256683, - [SMALL_STATE(5296)] = 256732, - [SMALL_STATE(5297)] = 256777, - [SMALL_STATE(5298)] = 256822, - [SMALL_STATE(5299)] = 256871, - [SMALL_STATE(5300)] = 256916, - [SMALL_STATE(5301)] = 256963, - [SMALL_STATE(5302)] = 257022, - [SMALL_STATE(5303)] = 257075, - [SMALL_STATE(5304)] = 257138, - [SMALL_STATE(5305)] = 257189, - [SMALL_STATE(5306)] = 257234, - [SMALL_STATE(5307)] = 257281, - [SMALL_STATE(5308)] = 257326, - [SMALL_STATE(5309)] = 257381, - [SMALL_STATE(5310)] = 257432, - [SMALL_STATE(5311)] = 257477, - [SMALL_STATE(5312)] = 257526, - [SMALL_STATE(5313)] = 257577, - [SMALL_STATE(5314)] = 257628, - [SMALL_STATE(5315)] = 257693, - [SMALL_STATE(5316)] = 257760, - [SMALL_STATE(5317)] = 257829, - [SMALL_STATE(5318)] = 257900, - [SMALL_STATE(5319)] = 257949, - [SMALL_STATE(5320)] = 258000, - [SMALL_STATE(5321)] = 258045, - [SMALL_STATE(5322)] = 258118, - [SMALL_STATE(5323)] = 258163, - [SMALL_STATE(5324)] = 258208, - [SMALL_STATE(5325)] = 258255, - [SMALL_STATE(5326)] = 258306, - [SMALL_STATE(5327)] = 258351, - [SMALL_STATE(5328)] = 258396, - [SMALL_STATE(5329)] = 258441, - [SMALL_STATE(5330)] = 258486, - [SMALL_STATE(5331)] = 258537, - [SMALL_STATE(5332)] = 258582, - [SMALL_STATE(5333)] = 258629, - [SMALL_STATE(5334)] = 258676, - [SMALL_STATE(5335)] = 258721, - [SMALL_STATE(5336)] = 258766, - [SMALL_STATE(5337)] = 258841, - [SMALL_STATE(5338)] = 258888, - [SMALL_STATE(5339)] = 258937, - [SMALL_STATE(5340)] = 259014, - [SMALL_STATE(5341)] = 259059, - [SMALL_STATE(5342)] = 259106, - [SMALL_STATE(5343)] = 259153, - [SMALL_STATE(5344)] = 259200, - [SMALL_STATE(5345)] = 259247, - [SMALL_STATE(5346)] = 259292, - [SMALL_STATE(5347)] = 259341, - [SMALL_STATE(5348)] = 259386, - [SMALL_STATE(5349)] = 259431, - [SMALL_STATE(5350)] = 259480, + [SMALL_STATE(5124)] = 248444, + [SMALL_STATE(5125)] = 248489, + [SMALL_STATE(5126)] = 248536, + [SMALL_STATE(5127)] = 248583, + [SMALL_STATE(5128)] = 248632, + [SMALL_STATE(5129)] = 248679, + [SMALL_STATE(5130)] = 248728, + [SMALL_STATE(5131)] = 248777, + [SMALL_STATE(5132)] = 248822, + [SMALL_STATE(5133)] = 248867, + [SMALL_STATE(5134)] = 248912, + [SMALL_STATE(5135)] = 248963, + [SMALL_STATE(5136)] = 249012, + [SMALL_STATE(5137)] = 249057, + [SMALL_STATE(5138)] = 249106, + [SMALL_STATE(5139)] = 249155, + [SMALL_STATE(5140)] = 249204, + [SMALL_STATE(5141)] = 249249, + [SMALL_STATE(5142)] = 249294, + [SMALL_STATE(5143)] = 249339, + [SMALL_STATE(5144)] = 249388, + [SMALL_STATE(5145)] = 249433, + [SMALL_STATE(5146)] = 249480, + [SMALL_STATE(5147)] = 249525, + [SMALL_STATE(5148)] = 249576, + [SMALL_STATE(5149)] = 249621, + [SMALL_STATE(5150)] = 249672, + [SMALL_STATE(5151)] = 249717, + [SMALL_STATE(5152)] = 249762, + [SMALL_STATE(5153)] = 249811, + [SMALL_STATE(5154)] = 249860, + [SMALL_STATE(5155)] = 249911, + [SMALL_STATE(5156)] = 249960, + [SMALL_STATE(5157)] = 250009, + [SMALL_STATE(5158)] = 250058, + [SMALL_STATE(5159)] = 250103, + [SMALL_STATE(5160)] = 250148, + [SMALL_STATE(5161)] = 250193, + [SMALL_STATE(5162)] = 250242, + [SMALL_STATE(5163)] = 250289, + [SMALL_STATE(5164)] = 250338, + [SMALL_STATE(5165)] = 250387, + [SMALL_STATE(5166)] = 250434, + [SMALL_STATE(5167)] = 250479, + [SMALL_STATE(5168)] = 250530, + [SMALL_STATE(5169)] = 250579, + [SMALL_STATE(5170)] = 250624, + [SMALL_STATE(5171)] = 250669, + [SMALL_STATE(5172)] = 250714, + [SMALL_STATE(5173)] = 250763, + [SMALL_STATE(5174)] = 250810, + [SMALL_STATE(5175)] = 250857, + [SMALL_STATE(5176)] = 250902, + [SMALL_STATE(5177)] = 250947, + [SMALL_STATE(5178)] = 250996, + [SMALL_STATE(5179)] = 251041, + [SMALL_STATE(5180)] = 251092, + [SMALL_STATE(5181)] = 251137, + [SMALL_STATE(5182)] = 251182, + [SMALL_STATE(5183)] = 251231, + [SMALL_STATE(5184)] = 251278, + [SMALL_STATE(5185)] = 251325, + [SMALL_STATE(5186)] = 251372, + [SMALL_STATE(5187)] = 251423, + [SMALL_STATE(5188)] = 251474, + [SMALL_STATE(5189)] = 251519, + [SMALL_STATE(5190)] = 251564, + [SMALL_STATE(5191)] = 251609, + [SMALL_STATE(5192)] = 251654, + [SMALL_STATE(5193)] = 251699, + [SMALL_STATE(5194)] = 251744, + [SMALL_STATE(5195)] = 251791, + [SMALL_STATE(5196)] = 251842, + [SMALL_STATE(5197)] = 251889, + [SMALL_STATE(5198)] = 251934, + [SMALL_STATE(5199)] = 251979, + [SMALL_STATE(5200)] = 252030, + [SMALL_STATE(5201)] = 252077, + [SMALL_STATE(5202)] = 252122, + [SMALL_STATE(5203)] = 252171, + [SMALL_STATE(5204)] = 252218, + [SMALL_STATE(5205)] = 252263, + [SMALL_STATE(5206)] = 252314, + [SMALL_STATE(5207)] = 252359, + [SMALL_STATE(5208)] = 252406, + [SMALL_STATE(5209)] = 252457, + [SMALL_STATE(5210)] = 252504, + [SMALL_STATE(5211)] = 252559, + [SMALL_STATE(5212)] = 252610, + [SMALL_STATE(5213)] = 252661, + [SMALL_STATE(5214)] = 252708, + [SMALL_STATE(5215)] = 252753, + [SMALL_STATE(5216)] = 252804, + [SMALL_STATE(5217)] = 252849, + [SMALL_STATE(5218)] = 252906, + [SMALL_STATE(5219)] = 252955, + [SMALL_STATE(5220)] = 253000, + [SMALL_STATE(5221)] = 253049, + [SMALL_STATE(5222)] = 253096, + [SMALL_STATE(5223)] = 253141, + [SMALL_STATE(5224)] = 253192, + [SMALL_STATE(5225)] = 253241, + [SMALL_STATE(5226)] = 253286, + [SMALL_STATE(5227)] = 253333, + [SMALL_STATE(5228)] = 253380, + [SMALL_STATE(5229)] = 253425, + [SMALL_STATE(5230)] = 253470, + [SMALL_STATE(5231)] = 253517, + [SMALL_STATE(5232)] = 253568, + [SMALL_STATE(5233)] = 253613, + [SMALL_STATE(5234)] = 253658, + [SMALL_STATE(5235)] = 253705, + [SMALL_STATE(5236)] = 253756, + [SMALL_STATE(5237)] = 253805, + [SMALL_STATE(5238)] = 253854, + [SMALL_STATE(5239)] = 253899, + [SMALL_STATE(5240)] = 253948, + [SMALL_STATE(5241)] = 253993, + [SMALL_STATE(5242)] = 254038, + [SMALL_STATE(5243)] = 254085, + [SMALL_STATE(5244)] = 254134, + [SMALL_STATE(5245)] = 254179, + [SMALL_STATE(5246)] = 254224, + [SMALL_STATE(5247)] = 254275, + [SMALL_STATE(5248)] = 254320, + [SMALL_STATE(5249)] = 254365, + [SMALL_STATE(5250)] = 254416, + [SMALL_STATE(5251)] = 254465, + [SMALL_STATE(5252)] = 254510, + [SMALL_STATE(5253)] = 254561, + [SMALL_STATE(5254)] = 254608, + [SMALL_STATE(5255)] = 254653, + [SMALL_STATE(5256)] = 254700, + [SMALL_STATE(5257)] = 254747, + [SMALL_STATE(5258)] = 254796, + [SMALL_STATE(5259)] = 254841, + [SMALL_STATE(5260)] = 254890, + [SMALL_STATE(5261)] = 254935, + [SMALL_STATE(5262)] = 254982, + [SMALL_STATE(5263)] = 255027, + [SMALL_STATE(5264)] = 255080, + [SMALL_STATE(5265)] = 255129, + [SMALL_STATE(5266)] = 255174, + [SMALL_STATE(5267)] = 255219, + [SMALL_STATE(5268)] = 255268, + [SMALL_STATE(5269)] = 255313, + [SMALL_STATE(5270)] = 255362, + [SMALL_STATE(5271)] = 255421, + [SMALL_STATE(5272)] = 255466, + [SMALL_STATE(5273)] = 255513, + [SMALL_STATE(5274)] = 255560, + [SMALL_STATE(5275)] = 255607, + [SMALL_STATE(5276)] = 255654, + [SMALL_STATE(5277)] = 255713, + [SMALL_STATE(5278)] = 255766, + [SMALL_STATE(5279)] = 255829, + [SMALL_STATE(5280)] = 255880, + [SMALL_STATE(5281)] = 255927, + [SMALL_STATE(5282)] = 255982, + [SMALL_STATE(5283)] = 256047, + [SMALL_STATE(5284)] = 256114, + [SMALL_STATE(5285)] = 256183, + [SMALL_STATE(5286)] = 256254, + [SMALL_STATE(5287)] = 256327, + [SMALL_STATE(5288)] = 256402, + [SMALL_STATE(5289)] = 256479, + [SMALL_STATE(5290)] = 256526, + [SMALL_STATE(5291)] = 256587, + [SMALL_STATE(5292)] = 256636, + [SMALL_STATE(5293)] = 256685, + [SMALL_STATE(5294)] = 256730, + [SMALL_STATE(5295)] = 256803, + [SMALL_STATE(5296)] = 256850, + [SMALL_STATE(5297)] = 256895, + [SMALL_STATE(5298)] = 256940, + [SMALL_STATE(5299)] = 256987, + [SMALL_STATE(5300)] = 257038, + [SMALL_STATE(5301)] = 257083, + [SMALL_STATE(5302)] = 257130, + [SMALL_STATE(5303)] = 257177, + [SMALL_STATE(5304)] = 257224, + [SMALL_STATE(5305)] = 257269, + [SMALL_STATE(5306)] = 257314, + [SMALL_STATE(5307)] = 257359, + [SMALL_STATE(5308)] = 257408, + [SMALL_STATE(5309)] = 257459, + [SMALL_STATE(5310)] = 257504, + [SMALL_STATE(5311)] = 257549, + [SMALL_STATE(5312)] = 257612, + [SMALL_STATE(5313)] = 257657, + [SMALL_STATE(5314)] = 257702, + [SMALL_STATE(5315)] = 257749, + [SMALL_STATE(5316)] = 257802, + [SMALL_STATE(5317)] = 257849, + [SMALL_STATE(5318)] = 257894, + [SMALL_STATE(5319)] = 257939, + [SMALL_STATE(5320)] = 257984, + [SMALL_STATE(5321)] = 258031, + [SMALL_STATE(5322)] = 258080, + [SMALL_STATE(5323)] = 258129, + [SMALL_STATE(5324)] = 258176, + [SMALL_STATE(5325)] = 258241, + [SMALL_STATE(5326)] = 258286, + [SMALL_STATE(5327)] = 258331, + [SMALL_STATE(5328)] = 258376, + [SMALL_STATE(5329)] = 258423, + [SMALL_STATE(5330)] = 258468, + [SMALL_STATE(5331)] = 258519, + [SMALL_STATE(5332)] = 258564, + [SMALL_STATE(5333)] = 258611, + [SMALL_STATE(5334)] = 258660, + [SMALL_STATE(5335)] = 258727, + [SMALL_STATE(5336)] = 258772, + [SMALL_STATE(5337)] = 258817, + [SMALL_STATE(5338)] = 258864, + [SMALL_STATE(5339)] = 258909, + [SMALL_STATE(5340)] = 258954, + [SMALL_STATE(5341)] = 259005, + [SMALL_STATE(5342)] = 259074, + [SMALL_STATE(5343)] = 259119, + [SMALL_STATE(5344)] = 259166, + [SMALL_STATE(5345)] = 259211, + [SMALL_STATE(5346)] = 259258, + [SMALL_STATE(5347)] = 259329, + [SMALL_STATE(5348)] = 259374, + [SMALL_STATE(5349)] = 259425, + [SMALL_STATE(5350)] = 259478, [SMALL_STATE(5351)] = 259525, [SMALL_STATE(5352)] = 259570, - [SMALL_STATE(5353)] = 259621, - [SMALL_STATE(5354)] = 259668, - [SMALL_STATE(5355)] = 259713, - [SMALL_STATE(5356)] = 259760, - [SMALL_STATE(5357)] = 259805, - [SMALL_STATE(5358)] = 259852, - [SMALL_STATE(5359)] = 259897, - [SMALL_STATE(5360)] = 259942, - [SMALL_STATE(5361)] = 259989, - [SMALL_STATE(5362)] = 260034, - [SMALL_STATE(5363)] = 260083, - [SMALL_STATE(5364)] = 260132, - [SMALL_STATE(5365)] = 260177, - [SMALL_STATE(5366)] = 260222, - [SMALL_STATE(5367)] = 260271, + [SMALL_STATE(5353)] = 259617, + [SMALL_STATE(5354)] = 259662, + [SMALL_STATE(5355)] = 259707, + [SMALL_STATE(5356)] = 259754, + [SMALL_STATE(5357)] = 259801, + [SMALL_STATE(5358)] = 259848, + [SMALL_STATE(5359)] = 259893, + [SMALL_STATE(5360)] = 259940, + [SMALL_STATE(5361)] = 259991, + [SMALL_STATE(5362)] = 260042, + [SMALL_STATE(5363)] = 260089, + [SMALL_STATE(5364)] = 260134, + [SMALL_STATE(5365)] = 260179, + [SMALL_STATE(5366)] = 260226, + [SMALL_STATE(5367)] = 260273, [SMALL_STATE(5368)] = 260318, [SMALL_STATE(5369)] = 260363, [SMALL_STATE(5370)] = 260407, [SMALL_STATE(5371)] = 260451, [SMALL_STATE(5372)] = 260495, [SMALL_STATE(5373)] = 260539, - [SMALL_STATE(5374)] = 260593, - [SMALL_STATE(5375)] = 260637, - [SMALL_STATE(5376)] = 260687, - [SMALL_STATE(5377)] = 260731, - [SMALL_STATE(5378)] = 260787, - [SMALL_STATE(5379)] = 260831, - [SMALL_STATE(5380)] = 260879, - [SMALL_STATE(5381)] = 260923, - [SMALL_STATE(5382)] = 260967, - [SMALL_STATE(5383)] = 261013, - [SMALL_STATE(5384)] = 261057, - [SMALL_STATE(5385)] = 261101, - [SMALL_STATE(5386)] = 261145, - [SMALL_STATE(5387)] = 261197, - [SMALL_STATE(5388)] = 261241, - [SMALL_STATE(5389)] = 261299, - [SMALL_STATE(5390)] = 261343, + [SMALL_STATE(5374)] = 260585, + [SMALL_STATE(5375)] = 260655, + [SMALL_STATE(5376)] = 260699, + [SMALL_STATE(5377)] = 260743, + [SMALL_STATE(5378)] = 260793, + [SMALL_STATE(5379)] = 260839, + [SMALL_STATE(5380)] = 260909, + [SMALL_STATE(5381)] = 260953, + [SMALL_STATE(5382)] = 260997, + [SMALL_STATE(5383)] = 261045, + [SMALL_STATE(5384)] = 261089, + [SMALL_STATE(5385)] = 261133, + [SMALL_STATE(5386)] = 261181, + [SMALL_STATE(5387)] = 261225, + [SMALL_STATE(5388)] = 261269, + [SMALL_STATE(5389)] = 261313, + [SMALL_STATE(5390)] = 261357, [SMALL_STATE(5391)] = 261403, [SMALL_STATE(5392)] = 261447, - [SMALL_STATE(5393)] = 261509, - [SMALL_STATE(5394)] = 261553, - [SMALL_STATE(5395)] = 261597, - [SMALL_STATE(5396)] = 261661, - [SMALL_STATE(5397)] = 261705, - [SMALL_STATE(5398)] = 261771, - [SMALL_STATE(5399)] = 261815, - [SMALL_STATE(5400)] = 261883, - [SMALL_STATE(5401)] = 261927, - [SMALL_STATE(5402)] = 261997, - [SMALL_STATE(5403)] = 262041, - [SMALL_STATE(5404)] = 262085, - [SMALL_STATE(5405)] = 262129, - [SMALL_STATE(5406)] = 262173, - [SMALL_STATE(5407)] = 262217, - [SMALL_STATE(5408)] = 262261, - [SMALL_STATE(5409)] = 262305, - [SMALL_STATE(5410)] = 262349, - [SMALL_STATE(5411)] = 262399, - [SMALL_STATE(5412)] = 262447, - [SMALL_STATE(5413)] = 262491, - [SMALL_STATE(5414)] = 262535, - [SMALL_STATE(5415)] = 262583, - [SMALL_STATE(5416)] = 262627, - [SMALL_STATE(5417)] = 262697, - [SMALL_STATE(5418)] = 262745, - [SMALL_STATE(5419)] = 262815, - [SMALL_STATE(5420)] = 262885, - [SMALL_STATE(5421)] = 262935, - [SMALL_STATE(5422)] = 262981, - [SMALL_STATE(5423)] = 263027, - [SMALL_STATE(5424)] = 263071, - [SMALL_STATE(5425)] = 263121, - [SMALL_STATE(5426)] = 263165, - [SMALL_STATE(5427)] = 263209, - [SMALL_STATE(5428)] = 263255, - [SMALL_STATE(5429)] = 263305, - [SMALL_STATE(5430)] = 263351, - [SMALL_STATE(5431)] = 263397, - [SMALL_STATE(5432)] = 263441, - [SMALL_STATE(5433)] = 263485, - [SMALL_STATE(5434)] = 263555, - [SMALL_STATE(5435)] = 263601, - [SMALL_STATE(5436)] = 263647, - [SMALL_STATE(5437)] = 263693, - [SMALL_STATE(5438)] = 263741, - [SMALL_STATE(5439)] = 263785, - [SMALL_STATE(5440)] = 263829, - [SMALL_STATE(5441)] = 263873, - [SMALL_STATE(5442)] = 263917, - [SMALL_STATE(5443)] = 263961, - [SMALL_STATE(5444)] = 264005, - [SMALL_STATE(5445)] = 264051, - [SMALL_STATE(5446)] = 264099, - [SMALL_STATE(5447)] = 264149, - [SMALL_STATE(5448)] = 264193, - [SMALL_STATE(5449)] = 264237, - [SMALL_STATE(5450)] = 264287, - [SMALL_STATE(5451)] = 264331, - [SMALL_STATE(5452)] = 264381, - [SMALL_STATE(5453)] = 264425, - [SMALL_STATE(5454)] = 264469, - [SMALL_STATE(5455)] = 264513, - [SMALL_STATE(5456)] = 264557, - [SMALL_STATE(5457)] = 264601, - [SMALL_STATE(5458)] = 264645, - [SMALL_STATE(5459)] = 264689, - [SMALL_STATE(5460)] = 264733, - [SMALL_STATE(5461)] = 264807, - [SMALL_STATE(5462)] = 264851, - [SMALL_STATE(5463)] = 264895, - [SMALL_STATE(5464)] = 264939, - [SMALL_STATE(5465)] = 265011, - [SMALL_STATE(5466)] = 265057, - [SMALL_STATE(5467)] = 265101, - [SMALL_STATE(5468)] = 265145, - [SMALL_STATE(5469)] = 265189, - [SMALL_STATE(5470)] = 265233, - [SMALL_STATE(5471)] = 265277, - [SMALL_STATE(5472)] = 265321, - [SMALL_STATE(5473)] = 265365, - [SMALL_STATE(5474)] = 265409, - [SMALL_STATE(5475)] = 265479, - [SMALL_STATE(5476)] = 265523, - [SMALL_STATE(5477)] = 265591, - [SMALL_STATE(5478)] = 265635, - [SMALL_STATE(5479)] = 265679, - [SMALL_STATE(5480)] = 265723, - [SMALL_STATE(5481)] = 265767, - [SMALL_STATE(5482)] = 265811, - [SMALL_STATE(5483)] = 265877, - [SMALL_STATE(5484)] = 265921, - [SMALL_STATE(5485)] = 265985, - [SMALL_STATE(5486)] = 266029, - [SMALL_STATE(5487)] = 266091, - [SMALL_STATE(5488)] = 266135, - [SMALL_STATE(5489)] = 266189, - [SMALL_STATE(5490)] = 266233, - [SMALL_STATE(5491)] = 266279, - [SMALL_STATE(5492)] = 266323, - [SMALL_STATE(5493)] = 266377, - [SMALL_STATE(5494)] = 266421, - [SMALL_STATE(5495)] = 266481, - [SMALL_STATE(5496)] = 266525, - [SMALL_STATE(5497)] = 266577, - [SMALL_STATE(5498)] = 266621, - [SMALL_STATE(5499)] = 266679, - [SMALL_STATE(5500)] = 266723, - [SMALL_STATE(5501)] = 266767, - [SMALL_STATE(5502)] = 266813, - [SMALL_STATE(5503)] = 266857, - [SMALL_STATE(5504)] = 266901, - [SMALL_STATE(5505)] = 266947, - [SMALL_STATE(5506)] = 266991, - [SMALL_STATE(5507)] = 267041, - [SMALL_STATE(5508)] = 267087, - [SMALL_STATE(5509)] = 267131, - [SMALL_STATE(5510)] = 267175, - [SMALL_STATE(5511)] = 267223, - [SMALL_STATE(5512)] = 267267, - [SMALL_STATE(5513)] = 267339, - [SMALL_STATE(5514)] = 267383, - [SMALL_STATE(5515)] = 267427, - [SMALL_STATE(5516)] = 267471, - [SMALL_STATE(5517)] = 267515, - [SMALL_STATE(5518)] = 267559, - [SMALL_STATE(5519)] = 267603, - [SMALL_STATE(5520)] = 267649, - [SMALL_STATE(5521)] = 267699, - [SMALL_STATE(5522)] = 267749, - [SMALL_STATE(5523)] = 267793, - [SMALL_STATE(5524)] = 267837, - [SMALL_STATE(5525)] = 267881, - [SMALL_STATE(5526)] = 267925, - [SMALL_STATE(5527)] = 267969, - [SMALL_STATE(5528)] = 268013, - [SMALL_STATE(5529)] = 268057, - [SMALL_STATE(5530)] = 268101, - [SMALL_STATE(5531)] = 268145, - [SMALL_STATE(5532)] = 268189, - [SMALL_STATE(5533)] = 268233, - [SMALL_STATE(5534)] = 268277, - [SMALL_STATE(5535)] = 268321, - [SMALL_STATE(5536)] = 268369, - [SMALL_STATE(5537)] = 268413, - [SMALL_STATE(5538)] = 268457, - [SMALL_STATE(5539)] = 268501, - [SMALL_STATE(5540)] = 268545, - [SMALL_STATE(5541)] = 268593, - [SMALL_STATE(5542)] = 268637, - [SMALL_STATE(5543)] = 268681, - [SMALL_STATE(5544)] = 268727, - [SMALL_STATE(5545)] = 268771, - [SMALL_STATE(5546)] = 268817, - [SMALL_STATE(5547)] = 268861, - [SMALL_STATE(5548)] = 268905, - [SMALL_STATE(5549)] = 268949, - [SMALL_STATE(5550)] = 268999, - [SMALL_STATE(5551)] = 269043, - [SMALL_STATE(5552)] = 269089, - [SMALL_STATE(5553)] = 269133, - [SMALL_STATE(5554)] = 269183, - [SMALL_STATE(5555)] = 269227, - [SMALL_STATE(5556)] = 269271, - [SMALL_STATE(5557)] = 269315, - [SMALL_STATE(5558)] = 269359, - [SMALL_STATE(5559)] = 269403, - [SMALL_STATE(5560)] = 269447, - [SMALL_STATE(5561)] = 269491, - [SMALL_STATE(5562)] = 269535, - [SMALL_STATE(5563)] = 269579, - [SMALL_STATE(5564)] = 269625, - [SMALL_STATE(5565)] = 269669, - [SMALL_STATE(5566)] = 269713, - [SMALL_STATE(5567)] = 269759, - [SMALL_STATE(5568)] = 269803, - [SMALL_STATE(5569)] = 269847, - [SMALL_STATE(5570)] = 269891, - [SMALL_STATE(5571)] = 269935, - [SMALL_STATE(5572)] = 269979, - [SMALL_STATE(5573)] = 270023, - [SMALL_STATE(5574)] = 270067, - [SMALL_STATE(5575)] = 270111, - [SMALL_STATE(5576)] = 270155, - [SMALL_STATE(5577)] = 270199, - [SMALL_STATE(5578)] = 270243, - [SMALL_STATE(5579)] = 270291, - [SMALL_STATE(5580)] = 270337, - [SMALL_STATE(5581)] = 270383, - [SMALL_STATE(5582)] = 270427, - [SMALL_STATE(5583)] = 270471, - [SMALL_STATE(5584)] = 270515, - [SMALL_STATE(5585)] = 270563, - [SMALL_STATE(5586)] = 270607, - [SMALL_STATE(5587)] = 270651, - [SMALL_STATE(5588)] = 270695, - [SMALL_STATE(5589)] = 270741, - [SMALL_STATE(5590)] = 270785, - [SMALL_STATE(5591)] = 270835, - [SMALL_STATE(5592)] = 270879, - [SMALL_STATE(5593)] = 270923, - [SMALL_STATE(5594)] = 270967, - [SMALL_STATE(5595)] = 271011, - [SMALL_STATE(5596)] = 271063, - [SMALL_STATE(5597)] = 271107, - [SMALL_STATE(5598)] = 271153, - [SMALL_STATE(5599)] = 271197, - [SMALL_STATE(5600)] = 271241, - [SMALL_STATE(5601)] = 271285, - [SMALL_STATE(5602)] = 271329, - [SMALL_STATE(5603)] = 271377, - [SMALL_STATE(5604)] = 271421, - [SMALL_STATE(5605)] = 271465, - [SMALL_STATE(5606)] = 271509, - [SMALL_STATE(5607)] = 271553, - [SMALL_STATE(5608)] = 271597, - [SMALL_STATE(5609)] = 271641, - [SMALL_STATE(5610)] = 271685, - [SMALL_STATE(5611)] = 271729, - [SMALL_STATE(5612)] = 271773, - [SMALL_STATE(5613)] = 271817, - [SMALL_STATE(5614)] = 271861, - [SMALL_STATE(5615)] = 271905, - [SMALL_STATE(5616)] = 271949, - [SMALL_STATE(5617)] = 271999, - [SMALL_STATE(5618)] = 272045, - [SMALL_STATE(5619)] = 272089, - [SMALL_STATE(5620)] = 272133, - [SMALL_STATE(5621)] = 272177, - [SMALL_STATE(5622)] = 272221, - [SMALL_STATE(5623)] = 272265, - [SMALL_STATE(5624)] = 272315, - [SMALL_STATE(5625)] = 272359, - [SMALL_STATE(5626)] = 272403, - [SMALL_STATE(5627)] = 272447, - [SMALL_STATE(5628)] = 272491, - [SMALL_STATE(5629)] = 272537, - [SMALL_STATE(5630)] = 272581, - [SMALL_STATE(5631)] = 272625, - [SMALL_STATE(5632)] = 272671, - [SMALL_STATE(5633)] = 272715, - [SMALL_STATE(5634)] = 272759, - [SMALL_STATE(5635)] = 272803, - [SMALL_STATE(5636)] = 272847, - [SMALL_STATE(5637)] = 272891, - [SMALL_STATE(5638)] = 272935, - [SMALL_STATE(5639)] = 272979, - [SMALL_STATE(5640)] = 273023, - [SMALL_STATE(5641)] = 273071, - [SMALL_STATE(5642)] = 273121, - [SMALL_STATE(5643)] = 273165, - [SMALL_STATE(5644)] = 273209, - [SMALL_STATE(5645)] = 273257, - [SMALL_STATE(5646)] = 273301, - [SMALL_STATE(5647)] = 273345, - [SMALL_STATE(5648)] = 273389, - [SMALL_STATE(5649)] = 273433, - [SMALL_STATE(5650)] = 273483, - [SMALL_STATE(5651)] = 273533, - [SMALL_STATE(5652)] = 273579, - [SMALL_STATE(5653)] = 273627, - [SMALL_STATE(5654)] = 273671, - [SMALL_STATE(5655)] = 273721, - [SMALL_STATE(5656)] = 273765, - [SMALL_STATE(5657)] = 273809, - [SMALL_STATE(5658)] = 273853, - [SMALL_STATE(5659)] = 273897, - [SMALL_STATE(5660)] = 273941, - [SMALL_STATE(5661)] = 273985, - [SMALL_STATE(5662)] = 274029, - [SMALL_STATE(5663)] = 274073, - [SMALL_STATE(5664)] = 274117, - [SMALL_STATE(5665)] = 274167, - [SMALL_STATE(5666)] = 274217, - [SMALL_STATE(5667)] = 274261, - [SMALL_STATE(5668)] = 274305, - [SMALL_STATE(5669)] = 274349, - [SMALL_STATE(5670)] = 274393, - [SMALL_STATE(5671)] = 274437, - [SMALL_STATE(5672)] = 274481, - [SMALL_STATE(5673)] = 274525, - [SMALL_STATE(5674)] = 274569, - [SMALL_STATE(5675)] = 274613, - [SMALL_STATE(5676)] = 274659, - [SMALL_STATE(5677)] = 274705, - [SMALL_STATE(5678)] = 274749, - [SMALL_STATE(5679)] = 274793, - [SMALL_STATE(5680)] = 274843, - [SMALL_STATE(5681)] = 274893, - [SMALL_STATE(5682)] = 274939, - [SMALL_STATE(5683)] = 274983, - [SMALL_STATE(5684)] = 275027, - [SMALL_STATE(5685)] = 275071, - [SMALL_STATE(5686)] = 275115, - [SMALL_STATE(5687)] = 275159, - [SMALL_STATE(5688)] = 275207, - [SMALL_STATE(5689)] = 275251, - [SMALL_STATE(5690)] = 275295, - [SMALL_STATE(5691)] = 275341, - [SMALL_STATE(5692)] = 275391, - [SMALL_STATE(5693)] = 275435, - [SMALL_STATE(5694)] = 275481, - [SMALL_STATE(5695)] = 275525, - [SMALL_STATE(5696)] = 275569, - [SMALL_STATE(5697)] = 275613, - [SMALL_STATE(5698)] = 275657, - [SMALL_STATE(5699)] = 275703, - [SMALL_STATE(5700)] = 275747, - [SMALL_STATE(5701)] = 275791, - [SMALL_STATE(5702)] = 275837, - [SMALL_STATE(5703)] = 275883, - [SMALL_STATE(5704)] = 275931, - [SMALL_STATE(5705)] = 275979, - [SMALL_STATE(5706)] = 276023, - [SMALL_STATE(5707)] = 276067, - [SMALL_STATE(5708)] = 276111, - [SMALL_STATE(5709)] = 276161, - [SMALL_STATE(5710)] = 276209, - [SMALL_STATE(5711)] = 276253, - [SMALL_STATE(5712)] = 276297, - [SMALL_STATE(5713)] = 276341, - [SMALL_STATE(5714)] = 276385, - [SMALL_STATE(5715)] = 276433, - [SMALL_STATE(5716)] = 276477, - [SMALL_STATE(5717)] = 276521, - [SMALL_STATE(5718)] = 276565, - [SMALL_STATE(5719)] = 276611, - [SMALL_STATE(5720)] = 276655, - [SMALL_STATE(5721)] = 276699, - [SMALL_STATE(5722)] = 276743, - [SMALL_STATE(5723)] = 276787, - [SMALL_STATE(5724)] = 276831, - [SMALL_STATE(5725)] = 276875, - [SMALL_STATE(5726)] = 276919, - [SMALL_STATE(5727)] = 276963, - [SMALL_STATE(5728)] = 277007, - [SMALL_STATE(5729)] = 277053, - [SMALL_STATE(5730)] = 277099, - [SMALL_STATE(5731)] = 277143, - [SMALL_STATE(5732)] = 277187, - [SMALL_STATE(5733)] = 277231, - [SMALL_STATE(5734)] = 277275, - [SMALL_STATE(5735)] = 277319, - [SMALL_STATE(5736)] = 277363, - [SMALL_STATE(5737)] = 277409, - [SMALL_STATE(5738)] = 277453, - [SMALL_STATE(5739)] = 277497, - [SMALL_STATE(5740)] = 277541, - [SMALL_STATE(5741)] = 277585, - [SMALL_STATE(5742)] = 277635, - [SMALL_STATE(5743)] = 277679, - [SMALL_STATE(5744)] = 277723, - [SMALL_STATE(5745)] = 277767, - [SMALL_STATE(5746)] = 277815, - [SMALL_STATE(5747)] = 277859, - [SMALL_STATE(5748)] = 277903, - [SMALL_STATE(5749)] = 277947, - [SMALL_STATE(5750)] = 277991, - [SMALL_STATE(5751)] = 278035, - [SMALL_STATE(5752)] = 278079, - [SMALL_STATE(5753)] = 278123, - [SMALL_STATE(5754)] = 278167, - [SMALL_STATE(5755)] = 278211, - [SMALL_STATE(5756)] = 278255, - [SMALL_STATE(5757)] = 278299, - [SMALL_STATE(5758)] = 278343, - [SMALL_STATE(5759)] = 278387, - [SMALL_STATE(5760)] = 278431, - [SMALL_STATE(5761)] = 278475, - [SMALL_STATE(5762)] = 278521, - [SMALL_STATE(5763)] = 278565, - [SMALL_STATE(5764)] = 278609, - [SMALL_STATE(5765)] = 278653, - [SMALL_STATE(5766)] = 278697, - [SMALL_STATE(5767)] = 278741, - [SMALL_STATE(5768)] = 278785, - [SMALL_STATE(5769)] = 278829, - [SMALL_STATE(5770)] = 278873, - [SMALL_STATE(5771)] = 278917, - [SMALL_STATE(5772)] = 278961, - [SMALL_STATE(5773)] = 279015, - [SMALL_STATE(5774)] = 279059, - [SMALL_STATE(5775)] = 279109, - [SMALL_STATE(5776)] = 279153, - [SMALL_STATE(5777)] = 279197, - [SMALL_STATE(5778)] = 279253, - [SMALL_STATE(5779)] = 279303, - [SMALL_STATE(5780)] = 279347, - [SMALL_STATE(5781)] = 279395, - [SMALL_STATE(5782)] = 279439, - [SMALL_STATE(5783)] = 279485, - [SMALL_STATE(5784)] = 279535, - [SMALL_STATE(5785)] = 279579, - [SMALL_STATE(5786)] = 279631, - [SMALL_STATE(5787)] = 279675, - [SMALL_STATE(5788)] = 279733, - [SMALL_STATE(5789)] = 279777, - [SMALL_STATE(5790)] = 279827, - [SMALL_STATE(5791)] = 279871, - [SMALL_STATE(5792)] = 279921, - [SMALL_STATE(5793)] = 279981, - [SMALL_STATE(5794)] = 280025, - [SMALL_STATE(5795)] = 280069, - [SMALL_STATE(5796)] = 280131, - [SMALL_STATE(5797)] = 280175, - [SMALL_STATE(5798)] = 280239, - [SMALL_STATE(5799)] = 280283, - [SMALL_STATE(5800)] = 280327, - [SMALL_STATE(5801)] = 280393, - [SMALL_STATE(5802)] = 280437, - [SMALL_STATE(5803)] = 280505, - [SMALL_STATE(5804)] = 280549, - [SMALL_STATE(5805)] = 280593, - [SMALL_STATE(5806)] = 280643, - [SMALL_STATE(5807)] = 280693, - [SMALL_STATE(5808)] = 280763, - [SMALL_STATE(5809)] = 280807, - [SMALL_STATE(5810)] = 280855, - [SMALL_STATE(5811)] = 280899, - [SMALL_STATE(5812)] = 280943, - [SMALL_STATE(5813)] = 280987, + [SMALL_STATE(5393)] = 261491, + [SMALL_STATE(5394)] = 261537, + [SMALL_STATE(5395)] = 261581, + [SMALL_STATE(5396)] = 261631, + [SMALL_STATE(5397)] = 261679, + [SMALL_STATE(5398)] = 261725, + [SMALL_STATE(5399)] = 261771, + [SMALL_STATE(5400)] = 261817, + [SMALL_STATE(5401)] = 261861, + [SMALL_STATE(5402)] = 261905, + [SMALL_STATE(5403)] = 261949, + [SMALL_STATE(5404)] = 261993, + [SMALL_STATE(5405)] = 262043, + [SMALL_STATE(5406)] = 262087, + [SMALL_STATE(5407)] = 262135, + [SMALL_STATE(5408)] = 262179, + [SMALL_STATE(5409)] = 262223, + [SMALL_STATE(5410)] = 262267, + [SMALL_STATE(5411)] = 262337, + [SMALL_STATE(5412)] = 262381, + [SMALL_STATE(5413)] = 262431, + [SMALL_STATE(5414)] = 262481, + [SMALL_STATE(5415)] = 262525, + [SMALL_STATE(5416)] = 262569, + [SMALL_STATE(5417)] = 262619, + [SMALL_STATE(5418)] = 262663, + [SMALL_STATE(5419)] = 262707, + [SMALL_STATE(5420)] = 262751, + [SMALL_STATE(5421)] = 262795, + [SMALL_STATE(5422)] = 262845, + [SMALL_STATE(5423)] = 262895, + [SMALL_STATE(5424)] = 262939, + [SMALL_STATE(5425)] = 262983, + [SMALL_STATE(5426)] = 263033, + [SMALL_STATE(5427)] = 263081, + [SMALL_STATE(5428)] = 263125, + [SMALL_STATE(5429)] = 263171, + [SMALL_STATE(5430)] = 263215, + [SMALL_STATE(5431)] = 263265, + [SMALL_STATE(5432)] = 263309, + [SMALL_STATE(5433)] = 263359, + [SMALL_STATE(5434)] = 263403, + [SMALL_STATE(5435)] = 263449, + [SMALL_STATE(5436)] = 263493, + [SMALL_STATE(5437)] = 263537, + [SMALL_STATE(5438)] = 263585, + [SMALL_STATE(5439)] = 263629, + [SMALL_STATE(5440)] = 263673, + [SMALL_STATE(5441)] = 263719, + [SMALL_STATE(5442)] = 263763, + [SMALL_STATE(5443)] = 263807, + [SMALL_STATE(5444)] = 263851, + [SMALL_STATE(5445)] = 263895, + [SMALL_STATE(5446)] = 263941, + [SMALL_STATE(5447)] = 263991, + [SMALL_STATE(5448)] = 264035, + [SMALL_STATE(5449)] = 264079, + [SMALL_STATE(5450)] = 264123, + [SMALL_STATE(5451)] = 264167, + [SMALL_STATE(5452)] = 264211, + [SMALL_STATE(5453)] = 264255, + [SMALL_STATE(5454)] = 264301, + [SMALL_STATE(5455)] = 264345, + [SMALL_STATE(5456)] = 264395, + [SMALL_STATE(5457)] = 264441, + [SMALL_STATE(5458)] = 264487, + [SMALL_STATE(5459)] = 264531, + [SMALL_STATE(5460)] = 264577, + [SMALL_STATE(5461)] = 264621, + [SMALL_STATE(5462)] = 264665, + [SMALL_STATE(5463)] = 264709, + [SMALL_STATE(5464)] = 264753, + [SMALL_STATE(5465)] = 264797, + [SMALL_STATE(5466)] = 264841, + [SMALL_STATE(5467)] = 264885, + [SMALL_STATE(5468)] = 264929, + [SMALL_STATE(5469)] = 264973, + [SMALL_STATE(5470)] = 265017, + [SMALL_STATE(5471)] = 265067, + [SMALL_STATE(5472)] = 265113, + [SMALL_STATE(5473)] = 265157, + [SMALL_STATE(5474)] = 265207, + [SMALL_STATE(5475)] = 265251, + [SMALL_STATE(5476)] = 265295, + [SMALL_STATE(5477)] = 265339, + [SMALL_STATE(5478)] = 265383, + [SMALL_STATE(5479)] = 265427, + [SMALL_STATE(5480)] = 265471, + [SMALL_STATE(5481)] = 265515, + [SMALL_STATE(5482)] = 265559, + [SMALL_STATE(5483)] = 265603, + [SMALL_STATE(5484)] = 265657, + [SMALL_STATE(5485)] = 265701, + [SMALL_STATE(5486)] = 265745, + [SMALL_STATE(5487)] = 265795, + [SMALL_STATE(5488)] = 265839, + [SMALL_STATE(5489)] = 265893, + [SMALL_STATE(5490)] = 265937, + [SMALL_STATE(5491)] = 265981, + [SMALL_STATE(5492)] = 266025, + [SMALL_STATE(5493)] = 266069, + [SMALL_STATE(5494)] = 266139, + [SMALL_STATE(5495)] = 266183, + [SMALL_STATE(5496)] = 266227, + [SMALL_STATE(5497)] = 266271, + [SMALL_STATE(5498)] = 266315, + [SMALL_STATE(5499)] = 266359, + [SMALL_STATE(5500)] = 266403, + [SMALL_STATE(5501)] = 266447, + [SMALL_STATE(5502)] = 266491, + [SMALL_STATE(5503)] = 266535, + [SMALL_STATE(5504)] = 266579, + [SMALL_STATE(5505)] = 266623, + [SMALL_STATE(5506)] = 266669, + [SMALL_STATE(5507)] = 266713, + [SMALL_STATE(5508)] = 266757, + [SMALL_STATE(5509)] = 266807, + [SMALL_STATE(5510)] = 266851, + [SMALL_STATE(5511)] = 266901, + [SMALL_STATE(5512)] = 266945, + [SMALL_STATE(5513)] = 266995, + [SMALL_STATE(5514)] = 267039, + [SMALL_STATE(5515)] = 267083, + [SMALL_STATE(5516)] = 267127, + [SMALL_STATE(5517)] = 267171, + [SMALL_STATE(5518)] = 267215, + [SMALL_STATE(5519)] = 267271, + [SMALL_STATE(5520)] = 267315, + [SMALL_STATE(5521)] = 267359, + [SMALL_STATE(5522)] = 267403, + [SMALL_STATE(5523)] = 267447, + [SMALL_STATE(5524)] = 267491, + [SMALL_STATE(5525)] = 267535, + [SMALL_STATE(5526)] = 267579, + [SMALL_STATE(5527)] = 267623, + [SMALL_STATE(5528)] = 267667, + [SMALL_STATE(5529)] = 267711, + [SMALL_STATE(5530)] = 267755, + [SMALL_STATE(5531)] = 267803, + [SMALL_STATE(5532)] = 267847, + [SMALL_STATE(5533)] = 267891, + [SMALL_STATE(5534)] = 267935, + [SMALL_STATE(5535)] = 267979, + [SMALL_STATE(5536)] = 268023, + [SMALL_STATE(5537)] = 268067, + [SMALL_STATE(5538)] = 268117, + [SMALL_STATE(5539)] = 268163, + [SMALL_STATE(5540)] = 268207, + [SMALL_STATE(5541)] = 268251, + [SMALL_STATE(5542)] = 268297, + [SMALL_STATE(5543)] = 268343, + [SMALL_STATE(5544)] = 268387, + [SMALL_STATE(5545)] = 268431, + [SMALL_STATE(5546)] = 268475, + [SMALL_STATE(5547)] = 268527, + [SMALL_STATE(5548)] = 268571, + [SMALL_STATE(5549)] = 268617, + [SMALL_STATE(5550)] = 268661, + [SMALL_STATE(5551)] = 268709, + [SMALL_STATE(5552)] = 268753, + [SMALL_STATE(5553)] = 268801, + [SMALL_STATE(5554)] = 268845, + [SMALL_STATE(5555)] = 268889, + [SMALL_STATE(5556)] = 268933, + [SMALL_STATE(5557)] = 268991, + [SMALL_STATE(5558)] = 269037, + [SMALL_STATE(5559)] = 269081, + [SMALL_STATE(5560)] = 269125, + [SMALL_STATE(5561)] = 269169, + [SMALL_STATE(5562)] = 269213, + [SMALL_STATE(5563)] = 269257, + [SMALL_STATE(5564)] = 269301, + [SMALL_STATE(5565)] = 269345, + [SMALL_STATE(5566)] = 269389, + [SMALL_STATE(5567)] = 269433, + [SMALL_STATE(5568)] = 269477, + [SMALL_STATE(5569)] = 269521, + [SMALL_STATE(5570)] = 269581, + [SMALL_STATE(5571)] = 269625, + [SMALL_STATE(5572)] = 269679, + [SMALL_STATE(5573)] = 269727, + [SMALL_STATE(5574)] = 269771, + [SMALL_STATE(5575)] = 269815, + [SMALL_STATE(5576)] = 269859, + [SMALL_STATE(5577)] = 269909, + [SMALL_STATE(5578)] = 269953, + [SMALL_STATE(5579)] = 270009, + [SMALL_STATE(5580)] = 270053, + [SMALL_STATE(5581)] = 270097, + [SMALL_STATE(5582)] = 270145, + [SMALL_STATE(5583)] = 270189, + [SMALL_STATE(5584)] = 270233, + [SMALL_STATE(5585)] = 270295, + [SMALL_STATE(5586)] = 270343, + [SMALL_STATE(5587)] = 270387, + [SMALL_STATE(5588)] = 270433, + [SMALL_STATE(5589)] = 270477, + [SMALL_STATE(5590)] = 270521, + [SMALL_STATE(5591)] = 270573, + [SMALL_STATE(5592)] = 270617, + [SMALL_STATE(5593)] = 270661, + [SMALL_STATE(5594)] = 270719, + [SMALL_STATE(5595)] = 270763, + [SMALL_STATE(5596)] = 270807, + [SMALL_STATE(5597)] = 270867, + [SMALL_STATE(5598)] = 270911, + [SMALL_STATE(5599)] = 270961, + [SMALL_STATE(5600)] = 271023, + [SMALL_STATE(5601)] = 271069, + [SMALL_STATE(5602)] = 271113, + [SMALL_STATE(5603)] = 271177, + [SMALL_STATE(5604)] = 271221, + [SMALL_STATE(5605)] = 271265, + [SMALL_STATE(5606)] = 271331, + [SMALL_STATE(5607)] = 271375, + [SMALL_STATE(5608)] = 271419, + [SMALL_STATE(5609)] = 271487, + [SMALL_STATE(5610)] = 271531, + [SMALL_STATE(5611)] = 271575, + [SMALL_STATE(5612)] = 271619, + [SMALL_STATE(5613)] = 271663, + [SMALL_STATE(5614)] = 271707, + [SMALL_STATE(5615)] = 271753, + [SMALL_STATE(5616)] = 271803, + [SMALL_STATE(5617)] = 271873, + [SMALL_STATE(5618)] = 271917, + [SMALL_STATE(5619)] = 271961, + [SMALL_STATE(5620)] = 272005, + [SMALL_STATE(5621)] = 272051, + [SMALL_STATE(5622)] = 272095, + [SMALL_STATE(5623)] = 272139, + [SMALL_STATE(5624)] = 272189, + [SMALL_STATE(5625)] = 272233, + [SMALL_STATE(5626)] = 272277, + [SMALL_STATE(5627)] = 272321, + [SMALL_STATE(5628)] = 272365, + [SMALL_STATE(5629)] = 272409, + [SMALL_STATE(5630)] = 272453, + [SMALL_STATE(5631)] = 272497, + [SMALL_STATE(5632)] = 272541, + [SMALL_STATE(5633)] = 272585, + [SMALL_STATE(5634)] = 272629, + [SMALL_STATE(5635)] = 272673, + [SMALL_STATE(5636)] = 272717, + [SMALL_STATE(5637)] = 272761, + [SMALL_STATE(5638)] = 272825, + [SMALL_STATE(5639)] = 272869, + [SMALL_STATE(5640)] = 272913, + [SMALL_STATE(5641)] = 272961, + [SMALL_STATE(5642)] = 273005, + [SMALL_STATE(5643)] = 273053, + [SMALL_STATE(5644)] = 273099, + [SMALL_STATE(5645)] = 273143, + [SMALL_STATE(5646)] = 273191, + [SMALL_STATE(5647)] = 273235, + [SMALL_STATE(5648)] = 273279, + [SMALL_STATE(5649)] = 273329, + [SMALL_STATE(5650)] = 273373, + [SMALL_STATE(5651)] = 273417, + [SMALL_STATE(5652)] = 273461, + [SMALL_STATE(5653)] = 273505, + [SMALL_STATE(5654)] = 273549, + [SMALL_STATE(5655)] = 273593, + [SMALL_STATE(5656)] = 273637, + [SMALL_STATE(5657)] = 273681, + [SMALL_STATE(5658)] = 273727, + [SMALL_STATE(5659)] = 273771, + [SMALL_STATE(5660)] = 273817, + [SMALL_STATE(5661)] = 273865, + [SMALL_STATE(5662)] = 273911, + [SMALL_STATE(5663)] = 273977, + [SMALL_STATE(5664)] = 274025, + [SMALL_STATE(5665)] = 274069, + [SMALL_STATE(5666)] = 274113, + [SMALL_STATE(5667)] = 274163, + [SMALL_STATE(5668)] = 274209, + [SMALL_STATE(5669)] = 274253, + [SMALL_STATE(5670)] = 274297, + [SMALL_STATE(5671)] = 274341, + [SMALL_STATE(5672)] = 274385, + [SMALL_STATE(5673)] = 274429, + [SMALL_STATE(5674)] = 274473, + [SMALL_STATE(5675)] = 274517, + [SMALL_STATE(5676)] = 274565, + [SMALL_STATE(5677)] = 274609, + [SMALL_STATE(5678)] = 274653, + [SMALL_STATE(5679)] = 274703, + [SMALL_STATE(5680)] = 274747, + [SMALL_STATE(5681)] = 274791, + [SMALL_STATE(5682)] = 274835, + [SMALL_STATE(5683)] = 274879, + [SMALL_STATE(5684)] = 274947, + [SMALL_STATE(5685)] = 274997, + [SMALL_STATE(5686)] = 275041, + [SMALL_STATE(5687)] = 275087, + [SMALL_STATE(5688)] = 275131, + [SMALL_STATE(5689)] = 275175, + [SMALL_STATE(5690)] = 275219, + [SMALL_STATE(5691)] = 275289, + [SMALL_STATE(5692)] = 275335, + [SMALL_STATE(5693)] = 275385, + [SMALL_STATE(5694)] = 275429, + [SMALL_STATE(5695)] = 275473, + [SMALL_STATE(5696)] = 275519, + [SMALL_STATE(5697)] = 275563, + [SMALL_STATE(5698)] = 275607, + [SMALL_STATE(5699)] = 275651, + [SMALL_STATE(5700)] = 275699, + [SMALL_STATE(5701)] = 275743, + [SMALL_STATE(5702)] = 275787, + [SMALL_STATE(5703)] = 275837, + [SMALL_STATE(5704)] = 275881, + [SMALL_STATE(5705)] = 275925, + [SMALL_STATE(5706)] = 275969, + [SMALL_STATE(5707)] = 276013, + [SMALL_STATE(5708)] = 276057, + [SMALL_STATE(5709)] = 276103, + [SMALL_STATE(5710)] = 276147, + [SMALL_STATE(5711)] = 276193, + [SMALL_STATE(5712)] = 276241, + [SMALL_STATE(5713)] = 276285, + [SMALL_STATE(5714)] = 276329, + [SMALL_STATE(5715)] = 276373, + [SMALL_STATE(5716)] = 276421, + [SMALL_STATE(5717)] = 276465, + [SMALL_STATE(5718)] = 276509, + [SMALL_STATE(5719)] = 276553, + [SMALL_STATE(5720)] = 276597, + [SMALL_STATE(5721)] = 276641, + [SMALL_STATE(5722)] = 276685, + [SMALL_STATE(5723)] = 276729, + [SMALL_STATE(5724)] = 276773, + [SMALL_STATE(5725)] = 276817, + [SMALL_STATE(5726)] = 276861, + [SMALL_STATE(5727)] = 276905, + [SMALL_STATE(5728)] = 276949, + [SMALL_STATE(5729)] = 276999, + [SMALL_STATE(5730)] = 277043, + [SMALL_STATE(5731)] = 277087, + [SMALL_STATE(5732)] = 277131, + [SMALL_STATE(5733)] = 277175, + [SMALL_STATE(5734)] = 277219, + [SMALL_STATE(5735)] = 277263, + [SMALL_STATE(5736)] = 277309, + [SMALL_STATE(5737)] = 277353, + [SMALL_STATE(5738)] = 277411, + [SMALL_STATE(5739)] = 277455, + [SMALL_STATE(5740)] = 277507, + [SMALL_STATE(5741)] = 277551, + [SMALL_STATE(5742)] = 277611, + [SMALL_STATE(5743)] = 277655, + [SMALL_STATE(5744)] = 277705, + [SMALL_STATE(5745)] = 277749, + [SMALL_STATE(5746)] = 277795, + [SMALL_STATE(5747)] = 277839, + [SMALL_STATE(5748)] = 277893, + [SMALL_STATE(5749)] = 277943, + [SMALL_STATE(5750)] = 277987, + [SMALL_STATE(5751)] = 278049, + [SMALL_STATE(5752)] = 278093, + [SMALL_STATE(5753)] = 278141, + [SMALL_STATE(5754)] = 278205, + [SMALL_STATE(5755)] = 278249, + [SMALL_STATE(5756)] = 278293, + [SMALL_STATE(5757)] = 278337, + [SMALL_STATE(5758)] = 278403, + [SMALL_STATE(5759)] = 278449, + [SMALL_STATE(5760)] = 278493, + [SMALL_STATE(5761)] = 278543, + [SMALL_STATE(5762)] = 278587, + [SMALL_STATE(5763)] = 278655, + [SMALL_STATE(5764)] = 278699, + [SMALL_STATE(5765)] = 278769, + [SMALL_STATE(5766)] = 278813, + [SMALL_STATE(5767)] = 278885, + [SMALL_STATE(5768)] = 278929, + [SMALL_STATE(5769)] = 279003, + [SMALL_STATE(5770)] = 279047, + [SMALL_STATE(5771)] = 279093, + [SMALL_STATE(5772)] = 279139, + [SMALL_STATE(5773)] = 279185, + [SMALL_STATE(5774)] = 279231, + [SMALL_STATE(5775)] = 279275, + [SMALL_STATE(5776)] = 279319, + [SMALL_STATE(5777)] = 279363, + [SMALL_STATE(5778)] = 279407, + [SMALL_STATE(5779)] = 279451, + [SMALL_STATE(5780)] = 279499, + [SMALL_STATE(5781)] = 279543, + [SMALL_STATE(5782)] = 279587, + [SMALL_STATE(5783)] = 279631, + [SMALL_STATE(5784)] = 279675, + [SMALL_STATE(5785)] = 279719, + [SMALL_STATE(5786)] = 279763, + [SMALL_STATE(5787)] = 279807, + [SMALL_STATE(5788)] = 279851, + [SMALL_STATE(5789)] = 279895, + [SMALL_STATE(5790)] = 279939, + [SMALL_STATE(5791)] = 279983, + [SMALL_STATE(5792)] = 280027, + [SMALL_STATE(5793)] = 280071, + [SMALL_STATE(5794)] = 280117, + [SMALL_STATE(5795)] = 280161, + [SMALL_STATE(5796)] = 280205, + [SMALL_STATE(5797)] = 280257, + [SMALL_STATE(5798)] = 280301, + [SMALL_STATE(5799)] = 280345, + [SMALL_STATE(5800)] = 280389, + [SMALL_STATE(5801)] = 280461, + [SMALL_STATE(5802)] = 280505, + [SMALL_STATE(5803)] = 280549, + [SMALL_STATE(5804)] = 280593, + [SMALL_STATE(5805)] = 280637, + [SMALL_STATE(5806)] = 280681, + [SMALL_STATE(5807)] = 280725, + [SMALL_STATE(5808)] = 280769, + [SMALL_STATE(5809)] = 280813, + [SMALL_STATE(5810)] = 280857, + [SMALL_STATE(5811)] = 280901, + [SMALL_STATE(5812)] = 280945, + [SMALL_STATE(5813)] = 280989, [SMALL_STATE(5814)] = 281033, [SMALL_STATE(5815)] = 281076, [SMALL_STATE(5816)] = 281119, - [SMALL_STATE(5817)] = 281162, - [SMALL_STATE(5818)] = 281205, - [SMALL_STATE(5819)] = 281248, - [SMALL_STATE(5820)] = 281291, - [SMALL_STATE(5821)] = 281334, - [SMALL_STATE(5822)] = 281403, - [SMALL_STATE(5823)] = 281446, - [SMALL_STATE(5824)] = 281495, - [SMALL_STATE(5825)] = 281538, - [SMALL_STATE(5826)] = 281581, - [SMALL_STATE(5827)] = 281624, - [SMALL_STATE(5828)] = 281667, - [SMALL_STATE(5829)] = 281714, - [SMALL_STATE(5830)] = 281757, - [SMALL_STATE(5831)] = 281800, - [SMALL_STATE(5832)] = 281843, - [SMALL_STATE(5833)] = 281886, - [SMALL_STATE(5834)] = 281929, - [SMALL_STATE(5835)] = 281972, - [SMALL_STATE(5836)] = 282015, - [SMALL_STATE(5837)] = 282058, - [SMALL_STATE(5838)] = 282101, - [SMALL_STATE(5839)] = 282144, - [SMALL_STATE(5840)] = 282187, - [SMALL_STATE(5841)] = 282230, + [SMALL_STATE(5817)] = 281164, + [SMALL_STATE(5818)] = 281207, + [SMALL_STATE(5819)] = 281250, + [SMALL_STATE(5820)] = 281297, + [SMALL_STATE(5821)] = 281340, + [SMALL_STATE(5822)] = 281383, + [SMALL_STATE(5823)] = 281432, + [SMALL_STATE(5824)] = 281479, + [SMALL_STATE(5825)] = 281522, + [SMALL_STATE(5826)] = 281565, + [SMALL_STATE(5827)] = 281612, + [SMALL_STATE(5828)] = 281661, + [SMALL_STATE(5829)] = 281704, + [SMALL_STATE(5830)] = 281753, + [SMALL_STATE(5831)] = 281798, + [SMALL_STATE(5832)] = 281841, + [SMALL_STATE(5833)] = 281884, + [SMALL_STATE(5834)] = 281933, + [SMALL_STATE(5835)] = 281976, + [SMALL_STATE(5836)] = 282019, + [SMALL_STATE(5837)] = 282062, + [SMALL_STATE(5838)] = 282105, + [SMALL_STATE(5839)] = 282148, + [SMALL_STATE(5840)] = 282191, + [SMALL_STATE(5841)] = 282234, [SMALL_STATE(5842)] = 282277, [SMALL_STATE(5843)] = 282320, [SMALL_STATE(5844)] = 282363, @@ -589864,799 +589906,799 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5846)] = 282449, [SMALL_STATE(5847)] = 282492, [SMALL_STATE(5848)] = 282535, - [SMALL_STATE(5849)] = 282578, - [SMALL_STATE(5850)] = 282621, - [SMALL_STATE(5851)] = 282664, - [SMALL_STATE(5852)] = 282707, - [SMALL_STATE(5853)] = 282750, - [SMALL_STATE(5854)] = 282793, - [SMALL_STATE(5855)] = 282836, - [SMALL_STATE(5856)] = 282879, - [SMALL_STATE(5857)] = 282922, - [SMALL_STATE(5858)] = 282965, - [SMALL_STATE(5859)] = 283012, - [SMALL_STATE(5860)] = 283061, - [SMALL_STATE(5861)] = 283104, - [SMALL_STATE(5862)] = 283153, - [SMALL_STATE(5863)] = 283196, - [SMALL_STATE(5864)] = 283239, - [SMALL_STATE(5865)] = 283282, - [SMALL_STATE(5866)] = 283325, - [SMALL_STATE(5867)] = 283368, - [SMALL_STATE(5868)] = 283411, - [SMALL_STATE(5869)] = 283456, - [SMALL_STATE(5870)] = 283499, - [SMALL_STATE(5871)] = 283544, - [SMALL_STATE(5872)] = 283587, - [SMALL_STATE(5873)] = 283634, - [SMALL_STATE(5874)] = 283679, - [SMALL_STATE(5875)] = 283726, - [SMALL_STATE(5876)] = 283771, - [SMALL_STATE(5877)] = 283814, - [SMALL_STATE(5878)] = 283863, - [SMALL_STATE(5879)] = 283906, - [SMALL_STATE(5880)] = 283955, - [SMALL_STATE(5881)] = 284004, - [SMALL_STATE(5882)] = 284049, - [SMALL_STATE(5883)] = 284098, - [SMALL_STATE(5884)] = 284141, - [SMALL_STATE(5885)] = 284184, - [SMALL_STATE(5886)] = 284227, - [SMALL_STATE(5887)] = 284270, - [SMALL_STATE(5888)] = 284317, - [SMALL_STATE(5889)] = 284360, - [SMALL_STATE(5890)] = 284403, - [SMALL_STATE(5891)] = 284446, - [SMALL_STATE(5892)] = 284489, - [SMALL_STATE(5893)] = 284532, - [SMALL_STATE(5894)] = 284575, - [SMALL_STATE(5895)] = 284618, - [SMALL_STATE(5896)] = 284661, - [SMALL_STATE(5897)] = 284710, - [SMALL_STATE(5898)] = 284759, - [SMALL_STATE(5899)] = 284806, - [SMALL_STATE(5900)] = 284849, - [SMALL_STATE(5901)] = 284894, - [SMALL_STATE(5902)] = 284937, - [SMALL_STATE(5903)] = 284980, - [SMALL_STATE(5904)] = 285023, - [SMALL_STATE(5905)] = 285066, - [SMALL_STATE(5906)] = 285109, - [SMALL_STATE(5907)] = 285152, - [SMALL_STATE(5908)] = 285201, - [SMALL_STATE(5909)] = 285244, - [SMALL_STATE(5910)] = 285287, - [SMALL_STATE(5911)] = 285330, - [SMALL_STATE(5912)] = 285373, - [SMALL_STATE(5913)] = 285418, - [SMALL_STATE(5914)] = 285461, - [SMALL_STATE(5915)] = 285506, - [SMALL_STATE(5916)] = 285551, - [SMALL_STATE(5917)] = 285594, - [SMALL_STATE(5918)] = 285637, - [SMALL_STATE(5919)] = 285680, - [SMALL_STATE(5920)] = 285723, - [SMALL_STATE(5921)] = 285768, - [SMALL_STATE(5922)] = 285811, - [SMALL_STATE(5923)] = 285854, - [SMALL_STATE(5924)] = 285897, - [SMALL_STATE(5925)] = 285940, - [SMALL_STATE(5926)] = 285983, - [SMALL_STATE(5927)] = 286026, - [SMALL_STATE(5928)] = 286069, - [SMALL_STATE(5929)] = 286112, - [SMALL_STATE(5930)] = 286155, - [SMALL_STATE(5931)] = 286198, - [SMALL_STATE(5932)] = 286241, - [SMALL_STATE(5933)] = 286284, - [SMALL_STATE(5934)] = 286327, - [SMALL_STATE(5935)] = 286370, - [SMALL_STATE(5936)] = 286413, - [SMALL_STATE(5937)] = 286456, - [SMALL_STATE(5938)] = 286499, - [SMALL_STATE(5939)] = 286544, - [SMALL_STATE(5940)] = 286595, - [SMALL_STATE(5941)] = 286638, - [SMALL_STATE(5942)] = 286683, - [SMALL_STATE(5943)] = 286726, - [SMALL_STATE(5944)] = 286769, - [SMALL_STATE(5945)] = 286812, - [SMALL_STATE(5946)] = 286855, - [SMALL_STATE(5947)] = 286898, - [SMALL_STATE(5948)] = 286941, - [SMALL_STATE(5949)] = 286984, - [SMALL_STATE(5950)] = 287027, - [SMALL_STATE(5951)] = 287070, - [SMALL_STATE(5952)] = 287113, - [SMALL_STATE(5953)] = 287156, - [SMALL_STATE(5954)] = 287199, - [SMALL_STATE(5955)] = 287242, - [SMALL_STATE(5956)] = 287285, - [SMALL_STATE(5957)] = 287328, - [SMALL_STATE(5958)] = 287371, - [SMALL_STATE(5959)] = 287414, - [SMALL_STATE(5960)] = 287457, - [SMALL_STATE(5961)] = 287500, - [SMALL_STATE(5962)] = 287543, - [SMALL_STATE(5963)] = 287586, - [SMALL_STATE(5964)] = 287629, - [SMALL_STATE(5965)] = 287672, - [SMALL_STATE(5966)] = 287715, - [SMALL_STATE(5967)] = 287758, - [SMALL_STATE(5968)] = 287801, - [SMALL_STATE(5969)] = 287844, - [SMALL_STATE(5970)] = 287887, - [SMALL_STATE(5971)] = 287930, - [SMALL_STATE(5972)] = 287973, - [SMALL_STATE(5973)] = 288016, - [SMALL_STATE(5974)] = 288065, - [SMALL_STATE(5975)] = 288108, - [SMALL_STATE(5976)] = 288157, - [SMALL_STATE(5977)] = 288200, - [SMALL_STATE(5978)] = 288243, - [SMALL_STATE(5979)] = 288288, - [SMALL_STATE(5980)] = 288337, - [SMALL_STATE(5981)] = 288386, - [SMALL_STATE(5982)] = 288431, - [SMALL_STATE(5983)] = 288476, - [SMALL_STATE(5984)] = 288525, - [SMALL_STATE(5985)] = 288568, - [SMALL_STATE(5986)] = 288611, - [SMALL_STATE(5987)] = 288660, - [SMALL_STATE(5988)] = 288729, - [SMALL_STATE(5989)] = 288772, - [SMALL_STATE(5990)] = 288839, - [SMALL_STATE(5991)] = 288882, - [SMALL_STATE(5992)] = 288947, - [SMALL_STATE(5993)] = 288990, - [SMALL_STATE(5994)] = 289053, - [SMALL_STATE(5995)] = 289104, - [SMALL_STATE(5996)] = 289147, - [SMALL_STATE(5997)] = 289208, - [SMALL_STATE(5998)] = 289253, - [SMALL_STATE(5999)] = 289296, - [SMALL_STATE(6000)] = 289339, - [SMALL_STATE(6001)] = 289398, - [SMALL_STATE(6002)] = 289441, - [SMALL_STATE(6003)] = 289484, - [SMALL_STATE(6004)] = 289527, - [SMALL_STATE(6005)] = 289584, - [SMALL_STATE(6006)] = 289627, - [SMALL_STATE(6007)] = 289678, - [SMALL_STATE(6008)] = 289721, - [SMALL_STATE(6009)] = 289764, - [SMALL_STATE(6010)] = 289807, - [SMALL_STATE(6011)] = 289850, - [SMALL_STATE(6012)] = 289897, - [SMALL_STATE(6013)] = 289940, - [SMALL_STATE(6014)] = 289995, - [SMALL_STATE(6015)] = 290044, - [SMALL_STATE(6016)] = 290087, - [SMALL_STATE(6017)] = 290140, - [SMALL_STATE(6018)] = 290183, - [SMALL_STATE(6019)] = 290226, - [SMALL_STATE(6020)] = 290271, - [SMALL_STATE(6021)] = 290314, - [SMALL_STATE(6022)] = 290357, - [SMALL_STATE(6023)] = 290400, - [SMALL_STATE(6024)] = 290443, - [SMALL_STATE(6025)] = 290486, - [SMALL_STATE(6026)] = 290535, - [SMALL_STATE(6027)] = 290580, - [SMALL_STATE(6028)] = 290629, - [SMALL_STATE(6029)] = 290672, - [SMALL_STATE(6030)] = 290715, - [SMALL_STATE(6031)] = 290760, - [SMALL_STATE(6032)] = 290805, - [SMALL_STATE(6033)] = 290848, - [SMALL_STATE(6034)] = 290917, - [SMALL_STATE(6035)] = 290960, - [SMALL_STATE(6036)] = 291003, - [SMALL_STATE(6037)] = 291046, - [SMALL_STATE(6038)] = 291089, - [SMALL_STATE(6039)] = 291132, - [SMALL_STATE(6040)] = 291175, - [SMALL_STATE(6041)] = 291222, - [SMALL_STATE(6042)] = 291267, - [SMALL_STATE(6043)] = 291316, - [SMALL_STATE(6044)] = 291361, - [SMALL_STATE(6045)] = 291406, - [SMALL_STATE(6046)] = 291453, - [SMALL_STATE(6047)] = 291500, - [SMALL_STATE(6048)] = 291547, - [SMALL_STATE(6049)] = 291590, - [SMALL_STATE(6050)] = 291659, - [SMALL_STATE(6051)] = 291704, - [SMALL_STATE(6052)] = 291747, - [SMALL_STATE(6053)] = 291790, + [SMALL_STATE(5849)] = 282584, + [SMALL_STATE(5850)] = 282627, + [SMALL_STATE(5851)] = 282670, + [SMALL_STATE(5852)] = 282715, + [SMALL_STATE(5853)] = 282758, + [SMALL_STATE(5854)] = 282827, + [SMALL_STATE(5855)] = 282870, + [SMALL_STATE(5856)] = 282913, + [SMALL_STATE(5857)] = 282962, + [SMALL_STATE(5858)] = 283007, + [SMALL_STATE(5859)] = 283052, + [SMALL_STATE(5860)] = 283095, + [SMALL_STATE(5861)] = 283140, + [SMALL_STATE(5862)] = 283183, + [SMALL_STATE(5863)] = 283226, + [SMALL_STATE(5864)] = 283275, + [SMALL_STATE(5865)] = 283318, + [SMALL_STATE(5866)] = 283361, + [SMALL_STATE(5867)] = 283406, + [SMALL_STATE(5868)] = 283449, + [SMALL_STATE(5869)] = 283492, + [SMALL_STATE(5870)] = 283535, + [SMALL_STATE(5871)] = 283584, + [SMALL_STATE(5872)] = 283629, + [SMALL_STATE(5873)] = 283672, + [SMALL_STATE(5874)] = 283715, + [SMALL_STATE(5875)] = 283758, + [SMALL_STATE(5876)] = 283801, + [SMALL_STATE(5877)] = 283844, + [SMALL_STATE(5878)] = 283891, + [SMALL_STATE(5879)] = 283934, + [SMALL_STATE(5880)] = 283977, + [SMALL_STATE(5881)] = 284020, + [SMALL_STATE(5882)] = 284065, + [SMALL_STATE(5883)] = 284110, + [SMALL_STATE(5884)] = 284153, + [SMALL_STATE(5885)] = 284196, + [SMALL_STATE(5886)] = 284239, + [SMALL_STATE(5887)] = 284286, + [SMALL_STATE(5888)] = 284329, + [SMALL_STATE(5889)] = 284372, + [SMALL_STATE(5890)] = 284415, + [SMALL_STATE(5891)] = 284458, + [SMALL_STATE(5892)] = 284509, + [SMALL_STATE(5893)] = 284556, + [SMALL_STATE(5894)] = 284599, + [SMALL_STATE(5895)] = 284642, + [SMALL_STATE(5896)] = 284687, + [SMALL_STATE(5897)] = 284730, + [SMALL_STATE(5898)] = 284773, + [SMALL_STATE(5899)] = 284820, + [SMALL_STATE(5900)] = 284863, + [SMALL_STATE(5901)] = 284906, + [SMALL_STATE(5902)] = 284949, + [SMALL_STATE(5903)] = 284992, + [SMALL_STATE(5904)] = 285035, + [SMALL_STATE(5905)] = 285078, + [SMALL_STATE(5906)] = 285121, + [SMALL_STATE(5907)] = 285164, + [SMALL_STATE(5908)] = 285211, + [SMALL_STATE(5909)] = 285254, + [SMALL_STATE(5910)] = 285297, + [SMALL_STATE(5911)] = 285340, + [SMALL_STATE(5912)] = 285383, + [SMALL_STATE(5913)] = 285426, + [SMALL_STATE(5914)] = 285469, + [SMALL_STATE(5915)] = 285526, + [SMALL_STATE(5916)] = 285569, + [SMALL_STATE(5917)] = 285616, + [SMALL_STATE(5918)] = 285659, + [SMALL_STATE(5919)] = 285702, + [SMALL_STATE(5920)] = 285745, + [SMALL_STATE(5921)] = 285790, + [SMALL_STATE(5922)] = 285833, + [SMALL_STATE(5923)] = 285876, + [SMALL_STATE(5924)] = 285921, + [SMALL_STATE(5925)] = 285966, + [SMALL_STATE(5926)] = 286015, + [SMALL_STATE(5927)] = 286058, + [SMALL_STATE(5928)] = 286103, + [SMALL_STATE(5929)] = 286152, + [SMALL_STATE(5930)] = 286201, + [SMALL_STATE(5931)] = 286246, + [SMALL_STATE(5932)] = 286289, + [SMALL_STATE(5933)] = 286332, + [SMALL_STATE(5934)] = 286375, + [SMALL_STATE(5935)] = 286418, + [SMALL_STATE(5936)] = 286461, + [SMALL_STATE(5937)] = 286504, + [SMALL_STATE(5938)] = 286547, + [SMALL_STATE(5939)] = 286590, + [SMALL_STATE(5940)] = 286633, + [SMALL_STATE(5941)] = 286682, + [SMALL_STATE(5942)] = 286735, + [SMALL_STATE(5943)] = 286778, + [SMALL_STATE(5944)] = 286827, + [SMALL_STATE(5945)] = 286870, + [SMALL_STATE(5946)] = 286913, + [SMALL_STATE(5947)] = 286956, + [SMALL_STATE(5948)] = 286999, + [SMALL_STATE(5949)] = 287042, + [SMALL_STATE(5950)] = 287085, + [SMALL_STATE(5951)] = 287128, + [SMALL_STATE(5952)] = 287173, + [SMALL_STATE(5953)] = 287216, + [SMALL_STATE(5954)] = 287259, + [SMALL_STATE(5955)] = 287302, + [SMALL_STATE(5956)] = 287345, + [SMALL_STATE(5957)] = 287388, + [SMALL_STATE(5958)] = 287431, + [SMALL_STATE(5959)] = 287480, + [SMALL_STATE(5960)] = 287523, + [SMALL_STATE(5961)] = 287574, + [SMALL_STATE(5962)] = 287617, + [SMALL_STATE(5963)] = 287660, + [SMALL_STATE(5964)] = 287703, + [SMALL_STATE(5965)] = 287746, + [SMALL_STATE(5966)] = 287789, + [SMALL_STATE(5967)] = 287838, + [SMALL_STATE(5968)] = 287881, + [SMALL_STATE(5969)] = 287950, + [SMALL_STATE(5970)] = 288009, + [SMALL_STATE(5971)] = 288052, + [SMALL_STATE(5972)] = 288097, + [SMALL_STATE(5973)] = 288140, + [SMALL_STATE(5974)] = 288201, + [SMALL_STATE(5975)] = 288244, + [SMALL_STATE(5976)] = 288287, + [SMALL_STATE(5977)] = 288330, + [SMALL_STATE(5978)] = 288373, + [SMALL_STATE(5979)] = 288416, + [SMALL_STATE(5980)] = 288459, + [SMALL_STATE(5981)] = 288522, + [SMALL_STATE(5982)] = 288565, + [SMALL_STATE(5983)] = 288608, + [SMALL_STATE(5984)] = 288653, + [SMALL_STATE(5985)] = 288696, + [SMALL_STATE(5986)] = 288745, + [SMALL_STATE(5987)] = 288790, + [SMALL_STATE(5988)] = 288855, + [SMALL_STATE(5989)] = 288898, + [SMALL_STATE(5990)] = 288941, + [SMALL_STATE(5991)] = 288984, + [SMALL_STATE(5992)] = 289027, + [SMALL_STATE(5993)] = 289070, + [SMALL_STATE(5994)] = 289137, + [SMALL_STATE(5995)] = 289180, + [SMALL_STATE(5996)] = 289223, + [SMALL_STATE(5997)] = 289272, + [SMALL_STATE(5998)] = 289341, + [SMALL_STATE(5999)] = 289384, + [SMALL_STATE(6000)] = 289439, + [SMALL_STATE(6001)] = 289482, + [SMALL_STATE(6002)] = 289525, + [SMALL_STATE(6003)] = 289568, + [SMALL_STATE(6004)] = 289611, + [SMALL_STATE(6005)] = 289654, + [SMALL_STATE(6006)] = 289697, + [SMALL_STATE(6007)] = 289740, + [SMALL_STATE(6008)] = 289783, + [SMALL_STATE(6009)] = 289826, + [SMALL_STATE(6010)] = 289869, + [SMALL_STATE(6011)] = 289912, + [SMALL_STATE(6012)] = 289981, + [SMALL_STATE(6013)] = 290026, + [SMALL_STATE(6014)] = 290095, + [SMALL_STATE(6015)] = 290138, + [SMALL_STATE(6016)] = 290183, + [SMALL_STATE(6017)] = 290226, + [SMALL_STATE(6018)] = 290275, + [SMALL_STATE(6019)] = 290318, + [SMALL_STATE(6020)] = 290361, + [SMALL_STATE(6021)] = 290404, + [SMALL_STATE(6022)] = 290447, + [SMALL_STATE(6023)] = 290490, + [SMALL_STATE(6024)] = 290533, + [SMALL_STATE(6025)] = 290576, + [SMALL_STATE(6026)] = 290623, + [SMALL_STATE(6027)] = 290666, + [SMALL_STATE(6028)] = 290709, + [SMALL_STATE(6029)] = 290760, + [SMALL_STATE(6030)] = 290803, + [SMALL_STATE(6031)] = 290846, + [SMALL_STATE(6032)] = 290889, + [SMALL_STATE(6033)] = 290932, + [SMALL_STATE(6034)] = 290977, + [SMALL_STATE(6035)] = 291020, + [SMALL_STATE(6036)] = 291065, + [SMALL_STATE(6037)] = 291112, + [SMALL_STATE(6038)] = 291155, + [SMALL_STATE(6039)] = 291198, + [SMALL_STATE(6040)] = 291241, + [SMALL_STATE(6041)] = 291284, + [SMALL_STATE(6042)] = 291327, + [SMALL_STATE(6043)] = 291370, + [SMALL_STATE(6044)] = 291419, + [SMALL_STATE(6045)] = 291462, + [SMALL_STATE(6046)] = 291505, + [SMALL_STATE(6047)] = 291548, + [SMALL_STATE(6048)] = 291591, + [SMALL_STATE(6049)] = 291634, + [SMALL_STATE(6050)] = 291683, + [SMALL_STATE(6051)] = 291730, + [SMALL_STATE(6052)] = 291773, + [SMALL_STATE(6053)] = 291816, [SMALL_STATE(6054)] = 291859, - [SMALL_STATE(6055)] = 291901, - [SMALL_STATE(6056)] = 291943, - [SMALL_STATE(6057)] = 291991, - [SMALL_STATE(6058)] = 292037, - [SMALL_STATE(6059)] = 292085, - [SMALL_STATE(6060)] = 292133, - [SMALL_STATE(6061)] = 292177, - [SMALL_STATE(6062)] = 292219, - [SMALL_STATE(6063)] = 292261, - [SMALL_STATE(6064)] = 292303, - [SMALL_STATE(6065)] = 292345, - [SMALL_STATE(6066)] = 292393, - [SMALL_STATE(6067)] = 292435, - [SMALL_STATE(6068)] = 292477, - [SMALL_STATE(6069)] = 292519, - [SMALL_STATE(6070)] = 292561, - [SMALL_STATE(6071)] = 292609, - [SMALL_STATE(6072)] = 292651, - [SMALL_STATE(6073)] = 292693, - [SMALL_STATE(6074)] = 292741, - [SMALL_STATE(6075)] = 292789, - [SMALL_STATE(6076)] = 292837, - [SMALL_STATE(6077)] = 292879, - [SMALL_STATE(6078)] = 292923, - [SMALL_STATE(6079)] = 292965, - [SMALL_STATE(6080)] = 293013, - [SMALL_STATE(6081)] = 293061, - [SMALL_STATE(6082)] = 293103, - [SMALL_STATE(6083)] = 293145, - [SMALL_STATE(6084)] = 293187, - [SMALL_STATE(6085)] = 293231, - [SMALL_STATE(6086)] = 293275, - [SMALL_STATE(6087)] = 293317, - [SMALL_STATE(6088)] = 293363, - [SMALL_STATE(6089)] = 293405, - [SMALL_STATE(6090)] = 293447, - [SMALL_STATE(6091)] = 293495, - [SMALL_STATE(6092)] = 293537, - [SMALL_STATE(6093)] = 293579, - [SMALL_STATE(6094)] = 293621, - [SMALL_STATE(6095)] = 293663, - [SMALL_STATE(6096)] = 293705, - [SMALL_STATE(6097)] = 293753, + [SMALL_STATE(6055)] = 291907, + [SMALL_STATE(6056)] = 291949, + [SMALL_STATE(6057)] = 291999, + [SMALL_STATE(6058)] = 292041, + [SMALL_STATE(6059)] = 292083, + [SMALL_STATE(6060)] = 292125, + [SMALL_STATE(6061)] = 292169, + [SMALL_STATE(6062)] = 292217, + [SMALL_STATE(6063)] = 292285, + [SMALL_STATE(6064)] = 292327, + [SMALL_STATE(6065)] = 292369, + [SMALL_STATE(6066)] = 292415, + [SMALL_STATE(6067)] = 292459, + [SMALL_STATE(6068)] = 292501, + [SMALL_STATE(6069)] = 292549, + [SMALL_STATE(6070)] = 292591, + [SMALL_STATE(6071)] = 292633, + [SMALL_STATE(6072)] = 292675, + [SMALL_STATE(6073)] = 292723, + [SMALL_STATE(6074)] = 292765, + [SMALL_STATE(6075)] = 292809, + [SMALL_STATE(6076)] = 292857, + [SMALL_STATE(6077)] = 292919, + [SMALL_STATE(6078)] = 292961, + [SMALL_STATE(6079)] = 293009, + [SMALL_STATE(6080)] = 293051, + [SMALL_STATE(6081)] = 293093, + [SMALL_STATE(6082)] = 293135, + [SMALL_STATE(6083)] = 293177, + [SMALL_STATE(6084)] = 293219, + [SMALL_STATE(6085)] = 293261, + [SMALL_STATE(6086)] = 293303, + [SMALL_STATE(6087)] = 293347, + [SMALL_STATE(6088)] = 293389, + [SMALL_STATE(6089)] = 293431, + [SMALL_STATE(6090)] = 293473, + [SMALL_STATE(6091)] = 293521, + [SMALL_STATE(6092)] = 293563, + [SMALL_STATE(6093)] = 293605, + [SMALL_STATE(6094)] = 293647, + [SMALL_STATE(6095)] = 293689, + [SMALL_STATE(6096)] = 293731, + [SMALL_STATE(6097)] = 293779, [SMALL_STATE(6098)] = 293821, - [SMALL_STATE(6099)] = 293867, - [SMALL_STATE(6100)] = 293915, - [SMALL_STATE(6101)] = 293957, - [SMALL_STATE(6102)] = 294023, - [SMALL_STATE(6103)] = 294067, - [SMALL_STATE(6104)] = 294109, - [SMALL_STATE(6105)] = 294151, - [SMALL_STATE(6106)] = 294193, - [SMALL_STATE(6107)] = 294235, - [SMALL_STATE(6108)] = 294299, - [SMALL_STATE(6109)] = 294341, - [SMALL_STATE(6110)] = 294383, - [SMALL_STATE(6111)] = 294445, - [SMALL_STATE(6112)] = 294491, - [SMALL_STATE(6113)] = 294533, - [SMALL_STATE(6114)] = 294579, - [SMALL_STATE(6115)] = 294621, - [SMALL_STATE(6116)] = 294663, - [SMALL_STATE(6117)] = 294705, - [SMALL_STATE(6118)] = 294753, - [SMALL_STATE(6119)] = 294799, - [SMALL_STATE(6120)] = 294859, - [SMALL_STATE(6121)] = 294901, - [SMALL_STATE(6122)] = 294943, - [SMALL_STATE(6123)] = 295001, - [SMALL_STATE(6124)] = 295047, - [SMALL_STATE(6125)] = 295093, - [SMALL_STATE(6126)] = 295143, - [SMALL_STATE(6127)] = 295185, - [SMALL_STATE(6128)] = 295227, - [SMALL_STATE(6129)] = 295275, - [SMALL_STATE(6130)] = 295317, - [SMALL_STATE(6131)] = 295373, - [SMALL_STATE(6132)] = 295415, - [SMALL_STATE(6133)] = 295457, - [SMALL_STATE(6134)] = 295505, - [SMALL_STATE(6135)] = 295553, - [SMALL_STATE(6136)] = 295595, - [SMALL_STATE(6137)] = 295637, - [SMALL_STATE(6138)] = 295679, - [SMALL_STATE(6139)] = 295729, - [SMALL_STATE(6140)] = 295771, - [SMALL_STATE(6141)] = 295813, - [SMALL_STATE(6142)] = 295861, - [SMALL_STATE(6143)] = 295905, - [SMALL_STATE(6144)] = 295947, - [SMALL_STATE(6145)] = 295989, - [SMALL_STATE(6146)] = 296043, - [SMALL_STATE(6147)] = 296089, - [SMALL_STATE(6148)] = 296133, - [SMALL_STATE(6149)] = 296179, - [SMALL_STATE(6150)] = 296225, - [SMALL_STATE(6151)] = 296267, - [SMALL_STATE(6152)] = 296309, - [SMALL_STATE(6153)] = 296351, - [SMALL_STATE(6154)] = 296399, - [SMALL_STATE(6155)] = 296443, - [SMALL_STATE(6156)] = 296491, - [SMALL_STATE(6157)] = 296537, - [SMALL_STATE(6158)] = 296579, - [SMALL_STATE(6159)] = 296633, - [SMALL_STATE(6160)] = 296675, - [SMALL_STATE(6161)] = 296721, - [SMALL_STATE(6162)] = 296769, - [SMALL_STATE(6163)] = 296811, - [SMALL_STATE(6164)] = 296859, - [SMALL_STATE(6165)] = 296901, - [SMALL_STATE(6166)] = 296947, - [SMALL_STATE(6167)] = 296999, - [SMALL_STATE(6168)] = 297067, - [SMALL_STATE(6169)] = 297109, - [SMALL_STATE(6170)] = 297153, - [SMALL_STATE(6171)] = 297203, - [SMALL_STATE(6172)] = 297249, - [SMALL_STATE(6173)] = 297305, - [SMALL_STATE(6174)] = 297347, - [SMALL_STATE(6175)] = 297395, - [SMALL_STATE(6176)] = 297437, - [SMALL_STATE(6177)] = 297479, - [SMALL_STATE(6178)] = 297523, - [SMALL_STATE(6179)] = 297575, - [SMALL_STATE(6180)] = 297633, - [SMALL_STATE(6181)] = 297681, - [SMALL_STATE(6182)] = 297725, - [SMALL_STATE(6183)] = 297771, - [SMALL_STATE(6184)] = 297817, - [SMALL_STATE(6185)] = 297877, - [SMALL_STATE(6186)] = 297939, - [SMALL_STATE(6187)] = 298003, - [SMALL_STATE(6188)] = 298045, - [SMALL_STATE(6189)] = 298087, - [SMALL_STATE(6190)] = 298129, - [SMALL_STATE(6191)] = 298195, - [SMALL_STATE(6192)] = 298237, - [SMALL_STATE(6193)] = 298285, - [SMALL_STATE(6194)] = 298327, - [SMALL_STATE(6195)] = 298371, - [SMALL_STATE(6196)] = 298413, - [SMALL_STATE(6197)] = 298455, - [SMALL_STATE(6198)] = 298525, - [SMALL_STATE(6199)] = 298567, - [SMALL_STATE(6200)] = 298609, - [SMALL_STATE(6201)] = 298651, - [SMALL_STATE(6202)] = 298693, - [SMALL_STATE(6203)] = 298735, - [SMALL_STATE(6204)] = 298777, - [SMALL_STATE(6205)] = 298819, - [SMALL_STATE(6206)] = 298867, - [SMALL_STATE(6207)] = 298915, - [SMALL_STATE(6208)] = 298959, - [SMALL_STATE(6209)] = 299007, - [SMALL_STATE(6210)] = 299049, - [SMALL_STATE(6211)] = 299091, - [SMALL_STATE(6212)] = 299133, - [SMALL_STATE(6213)] = 299175, - [SMALL_STATE(6214)] = 299217, - [SMALL_STATE(6215)] = 299259, - [SMALL_STATE(6216)] = 299301, - [SMALL_STATE(6217)] = 299343, - [SMALL_STATE(6218)] = 299385, - [SMALL_STATE(6219)] = 299427, - [SMALL_STATE(6220)] = 299469, - [SMALL_STATE(6221)] = 299511, - [SMALL_STATE(6222)] = 299553, - [SMALL_STATE(6223)] = 299601, - [SMALL_STATE(6224)] = 299643, - [SMALL_STATE(6225)] = 299685, - [SMALL_STATE(6226)] = 299733, - [SMALL_STATE(6227)] = 299775, - [SMALL_STATE(6228)] = 299817, - [SMALL_STATE(6229)] = 299859, - [SMALL_STATE(6230)] = 299903, - [SMALL_STATE(6231)] = 299945, - [SMALL_STATE(6232)] = 299989, - [SMALL_STATE(6233)] = 300031, - [SMALL_STATE(6234)] = 300073, - [SMALL_STATE(6235)] = 300115, - [SMALL_STATE(6236)] = 300157, - [SMALL_STATE(6237)] = 300199, - [SMALL_STATE(6238)] = 300241, - [SMALL_STATE(6239)] = 300283, - [SMALL_STATE(6240)] = 300329, - [SMALL_STATE(6241)] = 300371, - [SMALL_STATE(6242)] = 300413, - [SMALL_STATE(6243)] = 300457, - [SMALL_STATE(6244)] = 300499, - [SMALL_STATE(6245)] = 300541, - [SMALL_STATE(6246)] = 300583, - [SMALL_STATE(6247)] = 300629, - [SMALL_STATE(6248)] = 300671, - [SMALL_STATE(6249)] = 300713, - [SMALL_STATE(6250)] = 300755, - [SMALL_STATE(6251)] = 300797, - [SMALL_STATE(6252)] = 300839, + [SMALL_STATE(6099)] = 293863, + [SMALL_STATE(6100)] = 293905, + [SMALL_STATE(6101)] = 293969, + [SMALL_STATE(6102)] = 294011, + [SMALL_STATE(6103)] = 294053, + [SMALL_STATE(6104)] = 294095, + [SMALL_STATE(6105)] = 294139, + [SMALL_STATE(6106)] = 294181, + [SMALL_STATE(6107)] = 294227, + [SMALL_STATE(6108)] = 294269, + [SMALL_STATE(6109)] = 294311, + [SMALL_STATE(6110)] = 294355, + [SMALL_STATE(6111)] = 294397, + [SMALL_STATE(6112)] = 294439, + [SMALL_STATE(6113)] = 294481, + [SMALL_STATE(6114)] = 294523, + [SMALL_STATE(6115)] = 294565, + [SMALL_STATE(6116)] = 294609, + [SMALL_STATE(6117)] = 294651, + [SMALL_STATE(6118)] = 294693, + [SMALL_STATE(6119)] = 294735, + [SMALL_STATE(6120)] = 294777, + [SMALL_STATE(6121)] = 294843, + [SMALL_STATE(6122)] = 294885, + [SMALL_STATE(6123)] = 294927, + [SMALL_STATE(6124)] = 294969, + [SMALL_STATE(6125)] = 295015, + [SMALL_STATE(6126)] = 295057, + [SMALL_STATE(6127)] = 295099, + [SMALL_STATE(6128)] = 295141, + [SMALL_STATE(6129)] = 295187, + [SMALL_STATE(6130)] = 295229, + [SMALL_STATE(6131)] = 295271, + [SMALL_STATE(6132)] = 295313, + [SMALL_STATE(6133)] = 295361, + [SMALL_STATE(6134)] = 295403, + [SMALL_STATE(6135)] = 295455, + [SMALL_STATE(6136)] = 295503, + [SMALL_STATE(6137)] = 295545, + [SMALL_STATE(6138)] = 295605, + [SMALL_STATE(6139)] = 295651, + [SMALL_STATE(6140)] = 295697, + [SMALL_STATE(6141)] = 295739, + [SMALL_STATE(6142)] = 295781, + [SMALL_STATE(6143)] = 295827, + [SMALL_STATE(6144)] = 295869, + [SMALL_STATE(6145)] = 295911, + [SMALL_STATE(6146)] = 295953, + [SMALL_STATE(6147)] = 295995, + [SMALL_STATE(6148)] = 296037, + [SMALL_STATE(6149)] = 296079, + [SMALL_STATE(6150)] = 296121, + [SMALL_STATE(6151)] = 296163, + [SMALL_STATE(6152)] = 296211, + [SMALL_STATE(6153)] = 296257, + [SMALL_STATE(6154)] = 296299, + [SMALL_STATE(6155)] = 296341, + [SMALL_STATE(6156)] = 296383, + [SMALL_STATE(6157)] = 296425, + [SMALL_STATE(6158)] = 296467, + [SMALL_STATE(6159)] = 296509, + [SMALL_STATE(6160)] = 296557, + [SMALL_STATE(6161)] = 296599, + [SMALL_STATE(6162)] = 296641, + [SMALL_STATE(6163)] = 296683, + [SMALL_STATE(6164)] = 296725, + [SMALL_STATE(6165)] = 296769, + [SMALL_STATE(6166)] = 296811, + [SMALL_STATE(6167)] = 296853, + [SMALL_STATE(6168)] = 296901, + [SMALL_STATE(6169)] = 296949, + [SMALL_STATE(6170)] = 296995, + [SMALL_STATE(6171)] = 297041, + [SMALL_STATE(6172)] = 297085, + [SMALL_STATE(6173)] = 297127, + [SMALL_STATE(6174)] = 297169, + [SMALL_STATE(6175)] = 297217, + [SMALL_STATE(6176)] = 297259, + [SMALL_STATE(6177)] = 297301, + [SMALL_STATE(6178)] = 297349, + [SMALL_STATE(6179)] = 297393, + [SMALL_STATE(6180)] = 297439, + [SMALL_STATE(6181)] = 297481, + [SMALL_STATE(6182)] = 297527, + [SMALL_STATE(6183)] = 297569, + [SMALL_STATE(6184)] = 297617, + [SMALL_STATE(6185)] = 297659, + [SMALL_STATE(6186)] = 297705, + [SMALL_STATE(6187)] = 297747, + [SMALL_STATE(6188)] = 297789, + [SMALL_STATE(6189)] = 297831, + [SMALL_STATE(6190)] = 297877, + [SMALL_STATE(6191)] = 297925, + [SMALL_STATE(6192)] = 297967, + [SMALL_STATE(6193)] = 298009, + [SMALL_STATE(6194)] = 298051, + [SMALL_STATE(6195)] = 298099, + [SMALL_STATE(6196)] = 298153, + [SMALL_STATE(6197)] = 298195, + [SMALL_STATE(6198)] = 298245, + [SMALL_STATE(6199)] = 298301, + [SMALL_STATE(6200)] = 298349, + [SMALL_STATE(6201)] = 298393, + [SMALL_STATE(6202)] = 298437, + [SMALL_STATE(6203)] = 298489, + [SMALL_STATE(6204)] = 298547, + [SMALL_STATE(6205)] = 298589, + [SMALL_STATE(6206)] = 298649, + [SMALL_STATE(6207)] = 298711, + [SMALL_STATE(6208)] = 298759, + [SMALL_STATE(6209)] = 298823, + [SMALL_STATE(6210)] = 298889, + [SMALL_STATE(6211)] = 298931, + [SMALL_STATE(6212)] = 298999, + [SMALL_STATE(6213)] = 299041, + [SMALL_STATE(6214)] = 299083, + [SMALL_STATE(6215)] = 299131, + [SMALL_STATE(6216)] = 299201, + [SMALL_STATE(6217)] = 299245, + [SMALL_STATE(6218)] = 299291, + [SMALL_STATE(6219)] = 299333, + [SMALL_STATE(6220)] = 299375, + [SMALL_STATE(6221)] = 299417, + [SMALL_STATE(6222)] = 299463, + [SMALL_STATE(6223)] = 299505, + [SMALL_STATE(6224)] = 299547, + [SMALL_STATE(6225)] = 299589, + [SMALL_STATE(6226)] = 299633, + [SMALL_STATE(6227)] = 299681, + [SMALL_STATE(6228)] = 299737, + [SMALL_STATE(6229)] = 299779, + [SMALL_STATE(6230)] = 299827, + [SMALL_STATE(6231)] = 299875, + [SMALL_STATE(6232)] = 299917, + [SMALL_STATE(6233)] = 299965, + [SMALL_STATE(6234)] = 300013, + [SMALL_STATE(6235)] = 300059, + [SMALL_STATE(6236)] = 300103, + [SMALL_STATE(6237)] = 300145, + [SMALL_STATE(6238)] = 300187, + [SMALL_STATE(6239)] = 300229, + [SMALL_STATE(6240)] = 300271, + [SMALL_STATE(6241)] = 300325, + [SMALL_STATE(6242)] = 300375, + [SMALL_STATE(6243)] = 300417, + [SMALL_STATE(6244)] = 300459, + [SMALL_STATE(6245)] = 300503, + [SMALL_STATE(6246)] = 300551, + [SMALL_STATE(6247)] = 300597, + [SMALL_STATE(6248)] = 300655, + [SMALL_STATE(6249)] = 300701, + [SMALL_STATE(6250)] = 300743, + [SMALL_STATE(6251)] = 300785, + [SMALL_STATE(6252)] = 300833, [SMALL_STATE(6253)] = 300881, - [SMALL_STATE(6254)] = 300922, - [SMALL_STATE(6255)] = 300965, - [SMALL_STATE(6256)] = 301006, + [SMALL_STATE(6254)] = 300942, + [SMALL_STATE(6255)] = 300987, + [SMALL_STATE(6256)] = 301032, [SMALL_STATE(6257)] = 301075, [SMALL_STATE(6258)] = 301116, - [SMALL_STATE(6259)] = 301157, - [SMALL_STATE(6260)] = 301198, - [SMALL_STATE(6261)] = 301243, - [SMALL_STATE(6262)] = 301288, - [SMALL_STATE(6263)] = 301335, - [SMALL_STATE(6264)] = 301380, - [SMALL_STATE(6265)] = 301421, - [SMALL_STATE(6266)] = 301468, - [SMALL_STATE(6267)] = 301509, - [SMALL_STATE(6268)] = 301554, - [SMALL_STATE(6269)] = 301601, - [SMALL_STATE(6270)] = 301642, - [SMALL_STATE(6271)] = 301687, - [SMALL_STATE(6272)] = 301730, - [SMALL_STATE(6273)] = 301775, - [SMALL_STATE(6274)] = 301820, - [SMALL_STATE(6275)] = 301865, - [SMALL_STATE(6276)] = 301908, - [SMALL_STATE(6277)] = 301951, - [SMALL_STATE(6278)] = 301994, - [SMALL_STATE(6279)] = 302035, - [SMALL_STATE(6280)] = 302076, - [SMALL_STATE(6281)] = 302147, - [SMALL_STATE(6282)] = 302216, - [SMALL_STATE(6283)] = 302283, - [SMALL_STATE(6284)] = 302348, - [SMALL_STATE(6285)] = 302411, - [SMALL_STATE(6286)] = 302452, - [SMALL_STATE(6287)] = 302513, - [SMALL_STATE(6288)] = 302572, - [SMALL_STATE(6289)] = 302613, - [SMALL_STATE(6290)] = 302666, - [SMALL_STATE(6291)] = 302723, - [SMALL_STATE(6292)] = 302764, - [SMALL_STATE(6293)] = 302817, - [SMALL_STATE(6294)] = 302858, - [SMALL_STATE(6295)] = 302925, - [SMALL_STATE(6296)] = 302974, - [SMALL_STATE(6297)] = 303029, - [SMALL_STATE(6298)] = 303070, - [SMALL_STATE(6299)] = 303117, - [SMALL_STATE(6300)] = 303160, - [SMALL_STATE(6301)] = 303211, - [SMALL_STATE(6302)] = 303252, - [SMALL_STATE(6303)] = 303309, - [SMALL_STATE(6304)] = 303368, - [SMALL_STATE(6305)] = 303429, - [SMALL_STATE(6306)] = 303492, - [SMALL_STATE(6307)] = 303557, - [SMALL_STATE(6308)] = 303624, - [SMALL_STATE(6309)] = 303689, - [SMALL_STATE(6310)] = 303758, - [SMALL_STATE(6311)] = 303799, - [SMALL_STATE(6312)] = 303840, - [SMALL_STATE(6313)] = 303881, - [SMALL_STATE(6314)] = 303942, - [SMALL_STATE(6315)] = 303983, - [SMALL_STATE(6316)] = 304024, - [SMALL_STATE(6317)] = 304065, - [SMALL_STATE(6318)] = 304112, - [SMALL_STATE(6319)] = 304153, - [SMALL_STATE(6320)] = 304194, - [SMALL_STATE(6321)] = 304235, - [SMALL_STATE(6322)] = 304276, - [SMALL_STATE(6323)] = 304317, - [SMALL_STATE(6324)] = 304360, - [SMALL_STATE(6325)] = 304405, - [SMALL_STATE(6326)] = 304446, - [SMALL_STATE(6327)] = 304509, - [SMALL_STATE(6328)] = 304550, - [SMALL_STATE(6329)] = 304593, - [SMALL_STATE(6330)] = 304634, - [SMALL_STATE(6331)] = 304675, - [SMALL_STATE(6332)] = 304716, - [SMALL_STATE(6333)] = 304759, - [SMALL_STATE(6334)] = 304800, - [SMALL_STATE(6335)] = 304841, - [SMALL_STATE(6336)] = 304882, - [SMALL_STATE(6337)] = 304927, - [SMALL_STATE(6338)] = 304982, - [SMALL_STATE(6339)] = 305023, - [SMALL_STATE(6340)] = 305070, - [SMALL_STATE(6341)] = 305123, - [SMALL_STATE(6342)] = 305174, - [SMALL_STATE(6343)] = 305217, - [SMALL_STATE(6344)] = 305258, - [SMALL_STATE(6345)] = 305303, - [SMALL_STATE(6346)] = 305344, - [SMALL_STATE(6347)] = 305387, - [SMALL_STATE(6348)] = 305428, - [SMALL_STATE(6349)] = 305469, - [SMALL_STATE(6350)] = 305514, - [SMALL_STATE(6351)] = 305555, - [SMALL_STATE(6352)] = 305600, - [SMALL_STATE(6353)] = 305641, - [SMALL_STATE(6354)] = 305682, - [SMALL_STATE(6355)] = 305723, - [SMALL_STATE(6356)] = 305764, - [SMALL_STATE(6357)] = 305807, - [SMALL_STATE(6358)] = 305850, - [SMALL_STATE(6359)] = 305891, - [SMALL_STATE(6360)] = 305932, - [SMALL_STATE(6361)] = 305973, - [SMALL_STATE(6362)] = 306014, - [SMALL_STATE(6363)] = 306055, - [SMALL_STATE(6364)] = 306096, - [SMALL_STATE(6365)] = 306137, - [SMALL_STATE(6366)] = 306178, - [SMALL_STATE(6367)] = 306219, - [SMALL_STATE(6368)] = 306260, - [SMALL_STATE(6369)] = 306301, - [SMALL_STATE(6370)] = 306344, - [SMALL_STATE(6371)] = 306391, - [SMALL_STATE(6372)] = 306438, - [SMALL_STATE(6373)] = 306479, - [SMALL_STATE(6374)] = 306540, - [SMALL_STATE(6375)] = 306583, - [SMALL_STATE(6376)] = 306624, - [SMALL_STATE(6377)] = 306681, - [SMALL_STATE(6378)] = 306732, - [SMALL_STATE(6379)] = 306777, - [SMALL_STATE(6380)] = 306818, - [SMALL_STATE(6381)] = 306873, - [SMALL_STATE(6382)] = 306926, - [SMALL_STATE(6383)] = 306985, - [SMALL_STATE(6384)] = 307026, - [SMALL_STATE(6385)] = 307067, - [SMALL_STATE(6386)] = 307108, - [SMALL_STATE(6387)] = 307171, - [SMALL_STATE(6388)] = 307212, - [SMALL_STATE(6389)] = 307277, - [SMALL_STATE(6390)] = 307318, - [SMALL_STATE(6391)] = 307359, - [SMALL_STATE(6392)] = 307400, - [SMALL_STATE(6393)] = 307441, - [SMALL_STATE(6394)] = 307508, - [SMALL_STATE(6395)] = 307555, - [SMALL_STATE(6396)] = 307624, - [SMALL_STATE(6397)] = 307671, - [SMALL_STATE(6398)] = 307722, - [SMALL_STATE(6399)] = 307763, - [SMALL_STATE(6400)] = 307806, - [SMALL_STATE(6401)] = 307847, - [SMALL_STATE(6402)] = 307888, - [SMALL_STATE(6403)] = 307959, - [SMALL_STATE(6404)] = 308000, - [SMALL_STATE(6405)] = 308043, - [SMALL_STATE(6406)] = 308086, - [SMALL_STATE(6407)] = 308127, - [SMALL_STATE(6408)] = 308170, - [SMALL_STATE(6409)] = 308211, - [SMALL_STATE(6410)] = 308252, - [SMALL_STATE(6411)] = 308293, - [SMALL_STATE(6412)] = 308340, - [SMALL_STATE(6413)] = 308387, - [SMALL_STATE(6414)] = 308430, - [SMALL_STATE(6415)] = 308471, - [SMALL_STATE(6416)] = 308544, - [SMALL_STATE(6417)] = 308585, - [SMALL_STATE(6418)] = 308626, - [SMALL_STATE(6419)] = 308667, - [SMALL_STATE(6420)] = 308708, - [SMALL_STATE(6421)] = 308749, - [SMALL_STATE(6422)] = 308794, - [SMALL_STATE(6423)] = 308841, - [SMALL_STATE(6424)] = 308886, - [SMALL_STATE(6425)] = 308929, - [SMALL_STATE(6426)] = 308970, - [SMALL_STATE(6427)] = 309011, - [SMALL_STATE(6428)] = 309052, - [SMALL_STATE(6429)] = 309093, - [SMALL_STATE(6430)] = 309138, - [SMALL_STATE(6431)] = 309179, - [SMALL_STATE(6432)] = 309224, - [SMALL_STATE(6433)] = 309265, - [SMALL_STATE(6434)] = 309308, - [SMALL_STATE(6435)] = 309379, - [SMALL_STATE(6436)] = 309424, - [SMALL_STATE(6437)] = 309471, - [SMALL_STATE(6438)] = 309518, - [SMALL_STATE(6439)] = 309559, - [SMALL_STATE(6440)] = 309602, - [SMALL_STATE(6441)] = 309645, - [SMALL_STATE(6442)] = 309688, - [SMALL_STATE(6443)] = 309731, - [SMALL_STATE(6444)] = 309776, - [SMALL_STATE(6445)] = 309821, - [SMALL_STATE(6446)] = 309862, - [SMALL_STATE(6447)] = 309905, - [SMALL_STATE(6448)] = 309948, - [SMALL_STATE(6449)] = 309989, - [SMALL_STATE(6450)] = 310046, - [SMALL_STATE(6451)] = 310089, - [SMALL_STATE(6452)] = 310136, - [SMALL_STATE(6453)] = 310211, - [SMALL_STATE(6454)] = 310252, - [SMALL_STATE(6455)] = 310293, - [SMALL_STATE(6456)] = 310336, - [SMALL_STATE(6457)] = 310377, - [SMALL_STATE(6458)] = 310418, - [SMALL_STATE(6459)] = 310463, - [SMALL_STATE(6460)] = 310504, - [SMALL_STATE(6461)] = 310545, - [SMALL_STATE(6462)] = 310586, - [SMALL_STATE(6463)] = 310627, - [SMALL_STATE(6464)] = 310674, - [SMALL_STATE(6465)] = 310715, - [SMALL_STATE(6466)] = 310760, - [SMALL_STATE(6467)] = 310801, - [SMALL_STATE(6468)] = 310844, - [SMALL_STATE(6469)] = 310887, - [SMALL_STATE(6470)] = 310934, - [SMALL_STATE(6471)] = 310989, - [SMALL_STATE(6472)] = 311030, - [SMALL_STATE(6473)] = 311079, - [SMALL_STATE(6474)] = 311120, - [SMALL_STATE(6475)] = 311179, - [SMALL_STATE(6476)] = 311226, - [SMALL_STATE(6477)] = 311269, - [SMALL_STATE(6478)] = 311312, - [SMALL_STATE(6479)] = 311385, - [SMALL_STATE(6480)] = 311456, - [SMALL_STATE(6481)] = 311507, - [SMALL_STATE(6482)] = 311568, - [SMALL_STATE(6483)] = 311609, - [SMALL_STATE(6484)] = 311652, - [SMALL_STATE(6485)] = 311695, - [SMALL_STATE(6486)] = 311764, - [SMALL_STATE(6487)] = 311827, - [SMALL_STATE(6488)] = 311894, - [SMALL_STATE(6489)] = 311935, - [SMALL_STATE(6490)] = 311982, - [SMALL_STATE(6491)] = 312023, + [SMALL_STATE(6259)] = 301161, + [SMALL_STATE(6260)] = 301202, + [SMALL_STATE(6261)] = 301247, + [SMALL_STATE(6262)] = 301292, + [SMALL_STATE(6263)] = 301333, + [SMALL_STATE(6264)] = 301378, + [SMALL_STATE(6265)] = 301419, + [SMALL_STATE(6266)] = 301460, + [SMALL_STATE(6267)] = 301503, + [SMALL_STATE(6268)] = 301548, + [SMALL_STATE(6269)] = 301589, + [SMALL_STATE(6270)] = 301630, + [SMALL_STATE(6271)] = 301673, + [SMALL_STATE(6272)] = 301716, + [SMALL_STATE(6273)] = 301759, + [SMALL_STATE(6274)] = 301800, + [SMALL_STATE(6275)] = 301857, + [SMALL_STATE(6276)] = 301898, + [SMALL_STATE(6277)] = 301949, + [SMALL_STATE(6278)] = 301990, + [SMALL_STATE(6279)] = 302051, + [SMALL_STATE(6280)] = 302092, + [SMALL_STATE(6281)] = 302139, + [SMALL_STATE(6282)] = 302180, + [SMALL_STATE(6283)] = 302223, + [SMALL_STATE(6284)] = 302264, + [SMALL_STATE(6285)] = 302317, + [SMALL_STATE(6286)] = 302358, + [SMALL_STATE(6287)] = 302421, + [SMALL_STATE(6288)] = 302462, + [SMALL_STATE(6289)] = 302527, + [SMALL_STATE(6290)] = 302568, + [SMALL_STATE(6291)] = 302635, + [SMALL_STATE(6292)] = 302676, + [SMALL_STATE(6293)] = 302745, + [SMALL_STATE(6294)] = 302786, + [SMALL_STATE(6295)] = 302857, + [SMALL_STATE(6296)] = 302898, + [SMALL_STATE(6297)] = 302971, + [SMALL_STATE(6298)] = 303012, + [SMALL_STATE(6299)] = 303087, + [SMALL_STATE(6300)] = 303128, + [SMALL_STATE(6301)] = 303171, + [SMALL_STATE(6302)] = 303214, + [SMALL_STATE(6303)] = 303257, + [SMALL_STATE(6304)] = 303302, + [SMALL_STATE(6305)] = 303345, + [SMALL_STATE(6306)] = 303392, + [SMALL_STATE(6307)] = 303435, + [SMALL_STATE(6308)] = 303478, + [SMALL_STATE(6309)] = 303519, + [SMALL_STATE(6310)] = 303560, + [SMALL_STATE(6311)] = 303601, + [SMALL_STATE(6312)] = 303642, + [SMALL_STATE(6313)] = 303687, + [SMALL_STATE(6314)] = 303732, + [SMALL_STATE(6315)] = 303775, + [SMALL_STATE(6316)] = 303822, + [SMALL_STATE(6317)] = 303867, + [SMALL_STATE(6318)] = 303912, + [SMALL_STATE(6319)] = 303957, + [SMALL_STATE(6320)] = 303998, + [SMALL_STATE(6321)] = 304045, + [SMALL_STATE(6322)] = 304086, + [SMALL_STATE(6323)] = 304127, + [SMALL_STATE(6324)] = 304170, + [SMALL_STATE(6325)] = 304217, + [SMALL_STATE(6326)] = 304262, + [SMALL_STATE(6327)] = 304307, + [SMALL_STATE(6328)] = 304348, + [SMALL_STATE(6329)] = 304389, + [SMALL_STATE(6330)] = 304430, + [SMALL_STATE(6331)] = 304471, + [SMALL_STATE(6332)] = 304512, + [SMALL_STATE(6333)] = 304557, + [SMALL_STATE(6334)] = 304598, + [SMALL_STATE(6335)] = 304639, + [SMALL_STATE(6336)] = 304680, + [SMALL_STATE(6337)] = 304721, + [SMALL_STATE(6338)] = 304762, + [SMALL_STATE(6339)] = 304803, + [SMALL_STATE(6340)] = 304844, + [SMALL_STATE(6341)] = 304885, + [SMALL_STATE(6342)] = 304928, + [SMALL_STATE(6343)] = 304969, + [SMALL_STATE(6344)] = 305012, + [SMALL_STATE(6345)] = 305059, + [SMALL_STATE(6346)] = 305102, + [SMALL_STATE(6347)] = 305149, + [SMALL_STATE(6348)] = 305196, + [SMALL_STATE(6349)] = 305237, + [SMALL_STATE(6350)] = 305278, + [SMALL_STATE(6351)] = 305319, + [SMALL_STATE(6352)] = 305360, + [SMALL_STATE(6353)] = 305401, + [SMALL_STATE(6354)] = 305442, + [SMALL_STATE(6355)] = 305483, + [SMALL_STATE(6356)] = 305524, + [SMALL_STATE(6357)] = 305565, + [SMALL_STATE(6358)] = 305606, + [SMALL_STATE(6359)] = 305649, + [SMALL_STATE(6360)] = 305690, + [SMALL_STATE(6361)] = 305733, + [SMALL_STATE(6362)] = 305774, + [SMALL_STATE(6363)] = 305815, + [SMALL_STATE(6364)] = 305856, + [SMALL_STATE(6365)] = 305903, + [SMALL_STATE(6366)] = 305944, + [SMALL_STATE(6367)] = 305985, + [SMALL_STATE(6368)] = 306026, + [SMALL_STATE(6369)] = 306067, + [SMALL_STATE(6370)] = 306114, + [SMALL_STATE(6371)] = 306155, + [SMALL_STATE(6372)] = 306196, + [SMALL_STATE(6373)] = 306237, + [SMALL_STATE(6374)] = 306278, + [SMALL_STATE(6375)] = 306319, + [SMALL_STATE(6376)] = 306360, + [SMALL_STATE(6377)] = 306401, + [SMALL_STATE(6378)] = 306442, + [SMALL_STATE(6379)] = 306483, + [SMALL_STATE(6380)] = 306524, + [SMALL_STATE(6381)] = 306565, + [SMALL_STATE(6382)] = 306608, + [SMALL_STATE(6383)] = 306649, + [SMALL_STATE(6384)] = 306690, + [SMALL_STATE(6385)] = 306731, + [SMALL_STATE(6386)] = 306772, + [SMALL_STATE(6387)] = 306813, + [SMALL_STATE(6388)] = 306854, + [SMALL_STATE(6389)] = 306895, + [SMALL_STATE(6390)] = 306936, + [SMALL_STATE(6391)] = 306977, + [SMALL_STATE(6392)] = 307018, + [SMALL_STATE(6393)] = 307059, + [SMALL_STATE(6394)] = 307100, + [SMALL_STATE(6395)] = 307141, + [SMALL_STATE(6396)] = 307182, + [SMALL_STATE(6397)] = 307223, + [SMALL_STATE(6398)] = 307264, + [SMALL_STATE(6399)] = 307305, + [SMALL_STATE(6400)] = 307346, + [SMALL_STATE(6401)] = 307387, + [SMALL_STATE(6402)] = 307428, + [SMALL_STATE(6403)] = 307469, + [SMALL_STATE(6404)] = 307510, + [SMALL_STATE(6405)] = 307551, + [SMALL_STATE(6406)] = 307592, + [SMALL_STATE(6407)] = 307635, + [SMALL_STATE(6408)] = 307676, + [SMALL_STATE(6409)] = 307717, + [SMALL_STATE(6410)] = 307758, + [SMALL_STATE(6411)] = 307799, + [SMALL_STATE(6412)] = 307840, + [SMALL_STATE(6413)] = 307881, + [SMALL_STATE(6414)] = 307922, + [SMALL_STATE(6415)] = 307963, + [SMALL_STATE(6416)] = 308004, + [SMALL_STATE(6417)] = 308047, + [SMALL_STATE(6418)] = 308090, + [SMALL_STATE(6419)] = 308133, + [SMALL_STATE(6420)] = 308176, + [SMALL_STATE(6421)] = 308229, + [SMALL_STATE(6422)] = 308278, + [SMALL_STATE(6423)] = 308333, + [SMALL_STATE(6424)] = 308380, + [SMALL_STATE(6425)] = 308423, + [SMALL_STATE(6426)] = 308470, + [SMALL_STATE(6427)] = 308521, + [SMALL_STATE(6428)] = 308578, + [SMALL_STATE(6429)] = 308637, + [SMALL_STATE(6430)] = 308698, + [SMALL_STATE(6431)] = 308761, + [SMALL_STATE(6432)] = 308826, + [SMALL_STATE(6433)] = 308873, + [SMALL_STATE(6434)] = 308940, + [SMALL_STATE(6435)] = 309009, + [SMALL_STATE(6436)] = 309054, + [SMALL_STATE(6437)] = 309099, + [SMALL_STATE(6438)] = 309142, + [SMALL_STATE(6439)] = 309185, + [SMALL_STATE(6440)] = 309228, + [SMALL_STATE(6441)] = 309271, + [SMALL_STATE(6442)] = 309316, + [SMALL_STATE(6443)] = 309359, + [SMALL_STATE(6444)] = 309402, + [SMALL_STATE(6445)] = 309449, + [SMALL_STATE(6446)] = 309504, + [SMALL_STATE(6447)] = 309555, + [SMALL_STATE(6448)] = 309612, + [SMALL_STATE(6449)] = 309659, + [SMALL_STATE(6450)] = 309702, + [SMALL_STATE(6451)] = 309755, + [SMALL_STATE(6452)] = 309814, + [SMALL_STATE(6453)] = 309875, + [SMALL_STATE(6454)] = 309938, + [SMALL_STATE(6455)] = 310003, + [SMALL_STATE(6456)] = 310070, + [SMALL_STATE(6457)] = 310139, + [SMALL_STATE(6458)] = 310210, + [SMALL_STATE(6459)] = 310265, + [SMALL_STATE(6460)] = 310316, + [SMALL_STATE(6461)] = 310373, + [SMALL_STATE(6462)] = 310420, + [SMALL_STATE(6463)] = 310463, + [SMALL_STATE(6464)] = 310516, + [SMALL_STATE(6465)] = 310575, + [SMALL_STATE(6466)] = 310638, + [SMALL_STATE(6467)] = 310703, + [SMALL_STATE(6468)] = 310770, + [SMALL_STATE(6469)] = 310839, + [SMALL_STATE(6470)] = 310910, + [SMALL_STATE(6471)] = 310957, + [SMALL_STATE(6472)] = 311004, + [SMALL_STATE(6473)] = 311059, + [SMALL_STATE(6474)] = 311108, + [SMALL_STATE(6475)] = 311167, + [SMALL_STATE(6476)] = 311214, + [SMALL_STATE(6477)] = 311257, + [SMALL_STATE(6478)] = 311308, + [SMALL_STATE(6479)] = 311369, + [SMALL_STATE(6480)] = 311432, + [SMALL_STATE(6481)] = 311497, + [SMALL_STATE(6482)] = 311564, + [SMALL_STATE(6483)] = 311633, + [SMALL_STATE(6484)] = 311704, + [SMALL_STATE(6485)] = 311777, + [SMALL_STATE(6486)] = 311822, + [SMALL_STATE(6487)] = 311867, + [SMALL_STATE(6488)] = 311914, + [SMALL_STATE(6489)] = 311959, + [SMALL_STATE(6490)] = 312004, + [SMALL_STATE(6491)] = 312047, [SMALL_STATE(6492)] = 312088, - [SMALL_STATE(6493)] = 312128, - [SMALL_STATE(6494)] = 312168, - [SMALL_STATE(6495)] = 312236, - [SMALL_STATE(6496)] = 312306, - [SMALL_STATE(6497)] = 312346, - [SMALL_STATE(6498)] = 312386, - [SMALL_STATE(6499)] = 312426, - [SMALL_STATE(6500)] = 312492, - [SMALL_STATE(6501)] = 312532, - [SMALL_STATE(6502)] = 312572, - [SMALL_STATE(6503)] = 312612, - [SMALL_STATE(6504)] = 312652, - [SMALL_STATE(6505)] = 312692, - [SMALL_STATE(6506)] = 312732, - [SMALL_STATE(6507)] = 312772, - [SMALL_STATE(6508)] = 312812, - [SMALL_STATE(6509)] = 312852, - [SMALL_STATE(6510)] = 312916, - [SMALL_STATE(6511)] = 312956, - [SMALL_STATE(6512)] = 313026, - [SMALL_STATE(6513)] = 313068, - [SMALL_STATE(6514)] = 313130, - [SMALL_STATE(6515)] = 313170, - [SMALL_STATE(6516)] = 313214, - [SMALL_STATE(6517)] = 313254, - [SMALL_STATE(6518)] = 313314, - [SMALL_STATE(6519)] = 313358, - [SMALL_STATE(6520)] = 313402, - [SMALL_STATE(6521)] = 313442, - [SMALL_STATE(6522)] = 313484, - [SMALL_STATE(6523)] = 313526, - [SMALL_STATE(6524)] = 313584, - [SMALL_STATE(6525)] = 313636, - [SMALL_STATE(6526)] = 313704, - [SMALL_STATE(6527)] = 313746, - [SMALL_STATE(6528)] = 313792, - [SMALL_STATE(6529)] = 313832, - [SMALL_STATE(6530)] = 313872, - [SMALL_STATE(6531)] = 313912, - [SMALL_STATE(6532)] = 313952, - [SMALL_STATE(6533)] = 313994, - [SMALL_STATE(6534)] = 314060, - [SMALL_STATE(6535)] = 314100, - [SMALL_STATE(6536)] = 314142, - [SMALL_STATE(6537)] = 314182, - [SMALL_STATE(6538)] = 314226, - [SMALL_STATE(6539)] = 314266, - [SMALL_STATE(6540)] = 314310, - [SMALL_STATE(6541)] = 314350, - [SMALL_STATE(6542)] = 314390, - [SMALL_STATE(6543)] = 314446, - [SMALL_STATE(6544)] = 314510, - [SMALL_STATE(6545)] = 314560, - [SMALL_STATE(6546)] = 314602, - [SMALL_STATE(6547)] = 314642, - [SMALL_STATE(6548)] = 314684, - [SMALL_STATE(6549)] = 314724, - [SMALL_STATE(6550)] = 314768, - [SMALL_STATE(6551)] = 314808, - [SMALL_STATE(6552)] = 314870, - [SMALL_STATE(6553)] = 314910, - [SMALL_STATE(6554)] = 314970, - [SMALL_STATE(6555)] = 315012, - [SMALL_STATE(6556)] = 315054, - [SMALL_STATE(6557)] = 315112, - [SMALL_STATE(6558)] = 315166, - [SMALL_STATE(6559)] = 315206, - [SMALL_STATE(6560)] = 315246, - [SMALL_STATE(6561)] = 315298, - [SMALL_STATE(6562)] = 315340, - [SMALL_STATE(6563)] = 315380, - [SMALL_STATE(6564)] = 315422, - [SMALL_STATE(6565)] = 315462, - [SMALL_STATE(6566)] = 315508, - [SMALL_STATE(6567)] = 315548, - [SMALL_STATE(6568)] = 315588, - [SMALL_STATE(6569)] = 315628, - [SMALL_STATE(6570)] = 315678, - [SMALL_STATE(6571)] = 315718, - [SMALL_STATE(6572)] = 315758, - [SMALL_STATE(6573)] = 315798, - [SMALL_STATE(6574)] = 315852, - [SMALL_STATE(6575)] = 315894, - [SMALL_STATE(6576)] = 315934, - [SMALL_STATE(6577)] = 315978, - [SMALL_STATE(6578)] = 316020, - [SMALL_STATE(6579)] = 316060, - [SMALL_STATE(6580)] = 316116, - [SMALL_STATE(6581)] = 316156, - [SMALL_STATE(6582)] = 316196, - [SMALL_STATE(6583)] = 316240, - [SMALL_STATE(6584)] = 316280, - [SMALL_STATE(6585)] = 316320, - [SMALL_STATE(6586)] = 316360, - [SMALL_STATE(6587)] = 316402, - [SMALL_STATE(6588)] = 316444, - [SMALL_STATE(6589)] = 316486, - [SMALL_STATE(6590)] = 316526, - [SMALL_STATE(6591)] = 316568, - [SMALL_STATE(6592)] = 316608, - [SMALL_STATE(6593)] = 316648, - [SMALL_STATE(6594)] = 316688, - [SMALL_STATE(6595)] = 316728, - [SMALL_STATE(6596)] = 316768, - [SMALL_STATE(6597)] = 316808, - [SMALL_STATE(6598)] = 316848, - [SMALL_STATE(6599)] = 316888, - [SMALL_STATE(6600)] = 316930, - [SMALL_STATE(6601)] = 316972, - [SMALL_STATE(6602)] = 317014, - [SMALL_STATE(6603)] = 317056, - [SMALL_STATE(6604)] = 317096, - [SMALL_STATE(6605)] = 317136, - [SMALL_STATE(6606)] = 317178, - [SMALL_STATE(6607)] = 317218, - [SMALL_STATE(6608)] = 317258, - [SMALL_STATE(6609)] = 317300, - [SMALL_STATE(6610)] = 317340, - [SMALL_STATE(6611)] = 317382, - [SMALL_STATE(6612)] = 317422, - [SMALL_STATE(6613)] = 317464, - [SMALL_STATE(6614)] = 317506, - [SMALL_STATE(6615)] = 317546, - [SMALL_STATE(6616)] = 317590, - [SMALL_STATE(6617)] = 317632, - [SMALL_STATE(6618)] = 317674, - [SMALL_STATE(6619)] = 317714, - [SMALL_STATE(6620)] = 317754, - [SMALL_STATE(6621)] = 317796, - [SMALL_STATE(6622)] = 317836, - [SMALL_STATE(6623)] = 317878, - [SMALL_STATE(6624)] = 317920, - [SMALL_STATE(6625)] = 317960, - [SMALL_STATE(6626)] = 318000, - [SMALL_STATE(6627)] = 318040, - [SMALL_STATE(6628)] = 318082, - [SMALL_STATE(6629)] = 318126, - [SMALL_STATE(6630)] = 318166, - [SMALL_STATE(6631)] = 318208, - [SMALL_STATE(6632)] = 318248, - [SMALL_STATE(6633)] = 318290, - [SMALL_STATE(6634)] = 318332, - [SMALL_STATE(6635)] = 318372, - [SMALL_STATE(6636)] = 318412, - [SMALL_STATE(6637)] = 318454, - [SMALL_STATE(6638)] = 318496, - [SMALL_STATE(6639)] = 318538, + [SMALL_STATE(6493)] = 312130, + [SMALL_STATE(6494)] = 312172, + [SMALL_STATE(6495)] = 312214, + [SMALL_STATE(6496)] = 312256, + [SMALL_STATE(6497)] = 312298, + [SMALL_STATE(6498)] = 312338, + [SMALL_STATE(6499)] = 312378, + [SMALL_STATE(6500)] = 312420, + [SMALL_STATE(6501)] = 312462, + [SMALL_STATE(6502)] = 312506, + [SMALL_STATE(6503)] = 312548, + [SMALL_STATE(6504)] = 312590, + [SMALL_STATE(6505)] = 312632, + [SMALL_STATE(6506)] = 312672, + [SMALL_STATE(6507)] = 312714, + [SMALL_STATE(6508)] = 312758, + [SMALL_STATE(6509)] = 312800, + [SMALL_STATE(6510)] = 312842, + [SMALL_STATE(6511)] = 312886, + [SMALL_STATE(6512)] = 312928, + [SMALL_STATE(6513)] = 312970, + [SMALL_STATE(6514)] = 313012, + [SMALL_STATE(6515)] = 313052, + [SMALL_STATE(6516)] = 313094, + [SMALL_STATE(6517)] = 313136, + [SMALL_STATE(6518)] = 313178, + [SMALL_STATE(6519)] = 313220, + [SMALL_STATE(6520)] = 313260, + [SMALL_STATE(6521)] = 313300, + [SMALL_STATE(6522)] = 313342, + [SMALL_STATE(6523)] = 313382, + [SMALL_STATE(6524)] = 313424, + [SMALL_STATE(6525)] = 313464, + [SMALL_STATE(6526)] = 313504, + [SMALL_STATE(6527)] = 313544, + [SMALL_STATE(6528)] = 313584, + [SMALL_STATE(6529)] = 313624, + [SMALL_STATE(6530)] = 313664, + [SMALL_STATE(6531)] = 313704, + [SMALL_STATE(6532)] = 313744, + [SMALL_STATE(6533)] = 313784, + [SMALL_STATE(6534)] = 313824, + [SMALL_STATE(6535)] = 313864, + [SMALL_STATE(6536)] = 313904, + [SMALL_STATE(6537)] = 313944, + [SMALL_STATE(6538)] = 313984, + [SMALL_STATE(6539)] = 314024, + [SMALL_STATE(6540)] = 314064, + [SMALL_STATE(6541)] = 314104, + [SMALL_STATE(6542)] = 314144, + [SMALL_STATE(6543)] = 314184, + [SMALL_STATE(6544)] = 314226, + [SMALL_STATE(6545)] = 314266, + [SMALL_STATE(6546)] = 314306, + [SMALL_STATE(6547)] = 314346, + [SMALL_STATE(6548)] = 314390, + [SMALL_STATE(6549)] = 314430, + [SMALL_STATE(6550)] = 314470, + [SMALL_STATE(6551)] = 314510, + [SMALL_STATE(6552)] = 314550, + [SMALL_STATE(6553)] = 314590, + [SMALL_STATE(6554)] = 314630, + [SMALL_STATE(6555)] = 314674, + [SMALL_STATE(6556)] = 314714, + [SMALL_STATE(6557)] = 314754, + [SMALL_STATE(6558)] = 314794, + [SMALL_STATE(6559)] = 314838, + [SMALL_STATE(6560)] = 314882, + [SMALL_STATE(6561)] = 314922, + [SMALL_STATE(6562)] = 314962, + [SMALL_STATE(6563)] = 315004, + [SMALL_STATE(6564)] = 315048, + [SMALL_STATE(6565)] = 315088, + [SMALL_STATE(6566)] = 315128, + [SMALL_STATE(6567)] = 315168, + [SMALL_STATE(6568)] = 315210, + [SMALL_STATE(6569)] = 315250, + [SMALL_STATE(6570)] = 315290, + [SMALL_STATE(6571)] = 315330, + [SMALL_STATE(6572)] = 315372, + [SMALL_STATE(6573)] = 315414, + [SMALL_STATE(6574)] = 315456, + [SMALL_STATE(6575)] = 315498, + [SMALL_STATE(6576)] = 315540, + [SMALL_STATE(6577)] = 315580, + [SMALL_STATE(6578)] = 315622, + [SMALL_STATE(6579)] = 315664, + [SMALL_STATE(6580)] = 315704, + [SMALL_STATE(6581)] = 315744, + [SMALL_STATE(6582)] = 315784, + [SMALL_STATE(6583)] = 315824, + [SMALL_STATE(6584)] = 315864, + [SMALL_STATE(6585)] = 315904, + [SMALL_STATE(6586)] = 315944, + [SMALL_STATE(6587)] = 315984, + [SMALL_STATE(6588)] = 316024, + [SMALL_STATE(6589)] = 316078, + [SMALL_STATE(6590)] = 316118, + [SMALL_STATE(6591)] = 316168, + [SMALL_STATE(6592)] = 316224, + [SMALL_STATE(6593)] = 316270, + [SMALL_STATE(6594)] = 316312, + [SMALL_STATE(6595)] = 316364, + [SMALL_STATE(6596)] = 316422, + [SMALL_STATE(6597)] = 316482, + [SMALL_STATE(6598)] = 316544, + [SMALL_STATE(6599)] = 316608, + [SMALL_STATE(6600)] = 316674, + [SMALL_STATE(6601)] = 316742, + [SMALL_STATE(6602)] = 316812, + [SMALL_STATE(6603)] = 316852, + [SMALL_STATE(6604)] = 316896, + [SMALL_STATE(6605)] = 316936, + [SMALL_STATE(6606)] = 316976, + [SMALL_STATE(6607)] = 317016, + [SMALL_STATE(6608)] = 317056, + [SMALL_STATE(6609)] = 317096, + [SMALL_STATE(6610)] = 317136, + [SMALL_STATE(6611)] = 317178, + [SMALL_STATE(6612)] = 317218, + [SMALL_STATE(6613)] = 317258, + [SMALL_STATE(6614)] = 317298, + [SMALL_STATE(6615)] = 317338, + [SMALL_STATE(6616)] = 317380, + [SMALL_STATE(6617)] = 317422, + [SMALL_STATE(6618)] = 317462, + [SMALL_STATE(6619)] = 317516, + [SMALL_STATE(6620)] = 317556, + [SMALL_STATE(6621)] = 317596, + [SMALL_STATE(6622)] = 317646, + [SMALL_STATE(6623)] = 317688, + [SMALL_STATE(6624)] = 317744, + [SMALL_STATE(6625)] = 317784, + [SMALL_STATE(6626)] = 317830, + [SMALL_STATE(6627)] = 317872, + [SMALL_STATE(6628)] = 317924, + [SMALL_STATE(6629)] = 317982, + [SMALL_STATE(6630)] = 318042, + [SMALL_STATE(6631)] = 318104, + [SMALL_STATE(6632)] = 318168, + [SMALL_STATE(6633)] = 318234, + [SMALL_STATE(6634)] = 318302, + [SMALL_STATE(6635)] = 318342, + [SMALL_STATE(6636)] = 318382, + [SMALL_STATE(6637)] = 318424, + [SMALL_STATE(6638)] = 318466, + [SMALL_STATE(6639)] = 318536, [SMALL_STATE(6640)] = 318578, - [SMALL_STATE(6641)] = 318620, + [SMALL_STATE(6641)] = 318622, [SMALL_STATE(6642)] = 318662, [SMALL_STATE(6643)] = 318702, [SMALL_STATE(6644)] = 318742, @@ -590664,233 +590706,233 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6646)] = 318820, [SMALL_STATE(6647)] = 318859, [SMALL_STATE(6648)] = 318898, - [SMALL_STATE(6649)] = 318965, - [SMALL_STATE(6650)] = 319032, - [SMALL_STATE(6651)] = 319099, - [SMALL_STATE(6652)] = 319166, - [SMALL_STATE(6653)] = 319205, - [SMALL_STATE(6654)] = 319244, - [SMALL_STATE(6655)] = 319283, - [SMALL_STATE(6656)] = 319322, - [SMALL_STATE(6657)] = 319361, - [SMALL_STATE(6658)] = 319400, - [SMALL_STATE(6659)] = 319439, - [SMALL_STATE(6660)] = 319478, - [SMALL_STATE(6661)] = 319517, - [SMALL_STATE(6662)] = 319556, - [SMALL_STATE(6663)] = 319597, - [SMALL_STATE(6664)] = 319636, - [SMALL_STATE(6665)] = 319675, - [SMALL_STATE(6666)] = 319714, - [SMALL_STATE(6667)] = 319753, - [SMALL_STATE(6668)] = 319792, - [SMALL_STATE(6669)] = 319859, - [SMALL_STATE(6670)] = 319898, - [SMALL_STATE(6671)] = 319937, - [SMALL_STATE(6672)] = 319976, - [SMALL_STATE(6673)] = 320015, - [SMALL_STATE(6674)] = 320054, - [SMALL_STATE(6675)] = 320093, - [SMALL_STATE(6676)] = 320132, - [SMALL_STATE(6677)] = 320171, - [SMALL_STATE(6678)] = 320210, - [SMALL_STATE(6679)] = 320249, - [SMALL_STATE(6680)] = 320288, - [SMALL_STATE(6681)] = 320355, - [SMALL_STATE(6682)] = 320394, - [SMALL_STATE(6683)] = 320433, - [SMALL_STATE(6684)] = 320472, - [SMALL_STATE(6685)] = 320511, - [SMALL_STATE(6686)] = 320550, - [SMALL_STATE(6687)] = 320591, - [SMALL_STATE(6688)] = 320630, - [SMALL_STATE(6689)] = 320697, - [SMALL_STATE(6690)] = 320736, - [SMALL_STATE(6691)] = 320803, - [SMALL_STATE(6692)] = 320842, - [SMALL_STATE(6693)] = 320881, - [SMALL_STATE(6694)] = 320920, - [SMALL_STATE(6695)] = 320959, - [SMALL_STATE(6696)] = 320998, - [SMALL_STATE(6697)] = 321037, - [SMALL_STATE(6698)] = 321078, - [SMALL_STATE(6699)] = 321117, - [SMALL_STATE(6700)] = 321184, - [SMALL_STATE(6701)] = 321223, - [SMALL_STATE(6702)] = 321262, - [SMALL_STATE(6703)] = 321301, - [SMALL_STATE(6704)] = 321340, - [SMALL_STATE(6705)] = 321379, - [SMALL_STATE(6706)] = 321418, - [SMALL_STATE(6707)] = 321457, - [SMALL_STATE(6708)] = 321496, - [SMALL_STATE(6709)] = 321535, - [SMALL_STATE(6710)] = 321574, - [SMALL_STATE(6711)] = 321613, - [SMALL_STATE(6712)] = 321652, - [SMALL_STATE(6713)] = 321691, - [SMALL_STATE(6714)] = 321732, - [SMALL_STATE(6715)] = 321771, - [SMALL_STATE(6716)] = 321810, - [SMALL_STATE(6717)] = 321849, - [SMALL_STATE(6718)] = 321888, - [SMALL_STATE(6719)] = 321927, - [SMALL_STATE(6720)] = 321966, - [SMALL_STATE(6721)] = 322005, - [SMALL_STATE(6722)] = 322046, - [SMALL_STATE(6723)] = 322085, - [SMALL_STATE(6724)] = 322124, - [SMALL_STATE(6725)] = 322191, - [SMALL_STATE(6726)] = 322230, - [SMALL_STATE(6727)] = 322269, - [SMALL_STATE(6728)] = 322308, - [SMALL_STATE(6729)] = 322375, - [SMALL_STATE(6730)] = 322442, - [SMALL_STATE(6731)] = 322481, - [SMALL_STATE(6732)] = 322520, - [SMALL_STATE(6733)] = 322559, - [SMALL_STATE(6734)] = 322598, - [SMALL_STATE(6735)] = 322637, - [SMALL_STATE(6736)] = 322676, - [SMALL_STATE(6737)] = 322715, - [SMALL_STATE(6738)] = 322754, - [SMALL_STATE(6739)] = 322793, - [SMALL_STATE(6740)] = 322832, - [SMALL_STATE(6741)] = 322871, - [SMALL_STATE(6742)] = 322910, - [SMALL_STATE(6743)] = 322949, - [SMALL_STATE(6744)] = 322988, - [SMALL_STATE(6745)] = 323027, - [SMALL_STATE(6746)] = 323066, - [SMALL_STATE(6747)] = 323105, - [SMALL_STATE(6748)] = 323144, - [SMALL_STATE(6749)] = 323183, - [SMALL_STATE(6750)] = 323222, - [SMALL_STATE(6751)] = 323261, - [SMALL_STATE(6752)] = 323300, - [SMALL_STATE(6753)] = 323339, - [SMALL_STATE(6754)] = 323378, - [SMALL_STATE(6755)] = 323417, - [SMALL_STATE(6756)] = 323456, - [SMALL_STATE(6757)] = 323495, - [SMALL_STATE(6758)] = 323534, - [SMALL_STATE(6759)] = 323573, - [SMALL_STATE(6760)] = 323614, - [SMALL_STATE(6761)] = 323653, - [SMALL_STATE(6762)] = 323692, - [SMALL_STATE(6763)] = 323731, - [SMALL_STATE(6764)] = 323770, - [SMALL_STATE(6765)] = 323811, - [SMALL_STATE(6766)] = 323850, - [SMALL_STATE(6767)] = 323889, - [SMALL_STATE(6768)] = 323928, - [SMALL_STATE(6769)] = 323967, - [SMALL_STATE(6770)] = 324006, - [SMALL_STATE(6771)] = 324045, - [SMALL_STATE(6772)] = 324084, - [SMALL_STATE(6773)] = 324123, - [SMALL_STATE(6774)] = 324162, - [SMALL_STATE(6775)] = 324201, - [SMALL_STATE(6776)] = 324240, - [SMALL_STATE(6777)] = 324279, - [SMALL_STATE(6778)] = 324318, - [SMALL_STATE(6779)] = 324357, - [SMALL_STATE(6780)] = 324396, - [SMALL_STATE(6781)] = 324435, - [SMALL_STATE(6782)] = 324474, - [SMALL_STATE(6783)] = 324513, - [SMALL_STATE(6784)] = 324580, - [SMALL_STATE(6785)] = 324619, - [SMALL_STATE(6786)] = 324660, - [SMALL_STATE(6787)] = 324699, - [SMALL_STATE(6788)] = 324738, - [SMALL_STATE(6789)] = 324777, - [SMALL_STATE(6790)] = 324816, - [SMALL_STATE(6791)] = 324855, - [SMALL_STATE(6792)] = 324894, - [SMALL_STATE(6793)] = 324935, - [SMALL_STATE(6794)] = 324974, - [SMALL_STATE(6795)] = 325013, - [SMALL_STATE(6796)] = 325052, - [SMALL_STATE(6797)] = 325091, - [SMALL_STATE(6798)] = 325130, - [SMALL_STATE(6799)] = 325169, - [SMALL_STATE(6800)] = 325208, - [SMALL_STATE(6801)] = 325249, - [SMALL_STATE(6802)] = 325316, - [SMALL_STATE(6803)] = 325357, - [SMALL_STATE(6804)] = 325396, - [SMALL_STATE(6805)] = 325435, - [SMALL_STATE(6806)] = 325474, - [SMALL_STATE(6807)] = 325513, - [SMALL_STATE(6808)] = 325552, - [SMALL_STATE(6809)] = 325619, - [SMALL_STATE(6810)] = 325658, - [SMALL_STATE(6811)] = 325725, - [SMALL_STATE(6812)] = 325764, - [SMALL_STATE(6813)] = 325803, - [SMALL_STATE(6814)] = 325844, - [SMALL_STATE(6815)] = 325883, - [SMALL_STATE(6816)] = 325924, - [SMALL_STATE(6817)] = 325965, - [SMALL_STATE(6818)] = 326004, - [SMALL_STATE(6819)] = 326045, - [SMALL_STATE(6820)] = 326084, - [SMALL_STATE(6821)] = 326151, - [SMALL_STATE(6822)] = 326218, - [SMALL_STATE(6823)] = 326257, - [SMALL_STATE(6824)] = 326298, - [SMALL_STATE(6825)] = 326337, - [SMALL_STATE(6826)] = 326376, - [SMALL_STATE(6827)] = 326415, - [SMALL_STATE(6828)] = 326454, - [SMALL_STATE(6829)] = 326493, - [SMALL_STATE(6830)] = 326532, - [SMALL_STATE(6831)] = 326571, - [SMALL_STATE(6832)] = 326610, - [SMALL_STATE(6833)] = 326649, - [SMALL_STATE(6834)] = 326688, - [SMALL_STATE(6835)] = 326755, - [SMALL_STATE(6836)] = 326794, - [SMALL_STATE(6837)] = 326835, - [SMALL_STATE(6838)] = 326902, - [SMALL_STATE(6839)] = 326941, - [SMALL_STATE(6840)] = 326980, - [SMALL_STATE(6841)] = 327047, - [SMALL_STATE(6842)] = 327086, - [SMALL_STATE(6843)] = 327125, - [SMALL_STATE(6844)] = 327164, - [SMALL_STATE(6845)] = 327203, - [SMALL_STATE(6846)] = 327242, - [SMALL_STATE(6847)] = 327309, - [SMALL_STATE(6848)] = 327348, - [SMALL_STATE(6849)] = 327387, - [SMALL_STATE(6850)] = 327426, - [SMALL_STATE(6851)] = 327465, - [SMALL_STATE(6852)] = 327504, - [SMALL_STATE(6853)] = 327543, - [SMALL_STATE(6854)] = 327582, - [SMALL_STATE(6855)] = 327621, - [SMALL_STATE(6856)] = 327660, - [SMALL_STATE(6857)] = 327727, - [SMALL_STATE(6858)] = 327766, - [SMALL_STATE(6859)] = 327833, - [SMALL_STATE(6860)] = 327900, - [SMALL_STATE(6861)] = 327967, - [SMALL_STATE(6862)] = 328006, - [SMALL_STATE(6863)] = 328045, - [SMALL_STATE(6864)] = 328112, - [SMALL_STATE(6865)] = 328179, - [SMALL_STATE(6866)] = 328220, - [SMALL_STATE(6867)] = 328259, - [SMALL_STATE(6868)] = 328298, - [SMALL_STATE(6869)] = 328365, - [SMALL_STATE(6870)] = 328432, - [SMALL_STATE(6871)] = 328471, - [SMALL_STATE(6872)] = 328510, - [SMALL_STATE(6873)] = 328577, + [SMALL_STATE(6649)] = 318937, + [SMALL_STATE(6650)] = 318976, + [SMALL_STATE(6651)] = 319015, + [SMALL_STATE(6652)] = 319054, + [SMALL_STATE(6653)] = 319093, + [SMALL_STATE(6654)] = 319132, + [SMALL_STATE(6655)] = 319171, + [SMALL_STATE(6656)] = 319210, + [SMALL_STATE(6657)] = 319249, + [SMALL_STATE(6658)] = 319316, + [SMALL_STATE(6659)] = 319355, + [SMALL_STATE(6660)] = 319394, + [SMALL_STATE(6661)] = 319433, + [SMALL_STATE(6662)] = 319472, + [SMALL_STATE(6663)] = 319511, + [SMALL_STATE(6664)] = 319550, + [SMALL_STATE(6665)] = 319589, + [SMALL_STATE(6666)] = 319630, + [SMALL_STATE(6667)] = 319669, + [SMALL_STATE(6668)] = 319708, + [SMALL_STATE(6669)] = 319747, + [SMALL_STATE(6670)] = 319786, + [SMALL_STATE(6671)] = 319825, + [SMALL_STATE(6672)] = 319864, + [SMALL_STATE(6673)] = 319903, + [SMALL_STATE(6674)] = 319942, + [SMALL_STATE(6675)] = 319981, + [SMALL_STATE(6676)] = 320022, + [SMALL_STATE(6677)] = 320061, + [SMALL_STATE(6678)] = 320128, + [SMALL_STATE(6679)] = 320169, + [SMALL_STATE(6680)] = 320236, + [SMALL_STATE(6681)] = 320275, + [SMALL_STATE(6682)] = 320314, + [SMALL_STATE(6683)] = 320381, + [SMALL_STATE(6684)] = 320420, + [SMALL_STATE(6685)] = 320487, + [SMALL_STATE(6686)] = 320554, + [SMALL_STATE(6687)] = 320595, + [SMALL_STATE(6688)] = 320662, + [SMALL_STATE(6689)] = 320701, + [SMALL_STATE(6690)] = 320768, + [SMALL_STATE(6691)] = 320807, + [SMALL_STATE(6692)] = 320846, + [SMALL_STATE(6693)] = 320885, + [SMALL_STATE(6694)] = 320952, + [SMALL_STATE(6695)] = 320991, + [SMALL_STATE(6696)] = 321030, + [SMALL_STATE(6697)] = 321069, + [SMALL_STATE(6698)] = 321108, + [SMALL_STATE(6699)] = 321147, + [SMALL_STATE(6700)] = 321186, + [SMALL_STATE(6701)] = 321253, + [SMALL_STATE(6702)] = 321292, + [SMALL_STATE(6703)] = 321331, + [SMALL_STATE(6704)] = 321370, + [SMALL_STATE(6705)] = 321409, + [SMALL_STATE(6706)] = 321448, + [SMALL_STATE(6707)] = 321487, + [SMALL_STATE(6708)] = 321526, + [SMALL_STATE(6709)] = 321565, + [SMALL_STATE(6710)] = 321604, + [SMALL_STATE(6711)] = 321643, + [SMALL_STATE(6712)] = 321710, + [SMALL_STATE(6713)] = 321749, + [SMALL_STATE(6714)] = 321788, + [SMALL_STATE(6715)] = 321827, + [SMALL_STATE(6716)] = 321866, + [SMALL_STATE(6717)] = 321905, + [SMALL_STATE(6718)] = 321944, + [SMALL_STATE(6719)] = 321983, + [SMALL_STATE(6720)] = 322050, + [SMALL_STATE(6721)] = 322089, + [SMALL_STATE(6722)] = 322128, + [SMALL_STATE(6723)] = 322195, + [SMALL_STATE(6724)] = 322234, + [SMALL_STATE(6725)] = 322273, + [SMALL_STATE(6726)] = 322312, + [SMALL_STATE(6727)] = 322351, + [SMALL_STATE(6728)] = 322390, + [SMALL_STATE(6729)] = 322429, + [SMALL_STATE(6730)] = 322468, + [SMALL_STATE(6731)] = 322509, + [SMALL_STATE(6732)] = 322548, + [SMALL_STATE(6733)] = 322615, + [SMALL_STATE(6734)] = 322654, + [SMALL_STATE(6735)] = 322693, + [SMALL_STATE(6736)] = 322732, + [SMALL_STATE(6737)] = 322771, + [SMALL_STATE(6738)] = 322810, + [SMALL_STATE(6739)] = 322849, + [SMALL_STATE(6740)] = 322888, + [SMALL_STATE(6741)] = 322927, + [SMALL_STATE(6742)] = 322966, + [SMALL_STATE(6743)] = 323005, + [SMALL_STATE(6744)] = 323072, + [SMALL_STATE(6745)] = 323111, + [SMALL_STATE(6746)] = 323150, + [SMALL_STATE(6747)] = 323217, + [SMALL_STATE(6748)] = 323256, + [SMALL_STATE(6749)] = 323323, + [SMALL_STATE(6750)] = 323390, + [SMALL_STATE(6751)] = 323429, + [SMALL_STATE(6752)] = 323496, + [SMALL_STATE(6753)] = 323563, + [SMALL_STATE(6754)] = 323630, + [SMALL_STATE(6755)] = 323669, + [SMALL_STATE(6756)] = 323710, + [SMALL_STATE(6757)] = 323777, + [SMALL_STATE(6758)] = 323816, + [SMALL_STATE(6759)] = 323855, + [SMALL_STATE(6760)] = 323894, + [SMALL_STATE(6761)] = 323961, + [SMALL_STATE(6762)] = 324000, + [SMALL_STATE(6763)] = 324067, + [SMALL_STATE(6764)] = 324106, + [SMALL_STATE(6765)] = 324173, + [SMALL_STATE(6766)] = 324212, + [SMALL_STATE(6767)] = 324279, + [SMALL_STATE(6768)] = 324318, + [SMALL_STATE(6769)] = 324357, + [SMALL_STATE(6770)] = 324396, + [SMALL_STATE(6771)] = 324435, + [SMALL_STATE(6772)] = 324476, + [SMALL_STATE(6773)] = 324515, + [SMALL_STATE(6774)] = 324554, + [SMALL_STATE(6775)] = 324593, + [SMALL_STATE(6776)] = 324660, + [SMALL_STATE(6777)] = 324699, + [SMALL_STATE(6778)] = 324738, + [SMALL_STATE(6779)] = 324777, + [SMALL_STATE(6780)] = 324816, + [SMALL_STATE(6781)] = 324855, + [SMALL_STATE(6782)] = 324894, + [SMALL_STATE(6783)] = 324961, + [SMALL_STATE(6784)] = 325000, + [SMALL_STATE(6785)] = 325039, + [SMALL_STATE(6786)] = 325078, + [SMALL_STATE(6787)] = 325117, + [SMALL_STATE(6788)] = 325156, + [SMALL_STATE(6789)] = 325195, + [SMALL_STATE(6790)] = 325234, + [SMALL_STATE(6791)] = 325301, + [SMALL_STATE(6792)] = 325340, + [SMALL_STATE(6793)] = 325379, + [SMALL_STATE(6794)] = 325418, + [SMALL_STATE(6795)] = 325457, + [SMALL_STATE(6796)] = 325496, + [SMALL_STATE(6797)] = 325535, + [SMALL_STATE(6798)] = 325574, + [SMALL_STATE(6799)] = 325641, + [SMALL_STATE(6800)] = 325708, + [SMALL_STATE(6801)] = 325747, + [SMALL_STATE(6802)] = 325786, + [SMALL_STATE(6803)] = 325825, + [SMALL_STATE(6804)] = 325864, + [SMALL_STATE(6805)] = 325903, + [SMALL_STATE(6806)] = 325942, + [SMALL_STATE(6807)] = 325981, + [SMALL_STATE(6808)] = 326020, + [SMALL_STATE(6809)] = 326059, + [SMALL_STATE(6810)] = 326098, + [SMALL_STATE(6811)] = 326137, + [SMALL_STATE(6812)] = 326176, + [SMALL_STATE(6813)] = 326215, + [SMALL_STATE(6814)] = 326254, + [SMALL_STATE(6815)] = 326293, + [SMALL_STATE(6816)] = 326332, + [SMALL_STATE(6817)] = 326371, + [SMALL_STATE(6818)] = 326410, + [SMALL_STATE(6819)] = 326449, + [SMALL_STATE(6820)] = 326488, + [SMALL_STATE(6821)] = 326527, + [SMALL_STATE(6822)] = 326566, + [SMALL_STATE(6823)] = 326605, + [SMALL_STATE(6824)] = 326644, + [SMALL_STATE(6825)] = 326683, + [SMALL_STATE(6826)] = 326722, + [SMALL_STATE(6827)] = 326763, + [SMALL_STATE(6828)] = 326802, + [SMALL_STATE(6829)] = 326843, + [SMALL_STATE(6830)] = 326882, + [SMALL_STATE(6831)] = 326921, + [SMALL_STATE(6832)] = 326988, + [SMALL_STATE(6833)] = 327027, + [SMALL_STATE(6834)] = 327066, + [SMALL_STATE(6835)] = 327105, + [SMALL_STATE(6836)] = 327144, + [SMALL_STATE(6837)] = 327183, + [SMALL_STATE(6838)] = 327222, + [SMALL_STATE(6839)] = 327261, + [SMALL_STATE(6840)] = 327302, + [SMALL_STATE(6841)] = 327343, + [SMALL_STATE(6842)] = 327384, + [SMALL_STATE(6843)] = 327425, + [SMALL_STATE(6844)] = 327464, + [SMALL_STATE(6845)] = 327503, + [SMALL_STATE(6846)] = 327542, + [SMALL_STATE(6847)] = 327581, + [SMALL_STATE(6848)] = 327620, + [SMALL_STATE(6849)] = 327659, + [SMALL_STATE(6850)] = 327698, + [SMALL_STATE(6851)] = 327737, + [SMALL_STATE(6852)] = 327776, + [SMALL_STATE(6853)] = 327815, + [SMALL_STATE(6854)] = 327854, + [SMALL_STATE(6855)] = 327893, + [SMALL_STATE(6856)] = 327932, + [SMALL_STATE(6857)] = 327971, + [SMALL_STATE(6858)] = 328010, + [SMALL_STATE(6859)] = 328049, + [SMALL_STATE(6860)] = 328088, + [SMALL_STATE(6861)] = 328127, + [SMALL_STATE(6862)] = 328168, + [SMALL_STATE(6863)] = 328207, + [SMALL_STATE(6864)] = 328246, + [SMALL_STATE(6865)] = 328285, + [SMALL_STATE(6866)] = 328324, + [SMALL_STATE(6867)] = 328365, + [SMALL_STATE(6868)] = 328404, + [SMALL_STATE(6869)] = 328443, + [SMALL_STATE(6870)] = 328484, + [SMALL_STATE(6871)] = 328523, + [SMALL_STATE(6872)] = 328564, + [SMALL_STATE(6873)] = 328605, [SMALL_STATE(6874)] = 328644, - [SMALL_STATE(6875)] = 328685, + [SMALL_STATE(6875)] = 328683, [SMALL_STATE(6876)] = 328724, [SMALL_STATE(6877)] = 328763, [SMALL_STATE(6878)] = 328801, @@ -591004,13484 +591046,13484 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6986)] = 333160, [SMALL_STATE(6987)] = 333221, [SMALL_STATE(6988)] = 333275, - [SMALL_STATE(6989)] = 333329, - [SMALL_STATE(6990)] = 333383, + [SMALL_STATE(6989)] = 333333, + [SMALL_STATE(6990)] = 333387, [SMALL_STATE(6991)] = 333441, [SMALL_STATE(6992)] = 333495, [SMALL_STATE(6993)] = 333549, [SMALL_STATE(6994)] = 333603, [SMALL_STATE(6995)] = 333660, - [SMALL_STATE(6996)] = 333708, + [SMALL_STATE(6996)] = 333712, [SMALL_STATE(6997)] = 333760, [SMALL_STATE(6998)] = 333808, [SMALL_STATE(6999)] = 333856, [SMALL_STATE(7000)] = 333904, - [SMALL_STATE(7001)] = 333956, - [SMALL_STATE(7002)] = 334008, + [SMALL_STATE(7001)] = 333952, + [SMALL_STATE(7002)] = 334000, [SMALL_STATE(7003)] = 334056, - [SMALL_STATE(7004)] = 334110, - [SMALL_STATE(7005)] = 334158, - [SMALL_STATE(7006)] = 334206, - [SMALL_STATE(7007)] = 334262, - [SMALL_STATE(7008)] = 334314, - [SMALL_STATE(7009)] = 334366, - [SMALL_STATE(7010)] = 334414, - [SMALL_STATE(7011)] = 334466, - [SMALL_STATE(7012)] = 334518, - [SMALL_STATE(7013)] = 334566, - [SMALL_STATE(7014)] = 334614, - [SMALL_STATE(7015)] = 334662, + [SMALL_STATE(7004)] = 334104, + [SMALL_STATE(7005)] = 334152, + [SMALL_STATE(7006)] = 334200, + [SMALL_STATE(7007)] = 334254, + [SMALL_STATE(7008)] = 334306, + [SMALL_STATE(7009)] = 334354, + [SMALL_STATE(7010)] = 334406, + [SMALL_STATE(7011)] = 334458, + [SMALL_STATE(7012)] = 334506, + [SMALL_STATE(7013)] = 334554, + [SMALL_STATE(7014)] = 334606, + [SMALL_STATE(7015)] = 334658, [SMALL_STATE(7016)] = 334710, - [SMALL_STATE(7017)] = 334763, - [SMALL_STATE(7018)] = 334812, - [SMALL_STATE(7019)] = 334863, - [SMALL_STATE(7020)] = 334892, - [SMALL_STATE(7021)] = 334943, - [SMALL_STATE(7022)] = 334972, - [SMALL_STATE(7023)] = 335023, - [SMALL_STATE(7024)] = 335074, - [SMALL_STATE(7025)] = 335125, - [SMALL_STATE(7026)] = 335176, - [SMALL_STATE(7027)] = 335227, + [SMALL_STATE(7017)] = 334759, + [SMALL_STATE(7018)] = 334808, + [SMALL_STATE(7019)] = 334859, + [SMALL_STATE(7020)] = 334888, + [SMALL_STATE(7021)] = 334941, + [SMALL_STATE(7022)] = 334992, + [SMALL_STATE(7023)] = 335043, + [SMALL_STATE(7024)] = 335094, + [SMALL_STATE(7025)] = 335145, + [SMALL_STATE(7026)] = 335174, + [SMALL_STATE(7027)] = 335225, [SMALL_STATE(7028)] = 335276, - [SMALL_STATE(7029)] = 335324, - [SMALL_STATE(7030)] = 335374, - [SMALL_STATE(7031)] = 335420, - [SMALL_STATE(7032)] = 335470, - [SMALL_STATE(7033)] = 335520, - [SMALL_STATE(7034)] = 335548, - [SMALL_STATE(7035)] = 335596, - [SMALL_STATE(7036)] = 335646, - [SMALL_STATE(7037)] = 335694, - [SMALL_STATE(7038)] = 335740, - [SMALL_STATE(7039)] = 335790, - [SMALL_STATE(7040)] = 335836, - [SMALL_STATE(7041)] = 335884, - [SMALL_STATE(7042)] = 335930, - [SMALL_STATE(7043)] = 335980, - [SMALL_STATE(7044)] = 336028, - [SMALL_STATE(7045)] = 336074, - [SMALL_STATE(7046)] = 336120, - [SMALL_STATE(7047)] = 336148, - [SMALL_STATE(7048)] = 336194, - [SMALL_STATE(7049)] = 336244, - [SMALL_STATE(7050)] = 336290, - [SMALL_STATE(7051)] = 336336, - [SMALL_STATE(7052)] = 336384, - [SMALL_STATE(7053)] = 336438, - [SMALL_STATE(7054)] = 336492, + [SMALL_STATE(7029)] = 335322, + [SMALL_STATE(7030)] = 335368, + [SMALL_STATE(7031)] = 335416, + [SMALL_STATE(7032)] = 335464, + [SMALL_STATE(7033)] = 335492, + [SMALL_STATE(7034)] = 335520, + [SMALL_STATE(7035)] = 335566, + [SMALL_STATE(7036)] = 335616, + [SMALL_STATE(7037)] = 335670, + [SMALL_STATE(7038)] = 335718, + [SMALL_STATE(7039)] = 335768, + [SMALL_STATE(7040)] = 335818, + [SMALL_STATE(7041)] = 335868, + [SMALL_STATE(7042)] = 335918, + [SMALL_STATE(7043)] = 335968, + [SMALL_STATE(7044)] = 336016, + [SMALL_STATE(7045)] = 336066, + [SMALL_STATE(7046)] = 336112, + [SMALL_STATE(7047)] = 336158, + [SMALL_STATE(7048)] = 336212, + [SMALL_STATE(7049)] = 336258, + [SMALL_STATE(7050)] = 336304, + [SMALL_STATE(7051)] = 336350, + [SMALL_STATE(7052)] = 336396, + [SMALL_STATE(7053)] = 336442, + [SMALL_STATE(7054)] = 336490, [SMALL_STATE(7055)] = 336538, - [SMALL_STATE(7056)] = 336584, - [SMALL_STATE(7057)] = 336632, - [SMALL_STATE(7058)] = 336680, - [SMALL_STATE(7059)] = 336726, + [SMALL_STATE(7056)] = 336586, + [SMALL_STATE(7057)] = 336634, + [SMALL_STATE(7058)] = 336682, + [SMALL_STATE(7059)] = 336728, [SMALL_STATE(7060)] = 336774, - [SMALL_STATE(7061)] = 336819, - [SMALL_STATE(7062)] = 336864, - [SMALL_STATE(7063)] = 336915, - [SMALL_STATE(7064)] = 336960, - [SMALL_STATE(7065)] = 337005, - [SMALL_STATE(7066)] = 337050, - [SMALL_STATE(7067)] = 337095, - [SMALL_STATE(7068)] = 337142, - [SMALL_STATE(7069)] = 337187, - [SMALL_STATE(7070)] = 337234, - [SMALL_STATE(7071)] = 337279, - [SMALL_STATE(7072)] = 337324, - [SMALL_STATE(7073)] = 337371, - [SMALL_STATE(7074)] = 337418, - [SMALL_STATE(7075)] = 337465, - [SMALL_STATE(7076)] = 337512, - [SMALL_STATE(7077)] = 337557, - [SMALL_STATE(7078)] = 337606, - [SMALL_STATE(7079)] = 337651, - [SMALL_STATE(7080)] = 337696, - [SMALL_STATE(7081)] = 337741, - [SMALL_STATE(7082)] = 337788, - [SMALL_STATE(7083)] = 337835, + [SMALL_STATE(7061)] = 336821, + [SMALL_STATE(7062)] = 336866, + [SMALL_STATE(7063)] = 336911, + [SMALL_STATE(7064)] = 336956, + [SMALL_STATE(7065)] = 337001, + [SMALL_STATE(7066)] = 337046, + [SMALL_STATE(7067)] = 337097, + [SMALL_STATE(7068)] = 337146, + [SMALL_STATE(7069)] = 337191, + [SMALL_STATE(7070)] = 337238, + [SMALL_STATE(7071)] = 337283, + [SMALL_STATE(7072)] = 337334, + [SMALL_STATE(7073)] = 337381, + [SMALL_STATE(7074)] = 337426, + [SMALL_STATE(7075)] = 337473, + [SMALL_STATE(7076)] = 337518, + [SMALL_STATE(7077)] = 337565, + [SMALL_STATE(7078)] = 337612, + [SMALL_STATE(7079)] = 337659, + [SMALL_STATE(7080)] = 337706, + [SMALL_STATE(7081)] = 337751, + [SMALL_STATE(7082)] = 337796, + [SMALL_STATE(7083)] = 337841, [SMALL_STATE(7084)] = 337886, - [SMALL_STATE(7085)] = 337931, + [SMALL_STATE(7085)] = 337933, [SMALL_STATE(7086)] = 337978, - [SMALL_STATE(7087)] = 338024, - [SMALL_STATE(7088)] = 338068, - [SMALL_STATE(7089)] = 338116, - [SMALL_STATE(7090)] = 338160, - [SMALL_STATE(7091)] = 338208, - [SMALL_STATE(7092)] = 338256, - [SMALL_STATE(7093)] = 338300, - [SMALL_STATE(7094)] = 338344, - [SMALL_STATE(7095)] = 338388, - [SMALL_STATE(7096)] = 338436, - [SMALL_STATE(7097)] = 338484, - [SMALL_STATE(7098)] = 338526, - [SMALL_STATE(7099)] = 338572, - [SMALL_STATE(7100)] = 338618, - [SMALL_STATE(7101)] = 338662, - [SMALL_STATE(7102)] = 338710, - [SMALL_STATE(7103)] = 338758, - [SMALL_STATE(7104)] = 338806, - [SMALL_STATE(7105)] = 338852, - [SMALL_STATE(7106)] = 338896, - [SMALL_STATE(7107)] = 338940, - [SMALL_STATE(7108)] = 338988, - [SMALL_STATE(7109)] = 339030, - [SMALL_STATE(7110)] = 339072, - [SMALL_STATE(7111)] = 339114, - [SMALL_STATE(7112)] = 339156, - [SMALL_STATE(7113)] = 339198, - [SMALL_STATE(7114)] = 339246, - [SMALL_STATE(7115)] = 339288, - [SMALL_STATE(7116)] = 339332, - [SMALL_STATE(7117)] = 339374, - [SMALL_STATE(7118)] = 339416, - [SMALL_STATE(7119)] = 339458, - [SMALL_STATE(7120)] = 339500, - [SMALL_STATE(7121)] = 339548, - [SMALL_STATE(7122)] = 339596, - [SMALL_STATE(7123)] = 339638, - [SMALL_STATE(7124)] = 339686, - [SMALL_STATE(7125)] = 339730, - [SMALL_STATE(7126)] = 339774, - [SMALL_STATE(7127)] = 339818, - [SMALL_STATE(7128)] = 339862, - [SMALL_STATE(7129)] = 339906, - [SMALL_STATE(7130)] = 339950, - [SMALL_STATE(7131)] = 339998, - [SMALL_STATE(7132)] = 340024, - [SMALL_STATE(7133)] = 340068, - [SMALL_STATE(7134)] = 340112, - [SMALL_STATE(7135)] = 340160, - [SMALL_STATE(7136)] = 340208, - [SMALL_STATE(7137)] = 340252, - [SMALL_STATE(7138)] = 340296, - [SMALL_STATE(7139)] = 340340, - [SMALL_STATE(7140)] = 340386, - [SMALL_STATE(7141)] = 340430, - [SMALL_STATE(7142)] = 340474, - [SMALL_STATE(7143)] = 340518, - [SMALL_STATE(7144)] = 340562, + [SMALL_STATE(7087)] = 338026, + [SMALL_STATE(7088)] = 338070, + [SMALL_STATE(7089)] = 338114, + [SMALL_STATE(7090)] = 338158, + [SMALL_STATE(7091)] = 338202, + [SMALL_STATE(7092)] = 338250, + [SMALL_STATE(7093)] = 338298, + [SMALL_STATE(7094)] = 338342, + [SMALL_STATE(7095)] = 338386, + [SMALL_STATE(7096)] = 338428, + [SMALL_STATE(7097)] = 338472, + [SMALL_STATE(7098)] = 338514, + [SMALL_STATE(7099)] = 338558, + [SMALL_STATE(7100)] = 338602, + [SMALL_STATE(7101)] = 338644, + [SMALL_STATE(7102)] = 338688, + [SMALL_STATE(7103)] = 338732, + [SMALL_STATE(7104)] = 338776, + [SMALL_STATE(7105)] = 338820, + [SMALL_STATE(7106)] = 338864, + [SMALL_STATE(7107)] = 338906, + [SMALL_STATE(7108)] = 338948, + [SMALL_STATE(7109)] = 338990, + [SMALL_STATE(7110)] = 339034, + [SMALL_STATE(7111)] = 339078, + [SMALL_STATE(7112)] = 339124, + [SMALL_STATE(7113)] = 339166, + [SMALL_STATE(7114)] = 339214, + [SMALL_STATE(7115)] = 339258, + [SMALL_STATE(7116)] = 339302, + [SMALL_STATE(7117)] = 339350, + [SMALL_STATE(7118)] = 339394, + [SMALL_STATE(7119)] = 339436, + [SMALL_STATE(7120)] = 339480, + [SMALL_STATE(7121)] = 339528, + [SMALL_STATE(7122)] = 339576, + [SMALL_STATE(7123)] = 339620, + [SMALL_STATE(7124)] = 339646, + [SMALL_STATE(7125)] = 339688, + [SMALL_STATE(7126)] = 339736, + [SMALL_STATE(7127)] = 339784, + [SMALL_STATE(7128)] = 339830, + [SMALL_STATE(7129)] = 339876, + [SMALL_STATE(7130)] = 339922, + [SMALL_STATE(7131)] = 339968, + [SMALL_STATE(7132)] = 340016, + [SMALL_STATE(7133)] = 340064, + [SMALL_STATE(7134)] = 340108, + [SMALL_STATE(7135)] = 340152, + [SMALL_STATE(7136)] = 340194, + [SMALL_STATE(7137)] = 340236, + [SMALL_STATE(7138)] = 340284, + [SMALL_STATE(7139)] = 340328, + [SMALL_STATE(7140)] = 340376, + [SMALL_STATE(7141)] = 340420, + [SMALL_STATE(7142)] = 340462, + [SMALL_STATE(7143)] = 340510, + [SMALL_STATE(7144)] = 340558, [SMALL_STATE(7145)] = 340606, [SMALL_STATE(7146)] = 340650, - [SMALL_STATE(7147)] = 340675, - [SMALL_STATE(7148)] = 340720, + [SMALL_STATE(7147)] = 340695, + [SMALL_STATE(7148)] = 340740, [SMALL_STATE(7149)] = 340765, [SMALL_STATE(7150)] = 340806, - [SMALL_STATE(7151)] = 340837, - [SMALL_STATE(7152)] = 340878, + [SMALL_STATE(7151)] = 340847, + [SMALL_STATE(7152)] = 340892, [SMALL_STATE(7153)] = 340919, - [SMALL_STATE(7154)] = 340960, - [SMALL_STATE(7155)] = 341001, - [SMALL_STATE(7156)] = 341046, - [SMALL_STATE(7157)] = 341087, - [SMALL_STATE(7158)] = 341116, - [SMALL_STATE(7159)] = 341157, - [SMALL_STATE(7160)] = 341198, - [SMALL_STATE(7161)] = 341243, - [SMALL_STATE(7162)] = 341288, - [SMALL_STATE(7163)] = 341315, - [SMALL_STATE(7164)] = 341356, - [SMALL_STATE(7165)] = 341395, - [SMALL_STATE(7166)] = 341440, - [SMALL_STATE(7167)] = 341485, - [SMALL_STATE(7168)] = 341530, - [SMALL_STATE(7169)] = 341571, - [SMALL_STATE(7170)] = 341612, - [SMALL_STATE(7171)] = 341657, - [SMALL_STATE(7172)] = 341698, - [SMALL_STATE(7173)] = 341739, - [SMALL_STATE(7174)] = 341780, - [SMALL_STATE(7175)] = 341825, - [SMALL_STATE(7176)] = 341852, - [SMALL_STATE(7177)] = 341897, + [SMALL_STATE(7154)] = 340950, + [SMALL_STATE(7155)] = 340995, + [SMALL_STATE(7156)] = 341040, + [SMALL_STATE(7157)] = 341081, + [SMALL_STATE(7158)] = 341126, + [SMALL_STATE(7159)] = 341167, + [SMALL_STATE(7160)] = 341208, + [SMALL_STATE(7161)] = 341249, + [SMALL_STATE(7162)] = 341290, + [SMALL_STATE(7163)] = 341331, + [SMALL_STATE(7164)] = 341362, + [SMALL_STATE(7165)] = 341403, + [SMALL_STATE(7166)] = 341444, + [SMALL_STATE(7167)] = 341471, + [SMALL_STATE(7168)] = 341512, + [SMALL_STATE(7169)] = 341557, + [SMALL_STATE(7170)] = 341586, + [SMALL_STATE(7171)] = 341625, + [SMALL_STATE(7172)] = 341670, + [SMALL_STATE(7173)] = 341711, + [SMALL_STATE(7174)] = 341752, + [SMALL_STATE(7175)] = 341797, + [SMALL_STATE(7176)] = 341842, + [SMALL_STATE(7177)] = 341887, [SMALL_STATE(7178)] = 341928, - [SMALL_STATE(7179)] = 341968, - [SMALL_STATE(7180)] = 342010, - [SMALL_STATE(7181)] = 342052, - [SMALL_STATE(7182)] = 342098, - [SMALL_STATE(7183)] = 342126, - [SMALL_STATE(7184)] = 342166, - [SMALL_STATE(7185)] = 342204, - [SMALL_STATE(7186)] = 342246, - [SMALL_STATE(7187)] = 342284, - [SMALL_STATE(7188)] = 342324, - [SMALL_STATE(7189)] = 342366, - [SMALL_STATE(7190)] = 342412, - [SMALL_STATE(7191)] = 342450, - [SMALL_STATE(7192)] = 342488, - [SMALL_STATE(7193)] = 342530, - [SMALL_STATE(7194)] = 342576, - [SMALL_STATE(7195)] = 342618, - [SMALL_STATE(7196)] = 342660, - [SMALL_STATE(7197)] = 342698, - [SMALL_STATE(7198)] = 342736, - [SMALL_STATE(7199)] = 342774, - [SMALL_STATE(7200)] = 342816, - [SMALL_STATE(7201)] = 342854, - [SMALL_STATE(7202)] = 342894, - [SMALL_STATE(7203)] = 342936, - [SMALL_STATE(7204)] = 342964, - [SMALL_STATE(7205)] = 343002, - [SMALL_STATE(7206)] = 343044, - [SMALL_STATE(7207)] = 343086, - [SMALL_STATE(7208)] = 343128, - [SMALL_STATE(7209)] = 343174, - [SMALL_STATE(7210)] = 343216, - [SMALL_STATE(7211)] = 343244, - [SMALL_STATE(7212)] = 343282, - [SMALL_STATE(7213)] = 343328, - [SMALL_STATE(7214)] = 343370, - [SMALL_STATE(7215)] = 343412, - [SMALL_STATE(7216)] = 343440, - [SMALL_STATE(7217)] = 343478, - [SMALL_STATE(7218)] = 343520, - [SMALL_STATE(7219)] = 343566, - [SMALL_STATE(7220)] = 343612, - [SMALL_STATE(7221)] = 343652, - [SMALL_STATE(7222)] = 343682, - [SMALL_STATE(7223)] = 343710, - [SMALL_STATE(7224)] = 343752, - [SMALL_STATE(7225)] = 343794, - [SMALL_STATE(7226)] = 343836, - [SMALL_STATE(7227)] = 343874, - [SMALL_STATE(7228)] = 343916, - [SMALL_STATE(7229)] = 343962, - [SMALL_STATE(7230)] = 344004, - [SMALL_STATE(7231)] = 344046, - [SMALL_STATE(7232)] = 344076, - [SMALL_STATE(7233)] = 344118, - [SMALL_STATE(7234)] = 344146, - [SMALL_STATE(7235)] = 344176, - [SMALL_STATE(7236)] = 344216, - [SMALL_STATE(7237)] = 344240, - [SMALL_STATE(7238)] = 344282, - [SMALL_STATE(7239)] = 344328, - [SMALL_STATE(7240)] = 344370, - [SMALL_STATE(7241)] = 344408, - [SMALL_STATE(7242)] = 344432, - [SMALL_STATE(7243)] = 344470, - [SMALL_STATE(7244)] = 344508, - [SMALL_STATE(7245)] = 344550, - [SMALL_STATE(7246)] = 344592, - [SMALL_STATE(7247)] = 344634, - [SMALL_STATE(7248)] = 344658, - [SMALL_STATE(7249)] = 344698, - [SMALL_STATE(7250)] = 344740, - [SMALL_STATE(7251)] = 344782, - [SMALL_STATE(7252)] = 344820, - [SMALL_STATE(7253)] = 344866, - [SMALL_STATE(7254)] = 344908, - [SMALL_STATE(7255)] = 344938, - [SMALL_STATE(7256)] = 344980, - [SMALL_STATE(7257)] = 345008, - [SMALL_STATE(7258)] = 345046, - [SMALL_STATE(7259)] = 345088, - [SMALL_STATE(7260)] = 345126, - [SMALL_STATE(7261)] = 345164, - [SMALL_STATE(7262)] = 345204, - [SMALL_STATE(7263)] = 345244, - [SMALL_STATE(7264)] = 345290, - [SMALL_STATE(7265)] = 345332, - [SMALL_STATE(7266)] = 345372, - [SMALL_STATE(7267)] = 345410, - [SMALL_STATE(7268)] = 345440, - [SMALL_STATE(7269)] = 345478, - [SMALL_STATE(7270)] = 345516, - [SMALL_STATE(7271)] = 345556, - [SMALL_STATE(7272)] = 345594, - [SMALL_STATE(7273)] = 345636, - [SMALL_STATE(7274)] = 345678, - [SMALL_STATE(7275)] = 345708, - [SMALL_STATE(7276)] = 345750, - [SMALL_STATE(7277)] = 345792, - [SMALL_STATE(7278)] = 345832, - [SMALL_STATE(7279)] = 345874, - [SMALL_STATE(7280)] = 345920, - [SMALL_STATE(7281)] = 345964, - [SMALL_STATE(7282)] = 346004, - [SMALL_STATE(7283)] = 346046, - [SMALL_STATE(7284)] = 346084, - [SMALL_STATE(7285)] = 346130, - [SMALL_STATE(7286)] = 346172, - [SMALL_STATE(7287)] = 346214, - [SMALL_STATE(7288)] = 346260, - [SMALL_STATE(7289)] = 346302, - [SMALL_STATE(7290)] = 346344, - [SMALL_STATE(7291)] = 346384, - [SMALL_STATE(7292)] = 346426, - [SMALL_STATE(7293)] = 346468, - [SMALL_STATE(7294)] = 346496, + [SMALL_STATE(7179)] = 341966, + [SMALL_STATE(7180)] = 342012, + [SMALL_STATE(7181)] = 342058, + [SMALL_STATE(7182)] = 342086, + [SMALL_STATE(7183)] = 342114, + [SMALL_STATE(7184)] = 342156, + [SMALL_STATE(7185)] = 342186, + [SMALL_STATE(7186)] = 342214, + [SMALL_STATE(7187)] = 342256, + [SMALL_STATE(7188)] = 342286, + [SMALL_STATE(7189)] = 342328, + [SMALL_STATE(7190)] = 342370, + [SMALL_STATE(7191)] = 342394, + [SMALL_STATE(7192)] = 342440, + [SMALL_STATE(7193)] = 342486, + [SMALL_STATE(7194)] = 342516, + [SMALL_STATE(7195)] = 342546, + [SMALL_STATE(7196)] = 342584, + [SMALL_STATE(7197)] = 342630, + [SMALL_STATE(7198)] = 342672, + [SMALL_STATE(7199)] = 342714, + [SMALL_STATE(7200)] = 342756, + [SMALL_STATE(7201)] = 342798, + [SMALL_STATE(7202)] = 342844, + [SMALL_STATE(7203)] = 342890, + [SMALL_STATE(7204)] = 342932, + [SMALL_STATE(7205)] = 342978, + [SMALL_STATE(7206)] = 343024, + [SMALL_STATE(7207)] = 343066, + [SMALL_STATE(7208)] = 343108, + [SMALL_STATE(7209)] = 343138, + [SMALL_STATE(7210)] = 343180, + [SMALL_STATE(7211)] = 343222, + [SMALL_STATE(7212)] = 343260, + [SMALL_STATE(7213)] = 343298, + [SMALL_STATE(7214)] = 343336, + [SMALL_STATE(7215)] = 343374, + [SMALL_STATE(7216)] = 343412, + [SMALL_STATE(7217)] = 343450, + [SMALL_STATE(7218)] = 343488, + [SMALL_STATE(7219)] = 343526, + [SMALL_STATE(7220)] = 343564, + [SMALL_STATE(7221)] = 343602, + [SMALL_STATE(7222)] = 343640, + [SMALL_STATE(7223)] = 343670, + [SMALL_STATE(7224)] = 343716, + [SMALL_STATE(7225)] = 343762, + [SMALL_STATE(7226)] = 343808, + [SMALL_STATE(7227)] = 343854, + [SMALL_STATE(7228)] = 343898, + [SMALL_STATE(7229)] = 343926, + [SMALL_STATE(7230)] = 343954, + [SMALL_STATE(7231)] = 343992, + [SMALL_STATE(7232)] = 344030, + [SMALL_STATE(7233)] = 344068, + [SMALL_STATE(7234)] = 344106, + [SMALL_STATE(7235)] = 344134, + [SMALL_STATE(7236)] = 344176, + [SMALL_STATE(7237)] = 344222, + [SMALL_STATE(7238)] = 344246, + [SMALL_STATE(7239)] = 344288, + [SMALL_STATE(7240)] = 344326, + [SMALL_STATE(7241)] = 344364, + [SMALL_STATE(7242)] = 344402, + [SMALL_STATE(7243)] = 344440, + [SMALL_STATE(7244)] = 344478, + [SMALL_STATE(7245)] = 344516, + [SMALL_STATE(7246)] = 344554, + [SMALL_STATE(7247)] = 344596, + [SMALL_STATE(7248)] = 344638, + [SMALL_STATE(7249)] = 344680, + [SMALL_STATE(7250)] = 344722, + [SMALL_STATE(7251)] = 344764, + [SMALL_STATE(7252)] = 344806, + [SMALL_STATE(7253)] = 344848, + [SMALL_STATE(7254)] = 344890, + [SMALL_STATE(7255)] = 344932, + [SMALL_STATE(7256)] = 344974, + [SMALL_STATE(7257)] = 345016, + [SMALL_STATE(7258)] = 345058, + [SMALL_STATE(7259)] = 345100, + [SMALL_STATE(7260)] = 345124, + [SMALL_STATE(7261)] = 345166, + [SMALL_STATE(7262)] = 345208, + [SMALL_STATE(7263)] = 345250, + [SMALL_STATE(7264)] = 345292, + [SMALL_STATE(7265)] = 345334, + [SMALL_STATE(7266)] = 345376, + [SMALL_STATE(7267)] = 345418, + [SMALL_STATE(7268)] = 345446, + [SMALL_STATE(7269)] = 345486, + [SMALL_STATE(7270)] = 345526, + [SMALL_STATE(7271)] = 345566, + [SMALL_STATE(7272)] = 345606, + [SMALL_STATE(7273)] = 345634, + [SMALL_STATE(7274)] = 345664, + [SMALL_STATE(7275)] = 345704, + [SMALL_STATE(7276)] = 345744, + [SMALL_STATE(7277)] = 345784, + [SMALL_STATE(7278)] = 345824, + [SMALL_STATE(7279)] = 345864, + [SMALL_STATE(7280)] = 345904, + [SMALL_STATE(7281)] = 345944, + [SMALL_STATE(7282)] = 345984, + [SMALL_STATE(7283)] = 346024, + [SMALL_STATE(7284)] = 346064, + [SMALL_STATE(7285)] = 346106, + [SMALL_STATE(7286)] = 346148, + [SMALL_STATE(7287)] = 346190, + [SMALL_STATE(7288)] = 346232, + [SMALL_STATE(7289)] = 346274, + [SMALL_STATE(7290)] = 346316, + [SMALL_STATE(7291)] = 346358, + [SMALL_STATE(7292)] = 346400, + [SMALL_STATE(7293)] = 346442, + [SMALL_STATE(7294)] = 346484, [SMALL_STATE(7295)] = 346526, [SMALL_STATE(7296)] = 346564, [SMALL_STATE(7297)] = 346603, - [SMALL_STATE(7298)] = 346630, - [SMALL_STATE(7299)] = 346669, - [SMALL_STATE(7300)] = 346708, - [SMALL_STATE(7301)] = 346749, - [SMALL_STATE(7302)] = 346788, - [SMALL_STATE(7303)] = 346815, - [SMALL_STATE(7304)] = 346850, - [SMALL_STATE(7305)] = 346885, - [SMALL_STATE(7306)] = 346910, - [SMALL_STATE(7307)] = 346945, - [SMALL_STATE(7308)] = 346984, - [SMALL_STATE(7309)] = 347019, - [SMALL_STATE(7310)] = 347058, - [SMALL_STATE(7311)] = 347093, - [SMALL_STATE(7312)] = 347132, - [SMALL_STATE(7313)] = 347157, - [SMALL_STATE(7314)] = 347192, - [SMALL_STATE(7315)] = 347217, - [SMALL_STATE(7316)] = 347242, - [SMALL_STATE(7317)] = 347281, - [SMALL_STATE(7318)] = 347320, - [SMALL_STATE(7319)] = 347355, - [SMALL_STATE(7320)] = 347390, - [SMALL_STATE(7321)] = 347417, - [SMALL_STATE(7322)] = 347456, - [SMALL_STATE(7323)] = 347483, - [SMALL_STATE(7324)] = 347524, - [SMALL_STATE(7325)] = 347563, - [SMALL_STATE(7326)] = 347604, - [SMALL_STATE(7327)] = 347643, - [SMALL_STATE(7328)] = 347666, - [SMALL_STATE(7329)] = 347701, - [SMALL_STATE(7330)] = 347740, - [SMALL_STATE(7331)] = 347767, - [SMALL_STATE(7332)] = 347806, - [SMALL_STATE(7333)] = 347845, - [SMALL_STATE(7334)] = 347880, - [SMALL_STATE(7335)] = 347919, - [SMALL_STATE(7336)] = 347958, - [SMALL_STATE(7337)] = 347983, - [SMALL_STATE(7338)] = 348022, - [SMALL_STATE(7339)] = 348061, - [SMALL_STATE(7340)] = 348100, - [SMALL_STATE(7341)] = 348139, - [SMALL_STATE(7342)] = 348178, - [SMALL_STATE(7343)] = 348217, - [SMALL_STATE(7344)] = 348252, - [SMALL_STATE(7345)] = 348287, - [SMALL_STATE(7346)] = 348312, - [SMALL_STATE(7347)] = 348351, - [SMALL_STATE(7348)] = 348386, - [SMALL_STATE(7349)] = 348425, - [SMALL_STATE(7350)] = 348464, - [SMALL_STATE(7351)] = 348503, - [SMALL_STATE(7352)] = 348542, - [SMALL_STATE(7353)] = 348581, - [SMALL_STATE(7354)] = 348620, - [SMALL_STATE(7355)] = 348659, - [SMALL_STATE(7356)] = 348698, - [SMALL_STATE(7357)] = 348737, - [SMALL_STATE(7358)] = 348776, - [SMALL_STATE(7359)] = 348811, - [SMALL_STATE(7360)] = 348846, - [SMALL_STATE(7361)] = 348887, - [SMALL_STATE(7362)] = 348914, - [SMALL_STATE(7363)] = 348947, - [SMALL_STATE(7364)] = 348982, - [SMALL_STATE(7365)] = 349007, - [SMALL_STATE(7366)] = 349046, - [SMALL_STATE(7367)] = 349081, - [SMALL_STATE(7368)] = 349120, + [SMALL_STATE(7298)] = 346638, + [SMALL_STATE(7299)] = 346673, + [SMALL_STATE(7300)] = 346712, + [SMALL_STATE(7301)] = 346751, + [SMALL_STATE(7302)] = 346790, + [SMALL_STATE(7303)] = 346817, + [SMALL_STATE(7304)] = 346852, + [SMALL_STATE(7305)] = 346891, + [SMALL_STATE(7306)] = 346930, + [SMALL_STATE(7307)] = 346969, + [SMALL_STATE(7308)] = 346994, + [SMALL_STATE(7309)] = 347033, + [SMALL_STATE(7310)] = 347072, + [SMALL_STATE(7311)] = 347111, + [SMALL_STATE(7312)] = 347146, + [SMALL_STATE(7313)] = 347185, + [SMALL_STATE(7314)] = 347224, + [SMALL_STATE(7315)] = 347263, + [SMALL_STATE(7316)] = 347290, + [SMALL_STATE(7317)] = 347325, + [SMALL_STATE(7318)] = 347364, + [SMALL_STATE(7319)] = 347403, + [SMALL_STATE(7320)] = 347428, + [SMALL_STATE(7321)] = 347463, + [SMALL_STATE(7322)] = 347488, + [SMALL_STATE(7323)] = 347527, + [SMALL_STATE(7324)] = 347566, + [SMALL_STATE(7325)] = 347601, + [SMALL_STATE(7326)] = 347640, + [SMALL_STATE(7327)] = 347679, + [SMALL_STATE(7328)] = 347714, + [SMALL_STATE(7329)] = 347753, + [SMALL_STATE(7330)] = 347792, + [SMALL_STATE(7331)] = 347827, + [SMALL_STATE(7332)] = 347866, + [SMALL_STATE(7333)] = 347905, + [SMALL_STATE(7334)] = 347932, + [SMALL_STATE(7335)] = 347967, + [SMALL_STATE(7336)] = 348006, + [SMALL_STATE(7337)] = 348045, + [SMALL_STATE(7338)] = 348070, + [SMALL_STATE(7339)] = 348105, + [SMALL_STATE(7340)] = 348144, + [SMALL_STATE(7341)] = 348183, + [SMALL_STATE(7342)] = 348210, + [SMALL_STATE(7343)] = 348245, + [SMALL_STATE(7344)] = 348272, + [SMALL_STATE(7345)] = 348311, + [SMALL_STATE(7346)] = 348350, + [SMALL_STATE(7347)] = 348377, + [SMALL_STATE(7348)] = 348412, + [SMALL_STATE(7349)] = 348451, + [SMALL_STATE(7350)] = 348490, + [SMALL_STATE(7351)] = 348529, + [SMALL_STATE(7352)] = 348568, + [SMALL_STATE(7353)] = 348603, + [SMALL_STATE(7354)] = 348628, + [SMALL_STATE(7355)] = 348667, + [SMALL_STATE(7356)] = 348706, + [SMALL_STATE(7357)] = 348747, + [SMALL_STATE(7358)] = 348774, + [SMALL_STATE(7359)] = 348801, + [SMALL_STATE(7360)] = 348836, + [SMALL_STATE(7361)] = 348871, + [SMALL_STATE(7362)] = 348910, + [SMALL_STATE(7363)] = 348951, + [SMALL_STATE(7364)] = 348990, + [SMALL_STATE(7365)] = 349029, + [SMALL_STATE(7366)] = 349068, + [SMALL_STATE(7367)] = 349093, + [SMALL_STATE(7368)] = 349132, [SMALL_STATE(7369)] = 349159, - [SMALL_STATE(7370)] = 349198, - [SMALL_STATE(7371)] = 349225, - [SMALL_STATE(7372)] = 349264, - [SMALL_STATE(7373)] = 349303, - [SMALL_STATE(7374)] = 349328, - [SMALL_STATE(7375)] = 349367, - [SMALL_STATE(7376)] = 349406, - [SMALL_STATE(7377)] = 349445, - [SMALL_STATE(7378)] = 349480, - [SMALL_STATE(7379)] = 349515, - [SMALL_STATE(7380)] = 349550, - [SMALL_STATE(7381)] = 349589, - [SMALL_STATE(7382)] = 349628, - [SMALL_STATE(7383)] = 349655, - [SMALL_STATE(7384)] = 349694, - [SMALL_STATE(7385)] = 349733, - [SMALL_STATE(7386)] = 349768, - [SMALL_STATE(7387)] = 349807, - [SMALL_STATE(7388)] = 349846, - [SMALL_STATE(7389)] = 349871, - [SMALL_STATE(7390)] = 349910, - [SMALL_STATE(7391)] = 349949, - [SMALL_STATE(7392)] = 349988, - [SMALL_STATE(7393)] = 350021, - [SMALL_STATE(7394)] = 350056, - [SMALL_STATE(7395)] = 350095, - [SMALL_STATE(7396)] = 350120, - [SMALL_STATE(7397)] = 350155, - [SMALL_STATE(7398)] = 350194, - [SMALL_STATE(7399)] = 350233, - [SMALL_STATE(7400)] = 350272, - [SMALL_STATE(7401)] = 350311, - [SMALL_STATE(7402)] = 350336, - [SMALL_STATE(7403)] = 350375, - [SMALL_STATE(7404)] = 350414, - [SMALL_STATE(7405)] = 350439, - [SMALL_STATE(7406)] = 350478, - [SMALL_STATE(7407)] = 350503, - [SMALL_STATE(7408)] = 350538, - [SMALL_STATE(7409)] = 350565, - [SMALL_STATE(7410)] = 350600, - [SMALL_STATE(7411)] = 350639, - [SMALL_STATE(7412)] = 350664, - [SMALL_STATE(7413)] = 350691, - [SMALL_STATE(7414)] = 350718, - [SMALL_STATE(7415)] = 350745, - [SMALL_STATE(7416)] = 350784, - [SMALL_STATE(7417)] = 350823, - [SMALL_STATE(7418)] = 350862, - [SMALL_STATE(7419)] = 350901, - [SMALL_STATE(7420)] = 350940, - [SMALL_STATE(7421)] = 350979, - [SMALL_STATE(7422)] = 351018, - [SMALL_STATE(7423)] = 351057, - [SMALL_STATE(7424)] = 351096, - [SMALL_STATE(7425)] = 351123, - [SMALL_STATE(7426)] = 351162, + [SMALL_STATE(7370)] = 349200, + [SMALL_STATE(7371)] = 349233, + [SMALL_STATE(7372)] = 349272, + [SMALL_STATE(7373)] = 349295, + [SMALL_STATE(7374)] = 349330, + [SMALL_STATE(7375)] = 349369, + [SMALL_STATE(7376)] = 349408, + [SMALL_STATE(7377)] = 349447, + [SMALL_STATE(7378)] = 349472, + [SMALL_STATE(7379)] = 349507, + [SMALL_STATE(7380)] = 349532, + [SMALL_STATE(7381)] = 349571, + [SMALL_STATE(7382)] = 349610, + [SMALL_STATE(7383)] = 349649, + [SMALL_STATE(7384)] = 349674, + [SMALL_STATE(7385)] = 349713, + [SMALL_STATE(7386)] = 349752, + [SMALL_STATE(7387)] = 349777, + [SMALL_STATE(7388)] = 349812, + [SMALL_STATE(7389)] = 349851, + [SMALL_STATE(7390)] = 349878, + [SMALL_STATE(7391)] = 349905, + [SMALL_STATE(7392)] = 349930, + [SMALL_STATE(7393)] = 349969, + [SMALL_STATE(7394)] = 349994, + [SMALL_STATE(7395)] = 350033, + [SMALL_STATE(7396)] = 350072, + [SMALL_STATE(7397)] = 350111, + [SMALL_STATE(7398)] = 350150, + [SMALL_STATE(7399)] = 350189, + [SMALL_STATE(7400)] = 350224, + [SMALL_STATE(7401)] = 350263, + [SMALL_STATE(7402)] = 350302, + [SMALL_STATE(7403)] = 350341, + [SMALL_STATE(7404)] = 350366, + [SMALL_STATE(7405)] = 350401, + [SMALL_STATE(7406)] = 350426, + [SMALL_STATE(7407)] = 350465, + [SMALL_STATE(7408)] = 350504, + [SMALL_STATE(7409)] = 350543, + [SMALL_STATE(7410)] = 350578, + [SMALL_STATE(7411)] = 350617, + [SMALL_STATE(7412)] = 350656, + [SMALL_STATE(7413)] = 350689, + [SMALL_STATE(7414)] = 350728, + [SMALL_STATE(7415)] = 350755, + [SMALL_STATE(7416)] = 350782, + [SMALL_STATE(7417)] = 350817, + [SMALL_STATE(7418)] = 350856, + [SMALL_STATE(7419)] = 350895, + [SMALL_STATE(7420)] = 350934, + [SMALL_STATE(7421)] = 350969, + [SMALL_STATE(7422)] = 351004, + [SMALL_STATE(7423)] = 351043, + [SMALL_STATE(7424)] = 351082, + [SMALL_STATE(7425)] = 351121, + [SMALL_STATE(7426)] = 351160, [SMALL_STATE(7427)] = 351201, - [SMALL_STATE(7428)] = 351237, - [SMALL_STATE(7429)] = 351273, - [SMALL_STATE(7430)] = 351295, - [SMALL_STATE(7431)] = 351333, - [SMALL_STATE(7432)] = 351371, - [SMALL_STATE(7433)] = 351409, - [SMALL_STATE(7434)] = 351447, - [SMALL_STATE(7435)] = 351485, - [SMALL_STATE(7436)] = 351523, - [SMALL_STATE(7437)] = 351545, - [SMALL_STATE(7438)] = 351567, - [SMALL_STATE(7439)] = 351589, - [SMALL_STATE(7440)] = 351611, - [SMALL_STATE(7441)] = 351643, - [SMALL_STATE(7442)] = 351675, - [SMALL_STATE(7443)] = 351707, - [SMALL_STATE(7444)] = 351729, - [SMALL_STATE(7445)] = 351767, - [SMALL_STATE(7446)] = 351803, - [SMALL_STATE(7447)] = 351839, - [SMALL_STATE(7448)] = 351867, - [SMALL_STATE(7449)] = 351899, - [SMALL_STATE(7450)] = 351927, - [SMALL_STATE(7451)] = 351963, - [SMALL_STATE(7452)] = 351985, - [SMALL_STATE(7453)] = 352013, - [SMALL_STATE(7454)] = 352045, - [SMALL_STATE(7455)] = 352067, - [SMALL_STATE(7456)] = 352089, - [SMALL_STATE(7457)] = 352125, - [SMALL_STATE(7458)] = 352163, - [SMALL_STATE(7459)] = 352185, - [SMALL_STATE(7460)] = 352207, - [SMALL_STATE(7461)] = 352229, - [SMALL_STATE(7462)] = 352251, - [SMALL_STATE(7463)] = 352273, - [SMALL_STATE(7464)] = 352311, - [SMALL_STATE(7465)] = 352333, - [SMALL_STATE(7466)] = 352359, - [SMALL_STATE(7467)] = 352391, - [SMALL_STATE(7468)] = 352423, - [SMALL_STATE(7469)] = 352445, - [SMALL_STATE(7470)] = 352477, - [SMALL_STATE(7471)] = 352509, - [SMALL_STATE(7472)] = 352533, - [SMALL_STATE(7473)] = 352555, - [SMALL_STATE(7474)] = 352581, - [SMALL_STATE(7475)] = 352605, - [SMALL_STATE(7476)] = 352637, - [SMALL_STATE(7477)] = 352659, - [SMALL_STATE(7478)] = 352691, - [SMALL_STATE(7479)] = 352715, - [SMALL_STATE(7480)] = 352739, - [SMALL_STATE(7481)] = 352761, - [SMALL_STATE(7482)] = 352787, - [SMALL_STATE(7483)] = 352813, - [SMALL_STATE(7484)] = 352835, - [SMALL_STATE(7485)] = 352857, - [SMALL_STATE(7486)] = 352893, - [SMALL_STATE(7487)] = 352925, - [SMALL_STATE(7488)] = 352947, - [SMALL_STATE(7489)] = 352969, - [SMALL_STATE(7490)] = 353005, - [SMALL_STATE(7491)] = 353027, - [SMALL_STATE(7492)] = 353049, - [SMALL_STATE(7493)] = 353073, - [SMALL_STATE(7494)] = 353095, - [SMALL_STATE(7495)] = 353131, - [SMALL_STATE(7496)] = 353163, - [SMALL_STATE(7497)] = 353199, + [SMALL_STATE(7428)] = 351223, + [SMALL_STATE(7429)] = 351257, + [SMALL_STATE(7430)] = 351279, + [SMALL_STATE(7431)] = 351301, + [SMALL_STATE(7432)] = 351323, + [SMALL_STATE(7433)] = 351357, + [SMALL_STATE(7434)] = 351379, + [SMALL_STATE(7435)] = 351403, + [SMALL_STATE(7436)] = 351425, + [SMALL_STATE(7437)] = 351449, + [SMALL_STATE(7438)] = 351471, + [SMALL_STATE(7439)] = 351503, + [SMALL_STATE(7440)] = 351535, + [SMALL_STATE(7441)] = 351567, + [SMALL_STATE(7442)] = 351599, + [SMALL_STATE(7443)] = 351623, + [SMALL_STATE(7444)] = 351647, + [SMALL_STATE(7445)] = 351669, + [SMALL_STATE(7446)] = 351695, + [SMALL_STATE(7447)] = 351717, + [SMALL_STATE(7448)] = 351749, + [SMALL_STATE(7449)] = 351775, + [SMALL_STATE(7450)] = 351797, + [SMALL_STATE(7451)] = 351819, + [SMALL_STATE(7452)] = 351847, + [SMALL_STATE(7453)] = 351879, + [SMALL_STATE(7454)] = 351911, + [SMALL_STATE(7455)] = 351943, + [SMALL_STATE(7456)] = 351975, + [SMALL_STATE(7457)] = 351997, + [SMALL_STATE(7458)] = 352019, + [SMALL_STATE(7459)] = 352051, + [SMALL_STATE(7460)] = 352083, + [SMALL_STATE(7461)] = 352115, + [SMALL_STATE(7462)] = 352147, + [SMALL_STATE(7463)] = 352179, + [SMALL_STATE(7464)] = 352211, + [SMALL_STATE(7465)] = 352243, + [SMALL_STATE(7466)] = 352275, + [SMALL_STATE(7467)] = 352297, + [SMALL_STATE(7468)] = 352325, + [SMALL_STATE(7469)] = 352363, + [SMALL_STATE(7470)] = 352395, + [SMALL_STATE(7471)] = 352427, + [SMALL_STATE(7472)] = 352459, + [SMALL_STATE(7473)] = 352491, + [SMALL_STATE(7474)] = 352523, + [SMALL_STATE(7475)] = 352555, + [SMALL_STATE(7476)] = 352587, + [SMALL_STATE(7477)] = 352619, + [SMALL_STATE(7478)] = 352641, + [SMALL_STATE(7479)] = 352673, + [SMALL_STATE(7480)] = 352705, + [SMALL_STATE(7481)] = 352737, + [SMALL_STATE(7482)] = 352769, + [SMALL_STATE(7483)] = 352801, + [SMALL_STATE(7484)] = 352833, + [SMALL_STATE(7485)] = 352855, + [SMALL_STATE(7486)] = 352883, + [SMALL_STATE(7487)] = 352921, + [SMALL_STATE(7488)] = 352943, + [SMALL_STATE(7489)] = 352975, + [SMALL_STATE(7490)] = 353007, + [SMALL_STATE(7491)] = 353039, + [SMALL_STATE(7492)] = 353077, + [SMALL_STATE(7493)] = 353099, + [SMALL_STATE(7494)] = 353121, + [SMALL_STATE(7495)] = 353143, + [SMALL_STATE(7496)] = 353175, + [SMALL_STATE(7497)] = 353203, [SMALL_STATE(7498)] = 353225, - [SMALL_STATE(7499)] = 353247, - [SMALL_STATE(7500)] = 353283, - [SMALL_STATE(7501)] = 353307, - [SMALL_STATE(7502)] = 353329, - [SMALL_STATE(7503)] = 353351, - [SMALL_STATE(7504)] = 353373, - [SMALL_STATE(7505)] = 353405, - [SMALL_STATE(7506)] = 353427, - [SMALL_STATE(7507)] = 353449, - [SMALL_STATE(7508)] = 353481, - [SMALL_STATE(7509)] = 353517, - [SMALL_STATE(7510)] = 353541, - [SMALL_STATE(7511)] = 353573, - [SMALL_STATE(7512)] = 353605, - [SMALL_STATE(7513)] = 353637, - [SMALL_STATE(7514)] = 353663, - [SMALL_STATE(7515)] = 353695, - [SMALL_STATE(7516)] = 353727, - [SMALL_STATE(7517)] = 353759, - [SMALL_STATE(7518)] = 353785, - [SMALL_STATE(7519)] = 353817, - [SMALL_STATE(7520)] = 353839, - [SMALL_STATE(7521)] = 353871, - [SMALL_STATE(7522)] = 353903, - [SMALL_STATE(7523)] = 353935, - [SMALL_STATE(7524)] = 353967, - [SMALL_STATE(7525)] = 353999, - [SMALL_STATE(7526)] = 354031, - [SMALL_STATE(7527)] = 354063, - [SMALL_STATE(7528)] = 354095, - [SMALL_STATE(7529)] = 354127, - [SMALL_STATE(7530)] = 354155, - [SMALL_STATE(7531)] = 354187, - [SMALL_STATE(7532)] = 354219, - [SMALL_STATE(7533)] = 354251, - [SMALL_STATE(7534)] = 354283, - [SMALL_STATE(7535)] = 354307, - [SMALL_STATE(7536)] = 354331, - [SMALL_STATE(7537)] = 354363, - [SMALL_STATE(7538)] = 354395, - [SMALL_STATE(7539)] = 354433, - [SMALL_STATE(7540)] = 354465, - [SMALL_STATE(7541)] = 354498, - [SMALL_STATE(7542)] = 354531, - [SMALL_STATE(7543)] = 354552, - [SMALL_STATE(7544)] = 354573, - [SMALL_STATE(7545)] = 354606, - [SMALL_STATE(7546)] = 354627, - [SMALL_STATE(7547)] = 354660, - [SMALL_STATE(7548)] = 354693, - [SMALL_STATE(7549)] = 354714, - [SMALL_STATE(7550)] = 354747, - [SMALL_STATE(7551)] = 354780, - [SMALL_STATE(7552)] = 354813, - [SMALL_STATE(7553)] = 354846, - [SMALL_STATE(7554)] = 354879, - [SMALL_STATE(7555)] = 354900, - [SMALL_STATE(7556)] = 354921, - [SMALL_STATE(7557)] = 354954, - [SMALL_STATE(7558)] = 354987, - [SMALL_STATE(7559)] = 355008, - [SMALL_STATE(7560)] = 355029, - [SMALL_STATE(7561)] = 355050, - [SMALL_STATE(7562)] = 355071, - [SMALL_STATE(7563)] = 355092, - [SMALL_STATE(7564)] = 355113, - [SMALL_STATE(7565)] = 355134, - [SMALL_STATE(7566)] = 355155, - [SMALL_STATE(7567)] = 355176, - [SMALL_STATE(7568)] = 355197, - [SMALL_STATE(7569)] = 355230, - [SMALL_STATE(7570)] = 355255, - [SMALL_STATE(7571)] = 355276, - [SMALL_STATE(7572)] = 355309, - [SMALL_STATE(7573)] = 355330, - [SMALL_STATE(7574)] = 355351, - [SMALL_STATE(7575)] = 355372, - [SMALL_STATE(7576)] = 355393, - [SMALL_STATE(7577)] = 355426, - [SMALL_STATE(7578)] = 355447, - [SMALL_STATE(7579)] = 355480, - [SMALL_STATE(7580)] = 355501, - [SMALL_STATE(7581)] = 355520, - [SMALL_STATE(7582)] = 355553, - [SMALL_STATE(7583)] = 355586, - [SMALL_STATE(7584)] = 355607, - [SMALL_STATE(7585)] = 355628, - [SMALL_STATE(7586)] = 355649, - [SMALL_STATE(7587)] = 355670, - [SMALL_STATE(7588)] = 355691, - [SMALL_STATE(7589)] = 355712, - [SMALL_STATE(7590)] = 355733, - [SMALL_STATE(7591)] = 355754, - [SMALL_STATE(7592)] = 355773, - [SMALL_STATE(7593)] = 355794, - [SMALL_STATE(7594)] = 355815, - [SMALL_STATE(7595)] = 355848, - [SMALL_STATE(7596)] = 355869, - [SMALL_STATE(7597)] = 355890, - [SMALL_STATE(7598)] = 355911, - [SMALL_STATE(7599)] = 355944, - [SMALL_STATE(7600)] = 355977, - [SMALL_STATE(7601)] = 355998, - [SMALL_STATE(7602)] = 356019, - [SMALL_STATE(7603)] = 356052, - [SMALL_STATE(7604)] = 356073, - [SMALL_STATE(7605)] = 356106, - [SMALL_STATE(7606)] = 356129, - [SMALL_STATE(7607)] = 356162, - [SMALL_STATE(7608)] = 356183, - [SMALL_STATE(7609)] = 356204, - [SMALL_STATE(7610)] = 356237, - [SMALL_STATE(7611)] = 356270, - [SMALL_STATE(7612)] = 356303, - [SMALL_STATE(7613)] = 356336, - [SMALL_STATE(7614)] = 356369, - [SMALL_STATE(7615)] = 356402, - [SMALL_STATE(7616)] = 356435, - [SMALL_STATE(7617)] = 356468, - [SMALL_STATE(7618)] = 356501, - [SMALL_STATE(7619)] = 356522, - [SMALL_STATE(7620)] = 356543, - [SMALL_STATE(7621)] = 356576, - [SMALL_STATE(7622)] = 356609, - [SMALL_STATE(7623)] = 356630, - [SMALL_STATE(7624)] = 356651, - [SMALL_STATE(7625)] = 356684, - [SMALL_STATE(7626)] = 356717, - [SMALL_STATE(7627)] = 356738, - [SMALL_STATE(7628)] = 356771, - [SMALL_STATE(7629)] = 356804, - [SMALL_STATE(7630)] = 356825, - [SMALL_STATE(7631)] = 356858, - [SMALL_STATE(7632)] = 356891, - [SMALL_STATE(7633)] = 356924, - [SMALL_STATE(7634)] = 356943, - [SMALL_STATE(7635)] = 356964, - [SMALL_STATE(7636)] = 356997, - [SMALL_STATE(7637)] = 357030, - [SMALL_STATE(7638)] = 357063, - [SMALL_STATE(7639)] = 357096, - [SMALL_STATE(7640)] = 357129, - [SMALL_STATE(7641)] = 357150, - [SMALL_STATE(7642)] = 357183, - [SMALL_STATE(7643)] = 357216, - [SMALL_STATE(7644)] = 357249, - [SMALL_STATE(7645)] = 357276, - [SMALL_STATE(7646)] = 357297, - [SMALL_STATE(7647)] = 357318, - [SMALL_STATE(7648)] = 357339, - [SMALL_STATE(7649)] = 357360, - [SMALL_STATE(7650)] = 357381, - [SMALL_STATE(7651)] = 357414, - [SMALL_STATE(7652)] = 357447, - [SMALL_STATE(7653)] = 357478, - [SMALL_STATE(7654)] = 357499, - [SMALL_STATE(7655)] = 357520, - [SMALL_STATE(7656)] = 357541, - [SMALL_STATE(7657)] = 357574, - [SMALL_STATE(7658)] = 357605, - [SMALL_STATE(7659)] = 357626, - [SMALL_STATE(7660)] = 357647, - [SMALL_STATE(7661)] = 357668, - [SMALL_STATE(7662)] = 357689, - [SMALL_STATE(7663)] = 357720, - [SMALL_STATE(7664)] = 357741, - [SMALL_STATE(7665)] = 357774, - [SMALL_STATE(7666)] = 357805, - [SMALL_STATE(7667)] = 357826, - [SMALL_STATE(7668)] = 357859, - [SMALL_STATE(7669)] = 357880, - [SMALL_STATE(7670)] = 357913, - [SMALL_STATE(7671)] = 357934, - [SMALL_STATE(7672)] = 357967, - [SMALL_STATE(7673)] = 358000, - [SMALL_STATE(7674)] = 358021, - [SMALL_STATE(7675)] = 358054, - [SMALL_STATE(7676)] = 358075, - [SMALL_STATE(7677)] = 358108, - [SMALL_STATE(7678)] = 358141, - [SMALL_STATE(7679)] = 358162, - [SMALL_STATE(7680)] = 358183, - [SMALL_STATE(7681)] = 358204, - [SMALL_STATE(7682)] = 358225, - [SMALL_STATE(7683)] = 358258, - [SMALL_STATE(7684)] = 358291, - [SMALL_STATE(7685)] = 358324, - [SMALL_STATE(7686)] = 358345, - [SMALL_STATE(7687)] = 358378, - [SMALL_STATE(7688)] = 358399, - [SMALL_STATE(7689)] = 358432, - [SMALL_STATE(7690)] = 358453, - [SMALL_STATE(7691)] = 358474, - [SMALL_STATE(7692)] = 358495, - [SMALL_STATE(7693)] = 358516, - [SMALL_STATE(7694)] = 358549, - [SMALL_STATE(7695)] = 358582, - [SMALL_STATE(7696)] = 358603, - [SMALL_STATE(7697)] = 358624, - [SMALL_STATE(7698)] = 358657, - [SMALL_STATE(7699)] = 358678, - [SMALL_STATE(7700)] = 358711, - [SMALL_STATE(7701)] = 358732, - [SMALL_STATE(7702)] = 358765, - [SMALL_STATE(7703)] = 358786, - [SMALL_STATE(7704)] = 358807, - [SMALL_STATE(7705)] = 358828, - [SMALL_STATE(7706)] = 358861, - [SMALL_STATE(7707)] = 358882, - [SMALL_STATE(7708)] = 358915, - [SMALL_STATE(7709)] = 358946, - [SMALL_STATE(7710)] = 358967, - [SMALL_STATE(7711)] = 358998, - [SMALL_STATE(7712)] = 359019, - [SMALL_STATE(7713)] = 359050, - [SMALL_STATE(7714)] = 359073, - [SMALL_STATE(7715)] = 359106, - [SMALL_STATE(7716)] = 359127, - [SMALL_STATE(7717)] = 359150, - [SMALL_STATE(7718)] = 359183, - [SMALL_STATE(7719)] = 359216, - [SMALL_STATE(7720)] = 359247, - [SMALL_STATE(7721)] = 359268, - [SMALL_STATE(7722)] = 359301, - [SMALL_STATE(7723)] = 359332, - [SMALL_STATE(7724)] = 359363, - [SMALL_STATE(7725)] = 359394, - [SMALL_STATE(7726)] = 359415, - [SMALL_STATE(7727)] = 359436, - [SMALL_STATE(7728)] = 359467, - [SMALL_STATE(7729)] = 359500, - [SMALL_STATE(7730)] = 359523, - [SMALL_STATE(7731)] = 359554, - [SMALL_STATE(7732)] = 359585, - [SMALL_STATE(7733)] = 359616, - [SMALL_STATE(7734)] = 359649, - [SMALL_STATE(7735)] = 359682, - [SMALL_STATE(7736)] = 359715, - [SMALL_STATE(7737)] = 359748, - [SMALL_STATE(7738)] = 359775, - [SMALL_STATE(7739)] = 359808, - [SMALL_STATE(7740)] = 359839, - [SMALL_STATE(7741)] = 359866, - [SMALL_STATE(7742)] = 359897, - [SMALL_STATE(7743)] = 359924, - [SMALL_STATE(7744)] = 359945, - [SMALL_STATE(7745)] = 359978, - [SMALL_STATE(7746)] = 360011, - [SMALL_STATE(7747)] = 360042, - [SMALL_STATE(7748)] = 360075, - [SMALL_STATE(7749)] = 360100, - [SMALL_STATE(7750)] = 360133, - [SMALL_STATE(7751)] = 360164, - [SMALL_STATE(7752)] = 360197, - [SMALL_STATE(7753)] = 360230, - [SMALL_STATE(7754)] = 360261, - [SMALL_STATE(7755)] = 360294, - [SMALL_STATE(7756)] = 360327, - [SMALL_STATE(7757)] = 360358, - [SMALL_STATE(7758)] = 360383, - [SMALL_STATE(7759)] = 360414, - [SMALL_STATE(7760)] = 360447, - [SMALL_STATE(7761)] = 360472, - [SMALL_STATE(7762)] = 360495, - [SMALL_STATE(7763)] = 360526, - [SMALL_STATE(7764)] = 360559, - [SMALL_STATE(7765)] = 360582, - [SMALL_STATE(7766)] = 360613, - [SMALL_STATE(7767)] = 360646, - [SMALL_STATE(7768)] = 360669, - [SMALL_STATE(7769)] = 360702, - [SMALL_STATE(7770)] = 360723, - [SMALL_STATE(7771)] = 360744, - [SMALL_STATE(7772)] = 360777, - [SMALL_STATE(7773)] = 360810, - [SMALL_STATE(7774)] = 360841, - [SMALL_STATE(7775)] = 360874, - [SMALL_STATE(7776)] = 360907, - [SMALL_STATE(7777)] = 360940, - [SMALL_STATE(7778)] = 360973, - [SMALL_STATE(7779)] = 361004, - [SMALL_STATE(7780)] = 361035, - [SMALL_STATE(7781)] = 361066, - [SMALL_STATE(7782)] = 361087, - [SMALL_STATE(7783)] = 361112, - [SMALL_STATE(7784)] = 361139, - [SMALL_STATE(7785)] = 361160, - [SMALL_STATE(7786)] = 361185, - [SMALL_STATE(7787)] = 361206, - [SMALL_STATE(7788)] = 361227, - [SMALL_STATE(7789)] = 361260, - [SMALL_STATE(7790)] = 361281, - [SMALL_STATE(7791)] = 361314, - [SMALL_STATE(7792)] = 361347, - [SMALL_STATE(7793)] = 361380, - [SMALL_STATE(7794)] = 361401, - [SMALL_STATE(7795)] = 361422, - [SMALL_STATE(7796)] = 361453, - [SMALL_STATE(7797)] = 361478, - [SMALL_STATE(7798)] = 361511, - [SMALL_STATE(7799)] = 361542, - [SMALL_STATE(7800)] = 361575, - [SMALL_STATE(7801)] = 361606, - [SMALL_STATE(7802)] = 361627, - [SMALL_STATE(7803)] = 361646, - [SMALL_STATE(7804)] = 361677, - [SMALL_STATE(7805)] = 361698, - [SMALL_STATE(7806)] = 361731, - [SMALL_STATE(7807)] = 361764, - [SMALL_STATE(7808)] = 361797, - [SMALL_STATE(7809)] = 361830, - [SMALL_STATE(7810)] = 361863, - [SMALL_STATE(7811)] = 361896, - [SMALL_STATE(7812)] = 361929, - [SMALL_STATE(7813)] = 361962, - [SMALL_STATE(7814)] = 361981, - [SMALL_STATE(7815)] = 362014, - [SMALL_STATE(7816)] = 362035, - [SMALL_STATE(7817)] = 362060, - [SMALL_STATE(7818)] = 362085, - [SMALL_STATE(7819)] = 362106, - [SMALL_STATE(7820)] = 362131, - [SMALL_STATE(7821)] = 362152, - [SMALL_STATE(7822)] = 362185, - [SMALL_STATE(7823)] = 362218, - [SMALL_STATE(7824)] = 362251, - [SMALL_STATE(7825)] = 362284, - [SMALL_STATE(7826)] = 362305, - [SMALL_STATE(7827)] = 362326, - [SMALL_STATE(7828)] = 362357, - [SMALL_STATE(7829)] = 362388, - [SMALL_STATE(7830)] = 362419, - [SMALL_STATE(7831)] = 362452, - [SMALL_STATE(7832)] = 362477, - [SMALL_STATE(7833)] = 362510, - [SMALL_STATE(7834)] = 362541, - [SMALL_STATE(7835)] = 362574, - [SMALL_STATE(7836)] = 362607, - [SMALL_STATE(7837)] = 362640, - [SMALL_STATE(7838)] = 362673, - [SMALL_STATE(7839)] = 362706, - [SMALL_STATE(7840)] = 362731, - [SMALL_STATE(7841)] = 362764, - [SMALL_STATE(7842)] = 362785, - [SMALL_STATE(7843)] = 362818, - [SMALL_STATE(7844)] = 362851, - [SMALL_STATE(7845)] = 362884, - [SMALL_STATE(7846)] = 362917, - [SMALL_STATE(7847)] = 362939, - [SMALL_STATE(7848)] = 362963, - [SMALL_STATE(7849)] = 362983, - [SMALL_STATE(7850)] = 363007, - [SMALL_STATE(7851)] = 363031, - [SMALL_STATE(7852)] = 363063, - [SMALL_STATE(7853)] = 363083, - [SMALL_STATE(7854)] = 363109, - [SMALL_STATE(7855)] = 363141, - [SMALL_STATE(7856)] = 363165, - [SMALL_STATE(7857)] = 363185, - [SMALL_STATE(7858)] = 363209, - [SMALL_STATE(7859)] = 363233, - [SMALL_STATE(7860)] = 363259, - [SMALL_STATE(7861)] = 363281, - [SMALL_STATE(7862)] = 363303, - [SMALL_STATE(7863)] = 363327, - [SMALL_STATE(7864)] = 363351, - [SMALL_STATE(7865)] = 363373, - [SMALL_STATE(7866)] = 363397, - [SMALL_STATE(7867)] = 363421, - [SMALL_STATE(7868)] = 363447, - [SMALL_STATE(7869)] = 363473, - [SMALL_STATE(7870)] = 363493, - [SMALL_STATE(7871)] = 363513, - [SMALL_STATE(7872)] = 363535, - [SMALL_STATE(7873)] = 363555, - [SMALL_STATE(7874)] = 363575, - [SMALL_STATE(7875)] = 363597, - [SMALL_STATE(7876)] = 363617, - [SMALL_STATE(7877)] = 363639, - [SMALL_STATE(7878)] = 363665, - [SMALL_STATE(7879)] = 363685, - [SMALL_STATE(7880)] = 363707, - [SMALL_STATE(7881)] = 363729, - [SMALL_STATE(7882)] = 363761, - [SMALL_STATE(7883)] = 363785, - [SMALL_STATE(7884)] = 363809, - [SMALL_STATE(7885)] = 363833, - [SMALL_STATE(7886)] = 363855, - [SMALL_STATE(7887)] = 363877, - [SMALL_STATE(7888)] = 363895, - [SMALL_STATE(7889)] = 363913, - [SMALL_STATE(7890)] = 363937, - [SMALL_STATE(7891)] = 363961, - [SMALL_STATE(7892)] = 363983, - [SMALL_STATE(7893)] = 364005, - [SMALL_STATE(7894)] = 364029, - [SMALL_STATE(7895)] = 364061, - [SMALL_STATE(7896)] = 364083, - [SMALL_STATE(7897)] = 364105, - [SMALL_STATE(7898)] = 364129, - [SMALL_STATE(7899)] = 364153, - [SMALL_STATE(7900)] = 364183, - [SMALL_STATE(7901)] = 364203, - [SMALL_STATE(7902)] = 364232, - [SMALL_STATE(7903)] = 364253, - [SMALL_STATE(7904)] = 364272, - [SMALL_STATE(7905)] = 364295, - [SMALL_STATE(7906)] = 364314, - [SMALL_STATE(7907)] = 364343, - [SMALL_STATE(7908)] = 364372, - [SMALL_STATE(7909)] = 364401, - [SMALL_STATE(7910)] = 364430, - [SMALL_STATE(7911)] = 364461, - [SMALL_STATE(7912)] = 364484, - [SMALL_STATE(7913)] = 364505, - [SMALL_STATE(7914)] = 364528, - [SMALL_STATE(7915)] = 364549, - [SMALL_STATE(7916)] = 364580, - [SMALL_STATE(7917)] = 364609, - [SMALL_STATE(7918)] = 364638, - [SMALL_STATE(7919)] = 364667, - [SMALL_STATE(7920)] = 364690, - [SMALL_STATE(7921)] = 364721, - [SMALL_STATE(7922)] = 364750, - [SMALL_STATE(7923)] = 364775, - [SMALL_STATE(7924)] = 364804, - [SMALL_STATE(7925)] = 364827, - [SMALL_STATE(7926)] = 364856, - [SMALL_STATE(7927)] = 364883, - [SMALL_STATE(7928)] = 364902, - [SMALL_STATE(7929)] = 364925, - [SMALL_STATE(7930)] = 364952, - [SMALL_STATE(7931)] = 364981, - [SMALL_STATE(7932)] = 365006, - [SMALL_STATE(7933)] = 365025, - [SMALL_STATE(7934)] = 365048, - [SMALL_STATE(7935)] = 365071, - [SMALL_STATE(7936)] = 365090, - [SMALL_STATE(7937)] = 365111, - [SMALL_STATE(7938)] = 365130, - [SMALL_STATE(7939)] = 365149, - [SMALL_STATE(7940)] = 365178, - [SMALL_STATE(7941)] = 365197, - [SMALL_STATE(7942)] = 365226, - [SMALL_STATE(7943)] = 365249, - [SMALL_STATE(7944)] = 365268, - [SMALL_STATE(7945)] = 365291, - [SMALL_STATE(7946)] = 365320, - [SMALL_STATE(7947)] = 365343, - [SMALL_STATE(7948)] = 365362, - [SMALL_STATE(7949)] = 365381, - [SMALL_STATE(7950)] = 365402, - [SMALL_STATE(7951)] = 365421, - [SMALL_STATE(7952)] = 365444, - [SMALL_STATE(7953)] = 365467, - [SMALL_STATE(7954)] = 365490, - [SMALL_STATE(7955)] = 365519, - [SMALL_STATE(7956)] = 365548, - [SMALL_STATE(7957)] = 365577, - [SMALL_STATE(7958)] = 365596, - [SMALL_STATE(7959)] = 365621, - [SMALL_STATE(7960)] = 365650, - [SMALL_STATE(7961)] = 365673, - [SMALL_STATE(7962)] = 365696, - [SMALL_STATE(7963)] = 365719, - [SMALL_STATE(7964)] = 365742, - [SMALL_STATE(7965)] = 365767, - [SMALL_STATE(7966)] = 365790, - [SMALL_STATE(7967)] = 365809, - [SMALL_STATE(7968)] = 365830, - [SMALL_STATE(7969)] = 365851, - [SMALL_STATE(7970)] = 365872, - [SMALL_STATE(7971)] = 365891, - [SMALL_STATE(7972)] = 365914, - [SMALL_STATE(7973)] = 365933, - [SMALL_STATE(7974)] = 365954, - [SMALL_STATE(7975)] = 365983, - [SMALL_STATE(7976)] = 366004, - [SMALL_STATE(7977)] = 366023, - [SMALL_STATE(7978)] = 366044, - [SMALL_STATE(7979)] = 366063, - [SMALL_STATE(7980)] = 366088, - [SMALL_STATE(7981)] = 366117, - [SMALL_STATE(7982)] = 366146, - [SMALL_STATE(7983)] = 366167, - [SMALL_STATE(7984)] = 366196, - [SMALL_STATE(7985)] = 366219, - [SMALL_STATE(7986)] = 366244, - [SMALL_STATE(7987)] = 366273, - [SMALL_STATE(7988)] = 366300, - [SMALL_STATE(7989)] = 366329, - [SMALL_STATE(7990)] = 366358, - [SMALL_STATE(7991)] = 366379, - [SMALL_STATE(7992)] = 366410, - [SMALL_STATE(7993)] = 366439, - [SMALL_STATE(7994)] = 366462, - [SMALL_STATE(7995)] = 366483, - [SMALL_STATE(7996)] = 366514, - [SMALL_STATE(7997)] = 366537, - [SMALL_STATE(7998)] = 366560, - [SMALL_STATE(7999)] = 366589, - [SMALL_STATE(8000)] = 366612, - [SMALL_STATE(8001)] = 366635, - [SMALL_STATE(8002)] = 366660, - [SMALL_STATE(8003)] = 366679, - [SMALL_STATE(8004)] = 366704, - [SMALL_STATE(8005)] = 366723, - [SMALL_STATE(8006)] = 366748, - [SMALL_STATE(8007)] = 366767, - [SMALL_STATE(8008)] = 366792, - [SMALL_STATE(8009)] = 366811, - [SMALL_STATE(8010)] = 366830, - [SMALL_STATE(8011)] = 366851, - [SMALL_STATE(8012)] = 366874, - [SMALL_STATE(8013)] = 366897, - [SMALL_STATE(8014)] = 366918, - [SMALL_STATE(8015)] = 366937, - [SMALL_STATE(8016)] = 366960, - [SMALL_STATE(8017)] = 366979, - [SMALL_STATE(8018)] = 367000, - [SMALL_STATE(8019)] = 367021, - [SMALL_STATE(8020)] = 367040, - [SMALL_STATE(8021)] = 367059, - [SMALL_STATE(8022)] = 367084, - [SMALL_STATE(8023)] = 367105, - [SMALL_STATE(8024)] = 367124, - [SMALL_STATE(8025)] = 367143, - [SMALL_STATE(8026)] = 367164, - [SMALL_STATE(8027)] = 367183, - [SMALL_STATE(8028)] = 367206, - [SMALL_STATE(8029)] = 367229, - [SMALL_STATE(8030)] = 367252, - [SMALL_STATE(8031)] = 367279, - [SMALL_STATE(8032)] = 367298, - [SMALL_STATE(8033)] = 367323, - [SMALL_STATE(8034)] = 367342, - [SMALL_STATE(8035)] = 367365, - [SMALL_STATE(8036)] = 367388, - [SMALL_STATE(8037)] = 367413, - [SMALL_STATE(8038)] = 367432, - [SMALL_STATE(8039)] = 367461, - [SMALL_STATE(8040)] = 367484, - [SMALL_STATE(8041)] = 367509, - [SMALL_STATE(8042)] = 367530, - [SMALL_STATE(8043)] = 367559, - [SMALL_STATE(8044)] = 367588, - [SMALL_STATE(8045)] = 367617, - [SMALL_STATE(8046)] = 367640, - [SMALL_STATE(8047)] = 367663, - [SMALL_STATE(8048)] = 367682, - [SMALL_STATE(8049)] = 367705, - [SMALL_STATE(8050)] = 367724, - [SMALL_STATE(8051)] = 367749, - [SMALL_STATE(8052)] = 367768, - [SMALL_STATE(8053)] = 367787, - [SMALL_STATE(8054)] = 367810, - [SMALL_STATE(8055)] = 367839, - [SMALL_STATE(8056)] = 367858, - [SMALL_STATE(8057)] = 367887, - [SMALL_STATE(8058)] = 367910, - [SMALL_STATE(8059)] = 367933, - [SMALL_STATE(8060)] = 367954, - [SMALL_STATE(8061)] = 367975, - [SMALL_STATE(8062)] = 368000, - [SMALL_STATE(8063)] = 368023, - [SMALL_STATE(8064)] = 368052, - [SMALL_STATE(8065)] = 368071, - [SMALL_STATE(8066)] = 368100, - [SMALL_STATE(8067)] = 368127, - [SMALL_STATE(8068)] = 368150, - [SMALL_STATE(8069)] = 368171, - [SMALL_STATE(8070)] = 368190, - [SMALL_STATE(8071)] = 368221, - [SMALL_STATE(8072)] = 368244, - [SMALL_STATE(8073)] = 368269, - [SMALL_STATE(8074)] = 368287, - [SMALL_STATE(8075)] = 368305, - [SMALL_STATE(8076)] = 368329, - [SMALL_STATE(8077)] = 368349, - [SMALL_STATE(8078)] = 368367, - [SMALL_STATE(8079)] = 368385, - [SMALL_STATE(8080)] = 368405, - [SMALL_STATE(8081)] = 368433, - [SMALL_STATE(8082)] = 368461, - [SMALL_STATE(8083)] = 368489, - [SMALL_STATE(8084)] = 368511, - [SMALL_STATE(8085)] = 368537, - [SMALL_STATE(8086)] = 368555, - [SMALL_STATE(8087)] = 368575, - [SMALL_STATE(8088)] = 368593, - [SMALL_STATE(8089)] = 368611, - [SMALL_STATE(8090)] = 368635, - [SMALL_STATE(8091)] = 368653, - [SMALL_STATE(8092)] = 368677, - [SMALL_STATE(8093)] = 368701, - [SMALL_STATE(8094)] = 368727, - [SMALL_STATE(8095)] = 368753, - [SMALL_STATE(8096)] = 368771, - [SMALL_STATE(8097)] = 368789, - [SMALL_STATE(8098)] = 368807, - [SMALL_STATE(8099)] = 368825, - [SMALL_STATE(8100)] = 368847, - [SMALL_STATE(8101)] = 368865, - [SMALL_STATE(8102)] = 368883, - [SMALL_STATE(8103)] = 368905, - [SMALL_STATE(8104)] = 368933, - [SMALL_STATE(8105)] = 368959, - [SMALL_STATE(8106)] = 368983, - [SMALL_STATE(8107)] = 369007, - [SMALL_STATE(8108)] = 369025, - [SMALL_STATE(8109)] = 369047, - [SMALL_STATE(8110)] = 369065, - [SMALL_STATE(8111)] = 369087, - [SMALL_STATE(8112)] = 369109, - [SMALL_STATE(8113)] = 369133, - [SMALL_STATE(8114)] = 369151, - [SMALL_STATE(8115)] = 369175, - [SMALL_STATE(8116)] = 369195, - [SMALL_STATE(8117)] = 369219, - [SMALL_STATE(8118)] = 369237, - [SMALL_STATE(8119)] = 369257, - [SMALL_STATE(8120)] = 369281, - [SMALL_STATE(8121)] = 369299, - [SMALL_STATE(8122)] = 369325, - [SMALL_STATE(8123)] = 369351, - [SMALL_STATE(8124)] = 369371, - [SMALL_STATE(8125)] = 369395, - [SMALL_STATE(8126)] = 369413, - [SMALL_STATE(8127)] = 369437, - [SMALL_STATE(8128)] = 369461, - [SMALL_STATE(8129)] = 369485, - [SMALL_STATE(8130)] = 369503, - [SMALL_STATE(8131)] = 369529, - [SMALL_STATE(8132)] = 369555, - [SMALL_STATE(8133)] = 369573, - [SMALL_STATE(8134)] = 369591, - [SMALL_STATE(8135)] = 369609, - [SMALL_STATE(8136)] = 369627, - [SMALL_STATE(8137)] = 369649, - [SMALL_STATE(8138)] = 369671, - [SMALL_STATE(8139)] = 369689, - [SMALL_STATE(8140)] = 369709, - [SMALL_STATE(8141)] = 369733, - [SMALL_STATE(8142)] = 369751, - [SMALL_STATE(8143)] = 369777, - [SMALL_STATE(8144)] = 369803, - [SMALL_STATE(8145)] = 369825, - [SMALL_STATE(8146)] = 369853, - [SMALL_STATE(8147)] = 369877, - [SMALL_STATE(8148)] = 369905, - [SMALL_STATE(8149)] = 369923, - [SMALL_STATE(8150)] = 369943, - [SMALL_STATE(8151)] = 369963, - [SMALL_STATE(8152)] = 369991, - [SMALL_STATE(8153)] = 370013, - [SMALL_STATE(8154)] = 370031, - [SMALL_STATE(8155)] = 370049, - [SMALL_STATE(8156)] = 370067, - [SMALL_STATE(8157)] = 370089, - [SMALL_STATE(8158)] = 370107, - [SMALL_STATE(8159)] = 370131, - [SMALL_STATE(8160)] = 370155, - [SMALL_STATE(8161)] = 370177, - [SMALL_STATE(8162)] = 370195, - [SMALL_STATE(8163)] = 370217, - [SMALL_STATE(8164)] = 370239, - [SMALL_STATE(8165)] = 370257, - [SMALL_STATE(8166)] = 370275, - [SMALL_STATE(8167)] = 370293, - [SMALL_STATE(8168)] = 370311, - [SMALL_STATE(8169)] = 370339, - [SMALL_STATE(8170)] = 370357, - [SMALL_STATE(8171)] = 370375, - [SMALL_STATE(8172)] = 370393, - [SMALL_STATE(8173)] = 370417, - [SMALL_STATE(8174)] = 370435, - [SMALL_STATE(8175)] = 370461, - [SMALL_STATE(8176)] = 370481, - [SMALL_STATE(8177)] = 370501, - [SMALL_STATE(8178)] = 370527, - [SMALL_STATE(8179)] = 370547, - [SMALL_STATE(8180)] = 370569, - [SMALL_STATE(8181)] = 370595, - [SMALL_STATE(8182)] = 370619, - [SMALL_STATE(8183)] = 370643, - [SMALL_STATE(8184)] = 370665, - [SMALL_STATE(8185)] = 370685, - [SMALL_STATE(8186)] = 370705, - [SMALL_STATE(8187)] = 370731, - [SMALL_STATE(8188)] = 370751, - [SMALL_STATE(8189)] = 370769, - [SMALL_STATE(8190)] = 370787, - [SMALL_STATE(8191)] = 370815, - [SMALL_STATE(8192)] = 370835, - [SMALL_STATE(8193)] = 370853, - [SMALL_STATE(8194)] = 370873, - [SMALL_STATE(8195)] = 370899, - [SMALL_STATE(8196)] = 370919, - [SMALL_STATE(8197)] = 370941, - [SMALL_STATE(8198)] = 370965, - [SMALL_STATE(8199)] = 370991, - [SMALL_STATE(8200)] = 371019, - [SMALL_STATE(8201)] = 371039, - [SMALL_STATE(8202)] = 371059, - [SMALL_STATE(8203)] = 371087, - [SMALL_STATE(8204)] = 371111, - [SMALL_STATE(8205)] = 371131, - [SMALL_STATE(8206)] = 371155, - [SMALL_STATE(8207)] = 371173, - [SMALL_STATE(8208)] = 371199, - [SMALL_STATE(8209)] = 371223, - [SMALL_STATE(8210)] = 371249, - [SMALL_STATE(8211)] = 371275, - [SMALL_STATE(8212)] = 371293, - [SMALL_STATE(8213)] = 371313, - [SMALL_STATE(8214)] = 371335, - [SMALL_STATE(8215)] = 371353, - [SMALL_STATE(8216)] = 371371, - [SMALL_STATE(8217)] = 371395, - [SMALL_STATE(8218)] = 371413, - [SMALL_STATE(8219)] = 371435, - [SMALL_STATE(8220)] = 371461, - [SMALL_STATE(8221)] = 371479, - [SMALL_STATE(8222)] = 371499, - [SMALL_STATE(8223)] = 371517, - [SMALL_STATE(8224)] = 371543, - [SMALL_STATE(8225)] = 371567, - [SMALL_STATE(8226)] = 371587, - [SMALL_STATE(8227)] = 371613, - [SMALL_STATE(8228)] = 371637, - [SMALL_STATE(8229)] = 371663, - [SMALL_STATE(8230)] = 371685, - [SMALL_STATE(8231)] = 371703, - [SMALL_STATE(8232)] = 371721, - [SMALL_STATE(8233)] = 371747, - [SMALL_STATE(8234)] = 371765, - [SMALL_STATE(8235)] = 371783, - [SMALL_STATE(8236)] = 371809, - [SMALL_STATE(8237)] = 371827, - [SMALL_STATE(8238)] = 371845, - [SMALL_STATE(8239)] = 371867, - [SMALL_STATE(8240)] = 371887, - [SMALL_STATE(8241)] = 371911, - [SMALL_STATE(8242)] = 371929, - [SMALL_STATE(8243)] = 371947, - [SMALL_STATE(8244)] = 371973, - [SMALL_STATE(8245)] = 371999, - [SMALL_STATE(8246)] = 372017, - [SMALL_STATE(8247)] = 372037, - [SMALL_STATE(8248)] = 372059, - [SMALL_STATE(8249)] = 372077, - [SMALL_STATE(8250)] = 372101, - [SMALL_STATE(8251)] = 372119, - [SMALL_STATE(8252)] = 372139, - [SMALL_STATE(8253)] = 372165, - [SMALL_STATE(8254)] = 372189, - [SMALL_STATE(8255)] = 372207, - [SMALL_STATE(8256)] = 372231, - [SMALL_STATE(8257)] = 372251, - [SMALL_STATE(8258)] = 372271, - [SMALL_STATE(8259)] = 372289, - [SMALL_STATE(8260)] = 372311, - [SMALL_STATE(8261)] = 372331, - [SMALL_STATE(8262)] = 372355, - [SMALL_STATE(8263)] = 372377, - [SMALL_STATE(8264)] = 372399, - [SMALL_STATE(8265)] = 372417, - [SMALL_STATE(8266)] = 372437, - [SMALL_STATE(8267)] = 372455, - [SMALL_STATE(8268)] = 372481, - [SMALL_STATE(8269)] = 372499, - [SMALL_STATE(8270)] = 372521, - [SMALL_STATE(8271)] = 372543, - [SMALL_STATE(8272)] = 372565, - [SMALL_STATE(8273)] = 372589, - [SMALL_STATE(8274)] = 372615, - [SMALL_STATE(8275)] = 372637, - [SMALL_STATE(8276)] = 372663, - [SMALL_STATE(8277)] = 372691, - [SMALL_STATE(8278)] = 372709, - [SMALL_STATE(8279)] = 372727, - [SMALL_STATE(8280)] = 372751, - [SMALL_STATE(8281)] = 372769, - [SMALL_STATE(8282)] = 372787, - [SMALL_STATE(8283)] = 372809, - [SMALL_STATE(8284)] = 372827, - [SMALL_STATE(8285)] = 372851, - [SMALL_STATE(8286)] = 372873, - [SMALL_STATE(8287)] = 372893, - [SMALL_STATE(8288)] = 372919, - [SMALL_STATE(8289)] = 372941, - [SMALL_STATE(8290)] = 372959, - [SMALL_STATE(8291)] = 372977, - [SMALL_STATE(8292)] = 372999, - [SMALL_STATE(8293)] = 373025, - [SMALL_STATE(8294)] = 373047, - [SMALL_STATE(8295)] = 373069, - [SMALL_STATE(8296)] = 373091, - [SMALL_STATE(8297)] = 373117, - [SMALL_STATE(8298)] = 373139, - [SMALL_STATE(8299)] = 373165, - [SMALL_STATE(8300)] = 373187, - [SMALL_STATE(8301)] = 373211, - [SMALL_STATE(8302)] = 373239, - [SMALL_STATE(8303)] = 373265, - [SMALL_STATE(8304)] = 373287, - [SMALL_STATE(8305)] = 373315, - [SMALL_STATE(8306)] = 373333, - [SMALL_STATE(8307)] = 373359, - [SMALL_STATE(8308)] = 373379, - [SMALL_STATE(8309)] = 373403, - [SMALL_STATE(8310)] = 373429, - [SMALL_STATE(8311)] = 373449, - [SMALL_STATE(8312)] = 373467, - [SMALL_STATE(8313)] = 373489, - [SMALL_STATE(8314)] = 373507, - [SMALL_STATE(8315)] = 373533, - [SMALL_STATE(8316)] = 373553, - [SMALL_STATE(8317)] = 373579, - [SMALL_STATE(8318)] = 373603, - [SMALL_STATE(8319)] = 373627, - [SMALL_STATE(8320)] = 373650, - [SMALL_STATE(8321)] = 373667, - [SMALL_STATE(8322)] = 373684, - [SMALL_STATE(8323)] = 373701, - [SMALL_STATE(8324)] = 373718, - [SMALL_STATE(8325)] = 373735, - [SMALL_STATE(8326)] = 373752, - [SMALL_STATE(8327)] = 373769, - [SMALL_STATE(8328)] = 373786, - [SMALL_STATE(8329)] = 373803, - [SMALL_STATE(8330)] = 373820, - [SMALL_STATE(8331)] = 373837, - [SMALL_STATE(8332)] = 373854, - [SMALL_STATE(8333)] = 373877, - [SMALL_STATE(8334)] = 373894, - [SMALL_STATE(8335)] = 373913, - [SMALL_STATE(8336)] = 373936, - [SMALL_STATE(8337)] = 373959, - [SMALL_STATE(8338)] = 373976, - [SMALL_STATE(8339)] = 373993, - [SMALL_STATE(8340)] = 374010, - [SMALL_STATE(8341)] = 374027, - [SMALL_STATE(8342)] = 374044, - [SMALL_STATE(8343)] = 374061, - [SMALL_STATE(8344)] = 374078, - [SMALL_STATE(8345)] = 374095, - [SMALL_STATE(8346)] = 374112, - [SMALL_STATE(8347)] = 374131, - [SMALL_STATE(8348)] = 374148, - [SMALL_STATE(8349)] = 374165, - [SMALL_STATE(8350)] = 374188, - [SMALL_STATE(8351)] = 374205, - [SMALL_STATE(8352)] = 374222, - [SMALL_STATE(8353)] = 374239, - [SMALL_STATE(8354)] = 374256, - [SMALL_STATE(8355)] = 374273, - [SMALL_STATE(8356)] = 374290, - [SMALL_STATE(8357)] = 374307, - [SMALL_STATE(8358)] = 374324, - [SMALL_STATE(8359)] = 374341, - [SMALL_STATE(8360)] = 374358, - [SMALL_STATE(8361)] = 374375, - [SMALL_STATE(8362)] = 374398, - [SMALL_STATE(8363)] = 374421, - [SMALL_STATE(8364)] = 374438, - [SMALL_STATE(8365)] = 374461, - [SMALL_STATE(8366)] = 374482, - [SMALL_STATE(8367)] = 374499, - [SMALL_STATE(8368)] = 374516, - [SMALL_STATE(8369)] = 374533, - [SMALL_STATE(8370)] = 374552, - [SMALL_STATE(8371)] = 374571, - [SMALL_STATE(8372)] = 374588, - [SMALL_STATE(8373)] = 374607, - [SMALL_STATE(8374)] = 374626, - [SMALL_STATE(8375)] = 374647, - [SMALL_STATE(8376)] = 374664, - [SMALL_STATE(8377)] = 374683, - [SMALL_STATE(8378)] = 374700, - [SMALL_STATE(8379)] = 374723, - [SMALL_STATE(8380)] = 374742, - [SMALL_STATE(8381)] = 374765, - [SMALL_STATE(8382)] = 374784, - [SMALL_STATE(8383)] = 374801, - [SMALL_STATE(8384)] = 374818, - [SMALL_STATE(8385)] = 374835, - [SMALL_STATE(8386)] = 374858, - [SMALL_STATE(8387)] = 374875, - [SMALL_STATE(8388)] = 374898, - [SMALL_STATE(8389)] = 374921, - [SMALL_STATE(8390)] = 374944, - [SMALL_STATE(8391)] = 374967, - [SMALL_STATE(8392)] = 374990, - [SMALL_STATE(8393)] = 375007, - [SMALL_STATE(8394)] = 375024, - [SMALL_STATE(8395)] = 375045, - [SMALL_STATE(8396)] = 375068, - [SMALL_STATE(8397)] = 375091, - [SMALL_STATE(8398)] = 375114, - [SMALL_STATE(8399)] = 375135, - [SMALL_STATE(8400)] = 375154, - [SMALL_STATE(8401)] = 375173, - [SMALL_STATE(8402)] = 375192, - [SMALL_STATE(8403)] = 375213, - [SMALL_STATE(8404)] = 375232, - [SMALL_STATE(8405)] = 375257, - [SMALL_STATE(8406)] = 375276, - [SMALL_STATE(8407)] = 375299, - [SMALL_STATE(8408)] = 375322, - [SMALL_STATE(8409)] = 375345, - [SMALL_STATE(8410)] = 375364, - [SMALL_STATE(8411)] = 375387, - [SMALL_STATE(8412)] = 375404, - [SMALL_STATE(8413)] = 375427, - [SMALL_STATE(8414)] = 375450, - [SMALL_STATE(8415)] = 375473, - [SMALL_STATE(8416)] = 375496, - [SMALL_STATE(8417)] = 375521, - [SMALL_STATE(8418)] = 375542, - [SMALL_STATE(8419)] = 375563, - [SMALL_STATE(8420)] = 375586, - [SMALL_STATE(8421)] = 375609, - [SMALL_STATE(8422)] = 375628, - [SMALL_STATE(8423)] = 375649, - [SMALL_STATE(8424)] = 375672, - [SMALL_STATE(8425)] = 375689, - [SMALL_STATE(8426)] = 375712, - [SMALL_STATE(8427)] = 375733, - [SMALL_STATE(8428)] = 375754, - [SMALL_STATE(8429)] = 375775, - [SMALL_STATE(8430)] = 375792, - [SMALL_STATE(8431)] = 375807, - [SMALL_STATE(8432)] = 375828, - [SMALL_STATE(8433)] = 375851, - [SMALL_STATE(8434)] = 375868, - [SMALL_STATE(8435)] = 375885, - [SMALL_STATE(8436)] = 375908, - [SMALL_STATE(8437)] = 375933, - [SMALL_STATE(8438)] = 375956, - [SMALL_STATE(8439)] = 375979, - [SMALL_STATE(8440)] = 375996, - [SMALL_STATE(8441)] = 376017, - [SMALL_STATE(8442)] = 376034, - [SMALL_STATE(8443)] = 376051, - [SMALL_STATE(8444)] = 376068, - [SMALL_STATE(8445)] = 376089, - [SMALL_STATE(8446)] = 376114, - [SMALL_STATE(8447)] = 376131, - [SMALL_STATE(8448)] = 376154, - [SMALL_STATE(8449)] = 376171, - [SMALL_STATE(8450)] = 376192, - [SMALL_STATE(8451)] = 376209, - [SMALL_STATE(8452)] = 376234, - [SMALL_STATE(8453)] = 376251, - [SMALL_STATE(8454)] = 376272, - [SMALL_STATE(8455)] = 376295, - [SMALL_STATE(8456)] = 376318, - [SMALL_STATE(8457)] = 376343, - [SMALL_STATE(8458)] = 376364, - [SMALL_STATE(8459)] = 376381, - [SMALL_STATE(8460)] = 376398, - [SMALL_STATE(8461)] = 376417, - [SMALL_STATE(8462)] = 376436, - [SMALL_STATE(8463)] = 376453, - [SMALL_STATE(8464)] = 376470, - [SMALL_STATE(8465)] = 376487, - [SMALL_STATE(8466)] = 376510, - [SMALL_STATE(8467)] = 376533, - [SMALL_STATE(8468)] = 376550, - [SMALL_STATE(8469)] = 376573, - [SMALL_STATE(8470)] = 376596, - [SMALL_STATE(8471)] = 376613, - [SMALL_STATE(8472)] = 376628, - [SMALL_STATE(8473)] = 376651, - [SMALL_STATE(8474)] = 376668, - [SMALL_STATE(8475)] = 376691, - [SMALL_STATE(8476)] = 376708, - [SMALL_STATE(8477)] = 376733, - [SMALL_STATE(8478)] = 376750, - [SMALL_STATE(8479)] = 376773, - [SMALL_STATE(8480)] = 376794, - [SMALL_STATE(8481)] = 376815, - [SMALL_STATE(8482)] = 376832, - [SMALL_STATE(8483)] = 376857, - [SMALL_STATE(8484)] = 376874, - [SMALL_STATE(8485)] = 376891, - [SMALL_STATE(8486)] = 376912, - [SMALL_STATE(8487)] = 376929, - [SMALL_STATE(8488)] = 376946, - [SMALL_STATE(8489)] = 376963, - [SMALL_STATE(8490)] = 376980, - [SMALL_STATE(8491)] = 377003, - [SMALL_STATE(8492)] = 377026, - [SMALL_STATE(8493)] = 377045, - [SMALL_STATE(8494)] = 377062, - [SMALL_STATE(8495)] = 377085, - [SMALL_STATE(8496)] = 377102, - [SMALL_STATE(8497)] = 377127, - [SMALL_STATE(8498)] = 377150, - [SMALL_STATE(8499)] = 377173, - [SMALL_STATE(8500)] = 377190, - [SMALL_STATE(8501)] = 377207, - [SMALL_STATE(8502)] = 377224, - [SMALL_STATE(8503)] = 377241, - [SMALL_STATE(8504)] = 377258, - [SMALL_STATE(8505)] = 377279, - [SMALL_STATE(8506)] = 377302, - [SMALL_STATE(8507)] = 377327, - [SMALL_STATE(8508)] = 377350, - [SMALL_STATE(8509)] = 377371, - [SMALL_STATE(8510)] = 377386, - [SMALL_STATE(8511)] = 377401, - [SMALL_STATE(8512)] = 377416, - [SMALL_STATE(8513)] = 377431, - [SMALL_STATE(8514)] = 377452, - [SMALL_STATE(8515)] = 377475, - [SMALL_STATE(8516)] = 377498, - [SMALL_STATE(8517)] = 377515, - [SMALL_STATE(8518)] = 377532, - [SMALL_STATE(8519)] = 377555, - [SMALL_STATE(8520)] = 377572, - [SMALL_STATE(8521)] = 377595, - [SMALL_STATE(8522)] = 377618, - [SMALL_STATE(8523)] = 377635, - [SMALL_STATE(8524)] = 377652, - [SMALL_STATE(8525)] = 377675, - [SMALL_STATE(8526)] = 377700, - [SMALL_STATE(8527)] = 377725, - [SMALL_STATE(8528)] = 377742, - [SMALL_STATE(8529)] = 377765, - [SMALL_STATE(8530)] = 377790, - [SMALL_STATE(8531)] = 377815, - [SMALL_STATE(8532)] = 377838, - [SMALL_STATE(8533)] = 377857, - [SMALL_STATE(8534)] = 377876, - [SMALL_STATE(8535)] = 377895, - [SMALL_STATE(8536)] = 377918, - [SMALL_STATE(8537)] = 377941, - [SMALL_STATE(8538)] = 377964, - [SMALL_STATE(8539)] = 377987, - [SMALL_STATE(8540)] = 378006, - [SMALL_STATE(8541)] = 378029, - [SMALL_STATE(8542)] = 378046, - [SMALL_STATE(8543)] = 378069, - [SMALL_STATE(8544)] = 378092, - [SMALL_STATE(8545)] = 378113, - [SMALL_STATE(8546)] = 378136, - [SMALL_STATE(8547)] = 378157, - [SMALL_STATE(8548)] = 378180, - [SMALL_STATE(8549)] = 378203, - [SMALL_STATE(8550)] = 378226, - [SMALL_STATE(8551)] = 378243, - [SMALL_STATE(8552)] = 378266, - [SMALL_STATE(8553)] = 378289, - [SMALL_STATE(8554)] = 378312, - [SMALL_STATE(8555)] = 378335, - [SMALL_STATE(8556)] = 378360, - [SMALL_STATE(8557)] = 378383, - [SMALL_STATE(8558)] = 378402, - [SMALL_STATE(8559)] = 378421, - [SMALL_STATE(8560)] = 378440, - [SMALL_STATE(8561)] = 378463, - [SMALL_STATE(8562)] = 378484, - [SMALL_STATE(8563)] = 378505, - [SMALL_STATE(8564)] = 378526, - [SMALL_STATE(8565)] = 378549, - [SMALL_STATE(8566)] = 378574, - [SMALL_STATE(8567)] = 378599, - [SMALL_STATE(8568)] = 378622, - [SMALL_STATE(8569)] = 378647, - [SMALL_STATE(8570)] = 378670, - [SMALL_STATE(8571)] = 378693, - [SMALL_STATE(8572)] = 378716, - [SMALL_STATE(8573)] = 378737, - [SMALL_STATE(8574)] = 378758, - [SMALL_STATE(8575)] = 378779, - [SMALL_STATE(8576)] = 378794, - [SMALL_STATE(8577)] = 378811, - [SMALL_STATE(8578)] = 378828, - [SMALL_STATE(8579)] = 378851, - [SMALL_STATE(8580)] = 378866, - [SMALL_STATE(8581)] = 378881, - [SMALL_STATE(8582)] = 378898, - [SMALL_STATE(8583)] = 378913, - [SMALL_STATE(8584)] = 378930, - [SMALL_STATE(8585)] = 378947, - [SMALL_STATE(8586)] = 378966, - [SMALL_STATE(8587)] = 378985, - [SMALL_STATE(8588)] = 379001, - [SMALL_STATE(8589)] = 379021, - [SMALL_STATE(8590)] = 379043, - [SMALL_STATE(8591)] = 379057, - [SMALL_STATE(8592)] = 379079, - [SMALL_STATE(8593)] = 379101, - [SMALL_STATE(8594)] = 379121, - [SMALL_STATE(8595)] = 379143, - [SMALL_STATE(8596)] = 379165, - [SMALL_STATE(8597)] = 379187, - [SMALL_STATE(8598)] = 379201, - [SMALL_STATE(8599)] = 379215, - [SMALL_STATE(8600)] = 379237, - [SMALL_STATE(8601)] = 379255, - [SMALL_STATE(8602)] = 379275, - [SMALL_STATE(8603)] = 379297, - [SMALL_STATE(8604)] = 379319, - [SMALL_STATE(8605)] = 379341, - [SMALL_STATE(8606)] = 379361, - [SMALL_STATE(8607)] = 379375, - [SMALL_STATE(8608)] = 379389, - [SMALL_STATE(8609)] = 379409, - [SMALL_STATE(8610)] = 379423, - [SMALL_STATE(8611)] = 379443, - [SMALL_STATE(8612)] = 379463, - [SMALL_STATE(8613)] = 379485, - [SMALL_STATE(8614)] = 379507, - [SMALL_STATE(8615)] = 379529, - [SMALL_STATE(8616)] = 379549, - [SMALL_STATE(8617)] = 379571, - [SMALL_STATE(8618)] = 379593, - [SMALL_STATE(8619)] = 379613, - [SMALL_STATE(8620)] = 379635, - [SMALL_STATE(8621)] = 379657, - [SMALL_STATE(8622)] = 379679, - [SMALL_STATE(8623)] = 379699, - [SMALL_STATE(8624)] = 379713, - [SMALL_STATE(8625)] = 379733, - [SMALL_STATE(8626)] = 379751, - [SMALL_STATE(8627)] = 379773, - [SMALL_STATE(8628)] = 379791, - [SMALL_STATE(8629)] = 379811, - [SMALL_STATE(8630)] = 379833, - [SMALL_STATE(8631)] = 379855, - [SMALL_STATE(8632)] = 379869, - [SMALL_STATE(8633)] = 379889, - [SMALL_STATE(8634)] = 379907, - [SMALL_STATE(8635)] = 379929, - [SMALL_STATE(8636)] = 379949, - [SMALL_STATE(8637)] = 379969, - [SMALL_STATE(8638)] = 379989, - [SMALL_STATE(8639)] = 380009, - [SMALL_STATE(8640)] = 380029, - [SMALL_STATE(8641)] = 380049, - [SMALL_STATE(8642)] = 380069, - [SMALL_STATE(8643)] = 380089, - [SMALL_STATE(8644)] = 380109, - [SMALL_STATE(8645)] = 380129, - [SMALL_STATE(8646)] = 380151, - [SMALL_STATE(8647)] = 380171, - [SMALL_STATE(8648)] = 380191, - [SMALL_STATE(8649)] = 380211, - [SMALL_STATE(8650)] = 380231, - [SMALL_STATE(8651)] = 380253, - [SMALL_STATE(8652)] = 380275, - [SMALL_STATE(8653)] = 380293, - [SMALL_STATE(8654)] = 380315, - [SMALL_STATE(8655)] = 380333, - [SMALL_STATE(8656)] = 380353, - [SMALL_STATE(8657)] = 380373, - [SMALL_STATE(8658)] = 380393, - [SMALL_STATE(8659)] = 380415, - [SMALL_STATE(8660)] = 380433, - [SMALL_STATE(8661)] = 380451, - [SMALL_STATE(8662)] = 380473, - [SMALL_STATE(8663)] = 380495, - [SMALL_STATE(8664)] = 380511, - [SMALL_STATE(8665)] = 380527, - [SMALL_STATE(8666)] = 380543, - [SMALL_STATE(8667)] = 380559, - [SMALL_STATE(8668)] = 380573, - [SMALL_STATE(8669)] = 380595, - [SMALL_STATE(8670)] = 380615, - [SMALL_STATE(8671)] = 380635, - [SMALL_STATE(8672)] = 380655, - [SMALL_STATE(8673)] = 380669, - [SMALL_STATE(8674)] = 380683, - [SMALL_STATE(8675)] = 380699, - [SMALL_STATE(8676)] = 380715, - [SMALL_STATE(8677)] = 380733, - [SMALL_STATE(8678)] = 380747, - [SMALL_STATE(8679)] = 380761, - [SMALL_STATE(8680)] = 380775, - [SMALL_STATE(8681)] = 380789, - [SMALL_STATE(8682)] = 380811, - [SMALL_STATE(8683)] = 380825, - [SMALL_STATE(8684)] = 380839, - [SMALL_STATE(8685)] = 380861, - [SMALL_STATE(8686)] = 380881, - [SMALL_STATE(8687)] = 380903, - [SMALL_STATE(8688)] = 380925, - [SMALL_STATE(8689)] = 380939, - [SMALL_STATE(8690)] = 380953, - [SMALL_STATE(8691)] = 380975, - [SMALL_STATE(8692)] = 380997, - [SMALL_STATE(8693)] = 381011, - [SMALL_STATE(8694)] = 381025, - [SMALL_STATE(8695)] = 381039, - [SMALL_STATE(8696)] = 381053, - [SMALL_STATE(8697)] = 381067, - [SMALL_STATE(8698)] = 381081, - [SMALL_STATE(8699)] = 381101, - [SMALL_STATE(8700)] = 381115, - [SMALL_STATE(8701)] = 381129, - [SMALL_STATE(8702)] = 381143, - [SMALL_STATE(8703)] = 381157, - [SMALL_STATE(8704)] = 381177, - [SMALL_STATE(8705)] = 381199, - [SMALL_STATE(8706)] = 381213, - [SMALL_STATE(8707)] = 381233, - [SMALL_STATE(8708)] = 381253, - [SMALL_STATE(8709)] = 381267, - [SMALL_STATE(8710)] = 381287, - [SMALL_STATE(8711)] = 381307, - [SMALL_STATE(8712)] = 381321, - [SMALL_STATE(8713)] = 381335, - [SMALL_STATE(8714)] = 381349, - [SMALL_STATE(8715)] = 381369, - [SMALL_STATE(8716)] = 381383, - [SMALL_STATE(8717)] = 381397, - [SMALL_STATE(8718)] = 381419, - [SMALL_STATE(8719)] = 381433, - [SMALL_STATE(8720)] = 381447, - [SMALL_STATE(8721)] = 381461, - [SMALL_STATE(8722)] = 381483, - [SMALL_STATE(8723)] = 381497, - [SMALL_STATE(8724)] = 381511, - [SMALL_STATE(8725)] = 381525, - [SMALL_STATE(8726)] = 381539, - [SMALL_STATE(8727)] = 381553, - [SMALL_STATE(8728)] = 381567, - [SMALL_STATE(8729)] = 381581, - [SMALL_STATE(8730)] = 381595, - [SMALL_STATE(8731)] = 381609, - [SMALL_STATE(8732)] = 381623, - [SMALL_STATE(8733)] = 381637, - [SMALL_STATE(8734)] = 381653, - [SMALL_STATE(8735)] = 381667, - [SMALL_STATE(8736)] = 381681, - [SMALL_STATE(8737)] = 381695, - [SMALL_STATE(8738)] = 381709, - [SMALL_STATE(8739)] = 381723, - [SMALL_STATE(8740)] = 381737, - [SMALL_STATE(8741)] = 381751, - [SMALL_STATE(8742)] = 381769, - [SMALL_STATE(8743)] = 381783, - [SMALL_STATE(8744)] = 381803, - [SMALL_STATE(8745)] = 381823, - [SMALL_STATE(8746)] = 381845, - [SMALL_STATE(8747)] = 381865, - [SMALL_STATE(8748)] = 381885, - [SMALL_STATE(8749)] = 381905, - [SMALL_STATE(8750)] = 381923, - [SMALL_STATE(8751)] = 381939, - [SMALL_STATE(8752)] = 381955, - [SMALL_STATE(8753)] = 381971, - [SMALL_STATE(8754)] = 381993, - [SMALL_STATE(8755)] = 382009, - [SMALL_STATE(8756)] = 382025, - [SMALL_STATE(8757)] = 382047, - [SMALL_STATE(8758)] = 382063, - [SMALL_STATE(8759)] = 382079, - [SMALL_STATE(8760)] = 382095, - [SMALL_STATE(8761)] = 382117, - [SMALL_STATE(8762)] = 382133, - [SMALL_STATE(8763)] = 382153, - [SMALL_STATE(8764)] = 382169, - [SMALL_STATE(8765)] = 382189, - [SMALL_STATE(8766)] = 382205, - [SMALL_STATE(8767)] = 382227, - [SMALL_STATE(8768)] = 382243, - [SMALL_STATE(8769)] = 382265, - [SMALL_STATE(8770)] = 382281, - [SMALL_STATE(8771)] = 382299, - [SMALL_STATE(8772)] = 382317, - [SMALL_STATE(8773)] = 382333, - [SMALL_STATE(8774)] = 382355, - [SMALL_STATE(8775)] = 382371, - [SMALL_STATE(8776)] = 382387, - [SMALL_STATE(8777)] = 382407, - [SMALL_STATE(8778)] = 382423, - [SMALL_STATE(8779)] = 382439, - [SMALL_STATE(8780)] = 382459, - [SMALL_STATE(8781)] = 382475, - [SMALL_STATE(8782)] = 382491, - [SMALL_STATE(8783)] = 382507, - [SMALL_STATE(8784)] = 382523, - [SMALL_STATE(8785)] = 382539, - [SMALL_STATE(8786)] = 382555, - [SMALL_STATE(8787)] = 382571, - [SMALL_STATE(8788)] = 382587, - [SMALL_STATE(8789)] = 382603, - [SMALL_STATE(8790)] = 382619, - [SMALL_STATE(8791)] = 382635, - [SMALL_STATE(8792)] = 382655, - [SMALL_STATE(8793)] = 382671, - [SMALL_STATE(8794)] = 382691, - [SMALL_STATE(8795)] = 382711, - [SMALL_STATE(8796)] = 382727, - [SMALL_STATE(8797)] = 382749, - [SMALL_STATE(8798)] = 382765, - [SMALL_STATE(8799)] = 382787, - [SMALL_STATE(8800)] = 382809, - [SMALL_STATE(8801)] = 382825, - [SMALL_STATE(8802)] = 382847, - [SMALL_STATE(8803)] = 382863, - [SMALL_STATE(8804)] = 382879, - [SMALL_STATE(8805)] = 382901, - [SMALL_STATE(8806)] = 382923, - [SMALL_STATE(8807)] = 382939, - [SMALL_STATE(8808)] = 382953, - [SMALL_STATE(8809)] = 382969, - [SMALL_STATE(8810)] = 382985, - [SMALL_STATE(8811)] = 383001, - [SMALL_STATE(8812)] = 383015, - [SMALL_STATE(8813)] = 383035, - [SMALL_STATE(8814)] = 383051, - [SMALL_STATE(8815)] = 383065, - [SMALL_STATE(8816)] = 383085, - [SMALL_STATE(8817)] = 383101, - [SMALL_STATE(8818)] = 383117, - [SMALL_STATE(8819)] = 383131, - [SMALL_STATE(8820)] = 383151, - [SMALL_STATE(8821)] = 383169, - [SMALL_STATE(8822)] = 383185, - [SMALL_STATE(8823)] = 383201, - [SMALL_STATE(8824)] = 383221, - [SMALL_STATE(8825)] = 383237, - [SMALL_STATE(8826)] = 383259, - [SMALL_STATE(8827)] = 383279, - [SMALL_STATE(8828)] = 383295, - [SMALL_STATE(8829)] = 383317, - [SMALL_STATE(8830)] = 383333, - [SMALL_STATE(8831)] = 383349, - [SMALL_STATE(8832)] = 383365, - [SMALL_STATE(8833)] = 383381, - [SMALL_STATE(8834)] = 383401, - [SMALL_STATE(8835)] = 383417, - [SMALL_STATE(8836)] = 383439, - [SMALL_STATE(8837)] = 383455, - [SMALL_STATE(8838)] = 383477, - [SMALL_STATE(8839)] = 383493, - [SMALL_STATE(8840)] = 383513, - [SMALL_STATE(8841)] = 383529, - [SMALL_STATE(8842)] = 383551, - [SMALL_STATE(8843)] = 383567, - [SMALL_STATE(8844)] = 383583, - [SMALL_STATE(8845)] = 383603, - [SMALL_STATE(8846)] = 383623, - [SMALL_STATE(8847)] = 383639, - [SMALL_STATE(8848)] = 383659, - [SMALL_STATE(8849)] = 383675, - [SMALL_STATE(8850)] = 383691, - [SMALL_STATE(8851)] = 383707, - [SMALL_STATE(8852)] = 383729, - [SMALL_STATE(8853)] = 383745, - [SMALL_STATE(8854)] = 383761, - [SMALL_STATE(8855)] = 383777, - [SMALL_STATE(8856)] = 383799, - [SMALL_STATE(8857)] = 383815, - [SMALL_STATE(8858)] = 383831, - [SMALL_STATE(8859)] = 383851, - [SMALL_STATE(8860)] = 383867, - [SMALL_STATE(8861)] = 383889, - [SMALL_STATE(8862)] = 383905, - [SMALL_STATE(8863)] = 383921, - [SMALL_STATE(8864)] = 383937, - [SMALL_STATE(8865)] = 383951, - [SMALL_STATE(8866)] = 383973, - [SMALL_STATE(8867)] = 383989, - [SMALL_STATE(8868)] = 384005, - [SMALL_STATE(8869)] = 384023, - [SMALL_STATE(8870)] = 384043, - [SMALL_STATE(8871)] = 384059, - [SMALL_STATE(8872)] = 384075, - [SMALL_STATE(8873)] = 384093, - [SMALL_STATE(8874)] = 384111, - [SMALL_STATE(8875)] = 384125, - [SMALL_STATE(8876)] = 384145, - [SMALL_STATE(8877)] = 384159, - [SMALL_STATE(8878)] = 384175, - [SMALL_STATE(8879)] = 384189, - [SMALL_STATE(8880)] = 384203, - [SMALL_STATE(8881)] = 384217, - [SMALL_STATE(8882)] = 384233, - [SMALL_STATE(8883)] = 384249, - [SMALL_STATE(8884)] = 384265, - [SMALL_STATE(8885)] = 384281, - [SMALL_STATE(8886)] = 384297, - [SMALL_STATE(8887)] = 384311, - [SMALL_STATE(8888)] = 384327, - [SMALL_STATE(8889)] = 384343, - [SMALL_STATE(8890)] = 384359, - [SMALL_STATE(8891)] = 384375, - [SMALL_STATE(8892)] = 384389, - [SMALL_STATE(8893)] = 384405, - [SMALL_STATE(8894)] = 384421, - [SMALL_STATE(8895)] = 384435, - [SMALL_STATE(8896)] = 384451, - [SMALL_STATE(8897)] = 384473, - [SMALL_STATE(8898)] = 384491, - [SMALL_STATE(8899)] = 384511, - [SMALL_STATE(8900)] = 384529, - [SMALL_STATE(8901)] = 384547, - [SMALL_STATE(8902)] = 384565, - [SMALL_STATE(8903)] = 384581, - [SMALL_STATE(8904)] = 384601, - [SMALL_STATE(8905)] = 384619, - [SMALL_STATE(8906)] = 384641, - [SMALL_STATE(8907)] = 384663, - [SMALL_STATE(8908)] = 384685, - [SMALL_STATE(8909)] = 384707, - [SMALL_STATE(8910)] = 384729, - [SMALL_STATE(8911)] = 384749, - [SMALL_STATE(8912)] = 384769, - [SMALL_STATE(8913)] = 384785, - [SMALL_STATE(8914)] = 384801, - [SMALL_STATE(8915)] = 384821, - [SMALL_STATE(8916)] = 384837, - [SMALL_STATE(8917)] = 384853, - [SMALL_STATE(8918)] = 384869, - [SMALL_STATE(8919)] = 384885, - [SMALL_STATE(8920)] = 384901, - [SMALL_STATE(8921)] = 384917, - [SMALL_STATE(8922)] = 384933, - [SMALL_STATE(8923)] = 384949, - [SMALL_STATE(8924)] = 384963, - [SMALL_STATE(8925)] = 384977, - [SMALL_STATE(8926)] = 384993, - [SMALL_STATE(8927)] = 385009, - [SMALL_STATE(8928)] = 385025, - [SMALL_STATE(8929)] = 385041, - [SMALL_STATE(8930)] = 385061, - [SMALL_STATE(8931)] = 385077, - [SMALL_STATE(8932)] = 385097, - [SMALL_STATE(8933)] = 385113, - [SMALL_STATE(8934)] = 385133, - [SMALL_STATE(8935)] = 385153, - [SMALL_STATE(8936)] = 385175, - [SMALL_STATE(8937)] = 385191, - [SMALL_STATE(8938)] = 385205, - [SMALL_STATE(8939)] = 385225, - [SMALL_STATE(8940)] = 385245, - [SMALL_STATE(8941)] = 385261, - [SMALL_STATE(8942)] = 385283, - [SMALL_STATE(8943)] = 385299, - [SMALL_STATE(8944)] = 385315, - [SMALL_STATE(8945)] = 385335, - [SMALL_STATE(8946)] = 385351, - [SMALL_STATE(8947)] = 385371, - [SMALL_STATE(8948)] = 385387, - [SMALL_STATE(8949)] = 385407, - [SMALL_STATE(8950)] = 385423, - [SMALL_STATE(8951)] = 385439, - [SMALL_STATE(8952)] = 385459, - [SMALL_STATE(8953)] = 385479, - [SMALL_STATE(8954)] = 385495, - [SMALL_STATE(8955)] = 385509, - [SMALL_STATE(8956)] = 385527, - [SMALL_STATE(8957)] = 385543, - [SMALL_STATE(8958)] = 385563, - [SMALL_STATE(8959)] = 385579, - [SMALL_STATE(8960)] = 385595, - [SMALL_STATE(8961)] = 385611, - [SMALL_STATE(8962)] = 385631, - [SMALL_STATE(8963)] = 385647, - [SMALL_STATE(8964)] = 385669, - [SMALL_STATE(8965)] = 385685, - [SMALL_STATE(8966)] = 385703, - [SMALL_STATE(8967)] = 385723, - [SMALL_STATE(8968)] = 385743, - [SMALL_STATE(8969)] = 385763, - [SMALL_STATE(8970)] = 385779, - [SMALL_STATE(8971)] = 385801, - [SMALL_STATE(8972)] = 385821, - [SMALL_STATE(8973)] = 385839, - [SMALL_STATE(8974)] = 385859, - [SMALL_STATE(8975)] = 385881, - [SMALL_STATE(8976)] = 385903, - [SMALL_STATE(8977)] = 385919, - [SMALL_STATE(8978)] = 385935, - [SMALL_STATE(8979)] = 385955, - [SMALL_STATE(8980)] = 385975, - [SMALL_STATE(8981)] = 385995, - [SMALL_STATE(8982)] = 386015, - [SMALL_STATE(8983)] = 386031, - [SMALL_STATE(8984)] = 386047, - [SMALL_STATE(8985)] = 386067, - [SMALL_STATE(8986)] = 386081, - [SMALL_STATE(8987)] = 386101, - [SMALL_STATE(8988)] = 386117, - [SMALL_STATE(8989)] = 386135, - [SMALL_STATE(8990)] = 386153, - [SMALL_STATE(8991)] = 386169, - [SMALL_STATE(8992)] = 386187, - [SMALL_STATE(8993)] = 386207, - [SMALL_STATE(8994)] = 386223, - [SMALL_STATE(8995)] = 386243, - [SMALL_STATE(8996)] = 386259, - [SMALL_STATE(8997)] = 386275, - [SMALL_STATE(8998)] = 386295, - [SMALL_STATE(8999)] = 386311, - [SMALL_STATE(9000)] = 386327, - [SMALL_STATE(9001)] = 386343, - [SMALL_STATE(9002)] = 386363, - [SMALL_STATE(9003)] = 386379, - [SMALL_STATE(9004)] = 386399, - [SMALL_STATE(9005)] = 386417, - [SMALL_STATE(9006)] = 386437, - [SMALL_STATE(9007)] = 386457, - [SMALL_STATE(9008)] = 386479, - [SMALL_STATE(9009)] = 386499, - [SMALL_STATE(9010)] = 386519, - [SMALL_STATE(9011)] = 386537, - [SMALL_STATE(9012)] = 386557, - [SMALL_STATE(9013)] = 386579, - [SMALL_STATE(9014)] = 386601, - [SMALL_STATE(9015)] = 386621, - [SMALL_STATE(9016)] = 386637, - [SMALL_STATE(9017)] = 386657, - [SMALL_STATE(9018)] = 386673, - [SMALL_STATE(9019)] = 386693, - [SMALL_STATE(9020)] = 386715, - [SMALL_STATE(9021)] = 386729, - [SMALL_STATE(9022)] = 386749, - [SMALL_STATE(9023)] = 386771, - [SMALL_STATE(9024)] = 386793, - [SMALL_STATE(9025)] = 386815, - [SMALL_STATE(9026)] = 386835, - [SMALL_STATE(9027)] = 386857, - [SMALL_STATE(9028)] = 386873, - [SMALL_STATE(9029)] = 386891, - [SMALL_STATE(9030)] = 386907, - [SMALL_STATE(9031)] = 386929, - [SMALL_STATE(9032)] = 386949, - [SMALL_STATE(9033)] = 386965, - [SMALL_STATE(9034)] = 386981, - [SMALL_STATE(9035)] = 387001, - [SMALL_STATE(9036)] = 387021, - [SMALL_STATE(9037)] = 387043, - [SMALL_STATE(9038)] = 387063, - [SMALL_STATE(9039)] = 387079, - [SMALL_STATE(9040)] = 387099, - [SMALL_STATE(9041)] = 387115, - [SMALL_STATE(9042)] = 387135, - [SMALL_STATE(9043)] = 387157, - [SMALL_STATE(9044)] = 387177, - [SMALL_STATE(9045)] = 387197, - [SMALL_STATE(9046)] = 387217, - [SMALL_STATE(9047)] = 387237, - [SMALL_STATE(9048)] = 387259, - [SMALL_STATE(9049)] = 387279, - [SMALL_STATE(9050)] = 387295, - [SMALL_STATE(9051)] = 387311, - [SMALL_STATE(9052)] = 387333, - [SMALL_STATE(9053)] = 387349, - [SMALL_STATE(9054)] = 387365, - [SMALL_STATE(9055)] = 387381, - [SMALL_STATE(9056)] = 387397, - [SMALL_STATE(9057)] = 387419, - [SMALL_STATE(9058)] = 387435, - [SMALL_STATE(9059)] = 387451, - [SMALL_STATE(9060)] = 387465, - [SMALL_STATE(9061)] = 387481, - [SMALL_STATE(9062)] = 387497, - [SMALL_STATE(9063)] = 387513, - [SMALL_STATE(9064)] = 387529, - [SMALL_STATE(9065)] = 387545, - [SMALL_STATE(9066)] = 387561, - [SMALL_STATE(9067)] = 387577, - [SMALL_STATE(9068)] = 387593, - [SMALL_STATE(9069)] = 387609, - [SMALL_STATE(9070)] = 387625, - [SMALL_STATE(9071)] = 387641, - [SMALL_STATE(9072)] = 387657, - [SMALL_STATE(9073)] = 387673, - [SMALL_STATE(9074)] = 387689, - [SMALL_STATE(9075)] = 387705, - [SMALL_STATE(9076)] = 387721, - [SMALL_STATE(9077)] = 387743, - [SMALL_STATE(9078)] = 387759, - [SMALL_STATE(9079)] = 387777, - [SMALL_STATE(9080)] = 387793, - [SMALL_STATE(9081)] = 387809, - [SMALL_STATE(9082)] = 387829, - [SMALL_STATE(9083)] = 387845, - [SMALL_STATE(9084)] = 387861, - [SMALL_STATE(9085)] = 387881, - [SMALL_STATE(9086)] = 387897, - [SMALL_STATE(9087)] = 387919, - [SMALL_STATE(9088)] = 387935, - [SMALL_STATE(9089)] = 387957, - [SMALL_STATE(9090)] = 387979, - [SMALL_STATE(9091)] = 387995, - [SMALL_STATE(9092)] = 388011, - [SMALL_STATE(9093)] = 388027, - [SMALL_STATE(9094)] = 388043, - [SMALL_STATE(9095)] = 388063, - [SMALL_STATE(9096)] = 388079, - [SMALL_STATE(9097)] = 388095, - [SMALL_STATE(9098)] = 388117, - [SMALL_STATE(9099)] = 388135, - [SMALL_STATE(9100)] = 388151, - [SMALL_STATE(9101)] = 388167, - [SMALL_STATE(9102)] = 388183, - [SMALL_STATE(9103)] = 388199, - [SMALL_STATE(9104)] = 388221, - [SMALL_STATE(9105)] = 388237, - [SMALL_STATE(9106)] = 388253, - [SMALL_STATE(9107)] = 388269, - [SMALL_STATE(9108)] = 388285, - [SMALL_STATE(9109)] = 388301, - [SMALL_STATE(9110)] = 388323, - [SMALL_STATE(9111)] = 388339, - [SMALL_STATE(9112)] = 388355, - [SMALL_STATE(9113)] = 388375, - [SMALL_STATE(9114)] = 388391, - [SMALL_STATE(9115)] = 388409, - [SMALL_STATE(9116)] = 388429, - [SMALL_STATE(9117)] = 388445, - [SMALL_STATE(9118)] = 388461, - [SMALL_STATE(9119)] = 388481, - [SMALL_STATE(9120)] = 388501, - [SMALL_STATE(9121)] = 388517, - [SMALL_STATE(9122)] = 388537, - [SMALL_STATE(9123)] = 388553, - [SMALL_STATE(9124)] = 388575, - [SMALL_STATE(9125)] = 388597, - [SMALL_STATE(9126)] = 388617, - [SMALL_STATE(9127)] = 388639, - [SMALL_STATE(9128)] = 388657, - [SMALL_STATE(9129)] = 388675, - [SMALL_STATE(9130)] = 388693, - [SMALL_STATE(9131)] = 388711, - [SMALL_STATE(9132)] = 388729, - [SMALL_STATE(9133)] = 388747, - [SMALL_STATE(9134)] = 388767, - [SMALL_STATE(9135)] = 388785, - [SMALL_STATE(9136)] = 388801, - [SMALL_STATE(9137)] = 388819, - [SMALL_STATE(9138)] = 388839, - [SMALL_STATE(9139)] = 388859, - [SMALL_STATE(9140)] = 388875, - [SMALL_STATE(9141)] = 388895, - [SMALL_STATE(9142)] = 388915, - [SMALL_STATE(9143)] = 388931, - [SMALL_STATE(9144)] = 388951, - [SMALL_STATE(9145)] = 388971, - [SMALL_STATE(9146)] = 388987, - [SMALL_STATE(9147)] = 389007, - [SMALL_STATE(9148)] = 389027, - [SMALL_STATE(9149)] = 389047, - [SMALL_STATE(9150)] = 389067, - [SMALL_STATE(9151)] = 389087, - [SMALL_STATE(9152)] = 389107, - [SMALL_STATE(9153)] = 389129, - [SMALL_STATE(9154)] = 389149, - [SMALL_STATE(9155)] = 389169, - [SMALL_STATE(9156)] = 389189, - [SMALL_STATE(9157)] = 389209, - [SMALL_STATE(9158)] = 389231, - [SMALL_STATE(9159)] = 389251, - [SMALL_STATE(9160)] = 389271, - [SMALL_STATE(9161)] = 389293, - [SMALL_STATE(9162)] = 389313, - [SMALL_STATE(9163)] = 389331, - [SMALL_STATE(9164)] = 389351, - [SMALL_STATE(9165)] = 389373, - [SMALL_STATE(9166)] = 389393, - [SMALL_STATE(9167)] = 389411, - [SMALL_STATE(9168)] = 389429, - [SMALL_STATE(9169)] = 389449, - [SMALL_STATE(9170)] = 389469, - [SMALL_STATE(9171)] = 389489, - [SMALL_STATE(9172)] = 389505, - [SMALL_STATE(9173)] = 389525, - [SMALL_STATE(9174)] = 389541, - [SMALL_STATE(9175)] = 389561, - [SMALL_STATE(9176)] = 389575, - [SMALL_STATE(9177)] = 389597, - [SMALL_STATE(9178)] = 389613, - [SMALL_STATE(9179)] = 389633, - [SMALL_STATE(9180)] = 389652, - [SMALL_STATE(9181)] = 389667, - [SMALL_STATE(9182)] = 389686, - [SMALL_STATE(9183)] = 389701, - [SMALL_STATE(9184)] = 389716, - [SMALL_STATE(9185)] = 389735, - [SMALL_STATE(9186)] = 389752, - [SMALL_STATE(9187)] = 389765, - [SMALL_STATE(9188)] = 389784, - [SMALL_STATE(9189)] = 389803, - [SMALL_STATE(9190)] = 389822, - [SMALL_STATE(9191)] = 389837, - [SMALL_STATE(9192)] = 389856, - [SMALL_STATE(9193)] = 389873, - [SMALL_STATE(9194)] = 389890, - [SMALL_STATE(9195)] = 389909, - [SMALL_STATE(9196)] = 389928, - [SMALL_STATE(9197)] = 389941, - [SMALL_STATE(9198)] = 389960, - [SMALL_STATE(9199)] = 389979, - [SMALL_STATE(9200)] = 389998, - [SMALL_STATE(9201)] = 390017, - [SMALL_STATE(9202)] = 390034, - [SMALL_STATE(9203)] = 390049, - [SMALL_STATE(9204)] = 390066, - [SMALL_STATE(9205)] = 390085, - [SMALL_STATE(9206)] = 390098, - [SMALL_STATE(9207)] = 390115, - [SMALL_STATE(9208)] = 390132, - [SMALL_STATE(9209)] = 390151, - [SMALL_STATE(9210)] = 390166, - [SMALL_STATE(9211)] = 390185, - [SMALL_STATE(9212)] = 390200, - [SMALL_STATE(9213)] = 390217, - [SMALL_STATE(9214)] = 390232, - [SMALL_STATE(9215)] = 390251, - [SMALL_STATE(9216)] = 390266, - [SMALL_STATE(9217)] = 390283, - [SMALL_STATE(9218)] = 390298, - [SMALL_STATE(9219)] = 390317, - [SMALL_STATE(9220)] = 390332, - [SMALL_STATE(9221)] = 390347, - [SMALL_STATE(9222)] = 390362, - [SMALL_STATE(9223)] = 390377, - [SMALL_STATE(9224)] = 390392, - [SMALL_STATE(9225)] = 390405, - [SMALL_STATE(9226)] = 390424, - [SMALL_STATE(9227)] = 390443, - [SMALL_STATE(9228)] = 390456, - [SMALL_STATE(9229)] = 390471, - [SMALL_STATE(9230)] = 390488, - [SMALL_STATE(9231)] = 390507, - [SMALL_STATE(9232)] = 390524, - [SMALL_STATE(9233)] = 390539, - [SMALL_STATE(9234)] = 390558, - [SMALL_STATE(9235)] = 390573, - [SMALL_STATE(9236)] = 390588, - [SMALL_STATE(9237)] = 390607, - [SMALL_STATE(9238)] = 390624, - [SMALL_STATE(9239)] = 390643, - [SMALL_STATE(9240)] = 390658, - [SMALL_STATE(9241)] = 390677, - [SMALL_STATE(9242)] = 390694, - [SMALL_STATE(9243)] = 390713, - [SMALL_STATE(9244)] = 390726, - [SMALL_STATE(9245)] = 390745, - [SMALL_STATE(9246)] = 390760, - [SMALL_STATE(9247)] = 390775, - [SMALL_STATE(9248)] = 390790, - [SMALL_STATE(9249)] = 390805, - [SMALL_STATE(9250)] = 390824, - [SMALL_STATE(9251)] = 390843, - [SMALL_STATE(9252)] = 390862, - [SMALL_STATE(9253)] = 390881, - [SMALL_STATE(9254)] = 390894, - [SMALL_STATE(9255)] = 390913, - [SMALL_STATE(9256)] = 390932, - [SMALL_STATE(9257)] = 390949, - [SMALL_STATE(9258)] = 390968, - [SMALL_STATE(9259)] = 390987, - [SMALL_STATE(9260)] = 391000, - [SMALL_STATE(9261)] = 391015, - [SMALL_STATE(9262)] = 391032, - [SMALL_STATE(9263)] = 391047, - [SMALL_STATE(9264)] = 391066, - [SMALL_STATE(9265)] = 391085, - [SMALL_STATE(9266)] = 391102, - [SMALL_STATE(9267)] = 391121, - [SMALL_STATE(9268)] = 391140, - [SMALL_STATE(9269)] = 391159, - [SMALL_STATE(9270)] = 391174, - [SMALL_STATE(9271)] = 391189, - [SMALL_STATE(9272)] = 391204, - [SMALL_STATE(9273)] = 391219, - [SMALL_STATE(9274)] = 391234, - [SMALL_STATE(9275)] = 391249, - [SMALL_STATE(9276)] = 391264, - [SMALL_STATE(9277)] = 391279, - [SMALL_STATE(9278)] = 391294, - [SMALL_STATE(9279)] = 391309, - [SMALL_STATE(9280)] = 391328, - [SMALL_STATE(9281)] = 391345, - [SMALL_STATE(9282)] = 391364, - [SMALL_STATE(9283)] = 391383, - [SMALL_STATE(9284)] = 391398, - [SMALL_STATE(9285)] = 391417, - [SMALL_STATE(9286)] = 391432, - [SMALL_STATE(9287)] = 391447, - [SMALL_STATE(9288)] = 391466, - [SMALL_STATE(9289)] = 391479, - [SMALL_STATE(9290)] = 391498, - [SMALL_STATE(9291)] = 391511, - [SMALL_STATE(9292)] = 391530, - [SMALL_STATE(9293)] = 391547, - [SMALL_STATE(9294)] = 391564, - [SMALL_STATE(9295)] = 391583, - [SMALL_STATE(9296)] = 391598, - [SMALL_STATE(9297)] = 391615, - [SMALL_STATE(9298)] = 391634, - [SMALL_STATE(9299)] = 391649, - [SMALL_STATE(9300)] = 391666, - [SMALL_STATE(9301)] = 391681, - [SMALL_STATE(9302)] = 391700, - [SMALL_STATE(9303)] = 391715, - [SMALL_STATE(9304)] = 391732, - [SMALL_STATE(9305)] = 391749, - [SMALL_STATE(9306)] = 391768, - [SMALL_STATE(9307)] = 391781, - [SMALL_STATE(9308)] = 391800, - [SMALL_STATE(9309)] = 391815, - [SMALL_STATE(9310)] = 391830, - [SMALL_STATE(9311)] = 391845, - [SMALL_STATE(9312)] = 391864, - [SMALL_STATE(9313)] = 391879, - [SMALL_STATE(9314)] = 391894, - [SMALL_STATE(9315)] = 391909, - [SMALL_STATE(9316)] = 391924, - [SMALL_STATE(9317)] = 391943, - [SMALL_STATE(9318)] = 391958, - [SMALL_STATE(9319)] = 391971, - [SMALL_STATE(9320)] = 391990, - [SMALL_STATE(9321)] = 392009, - [SMALL_STATE(9322)] = 392024, - [SMALL_STATE(9323)] = 392039, - [SMALL_STATE(9324)] = 392054, - [SMALL_STATE(9325)] = 392069, - [SMALL_STATE(9326)] = 392084, - [SMALL_STATE(9327)] = 392097, - [SMALL_STATE(9328)] = 392116, - [SMALL_STATE(9329)] = 392131, - [SMALL_STATE(9330)] = 392146, - [SMALL_STATE(9331)] = 392161, - [SMALL_STATE(9332)] = 392180, - [SMALL_STATE(9333)] = 392195, - [SMALL_STATE(9334)] = 392210, - [SMALL_STATE(9335)] = 392225, - [SMALL_STATE(9336)] = 392242, - [SMALL_STATE(9337)] = 392261, - [SMALL_STATE(9338)] = 392276, - [SMALL_STATE(9339)] = 392291, - [SMALL_STATE(9340)] = 392306, - [SMALL_STATE(9341)] = 392323, - [SMALL_STATE(9342)] = 392340, - [SMALL_STATE(9343)] = 392355, - [SMALL_STATE(9344)] = 392374, - [SMALL_STATE(9345)] = 392389, - [SMALL_STATE(9346)] = 392406, - [SMALL_STATE(9347)] = 392421, - [SMALL_STATE(9348)] = 392440, - [SMALL_STATE(9349)] = 392459, - [SMALL_STATE(9350)] = 392478, - [SMALL_STATE(9351)] = 392491, - [SMALL_STATE(9352)] = 392510, - [SMALL_STATE(9353)] = 392525, - [SMALL_STATE(9354)] = 392544, - [SMALL_STATE(9355)] = 392563, - [SMALL_STATE(9356)] = 392580, - [SMALL_STATE(9357)] = 392593, - [SMALL_STATE(9358)] = 392606, - [SMALL_STATE(9359)] = 392621, - [SMALL_STATE(9360)] = 392640, - [SMALL_STATE(9361)] = 392655, - [SMALL_STATE(9362)] = 392670, - [SMALL_STATE(9363)] = 392685, - [SMALL_STATE(9364)] = 392704, - [SMALL_STATE(9365)] = 392719, - [SMALL_STATE(9366)] = 392736, - [SMALL_STATE(9367)] = 392753, - [SMALL_STATE(9368)] = 392768, - [SMALL_STATE(9369)] = 392783, - [SMALL_STATE(9370)] = 392802, - [SMALL_STATE(9371)] = 392817, - [SMALL_STATE(9372)] = 392832, - [SMALL_STATE(9373)] = 392847, - [SMALL_STATE(9374)] = 392866, - [SMALL_STATE(9375)] = 392881, - [SMALL_STATE(9376)] = 392896, - [SMALL_STATE(9377)] = 392913, - [SMALL_STATE(9378)] = 392928, - [SMALL_STATE(9379)] = 392945, - [SMALL_STATE(9380)] = 392960, - [SMALL_STATE(9381)] = 392979, - [SMALL_STATE(9382)] = 392996, - [SMALL_STATE(9383)] = 393015, - [SMALL_STATE(9384)] = 393030, - [SMALL_STATE(9385)] = 393049, - [SMALL_STATE(9386)] = 393064, - [SMALL_STATE(9387)] = 393079, - [SMALL_STATE(9388)] = 393094, - [SMALL_STATE(9389)] = 393113, - [SMALL_STATE(9390)] = 393128, - [SMALL_STATE(9391)] = 393143, - [SMALL_STATE(9392)] = 393160, - [SMALL_STATE(9393)] = 393173, - [SMALL_STATE(9394)] = 393188, - [SMALL_STATE(9395)] = 393203, - [SMALL_STATE(9396)] = 393218, - [SMALL_STATE(9397)] = 393233, - [SMALL_STATE(9398)] = 393248, - [SMALL_STATE(9399)] = 393263, - [SMALL_STATE(9400)] = 393276, - [SMALL_STATE(9401)] = 393295, - [SMALL_STATE(9402)] = 393310, - [SMALL_STATE(9403)] = 393325, - [SMALL_STATE(9404)] = 393340, - [SMALL_STATE(9405)] = 393355, - [SMALL_STATE(9406)] = 393374, - [SMALL_STATE(9407)] = 393393, - [SMALL_STATE(9408)] = 393408, - [SMALL_STATE(9409)] = 393425, - [SMALL_STATE(9410)] = 393440, - [SMALL_STATE(9411)] = 393453, - [SMALL_STATE(9412)] = 393468, - [SMALL_STATE(9413)] = 393481, - [SMALL_STATE(9414)] = 393500, - [SMALL_STATE(9415)] = 393519, - [SMALL_STATE(9416)] = 393534, - [SMALL_STATE(9417)] = 393549, - [SMALL_STATE(9418)] = 393566, - [SMALL_STATE(9419)] = 393581, - [SMALL_STATE(9420)] = 393596, - [SMALL_STATE(9421)] = 393613, - [SMALL_STATE(9422)] = 393632, - [SMALL_STATE(9423)] = 393649, - [SMALL_STATE(9424)] = 393664, - [SMALL_STATE(9425)] = 393679, - [SMALL_STATE(9426)] = 393698, - [SMALL_STATE(9427)] = 393713, - [SMALL_STATE(9428)] = 393728, - [SMALL_STATE(9429)] = 393745, - [SMALL_STATE(9430)] = 393764, - [SMALL_STATE(9431)] = 393777, - [SMALL_STATE(9432)] = 393796, - [SMALL_STATE(9433)] = 393815, - [SMALL_STATE(9434)] = 393830, - [SMALL_STATE(9435)] = 393847, - [SMALL_STATE(9436)] = 393866, - [SMALL_STATE(9437)] = 393881, - [SMALL_STATE(9438)] = 393896, - [SMALL_STATE(9439)] = 393911, - [SMALL_STATE(9440)] = 393928, - [SMALL_STATE(9441)] = 393947, - [SMALL_STATE(9442)] = 393960, - [SMALL_STATE(9443)] = 393975, - [SMALL_STATE(9444)] = 393994, - [SMALL_STATE(9445)] = 394013, - [SMALL_STATE(9446)] = 394028, - [SMALL_STATE(9447)] = 394043, - [SMALL_STATE(9448)] = 394060, - [SMALL_STATE(9449)] = 394077, - [SMALL_STATE(9450)] = 394094, - [SMALL_STATE(9451)] = 394111, - [SMALL_STATE(9452)] = 394126, - [SMALL_STATE(9453)] = 394145, - [SMALL_STATE(9454)] = 394162, - [SMALL_STATE(9455)] = 394179, - [SMALL_STATE(9456)] = 394192, - [SMALL_STATE(9457)] = 394209, - [SMALL_STATE(9458)] = 394224, - [SMALL_STATE(9459)] = 394243, - [SMALL_STATE(9460)] = 394258, - [SMALL_STATE(9461)] = 394275, - [SMALL_STATE(9462)] = 394294, - [SMALL_STATE(9463)] = 394309, - [SMALL_STATE(9464)] = 394326, - [SMALL_STATE(9465)] = 394343, - [SMALL_STATE(9466)] = 394358, - [SMALL_STATE(9467)] = 394375, - [SMALL_STATE(9468)] = 394392, - [SMALL_STATE(9469)] = 394407, - [SMALL_STATE(9470)] = 394426, - [SMALL_STATE(9471)] = 394441, - [SMALL_STATE(9472)] = 394456, - [SMALL_STATE(9473)] = 394469, - [SMALL_STATE(9474)] = 394482, - [SMALL_STATE(9475)] = 394501, - [SMALL_STATE(9476)] = 394520, - [SMALL_STATE(9477)] = 394537, - [SMALL_STATE(9478)] = 394550, - [SMALL_STATE(9479)] = 394567, - [SMALL_STATE(9480)] = 394580, - [SMALL_STATE(9481)] = 394595, - [SMALL_STATE(9482)] = 394610, - [SMALL_STATE(9483)] = 394629, - [SMALL_STATE(9484)] = 394644, - [SMALL_STATE(9485)] = 394659, - [SMALL_STATE(9486)] = 394674, - [SMALL_STATE(9487)] = 394689, - [SMALL_STATE(9488)] = 394708, - [SMALL_STATE(9489)] = 394723, - [SMALL_STATE(9490)] = 394740, - [SMALL_STATE(9491)] = 394755, - [SMALL_STATE(9492)] = 394770, - [SMALL_STATE(9493)] = 394785, - [SMALL_STATE(9494)] = 394800, - [SMALL_STATE(9495)] = 394815, - [SMALL_STATE(9496)] = 394830, - [SMALL_STATE(9497)] = 394849, - [SMALL_STATE(9498)] = 394864, - [SMALL_STATE(9499)] = 394883, - [SMALL_STATE(9500)] = 394898, - [SMALL_STATE(9501)] = 394913, - [SMALL_STATE(9502)] = 394930, - [SMALL_STATE(9503)] = 394949, - [SMALL_STATE(9504)] = 394964, - [SMALL_STATE(9505)] = 394983, - [SMALL_STATE(9506)] = 394998, - [SMALL_STATE(9507)] = 395015, - [SMALL_STATE(9508)] = 395028, - [SMALL_STATE(9509)] = 395045, - [SMALL_STATE(9510)] = 395060, - [SMALL_STATE(9511)] = 395077, - [SMALL_STATE(9512)] = 395096, - [SMALL_STATE(9513)] = 395113, - [SMALL_STATE(9514)] = 395128, - [SMALL_STATE(9515)] = 395145, - [SMALL_STATE(9516)] = 395164, - [SMALL_STATE(9517)] = 395181, - [SMALL_STATE(9518)] = 395198, - [SMALL_STATE(9519)] = 395213, - [SMALL_STATE(9520)] = 395228, - [SMALL_STATE(9521)] = 395245, - [SMALL_STATE(9522)] = 395262, - [SMALL_STATE(9523)] = 395279, - [SMALL_STATE(9524)] = 395298, - [SMALL_STATE(9525)] = 395315, - [SMALL_STATE(9526)] = 395332, - [SMALL_STATE(9527)] = 395351, - [SMALL_STATE(9528)] = 395368, - [SMALL_STATE(9529)] = 395387, - [SMALL_STATE(9530)] = 395400, - [SMALL_STATE(9531)] = 395417, - [SMALL_STATE(9532)] = 395436, - [SMALL_STATE(9533)] = 395455, - [SMALL_STATE(9534)] = 395474, - [SMALL_STATE(9535)] = 395487, - [SMALL_STATE(9536)] = 395506, - [SMALL_STATE(9537)] = 395523, - [SMALL_STATE(9538)] = 395540, - [SMALL_STATE(9539)] = 395557, - [SMALL_STATE(9540)] = 395574, - [SMALL_STATE(9541)] = 395593, - [SMALL_STATE(9542)] = 395610, - [SMALL_STATE(9543)] = 395627, - [SMALL_STATE(9544)] = 395646, - [SMALL_STATE(9545)] = 395661, - [SMALL_STATE(9546)] = 395678, - [SMALL_STATE(9547)] = 395693, - [SMALL_STATE(9548)] = 395708, - [SMALL_STATE(9549)] = 395723, - [SMALL_STATE(9550)] = 395736, - [SMALL_STATE(9551)] = 395753, - [SMALL_STATE(9552)] = 395772, - [SMALL_STATE(9553)] = 395789, - [SMALL_STATE(9554)] = 395806, - [SMALL_STATE(9555)] = 395825, - [SMALL_STATE(9556)] = 395844, - [SMALL_STATE(9557)] = 395861, - [SMALL_STATE(9558)] = 395880, - [SMALL_STATE(9559)] = 395897, - [SMALL_STATE(9560)] = 395914, - [SMALL_STATE(9561)] = 395933, - [SMALL_STATE(9562)] = 395950, - [SMALL_STATE(9563)] = 395965, - [SMALL_STATE(9564)] = 395982, - [SMALL_STATE(9565)] = 395999, - [SMALL_STATE(9566)] = 396018, - [SMALL_STATE(9567)] = 396035, - [SMALL_STATE(9568)] = 396052, - [SMALL_STATE(9569)] = 396069, - [SMALL_STATE(9570)] = 396088, - [SMALL_STATE(9571)] = 396103, - [SMALL_STATE(9572)] = 396120, - [SMALL_STATE(9573)] = 396139, - [SMALL_STATE(9574)] = 396158, - [SMALL_STATE(9575)] = 396177, - [SMALL_STATE(9576)] = 396192, - [SMALL_STATE(9577)] = 396211, - [SMALL_STATE(9578)] = 396228, - [SMALL_STATE(9579)] = 396243, - [SMALL_STATE(9580)] = 396262, - [SMALL_STATE(9581)] = 396279, - [SMALL_STATE(9582)] = 396296, - [SMALL_STATE(9583)] = 396315, - [SMALL_STATE(9584)] = 396334, - [SMALL_STATE(9585)] = 396347, - [SMALL_STATE(9586)] = 396360, - [SMALL_STATE(9587)] = 396377, - [SMALL_STATE(9588)] = 396394, - [SMALL_STATE(9589)] = 396409, - [SMALL_STATE(9590)] = 396422, - [SMALL_STATE(9591)] = 396439, - [SMALL_STATE(9592)] = 396454, - [SMALL_STATE(9593)] = 396469, - [SMALL_STATE(9594)] = 396486, - [SMALL_STATE(9595)] = 396501, - [SMALL_STATE(9596)] = 396514, - [SMALL_STATE(9597)] = 396533, - [SMALL_STATE(9598)] = 396550, - [SMALL_STATE(9599)] = 396569, - [SMALL_STATE(9600)] = 396586, - [SMALL_STATE(9601)] = 396603, - [SMALL_STATE(9602)] = 396620, - [SMALL_STATE(9603)] = 396637, - [SMALL_STATE(9604)] = 396654, - [SMALL_STATE(9605)] = 396673, - [SMALL_STATE(9606)] = 396692, - [SMALL_STATE(9607)] = 396709, - [SMALL_STATE(9608)] = 396728, - [SMALL_STATE(9609)] = 396743, - [SMALL_STATE(9610)] = 396762, - [SMALL_STATE(9611)] = 396779, - [SMALL_STATE(9612)] = 396796, - [SMALL_STATE(9613)] = 396813, - [SMALL_STATE(9614)] = 396828, - [SMALL_STATE(9615)] = 396845, - [SMALL_STATE(9616)] = 396864, - [SMALL_STATE(9617)] = 396881, - [SMALL_STATE(9618)] = 396900, - [SMALL_STATE(9619)] = 396917, - [SMALL_STATE(9620)] = 396932, - [SMALL_STATE(9621)] = 396949, - [SMALL_STATE(9622)] = 396964, - [SMALL_STATE(9623)] = 396981, - [SMALL_STATE(9624)] = 396998, - [SMALL_STATE(9625)] = 397017, - [SMALL_STATE(9626)] = 397036, - [SMALL_STATE(9627)] = 397055, - [SMALL_STATE(9628)] = 397072, - [SMALL_STATE(9629)] = 397091, - [SMALL_STATE(9630)] = 397108, - [SMALL_STATE(9631)] = 397127, - [SMALL_STATE(9632)] = 397144, - [SMALL_STATE(9633)] = 397159, - [SMALL_STATE(9634)] = 397174, - [SMALL_STATE(9635)] = 397189, - [SMALL_STATE(9636)] = 397204, - [SMALL_STATE(9637)] = 397219, - [SMALL_STATE(9638)] = 397234, - [SMALL_STATE(9639)] = 397249, - [SMALL_STATE(9640)] = 397264, - [SMALL_STATE(9641)] = 397283, - [SMALL_STATE(9642)] = 397302, - [SMALL_STATE(9643)] = 397317, - [SMALL_STATE(9644)] = 397334, - [SMALL_STATE(9645)] = 397349, - [SMALL_STATE(9646)] = 397368, - [SMALL_STATE(9647)] = 397387, - [SMALL_STATE(9648)] = 397402, - [SMALL_STATE(9649)] = 397417, - [SMALL_STATE(9650)] = 397432, - [SMALL_STATE(9651)] = 397445, - [SMALL_STATE(9652)] = 397460, - [SMALL_STATE(9653)] = 397477, - [SMALL_STATE(9654)] = 397496, - [SMALL_STATE(9655)] = 397513, - [SMALL_STATE(9656)] = 397526, - [SMALL_STATE(9657)] = 397545, - [SMALL_STATE(9658)] = 397560, - [SMALL_STATE(9659)] = 397577, - [SMALL_STATE(9660)] = 397594, - [SMALL_STATE(9661)] = 397611, - [SMALL_STATE(9662)] = 397628, - [SMALL_STATE(9663)] = 397645, - [SMALL_STATE(9664)] = 397660, - [SMALL_STATE(9665)] = 397679, - [SMALL_STATE(9666)] = 397696, - [SMALL_STATE(9667)] = 397711, - [SMALL_STATE(9668)] = 397726, - [SMALL_STATE(9669)] = 397745, - [SMALL_STATE(9670)] = 397758, - [SMALL_STATE(9671)] = 397777, - [SMALL_STATE(9672)] = 397794, - [SMALL_STATE(9673)] = 397809, - [SMALL_STATE(9674)] = 397828, - [SMALL_STATE(9675)] = 397847, - [SMALL_STATE(9676)] = 397862, - [SMALL_STATE(9677)] = 397877, - [SMALL_STATE(9678)] = 397896, - [SMALL_STATE(9679)] = 397915, - [SMALL_STATE(9680)] = 397934, - [SMALL_STATE(9681)] = 397953, - [SMALL_STATE(9682)] = 397972, - [SMALL_STATE(9683)] = 397987, - [SMALL_STATE(9684)] = 398002, - [SMALL_STATE(9685)] = 398019, - [SMALL_STATE(9686)] = 398038, - [SMALL_STATE(9687)] = 398053, - [SMALL_STATE(9688)] = 398072, - [SMALL_STATE(9689)] = 398091, - [SMALL_STATE(9690)] = 398110, - [SMALL_STATE(9691)] = 398125, - [SMALL_STATE(9692)] = 398142, - [SMALL_STATE(9693)] = 398161, - [SMALL_STATE(9694)] = 398176, - [SMALL_STATE(9695)] = 398193, - [SMALL_STATE(9696)] = 398210, - [SMALL_STATE(9697)] = 398225, - [SMALL_STATE(9698)] = 398242, - [SMALL_STATE(9699)] = 398261, - [SMALL_STATE(9700)] = 398274, - [SMALL_STATE(9701)] = 398293, - [SMALL_STATE(9702)] = 398310, - [SMALL_STATE(9703)] = 398327, - [SMALL_STATE(9704)] = 398346, - [SMALL_STATE(9705)] = 398361, - [SMALL_STATE(9706)] = 398380, - [SMALL_STATE(9707)] = 398393, - [SMALL_STATE(9708)] = 398408, - [SMALL_STATE(9709)] = 398427, - [SMALL_STATE(9710)] = 398442, - [SMALL_STATE(9711)] = 398461, - [SMALL_STATE(9712)] = 398476, - [SMALL_STATE(9713)] = 398495, - [SMALL_STATE(9714)] = 398510, - [SMALL_STATE(9715)] = 398527, - [SMALL_STATE(9716)] = 398540, - [SMALL_STATE(9717)] = 398559, - [SMALL_STATE(9718)] = 398578, - [SMALL_STATE(9719)] = 398597, - [SMALL_STATE(9720)] = 398612, - [SMALL_STATE(9721)] = 398629, - [SMALL_STATE(9722)] = 398648, - [SMALL_STATE(9723)] = 398667, - [SMALL_STATE(9724)] = 398682, - [SMALL_STATE(9725)] = 398701, - [SMALL_STATE(9726)] = 398720, - [SMALL_STATE(9727)] = 398739, - [SMALL_STATE(9728)] = 398754, - [SMALL_STATE(9729)] = 398769, - [SMALL_STATE(9730)] = 398786, - [SMALL_STATE(9731)] = 398803, - [SMALL_STATE(9732)] = 398822, - [SMALL_STATE(9733)] = 398841, - [SMALL_STATE(9734)] = 398858, - [SMALL_STATE(9735)] = 398877, - [SMALL_STATE(9736)] = 398896, - [SMALL_STATE(9737)] = 398915, - [SMALL_STATE(9738)] = 398934, - [SMALL_STATE(9739)] = 398953, - [SMALL_STATE(9740)] = 398968, - [SMALL_STATE(9741)] = 398983, - [SMALL_STATE(9742)] = 399002, - [SMALL_STATE(9743)] = 399015, - [SMALL_STATE(9744)] = 399030, - [SMALL_STATE(9745)] = 399049, - [SMALL_STATE(9746)] = 399068, - [SMALL_STATE(9747)] = 399087, - [SMALL_STATE(9748)] = 399102, - [SMALL_STATE(9749)] = 399121, - [SMALL_STATE(9750)] = 399136, - [SMALL_STATE(9751)] = 399151, - [SMALL_STATE(9752)] = 399168, - [SMALL_STATE(9753)] = 399187, - [SMALL_STATE(9754)] = 399204, - [SMALL_STATE(9755)] = 399219, - [SMALL_STATE(9756)] = 399234, - [SMALL_STATE(9757)] = 399249, - [SMALL_STATE(9758)] = 399264, - [SMALL_STATE(9759)] = 399279, - [SMALL_STATE(9760)] = 399294, - [SMALL_STATE(9761)] = 399313, - [SMALL_STATE(9762)] = 399328, - [SMALL_STATE(9763)] = 399343, - [SMALL_STATE(9764)] = 399358, - [SMALL_STATE(9765)] = 399377, - [SMALL_STATE(9766)] = 399392, - [SMALL_STATE(9767)] = 399411, - [SMALL_STATE(9768)] = 399426, - [SMALL_STATE(9769)] = 399445, - [SMALL_STATE(9770)] = 399462, - [SMALL_STATE(9771)] = 399477, - [SMALL_STATE(9772)] = 399492, - [SMALL_STATE(9773)] = 399507, - [SMALL_STATE(9774)] = 399522, - [SMALL_STATE(9775)] = 399535, - [SMALL_STATE(9776)] = 399554, - [SMALL_STATE(9777)] = 399571, - [SMALL_STATE(9778)] = 399590, - [SMALL_STATE(9779)] = 399603, - [SMALL_STATE(9780)] = 399620, - [SMALL_STATE(9781)] = 399637, - [SMALL_STATE(9782)] = 399652, - [SMALL_STATE(9783)] = 399667, - [SMALL_STATE(9784)] = 399686, - [SMALL_STATE(9785)] = 399705, - [SMALL_STATE(9786)] = 399720, - [SMALL_STATE(9787)] = 399735, - [SMALL_STATE(9788)] = 399750, - [SMALL_STATE(9789)] = 399769, - [SMALL_STATE(9790)] = 399786, - [SMALL_STATE(9791)] = 399801, - [SMALL_STATE(9792)] = 399816, - [SMALL_STATE(9793)] = 399831, - [SMALL_STATE(9794)] = 399846, - [SMALL_STATE(9795)] = 399865, - [SMALL_STATE(9796)] = 399884, - [SMALL_STATE(9797)] = 399899, - [SMALL_STATE(9798)] = 399914, - [SMALL_STATE(9799)] = 399929, - [SMALL_STATE(9800)] = 399948, - [SMALL_STATE(9801)] = 399963, - [SMALL_STATE(9802)] = 399980, - [SMALL_STATE(9803)] = 399999, - [SMALL_STATE(9804)] = 400018, - [SMALL_STATE(9805)] = 400035, - [SMALL_STATE(9806)] = 400050, - [SMALL_STATE(9807)] = 400065, - [SMALL_STATE(9808)] = 400084, - [SMALL_STATE(9809)] = 400099, - [SMALL_STATE(9810)] = 400114, - [SMALL_STATE(9811)] = 400129, - [SMALL_STATE(9812)] = 400148, - [SMALL_STATE(9813)] = 400163, - [SMALL_STATE(9814)] = 400178, - [SMALL_STATE(9815)] = 400197, - [SMALL_STATE(9816)] = 400216, - [SMALL_STATE(9817)] = 400233, - [SMALL_STATE(9818)] = 400248, - [SMALL_STATE(9819)] = 400263, - [SMALL_STATE(9820)] = 400282, - [SMALL_STATE(9821)] = 400301, - [SMALL_STATE(9822)] = 400320, - [SMALL_STATE(9823)] = 400333, - [SMALL_STATE(9824)] = 400350, - [SMALL_STATE(9825)] = 400365, - [SMALL_STATE(9826)] = 400380, - [SMALL_STATE(9827)] = 400395, - [SMALL_STATE(9828)] = 400410, - [SMALL_STATE(9829)] = 400429, - [SMALL_STATE(9830)] = 400448, - [SMALL_STATE(9831)] = 400467, - [SMALL_STATE(9832)] = 400484, - [SMALL_STATE(9833)] = 400499, - [SMALL_STATE(9834)] = 400512, - [SMALL_STATE(9835)] = 400531, - [SMALL_STATE(9836)] = 400548, - [SMALL_STATE(9837)] = 400563, - [SMALL_STATE(9838)] = 400578, - [SMALL_STATE(9839)] = 400595, - [SMALL_STATE(9840)] = 400610, - [SMALL_STATE(9841)] = 400629, - [SMALL_STATE(9842)] = 400644, - [SMALL_STATE(9843)] = 400660, - [SMALL_STATE(9844)] = 400676, - [SMALL_STATE(9845)] = 400692, - [SMALL_STATE(9846)] = 400708, - [SMALL_STATE(9847)] = 400724, - [SMALL_STATE(9848)] = 400738, - [SMALL_STATE(9849)] = 400754, - [SMALL_STATE(9850)] = 400770, - [SMALL_STATE(9851)] = 400786, - [SMALL_STATE(9852)] = 400802, - [SMALL_STATE(9853)] = 400818, - [SMALL_STATE(9854)] = 400834, - [SMALL_STATE(9855)] = 400850, - [SMALL_STATE(9856)] = 400866, - [SMALL_STATE(9857)] = 400880, - [SMALL_STATE(9858)] = 400896, - [SMALL_STATE(9859)] = 400912, - [SMALL_STATE(9860)] = 400928, - [SMALL_STATE(9861)] = 400944, - [SMALL_STATE(9862)] = 400960, - [SMALL_STATE(9863)] = 400976, - [SMALL_STATE(9864)] = 400992, - [SMALL_STATE(9865)] = 401008, - [SMALL_STATE(9866)] = 401024, - [SMALL_STATE(9867)] = 401040, - [SMALL_STATE(9868)] = 401056, - [SMALL_STATE(9869)] = 401072, - [SMALL_STATE(9870)] = 401088, - [SMALL_STATE(9871)] = 401104, - [SMALL_STATE(9872)] = 401120, - [SMALL_STATE(9873)] = 401134, - [SMALL_STATE(9874)] = 401150, - [SMALL_STATE(9875)] = 401166, - [SMALL_STATE(9876)] = 401182, - [SMALL_STATE(9877)] = 401196, - [SMALL_STATE(9878)] = 401212, - [SMALL_STATE(9879)] = 401228, - [SMALL_STATE(9880)] = 401244, - [SMALL_STATE(9881)] = 401260, - [SMALL_STATE(9882)] = 401276, - [SMALL_STATE(9883)] = 401292, - [SMALL_STATE(9884)] = 401308, - [SMALL_STATE(9885)] = 401322, - [SMALL_STATE(9886)] = 401338, - [SMALL_STATE(9887)] = 401354, - [SMALL_STATE(9888)] = 401370, - [SMALL_STATE(9889)] = 401386, - [SMALL_STATE(9890)] = 401402, - [SMALL_STATE(9891)] = 401418, - [SMALL_STATE(9892)] = 401434, - [SMALL_STATE(9893)] = 401450, - [SMALL_STATE(9894)] = 401466, - [SMALL_STATE(9895)] = 401482, - [SMALL_STATE(9896)] = 401498, - [SMALL_STATE(9897)] = 401512, - [SMALL_STATE(9898)] = 401528, - [SMALL_STATE(9899)] = 401542, - [SMALL_STATE(9900)] = 401558, - [SMALL_STATE(9901)] = 401574, - [SMALL_STATE(9902)] = 401588, - [SMALL_STATE(9903)] = 401604, - [SMALL_STATE(9904)] = 401620, - [SMALL_STATE(9905)] = 401636, - [SMALL_STATE(9906)] = 401650, - [SMALL_STATE(9907)] = 401666, - [SMALL_STATE(9908)] = 401682, - [SMALL_STATE(9909)] = 401698, - [SMALL_STATE(9910)] = 401714, - [SMALL_STATE(9911)] = 401728, - [SMALL_STATE(9912)] = 401742, - [SMALL_STATE(9913)] = 401756, - [SMALL_STATE(9914)] = 401772, - [SMALL_STATE(9915)] = 401788, - [SMALL_STATE(9916)] = 401804, - [SMALL_STATE(9917)] = 401820, - [SMALL_STATE(9918)] = 401836, - [SMALL_STATE(9919)] = 401850, - [SMALL_STATE(9920)] = 401866, - [SMALL_STATE(9921)] = 401882, - [SMALL_STATE(9922)] = 401898, - [SMALL_STATE(9923)] = 401914, - [SMALL_STATE(9924)] = 401930, - [SMALL_STATE(9925)] = 401946, - [SMALL_STATE(9926)] = 401962, - [SMALL_STATE(9927)] = 401978, - [SMALL_STATE(9928)] = 401994, - [SMALL_STATE(9929)] = 402010, - [SMALL_STATE(9930)] = 402026, - [SMALL_STATE(9931)] = 402042, - [SMALL_STATE(9932)] = 402058, - [SMALL_STATE(9933)] = 402074, - [SMALL_STATE(9934)] = 402090, - [SMALL_STATE(9935)] = 402102, - [SMALL_STATE(9936)] = 402118, - [SMALL_STATE(9937)] = 402134, - [SMALL_STATE(9938)] = 402146, - [SMALL_STATE(9939)] = 402162, - [SMALL_STATE(9940)] = 402178, - [SMALL_STATE(9941)] = 402194, - [SMALL_STATE(9942)] = 402210, - [SMALL_STATE(9943)] = 402226, - [SMALL_STATE(9944)] = 402238, - [SMALL_STATE(9945)] = 402252, - [SMALL_STATE(9946)] = 402268, - [SMALL_STATE(9947)] = 402284, - [SMALL_STATE(9948)] = 402298, - [SMALL_STATE(9949)] = 402314, - [SMALL_STATE(9950)] = 402330, - [SMALL_STATE(9951)] = 402346, - [SMALL_STATE(9952)] = 402358, - [SMALL_STATE(9953)] = 402374, - [SMALL_STATE(9954)] = 402390, - [SMALL_STATE(9955)] = 402406, - [SMALL_STATE(9956)] = 402422, - [SMALL_STATE(9957)] = 402438, - [SMALL_STATE(9958)] = 402450, - [SMALL_STATE(9959)] = 402466, - [SMALL_STATE(9960)] = 402482, - [SMALL_STATE(9961)] = 402494, - [SMALL_STATE(9962)] = 402510, - [SMALL_STATE(9963)] = 402526, - [SMALL_STATE(9964)] = 402542, - [SMALL_STATE(9965)] = 402554, - [SMALL_STATE(9966)] = 402570, - [SMALL_STATE(9967)] = 402586, - [SMALL_STATE(9968)] = 402602, - [SMALL_STATE(9969)] = 402618, - [SMALL_STATE(9970)] = 402630, - [SMALL_STATE(9971)] = 402644, - [SMALL_STATE(9972)] = 402660, - [SMALL_STATE(9973)] = 402676, - [SMALL_STATE(9974)] = 402692, - [SMALL_STATE(9975)] = 402708, - [SMALL_STATE(9976)] = 402724, - [SMALL_STATE(9977)] = 402740, - [SMALL_STATE(9978)] = 402756, - [SMALL_STATE(9979)] = 402768, - [SMALL_STATE(9980)] = 402782, - [SMALL_STATE(9981)] = 402798, - [SMALL_STATE(9982)] = 402814, - [SMALL_STATE(9983)] = 402830, - [SMALL_STATE(9984)] = 402846, - [SMALL_STATE(9985)] = 402862, - [SMALL_STATE(9986)] = 402878, - [SMALL_STATE(9987)] = 402894, - [SMALL_STATE(9988)] = 402910, - [SMALL_STATE(9989)] = 402926, - [SMALL_STATE(9990)] = 402938, - [SMALL_STATE(9991)] = 402954, - [SMALL_STATE(9992)] = 402970, - [SMALL_STATE(9993)] = 402986, - [SMALL_STATE(9994)] = 403002, - [SMALL_STATE(9995)] = 403016, - [SMALL_STATE(9996)] = 403032, - [SMALL_STATE(9997)] = 403048, - [SMALL_STATE(9998)] = 403064, - [SMALL_STATE(9999)] = 403080, - [SMALL_STATE(10000)] = 403096, - [SMALL_STATE(10001)] = 403112, - [SMALL_STATE(10002)] = 403128, - [SMALL_STATE(10003)] = 403144, - [SMALL_STATE(10004)] = 403160, - [SMALL_STATE(10005)] = 403174, - [SMALL_STATE(10006)] = 403190, - [SMALL_STATE(10007)] = 403206, - [SMALL_STATE(10008)] = 403222, - [SMALL_STATE(10009)] = 403238, - [SMALL_STATE(10010)] = 403254, - [SMALL_STATE(10011)] = 403270, - [SMALL_STATE(10012)] = 403286, - [SMALL_STATE(10013)] = 403302, - [SMALL_STATE(10014)] = 403318, - [SMALL_STATE(10015)] = 403330, - [SMALL_STATE(10016)] = 403346, - [SMALL_STATE(10017)] = 403362, - [SMALL_STATE(10018)] = 403378, - [SMALL_STATE(10019)] = 403394, - [SMALL_STATE(10020)] = 403410, - [SMALL_STATE(10021)] = 403424, - [SMALL_STATE(10022)] = 403440, - [SMALL_STATE(10023)] = 403456, - [SMALL_STATE(10024)] = 403472, - [SMALL_STATE(10025)] = 403486, - [SMALL_STATE(10026)] = 403502, - [SMALL_STATE(10027)] = 403518, - [SMALL_STATE(10028)] = 403534, - [SMALL_STATE(10029)] = 403550, - [SMALL_STATE(10030)] = 403566, - [SMALL_STATE(10031)] = 403582, - [SMALL_STATE(10032)] = 403598, - [SMALL_STATE(10033)] = 403610, - [SMALL_STATE(10034)] = 403626, - [SMALL_STATE(10035)] = 403638, - [SMALL_STATE(10036)] = 403654, - [SMALL_STATE(10037)] = 403670, - [SMALL_STATE(10038)] = 403682, - [SMALL_STATE(10039)] = 403696, - [SMALL_STATE(10040)] = 403712, - [SMALL_STATE(10041)] = 403728, - [SMALL_STATE(10042)] = 403744, - [SMALL_STATE(10043)] = 403760, - [SMALL_STATE(10044)] = 403776, - [SMALL_STATE(10045)] = 403792, - [SMALL_STATE(10046)] = 403808, - [SMALL_STATE(10047)] = 403824, - [SMALL_STATE(10048)] = 403840, - [SMALL_STATE(10049)] = 403856, - [SMALL_STATE(10050)] = 403872, - [SMALL_STATE(10051)] = 403888, - [SMALL_STATE(10052)] = 403904, - [SMALL_STATE(10053)] = 403920, - [SMALL_STATE(10054)] = 403936, - [SMALL_STATE(10055)] = 403952, - [SMALL_STATE(10056)] = 403968, - [SMALL_STATE(10057)] = 403984, - [SMALL_STATE(10058)] = 404000, - [SMALL_STATE(10059)] = 404016, - [SMALL_STATE(10060)] = 404030, - [SMALL_STATE(10061)] = 404046, - [SMALL_STATE(10062)] = 404062, - [SMALL_STATE(10063)] = 404078, - [SMALL_STATE(10064)] = 404092, - [SMALL_STATE(10065)] = 404108, - [SMALL_STATE(10066)] = 404124, - [SMALL_STATE(10067)] = 404138, - [SMALL_STATE(10068)] = 404154, - [SMALL_STATE(10069)] = 404170, - [SMALL_STATE(10070)] = 404186, - [SMALL_STATE(10071)] = 404200, - [SMALL_STATE(10072)] = 404216, - [SMALL_STATE(10073)] = 404232, - [SMALL_STATE(10074)] = 404248, - [SMALL_STATE(10075)] = 404262, - [SMALL_STATE(10076)] = 404278, - [SMALL_STATE(10077)] = 404294, - [SMALL_STATE(10078)] = 404310, - [SMALL_STATE(10079)] = 404326, - [SMALL_STATE(10080)] = 404342, - [SMALL_STATE(10081)] = 404358, - [SMALL_STATE(10082)] = 404374, - [SMALL_STATE(10083)] = 404390, - [SMALL_STATE(10084)] = 404406, - [SMALL_STATE(10085)] = 404422, - [SMALL_STATE(10086)] = 404438, - [SMALL_STATE(10087)] = 404452, - [SMALL_STATE(10088)] = 404468, - [SMALL_STATE(10089)] = 404484, - [SMALL_STATE(10090)] = 404500, - [SMALL_STATE(10091)] = 404516, - [SMALL_STATE(10092)] = 404532, - [SMALL_STATE(10093)] = 404548, - [SMALL_STATE(10094)] = 404564, - [SMALL_STATE(10095)] = 404578, - [SMALL_STATE(10096)] = 404592, - [SMALL_STATE(10097)] = 404608, - [SMALL_STATE(10098)] = 404624, - [SMALL_STATE(10099)] = 404640, - [SMALL_STATE(10100)] = 404656, - [SMALL_STATE(10101)] = 404672, - [SMALL_STATE(10102)] = 404688, - [SMALL_STATE(10103)] = 404702, - [SMALL_STATE(10104)] = 404718, - [SMALL_STATE(10105)] = 404734, - [SMALL_STATE(10106)] = 404748, - [SMALL_STATE(10107)] = 404764, - [SMALL_STATE(10108)] = 404780, - [SMALL_STATE(10109)] = 404796, - [SMALL_STATE(10110)] = 404812, - [SMALL_STATE(10111)] = 404826, - [SMALL_STATE(10112)] = 404842, - [SMALL_STATE(10113)] = 404858, - [SMALL_STATE(10114)] = 404874, - [SMALL_STATE(10115)] = 404890, - [SMALL_STATE(10116)] = 404906, - [SMALL_STATE(10117)] = 404922, - [SMALL_STATE(10118)] = 404938, - [SMALL_STATE(10119)] = 404954, - [SMALL_STATE(10120)] = 404968, - [SMALL_STATE(10121)] = 404984, - [SMALL_STATE(10122)] = 405000, - [SMALL_STATE(10123)] = 405016, - [SMALL_STATE(10124)] = 405032, - [SMALL_STATE(10125)] = 405048, - [SMALL_STATE(10126)] = 405064, - [SMALL_STATE(10127)] = 405080, - [SMALL_STATE(10128)] = 405096, - [SMALL_STATE(10129)] = 405112, - [SMALL_STATE(10130)] = 405128, - [SMALL_STATE(10131)] = 405144, - [SMALL_STATE(10132)] = 405160, - [SMALL_STATE(10133)] = 405176, - [SMALL_STATE(10134)] = 405192, - [SMALL_STATE(10135)] = 405208, - [SMALL_STATE(10136)] = 405224, - [SMALL_STATE(10137)] = 405240, - [SMALL_STATE(10138)] = 405256, - [SMALL_STATE(10139)] = 405272, - [SMALL_STATE(10140)] = 405288, - [SMALL_STATE(10141)] = 405304, - [SMALL_STATE(10142)] = 405320, - [SMALL_STATE(10143)] = 405336, - [SMALL_STATE(10144)] = 405352, - [SMALL_STATE(10145)] = 405368, - [SMALL_STATE(10146)] = 405384, - [SMALL_STATE(10147)] = 405400, - [SMALL_STATE(10148)] = 405416, - [SMALL_STATE(10149)] = 405430, - [SMALL_STATE(10150)] = 405446, - [SMALL_STATE(10151)] = 405460, - [SMALL_STATE(10152)] = 405476, - [SMALL_STATE(10153)] = 405492, - [SMALL_STATE(10154)] = 405508, - [SMALL_STATE(10155)] = 405524, - [SMALL_STATE(10156)] = 405540, - [SMALL_STATE(10157)] = 405556, - [SMALL_STATE(10158)] = 405572, - [SMALL_STATE(10159)] = 405588, - [SMALL_STATE(10160)] = 405604, - [SMALL_STATE(10161)] = 405620, - [SMALL_STATE(10162)] = 405636, - [SMALL_STATE(10163)] = 405652, - [SMALL_STATE(10164)] = 405666, - [SMALL_STATE(10165)] = 405682, - [SMALL_STATE(10166)] = 405698, - [SMALL_STATE(10167)] = 405714, - [SMALL_STATE(10168)] = 405727, - [SMALL_STATE(10169)] = 405740, - [SMALL_STATE(10170)] = 405753, - [SMALL_STATE(10171)] = 405766, - [SMALL_STATE(10172)] = 405779, - [SMALL_STATE(10173)] = 405792, - [SMALL_STATE(10174)] = 405805, - [SMALL_STATE(10175)] = 405818, - [SMALL_STATE(10176)] = 405829, - [SMALL_STATE(10177)] = 405842, - [SMALL_STATE(10178)] = 405855, - [SMALL_STATE(10179)] = 405868, - [SMALL_STATE(10180)] = 405881, - [SMALL_STATE(10181)] = 405892, - [SMALL_STATE(10182)] = 405903, - [SMALL_STATE(10183)] = 405916, - [SMALL_STATE(10184)] = 405929, - [SMALL_STATE(10185)] = 405942, - [SMALL_STATE(10186)] = 405955, - [SMALL_STATE(10187)] = 405968, - [SMALL_STATE(10188)] = 405981, - [SMALL_STATE(10189)] = 405994, - [SMALL_STATE(10190)] = 406007, - [SMALL_STATE(10191)] = 406020, - [SMALL_STATE(10192)] = 406033, - [SMALL_STATE(10193)] = 406046, - [SMALL_STATE(10194)] = 406059, - [SMALL_STATE(10195)] = 406072, - [SMALL_STATE(10196)] = 406085, - [SMALL_STATE(10197)] = 406098, - [SMALL_STATE(10198)] = 406111, - [SMALL_STATE(10199)] = 406124, - [SMALL_STATE(10200)] = 406135, - [SMALL_STATE(10201)] = 406148, - [SMALL_STATE(10202)] = 406161, - [SMALL_STATE(10203)] = 406174, - [SMALL_STATE(10204)] = 406187, - [SMALL_STATE(10205)] = 406200, - [SMALL_STATE(10206)] = 406213, - [SMALL_STATE(10207)] = 406226, - [SMALL_STATE(10208)] = 406239, - [SMALL_STATE(10209)] = 406252, - [SMALL_STATE(10210)] = 406265, - [SMALL_STATE(10211)] = 406278, - [SMALL_STATE(10212)] = 406291, - [SMALL_STATE(10213)] = 406304, - [SMALL_STATE(10214)] = 406317, - [SMALL_STATE(10215)] = 406330, - [SMALL_STATE(10216)] = 406343, - [SMALL_STATE(10217)] = 406356, - [SMALL_STATE(10218)] = 406369, - [SMALL_STATE(10219)] = 406382, - [SMALL_STATE(10220)] = 406395, - [SMALL_STATE(10221)] = 406408, - [SMALL_STATE(10222)] = 406421, - [SMALL_STATE(10223)] = 406434, - [SMALL_STATE(10224)] = 406447, - [SMALL_STATE(10225)] = 406460, - [SMALL_STATE(10226)] = 406473, - [SMALL_STATE(10227)] = 406486, - [SMALL_STATE(10228)] = 406499, - [SMALL_STATE(10229)] = 406512, - [SMALL_STATE(10230)] = 406525, - [SMALL_STATE(10231)] = 406538, - [SMALL_STATE(10232)] = 406551, - [SMALL_STATE(10233)] = 406564, - [SMALL_STATE(10234)] = 406577, - [SMALL_STATE(10235)] = 406590, - [SMALL_STATE(10236)] = 406603, - [SMALL_STATE(10237)] = 406616, - [SMALL_STATE(10238)] = 406629, - [SMALL_STATE(10239)] = 406642, - [SMALL_STATE(10240)] = 406655, - [SMALL_STATE(10241)] = 406668, - [SMALL_STATE(10242)] = 406681, - [SMALL_STATE(10243)] = 406694, - [SMALL_STATE(10244)] = 406707, - [SMALL_STATE(10245)] = 406720, - [SMALL_STATE(10246)] = 406733, - [SMALL_STATE(10247)] = 406746, - [SMALL_STATE(10248)] = 406757, - [SMALL_STATE(10249)] = 406770, - [SMALL_STATE(10250)] = 406783, - [SMALL_STATE(10251)] = 406796, - [SMALL_STATE(10252)] = 406809, - [SMALL_STATE(10253)] = 406822, - [SMALL_STATE(10254)] = 406835, - [SMALL_STATE(10255)] = 406848, - [SMALL_STATE(10256)] = 406861, - [SMALL_STATE(10257)] = 406874, - [SMALL_STATE(10258)] = 406887, - [SMALL_STATE(10259)] = 406900, - [SMALL_STATE(10260)] = 406911, - [SMALL_STATE(10261)] = 406924, - [SMALL_STATE(10262)] = 406935, - [SMALL_STATE(10263)] = 406948, - [SMALL_STATE(10264)] = 406961, - [SMALL_STATE(10265)] = 406974, - [SMALL_STATE(10266)] = 406987, - [SMALL_STATE(10267)] = 407000, - [SMALL_STATE(10268)] = 407013, - [SMALL_STATE(10269)] = 407026, - [SMALL_STATE(10270)] = 407039, - [SMALL_STATE(10271)] = 407052, - [SMALL_STATE(10272)] = 407065, - [SMALL_STATE(10273)] = 407078, - [SMALL_STATE(10274)] = 407091, - [SMALL_STATE(10275)] = 407104, - [SMALL_STATE(10276)] = 407117, - [SMALL_STATE(10277)] = 407130, - [SMALL_STATE(10278)] = 407143, - [SMALL_STATE(10279)] = 407156, - [SMALL_STATE(10280)] = 407169, - [SMALL_STATE(10281)] = 407182, - [SMALL_STATE(10282)] = 407195, - [SMALL_STATE(10283)] = 407208, - [SMALL_STATE(10284)] = 407221, - [SMALL_STATE(10285)] = 407234, - [SMALL_STATE(10286)] = 407247, - [SMALL_STATE(10287)] = 407260, - [SMALL_STATE(10288)] = 407273, - [SMALL_STATE(10289)] = 407286, - [SMALL_STATE(10290)] = 407299, - [SMALL_STATE(10291)] = 407309, - [SMALL_STATE(10292)] = 407319, - [SMALL_STATE(10293)] = 407329, - [SMALL_STATE(10294)] = 407339, - [SMALL_STATE(10295)] = 407349, - [SMALL_STATE(10296)] = 407359, - [SMALL_STATE(10297)] = 407369, - [SMALL_STATE(10298)] = 407379, - [SMALL_STATE(10299)] = 407389, - [SMALL_STATE(10300)] = 407399, - [SMALL_STATE(10301)] = 407409, - [SMALL_STATE(10302)] = 407419, - [SMALL_STATE(10303)] = 407429, - [SMALL_STATE(10304)] = 407439, - [SMALL_STATE(10305)] = 407449, - [SMALL_STATE(10306)] = 407459, - [SMALL_STATE(10307)] = 407469, - [SMALL_STATE(10308)] = 407479, - [SMALL_STATE(10309)] = 407489, - [SMALL_STATE(10310)] = 407499, - [SMALL_STATE(10311)] = 407509, - [SMALL_STATE(10312)] = 407519, - [SMALL_STATE(10313)] = 407529, - [SMALL_STATE(10314)] = 407539, - [SMALL_STATE(10315)] = 407549, - [SMALL_STATE(10316)] = 407559, - [SMALL_STATE(10317)] = 407569, - [SMALL_STATE(10318)] = 407579, - [SMALL_STATE(10319)] = 407589, - [SMALL_STATE(10320)] = 407599, - [SMALL_STATE(10321)] = 407609, - [SMALL_STATE(10322)] = 407619, - [SMALL_STATE(10323)] = 407629, - [SMALL_STATE(10324)] = 407639, - [SMALL_STATE(10325)] = 407649, - [SMALL_STATE(10326)] = 407659, - [SMALL_STATE(10327)] = 407669, - [SMALL_STATE(10328)] = 407679, - [SMALL_STATE(10329)] = 407689, - [SMALL_STATE(10330)] = 407699, - [SMALL_STATE(10331)] = 407709, - [SMALL_STATE(10332)] = 407719, - [SMALL_STATE(10333)] = 407729, - [SMALL_STATE(10334)] = 407739, - [SMALL_STATE(10335)] = 407749, - [SMALL_STATE(10336)] = 407759, - [SMALL_STATE(10337)] = 407769, - [SMALL_STATE(10338)] = 407779, - [SMALL_STATE(10339)] = 407789, - [SMALL_STATE(10340)] = 407799, - [SMALL_STATE(10341)] = 407809, - [SMALL_STATE(10342)] = 407819, - [SMALL_STATE(10343)] = 407829, - [SMALL_STATE(10344)] = 407839, - [SMALL_STATE(10345)] = 407849, - [SMALL_STATE(10346)] = 407859, - [SMALL_STATE(10347)] = 407869, - [SMALL_STATE(10348)] = 407879, - [SMALL_STATE(10349)] = 407889, - [SMALL_STATE(10350)] = 407899, - [SMALL_STATE(10351)] = 407909, - [SMALL_STATE(10352)] = 407919, - [SMALL_STATE(10353)] = 407929, - [SMALL_STATE(10354)] = 407939, - [SMALL_STATE(10355)] = 407949, - [SMALL_STATE(10356)] = 407959, - [SMALL_STATE(10357)] = 407969, - [SMALL_STATE(10358)] = 407979, - [SMALL_STATE(10359)] = 407989, - [SMALL_STATE(10360)] = 407999, - [SMALL_STATE(10361)] = 408009, - [SMALL_STATE(10362)] = 408019, - [SMALL_STATE(10363)] = 408029, - [SMALL_STATE(10364)] = 408039, - [SMALL_STATE(10365)] = 408049, - [SMALL_STATE(10366)] = 408059, - [SMALL_STATE(10367)] = 408069, - [SMALL_STATE(10368)] = 408079, - [SMALL_STATE(10369)] = 408089, - [SMALL_STATE(10370)] = 408099, - [SMALL_STATE(10371)] = 408109, - [SMALL_STATE(10372)] = 408119, - [SMALL_STATE(10373)] = 408129, - [SMALL_STATE(10374)] = 408139, - [SMALL_STATE(10375)] = 408149, - [SMALL_STATE(10376)] = 408159, - [SMALL_STATE(10377)] = 408169, - [SMALL_STATE(10378)] = 408179, - [SMALL_STATE(10379)] = 408189, - [SMALL_STATE(10380)] = 408199, - [SMALL_STATE(10381)] = 408209, - [SMALL_STATE(10382)] = 408219, - [SMALL_STATE(10383)] = 408229, - [SMALL_STATE(10384)] = 408239, - [SMALL_STATE(10385)] = 408249, - [SMALL_STATE(10386)] = 408259, - [SMALL_STATE(10387)] = 408269, - [SMALL_STATE(10388)] = 408279, - [SMALL_STATE(10389)] = 408289, - [SMALL_STATE(10390)] = 408299, - [SMALL_STATE(10391)] = 408309, - [SMALL_STATE(10392)] = 408319, - [SMALL_STATE(10393)] = 408329, - [SMALL_STATE(10394)] = 408339, - [SMALL_STATE(10395)] = 408349, - [SMALL_STATE(10396)] = 408359, - [SMALL_STATE(10397)] = 408369, - [SMALL_STATE(10398)] = 408379, - [SMALL_STATE(10399)] = 408389, - [SMALL_STATE(10400)] = 408399, - [SMALL_STATE(10401)] = 408409, - [SMALL_STATE(10402)] = 408419, - [SMALL_STATE(10403)] = 408429, - [SMALL_STATE(10404)] = 408439, - [SMALL_STATE(10405)] = 408449, - [SMALL_STATE(10406)] = 408459, - [SMALL_STATE(10407)] = 408469, - [SMALL_STATE(10408)] = 408479, - [SMALL_STATE(10409)] = 408489, - [SMALL_STATE(10410)] = 408499, - [SMALL_STATE(10411)] = 408509, - [SMALL_STATE(10412)] = 408519, - [SMALL_STATE(10413)] = 408529, - [SMALL_STATE(10414)] = 408539, - [SMALL_STATE(10415)] = 408549, - [SMALL_STATE(10416)] = 408559, - [SMALL_STATE(10417)] = 408569, - [SMALL_STATE(10418)] = 408579, - [SMALL_STATE(10419)] = 408589, - [SMALL_STATE(10420)] = 408599, - [SMALL_STATE(10421)] = 408609, - [SMALL_STATE(10422)] = 408619, - [SMALL_STATE(10423)] = 408629, - [SMALL_STATE(10424)] = 408639, - [SMALL_STATE(10425)] = 408649, - [SMALL_STATE(10426)] = 408659, - [SMALL_STATE(10427)] = 408669, - [SMALL_STATE(10428)] = 408679, - [SMALL_STATE(10429)] = 408689, - [SMALL_STATE(10430)] = 408699, - [SMALL_STATE(10431)] = 408709, - [SMALL_STATE(10432)] = 408719, - [SMALL_STATE(10433)] = 408729, - [SMALL_STATE(10434)] = 408739, - [SMALL_STATE(10435)] = 408749, - [SMALL_STATE(10436)] = 408759, - [SMALL_STATE(10437)] = 408769, - [SMALL_STATE(10438)] = 408779, - [SMALL_STATE(10439)] = 408789, - [SMALL_STATE(10440)] = 408799, - [SMALL_STATE(10441)] = 408809, - [SMALL_STATE(10442)] = 408819, - [SMALL_STATE(10443)] = 408829, - [SMALL_STATE(10444)] = 408839, - [SMALL_STATE(10445)] = 408849, - [SMALL_STATE(10446)] = 408859, - [SMALL_STATE(10447)] = 408869, - [SMALL_STATE(10448)] = 408879, - [SMALL_STATE(10449)] = 408889, - [SMALL_STATE(10450)] = 408899, - [SMALL_STATE(10451)] = 408909, - [SMALL_STATE(10452)] = 408919, - [SMALL_STATE(10453)] = 408929, - [SMALL_STATE(10454)] = 408939, - [SMALL_STATE(10455)] = 408949, - [SMALL_STATE(10456)] = 408959, - [SMALL_STATE(10457)] = 408969, - [SMALL_STATE(10458)] = 408979, - [SMALL_STATE(10459)] = 408989, - [SMALL_STATE(10460)] = 408999, - [SMALL_STATE(10461)] = 409009, - [SMALL_STATE(10462)] = 409019, - [SMALL_STATE(10463)] = 409029, - [SMALL_STATE(10464)] = 409039, - [SMALL_STATE(10465)] = 409049, - [SMALL_STATE(10466)] = 409059, - [SMALL_STATE(10467)] = 409069, - [SMALL_STATE(10468)] = 409079, - [SMALL_STATE(10469)] = 409089, - [SMALL_STATE(10470)] = 409099, - [SMALL_STATE(10471)] = 409109, - [SMALL_STATE(10472)] = 409119, - [SMALL_STATE(10473)] = 409129, - [SMALL_STATE(10474)] = 409139, - [SMALL_STATE(10475)] = 409149, - [SMALL_STATE(10476)] = 409159, - [SMALL_STATE(10477)] = 409169, - [SMALL_STATE(10478)] = 409179, - [SMALL_STATE(10479)] = 409189, - [SMALL_STATE(10480)] = 409199, - [SMALL_STATE(10481)] = 409209, - [SMALL_STATE(10482)] = 409219, - [SMALL_STATE(10483)] = 409229, - [SMALL_STATE(10484)] = 409239, - [SMALL_STATE(10485)] = 409249, - [SMALL_STATE(10486)] = 409259, - [SMALL_STATE(10487)] = 409269, - [SMALL_STATE(10488)] = 409279, - [SMALL_STATE(10489)] = 409289, - [SMALL_STATE(10490)] = 409299, - [SMALL_STATE(10491)] = 409309, - [SMALL_STATE(10492)] = 409319, - [SMALL_STATE(10493)] = 409329, - [SMALL_STATE(10494)] = 409339, - [SMALL_STATE(10495)] = 409349, - [SMALL_STATE(10496)] = 409359, - [SMALL_STATE(10497)] = 409369, - [SMALL_STATE(10498)] = 409379, - [SMALL_STATE(10499)] = 409389, - [SMALL_STATE(10500)] = 409399, - [SMALL_STATE(10501)] = 409409, - [SMALL_STATE(10502)] = 409419, - [SMALL_STATE(10503)] = 409429, - [SMALL_STATE(10504)] = 409439, - [SMALL_STATE(10505)] = 409449, - [SMALL_STATE(10506)] = 409459, - [SMALL_STATE(10507)] = 409469, - [SMALL_STATE(10508)] = 409479, - [SMALL_STATE(10509)] = 409489, - [SMALL_STATE(10510)] = 409499, - [SMALL_STATE(10511)] = 409509, - [SMALL_STATE(10512)] = 409519, - [SMALL_STATE(10513)] = 409529, - [SMALL_STATE(10514)] = 409539, - [SMALL_STATE(10515)] = 409549, - [SMALL_STATE(10516)] = 409559, - [SMALL_STATE(10517)] = 409569, - [SMALL_STATE(10518)] = 409579, - [SMALL_STATE(10519)] = 409589, - [SMALL_STATE(10520)] = 409599, - [SMALL_STATE(10521)] = 409609, - [SMALL_STATE(10522)] = 409619, - [SMALL_STATE(10523)] = 409629, - [SMALL_STATE(10524)] = 409639, - [SMALL_STATE(10525)] = 409649, - [SMALL_STATE(10526)] = 409659, - [SMALL_STATE(10527)] = 409669, - [SMALL_STATE(10528)] = 409679, - [SMALL_STATE(10529)] = 409689, - [SMALL_STATE(10530)] = 409699, - [SMALL_STATE(10531)] = 409709, - [SMALL_STATE(10532)] = 409719, - [SMALL_STATE(10533)] = 409729, - [SMALL_STATE(10534)] = 409739, - [SMALL_STATE(10535)] = 409749, - [SMALL_STATE(10536)] = 409759, - [SMALL_STATE(10537)] = 409769, - [SMALL_STATE(10538)] = 409779, - [SMALL_STATE(10539)] = 409789, - [SMALL_STATE(10540)] = 409799, - [SMALL_STATE(10541)] = 409809, - [SMALL_STATE(10542)] = 409819, - [SMALL_STATE(10543)] = 409829, - [SMALL_STATE(10544)] = 409839, - [SMALL_STATE(10545)] = 409849, - [SMALL_STATE(10546)] = 409859, - [SMALL_STATE(10547)] = 409869, - [SMALL_STATE(10548)] = 409879, - [SMALL_STATE(10549)] = 409889, - [SMALL_STATE(10550)] = 409899, - [SMALL_STATE(10551)] = 409909, - [SMALL_STATE(10552)] = 409919, - [SMALL_STATE(10553)] = 409929, - [SMALL_STATE(10554)] = 409939, - [SMALL_STATE(10555)] = 409949, - [SMALL_STATE(10556)] = 409959, - [SMALL_STATE(10557)] = 409969, - [SMALL_STATE(10558)] = 409979, - [SMALL_STATE(10559)] = 409989, - [SMALL_STATE(10560)] = 409999, - [SMALL_STATE(10561)] = 410009, - [SMALL_STATE(10562)] = 410019, - [SMALL_STATE(10563)] = 410029, - [SMALL_STATE(10564)] = 410039, - [SMALL_STATE(10565)] = 410049, - [SMALL_STATE(10566)] = 410059, - [SMALL_STATE(10567)] = 410069, - [SMALL_STATE(10568)] = 410079, - [SMALL_STATE(10569)] = 410089, - [SMALL_STATE(10570)] = 410099, - [SMALL_STATE(10571)] = 410109, - [SMALL_STATE(10572)] = 410119, - [SMALL_STATE(10573)] = 410129, - [SMALL_STATE(10574)] = 410139, - [SMALL_STATE(10575)] = 410149, - [SMALL_STATE(10576)] = 410159, - [SMALL_STATE(10577)] = 410169, - [SMALL_STATE(10578)] = 410179, - [SMALL_STATE(10579)] = 410189, - [SMALL_STATE(10580)] = 410199, - [SMALL_STATE(10581)] = 410209, - [SMALL_STATE(10582)] = 410219, - [SMALL_STATE(10583)] = 410229, - [SMALL_STATE(10584)] = 410239, - [SMALL_STATE(10585)] = 410249, - [SMALL_STATE(10586)] = 410259, - [SMALL_STATE(10587)] = 410269, - [SMALL_STATE(10588)] = 410279, - [SMALL_STATE(10589)] = 410289, - [SMALL_STATE(10590)] = 410299, - [SMALL_STATE(10591)] = 410309, - [SMALL_STATE(10592)] = 410319, - [SMALL_STATE(10593)] = 410329, - [SMALL_STATE(10594)] = 410339, - [SMALL_STATE(10595)] = 410349, - [SMALL_STATE(10596)] = 410359, - [SMALL_STATE(10597)] = 410369, - [SMALL_STATE(10598)] = 410379, - [SMALL_STATE(10599)] = 410389, - [SMALL_STATE(10600)] = 410399, - [SMALL_STATE(10601)] = 410409, - [SMALL_STATE(10602)] = 410419, - [SMALL_STATE(10603)] = 410429, - [SMALL_STATE(10604)] = 410439, - [SMALL_STATE(10605)] = 410449, - [SMALL_STATE(10606)] = 410459, - [SMALL_STATE(10607)] = 410469, - [SMALL_STATE(10608)] = 410479, - [SMALL_STATE(10609)] = 410489, - [SMALL_STATE(10610)] = 410499, - [SMALL_STATE(10611)] = 410509, - [SMALL_STATE(10612)] = 410519, - [SMALL_STATE(10613)] = 410529, - [SMALL_STATE(10614)] = 410539, - [SMALL_STATE(10615)] = 410549, - [SMALL_STATE(10616)] = 410559, - [SMALL_STATE(10617)] = 410569, - [SMALL_STATE(10618)] = 410579, - [SMALL_STATE(10619)] = 410589, - [SMALL_STATE(10620)] = 410599, - [SMALL_STATE(10621)] = 410609, - [SMALL_STATE(10622)] = 410619, - [SMALL_STATE(10623)] = 410629, - [SMALL_STATE(10624)] = 410639, - [SMALL_STATE(10625)] = 410649, - [SMALL_STATE(10626)] = 410659, - [SMALL_STATE(10627)] = 410669, - [SMALL_STATE(10628)] = 410679, - [SMALL_STATE(10629)] = 410689, - [SMALL_STATE(10630)] = 410699, - [SMALL_STATE(10631)] = 410709, - [SMALL_STATE(10632)] = 410719, - [SMALL_STATE(10633)] = 410729, - [SMALL_STATE(10634)] = 410739, - [SMALL_STATE(10635)] = 410749, - [SMALL_STATE(10636)] = 410759, - [SMALL_STATE(10637)] = 410769, - [SMALL_STATE(10638)] = 410779, - [SMALL_STATE(10639)] = 410789, - [SMALL_STATE(10640)] = 410799, - [SMALL_STATE(10641)] = 410809, - [SMALL_STATE(10642)] = 410819, - [SMALL_STATE(10643)] = 410829, - [SMALL_STATE(10644)] = 410839, - [SMALL_STATE(10645)] = 410849, - [SMALL_STATE(10646)] = 410859, - [SMALL_STATE(10647)] = 410869, - [SMALL_STATE(10648)] = 410879, - [SMALL_STATE(10649)] = 410889, - [SMALL_STATE(10650)] = 410899, - [SMALL_STATE(10651)] = 410909, - [SMALL_STATE(10652)] = 410919, - [SMALL_STATE(10653)] = 410929, - [SMALL_STATE(10654)] = 410939, - [SMALL_STATE(10655)] = 410949, - [SMALL_STATE(10656)] = 410959, - [SMALL_STATE(10657)] = 410969, - [SMALL_STATE(10658)] = 410979, - [SMALL_STATE(10659)] = 410989, - [SMALL_STATE(10660)] = 410999, - [SMALL_STATE(10661)] = 411009, - [SMALL_STATE(10662)] = 411019, - [SMALL_STATE(10663)] = 411029, - [SMALL_STATE(10664)] = 411039, - [SMALL_STATE(10665)] = 411049, - [SMALL_STATE(10666)] = 411059, - [SMALL_STATE(10667)] = 411069, - [SMALL_STATE(10668)] = 411079, - [SMALL_STATE(10669)] = 411089, - [SMALL_STATE(10670)] = 411099, - [SMALL_STATE(10671)] = 411109, - [SMALL_STATE(10672)] = 411119, - [SMALL_STATE(10673)] = 411129, - [SMALL_STATE(10674)] = 411139, - [SMALL_STATE(10675)] = 411149, - [SMALL_STATE(10676)] = 411159, - [SMALL_STATE(10677)] = 411169, - [SMALL_STATE(10678)] = 411179, - [SMALL_STATE(10679)] = 411189, - [SMALL_STATE(10680)] = 411199, - [SMALL_STATE(10681)] = 411209, - [SMALL_STATE(10682)] = 411219, - [SMALL_STATE(10683)] = 411229, - [SMALL_STATE(10684)] = 411239, - [SMALL_STATE(10685)] = 411249, - [SMALL_STATE(10686)] = 411259, - [SMALL_STATE(10687)] = 411269, - [SMALL_STATE(10688)] = 411279, - [SMALL_STATE(10689)] = 411289, - [SMALL_STATE(10690)] = 411299, - [SMALL_STATE(10691)] = 411309, - [SMALL_STATE(10692)] = 411319, - [SMALL_STATE(10693)] = 411329, - [SMALL_STATE(10694)] = 411339, - [SMALL_STATE(10695)] = 411349, - [SMALL_STATE(10696)] = 411359, - [SMALL_STATE(10697)] = 411369, - [SMALL_STATE(10698)] = 411379, - [SMALL_STATE(10699)] = 411389, - [SMALL_STATE(10700)] = 411399, - [SMALL_STATE(10701)] = 411409, - [SMALL_STATE(10702)] = 411419, - [SMALL_STATE(10703)] = 411429, - [SMALL_STATE(10704)] = 411439, - [SMALL_STATE(10705)] = 411449, - [SMALL_STATE(10706)] = 411459, - [SMALL_STATE(10707)] = 411469, - [SMALL_STATE(10708)] = 411479, - [SMALL_STATE(10709)] = 411489, - [SMALL_STATE(10710)] = 411499, - [SMALL_STATE(10711)] = 411509, - [SMALL_STATE(10712)] = 411519, - [SMALL_STATE(10713)] = 411529, - [SMALL_STATE(10714)] = 411539, - [SMALL_STATE(10715)] = 411549, - [SMALL_STATE(10716)] = 411559, - [SMALL_STATE(10717)] = 411569, - [SMALL_STATE(10718)] = 411579, - [SMALL_STATE(10719)] = 411589, - [SMALL_STATE(10720)] = 411599, - [SMALL_STATE(10721)] = 411609, - [SMALL_STATE(10722)] = 411619, - [SMALL_STATE(10723)] = 411629, - [SMALL_STATE(10724)] = 411639, - [SMALL_STATE(10725)] = 411649, - [SMALL_STATE(10726)] = 411659, - [SMALL_STATE(10727)] = 411669, - [SMALL_STATE(10728)] = 411679, - [SMALL_STATE(10729)] = 411689, - [SMALL_STATE(10730)] = 411699, - [SMALL_STATE(10731)] = 411709, - [SMALL_STATE(10732)] = 411719, - [SMALL_STATE(10733)] = 411729, - [SMALL_STATE(10734)] = 411739, - [SMALL_STATE(10735)] = 411749, - [SMALL_STATE(10736)] = 411759, - [SMALL_STATE(10737)] = 411769, - [SMALL_STATE(10738)] = 411779, - [SMALL_STATE(10739)] = 411789, - [SMALL_STATE(10740)] = 411799, - [SMALL_STATE(10741)] = 411809, - [SMALL_STATE(10742)] = 411819, - [SMALL_STATE(10743)] = 411829, - [SMALL_STATE(10744)] = 411839, - [SMALL_STATE(10745)] = 411849, - [SMALL_STATE(10746)] = 411859, - [SMALL_STATE(10747)] = 411869, - [SMALL_STATE(10748)] = 411879, - [SMALL_STATE(10749)] = 411889, - [SMALL_STATE(10750)] = 411899, - [SMALL_STATE(10751)] = 411909, - [SMALL_STATE(10752)] = 411919, - [SMALL_STATE(10753)] = 411929, - [SMALL_STATE(10754)] = 411939, - [SMALL_STATE(10755)] = 411949, - [SMALL_STATE(10756)] = 411959, - [SMALL_STATE(10757)] = 411969, - [SMALL_STATE(10758)] = 411979, - [SMALL_STATE(10759)] = 411989, - [SMALL_STATE(10760)] = 411999, - [SMALL_STATE(10761)] = 412009, - [SMALL_STATE(10762)] = 412019, - [SMALL_STATE(10763)] = 412029, - [SMALL_STATE(10764)] = 412039, - [SMALL_STATE(10765)] = 412049, - [SMALL_STATE(10766)] = 412059, - [SMALL_STATE(10767)] = 412069, - [SMALL_STATE(10768)] = 412079, - [SMALL_STATE(10769)] = 412089, - [SMALL_STATE(10770)] = 412099, - [SMALL_STATE(10771)] = 412109, - [SMALL_STATE(10772)] = 412119, - [SMALL_STATE(10773)] = 412129, - [SMALL_STATE(10774)] = 412139, - [SMALL_STATE(10775)] = 412149, - [SMALL_STATE(10776)] = 412159, - [SMALL_STATE(10777)] = 412169, - [SMALL_STATE(10778)] = 412179, - [SMALL_STATE(10779)] = 412189, - [SMALL_STATE(10780)] = 412199, - [SMALL_STATE(10781)] = 412209, - [SMALL_STATE(10782)] = 412219, - [SMALL_STATE(10783)] = 412229, - [SMALL_STATE(10784)] = 412239, - [SMALL_STATE(10785)] = 412249, - [SMALL_STATE(10786)] = 412259, - [SMALL_STATE(10787)] = 412269, - [SMALL_STATE(10788)] = 412279, - [SMALL_STATE(10789)] = 412289, - [SMALL_STATE(10790)] = 412299, - [SMALL_STATE(10791)] = 412309, - [SMALL_STATE(10792)] = 412319, - [SMALL_STATE(10793)] = 412329, - [SMALL_STATE(10794)] = 412339, - [SMALL_STATE(10795)] = 412349, - [SMALL_STATE(10796)] = 412359, - [SMALL_STATE(10797)] = 412369, - [SMALL_STATE(10798)] = 412379, - [SMALL_STATE(10799)] = 412389, - [SMALL_STATE(10800)] = 412399, - [SMALL_STATE(10801)] = 412409, - [SMALL_STATE(10802)] = 412419, - [SMALL_STATE(10803)] = 412429, - [SMALL_STATE(10804)] = 412439, - [SMALL_STATE(10805)] = 412449, - [SMALL_STATE(10806)] = 412459, - [SMALL_STATE(10807)] = 412469, - [SMALL_STATE(10808)] = 412479, - [SMALL_STATE(10809)] = 412489, - [SMALL_STATE(10810)] = 412499, - [SMALL_STATE(10811)] = 412509, - [SMALL_STATE(10812)] = 412519, - [SMALL_STATE(10813)] = 412529, - [SMALL_STATE(10814)] = 412539, - [SMALL_STATE(10815)] = 412549, - [SMALL_STATE(10816)] = 412559, - [SMALL_STATE(10817)] = 412569, - [SMALL_STATE(10818)] = 412579, - [SMALL_STATE(10819)] = 412589, - [SMALL_STATE(10820)] = 412599, - [SMALL_STATE(10821)] = 412609, - [SMALL_STATE(10822)] = 412619, - [SMALL_STATE(10823)] = 412629, - [SMALL_STATE(10824)] = 412639, - [SMALL_STATE(10825)] = 412649, - [SMALL_STATE(10826)] = 412659, - [SMALL_STATE(10827)] = 412669, - [SMALL_STATE(10828)] = 412679, - [SMALL_STATE(10829)] = 412689, - [SMALL_STATE(10830)] = 412699, - [SMALL_STATE(10831)] = 412709, - [SMALL_STATE(10832)] = 412719, - [SMALL_STATE(10833)] = 412729, - [SMALL_STATE(10834)] = 412739, - [SMALL_STATE(10835)] = 412749, - [SMALL_STATE(10836)] = 412759, - [SMALL_STATE(10837)] = 412769, - [SMALL_STATE(10838)] = 412779, - [SMALL_STATE(10839)] = 412789, - [SMALL_STATE(10840)] = 412799, - [SMALL_STATE(10841)] = 412809, - [SMALL_STATE(10842)] = 412819, - [SMALL_STATE(10843)] = 412829, - [SMALL_STATE(10844)] = 412839, - [SMALL_STATE(10845)] = 412849, - [SMALL_STATE(10846)] = 412859, - [SMALL_STATE(10847)] = 412869, - [SMALL_STATE(10848)] = 412879, - [SMALL_STATE(10849)] = 412889, - [SMALL_STATE(10850)] = 412899, - [SMALL_STATE(10851)] = 412909, - [SMALL_STATE(10852)] = 412919, - [SMALL_STATE(10853)] = 412929, - [SMALL_STATE(10854)] = 412939, - [SMALL_STATE(10855)] = 412949, - [SMALL_STATE(10856)] = 412959, - [SMALL_STATE(10857)] = 412969, - [SMALL_STATE(10858)] = 412979, - [SMALL_STATE(10859)] = 412989, - [SMALL_STATE(10860)] = 412999, - [SMALL_STATE(10861)] = 413009, - [SMALL_STATE(10862)] = 413019, - [SMALL_STATE(10863)] = 413029, - [SMALL_STATE(10864)] = 413039, - [SMALL_STATE(10865)] = 413049, - [SMALL_STATE(10866)] = 413059, - [SMALL_STATE(10867)] = 413069, - [SMALL_STATE(10868)] = 413079, - [SMALL_STATE(10869)] = 413089, - [SMALL_STATE(10870)] = 413099, - [SMALL_STATE(10871)] = 413109, - [SMALL_STATE(10872)] = 413119, - [SMALL_STATE(10873)] = 413129, - [SMALL_STATE(10874)] = 413139, - [SMALL_STATE(10875)] = 413149, - [SMALL_STATE(10876)] = 413159, - [SMALL_STATE(10877)] = 413169, - [SMALL_STATE(10878)] = 413179, - [SMALL_STATE(10879)] = 413189, - [SMALL_STATE(10880)] = 413199, - [SMALL_STATE(10881)] = 413209, - [SMALL_STATE(10882)] = 413219, - [SMALL_STATE(10883)] = 413229, - [SMALL_STATE(10884)] = 413239, - [SMALL_STATE(10885)] = 413249, - [SMALL_STATE(10886)] = 413259, - [SMALL_STATE(10887)] = 413269, - [SMALL_STATE(10888)] = 413279, - [SMALL_STATE(10889)] = 413289, - [SMALL_STATE(10890)] = 413299, - [SMALL_STATE(10891)] = 413309, - [SMALL_STATE(10892)] = 413319, - [SMALL_STATE(10893)] = 413329, - [SMALL_STATE(10894)] = 413339, - [SMALL_STATE(10895)] = 413349, - [SMALL_STATE(10896)] = 413359, - [SMALL_STATE(10897)] = 413369, - [SMALL_STATE(10898)] = 413379, - [SMALL_STATE(10899)] = 413389, - [SMALL_STATE(10900)] = 413399, - [SMALL_STATE(10901)] = 413409, - [SMALL_STATE(10902)] = 413419, - [SMALL_STATE(10903)] = 413429, - [SMALL_STATE(10904)] = 413439, - [SMALL_STATE(10905)] = 413449, - [SMALL_STATE(10906)] = 413459, - [SMALL_STATE(10907)] = 413469, - [SMALL_STATE(10908)] = 413479, - [SMALL_STATE(10909)] = 413489, - [SMALL_STATE(10910)] = 413499, - [SMALL_STATE(10911)] = 413509, - [SMALL_STATE(10912)] = 413519, - [SMALL_STATE(10913)] = 413529, - [SMALL_STATE(10914)] = 413539, - [SMALL_STATE(10915)] = 413549, - [SMALL_STATE(10916)] = 413559, - [SMALL_STATE(10917)] = 413569, - [SMALL_STATE(10918)] = 413579, - [SMALL_STATE(10919)] = 413589, - [SMALL_STATE(10920)] = 413599, - [SMALL_STATE(10921)] = 413609, - [SMALL_STATE(10922)] = 413619, - [SMALL_STATE(10923)] = 413629, - [SMALL_STATE(10924)] = 413639, - [SMALL_STATE(10925)] = 413649, - [SMALL_STATE(10926)] = 413659, - [SMALL_STATE(10927)] = 413669, - [SMALL_STATE(10928)] = 413679, - [SMALL_STATE(10929)] = 413689, - [SMALL_STATE(10930)] = 413699, - [SMALL_STATE(10931)] = 413709, - [SMALL_STATE(10932)] = 413719, - [SMALL_STATE(10933)] = 413729, - [SMALL_STATE(10934)] = 413739, - [SMALL_STATE(10935)] = 413749, - [SMALL_STATE(10936)] = 413759, - [SMALL_STATE(10937)] = 413769, - [SMALL_STATE(10938)] = 413779, - [SMALL_STATE(10939)] = 413789, - [SMALL_STATE(10940)] = 413799, - [SMALL_STATE(10941)] = 413809, - [SMALL_STATE(10942)] = 413819, - [SMALL_STATE(10943)] = 413829, - [SMALL_STATE(10944)] = 413839, - [SMALL_STATE(10945)] = 413849, - [SMALL_STATE(10946)] = 413859, - [SMALL_STATE(10947)] = 413869, - [SMALL_STATE(10948)] = 413879, - [SMALL_STATE(10949)] = 413889, - [SMALL_STATE(10950)] = 413899, - [SMALL_STATE(10951)] = 413909, - [SMALL_STATE(10952)] = 413919, - [SMALL_STATE(10953)] = 413929, - [SMALL_STATE(10954)] = 413939, - [SMALL_STATE(10955)] = 413949, - [SMALL_STATE(10956)] = 413959, - [SMALL_STATE(10957)] = 413969, - [SMALL_STATE(10958)] = 413979, - [SMALL_STATE(10959)] = 413989, - [SMALL_STATE(10960)] = 413999, - [SMALL_STATE(10961)] = 414009, - [SMALL_STATE(10962)] = 414019, - [SMALL_STATE(10963)] = 414029, - [SMALL_STATE(10964)] = 414039, - [SMALL_STATE(10965)] = 414049, - [SMALL_STATE(10966)] = 414059, - [SMALL_STATE(10967)] = 414069, - [SMALL_STATE(10968)] = 414079, - [SMALL_STATE(10969)] = 414089, - [SMALL_STATE(10970)] = 414099, - [SMALL_STATE(10971)] = 414109, - [SMALL_STATE(10972)] = 414119, - [SMALL_STATE(10973)] = 414129, - [SMALL_STATE(10974)] = 414139, - [SMALL_STATE(10975)] = 414149, - [SMALL_STATE(10976)] = 414159, - [SMALL_STATE(10977)] = 414169, - [SMALL_STATE(10978)] = 414179, - [SMALL_STATE(10979)] = 414189, - [SMALL_STATE(10980)] = 414199, - [SMALL_STATE(10981)] = 414209, - [SMALL_STATE(10982)] = 414219, - [SMALL_STATE(10983)] = 414229, - [SMALL_STATE(10984)] = 414239, - [SMALL_STATE(10985)] = 414249, - [SMALL_STATE(10986)] = 414259, - [SMALL_STATE(10987)] = 414269, - [SMALL_STATE(10988)] = 414279, - [SMALL_STATE(10989)] = 414289, - [SMALL_STATE(10990)] = 414299, - [SMALL_STATE(10991)] = 414309, - [SMALL_STATE(10992)] = 414319, - [SMALL_STATE(10993)] = 414329, - [SMALL_STATE(10994)] = 414339, - [SMALL_STATE(10995)] = 414349, - [SMALL_STATE(10996)] = 414359, - [SMALL_STATE(10997)] = 414369, - [SMALL_STATE(10998)] = 414379, - [SMALL_STATE(10999)] = 414389, - [SMALL_STATE(11000)] = 414399, - [SMALL_STATE(11001)] = 414409, - [SMALL_STATE(11002)] = 414419, - [SMALL_STATE(11003)] = 414429, - [SMALL_STATE(11004)] = 414439, - [SMALL_STATE(11005)] = 414449, - [SMALL_STATE(11006)] = 414459, - [SMALL_STATE(11007)] = 414469, - [SMALL_STATE(11008)] = 414479, - [SMALL_STATE(11009)] = 414489, - [SMALL_STATE(11010)] = 414499, - [SMALL_STATE(11011)] = 414509, - [SMALL_STATE(11012)] = 414519, - [SMALL_STATE(11013)] = 414529, - [SMALL_STATE(11014)] = 414539, - [SMALL_STATE(11015)] = 414549, - [SMALL_STATE(11016)] = 414559, - [SMALL_STATE(11017)] = 414569, - [SMALL_STATE(11018)] = 414579, - [SMALL_STATE(11019)] = 414589, - [SMALL_STATE(11020)] = 414599, - [SMALL_STATE(11021)] = 414609, - [SMALL_STATE(11022)] = 414619, - [SMALL_STATE(11023)] = 414629, - [SMALL_STATE(11024)] = 414639, - [SMALL_STATE(11025)] = 414649, - [SMALL_STATE(11026)] = 414659, - [SMALL_STATE(11027)] = 414669, - [SMALL_STATE(11028)] = 414679, - [SMALL_STATE(11029)] = 414689, - [SMALL_STATE(11030)] = 414699, - [SMALL_STATE(11031)] = 414709, - [SMALL_STATE(11032)] = 414719, - [SMALL_STATE(11033)] = 414729, - [SMALL_STATE(11034)] = 414739, - [SMALL_STATE(11035)] = 414749, - [SMALL_STATE(11036)] = 414759, - [SMALL_STATE(11037)] = 414769, - [SMALL_STATE(11038)] = 414779, - [SMALL_STATE(11039)] = 414789, - [SMALL_STATE(11040)] = 414799, - [SMALL_STATE(11041)] = 414809, - [SMALL_STATE(11042)] = 414819, - [SMALL_STATE(11043)] = 414829, - [SMALL_STATE(11044)] = 414839, - [SMALL_STATE(11045)] = 414849, - [SMALL_STATE(11046)] = 414859, - [SMALL_STATE(11047)] = 414869, - [SMALL_STATE(11048)] = 414879, - [SMALL_STATE(11049)] = 414889, - [SMALL_STATE(11050)] = 414899, - [SMALL_STATE(11051)] = 414909, - [SMALL_STATE(11052)] = 414919, - [SMALL_STATE(11053)] = 414929, - [SMALL_STATE(11054)] = 414939, - [SMALL_STATE(11055)] = 414949, - [SMALL_STATE(11056)] = 414959, - [SMALL_STATE(11057)] = 414969, - [SMALL_STATE(11058)] = 414979, - [SMALL_STATE(11059)] = 414989, - [SMALL_STATE(11060)] = 414999, - [SMALL_STATE(11061)] = 415009, - [SMALL_STATE(11062)] = 415019, - [SMALL_STATE(11063)] = 415029, - [SMALL_STATE(11064)] = 415039, - [SMALL_STATE(11065)] = 415049, - [SMALL_STATE(11066)] = 415059, - [SMALL_STATE(11067)] = 415069, - [SMALL_STATE(11068)] = 415079, - [SMALL_STATE(11069)] = 415089, - [SMALL_STATE(11070)] = 415099, - [SMALL_STATE(11071)] = 415109, - [SMALL_STATE(11072)] = 415119, - [SMALL_STATE(11073)] = 415129, - [SMALL_STATE(11074)] = 415139, - [SMALL_STATE(11075)] = 415149, - [SMALL_STATE(11076)] = 415159, - [SMALL_STATE(11077)] = 415169, - [SMALL_STATE(11078)] = 415179, - [SMALL_STATE(11079)] = 415189, - [SMALL_STATE(11080)] = 415199, - [SMALL_STATE(11081)] = 415209, - [SMALL_STATE(11082)] = 415219, - [SMALL_STATE(11083)] = 415229, - [SMALL_STATE(11084)] = 415239, - [SMALL_STATE(11085)] = 415249, - [SMALL_STATE(11086)] = 415259, - [SMALL_STATE(11087)] = 415269, - [SMALL_STATE(11088)] = 415279, - [SMALL_STATE(11089)] = 415289, - [SMALL_STATE(11090)] = 415299, - [SMALL_STATE(11091)] = 415309, - [SMALL_STATE(11092)] = 415319, - [SMALL_STATE(11093)] = 415329, - [SMALL_STATE(11094)] = 415339, - [SMALL_STATE(11095)] = 415349, - [SMALL_STATE(11096)] = 415359, - [SMALL_STATE(11097)] = 415369, - [SMALL_STATE(11098)] = 415379, - [SMALL_STATE(11099)] = 415389, - [SMALL_STATE(11100)] = 415399, - [SMALL_STATE(11101)] = 415409, - [SMALL_STATE(11102)] = 415419, - [SMALL_STATE(11103)] = 415429, - [SMALL_STATE(11104)] = 415439, - [SMALL_STATE(11105)] = 415449, - [SMALL_STATE(11106)] = 415459, - [SMALL_STATE(11107)] = 415469, - [SMALL_STATE(11108)] = 415479, - [SMALL_STATE(11109)] = 415489, - [SMALL_STATE(11110)] = 415499, - [SMALL_STATE(11111)] = 415509, - [SMALL_STATE(11112)] = 415519, - [SMALL_STATE(11113)] = 415529, - [SMALL_STATE(11114)] = 415539, - [SMALL_STATE(11115)] = 415549, - [SMALL_STATE(11116)] = 415559, - [SMALL_STATE(11117)] = 415569, - [SMALL_STATE(11118)] = 415579, - [SMALL_STATE(11119)] = 415589, - [SMALL_STATE(11120)] = 415599, - [SMALL_STATE(11121)] = 415609, - [SMALL_STATE(11122)] = 415619, - [SMALL_STATE(11123)] = 415629, - [SMALL_STATE(11124)] = 415639, - [SMALL_STATE(11125)] = 415649, - [SMALL_STATE(11126)] = 415659, - [SMALL_STATE(11127)] = 415669, - [SMALL_STATE(11128)] = 415679, - [SMALL_STATE(11129)] = 415689, - [SMALL_STATE(11130)] = 415699, - [SMALL_STATE(11131)] = 415709, - [SMALL_STATE(11132)] = 415719, - [SMALL_STATE(11133)] = 415729, - [SMALL_STATE(11134)] = 415739, - [SMALL_STATE(11135)] = 415749, - [SMALL_STATE(11136)] = 415759, - [SMALL_STATE(11137)] = 415769, - [SMALL_STATE(11138)] = 415779, - [SMALL_STATE(11139)] = 415789, - [SMALL_STATE(11140)] = 415799, - [SMALL_STATE(11141)] = 415809, - [SMALL_STATE(11142)] = 415819, - [SMALL_STATE(11143)] = 415829, - [SMALL_STATE(11144)] = 415839, - [SMALL_STATE(11145)] = 415849, - [SMALL_STATE(11146)] = 415859, - [SMALL_STATE(11147)] = 415869, - [SMALL_STATE(11148)] = 415879, - [SMALL_STATE(11149)] = 415889, - [SMALL_STATE(11150)] = 415899, - [SMALL_STATE(11151)] = 415909, - [SMALL_STATE(11152)] = 415919, - [SMALL_STATE(11153)] = 415929, - [SMALL_STATE(11154)] = 415939, - [SMALL_STATE(11155)] = 415949, - [SMALL_STATE(11156)] = 415959, - [SMALL_STATE(11157)] = 415969, - [SMALL_STATE(11158)] = 415979, - [SMALL_STATE(11159)] = 415989, - [SMALL_STATE(11160)] = 415999, - [SMALL_STATE(11161)] = 416009, - [SMALL_STATE(11162)] = 416019, - [SMALL_STATE(11163)] = 416029, - [SMALL_STATE(11164)] = 416039, - [SMALL_STATE(11165)] = 416049, - [SMALL_STATE(11166)] = 416059, - [SMALL_STATE(11167)] = 416069, - [SMALL_STATE(11168)] = 416079, - [SMALL_STATE(11169)] = 416089, - [SMALL_STATE(11170)] = 416099, - [SMALL_STATE(11171)] = 416109, - [SMALL_STATE(11172)] = 416119, - [SMALL_STATE(11173)] = 416129, - [SMALL_STATE(11174)] = 416139, - [SMALL_STATE(11175)] = 416149, - [SMALL_STATE(11176)] = 416159, - [SMALL_STATE(11177)] = 416169, - [SMALL_STATE(11178)] = 416179, - [SMALL_STATE(11179)] = 416189, - [SMALL_STATE(11180)] = 416199, - [SMALL_STATE(11181)] = 416209, - [SMALL_STATE(11182)] = 416219, - [SMALL_STATE(11183)] = 416229, - [SMALL_STATE(11184)] = 416239, - [SMALL_STATE(11185)] = 416249, - [SMALL_STATE(11186)] = 416259, - [SMALL_STATE(11187)] = 416269, - [SMALL_STATE(11188)] = 416279, - [SMALL_STATE(11189)] = 416289, - [SMALL_STATE(11190)] = 416299, - [SMALL_STATE(11191)] = 416309, - [SMALL_STATE(11192)] = 416319, - [SMALL_STATE(11193)] = 416329, - [SMALL_STATE(11194)] = 416339, - [SMALL_STATE(11195)] = 416349, - [SMALL_STATE(11196)] = 416359, - [SMALL_STATE(11197)] = 416369, - [SMALL_STATE(11198)] = 416379, - [SMALL_STATE(11199)] = 416389, - [SMALL_STATE(11200)] = 416399, - [SMALL_STATE(11201)] = 416409, - [SMALL_STATE(11202)] = 416419, - [SMALL_STATE(11203)] = 416429, - [SMALL_STATE(11204)] = 416439, - [SMALL_STATE(11205)] = 416449, - [SMALL_STATE(11206)] = 416459, - [SMALL_STATE(11207)] = 416469, - [SMALL_STATE(11208)] = 416479, - [SMALL_STATE(11209)] = 416489, - [SMALL_STATE(11210)] = 416499, - [SMALL_STATE(11211)] = 416509, - [SMALL_STATE(11212)] = 416519, - [SMALL_STATE(11213)] = 416529, - [SMALL_STATE(11214)] = 416539, - [SMALL_STATE(11215)] = 416549, - [SMALL_STATE(11216)] = 416559, - [SMALL_STATE(11217)] = 416569, - [SMALL_STATE(11218)] = 416579, - [SMALL_STATE(11219)] = 416589, - [SMALL_STATE(11220)] = 416599, - [SMALL_STATE(11221)] = 416609, - [SMALL_STATE(11222)] = 416619, - [SMALL_STATE(11223)] = 416629, - [SMALL_STATE(11224)] = 416639, - [SMALL_STATE(11225)] = 416649, - [SMALL_STATE(11226)] = 416659, - [SMALL_STATE(11227)] = 416669, - [SMALL_STATE(11228)] = 416679, - [SMALL_STATE(11229)] = 416689, - [SMALL_STATE(11230)] = 416699, - [SMALL_STATE(11231)] = 416709, - [SMALL_STATE(11232)] = 416719, - [SMALL_STATE(11233)] = 416729, - [SMALL_STATE(11234)] = 416739, - [SMALL_STATE(11235)] = 416749, - [SMALL_STATE(11236)] = 416759, - [SMALL_STATE(11237)] = 416769, - [SMALL_STATE(11238)] = 416779, - [SMALL_STATE(11239)] = 416789, - [SMALL_STATE(11240)] = 416799, - [SMALL_STATE(11241)] = 416809, - [SMALL_STATE(11242)] = 416819, - [SMALL_STATE(11243)] = 416829, - [SMALL_STATE(11244)] = 416839, - [SMALL_STATE(11245)] = 416849, - [SMALL_STATE(11246)] = 416859, - [SMALL_STATE(11247)] = 416869, - [SMALL_STATE(11248)] = 416879, - [SMALL_STATE(11249)] = 416889, - [SMALL_STATE(11250)] = 416899, - [SMALL_STATE(11251)] = 416909, - [SMALL_STATE(11252)] = 416919, - [SMALL_STATE(11253)] = 416929, - [SMALL_STATE(11254)] = 416939, - [SMALL_STATE(11255)] = 416949, - [SMALL_STATE(11256)] = 416959, - [SMALL_STATE(11257)] = 416969, - [SMALL_STATE(11258)] = 416979, - [SMALL_STATE(11259)] = 416989, - [SMALL_STATE(11260)] = 416999, - [SMALL_STATE(11261)] = 417009, - [SMALL_STATE(11262)] = 417019, - [SMALL_STATE(11263)] = 417029, - [SMALL_STATE(11264)] = 417039, - [SMALL_STATE(11265)] = 417049, - [SMALL_STATE(11266)] = 417059, - [SMALL_STATE(11267)] = 417069, - [SMALL_STATE(11268)] = 417079, - [SMALL_STATE(11269)] = 417089, - [SMALL_STATE(11270)] = 417099, - [SMALL_STATE(11271)] = 417109, - [SMALL_STATE(11272)] = 417119, - [SMALL_STATE(11273)] = 417129, - [SMALL_STATE(11274)] = 417139, - [SMALL_STATE(11275)] = 417149, - [SMALL_STATE(11276)] = 417159, - [SMALL_STATE(11277)] = 417169, - [SMALL_STATE(11278)] = 417179, - [SMALL_STATE(11279)] = 417189, - [SMALL_STATE(11280)] = 417199, - [SMALL_STATE(11281)] = 417209, - [SMALL_STATE(11282)] = 417219, - [SMALL_STATE(11283)] = 417229, - [SMALL_STATE(11284)] = 417239, - [SMALL_STATE(11285)] = 417249, - [SMALL_STATE(11286)] = 417259, - [SMALL_STATE(11287)] = 417269, - [SMALL_STATE(11288)] = 417279, - [SMALL_STATE(11289)] = 417289, - [SMALL_STATE(11290)] = 417299, - [SMALL_STATE(11291)] = 417309, - [SMALL_STATE(11292)] = 417319, - [SMALL_STATE(11293)] = 417329, - [SMALL_STATE(11294)] = 417339, - [SMALL_STATE(11295)] = 417349, - [SMALL_STATE(11296)] = 417359, - [SMALL_STATE(11297)] = 417369, - [SMALL_STATE(11298)] = 417379, - [SMALL_STATE(11299)] = 417389, - [SMALL_STATE(11300)] = 417399, - [SMALL_STATE(11301)] = 417409, - [SMALL_STATE(11302)] = 417419, - [SMALL_STATE(11303)] = 417429, - [SMALL_STATE(11304)] = 417439, - [SMALL_STATE(11305)] = 417449, - [SMALL_STATE(11306)] = 417459, - [SMALL_STATE(11307)] = 417469, - [SMALL_STATE(11308)] = 417479, - [SMALL_STATE(11309)] = 417489, - [SMALL_STATE(11310)] = 417499, - [SMALL_STATE(11311)] = 417509, - [SMALL_STATE(11312)] = 417519, - [SMALL_STATE(11313)] = 417529, - [SMALL_STATE(11314)] = 417539, - [SMALL_STATE(11315)] = 417549, - [SMALL_STATE(11316)] = 417559, - [SMALL_STATE(11317)] = 417569, - [SMALL_STATE(11318)] = 417579, - [SMALL_STATE(11319)] = 417589, - [SMALL_STATE(11320)] = 417599, - [SMALL_STATE(11321)] = 417609, - [SMALL_STATE(11322)] = 417619, - [SMALL_STATE(11323)] = 417629, - [SMALL_STATE(11324)] = 417639, - [SMALL_STATE(11325)] = 417649, - [SMALL_STATE(11326)] = 417659, - [SMALL_STATE(11327)] = 417669, - [SMALL_STATE(11328)] = 417679, - [SMALL_STATE(11329)] = 417689, - [SMALL_STATE(11330)] = 417699, - [SMALL_STATE(11331)] = 417709, - [SMALL_STATE(11332)] = 417719, - [SMALL_STATE(11333)] = 417729, - [SMALL_STATE(11334)] = 417739, - [SMALL_STATE(11335)] = 417749, - [SMALL_STATE(11336)] = 417759, - [SMALL_STATE(11337)] = 417769, - [SMALL_STATE(11338)] = 417779, - [SMALL_STATE(11339)] = 417789, - [SMALL_STATE(11340)] = 417799, - [SMALL_STATE(11341)] = 417809, - [SMALL_STATE(11342)] = 417819, - [SMALL_STATE(11343)] = 417829, - [SMALL_STATE(11344)] = 417839, - [SMALL_STATE(11345)] = 417849, - [SMALL_STATE(11346)] = 417859, - [SMALL_STATE(11347)] = 417869, - [SMALL_STATE(11348)] = 417879, - [SMALL_STATE(11349)] = 417889, - [SMALL_STATE(11350)] = 417899, - [SMALL_STATE(11351)] = 417909, - [SMALL_STATE(11352)] = 417919, - [SMALL_STATE(11353)] = 417929, - [SMALL_STATE(11354)] = 417939, - [SMALL_STATE(11355)] = 417949, - [SMALL_STATE(11356)] = 417959, - [SMALL_STATE(11357)] = 417969, - [SMALL_STATE(11358)] = 417979, - [SMALL_STATE(11359)] = 417989, - [SMALL_STATE(11360)] = 417999, - [SMALL_STATE(11361)] = 418009, - [SMALL_STATE(11362)] = 418019, - [SMALL_STATE(11363)] = 418029, - [SMALL_STATE(11364)] = 418039, - [SMALL_STATE(11365)] = 418049, - [SMALL_STATE(11366)] = 418059, - [SMALL_STATE(11367)] = 418069, - [SMALL_STATE(11368)] = 418079, - [SMALL_STATE(11369)] = 418089, - [SMALL_STATE(11370)] = 418099, - [SMALL_STATE(11371)] = 418109, - [SMALL_STATE(11372)] = 418119, - [SMALL_STATE(11373)] = 418129, - [SMALL_STATE(11374)] = 418139, - [SMALL_STATE(11375)] = 418149, - [SMALL_STATE(11376)] = 418159, - [SMALL_STATE(11377)] = 418169, - [SMALL_STATE(11378)] = 418179, - [SMALL_STATE(11379)] = 418189, - [SMALL_STATE(11380)] = 418199, - [SMALL_STATE(11381)] = 418209, - [SMALL_STATE(11382)] = 418219, - [SMALL_STATE(11383)] = 418229, - [SMALL_STATE(11384)] = 418239, - [SMALL_STATE(11385)] = 418249, - [SMALL_STATE(11386)] = 418259, - [SMALL_STATE(11387)] = 418269, - [SMALL_STATE(11388)] = 418279, - [SMALL_STATE(11389)] = 418289, - [SMALL_STATE(11390)] = 418299, - [SMALL_STATE(11391)] = 418309, - [SMALL_STATE(11392)] = 418319, - [SMALL_STATE(11393)] = 418329, - [SMALL_STATE(11394)] = 418339, - [SMALL_STATE(11395)] = 418349, - [SMALL_STATE(11396)] = 418359, - [SMALL_STATE(11397)] = 418369, - [SMALL_STATE(11398)] = 418379, - [SMALL_STATE(11399)] = 418389, - [SMALL_STATE(11400)] = 418399, - [SMALL_STATE(11401)] = 418409, - [SMALL_STATE(11402)] = 418419, - [SMALL_STATE(11403)] = 418429, - [SMALL_STATE(11404)] = 418439, - [SMALL_STATE(11405)] = 418449, - [SMALL_STATE(11406)] = 418459, - [SMALL_STATE(11407)] = 418469, - [SMALL_STATE(11408)] = 418479, - [SMALL_STATE(11409)] = 418489, - [SMALL_STATE(11410)] = 418499, - [SMALL_STATE(11411)] = 418509, - [SMALL_STATE(11412)] = 418519, - [SMALL_STATE(11413)] = 418529, - [SMALL_STATE(11414)] = 418539, - [SMALL_STATE(11415)] = 418549, - [SMALL_STATE(11416)] = 418559, - [SMALL_STATE(11417)] = 418569, - [SMALL_STATE(11418)] = 418579, - [SMALL_STATE(11419)] = 418589, - [SMALL_STATE(11420)] = 418599, - [SMALL_STATE(11421)] = 418609, - [SMALL_STATE(11422)] = 418619, - [SMALL_STATE(11423)] = 418629, - [SMALL_STATE(11424)] = 418639, - [SMALL_STATE(11425)] = 418649, - [SMALL_STATE(11426)] = 418659, - [SMALL_STATE(11427)] = 418669, - [SMALL_STATE(11428)] = 418679, - [SMALL_STATE(11429)] = 418689, - [SMALL_STATE(11430)] = 418699, - [SMALL_STATE(11431)] = 418709, - [SMALL_STATE(11432)] = 418719, - [SMALL_STATE(11433)] = 418729, - [SMALL_STATE(11434)] = 418739, - [SMALL_STATE(11435)] = 418749, - [SMALL_STATE(11436)] = 418759, - [SMALL_STATE(11437)] = 418769, - [SMALL_STATE(11438)] = 418779, - [SMALL_STATE(11439)] = 418789, - [SMALL_STATE(11440)] = 418799, - [SMALL_STATE(11441)] = 418809, - [SMALL_STATE(11442)] = 418819, - [SMALL_STATE(11443)] = 418829, - [SMALL_STATE(11444)] = 418839, - [SMALL_STATE(11445)] = 418849, - [SMALL_STATE(11446)] = 418859, - [SMALL_STATE(11447)] = 418869, - [SMALL_STATE(11448)] = 418879, - [SMALL_STATE(11449)] = 418889, - [SMALL_STATE(11450)] = 418899, - [SMALL_STATE(11451)] = 418909, - [SMALL_STATE(11452)] = 418919, - [SMALL_STATE(11453)] = 418929, - [SMALL_STATE(11454)] = 418939, - [SMALL_STATE(11455)] = 418949, - [SMALL_STATE(11456)] = 418959, - [SMALL_STATE(11457)] = 418969, - [SMALL_STATE(11458)] = 418979, - [SMALL_STATE(11459)] = 418989, - [SMALL_STATE(11460)] = 418999, - [SMALL_STATE(11461)] = 419009, - [SMALL_STATE(11462)] = 419019, - [SMALL_STATE(11463)] = 419029, - [SMALL_STATE(11464)] = 419039, - [SMALL_STATE(11465)] = 419049, - [SMALL_STATE(11466)] = 419059, - [SMALL_STATE(11467)] = 419069, - [SMALL_STATE(11468)] = 419079, - [SMALL_STATE(11469)] = 419089, - [SMALL_STATE(11470)] = 419099, - [SMALL_STATE(11471)] = 419109, - [SMALL_STATE(11472)] = 419119, - [SMALL_STATE(11473)] = 419129, - [SMALL_STATE(11474)] = 419139, - [SMALL_STATE(11475)] = 419149, - [SMALL_STATE(11476)] = 419159, - [SMALL_STATE(11477)] = 419169, - [SMALL_STATE(11478)] = 419179, - [SMALL_STATE(11479)] = 419189, - [SMALL_STATE(11480)] = 419199, - [SMALL_STATE(11481)] = 419209, - [SMALL_STATE(11482)] = 419219, - [SMALL_STATE(11483)] = 419229, - [SMALL_STATE(11484)] = 419239, - [SMALL_STATE(11485)] = 419249, - [SMALL_STATE(11486)] = 419259, - [SMALL_STATE(11487)] = 419269, - [SMALL_STATE(11488)] = 419279, - [SMALL_STATE(11489)] = 419289, - [SMALL_STATE(11490)] = 419299, - [SMALL_STATE(11491)] = 419309, - [SMALL_STATE(11492)] = 419319, - [SMALL_STATE(11493)] = 419329, - [SMALL_STATE(11494)] = 419339, - [SMALL_STATE(11495)] = 419349, - [SMALL_STATE(11496)] = 419359, - [SMALL_STATE(11497)] = 419369, + [SMALL_STATE(7499)] = 353257, + [SMALL_STATE(7500)] = 353295, + [SMALL_STATE(7501)] = 353317, + [SMALL_STATE(7502)] = 353339, + [SMALL_STATE(7503)] = 353361, + [SMALL_STATE(7504)] = 353383, + [SMALL_STATE(7505)] = 353407, + [SMALL_STATE(7506)] = 353431, + [SMALL_STATE(7507)] = 353467, + [SMALL_STATE(7508)] = 353503, + [SMALL_STATE(7509)] = 353539, + [SMALL_STATE(7510)] = 353575, + [SMALL_STATE(7511)] = 353597, + [SMALL_STATE(7512)] = 353633, + [SMALL_STATE(7513)] = 353669, + [SMALL_STATE(7514)] = 353705, + [SMALL_STATE(7515)] = 353741, + [SMALL_STATE(7516)] = 353777, + [SMALL_STATE(7517)] = 353813, + [SMALL_STATE(7518)] = 353849, + [SMALL_STATE(7519)] = 353885, + [SMALL_STATE(7520)] = 353911, + [SMALL_STATE(7521)] = 353935, + [SMALL_STATE(7522)] = 353973, + [SMALL_STATE(7523)] = 353999, + [SMALL_STATE(7524)] = 354023, + [SMALL_STATE(7525)] = 354045, + [SMALL_STATE(7526)] = 354069, + [SMALL_STATE(7527)] = 354091, + [SMALL_STATE(7528)] = 354117, + [SMALL_STATE(7529)] = 354143, + [SMALL_STATE(7530)] = 354169, + [SMALL_STATE(7531)] = 354207, + [SMALL_STATE(7532)] = 354229, + [SMALL_STATE(7533)] = 354263, + [SMALL_STATE(7534)] = 354285, + [SMALL_STATE(7535)] = 354323, + [SMALL_STATE(7536)] = 354361, + [SMALL_STATE(7537)] = 354399, + [SMALL_STATE(7538)] = 354437, + [SMALL_STATE(7539)] = 354459, + [SMALL_STATE(7540)] = 354481, + [SMALL_STATE(7541)] = 354513, + [SMALL_STATE(7542)] = 354545, + [SMALL_STATE(7543)] = 354567, + [SMALL_STATE(7544)] = 354600, + [SMALL_STATE(7545)] = 354633, + [SMALL_STATE(7546)] = 354654, + [SMALL_STATE(7547)] = 354675, + [SMALL_STATE(7548)] = 354708, + [SMALL_STATE(7549)] = 354729, + [SMALL_STATE(7550)] = 354762, + [SMALL_STATE(7551)] = 354795, + [SMALL_STATE(7552)] = 354828, + [SMALL_STATE(7553)] = 354861, + [SMALL_STATE(7554)] = 354894, + [SMALL_STATE(7555)] = 354927, + [SMALL_STATE(7556)] = 354960, + [SMALL_STATE(7557)] = 354993, + [SMALL_STATE(7558)] = 355026, + [SMALL_STATE(7559)] = 355057, + [SMALL_STATE(7560)] = 355088, + [SMALL_STATE(7561)] = 355119, + [SMALL_STATE(7562)] = 355150, + [SMALL_STATE(7563)] = 355171, + [SMALL_STATE(7564)] = 355192, + [SMALL_STATE(7565)] = 355223, + [SMALL_STATE(7566)] = 355244, + [SMALL_STATE(7567)] = 355275, + [SMALL_STATE(7568)] = 355296, + [SMALL_STATE(7569)] = 355317, + [SMALL_STATE(7570)] = 355348, + [SMALL_STATE(7571)] = 355381, + [SMALL_STATE(7572)] = 355414, + [SMALL_STATE(7573)] = 355447, + [SMALL_STATE(7574)] = 355480, + [SMALL_STATE(7575)] = 355501, + [SMALL_STATE(7576)] = 355522, + [SMALL_STATE(7577)] = 355543, + [SMALL_STATE(7578)] = 355576, + [SMALL_STATE(7579)] = 355597, + [SMALL_STATE(7580)] = 355618, + [SMALL_STATE(7581)] = 355651, + [SMALL_STATE(7582)] = 355684, + [SMALL_STATE(7583)] = 355717, + [SMALL_STATE(7584)] = 355750, + [SMALL_STATE(7585)] = 355783, + [SMALL_STATE(7586)] = 355806, + [SMALL_STATE(7587)] = 355825, + [SMALL_STATE(7588)] = 355846, + [SMALL_STATE(7589)] = 355879, + [SMALL_STATE(7590)] = 355912, + [SMALL_STATE(7591)] = 355943, + [SMALL_STATE(7592)] = 355976, + [SMALL_STATE(7593)] = 356009, + [SMALL_STATE(7594)] = 356042, + [SMALL_STATE(7595)] = 356075, + [SMALL_STATE(7596)] = 356100, + [SMALL_STATE(7597)] = 356133, + [SMALL_STATE(7598)] = 356166, + [SMALL_STATE(7599)] = 356199, + [SMALL_STATE(7600)] = 356220, + [SMALL_STATE(7601)] = 356253, + [SMALL_STATE(7602)] = 356274, + [SMALL_STATE(7603)] = 356295, + [SMALL_STATE(7604)] = 356316, + [SMALL_STATE(7605)] = 356337, + [SMALL_STATE(7606)] = 356370, + [SMALL_STATE(7607)] = 356403, + [SMALL_STATE(7608)] = 356436, + [SMALL_STATE(7609)] = 356469, + [SMALL_STATE(7610)] = 356490, + [SMALL_STATE(7611)] = 356511, + [SMALL_STATE(7612)] = 356532, + [SMALL_STATE(7613)] = 356553, + [SMALL_STATE(7614)] = 356574, + [SMALL_STATE(7615)] = 356595, + [SMALL_STATE(7616)] = 356616, + [SMALL_STATE(7617)] = 356637, + [SMALL_STATE(7618)] = 356658, + [SMALL_STATE(7619)] = 356679, + [SMALL_STATE(7620)] = 356700, + [SMALL_STATE(7621)] = 356721, + [SMALL_STATE(7622)] = 356754, + [SMALL_STATE(7623)] = 356787, + [SMALL_STATE(7624)] = 356820, + [SMALL_STATE(7625)] = 356853, + [SMALL_STATE(7626)] = 356874, + [SMALL_STATE(7627)] = 356895, + [SMALL_STATE(7628)] = 356920, + [SMALL_STATE(7629)] = 356941, + [SMALL_STATE(7630)] = 356972, + [SMALL_STATE(7631)] = 356993, + [SMALL_STATE(7632)] = 357024, + [SMALL_STATE(7633)] = 357045, + [SMALL_STATE(7634)] = 357066, + [SMALL_STATE(7635)] = 357097, + [SMALL_STATE(7636)] = 357130, + [SMALL_STATE(7637)] = 357163, + [SMALL_STATE(7638)] = 357196, + [SMALL_STATE(7639)] = 357229, + [SMALL_STATE(7640)] = 357250, + [SMALL_STATE(7641)] = 357271, + [SMALL_STATE(7642)] = 357296, + [SMALL_STATE(7643)] = 357329, + [SMALL_STATE(7644)] = 357350, + [SMALL_STATE(7645)] = 357371, + [SMALL_STATE(7646)] = 357404, + [SMALL_STATE(7647)] = 357437, + [SMALL_STATE(7648)] = 357470, + [SMALL_STATE(7649)] = 357503, + [SMALL_STATE(7650)] = 357536, + [SMALL_STATE(7651)] = 357569, + [SMALL_STATE(7652)] = 357590, + [SMALL_STATE(7653)] = 357621, + [SMALL_STATE(7654)] = 357642, + [SMALL_STATE(7655)] = 357675, + [SMALL_STATE(7656)] = 357708, + [SMALL_STATE(7657)] = 357741, + [SMALL_STATE(7658)] = 357774, + [SMALL_STATE(7659)] = 357807, + [SMALL_STATE(7660)] = 357828, + [SMALL_STATE(7661)] = 357861, + [SMALL_STATE(7662)] = 357894, + [SMALL_STATE(7663)] = 357921, + [SMALL_STATE(7664)] = 357940, + [SMALL_STATE(7665)] = 357973, + [SMALL_STATE(7666)] = 358006, + [SMALL_STATE(7667)] = 358039, + [SMALL_STATE(7668)] = 358072, + [SMALL_STATE(7669)] = 358105, + [SMALL_STATE(7670)] = 358136, + [SMALL_STATE(7671)] = 358157, + [SMALL_STATE(7672)] = 358178, + [SMALL_STATE(7673)] = 358211, + [SMALL_STATE(7674)] = 358244, + [SMALL_STATE(7675)] = 358277, + [SMALL_STATE(7676)] = 358310, + [SMALL_STATE(7677)] = 358343, + [SMALL_STATE(7678)] = 358364, + [SMALL_STATE(7679)] = 358395, + [SMALL_STATE(7680)] = 358418, + [SMALL_STATE(7681)] = 358445, + [SMALL_STATE(7682)] = 358478, + [SMALL_STATE(7683)] = 358499, + [SMALL_STATE(7684)] = 358532, + [SMALL_STATE(7685)] = 358565, + [SMALL_STATE(7686)] = 358598, + [SMALL_STATE(7687)] = 358631, + [SMALL_STATE(7688)] = 358662, + [SMALL_STATE(7689)] = 358695, + [SMALL_STATE(7690)] = 358728, + [SMALL_STATE(7691)] = 358759, + [SMALL_STATE(7692)] = 358790, + [SMALL_STATE(7693)] = 358823, + [SMALL_STATE(7694)] = 358856, + [SMALL_STATE(7695)] = 358889, + [SMALL_STATE(7696)] = 358922, + [SMALL_STATE(7697)] = 358941, + [SMALL_STATE(7698)] = 358960, + [SMALL_STATE(7699)] = 358981, + [SMALL_STATE(7700)] = 359014, + [SMALL_STATE(7701)] = 359045, + [SMALL_STATE(7702)] = 359076, + [SMALL_STATE(7703)] = 359109, + [SMALL_STATE(7704)] = 359142, + [SMALL_STATE(7705)] = 359175, + [SMALL_STATE(7706)] = 359208, + [SMALL_STATE(7707)] = 359241, + [SMALL_STATE(7708)] = 359262, + [SMALL_STATE(7709)] = 359283, + [SMALL_STATE(7710)] = 359304, + [SMALL_STATE(7711)] = 359337, + [SMALL_STATE(7712)] = 359358, + [SMALL_STATE(7713)] = 359391, + [SMALL_STATE(7714)] = 359424, + [SMALL_STATE(7715)] = 359449, + [SMALL_STATE(7716)] = 359470, + [SMALL_STATE(7717)] = 359491, + [SMALL_STATE(7718)] = 359512, + [SMALL_STATE(7719)] = 359543, + [SMALL_STATE(7720)] = 359564, + [SMALL_STATE(7721)] = 359585, + [SMALL_STATE(7722)] = 359606, + [SMALL_STATE(7723)] = 359629, + [SMALL_STATE(7724)] = 359650, + [SMALL_STATE(7725)] = 359671, + [SMALL_STATE(7726)] = 359702, + [SMALL_STATE(7727)] = 359723, + [SMALL_STATE(7728)] = 359744, + [SMALL_STATE(7729)] = 359769, + [SMALL_STATE(7730)] = 359794, + [SMALL_STATE(7731)] = 359827, + [SMALL_STATE(7732)] = 359848, + [SMALL_STATE(7733)] = 359881, + [SMALL_STATE(7734)] = 359902, + [SMALL_STATE(7735)] = 359927, + [SMALL_STATE(7736)] = 359948, + [SMALL_STATE(7737)] = 359981, + [SMALL_STATE(7738)] = 360006, + [SMALL_STATE(7739)] = 360039, + [SMALL_STATE(7740)] = 360072, + [SMALL_STATE(7741)] = 360105, + [SMALL_STATE(7742)] = 360138, + [SMALL_STATE(7743)] = 360171, + [SMALL_STATE(7744)] = 360204, + [SMALL_STATE(7745)] = 360237, + [SMALL_STATE(7746)] = 360270, + [SMALL_STATE(7747)] = 360301, + [SMALL_STATE(7748)] = 360334, + [SMALL_STATE(7749)] = 360357, + [SMALL_STATE(7750)] = 360388, + [SMALL_STATE(7751)] = 360409, + [SMALL_STATE(7752)] = 360430, + [SMALL_STATE(7753)] = 360461, + [SMALL_STATE(7754)] = 360492, + [SMALL_STATE(7755)] = 360513, + [SMALL_STATE(7756)] = 360546, + [SMALL_STATE(7757)] = 360579, + [SMALL_STATE(7758)] = 360600, + [SMALL_STATE(7759)] = 360633, + [SMALL_STATE(7760)] = 360666, + [SMALL_STATE(7761)] = 360689, + [SMALL_STATE(7762)] = 360722, + [SMALL_STATE(7763)] = 360743, + [SMALL_STATE(7764)] = 360776, + [SMALL_STATE(7765)] = 360809, + [SMALL_STATE(7766)] = 360840, + [SMALL_STATE(7767)] = 360861, + [SMALL_STATE(7768)] = 360882, + [SMALL_STATE(7769)] = 360915, + [SMALL_STATE(7770)] = 360948, + [SMALL_STATE(7771)] = 360967, + [SMALL_STATE(7772)] = 360988, + [SMALL_STATE(7773)] = 361019, + [SMALL_STATE(7774)] = 361050, + [SMALL_STATE(7775)] = 361083, + [SMALL_STATE(7776)] = 361106, + [SMALL_STATE(7777)] = 361137, + [SMALL_STATE(7778)] = 361162, + [SMALL_STATE(7779)] = 361193, + [SMALL_STATE(7780)] = 361218, + [SMALL_STATE(7781)] = 361239, + [SMALL_STATE(7782)] = 361260, + [SMALL_STATE(7783)] = 361283, + [SMALL_STATE(7784)] = 361304, + [SMALL_STATE(7785)] = 361325, + [SMALL_STATE(7786)] = 361346, + [SMALL_STATE(7787)] = 361367, + [SMALL_STATE(7788)] = 361388, + [SMALL_STATE(7789)] = 361409, + [SMALL_STATE(7790)] = 361430, + [SMALL_STATE(7791)] = 361451, + [SMALL_STATE(7792)] = 361472, + [SMALL_STATE(7793)] = 361493, + [SMALL_STATE(7794)] = 361514, + [SMALL_STATE(7795)] = 361535, + [SMALL_STATE(7796)] = 361556, + [SMALL_STATE(7797)] = 361577, + [SMALL_STATE(7798)] = 361602, + [SMALL_STATE(7799)] = 361627, + [SMALL_STATE(7800)] = 361648, + [SMALL_STATE(7801)] = 361669, + [SMALL_STATE(7802)] = 361700, + [SMALL_STATE(7803)] = 361721, + [SMALL_STATE(7804)] = 361742, + [SMALL_STATE(7805)] = 361775, + [SMALL_STATE(7806)] = 361796, + [SMALL_STATE(7807)] = 361829, + [SMALL_STATE(7808)] = 361862, + [SMALL_STATE(7809)] = 361895, + [SMALL_STATE(7810)] = 361928, + [SMALL_STATE(7811)] = 361949, + [SMALL_STATE(7812)] = 361970, + [SMALL_STATE(7813)] = 361991, + [SMALL_STATE(7814)] = 362022, + [SMALL_STATE(7815)] = 362055, + [SMALL_STATE(7816)] = 362088, + [SMALL_STATE(7817)] = 362121, + [SMALL_STATE(7818)] = 362152, + [SMALL_STATE(7819)] = 362173, + [SMALL_STATE(7820)] = 362200, + [SMALL_STATE(7821)] = 362227, + [SMALL_STATE(7822)] = 362254, + [SMALL_STATE(7823)] = 362275, + [SMALL_STATE(7824)] = 362296, + [SMALL_STATE(7825)] = 362327, + [SMALL_STATE(7826)] = 362360, + [SMALL_STATE(7827)] = 362393, + [SMALL_STATE(7828)] = 362426, + [SMALL_STATE(7829)] = 362447, + [SMALL_STATE(7830)] = 362468, + [SMALL_STATE(7831)] = 362489, + [SMALL_STATE(7832)] = 362522, + [SMALL_STATE(7833)] = 362555, + [SMALL_STATE(7834)] = 362588, + [SMALL_STATE(7835)] = 362619, + [SMALL_STATE(7836)] = 362640, + [SMALL_STATE(7837)] = 362661, + [SMALL_STATE(7838)] = 362682, + [SMALL_STATE(7839)] = 362703, + [SMALL_STATE(7840)] = 362734, + [SMALL_STATE(7841)] = 362767, + [SMALL_STATE(7842)] = 362800, + [SMALL_STATE(7843)] = 362833, + [SMALL_STATE(7844)] = 362854, + [SMALL_STATE(7845)] = 362887, + [SMALL_STATE(7846)] = 362920, + [SMALL_STATE(7847)] = 362953, + [SMALL_STATE(7848)] = 362986, + [SMALL_STATE(7849)] = 363019, + [SMALL_STATE(7850)] = 363041, + [SMALL_STATE(7851)] = 363063, + [SMALL_STATE(7852)] = 363089, + [SMALL_STATE(7853)] = 363109, + [SMALL_STATE(7854)] = 363131, + [SMALL_STATE(7855)] = 363157, + [SMALL_STATE(7856)] = 363179, + [SMALL_STATE(7857)] = 363201, + [SMALL_STATE(7858)] = 363225, + [SMALL_STATE(7859)] = 363249, + [SMALL_STATE(7860)] = 363269, + [SMALL_STATE(7861)] = 363293, + [SMALL_STATE(7862)] = 363317, + [SMALL_STATE(7863)] = 363337, + [SMALL_STATE(7864)] = 363361, + [SMALL_STATE(7865)] = 363387, + [SMALL_STATE(7866)] = 363413, + [SMALL_STATE(7867)] = 363435, + [SMALL_STATE(7868)] = 363467, + [SMALL_STATE(7869)] = 363489, + [SMALL_STATE(7870)] = 363511, + [SMALL_STATE(7871)] = 363535, + [SMALL_STATE(7872)] = 363559, + [SMALL_STATE(7873)] = 363583, + [SMALL_STATE(7874)] = 363603, + [SMALL_STATE(7875)] = 363621, + [SMALL_STATE(7876)] = 363641, + [SMALL_STATE(7877)] = 363661, + [SMALL_STATE(7878)] = 363679, + [SMALL_STATE(7879)] = 363699, + [SMALL_STATE(7880)] = 363723, + [SMALL_STATE(7881)] = 363747, + [SMALL_STATE(7882)] = 363771, + [SMALL_STATE(7883)] = 363797, + [SMALL_STATE(7884)] = 363829, + [SMALL_STATE(7885)] = 363851, + [SMALL_STATE(7886)] = 363875, + [SMALL_STATE(7887)] = 363899, + [SMALL_STATE(7888)] = 363923, + [SMALL_STATE(7889)] = 363945, + [SMALL_STATE(7890)] = 363967, + [SMALL_STATE(7891)] = 363999, + [SMALL_STATE(7892)] = 364023, + [SMALL_STATE(7893)] = 364055, + [SMALL_STATE(7894)] = 364079, + [SMALL_STATE(7895)] = 364109, + [SMALL_STATE(7896)] = 364133, + [SMALL_STATE(7897)] = 364155, + [SMALL_STATE(7898)] = 364177, + [SMALL_STATE(7899)] = 364201, + [SMALL_STATE(7900)] = 364221, + [SMALL_STATE(7901)] = 364241, + [SMALL_STATE(7902)] = 364263, + [SMALL_STATE(7903)] = 364285, + [SMALL_STATE(7904)] = 364305, + [SMALL_STATE(7905)] = 364334, + [SMALL_STATE(7906)] = 364363, + [SMALL_STATE(7907)] = 364386, + [SMALL_STATE(7908)] = 364407, + [SMALL_STATE(7909)] = 364436, + [SMALL_STATE(7910)] = 364457, + [SMALL_STATE(7911)] = 364486, + [SMALL_STATE(7912)] = 364509, + [SMALL_STATE(7913)] = 364538, + [SMALL_STATE(7914)] = 364561, + [SMALL_STATE(7915)] = 364590, + [SMALL_STATE(7916)] = 364613, + [SMALL_STATE(7917)] = 364642, + [SMALL_STATE(7918)] = 364663, + [SMALL_STATE(7919)] = 364684, + [SMALL_STATE(7920)] = 364707, + [SMALL_STATE(7921)] = 364730, + [SMALL_STATE(7922)] = 364749, + [SMALL_STATE(7923)] = 364770, + [SMALL_STATE(7924)] = 364789, + [SMALL_STATE(7925)] = 364812, + [SMALL_STATE(7926)] = 364831, + [SMALL_STATE(7927)] = 364850, + [SMALL_STATE(7928)] = 364873, + [SMALL_STATE(7929)] = 364898, + [SMALL_STATE(7930)] = 364917, + [SMALL_STATE(7931)] = 364936, + [SMALL_STATE(7932)] = 364959, + [SMALL_STATE(7933)] = 364978, + [SMALL_STATE(7934)] = 364997, + [SMALL_STATE(7935)] = 365022, + [SMALL_STATE(7936)] = 365041, + [SMALL_STATE(7937)] = 365066, + [SMALL_STATE(7938)] = 365089, + [SMALL_STATE(7939)] = 365112, + [SMALL_STATE(7940)] = 365135, + [SMALL_STATE(7941)] = 365158, + [SMALL_STATE(7942)] = 365181, + [SMALL_STATE(7943)] = 365204, + [SMALL_STATE(7944)] = 365233, + [SMALL_STATE(7945)] = 365262, + [SMALL_STATE(7946)] = 365281, + [SMALL_STATE(7947)] = 365300, + [SMALL_STATE(7948)] = 365325, + [SMALL_STATE(7949)] = 365354, + [SMALL_STATE(7950)] = 365373, + [SMALL_STATE(7951)] = 365392, + [SMALL_STATE(7952)] = 365411, + [SMALL_STATE(7953)] = 365434, + [SMALL_STATE(7954)] = 365457, + [SMALL_STATE(7955)] = 365480, + [SMALL_STATE(7956)] = 365503, + [SMALL_STATE(7957)] = 365524, + [SMALL_STATE(7958)] = 365547, + [SMALL_STATE(7959)] = 365570, + [SMALL_STATE(7960)] = 365595, + [SMALL_STATE(7961)] = 365616, + [SMALL_STATE(7962)] = 365645, + [SMALL_STATE(7963)] = 365668, + [SMALL_STATE(7964)] = 365689, + [SMALL_STATE(7965)] = 365714, + [SMALL_STATE(7966)] = 365735, + [SMALL_STATE(7967)] = 365756, + [SMALL_STATE(7968)] = 365779, + [SMALL_STATE(7969)] = 365808, + [SMALL_STATE(7970)] = 365839, + [SMALL_STATE(7971)] = 365870, + [SMALL_STATE(7972)] = 365901, + [SMALL_STATE(7973)] = 365932, + [SMALL_STATE(7974)] = 365961, + [SMALL_STATE(7975)] = 365990, + [SMALL_STATE(7976)] = 366013, + [SMALL_STATE(7977)] = 366036, + [SMALL_STATE(7978)] = 366065, + [SMALL_STATE(7979)] = 366086, + [SMALL_STATE(7980)] = 366117, + [SMALL_STATE(7981)] = 366140, + [SMALL_STATE(7982)] = 366171, + [SMALL_STATE(7983)] = 366196, + [SMALL_STATE(7984)] = 366219, + [SMALL_STATE(7985)] = 366242, + [SMALL_STATE(7986)] = 366265, + [SMALL_STATE(7987)] = 366284, + [SMALL_STATE(7988)] = 366309, + [SMALL_STATE(7989)] = 366332, + [SMALL_STATE(7990)] = 366351, + [SMALL_STATE(7991)] = 366374, + [SMALL_STATE(7992)] = 366401, + [SMALL_STATE(7993)] = 366420, + [SMALL_STATE(7994)] = 366445, + [SMALL_STATE(7995)] = 366474, + [SMALL_STATE(7996)] = 366503, + [SMALL_STATE(7997)] = 366524, + [SMALL_STATE(7998)] = 366547, + [SMALL_STATE(7999)] = 366566, + [SMALL_STATE(8000)] = 366595, + [SMALL_STATE(8001)] = 366624, + [SMALL_STATE(8002)] = 366643, + [SMALL_STATE(8003)] = 366672, + [SMALL_STATE(8004)] = 366701, + [SMALL_STATE(8005)] = 366722, + [SMALL_STATE(8006)] = 366751, + [SMALL_STATE(8007)] = 366770, + [SMALL_STATE(8008)] = 366789, + [SMALL_STATE(8009)] = 366818, + [SMALL_STATE(8010)] = 366847, + [SMALL_STATE(8011)] = 366866, + [SMALL_STATE(8012)] = 366885, + [SMALL_STATE(8013)] = 366908, + [SMALL_STATE(8014)] = 366927, + [SMALL_STATE(8015)] = 366948, + [SMALL_STATE(8016)] = 366967, + [SMALL_STATE(8017)] = 366990, + [SMALL_STATE(8018)] = 367009, + [SMALL_STATE(8019)] = 367032, + [SMALL_STATE(8020)] = 367057, + [SMALL_STATE(8021)] = 367078, + [SMALL_STATE(8022)] = 367101, + [SMALL_STATE(8023)] = 367120, + [SMALL_STATE(8024)] = 367145, + [SMALL_STATE(8025)] = 367174, + [SMALL_STATE(8026)] = 367197, + [SMALL_STATE(8027)] = 367218, + [SMALL_STATE(8028)] = 367243, + [SMALL_STATE(8029)] = 367268, + [SMALL_STATE(8030)] = 367297, + [SMALL_STATE(8031)] = 367316, + [SMALL_STATE(8032)] = 367339, + [SMALL_STATE(8033)] = 367364, + [SMALL_STATE(8034)] = 367387, + [SMALL_STATE(8035)] = 367406, + [SMALL_STATE(8036)] = 367429, + [SMALL_STATE(8037)] = 367450, + [SMALL_STATE(8038)] = 367471, + [SMALL_STATE(8039)] = 367500, + [SMALL_STATE(8040)] = 367521, + [SMALL_STATE(8041)] = 367542, + [SMALL_STATE(8042)] = 367561, + [SMALL_STATE(8043)] = 367582, + [SMALL_STATE(8044)] = 367605, + [SMALL_STATE(8045)] = 367624, + [SMALL_STATE(8046)] = 367653, + [SMALL_STATE(8047)] = 367672, + [SMALL_STATE(8048)] = 367691, + [SMALL_STATE(8049)] = 367710, + [SMALL_STATE(8050)] = 367739, + [SMALL_STATE(8051)] = 367766, + [SMALL_STATE(8052)] = 367795, + [SMALL_STATE(8053)] = 367820, + [SMALL_STATE(8054)] = 367841, + [SMALL_STATE(8055)] = 367866, + [SMALL_STATE(8056)] = 367895, + [SMALL_STATE(8057)] = 367924, + [SMALL_STATE(8058)] = 367953, + [SMALL_STATE(8059)] = 367982, + [SMALL_STATE(8060)] = 368003, + [SMALL_STATE(8061)] = 368022, + [SMALL_STATE(8062)] = 368041, + [SMALL_STATE(8063)] = 368064, + [SMALL_STATE(8064)] = 368093, + [SMALL_STATE(8065)] = 368118, + [SMALL_STATE(8066)] = 368139, + [SMALL_STATE(8067)] = 368158, + [SMALL_STATE(8068)] = 368181, + [SMALL_STATE(8069)] = 368200, + [SMALL_STATE(8070)] = 368229, + [SMALL_STATE(8071)] = 368248, + [SMALL_STATE(8072)] = 368271, + [SMALL_STATE(8073)] = 368290, + [SMALL_STATE(8074)] = 368318, + [SMALL_STATE(8075)] = 368342, + [SMALL_STATE(8076)] = 368366, + [SMALL_STATE(8077)] = 368384, + [SMALL_STATE(8078)] = 368404, + [SMALL_STATE(8079)] = 368428, + [SMALL_STATE(8080)] = 368452, + [SMALL_STATE(8081)] = 368472, + [SMALL_STATE(8082)] = 368496, + [SMALL_STATE(8083)] = 368522, + [SMALL_STATE(8084)] = 368542, + [SMALL_STATE(8085)] = 368562, + [SMALL_STATE(8086)] = 368588, + [SMALL_STATE(8087)] = 368606, + [SMALL_STATE(8088)] = 368632, + [SMALL_STATE(8089)] = 368658, + [SMALL_STATE(8090)] = 368678, + [SMALL_STATE(8091)] = 368698, + [SMALL_STATE(8092)] = 368718, + [SMALL_STATE(8093)] = 368740, + [SMALL_STATE(8094)] = 368766, + [SMALL_STATE(8095)] = 368786, + [SMALL_STATE(8096)] = 368808, + [SMALL_STATE(8097)] = 368828, + [SMALL_STATE(8098)] = 368846, + [SMALL_STATE(8099)] = 368864, + [SMALL_STATE(8100)] = 368882, + [SMALL_STATE(8101)] = 368902, + [SMALL_STATE(8102)] = 368924, + [SMALL_STATE(8103)] = 368944, + [SMALL_STATE(8104)] = 368966, + [SMALL_STATE(8105)] = 368988, + [SMALL_STATE(8106)] = 369010, + [SMALL_STATE(8107)] = 369030, + [SMALL_STATE(8108)] = 369052, + [SMALL_STATE(8109)] = 369074, + [SMALL_STATE(8110)] = 369094, + [SMALL_STATE(8111)] = 369116, + [SMALL_STATE(8112)] = 369138, + [SMALL_STATE(8113)] = 369156, + [SMALL_STATE(8114)] = 369174, + [SMALL_STATE(8115)] = 369198, + [SMALL_STATE(8116)] = 369224, + [SMALL_STATE(8117)] = 369248, + [SMALL_STATE(8118)] = 369268, + [SMALL_STATE(8119)] = 369286, + [SMALL_STATE(8120)] = 369304, + [SMALL_STATE(8121)] = 369322, + [SMALL_STATE(8122)] = 369340, + [SMALL_STATE(8123)] = 369358, + [SMALL_STATE(8124)] = 369380, + [SMALL_STATE(8125)] = 369402, + [SMALL_STATE(8126)] = 369426, + [SMALL_STATE(8127)] = 369444, + [SMALL_STATE(8128)] = 369462, + [SMALL_STATE(8129)] = 369488, + [SMALL_STATE(8130)] = 369514, + [SMALL_STATE(8131)] = 369534, + [SMALL_STATE(8132)] = 369556, + [SMALL_STATE(8133)] = 369574, + [SMALL_STATE(8134)] = 369598, + [SMALL_STATE(8135)] = 369624, + [SMALL_STATE(8136)] = 369650, + [SMALL_STATE(8137)] = 369674, + [SMALL_STATE(8138)] = 369692, + [SMALL_STATE(8139)] = 369720, + [SMALL_STATE(8140)] = 369740, + [SMALL_STATE(8141)] = 369760, + [SMALL_STATE(8142)] = 369778, + [SMALL_STATE(8143)] = 369800, + [SMALL_STATE(8144)] = 369824, + [SMALL_STATE(8145)] = 369844, + [SMALL_STATE(8146)] = 369862, + [SMALL_STATE(8147)] = 369880, + [SMALL_STATE(8148)] = 369898, + [SMALL_STATE(8149)] = 369920, + [SMALL_STATE(8150)] = 369938, + [SMALL_STATE(8151)] = 369956, + [SMALL_STATE(8152)] = 369974, + [SMALL_STATE(8153)] = 369992, + [SMALL_STATE(8154)] = 370010, + [SMALL_STATE(8155)] = 370028, + [SMALL_STATE(8156)] = 370046, + [SMALL_STATE(8157)] = 370070, + [SMALL_STATE(8158)] = 370088, + [SMALL_STATE(8159)] = 370112, + [SMALL_STATE(8160)] = 370138, + [SMALL_STATE(8161)] = 370160, + [SMALL_STATE(8162)] = 370178, + [SMALL_STATE(8163)] = 370200, + [SMALL_STATE(8164)] = 370224, + [SMALL_STATE(8165)] = 370244, + [SMALL_STATE(8166)] = 370272, + [SMALL_STATE(8167)] = 370294, + [SMALL_STATE(8168)] = 370318, + [SMALL_STATE(8169)] = 370342, + [SMALL_STATE(8170)] = 370364, + [SMALL_STATE(8171)] = 370384, + [SMALL_STATE(8172)] = 370406, + [SMALL_STATE(8173)] = 370424, + [SMALL_STATE(8174)] = 370448, + [SMALL_STATE(8175)] = 370466, + [SMALL_STATE(8176)] = 370484, + [SMALL_STATE(8177)] = 370502, + [SMALL_STATE(8178)] = 370530, + [SMALL_STATE(8179)] = 370556, + [SMALL_STATE(8180)] = 370580, + [SMALL_STATE(8181)] = 370604, + [SMALL_STATE(8182)] = 370630, + [SMALL_STATE(8183)] = 370648, + [SMALL_STATE(8184)] = 370666, + [SMALL_STATE(8185)] = 370684, + [SMALL_STATE(8186)] = 370706, + [SMALL_STATE(8187)] = 370724, + [SMALL_STATE(8188)] = 370752, + [SMALL_STATE(8189)] = 370770, + [SMALL_STATE(8190)] = 370788, + [SMALL_STATE(8191)] = 370806, + [SMALL_STATE(8192)] = 370824, + [SMALL_STATE(8193)] = 370852, + [SMALL_STATE(8194)] = 370878, + [SMALL_STATE(8195)] = 370900, + [SMALL_STATE(8196)] = 370928, + [SMALL_STATE(8197)] = 370946, + [SMALL_STATE(8198)] = 370964, + [SMALL_STATE(8199)] = 370982, + [SMALL_STATE(8200)] = 371008, + [SMALL_STATE(8201)] = 371028, + [SMALL_STATE(8202)] = 371050, + [SMALL_STATE(8203)] = 371068, + [SMALL_STATE(8204)] = 371086, + [SMALL_STATE(8205)] = 371106, + [SMALL_STATE(8206)] = 371130, + [SMALL_STATE(8207)] = 371148, + [SMALL_STATE(8208)] = 371166, + [SMALL_STATE(8209)] = 371188, + [SMALL_STATE(8210)] = 371214, + [SMALL_STATE(8211)] = 371236, + [SMALL_STATE(8212)] = 371258, + [SMALL_STATE(8213)] = 371286, + [SMALL_STATE(8214)] = 371312, + [SMALL_STATE(8215)] = 371330, + [SMALL_STATE(8216)] = 371348, + [SMALL_STATE(8217)] = 371366, + [SMALL_STATE(8218)] = 371390, + [SMALL_STATE(8219)] = 371408, + [SMALL_STATE(8220)] = 371426, + [SMALL_STATE(8221)] = 371444, + [SMALL_STATE(8222)] = 371462, + [SMALL_STATE(8223)] = 371480, + [SMALL_STATE(8224)] = 371498, + [SMALL_STATE(8225)] = 371516, + [SMALL_STATE(8226)] = 371534, + [SMALL_STATE(8227)] = 371552, + [SMALL_STATE(8228)] = 371570, + [SMALL_STATE(8229)] = 371588, + [SMALL_STATE(8230)] = 371606, + [SMALL_STATE(8231)] = 371624, + [SMALL_STATE(8232)] = 371642, + [SMALL_STATE(8233)] = 371660, + [SMALL_STATE(8234)] = 371678, + [SMALL_STATE(8235)] = 371696, + [SMALL_STATE(8236)] = 371714, + [SMALL_STATE(8237)] = 371738, + [SMALL_STATE(8238)] = 371764, + [SMALL_STATE(8239)] = 371788, + [SMALL_STATE(8240)] = 371814, + [SMALL_STATE(8241)] = 371836, + [SMALL_STATE(8242)] = 371858, + [SMALL_STATE(8243)] = 371882, + [SMALL_STATE(8244)] = 371906, + [SMALL_STATE(8245)] = 371932, + [SMALL_STATE(8246)] = 371958, + [SMALL_STATE(8247)] = 371980, + [SMALL_STATE(8248)] = 372002, + [SMALL_STATE(8249)] = 372022, + [SMALL_STATE(8250)] = 372046, + [SMALL_STATE(8251)] = 372070, + [SMALL_STATE(8252)] = 372096, + [SMALL_STATE(8253)] = 372120, + [SMALL_STATE(8254)] = 372146, + [SMALL_STATE(8255)] = 372170, + [SMALL_STATE(8256)] = 372188, + [SMALL_STATE(8257)] = 372212, + [SMALL_STATE(8258)] = 372238, + [SMALL_STATE(8259)] = 372260, + [SMALL_STATE(8260)] = 372284, + [SMALL_STATE(8261)] = 372310, + [SMALL_STATE(8262)] = 372332, + [SMALL_STATE(8263)] = 372360, + [SMALL_STATE(8264)] = 372384, + [SMALL_STATE(8265)] = 372410, + [SMALL_STATE(8266)] = 372430, + [SMALL_STATE(8267)] = 372450, + [SMALL_STATE(8268)] = 372472, + [SMALL_STATE(8269)] = 372494, + [SMALL_STATE(8270)] = 372520, + [SMALL_STATE(8271)] = 372548, + [SMALL_STATE(8272)] = 372572, + [SMALL_STATE(8273)] = 372596, + [SMALL_STATE(8274)] = 372616, + [SMALL_STATE(8275)] = 372642, + [SMALL_STATE(8276)] = 372660, + [SMALL_STATE(8277)] = 372688, + [SMALL_STATE(8278)] = 372714, + [SMALL_STATE(8279)] = 372734, + [SMALL_STATE(8280)] = 372762, + [SMALL_STATE(8281)] = 372784, + [SMALL_STATE(8282)] = 372806, + [SMALL_STATE(8283)] = 372824, + [SMALL_STATE(8284)] = 372842, + [SMALL_STATE(8285)] = 372862, + [SMALL_STATE(8286)] = 372882, + [SMALL_STATE(8287)] = 372908, + [SMALL_STATE(8288)] = 372930, + [SMALL_STATE(8289)] = 372954, + [SMALL_STATE(8290)] = 372974, + [SMALL_STATE(8291)] = 372992, + [SMALL_STATE(8292)] = 373018, + [SMALL_STATE(8293)] = 373046, + [SMALL_STATE(8294)] = 373064, + [SMALL_STATE(8295)] = 373090, + [SMALL_STATE(8296)] = 373116, + [SMALL_STATE(8297)] = 373134, + [SMALL_STATE(8298)] = 373156, + [SMALL_STATE(8299)] = 373182, + [SMALL_STATE(8300)] = 373202, + [SMALL_STATE(8301)] = 373222, + [SMALL_STATE(8302)] = 373248, + [SMALL_STATE(8303)] = 373274, + [SMALL_STATE(8304)] = 373300, + [SMALL_STATE(8305)] = 373324, + [SMALL_STATE(8306)] = 373342, + [SMALL_STATE(8307)] = 373368, + [SMALL_STATE(8308)] = 373394, + [SMALL_STATE(8309)] = 373422, + [SMALL_STATE(8310)] = 373444, + [SMALL_STATE(8311)] = 373468, + [SMALL_STATE(8312)] = 373488, + [SMALL_STATE(8313)] = 373512, + [SMALL_STATE(8314)] = 373538, + [SMALL_STATE(8315)] = 373558, + [SMALL_STATE(8316)] = 373582, + [SMALL_STATE(8317)] = 373606, + [SMALL_STATE(8318)] = 373628, + [SMALL_STATE(8319)] = 373648, + [SMALL_STATE(8320)] = 373671, + [SMALL_STATE(8321)] = 373688, + [SMALL_STATE(8322)] = 373711, + [SMALL_STATE(8323)] = 373728, + [SMALL_STATE(8324)] = 373745, + [SMALL_STATE(8325)] = 373766, + [SMALL_STATE(8326)] = 373789, + [SMALL_STATE(8327)] = 373812, + [SMALL_STATE(8328)] = 373831, + [SMALL_STATE(8329)] = 373848, + [SMALL_STATE(8330)] = 373865, + [SMALL_STATE(8331)] = 373882, + [SMALL_STATE(8332)] = 373905, + [SMALL_STATE(8333)] = 373924, + [SMALL_STATE(8334)] = 373941, + [SMALL_STATE(8335)] = 373958, + [SMALL_STATE(8336)] = 373981, + [SMALL_STATE(8337)] = 374004, + [SMALL_STATE(8338)] = 374021, + [SMALL_STATE(8339)] = 374042, + [SMALL_STATE(8340)] = 374065, + [SMALL_STATE(8341)] = 374086, + [SMALL_STATE(8342)] = 374101, + [SMALL_STATE(8343)] = 374124, + [SMALL_STATE(8344)] = 374141, + [SMALL_STATE(8345)] = 374158, + [SMALL_STATE(8346)] = 374173, + [SMALL_STATE(8347)] = 374198, + [SMALL_STATE(8348)] = 374221, + [SMALL_STATE(8349)] = 374238, + [SMALL_STATE(8350)] = 374255, + [SMALL_STATE(8351)] = 374276, + [SMALL_STATE(8352)] = 374299, + [SMALL_STATE(8353)] = 374316, + [SMALL_STATE(8354)] = 374331, + [SMALL_STATE(8355)] = 374348, + [SMALL_STATE(8356)] = 374371, + [SMALL_STATE(8357)] = 374388, + [SMALL_STATE(8358)] = 374405, + [SMALL_STATE(8359)] = 374422, + [SMALL_STATE(8360)] = 374439, + [SMALL_STATE(8361)] = 374458, + [SMALL_STATE(8362)] = 374475, + [SMALL_STATE(8363)] = 374500, + [SMALL_STATE(8364)] = 374525, + [SMALL_STATE(8365)] = 374548, + [SMALL_STATE(8366)] = 374571, + [SMALL_STATE(8367)] = 374588, + [SMALL_STATE(8368)] = 374609, + [SMALL_STATE(8369)] = 374626, + [SMALL_STATE(8370)] = 374643, + [SMALL_STATE(8371)] = 374666, + [SMALL_STATE(8372)] = 374687, + [SMALL_STATE(8373)] = 374704, + [SMALL_STATE(8374)] = 374721, + [SMALL_STATE(8375)] = 374738, + [SMALL_STATE(8376)] = 374761, + [SMALL_STATE(8377)] = 374784, + [SMALL_STATE(8378)] = 374801, + [SMALL_STATE(8379)] = 374824, + [SMALL_STATE(8380)] = 374839, + [SMALL_STATE(8381)] = 374856, + [SMALL_STATE(8382)] = 374879, + [SMALL_STATE(8383)] = 374896, + [SMALL_STATE(8384)] = 374919, + [SMALL_STATE(8385)] = 374936, + [SMALL_STATE(8386)] = 374957, + [SMALL_STATE(8387)] = 374980, + [SMALL_STATE(8388)] = 374997, + [SMALL_STATE(8389)] = 375016, + [SMALL_STATE(8390)] = 375031, + [SMALL_STATE(8391)] = 375052, + [SMALL_STATE(8392)] = 375077, + [SMALL_STATE(8393)] = 375100, + [SMALL_STATE(8394)] = 375117, + [SMALL_STATE(8395)] = 375134, + [SMALL_STATE(8396)] = 375151, + [SMALL_STATE(8397)] = 375172, + [SMALL_STATE(8398)] = 375189, + [SMALL_STATE(8399)] = 375212, + [SMALL_STATE(8400)] = 375235, + [SMALL_STATE(8401)] = 375258, + [SMALL_STATE(8402)] = 375279, + [SMALL_STATE(8403)] = 375296, + [SMALL_STATE(8404)] = 375319, + [SMALL_STATE(8405)] = 375336, + [SMALL_STATE(8406)] = 375359, + [SMALL_STATE(8407)] = 375380, + [SMALL_STATE(8408)] = 375399, + [SMALL_STATE(8409)] = 375422, + [SMALL_STATE(8410)] = 375445, + [SMALL_STATE(8411)] = 375462, + [SMALL_STATE(8412)] = 375477, + [SMALL_STATE(8413)] = 375500, + [SMALL_STATE(8414)] = 375523, + [SMALL_STATE(8415)] = 375546, + [SMALL_STATE(8416)] = 375569, + [SMALL_STATE(8417)] = 375592, + [SMALL_STATE(8418)] = 375609, + [SMALL_STATE(8419)] = 375632, + [SMALL_STATE(8420)] = 375657, + [SMALL_STATE(8421)] = 375680, + [SMALL_STATE(8422)] = 375705, + [SMALL_STATE(8423)] = 375728, + [SMALL_STATE(8424)] = 375747, + [SMALL_STATE(8425)] = 375764, + [SMALL_STATE(8426)] = 375787, + [SMALL_STATE(8427)] = 375810, + [SMALL_STATE(8428)] = 375829, + [SMALL_STATE(8429)] = 375846, + [SMALL_STATE(8430)] = 375869, + [SMALL_STATE(8431)] = 375892, + [SMALL_STATE(8432)] = 375915, + [SMALL_STATE(8433)] = 375932, + [SMALL_STATE(8434)] = 375949, + [SMALL_STATE(8435)] = 375972, + [SMALL_STATE(8436)] = 375989, + [SMALL_STATE(8437)] = 376006, + [SMALL_STATE(8438)] = 376031, + [SMALL_STATE(8439)] = 376052, + [SMALL_STATE(8440)] = 376069, + [SMALL_STATE(8441)] = 376086, + [SMALL_STATE(8442)] = 376103, + [SMALL_STATE(8443)] = 376120, + [SMALL_STATE(8444)] = 376137, + [SMALL_STATE(8445)] = 376154, + [SMALL_STATE(8446)] = 376177, + [SMALL_STATE(8447)] = 376194, + [SMALL_STATE(8448)] = 376217, + [SMALL_STATE(8449)] = 376236, + [SMALL_STATE(8450)] = 376253, + [SMALL_STATE(8451)] = 376270, + [SMALL_STATE(8452)] = 376289, + [SMALL_STATE(8453)] = 376304, + [SMALL_STATE(8454)] = 376321, + [SMALL_STATE(8455)] = 376344, + [SMALL_STATE(8456)] = 376367, + [SMALL_STATE(8457)] = 376384, + [SMALL_STATE(8458)] = 376403, + [SMALL_STATE(8459)] = 376426, + [SMALL_STATE(8460)] = 376449, + [SMALL_STATE(8461)] = 376472, + [SMALL_STATE(8462)] = 376489, + [SMALL_STATE(8463)] = 376506, + [SMALL_STATE(8464)] = 376531, + [SMALL_STATE(8465)] = 376548, + [SMALL_STATE(8466)] = 376573, + [SMALL_STATE(8467)] = 376596, + [SMALL_STATE(8468)] = 376613, + [SMALL_STATE(8469)] = 376632, + [SMALL_STATE(8470)] = 376651, + [SMALL_STATE(8471)] = 376668, + [SMALL_STATE(8472)] = 376691, + [SMALL_STATE(8473)] = 376710, + [SMALL_STATE(8474)] = 376729, + [SMALL_STATE(8475)] = 376754, + [SMALL_STATE(8476)] = 376771, + [SMALL_STATE(8477)] = 376792, + [SMALL_STATE(8478)] = 376811, + [SMALL_STATE(8479)] = 376834, + [SMALL_STATE(8480)] = 376851, + [SMALL_STATE(8481)] = 376874, + [SMALL_STATE(8482)] = 376895, + [SMALL_STATE(8483)] = 376920, + [SMALL_STATE(8484)] = 376943, + [SMALL_STATE(8485)] = 376960, + [SMALL_STATE(8486)] = 376983, + [SMALL_STATE(8487)] = 377000, + [SMALL_STATE(8488)] = 377015, + [SMALL_STATE(8489)] = 377032, + [SMALL_STATE(8490)] = 377049, + [SMALL_STATE(8491)] = 377066, + [SMALL_STATE(8492)] = 377083, + [SMALL_STATE(8493)] = 377104, + [SMALL_STATE(8494)] = 377125, + [SMALL_STATE(8495)] = 377148, + [SMALL_STATE(8496)] = 377169, + [SMALL_STATE(8497)] = 377194, + [SMALL_STATE(8498)] = 377211, + [SMALL_STATE(8499)] = 377232, + [SMALL_STATE(8500)] = 377257, + [SMALL_STATE(8501)] = 377280, + [SMALL_STATE(8502)] = 377305, + [SMALL_STATE(8503)] = 377326, + [SMALL_STATE(8504)] = 377343, + [SMALL_STATE(8505)] = 377360, + [SMALL_STATE(8506)] = 377383, + [SMALL_STATE(8507)] = 377400, + [SMALL_STATE(8508)] = 377421, + [SMALL_STATE(8509)] = 377440, + [SMALL_STATE(8510)] = 377457, + [SMALL_STATE(8511)] = 377474, + [SMALL_STATE(8512)] = 377495, + [SMALL_STATE(8513)] = 377518, + [SMALL_STATE(8514)] = 377535, + [SMALL_STATE(8515)] = 377552, + [SMALL_STATE(8516)] = 377569, + [SMALL_STATE(8517)] = 377588, + [SMALL_STATE(8518)] = 377611, + [SMALL_STATE(8519)] = 377634, + [SMALL_STATE(8520)] = 377655, + [SMALL_STATE(8521)] = 377678, + [SMALL_STATE(8522)] = 377701, + [SMALL_STATE(8523)] = 377718, + [SMALL_STATE(8524)] = 377741, + [SMALL_STATE(8525)] = 377764, + [SMALL_STATE(8526)] = 377781, + [SMALL_STATE(8527)] = 377796, + [SMALL_STATE(8528)] = 377815, + [SMALL_STATE(8529)] = 377836, + [SMALL_STATE(8530)] = 377853, + [SMALL_STATE(8531)] = 377872, + [SMALL_STATE(8532)] = 377895, + [SMALL_STATE(8533)] = 377912, + [SMALL_STATE(8534)] = 377929, + [SMALL_STATE(8535)] = 377946, + [SMALL_STATE(8536)] = 377967, + [SMALL_STATE(8537)] = 377990, + [SMALL_STATE(8538)] = 378009, + [SMALL_STATE(8539)] = 378026, + [SMALL_STATE(8540)] = 378049, + [SMALL_STATE(8541)] = 378072, + [SMALL_STATE(8542)] = 378091, + [SMALL_STATE(8543)] = 378108, + [SMALL_STATE(8544)] = 378131, + [SMALL_STATE(8545)] = 378154, + [SMALL_STATE(8546)] = 378171, + [SMALL_STATE(8547)] = 378196, + [SMALL_STATE(8548)] = 378217, + [SMALL_STATE(8549)] = 378240, + [SMALL_STATE(8550)] = 378259, + [SMALL_STATE(8551)] = 378276, + [SMALL_STATE(8552)] = 378293, + [SMALL_STATE(8553)] = 378316, + [SMALL_STATE(8554)] = 378333, + [SMALL_STATE(8555)] = 378352, + [SMALL_STATE(8556)] = 378369, + [SMALL_STATE(8557)] = 378388, + [SMALL_STATE(8558)] = 378413, + [SMALL_STATE(8559)] = 378430, + [SMALL_STATE(8560)] = 378453, + [SMALL_STATE(8561)] = 378474, + [SMALL_STATE(8562)] = 378497, + [SMALL_STATE(8563)] = 378516, + [SMALL_STATE(8564)] = 378533, + [SMALL_STATE(8565)] = 378556, + [SMALL_STATE(8566)] = 378575, + [SMALL_STATE(8567)] = 378598, + [SMALL_STATE(8568)] = 378615, + [SMALL_STATE(8569)] = 378630, + [SMALL_STATE(8570)] = 378653, + [SMALL_STATE(8571)] = 378670, + [SMALL_STATE(8572)] = 378695, + [SMALL_STATE(8573)] = 378714, + [SMALL_STATE(8574)] = 378735, + [SMALL_STATE(8575)] = 378752, + [SMALL_STATE(8576)] = 378769, + [SMALL_STATE(8577)] = 378792, + [SMALL_STATE(8578)] = 378815, + [SMALL_STATE(8579)] = 378836, + [SMALL_STATE(8580)] = 378857, + [SMALL_STATE(8581)] = 378880, + [SMALL_STATE(8582)] = 378903, + [SMALL_STATE(8583)] = 378928, + [SMALL_STATE(8584)] = 378949, + [SMALL_STATE(8585)] = 378966, + [SMALL_STATE(8586)] = 378987, + [SMALL_STATE(8587)] = 379006, + [SMALL_STATE(8588)] = 379026, + [SMALL_STATE(8589)] = 379046, + [SMALL_STATE(8590)] = 379062, + [SMALL_STATE(8591)] = 379078, + [SMALL_STATE(8592)] = 379094, + [SMALL_STATE(8593)] = 379110, + [SMALL_STATE(8594)] = 379130, + [SMALL_STATE(8595)] = 379146, + [SMALL_STATE(8596)] = 379162, + [SMALL_STATE(8597)] = 379178, + [SMALL_STATE(8598)] = 379194, + [SMALL_STATE(8599)] = 379210, + [SMALL_STATE(8600)] = 379232, + [SMALL_STATE(8601)] = 379248, + [SMALL_STATE(8602)] = 379270, + [SMALL_STATE(8603)] = 379290, + [SMALL_STATE(8604)] = 379310, + [SMALL_STATE(8605)] = 379332, + [SMALL_STATE(8606)] = 379348, + [SMALL_STATE(8607)] = 379364, + [SMALL_STATE(8608)] = 379380, + [SMALL_STATE(8609)] = 379396, + [SMALL_STATE(8610)] = 379412, + [SMALL_STATE(8611)] = 379428, + [SMALL_STATE(8612)] = 379444, + [SMALL_STATE(8613)] = 379460, + [SMALL_STATE(8614)] = 379476, + [SMALL_STATE(8615)] = 379496, + [SMALL_STATE(8616)] = 379512, + [SMALL_STATE(8617)] = 379528, + [SMALL_STATE(8618)] = 379550, + [SMALL_STATE(8619)] = 379570, + [SMALL_STATE(8620)] = 379592, + [SMALL_STATE(8621)] = 379612, + [SMALL_STATE(8622)] = 379632, + [SMALL_STATE(8623)] = 379650, + [SMALL_STATE(8624)] = 379666, + [SMALL_STATE(8625)] = 379682, + [SMALL_STATE(8626)] = 379698, + [SMALL_STATE(8627)] = 379720, + [SMALL_STATE(8628)] = 379736, + [SMALL_STATE(8629)] = 379752, + [SMALL_STATE(8630)] = 379768, + [SMALL_STATE(8631)] = 379790, + [SMALL_STATE(8632)] = 379806, + [SMALL_STATE(8633)] = 379826, + [SMALL_STATE(8634)] = 379842, + [SMALL_STATE(8635)] = 379864, + [SMALL_STATE(8636)] = 379882, + [SMALL_STATE(8637)] = 379902, + [SMALL_STATE(8638)] = 379922, + [SMALL_STATE(8639)] = 379938, + [SMALL_STATE(8640)] = 379954, + [SMALL_STATE(8641)] = 379970, + [SMALL_STATE(8642)] = 379986, + [SMALL_STATE(8643)] = 380002, + [SMALL_STATE(8644)] = 380018, + [SMALL_STATE(8645)] = 380034, + [SMALL_STATE(8646)] = 380050, + [SMALL_STATE(8647)] = 380066, + [SMALL_STATE(8648)] = 380082, + [SMALL_STATE(8649)] = 380098, + [SMALL_STATE(8650)] = 380114, + [SMALL_STATE(8651)] = 380130, + [SMALL_STATE(8652)] = 380152, + [SMALL_STATE(8653)] = 380168, + [SMALL_STATE(8654)] = 380190, + [SMALL_STATE(8655)] = 380206, + [SMALL_STATE(8656)] = 380226, + [SMALL_STATE(8657)] = 380246, + [SMALL_STATE(8658)] = 380262, + [SMALL_STATE(8659)] = 380278, + [SMALL_STATE(8660)] = 380294, + [SMALL_STATE(8661)] = 380310, + [SMALL_STATE(8662)] = 380326, + [SMALL_STATE(8663)] = 380342, + [SMALL_STATE(8664)] = 380358, + [SMALL_STATE(8665)] = 380374, + [SMALL_STATE(8666)] = 380390, + [SMALL_STATE(8667)] = 380406, + [SMALL_STATE(8668)] = 380422, + [SMALL_STATE(8669)] = 380438, + [SMALL_STATE(8670)] = 380454, + [SMALL_STATE(8671)] = 380470, + [SMALL_STATE(8672)] = 380486, + [SMALL_STATE(8673)] = 380502, + [SMALL_STATE(8674)] = 380518, + [SMALL_STATE(8675)] = 380540, + [SMALL_STATE(8676)] = 380556, + [SMALL_STATE(8677)] = 380572, + [SMALL_STATE(8678)] = 380588, + [SMALL_STATE(8679)] = 380610, + [SMALL_STATE(8680)] = 380630, + [SMALL_STATE(8681)] = 380650, + [SMALL_STATE(8682)] = 380672, + [SMALL_STATE(8683)] = 380686, + [SMALL_STATE(8684)] = 380702, + [SMALL_STATE(8685)] = 380722, + [SMALL_STATE(8686)] = 380740, + [SMALL_STATE(8687)] = 380762, + [SMALL_STATE(8688)] = 380784, + [SMALL_STATE(8689)] = 380806, + [SMALL_STATE(8690)] = 380828, + [SMALL_STATE(8691)] = 380848, + [SMALL_STATE(8692)] = 380868, + [SMALL_STATE(8693)] = 380886, + [SMALL_STATE(8694)] = 380906, + [SMALL_STATE(8695)] = 380924, + [SMALL_STATE(8696)] = 380944, + [SMALL_STATE(8697)] = 380960, + [SMALL_STATE(8698)] = 380982, + [SMALL_STATE(8699)] = 380996, + [SMALL_STATE(8700)] = 381018, + [SMALL_STATE(8701)] = 381032, + [SMALL_STATE(8702)] = 381052, + [SMALL_STATE(8703)] = 381072, + [SMALL_STATE(8704)] = 381090, + [SMALL_STATE(8705)] = 381112, + [SMALL_STATE(8706)] = 381134, + [SMALL_STATE(8707)] = 381154, + [SMALL_STATE(8708)] = 381174, + [SMALL_STATE(8709)] = 381190, + [SMALL_STATE(8710)] = 381208, + [SMALL_STATE(8711)] = 381224, + [SMALL_STATE(8712)] = 381240, + [SMALL_STATE(8713)] = 381258, + [SMALL_STATE(8714)] = 381276, + [SMALL_STATE(8715)] = 381292, + [SMALL_STATE(8716)] = 381312, + [SMALL_STATE(8717)] = 381328, + [SMALL_STATE(8718)] = 381342, + [SMALL_STATE(8719)] = 381358, + [SMALL_STATE(8720)] = 381380, + [SMALL_STATE(8721)] = 381396, + [SMALL_STATE(8722)] = 381412, + [SMALL_STATE(8723)] = 381434, + [SMALL_STATE(8724)] = 381454, + [SMALL_STATE(8725)] = 381474, + [SMALL_STATE(8726)] = 381496, + [SMALL_STATE(8727)] = 381512, + [SMALL_STATE(8728)] = 381528, + [SMALL_STATE(8729)] = 381544, + [SMALL_STATE(8730)] = 381560, + [SMALL_STATE(8731)] = 381576, + [SMALL_STATE(8732)] = 381592, + [SMALL_STATE(8733)] = 381614, + [SMALL_STATE(8734)] = 381630, + [SMALL_STATE(8735)] = 381646, + [SMALL_STATE(8736)] = 381662, + [SMALL_STATE(8737)] = 381678, + [SMALL_STATE(8738)] = 381694, + [SMALL_STATE(8739)] = 381710, + [SMALL_STATE(8740)] = 381726, + [SMALL_STATE(8741)] = 381748, + [SMALL_STATE(8742)] = 381764, + [SMALL_STATE(8743)] = 381786, + [SMALL_STATE(8744)] = 381802, + [SMALL_STATE(8745)] = 381822, + [SMALL_STATE(8746)] = 381842, + [SMALL_STATE(8747)] = 381858, + [SMALL_STATE(8748)] = 381874, + [SMALL_STATE(8749)] = 381890, + [SMALL_STATE(8750)] = 381906, + [SMALL_STATE(8751)] = 381922, + [SMALL_STATE(8752)] = 381938, + [SMALL_STATE(8753)] = 381956, + [SMALL_STATE(8754)] = 381972, + [SMALL_STATE(8755)] = 381988, + [SMALL_STATE(8756)] = 382004, + [SMALL_STATE(8757)] = 382020, + [SMALL_STATE(8758)] = 382036, + [SMALL_STATE(8759)] = 382052, + [SMALL_STATE(8760)] = 382068, + [SMALL_STATE(8761)] = 382082, + [SMALL_STATE(8762)] = 382098, + [SMALL_STATE(8763)] = 382120, + [SMALL_STATE(8764)] = 382142, + [SMALL_STATE(8765)] = 382164, + [SMALL_STATE(8766)] = 382184, + [SMALL_STATE(8767)] = 382204, + [SMALL_STATE(8768)] = 382220, + [SMALL_STATE(8769)] = 382236, + [SMALL_STATE(8770)] = 382252, + [SMALL_STATE(8771)] = 382268, + [SMALL_STATE(8772)] = 382284, + [SMALL_STATE(8773)] = 382300, + [SMALL_STATE(8774)] = 382316, + [SMALL_STATE(8775)] = 382332, + [SMALL_STATE(8776)] = 382348, + [SMALL_STATE(8777)] = 382364, + [SMALL_STATE(8778)] = 382380, + [SMALL_STATE(8779)] = 382396, + [SMALL_STATE(8780)] = 382412, + [SMALL_STATE(8781)] = 382434, + [SMALL_STATE(8782)] = 382456, + [SMALL_STATE(8783)] = 382472, + [SMALL_STATE(8784)] = 382492, + [SMALL_STATE(8785)] = 382512, + [SMALL_STATE(8786)] = 382528, + [SMALL_STATE(8787)] = 382548, + [SMALL_STATE(8788)] = 382566, + [SMALL_STATE(8789)] = 382584, + [SMALL_STATE(8790)] = 382600, + [SMALL_STATE(8791)] = 382618, + [SMALL_STATE(8792)] = 382636, + [SMALL_STATE(8793)] = 382654, + [SMALL_STATE(8794)] = 382670, + [SMALL_STATE(8795)] = 382684, + [SMALL_STATE(8796)] = 382698, + [SMALL_STATE(8797)] = 382712, + [SMALL_STATE(8798)] = 382734, + [SMALL_STATE(8799)] = 382748, + [SMALL_STATE(8800)] = 382770, + [SMALL_STATE(8801)] = 382784, + [SMALL_STATE(8802)] = 382804, + [SMALL_STATE(8803)] = 382824, + [SMALL_STATE(8804)] = 382840, + [SMALL_STATE(8805)] = 382856, + [SMALL_STATE(8806)] = 382872, + [SMALL_STATE(8807)] = 382888, + [SMALL_STATE(8808)] = 382904, + [SMALL_STATE(8809)] = 382920, + [SMALL_STATE(8810)] = 382936, + [SMALL_STATE(8811)] = 382952, + [SMALL_STATE(8812)] = 382968, + [SMALL_STATE(8813)] = 382984, + [SMALL_STATE(8814)] = 383000, + [SMALL_STATE(8815)] = 383016, + [SMALL_STATE(8816)] = 383032, + [SMALL_STATE(8817)] = 383048, + [SMALL_STATE(8818)] = 383064, + [SMALL_STATE(8819)] = 383078, + [SMALL_STATE(8820)] = 383094, + [SMALL_STATE(8821)] = 383110, + [SMALL_STATE(8822)] = 383132, + [SMALL_STATE(8823)] = 383148, + [SMALL_STATE(8824)] = 383170, + [SMALL_STATE(8825)] = 383190, + [SMALL_STATE(8826)] = 383210, + [SMALL_STATE(8827)] = 383224, + [SMALL_STATE(8828)] = 383242, + [SMALL_STATE(8829)] = 383256, + [SMALL_STATE(8830)] = 383270, + [SMALL_STATE(8831)] = 383286, + [SMALL_STATE(8832)] = 383300, + [SMALL_STATE(8833)] = 383316, + [SMALL_STATE(8834)] = 383330, + [SMALL_STATE(8835)] = 383346, + [SMALL_STATE(8836)] = 383360, + [SMALL_STATE(8837)] = 383376, + [SMALL_STATE(8838)] = 383390, + [SMALL_STATE(8839)] = 383404, + [SMALL_STATE(8840)] = 383418, + [SMALL_STATE(8841)] = 383440, + [SMALL_STATE(8842)] = 383454, + [SMALL_STATE(8843)] = 383468, + [SMALL_STATE(8844)] = 383490, + [SMALL_STATE(8845)] = 383510, + [SMALL_STATE(8846)] = 383530, + [SMALL_STATE(8847)] = 383544, + [SMALL_STATE(8848)] = 383558, + [SMALL_STATE(8849)] = 383572, + [SMALL_STATE(8850)] = 383586, + [SMALL_STATE(8851)] = 383600, + [SMALL_STATE(8852)] = 383614, + [SMALL_STATE(8853)] = 383628, + [SMALL_STATE(8854)] = 383642, + [SMALL_STATE(8855)] = 383656, + [SMALL_STATE(8856)] = 383678, + [SMALL_STATE(8857)] = 383692, + [SMALL_STATE(8858)] = 383714, + [SMALL_STATE(8859)] = 383734, + [SMALL_STATE(8860)] = 383748, + [SMALL_STATE(8861)] = 383762, + [SMALL_STATE(8862)] = 383784, + [SMALL_STATE(8863)] = 383798, + [SMALL_STATE(8864)] = 383812, + [SMALL_STATE(8865)] = 383828, + [SMALL_STATE(8866)] = 383842, + [SMALL_STATE(8867)] = 383856, + [SMALL_STATE(8868)] = 383878, + [SMALL_STATE(8869)] = 383892, + [SMALL_STATE(8870)] = 383906, + [SMALL_STATE(8871)] = 383928, + [SMALL_STATE(8872)] = 383948, + [SMALL_STATE(8873)] = 383962, + [SMALL_STATE(8874)] = 383976, + [SMALL_STATE(8875)] = 383990, + [SMALL_STATE(8876)] = 384004, + [SMALL_STATE(8877)] = 384018, + [SMALL_STATE(8878)] = 384032, + [SMALL_STATE(8879)] = 384046, + [SMALL_STATE(8880)] = 384060, + [SMALL_STATE(8881)] = 384082, + [SMALL_STATE(8882)] = 384098, + [SMALL_STATE(8883)] = 384112, + [SMALL_STATE(8884)] = 384134, + [SMALL_STATE(8885)] = 384148, + [SMALL_STATE(8886)] = 384168, + [SMALL_STATE(8887)] = 384182, + [SMALL_STATE(8888)] = 384200, + [SMALL_STATE(8889)] = 384218, + [SMALL_STATE(8890)] = 384240, + [SMALL_STATE(8891)] = 384262, + [SMALL_STATE(8892)] = 384276, + [SMALL_STATE(8893)] = 384298, + [SMALL_STATE(8894)] = 384318, + [SMALL_STATE(8895)] = 384338, + [SMALL_STATE(8896)] = 384360, + [SMALL_STATE(8897)] = 384374, + [SMALL_STATE(8898)] = 384388, + [SMALL_STATE(8899)] = 384402, + [SMALL_STATE(8900)] = 384416, + [SMALL_STATE(8901)] = 384438, + [SMALL_STATE(8902)] = 384460, + [SMALL_STATE(8903)] = 384480, + [SMALL_STATE(8904)] = 384494, + [SMALL_STATE(8905)] = 384516, + [SMALL_STATE(8906)] = 384534, + [SMALL_STATE(8907)] = 384552, + [SMALL_STATE(8908)] = 384568, + [SMALL_STATE(8909)] = 384582, + [SMALL_STATE(8910)] = 384604, + [SMALL_STATE(8911)] = 384626, + [SMALL_STATE(8912)] = 384640, + [SMALL_STATE(8913)] = 384662, + [SMALL_STATE(8914)] = 384682, + [SMALL_STATE(8915)] = 384702, + [SMALL_STATE(8916)] = 384718, + [SMALL_STATE(8917)] = 384732, + [SMALL_STATE(8918)] = 384754, + [SMALL_STATE(8919)] = 384772, + [SMALL_STATE(8920)] = 384792, + [SMALL_STATE(8921)] = 384808, + [SMALL_STATE(8922)] = 384830, + [SMALL_STATE(8923)] = 384844, + [SMALL_STATE(8924)] = 384866, + [SMALL_STATE(8925)] = 384886, + [SMALL_STATE(8926)] = 384900, + [SMALL_STATE(8927)] = 384920, + [SMALL_STATE(8928)] = 384936, + [SMALL_STATE(8929)] = 384958, + [SMALL_STATE(8930)] = 384980, + [SMALL_STATE(8931)] = 384994, + [SMALL_STATE(8932)] = 385014, + [SMALL_STATE(8933)] = 385034, + [SMALL_STATE(8934)] = 385056, + [SMALL_STATE(8935)] = 385070, + [SMALL_STATE(8936)] = 385092, + [SMALL_STATE(8937)] = 385114, + [SMALL_STATE(8938)] = 385134, + [SMALL_STATE(8939)] = 385156, + [SMALL_STATE(8940)] = 385178, + [SMALL_STATE(8941)] = 385198, + [SMALL_STATE(8942)] = 385220, + [SMALL_STATE(8943)] = 385242, + [SMALL_STATE(8944)] = 385264, + [SMALL_STATE(8945)] = 385284, + [SMALL_STATE(8946)] = 385300, + [SMALL_STATE(8947)] = 385320, + [SMALL_STATE(8948)] = 385336, + [SMALL_STATE(8949)] = 385354, + [SMALL_STATE(8950)] = 385374, + [SMALL_STATE(8951)] = 385396, + [SMALL_STATE(8952)] = 385418, + [SMALL_STATE(8953)] = 385438, + [SMALL_STATE(8954)] = 385460, + [SMALL_STATE(8955)] = 385482, + [SMALL_STATE(8956)] = 385502, + [SMALL_STATE(8957)] = 385524, + [SMALL_STATE(8958)] = 385546, + [SMALL_STATE(8959)] = 385566, + [SMALL_STATE(8960)] = 385588, + [SMALL_STATE(8961)] = 385610, + [SMALL_STATE(8962)] = 385630, + [SMALL_STATE(8963)] = 385652, + [SMALL_STATE(8964)] = 385674, + [SMALL_STATE(8965)] = 385694, + [SMALL_STATE(8966)] = 385716, + [SMALL_STATE(8967)] = 385730, + [SMALL_STATE(8968)] = 385752, + [SMALL_STATE(8969)] = 385770, + [SMALL_STATE(8970)] = 385790, + [SMALL_STATE(8971)] = 385804, + [SMALL_STATE(8972)] = 385826, + [SMALL_STATE(8973)] = 385848, + [SMALL_STATE(8974)] = 385868, + [SMALL_STATE(8975)] = 385888, + [SMALL_STATE(8976)] = 385908, + [SMALL_STATE(8977)] = 385930, + [SMALL_STATE(8978)] = 385950, + [SMALL_STATE(8979)] = 385970, + [SMALL_STATE(8980)] = 385990, + [SMALL_STATE(8981)] = 386010, + [SMALL_STATE(8982)] = 386030, + [SMALL_STATE(8983)] = 386050, + [SMALL_STATE(8984)] = 386070, + [SMALL_STATE(8985)] = 386090, + [SMALL_STATE(8986)] = 386110, + [SMALL_STATE(8987)] = 386130, + [SMALL_STATE(8988)] = 386150, + [SMALL_STATE(8989)] = 386164, + [SMALL_STATE(8990)] = 386182, + [SMALL_STATE(8991)] = 386200, + [SMALL_STATE(8992)] = 386222, + [SMALL_STATE(8993)] = 386238, + [SMALL_STATE(8994)] = 386256, + [SMALL_STATE(8995)] = 386274, + [SMALL_STATE(8996)] = 386292, + [SMALL_STATE(8997)] = 386312, + [SMALL_STATE(8998)] = 386326, + [SMALL_STATE(8999)] = 386348, + [SMALL_STATE(9000)] = 386362, + [SMALL_STATE(9001)] = 386384, + [SMALL_STATE(9002)] = 386404, + [SMALL_STATE(9003)] = 386424, + [SMALL_STATE(9004)] = 386446, + [SMALL_STATE(9005)] = 386464, + [SMALL_STATE(9006)] = 386480, + [SMALL_STATE(9007)] = 386502, + [SMALL_STATE(9008)] = 386522, + [SMALL_STATE(9009)] = 386540, + [SMALL_STATE(9010)] = 386556, + [SMALL_STATE(9011)] = 386574, + [SMALL_STATE(9012)] = 386592, + [SMALL_STATE(9013)] = 386610, + [SMALL_STATE(9014)] = 386626, + [SMALL_STATE(9015)] = 386640, + [SMALL_STATE(9016)] = 386656, + [SMALL_STATE(9017)] = 386674, + [SMALL_STATE(9018)] = 386694, + [SMALL_STATE(9019)] = 386710, + [SMALL_STATE(9020)] = 386726, + [SMALL_STATE(9021)] = 386742, + [SMALL_STATE(9022)] = 386762, + [SMALL_STATE(9023)] = 386780, + [SMALL_STATE(9024)] = 386798, + [SMALL_STATE(9025)] = 386818, + [SMALL_STATE(9026)] = 386838, + [SMALL_STATE(9027)] = 386858, + [SMALL_STATE(9028)] = 386872, + [SMALL_STATE(9029)] = 386886, + [SMALL_STATE(9030)] = 386906, + [SMALL_STATE(9031)] = 386928, + [SMALL_STATE(9032)] = 386950, + [SMALL_STATE(9033)] = 386972, + [SMALL_STATE(9034)] = 386994, + [SMALL_STATE(9035)] = 387010, + [SMALL_STATE(9036)] = 387024, + [SMALL_STATE(9037)] = 387040, + [SMALL_STATE(9038)] = 387056, + [SMALL_STATE(9039)] = 387076, + [SMALL_STATE(9040)] = 387096, + [SMALL_STATE(9041)] = 387112, + [SMALL_STATE(9042)] = 387128, + [SMALL_STATE(9043)] = 387142, + [SMALL_STATE(9044)] = 387158, + [SMALL_STATE(9045)] = 387178, + [SMALL_STATE(9046)] = 387194, + [SMALL_STATE(9047)] = 387210, + [SMALL_STATE(9048)] = 387226, + [SMALL_STATE(9049)] = 387242, + [SMALL_STATE(9050)] = 387258, + [SMALL_STATE(9051)] = 387274, + [SMALL_STATE(9052)] = 387290, + [SMALL_STATE(9053)] = 387304, + [SMALL_STATE(9054)] = 387320, + [SMALL_STATE(9055)] = 387336, + [SMALL_STATE(9056)] = 387356, + [SMALL_STATE(9057)] = 387372, + [SMALL_STATE(9058)] = 387386, + [SMALL_STATE(9059)] = 387402, + [SMALL_STATE(9060)] = 387418, + [SMALL_STATE(9061)] = 387434, + [SMALL_STATE(9062)] = 387450, + [SMALL_STATE(9063)] = 387466, + [SMALL_STATE(9064)] = 387482, + [SMALL_STATE(9065)] = 387498, + [SMALL_STATE(9066)] = 387514, + [SMALL_STATE(9067)] = 387530, + [SMALL_STATE(9068)] = 387548, + [SMALL_STATE(9069)] = 387564, + [SMALL_STATE(9070)] = 387580, + [SMALL_STATE(9071)] = 387596, + [SMALL_STATE(9072)] = 387612, + [SMALL_STATE(9073)] = 387628, + [SMALL_STATE(9074)] = 387644, + [SMALL_STATE(9075)] = 387660, + [SMALL_STATE(9076)] = 387680, + [SMALL_STATE(9077)] = 387700, + [SMALL_STATE(9078)] = 387718, + [SMALL_STATE(9079)] = 387738, + [SMALL_STATE(9080)] = 387754, + [SMALL_STATE(9081)] = 387776, + [SMALL_STATE(9082)] = 387792, + [SMALL_STATE(9083)] = 387812, + [SMALL_STATE(9084)] = 387828, + [SMALL_STATE(9085)] = 387844, + [SMALL_STATE(9086)] = 387860, + [SMALL_STATE(9087)] = 387882, + [SMALL_STATE(9088)] = 387896, + [SMALL_STATE(9089)] = 387916, + [SMALL_STATE(9090)] = 387936, + [SMALL_STATE(9091)] = 387956, + [SMALL_STATE(9092)] = 387978, + [SMALL_STATE(9093)] = 387998, + [SMALL_STATE(9094)] = 388018, + [SMALL_STATE(9095)] = 388038, + [SMALL_STATE(9096)] = 388058, + [SMALL_STATE(9097)] = 388080, + [SMALL_STATE(9098)] = 388096, + [SMALL_STATE(9099)] = 388116, + [SMALL_STATE(9100)] = 388132, + [SMALL_STATE(9101)] = 388152, + [SMALL_STATE(9102)] = 388174, + [SMALL_STATE(9103)] = 388194, + [SMALL_STATE(9104)] = 388214, + [SMALL_STATE(9105)] = 388234, + [SMALL_STATE(9106)] = 388248, + [SMALL_STATE(9107)] = 388268, + [SMALL_STATE(9108)] = 388288, + [SMALL_STATE(9109)] = 388308, + [SMALL_STATE(9110)] = 388322, + [SMALL_STATE(9111)] = 388342, + [SMALL_STATE(9112)] = 388362, + [SMALL_STATE(9113)] = 388382, + [SMALL_STATE(9114)] = 388402, + [SMALL_STATE(9115)] = 388422, + [SMALL_STATE(9116)] = 388442, + [SMALL_STATE(9117)] = 388462, + [SMALL_STATE(9118)] = 388482, + [SMALL_STATE(9119)] = 388502, + [SMALL_STATE(9120)] = 388520, + [SMALL_STATE(9121)] = 388536, + [SMALL_STATE(9122)] = 388556, + [SMALL_STATE(9123)] = 388572, + [SMALL_STATE(9124)] = 388592, + [SMALL_STATE(9125)] = 388612, + [SMALL_STATE(9126)] = 388628, + [SMALL_STATE(9127)] = 388648, + [SMALL_STATE(9128)] = 388664, + [SMALL_STATE(9129)] = 388680, + [SMALL_STATE(9130)] = 388700, + [SMALL_STATE(9131)] = 388720, + [SMALL_STATE(9132)] = 388740, + [SMALL_STATE(9133)] = 388756, + [SMALL_STATE(9134)] = 388772, + [SMALL_STATE(9135)] = 388792, + [SMALL_STATE(9136)] = 388812, + [SMALL_STATE(9137)] = 388828, + [SMALL_STATE(9138)] = 388848, + [SMALL_STATE(9139)] = 388864, + [SMALL_STATE(9140)] = 388884, + [SMALL_STATE(9141)] = 388904, + [SMALL_STATE(9142)] = 388920, + [SMALL_STATE(9143)] = 388942, + [SMALL_STATE(9144)] = 388964, + [SMALL_STATE(9145)] = 388986, + [SMALL_STATE(9146)] = 389006, + [SMALL_STATE(9147)] = 389026, + [SMALL_STATE(9148)] = 389048, + [SMALL_STATE(9149)] = 389070, + [SMALL_STATE(9150)] = 389090, + [SMALL_STATE(9151)] = 389108, + [SMALL_STATE(9152)] = 389126, + [SMALL_STATE(9153)] = 389144, + [SMALL_STATE(9154)] = 389162, + [SMALL_STATE(9155)] = 389180, + [SMALL_STATE(9156)] = 389198, + [SMALL_STATE(9157)] = 389218, + [SMALL_STATE(9158)] = 389238, + [SMALL_STATE(9159)] = 389258, + [SMALL_STATE(9160)] = 389278, + [SMALL_STATE(9161)] = 389298, + [SMALL_STATE(9162)] = 389318, + [SMALL_STATE(9163)] = 389338, + [SMALL_STATE(9164)] = 389358, + [SMALL_STATE(9165)] = 389378, + [SMALL_STATE(9166)] = 389398, + [SMALL_STATE(9167)] = 389418, + [SMALL_STATE(9168)] = 389438, + [SMALL_STATE(9169)] = 389458, + [SMALL_STATE(9170)] = 389478, + [SMALL_STATE(9171)] = 389498, + [SMALL_STATE(9172)] = 389518, + [SMALL_STATE(9173)] = 389538, + [SMALL_STATE(9174)] = 389558, + [SMALL_STATE(9175)] = 389578, + [SMALL_STATE(9176)] = 389598, + [SMALL_STATE(9177)] = 389618, + [SMALL_STATE(9178)] = 389638, + [SMALL_STATE(9179)] = 389654, + [SMALL_STATE(9180)] = 389671, + [SMALL_STATE(9181)] = 389690, + [SMALL_STATE(9182)] = 389707, + [SMALL_STATE(9183)] = 389722, + [SMALL_STATE(9184)] = 389741, + [SMALL_STATE(9185)] = 389758, + [SMALL_STATE(9186)] = 389775, + [SMALL_STATE(9187)] = 389792, + [SMALL_STATE(9188)] = 389811, + [SMALL_STATE(9189)] = 389830, + [SMALL_STATE(9190)] = 389849, + [SMALL_STATE(9191)] = 389866, + [SMALL_STATE(9192)] = 389883, + [SMALL_STATE(9193)] = 389900, + [SMALL_STATE(9194)] = 389915, + [SMALL_STATE(9195)] = 389930, + [SMALL_STATE(9196)] = 389949, + [SMALL_STATE(9197)] = 389964, + [SMALL_STATE(9198)] = 389979, + [SMALL_STATE(9199)] = 389994, + [SMALL_STATE(9200)] = 390009, + [SMALL_STATE(9201)] = 390028, + [SMALL_STATE(9202)] = 390043, + [SMALL_STATE(9203)] = 390056, + [SMALL_STATE(9204)] = 390075, + [SMALL_STATE(9205)] = 390090, + [SMALL_STATE(9206)] = 390109, + [SMALL_STATE(9207)] = 390128, + [SMALL_STATE(9208)] = 390141, + [SMALL_STATE(9209)] = 390160, + [SMALL_STATE(9210)] = 390179, + [SMALL_STATE(9211)] = 390196, + [SMALL_STATE(9212)] = 390215, + [SMALL_STATE(9213)] = 390230, + [SMALL_STATE(9214)] = 390247, + [SMALL_STATE(9215)] = 390266, + [SMALL_STATE(9216)] = 390283, + [SMALL_STATE(9217)] = 390302, + [SMALL_STATE(9218)] = 390321, + [SMALL_STATE(9219)] = 390336, + [SMALL_STATE(9220)] = 390351, + [SMALL_STATE(9221)] = 390370, + [SMALL_STATE(9222)] = 390389, + [SMALL_STATE(9223)] = 390404, + [SMALL_STATE(9224)] = 390423, + [SMALL_STATE(9225)] = 390442, + [SMALL_STATE(9226)] = 390457, + [SMALL_STATE(9227)] = 390472, + [SMALL_STATE(9228)] = 390487, + [SMALL_STATE(9229)] = 390502, + [SMALL_STATE(9230)] = 390519, + [SMALL_STATE(9231)] = 390532, + [SMALL_STATE(9232)] = 390551, + [SMALL_STATE(9233)] = 390566, + [SMALL_STATE(9234)] = 390581, + [SMALL_STATE(9235)] = 390598, + [SMALL_STATE(9236)] = 390617, + [SMALL_STATE(9237)] = 390634, + [SMALL_STATE(9238)] = 390651, + [SMALL_STATE(9239)] = 390670, + [SMALL_STATE(9240)] = 390685, + [SMALL_STATE(9241)] = 390704, + [SMALL_STATE(9242)] = 390723, + [SMALL_STATE(9243)] = 390742, + [SMALL_STATE(9244)] = 390757, + [SMALL_STATE(9245)] = 390776, + [SMALL_STATE(9246)] = 390791, + [SMALL_STATE(9247)] = 390806, + [SMALL_STATE(9248)] = 390825, + [SMALL_STATE(9249)] = 390840, + [SMALL_STATE(9250)] = 390855, + [SMALL_STATE(9251)] = 390868, + [SMALL_STATE(9252)] = 390881, + [SMALL_STATE(9253)] = 390900, + [SMALL_STATE(9254)] = 390917, + [SMALL_STATE(9255)] = 390936, + [SMALL_STATE(9256)] = 390951, + [SMALL_STATE(9257)] = 390968, + [SMALL_STATE(9258)] = 390985, + [SMALL_STATE(9259)] = 391000, + [SMALL_STATE(9260)] = 391019, + [SMALL_STATE(9261)] = 391034, + [SMALL_STATE(9262)] = 391053, + [SMALL_STATE(9263)] = 391072, + [SMALL_STATE(9264)] = 391091, + [SMALL_STATE(9265)] = 391106, + [SMALL_STATE(9266)] = 391125, + [SMALL_STATE(9267)] = 391144, + [SMALL_STATE(9268)] = 391163, + [SMALL_STATE(9269)] = 391176, + [SMALL_STATE(9270)] = 391195, + [SMALL_STATE(9271)] = 391212, + [SMALL_STATE(9272)] = 391229, + [SMALL_STATE(9273)] = 391244, + [SMALL_STATE(9274)] = 391259, + [SMALL_STATE(9275)] = 391274, + [SMALL_STATE(9276)] = 391291, + [SMALL_STATE(9277)] = 391306, + [SMALL_STATE(9278)] = 391319, + [SMALL_STATE(9279)] = 391338, + [SMALL_STATE(9280)] = 391357, + [SMALL_STATE(9281)] = 391376, + [SMALL_STATE(9282)] = 391395, + [SMALL_STATE(9283)] = 391414, + [SMALL_STATE(9284)] = 391429, + [SMALL_STATE(9285)] = 391444, + [SMALL_STATE(9286)] = 391459, + [SMALL_STATE(9287)] = 391474, + [SMALL_STATE(9288)] = 391489, + [SMALL_STATE(9289)] = 391502, + [SMALL_STATE(9290)] = 391521, + [SMALL_STATE(9291)] = 391536, + [SMALL_STATE(9292)] = 391553, + [SMALL_STATE(9293)] = 391568, + [SMALL_STATE(9294)] = 391583, + [SMALL_STATE(9295)] = 391600, + [SMALL_STATE(9296)] = 391615, + [SMALL_STATE(9297)] = 391630, + [SMALL_STATE(9298)] = 391649, + [SMALL_STATE(9299)] = 391668, + [SMALL_STATE(9300)] = 391683, + [SMALL_STATE(9301)] = 391702, + [SMALL_STATE(9302)] = 391717, + [SMALL_STATE(9303)] = 391736, + [SMALL_STATE(9304)] = 391755, + [SMALL_STATE(9305)] = 391770, + [SMALL_STATE(9306)] = 391783, + [SMALL_STATE(9307)] = 391802, + [SMALL_STATE(9308)] = 391819, + [SMALL_STATE(9309)] = 391834, + [SMALL_STATE(9310)] = 391849, + [SMALL_STATE(9311)] = 391866, + [SMALL_STATE(9312)] = 391879, + [SMALL_STATE(9313)] = 391894, + [SMALL_STATE(9314)] = 391913, + [SMALL_STATE(9315)] = 391932, + [SMALL_STATE(9316)] = 391951, + [SMALL_STATE(9317)] = 391970, + [SMALL_STATE(9318)] = 391989, + [SMALL_STATE(9319)] = 392004, + [SMALL_STATE(9320)] = 392019, + [SMALL_STATE(9321)] = 392038, + [SMALL_STATE(9322)] = 392051, + [SMALL_STATE(9323)] = 392070, + [SMALL_STATE(9324)] = 392087, + [SMALL_STATE(9325)] = 392106, + [SMALL_STATE(9326)] = 392121, + [SMALL_STATE(9327)] = 392138, + [SMALL_STATE(9328)] = 392155, + [SMALL_STATE(9329)] = 392172, + [SMALL_STATE(9330)] = 392191, + [SMALL_STATE(9331)] = 392210, + [SMALL_STATE(9332)] = 392225, + [SMALL_STATE(9333)] = 392242, + [SMALL_STATE(9334)] = 392261, + [SMALL_STATE(9335)] = 392276, + [SMALL_STATE(9336)] = 392295, + [SMALL_STATE(9337)] = 392312, + [SMALL_STATE(9338)] = 392331, + [SMALL_STATE(9339)] = 392350, + [SMALL_STATE(9340)] = 392365, + [SMALL_STATE(9341)] = 392378, + [SMALL_STATE(9342)] = 392397, + [SMALL_STATE(9343)] = 392414, + [SMALL_STATE(9344)] = 392431, + [SMALL_STATE(9345)] = 392448, + [SMALL_STATE(9346)] = 392461, + [SMALL_STATE(9347)] = 392480, + [SMALL_STATE(9348)] = 392499, + [SMALL_STATE(9349)] = 392518, + [SMALL_STATE(9350)] = 392531, + [SMALL_STATE(9351)] = 392550, + [SMALL_STATE(9352)] = 392567, + [SMALL_STATE(9353)] = 392582, + [SMALL_STATE(9354)] = 392599, + [SMALL_STATE(9355)] = 392614, + [SMALL_STATE(9356)] = 392631, + [SMALL_STATE(9357)] = 392650, + [SMALL_STATE(9358)] = 392669, + [SMALL_STATE(9359)] = 392688, + [SMALL_STATE(9360)] = 392701, + [SMALL_STATE(9361)] = 392720, + [SMALL_STATE(9362)] = 392737, + [SMALL_STATE(9363)] = 392754, + [SMALL_STATE(9364)] = 392773, + [SMALL_STATE(9365)] = 392790, + [SMALL_STATE(9366)] = 392805, + [SMALL_STATE(9367)] = 392820, + [SMALL_STATE(9368)] = 392839, + [SMALL_STATE(9369)] = 392858, + [SMALL_STATE(9370)] = 392877, + [SMALL_STATE(9371)] = 392892, + [SMALL_STATE(9372)] = 392905, + [SMALL_STATE(9373)] = 392924, + [SMALL_STATE(9374)] = 392941, + [SMALL_STATE(9375)] = 392958, + [SMALL_STATE(9376)] = 392973, + [SMALL_STATE(9377)] = 392990, + [SMALL_STATE(9378)] = 393005, + [SMALL_STATE(9379)] = 393020, + [SMALL_STATE(9380)] = 393035, + [SMALL_STATE(9381)] = 393054, + [SMALL_STATE(9382)] = 393073, + [SMALL_STATE(9383)] = 393088, + [SMALL_STATE(9384)] = 393101, + [SMALL_STATE(9385)] = 393120, + [SMALL_STATE(9386)] = 393135, + [SMALL_STATE(9387)] = 393152, + [SMALL_STATE(9388)] = 393171, + [SMALL_STATE(9389)] = 393188, + [SMALL_STATE(9390)] = 393207, + [SMALL_STATE(9391)] = 393226, + [SMALL_STATE(9392)] = 393245, + [SMALL_STATE(9393)] = 393264, + [SMALL_STATE(9394)] = 393279, + [SMALL_STATE(9395)] = 393292, + [SMALL_STATE(9396)] = 393311, + [SMALL_STATE(9397)] = 393328, + [SMALL_STATE(9398)] = 393347, + [SMALL_STATE(9399)] = 393366, + [SMALL_STATE(9400)] = 393383, + [SMALL_STATE(9401)] = 393402, + [SMALL_STATE(9402)] = 393417, + [SMALL_STATE(9403)] = 393434, + [SMALL_STATE(9404)] = 393453, + [SMALL_STATE(9405)] = 393472, + [SMALL_STATE(9406)] = 393489, + [SMALL_STATE(9407)] = 393502, + [SMALL_STATE(9408)] = 393521, + [SMALL_STATE(9409)] = 393540, + [SMALL_STATE(9410)] = 393557, + [SMALL_STATE(9411)] = 393572, + [SMALL_STATE(9412)] = 393589, + [SMALL_STATE(9413)] = 393604, + [SMALL_STATE(9414)] = 393619, + [SMALL_STATE(9415)] = 393638, + [SMALL_STATE(9416)] = 393657, + [SMALL_STATE(9417)] = 393670, + [SMALL_STATE(9418)] = 393689, + [SMALL_STATE(9419)] = 393706, + [SMALL_STATE(9420)] = 393723, + [SMALL_STATE(9421)] = 393738, + [SMALL_STATE(9422)] = 393757, + [SMALL_STATE(9423)] = 393776, + [SMALL_STATE(9424)] = 393789, + [SMALL_STATE(9425)] = 393808, + [SMALL_STATE(9426)] = 393825, + [SMALL_STATE(9427)] = 393842, + [SMALL_STATE(9428)] = 393857, + [SMALL_STATE(9429)] = 393876, + [SMALL_STATE(9430)] = 393895, + [SMALL_STATE(9431)] = 393908, + [SMALL_STATE(9432)] = 393927, + [SMALL_STATE(9433)] = 393942, + [SMALL_STATE(9434)] = 393959, + [SMALL_STATE(9435)] = 393976, + [SMALL_STATE(9436)] = 393991, + [SMALL_STATE(9437)] = 394010, + [SMALL_STATE(9438)] = 394029, + [SMALL_STATE(9439)] = 394042, + [SMALL_STATE(9440)] = 394061, + [SMALL_STATE(9441)] = 394078, + [SMALL_STATE(9442)] = 394095, + [SMALL_STATE(9443)] = 394110, + [SMALL_STATE(9444)] = 394123, + [SMALL_STATE(9445)] = 394142, + [SMALL_STATE(9446)] = 394159, + [SMALL_STATE(9447)] = 394176, + [SMALL_STATE(9448)] = 394191, + [SMALL_STATE(9449)] = 394204, + [SMALL_STATE(9450)] = 394223, + [SMALL_STATE(9451)] = 394240, + [SMALL_STATE(9452)] = 394257, + [SMALL_STATE(9453)] = 394272, + [SMALL_STATE(9454)] = 394285, + [SMALL_STATE(9455)] = 394304, + [SMALL_STATE(9456)] = 394321, + [SMALL_STATE(9457)] = 394338, + [SMALL_STATE(9458)] = 394353, + [SMALL_STATE(9459)] = 394366, + [SMALL_STATE(9460)] = 394385, + [SMALL_STATE(9461)] = 394402, + [SMALL_STATE(9462)] = 394419, + [SMALL_STATE(9463)] = 394432, + [SMALL_STATE(9464)] = 394445, + [SMALL_STATE(9465)] = 394462, + [SMALL_STATE(9466)] = 394479, + [SMALL_STATE(9467)] = 394498, + [SMALL_STATE(9468)] = 394515, + [SMALL_STATE(9469)] = 394532, + [SMALL_STATE(9470)] = 394549, + [SMALL_STATE(9471)] = 394566, + [SMALL_STATE(9472)] = 394583, + [SMALL_STATE(9473)] = 394598, + [SMALL_STATE(9474)] = 394615, + [SMALL_STATE(9475)] = 394632, + [SMALL_STATE(9476)] = 394647, + [SMALL_STATE(9477)] = 394664, + [SMALL_STATE(9478)] = 394681, + [SMALL_STATE(9479)] = 394700, + [SMALL_STATE(9480)] = 394717, + [SMALL_STATE(9481)] = 394734, + [SMALL_STATE(9482)] = 394751, + [SMALL_STATE(9483)] = 394768, + [SMALL_STATE(9484)] = 394785, + [SMALL_STATE(9485)] = 394802, + [SMALL_STATE(9486)] = 394819, + [SMALL_STATE(9487)] = 394836, + [SMALL_STATE(9488)] = 394853, + [SMALL_STATE(9489)] = 394870, + [SMALL_STATE(9490)] = 394887, + [SMALL_STATE(9491)] = 394904, + [SMALL_STATE(9492)] = 394921, + [SMALL_STATE(9493)] = 394938, + [SMALL_STATE(9494)] = 394955, + [SMALL_STATE(9495)] = 394972, + [SMALL_STATE(9496)] = 394989, + [SMALL_STATE(9497)] = 395006, + [SMALL_STATE(9498)] = 395023, + [SMALL_STATE(9499)] = 395040, + [SMALL_STATE(9500)] = 395057, + [SMALL_STATE(9501)] = 395074, + [SMALL_STATE(9502)] = 395091, + [SMALL_STATE(9503)] = 395108, + [SMALL_STATE(9504)] = 395125, + [SMALL_STATE(9505)] = 395142, + [SMALL_STATE(9506)] = 395159, + [SMALL_STATE(9507)] = 395176, + [SMALL_STATE(9508)] = 395193, + [SMALL_STATE(9509)] = 395210, + [SMALL_STATE(9510)] = 395227, + [SMALL_STATE(9511)] = 395244, + [SMALL_STATE(9512)] = 395261, + [SMALL_STATE(9513)] = 395278, + [SMALL_STATE(9514)] = 395295, + [SMALL_STATE(9515)] = 395312, + [SMALL_STATE(9516)] = 395329, + [SMALL_STATE(9517)] = 395346, + [SMALL_STATE(9518)] = 395363, + [SMALL_STATE(9519)] = 395380, + [SMALL_STATE(9520)] = 395395, + [SMALL_STATE(9521)] = 395414, + [SMALL_STATE(9522)] = 395429, + [SMALL_STATE(9523)] = 395446, + [SMALL_STATE(9524)] = 395459, + [SMALL_STATE(9525)] = 395478, + [SMALL_STATE(9526)] = 395497, + [SMALL_STATE(9527)] = 395516, + [SMALL_STATE(9528)] = 395531, + [SMALL_STATE(9529)] = 395546, + [SMALL_STATE(9530)] = 395561, + [SMALL_STATE(9531)] = 395576, + [SMALL_STATE(9532)] = 395595, + [SMALL_STATE(9533)] = 395614, + [SMALL_STATE(9534)] = 395633, + [SMALL_STATE(9535)] = 395652, + [SMALL_STATE(9536)] = 395667, + [SMALL_STATE(9537)] = 395684, + [SMALL_STATE(9538)] = 395699, + [SMALL_STATE(9539)] = 395714, + [SMALL_STATE(9540)] = 395729, + [SMALL_STATE(9541)] = 395744, + [SMALL_STATE(9542)] = 395763, + [SMALL_STATE(9543)] = 395782, + [SMALL_STATE(9544)] = 395801, + [SMALL_STATE(9545)] = 395820, + [SMALL_STATE(9546)] = 395839, + [SMALL_STATE(9547)] = 395854, + [SMALL_STATE(9548)] = 395873, + [SMALL_STATE(9549)] = 395892, + [SMALL_STATE(9550)] = 395907, + [SMALL_STATE(9551)] = 395924, + [SMALL_STATE(9552)] = 395943, + [SMALL_STATE(9553)] = 395958, + [SMALL_STATE(9554)] = 395973, + [SMALL_STATE(9555)] = 395992, + [SMALL_STATE(9556)] = 396007, + [SMALL_STATE(9557)] = 396024, + [SMALL_STATE(9558)] = 396043, + [SMALL_STATE(9559)] = 396058, + [SMALL_STATE(9560)] = 396073, + [SMALL_STATE(9561)] = 396088, + [SMALL_STATE(9562)] = 396103, + [SMALL_STATE(9563)] = 396116, + [SMALL_STATE(9564)] = 396131, + [SMALL_STATE(9565)] = 396150, + [SMALL_STATE(9566)] = 396165, + [SMALL_STATE(9567)] = 396184, + [SMALL_STATE(9568)] = 396203, + [SMALL_STATE(9569)] = 396218, + [SMALL_STATE(9570)] = 396237, + [SMALL_STATE(9571)] = 396252, + [SMALL_STATE(9572)] = 396267, + [SMALL_STATE(9573)] = 396282, + [SMALL_STATE(9574)] = 396297, + [SMALL_STATE(9575)] = 396314, + [SMALL_STATE(9576)] = 396329, + [SMALL_STATE(9577)] = 396344, + [SMALL_STATE(9578)] = 396359, + [SMALL_STATE(9579)] = 396374, + [SMALL_STATE(9580)] = 396389, + [SMALL_STATE(9581)] = 396404, + [SMALL_STATE(9582)] = 396423, + [SMALL_STATE(9583)] = 396438, + [SMALL_STATE(9584)] = 396453, + [SMALL_STATE(9585)] = 396468, + [SMALL_STATE(9586)] = 396483, + [SMALL_STATE(9587)] = 396502, + [SMALL_STATE(9588)] = 396515, + [SMALL_STATE(9589)] = 396534, + [SMALL_STATE(9590)] = 396553, + [SMALL_STATE(9591)] = 396568, + [SMALL_STATE(9592)] = 396583, + [SMALL_STATE(9593)] = 396600, + [SMALL_STATE(9594)] = 396615, + [SMALL_STATE(9595)] = 396630, + [SMALL_STATE(9596)] = 396649, + [SMALL_STATE(9597)] = 396666, + [SMALL_STATE(9598)] = 396681, + [SMALL_STATE(9599)] = 396696, + [SMALL_STATE(9600)] = 396715, + [SMALL_STATE(9601)] = 396730, + [SMALL_STATE(9602)] = 396749, + [SMALL_STATE(9603)] = 396764, + [SMALL_STATE(9604)] = 396779, + [SMALL_STATE(9605)] = 396798, + [SMALL_STATE(9606)] = 396811, + [SMALL_STATE(9607)] = 396826, + [SMALL_STATE(9608)] = 396841, + [SMALL_STATE(9609)] = 396860, + [SMALL_STATE(9610)] = 396877, + [SMALL_STATE(9611)] = 396896, + [SMALL_STATE(9612)] = 396911, + [SMALL_STATE(9613)] = 396930, + [SMALL_STATE(9614)] = 396945, + [SMALL_STATE(9615)] = 396960, + [SMALL_STATE(9616)] = 396975, + [SMALL_STATE(9617)] = 396994, + [SMALL_STATE(9618)] = 397009, + [SMALL_STATE(9619)] = 397024, + [SMALL_STATE(9620)] = 397039, + [SMALL_STATE(9621)] = 397056, + [SMALL_STATE(9622)] = 397073, + [SMALL_STATE(9623)] = 397090, + [SMALL_STATE(9624)] = 397105, + [SMALL_STATE(9625)] = 397120, + [SMALL_STATE(9626)] = 397135, + [SMALL_STATE(9627)] = 397150, + [SMALL_STATE(9628)] = 397165, + [SMALL_STATE(9629)] = 397180, + [SMALL_STATE(9630)] = 397195, + [SMALL_STATE(9631)] = 397210, + [SMALL_STATE(9632)] = 397229, + [SMALL_STATE(9633)] = 397244, + [SMALL_STATE(9634)] = 397263, + [SMALL_STATE(9635)] = 397282, + [SMALL_STATE(9636)] = 397297, + [SMALL_STATE(9637)] = 397312, + [SMALL_STATE(9638)] = 397325, + [SMALL_STATE(9639)] = 397344, + [SMALL_STATE(9640)] = 397363, + [SMALL_STATE(9641)] = 397382, + [SMALL_STATE(9642)] = 397399, + [SMALL_STATE(9643)] = 397418, + [SMALL_STATE(9644)] = 397435, + [SMALL_STATE(9645)] = 397450, + [SMALL_STATE(9646)] = 397469, + [SMALL_STATE(9647)] = 397488, + [SMALL_STATE(9648)] = 397507, + [SMALL_STATE(9649)] = 397524, + [SMALL_STATE(9650)] = 397543, + [SMALL_STATE(9651)] = 397562, + [SMALL_STATE(9652)] = 397579, + [SMALL_STATE(9653)] = 397596, + [SMALL_STATE(9654)] = 397611, + [SMALL_STATE(9655)] = 397626, + [SMALL_STATE(9656)] = 397641, + [SMALL_STATE(9657)] = 397656, + [SMALL_STATE(9658)] = 397675, + [SMALL_STATE(9659)] = 397694, + [SMALL_STATE(9660)] = 397709, + [SMALL_STATE(9661)] = 397724, + [SMALL_STATE(9662)] = 397739, + [SMALL_STATE(9663)] = 397754, + [SMALL_STATE(9664)] = 397769, + [SMALL_STATE(9665)] = 397788, + [SMALL_STATE(9666)] = 397807, + [SMALL_STATE(9667)] = 397824, + [SMALL_STATE(9668)] = 397839, + [SMALL_STATE(9669)] = 397854, + [SMALL_STATE(9670)] = 397869, + [SMALL_STATE(9671)] = 397884, + [SMALL_STATE(9672)] = 397899, + [SMALL_STATE(9673)] = 397914, + [SMALL_STATE(9674)] = 397929, + [SMALL_STATE(9675)] = 397944, + [SMALL_STATE(9676)] = 397957, + [SMALL_STATE(9677)] = 397976, + [SMALL_STATE(9678)] = 397995, + [SMALL_STATE(9679)] = 398008, + [SMALL_STATE(9680)] = 398025, + [SMALL_STATE(9681)] = 398044, + [SMALL_STATE(9682)] = 398063, + [SMALL_STATE(9683)] = 398082, + [SMALL_STATE(9684)] = 398101, + [SMALL_STATE(9685)] = 398114, + [SMALL_STATE(9686)] = 398133, + [SMALL_STATE(9687)] = 398152, + [SMALL_STATE(9688)] = 398167, + [SMALL_STATE(9689)] = 398184, + [SMALL_STATE(9690)] = 398203, + [SMALL_STATE(9691)] = 398218, + [SMALL_STATE(9692)] = 398235, + [SMALL_STATE(9693)] = 398254, + [SMALL_STATE(9694)] = 398271, + [SMALL_STATE(9695)] = 398290, + [SMALL_STATE(9696)] = 398305, + [SMALL_STATE(9697)] = 398322, + [SMALL_STATE(9698)] = 398341, + [SMALL_STATE(9699)] = 398360, + [SMALL_STATE(9700)] = 398379, + [SMALL_STATE(9701)] = 398394, + [SMALL_STATE(9702)] = 398409, + [SMALL_STATE(9703)] = 398428, + [SMALL_STATE(9704)] = 398443, + [SMALL_STATE(9705)] = 398462, + [SMALL_STATE(9706)] = 398477, + [SMALL_STATE(9707)] = 398492, + [SMALL_STATE(9708)] = 398507, + [SMALL_STATE(9709)] = 398526, + [SMALL_STATE(9710)] = 398543, + [SMALL_STATE(9711)] = 398558, + [SMALL_STATE(9712)] = 398577, + [SMALL_STATE(9713)] = 398592, + [SMALL_STATE(9714)] = 398609, + [SMALL_STATE(9715)] = 398624, + [SMALL_STATE(9716)] = 398639, + [SMALL_STATE(9717)] = 398654, + [SMALL_STATE(9718)] = 398669, + [SMALL_STATE(9719)] = 398684, + [SMALL_STATE(9720)] = 398699, + [SMALL_STATE(9721)] = 398718, + [SMALL_STATE(9722)] = 398733, + [SMALL_STATE(9723)] = 398752, + [SMALL_STATE(9724)] = 398767, + [SMALL_STATE(9725)] = 398782, + [SMALL_STATE(9726)] = 398797, + [SMALL_STATE(9727)] = 398812, + [SMALL_STATE(9728)] = 398827, + [SMALL_STATE(9729)] = 398840, + [SMALL_STATE(9730)] = 398859, + [SMALL_STATE(9731)] = 398874, + [SMALL_STATE(9732)] = 398889, + [SMALL_STATE(9733)] = 398906, + [SMALL_STATE(9734)] = 398919, + [SMALL_STATE(9735)] = 398938, + [SMALL_STATE(9736)] = 398953, + [SMALL_STATE(9737)] = 398972, + [SMALL_STATE(9738)] = 398991, + [SMALL_STATE(9739)] = 399008, + [SMALL_STATE(9740)] = 399027, + [SMALL_STATE(9741)] = 399042, + [SMALL_STATE(9742)] = 399057, + [SMALL_STATE(9743)] = 399076, + [SMALL_STATE(9744)] = 399095, + [SMALL_STATE(9745)] = 399108, + [SMALL_STATE(9746)] = 399127, + [SMALL_STATE(9747)] = 399144, + [SMALL_STATE(9748)] = 399159, + [SMALL_STATE(9749)] = 399174, + [SMALL_STATE(9750)] = 399191, + [SMALL_STATE(9751)] = 399210, + [SMALL_STATE(9752)] = 399225, + [SMALL_STATE(9753)] = 399240, + [SMALL_STATE(9754)] = 399259, + [SMALL_STATE(9755)] = 399274, + [SMALL_STATE(9756)] = 399289, + [SMALL_STATE(9757)] = 399304, + [SMALL_STATE(9758)] = 399319, + [SMALL_STATE(9759)] = 399334, + [SMALL_STATE(9760)] = 399349, + [SMALL_STATE(9761)] = 399364, + [SMALL_STATE(9762)] = 399379, + [SMALL_STATE(9763)] = 399394, + [SMALL_STATE(9764)] = 399413, + [SMALL_STATE(9765)] = 399428, + [SMALL_STATE(9766)] = 399447, + [SMALL_STATE(9767)] = 399466, + [SMALL_STATE(9768)] = 399485, + [SMALL_STATE(9769)] = 399504, + [SMALL_STATE(9770)] = 399523, + [SMALL_STATE(9771)] = 399542, + [SMALL_STATE(9772)] = 399561, + [SMALL_STATE(9773)] = 399580, + [SMALL_STATE(9774)] = 399599, + [SMALL_STATE(9775)] = 399614, + [SMALL_STATE(9776)] = 399629, + [SMALL_STATE(9777)] = 399642, + [SMALL_STATE(9778)] = 399661, + [SMALL_STATE(9779)] = 399678, + [SMALL_STATE(9780)] = 399693, + [SMALL_STATE(9781)] = 399708, + [SMALL_STATE(9782)] = 399723, + [SMALL_STATE(9783)] = 399738, + [SMALL_STATE(9784)] = 399753, + [SMALL_STATE(9785)] = 399768, + [SMALL_STATE(9786)] = 399785, + [SMALL_STATE(9787)] = 399800, + [SMALL_STATE(9788)] = 399815, + [SMALL_STATE(9789)] = 399830, + [SMALL_STATE(9790)] = 399845, + [SMALL_STATE(9791)] = 399860, + [SMALL_STATE(9792)] = 399875, + [SMALL_STATE(9793)] = 399890, + [SMALL_STATE(9794)] = 399909, + [SMALL_STATE(9795)] = 399924, + [SMALL_STATE(9796)] = 399939, + [SMALL_STATE(9797)] = 399954, + [SMALL_STATE(9798)] = 399971, + [SMALL_STATE(9799)] = 399986, + [SMALL_STATE(9800)] = 400001, + [SMALL_STATE(9801)] = 400018, + [SMALL_STATE(9802)] = 400033, + [SMALL_STATE(9803)] = 400048, + [SMALL_STATE(9804)] = 400063, + [SMALL_STATE(9805)] = 400078, + [SMALL_STATE(9806)] = 400097, + [SMALL_STATE(9807)] = 400112, + [SMALL_STATE(9808)] = 400127, + [SMALL_STATE(9809)] = 400146, + [SMALL_STATE(9810)] = 400163, + [SMALL_STATE(9811)] = 400176, + [SMALL_STATE(9812)] = 400195, + [SMALL_STATE(9813)] = 400210, + [SMALL_STATE(9814)] = 400227, + [SMALL_STATE(9815)] = 400246, + [SMALL_STATE(9816)] = 400261, + [SMALL_STATE(9817)] = 400276, + [SMALL_STATE(9818)] = 400293, + [SMALL_STATE(9819)] = 400308, + [SMALL_STATE(9820)] = 400327, + [SMALL_STATE(9821)] = 400342, + [SMALL_STATE(9822)] = 400361, + [SMALL_STATE(9823)] = 400380, + [SMALL_STATE(9824)] = 400393, + [SMALL_STATE(9825)] = 400412, + [SMALL_STATE(9826)] = 400427, + [SMALL_STATE(9827)] = 400440, + [SMALL_STATE(9828)] = 400455, + [SMALL_STATE(9829)] = 400470, + [SMALL_STATE(9830)] = 400483, + [SMALL_STATE(9831)] = 400498, + [SMALL_STATE(9832)] = 400513, + [SMALL_STATE(9833)] = 400528, + [SMALL_STATE(9834)] = 400543, + [SMALL_STATE(9835)] = 400558, + [SMALL_STATE(9836)] = 400573, + [SMALL_STATE(9837)] = 400588, + [SMALL_STATE(9838)] = 400603, + [SMALL_STATE(9839)] = 400618, + [SMALL_STATE(9840)] = 400631, + [SMALL_STATE(9841)] = 400650, + [SMALL_STATE(9842)] = 400665, + [SMALL_STATE(9843)] = 400681, + [SMALL_STATE(9844)] = 400697, + [SMALL_STATE(9845)] = 400713, + [SMALL_STATE(9846)] = 400729, + [SMALL_STATE(9847)] = 400745, + [SMALL_STATE(9848)] = 400761, + [SMALL_STATE(9849)] = 400777, + [SMALL_STATE(9850)] = 400793, + [SMALL_STATE(9851)] = 400809, + [SMALL_STATE(9852)] = 400821, + [SMALL_STATE(9853)] = 400837, + [SMALL_STATE(9854)] = 400853, + [SMALL_STATE(9855)] = 400869, + [SMALL_STATE(9856)] = 400885, + [SMALL_STATE(9857)] = 400901, + [SMALL_STATE(9858)] = 400917, + [SMALL_STATE(9859)] = 400933, + [SMALL_STATE(9860)] = 400949, + [SMALL_STATE(9861)] = 400965, + [SMALL_STATE(9862)] = 400981, + [SMALL_STATE(9863)] = 400997, + [SMALL_STATE(9864)] = 401013, + [SMALL_STATE(9865)] = 401029, + [SMALL_STATE(9866)] = 401045, + [SMALL_STATE(9867)] = 401061, + [SMALL_STATE(9868)] = 401077, + [SMALL_STATE(9869)] = 401093, + [SMALL_STATE(9870)] = 401109, + [SMALL_STATE(9871)] = 401125, + [SMALL_STATE(9872)] = 401141, + [SMALL_STATE(9873)] = 401153, + [SMALL_STATE(9874)] = 401167, + [SMALL_STATE(9875)] = 401183, + [SMALL_STATE(9876)] = 401197, + [SMALL_STATE(9877)] = 401213, + [SMALL_STATE(9878)] = 401229, + [SMALL_STATE(9879)] = 401241, + [SMALL_STATE(9880)] = 401257, + [SMALL_STATE(9881)] = 401273, + [SMALL_STATE(9882)] = 401289, + [SMALL_STATE(9883)] = 401305, + [SMALL_STATE(9884)] = 401321, + [SMALL_STATE(9885)] = 401337, + [SMALL_STATE(9886)] = 401353, + [SMALL_STATE(9887)] = 401369, + [SMALL_STATE(9888)] = 401385, + [SMALL_STATE(9889)] = 401401, + [SMALL_STATE(9890)] = 401417, + [SMALL_STATE(9891)] = 401433, + [SMALL_STATE(9892)] = 401449, + [SMALL_STATE(9893)] = 401465, + [SMALL_STATE(9894)] = 401481, + [SMALL_STATE(9895)] = 401497, + [SMALL_STATE(9896)] = 401513, + [SMALL_STATE(9897)] = 401529, + [SMALL_STATE(9898)] = 401545, + [SMALL_STATE(9899)] = 401561, + [SMALL_STATE(9900)] = 401577, + [SMALL_STATE(9901)] = 401589, + [SMALL_STATE(9902)] = 401605, + [SMALL_STATE(9903)] = 401619, + [SMALL_STATE(9904)] = 401635, + [SMALL_STATE(9905)] = 401649, + [SMALL_STATE(9906)] = 401665, + [SMALL_STATE(9907)] = 401681, + [SMALL_STATE(9908)] = 401697, + [SMALL_STATE(9909)] = 401713, + [SMALL_STATE(9910)] = 401729, + [SMALL_STATE(9911)] = 401745, + [SMALL_STATE(9912)] = 401761, + [SMALL_STATE(9913)] = 401777, + [SMALL_STATE(9914)] = 401793, + [SMALL_STATE(9915)] = 401809, + [SMALL_STATE(9916)] = 401825, + [SMALL_STATE(9917)] = 401841, + [SMALL_STATE(9918)] = 401857, + [SMALL_STATE(9919)] = 401873, + [SMALL_STATE(9920)] = 401889, + [SMALL_STATE(9921)] = 401905, + [SMALL_STATE(9922)] = 401921, + [SMALL_STATE(9923)] = 401935, + [SMALL_STATE(9924)] = 401951, + [SMALL_STATE(9925)] = 401967, + [SMALL_STATE(9926)] = 401983, + [SMALL_STATE(9927)] = 401999, + [SMALL_STATE(9928)] = 402015, + [SMALL_STATE(9929)] = 402031, + [SMALL_STATE(9930)] = 402047, + [SMALL_STATE(9931)] = 402063, + [SMALL_STATE(9932)] = 402079, + [SMALL_STATE(9933)] = 402095, + [SMALL_STATE(9934)] = 402111, + [SMALL_STATE(9935)] = 402127, + [SMALL_STATE(9936)] = 402143, + [SMALL_STATE(9937)] = 402159, + [SMALL_STATE(9938)] = 402173, + [SMALL_STATE(9939)] = 402189, + [SMALL_STATE(9940)] = 402205, + [SMALL_STATE(9941)] = 402221, + [SMALL_STATE(9942)] = 402237, + [SMALL_STATE(9943)] = 402253, + [SMALL_STATE(9944)] = 402269, + [SMALL_STATE(9945)] = 402285, + [SMALL_STATE(9946)] = 402301, + [SMALL_STATE(9947)] = 402317, + [SMALL_STATE(9948)] = 402333, + [SMALL_STATE(9949)] = 402349, + [SMALL_STATE(9950)] = 402365, + [SMALL_STATE(9951)] = 402381, + [SMALL_STATE(9952)] = 402397, + [SMALL_STATE(9953)] = 402413, + [SMALL_STATE(9954)] = 402429, + [SMALL_STATE(9955)] = 402445, + [SMALL_STATE(9956)] = 402461, + [SMALL_STATE(9957)] = 402477, + [SMALL_STATE(9958)] = 402493, + [SMALL_STATE(9959)] = 402509, + [SMALL_STATE(9960)] = 402525, + [SMALL_STATE(9961)] = 402541, + [SMALL_STATE(9962)] = 402557, + [SMALL_STATE(9963)] = 402573, + [SMALL_STATE(9964)] = 402589, + [SMALL_STATE(9965)] = 402605, + [SMALL_STATE(9966)] = 402621, + [SMALL_STATE(9967)] = 402637, + [SMALL_STATE(9968)] = 402653, + [SMALL_STATE(9969)] = 402669, + [SMALL_STATE(9970)] = 402685, + [SMALL_STATE(9971)] = 402699, + [SMALL_STATE(9972)] = 402715, + [SMALL_STATE(9973)] = 402731, + [SMALL_STATE(9974)] = 402747, + [SMALL_STATE(9975)] = 402763, + [SMALL_STATE(9976)] = 402779, + [SMALL_STATE(9977)] = 402793, + [SMALL_STATE(9978)] = 402809, + [SMALL_STATE(9979)] = 402825, + [SMALL_STATE(9980)] = 402841, + [SMALL_STATE(9981)] = 402857, + [SMALL_STATE(9982)] = 402873, + [SMALL_STATE(9983)] = 402889, + [SMALL_STATE(9984)] = 402905, + [SMALL_STATE(9985)] = 402921, + [SMALL_STATE(9986)] = 402937, + [SMALL_STATE(9987)] = 402953, + [SMALL_STATE(9988)] = 402969, + [SMALL_STATE(9989)] = 402985, + [SMALL_STATE(9990)] = 403001, + [SMALL_STATE(9991)] = 403017, + [SMALL_STATE(9992)] = 403033, + [SMALL_STATE(9993)] = 403047, + [SMALL_STATE(9994)] = 403063, + [SMALL_STATE(9995)] = 403079, + [SMALL_STATE(9996)] = 403095, + [SMALL_STATE(9997)] = 403111, + [SMALL_STATE(9998)] = 403127, + [SMALL_STATE(9999)] = 403143, + [SMALL_STATE(10000)] = 403157, + [SMALL_STATE(10001)] = 403173, + [SMALL_STATE(10002)] = 403189, + [SMALL_STATE(10003)] = 403205, + [SMALL_STATE(10004)] = 403221, + [SMALL_STATE(10005)] = 403237, + [SMALL_STATE(10006)] = 403253, + [SMALL_STATE(10007)] = 403269, + [SMALL_STATE(10008)] = 403281, + [SMALL_STATE(10009)] = 403297, + [SMALL_STATE(10010)] = 403313, + [SMALL_STATE(10011)] = 403329, + [SMALL_STATE(10012)] = 403345, + [SMALL_STATE(10013)] = 403361, + [SMALL_STATE(10014)] = 403377, + [SMALL_STATE(10015)] = 403391, + [SMALL_STATE(10016)] = 403407, + [SMALL_STATE(10017)] = 403421, + [SMALL_STATE(10018)] = 403437, + [SMALL_STATE(10019)] = 403453, + [SMALL_STATE(10020)] = 403467, + [SMALL_STATE(10021)] = 403483, + [SMALL_STATE(10022)] = 403499, + [SMALL_STATE(10023)] = 403515, + [SMALL_STATE(10024)] = 403531, + [SMALL_STATE(10025)] = 403547, + [SMALL_STATE(10026)] = 403561, + [SMALL_STATE(10027)] = 403577, + [SMALL_STATE(10028)] = 403593, + [SMALL_STATE(10029)] = 403609, + [SMALL_STATE(10030)] = 403623, + [SMALL_STATE(10031)] = 403637, + [SMALL_STATE(10032)] = 403653, + [SMALL_STATE(10033)] = 403669, + [SMALL_STATE(10034)] = 403685, + [SMALL_STATE(10035)] = 403699, + [SMALL_STATE(10036)] = 403715, + [SMALL_STATE(10037)] = 403729, + [SMALL_STATE(10038)] = 403745, + [SMALL_STATE(10039)] = 403761, + [SMALL_STATE(10040)] = 403777, + [SMALL_STATE(10041)] = 403793, + [SMALL_STATE(10042)] = 403807, + [SMALL_STATE(10043)] = 403823, + [SMALL_STATE(10044)] = 403837, + [SMALL_STATE(10045)] = 403853, + [SMALL_STATE(10046)] = 403869, + [SMALL_STATE(10047)] = 403883, + [SMALL_STATE(10048)] = 403897, + [SMALL_STATE(10049)] = 403911, + [SMALL_STATE(10050)] = 403927, + [SMALL_STATE(10051)] = 403941, + [SMALL_STATE(10052)] = 403957, + [SMALL_STATE(10053)] = 403973, + [SMALL_STATE(10054)] = 403989, + [SMALL_STATE(10055)] = 404005, + [SMALL_STATE(10056)] = 404021, + [SMALL_STATE(10057)] = 404035, + [SMALL_STATE(10058)] = 404047, + [SMALL_STATE(10059)] = 404063, + [SMALL_STATE(10060)] = 404079, + [SMALL_STATE(10061)] = 404095, + [SMALL_STATE(10062)] = 404109, + [SMALL_STATE(10063)] = 404123, + [SMALL_STATE(10064)] = 404137, + [SMALL_STATE(10065)] = 404153, + [SMALL_STATE(10066)] = 404169, + [SMALL_STATE(10067)] = 404185, + [SMALL_STATE(10068)] = 404199, + [SMALL_STATE(10069)] = 404215, + [SMALL_STATE(10070)] = 404231, + [SMALL_STATE(10071)] = 404247, + [SMALL_STATE(10072)] = 404263, + [SMALL_STATE(10073)] = 404277, + [SMALL_STATE(10074)] = 404293, + [SMALL_STATE(10075)] = 404305, + [SMALL_STATE(10076)] = 404321, + [SMALL_STATE(10077)] = 404337, + [SMALL_STATE(10078)] = 404353, + [SMALL_STATE(10079)] = 404369, + [SMALL_STATE(10080)] = 404385, + [SMALL_STATE(10081)] = 404401, + [SMALL_STATE(10082)] = 404417, + [SMALL_STATE(10083)] = 404433, + [SMALL_STATE(10084)] = 404449, + [SMALL_STATE(10085)] = 404465, + [SMALL_STATE(10086)] = 404481, + [SMALL_STATE(10087)] = 404497, + [SMALL_STATE(10088)] = 404513, + [SMALL_STATE(10089)] = 404529, + [SMALL_STATE(10090)] = 404545, + [SMALL_STATE(10091)] = 404561, + [SMALL_STATE(10092)] = 404577, + [SMALL_STATE(10093)] = 404593, + [SMALL_STATE(10094)] = 404609, + [SMALL_STATE(10095)] = 404625, + [SMALL_STATE(10096)] = 404637, + [SMALL_STATE(10097)] = 404653, + [SMALL_STATE(10098)] = 404669, + [SMALL_STATE(10099)] = 404685, + [SMALL_STATE(10100)] = 404701, + [SMALL_STATE(10101)] = 404717, + [SMALL_STATE(10102)] = 404733, + [SMALL_STATE(10103)] = 404745, + [SMALL_STATE(10104)] = 404761, + [SMALL_STATE(10105)] = 404777, + [SMALL_STATE(10106)] = 404793, + [SMALL_STATE(10107)] = 404809, + [SMALL_STATE(10108)] = 404821, + [SMALL_STATE(10109)] = 404837, + [SMALL_STATE(10110)] = 404853, + [SMALL_STATE(10111)] = 404869, + [SMALL_STATE(10112)] = 404885, + [SMALL_STATE(10113)] = 404901, + [SMALL_STATE(10114)] = 404917, + [SMALL_STATE(10115)] = 404929, + [SMALL_STATE(10116)] = 404945, + [SMALL_STATE(10117)] = 404961, + [SMALL_STATE(10118)] = 404973, + [SMALL_STATE(10119)] = 404989, + [SMALL_STATE(10120)] = 405005, + [SMALL_STATE(10121)] = 405021, + [SMALL_STATE(10122)] = 405037, + [SMALL_STATE(10123)] = 405053, + [SMALL_STATE(10124)] = 405069, + [SMALL_STATE(10125)] = 405085, + [SMALL_STATE(10126)] = 405101, + [SMALL_STATE(10127)] = 405117, + [SMALL_STATE(10128)] = 405133, + [SMALL_STATE(10129)] = 405149, + [SMALL_STATE(10130)] = 405163, + [SMALL_STATE(10131)] = 405179, + [SMALL_STATE(10132)] = 405195, + [SMALL_STATE(10133)] = 405211, + [SMALL_STATE(10134)] = 405225, + [SMALL_STATE(10135)] = 405241, + [SMALL_STATE(10136)] = 405257, + [SMALL_STATE(10137)] = 405273, + [SMALL_STATE(10138)] = 405289, + [SMALL_STATE(10139)] = 405305, + [SMALL_STATE(10140)] = 405321, + [SMALL_STATE(10141)] = 405337, + [SMALL_STATE(10142)] = 405353, + [SMALL_STATE(10143)] = 405369, + [SMALL_STATE(10144)] = 405385, + [SMALL_STATE(10145)] = 405399, + [SMALL_STATE(10146)] = 405415, + [SMALL_STATE(10147)] = 405429, + [SMALL_STATE(10148)] = 405443, + [SMALL_STATE(10149)] = 405459, + [SMALL_STATE(10150)] = 405475, + [SMALL_STATE(10151)] = 405487, + [SMALL_STATE(10152)] = 405503, + [SMALL_STATE(10153)] = 405519, + [SMALL_STATE(10154)] = 405535, + [SMALL_STATE(10155)] = 405551, + [SMALL_STATE(10156)] = 405567, + [SMALL_STATE(10157)] = 405583, + [SMALL_STATE(10158)] = 405599, + [SMALL_STATE(10159)] = 405615, + [SMALL_STATE(10160)] = 405631, + [SMALL_STATE(10161)] = 405645, + [SMALL_STATE(10162)] = 405661, + [SMALL_STATE(10163)] = 405677, + [SMALL_STATE(10164)] = 405691, + [SMALL_STATE(10165)] = 405707, + [SMALL_STATE(10166)] = 405719, + [SMALL_STATE(10167)] = 405735, + [SMALL_STATE(10168)] = 405746, + [SMALL_STATE(10169)] = 405759, + [SMALL_STATE(10170)] = 405772, + [SMALL_STATE(10171)] = 405785, + [SMALL_STATE(10172)] = 405798, + [SMALL_STATE(10173)] = 405811, + [SMALL_STATE(10174)] = 405824, + [SMALL_STATE(10175)] = 405837, + [SMALL_STATE(10176)] = 405850, + [SMALL_STATE(10177)] = 405863, + [SMALL_STATE(10178)] = 405876, + [SMALL_STATE(10179)] = 405889, + [SMALL_STATE(10180)] = 405902, + [SMALL_STATE(10181)] = 405915, + [SMALL_STATE(10182)] = 405928, + [SMALL_STATE(10183)] = 405941, + [SMALL_STATE(10184)] = 405954, + [SMALL_STATE(10185)] = 405967, + [SMALL_STATE(10186)] = 405980, + [SMALL_STATE(10187)] = 405993, + [SMALL_STATE(10188)] = 406006, + [SMALL_STATE(10189)] = 406019, + [SMALL_STATE(10190)] = 406032, + [SMALL_STATE(10191)] = 406045, + [SMALL_STATE(10192)] = 406058, + [SMALL_STATE(10193)] = 406071, + [SMALL_STATE(10194)] = 406084, + [SMALL_STATE(10195)] = 406097, + [SMALL_STATE(10196)] = 406110, + [SMALL_STATE(10197)] = 406121, + [SMALL_STATE(10198)] = 406132, + [SMALL_STATE(10199)] = 406145, + [SMALL_STATE(10200)] = 406158, + [SMALL_STATE(10201)] = 406171, + [SMALL_STATE(10202)] = 406184, + [SMALL_STATE(10203)] = 406197, + [SMALL_STATE(10204)] = 406210, + [SMALL_STATE(10205)] = 406223, + [SMALL_STATE(10206)] = 406236, + [SMALL_STATE(10207)] = 406249, + [SMALL_STATE(10208)] = 406260, + [SMALL_STATE(10209)] = 406273, + [SMALL_STATE(10210)] = 406286, + [SMALL_STATE(10211)] = 406299, + [SMALL_STATE(10212)] = 406312, + [SMALL_STATE(10213)] = 406325, + [SMALL_STATE(10214)] = 406338, + [SMALL_STATE(10215)] = 406351, + [SMALL_STATE(10216)] = 406364, + [SMALL_STATE(10217)] = 406377, + [SMALL_STATE(10218)] = 406390, + [SMALL_STATE(10219)] = 406403, + [SMALL_STATE(10220)] = 406416, + [SMALL_STATE(10221)] = 406429, + [SMALL_STATE(10222)] = 406442, + [SMALL_STATE(10223)] = 406455, + [SMALL_STATE(10224)] = 406468, + [SMALL_STATE(10225)] = 406481, + [SMALL_STATE(10226)] = 406494, + [SMALL_STATE(10227)] = 406507, + [SMALL_STATE(10228)] = 406520, + [SMALL_STATE(10229)] = 406533, + [SMALL_STATE(10230)] = 406546, + [SMALL_STATE(10231)] = 406559, + [SMALL_STATE(10232)] = 406572, + [SMALL_STATE(10233)] = 406585, + [SMALL_STATE(10234)] = 406598, + [SMALL_STATE(10235)] = 406611, + [SMALL_STATE(10236)] = 406624, + [SMALL_STATE(10237)] = 406637, + [SMALL_STATE(10238)] = 406650, + [SMALL_STATE(10239)] = 406663, + [SMALL_STATE(10240)] = 406676, + [SMALL_STATE(10241)] = 406689, + [SMALL_STATE(10242)] = 406702, + [SMALL_STATE(10243)] = 406715, + [SMALL_STATE(10244)] = 406728, + [SMALL_STATE(10245)] = 406739, + [SMALL_STATE(10246)] = 406752, + [SMALL_STATE(10247)] = 406765, + [SMALL_STATE(10248)] = 406778, + [SMALL_STATE(10249)] = 406791, + [SMALL_STATE(10250)] = 406804, + [SMALL_STATE(10251)] = 406817, + [SMALL_STATE(10252)] = 406830, + [SMALL_STATE(10253)] = 406843, + [SMALL_STATE(10254)] = 406856, + [SMALL_STATE(10255)] = 406869, + [SMALL_STATE(10256)] = 406882, + [SMALL_STATE(10257)] = 406895, + [SMALL_STATE(10258)] = 406908, + [SMALL_STATE(10259)] = 406921, + [SMALL_STATE(10260)] = 406934, + [SMALL_STATE(10261)] = 406947, + [SMALL_STATE(10262)] = 406960, + [SMALL_STATE(10263)] = 406973, + [SMALL_STATE(10264)] = 406986, + [SMALL_STATE(10265)] = 406999, + [SMALL_STATE(10266)] = 407012, + [SMALL_STATE(10267)] = 407025, + [SMALL_STATE(10268)] = 407038, + [SMALL_STATE(10269)] = 407051, + [SMALL_STATE(10270)] = 407064, + [SMALL_STATE(10271)] = 407077, + [SMALL_STATE(10272)] = 407090, + [SMALL_STATE(10273)] = 407103, + [SMALL_STATE(10274)] = 407116, + [SMALL_STATE(10275)] = 407129, + [SMALL_STATE(10276)] = 407142, + [SMALL_STATE(10277)] = 407155, + [SMALL_STATE(10278)] = 407168, + [SMALL_STATE(10279)] = 407181, + [SMALL_STATE(10280)] = 407194, + [SMALL_STATE(10281)] = 407207, + [SMALL_STATE(10282)] = 407220, + [SMALL_STATE(10283)] = 407233, + [SMALL_STATE(10284)] = 407246, + [SMALL_STATE(10285)] = 407259, + [SMALL_STATE(10286)] = 407272, + [SMALL_STATE(10287)] = 407285, + [SMALL_STATE(10288)] = 407296, + [SMALL_STATE(10289)] = 407307, + [SMALL_STATE(10290)] = 407320, + [SMALL_STATE(10291)] = 407330, + [SMALL_STATE(10292)] = 407340, + [SMALL_STATE(10293)] = 407350, + [SMALL_STATE(10294)] = 407360, + [SMALL_STATE(10295)] = 407370, + [SMALL_STATE(10296)] = 407380, + [SMALL_STATE(10297)] = 407390, + [SMALL_STATE(10298)] = 407400, + [SMALL_STATE(10299)] = 407410, + [SMALL_STATE(10300)] = 407420, + [SMALL_STATE(10301)] = 407430, + [SMALL_STATE(10302)] = 407440, + [SMALL_STATE(10303)] = 407450, + [SMALL_STATE(10304)] = 407460, + [SMALL_STATE(10305)] = 407470, + [SMALL_STATE(10306)] = 407480, + [SMALL_STATE(10307)] = 407490, + [SMALL_STATE(10308)] = 407500, + [SMALL_STATE(10309)] = 407510, + [SMALL_STATE(10310)] = 407520, + [SMALL_STATE(10311)] = 407530, + [SMALL_STATE(10312)] = 407540, + [SMALL_STATE(10313)] = 407550, + [SMALL_STATE(10314)] = 407560, + [SMALL_STATE(10315)] = 407570, + [SMALL_STATE(10316)] = 407580, + [SMALL_STATE(10317)] = 407590, + [SMALL_STATE(10318)] = 407600, + [SMALL_STATE(10319)] = 407610, + [SMALL_STATE(10320)] = 407620, + [SMALL_STATE(10321)] = 407630, + [SMALL_STATE(10322)] = 407640, + [SMALL_STATE(10323)] = 407650, + [SMALL_STATE(10324)] = 407660, + [SMALL_STATE(10325)] = 407670, + [SMALL_STATE(10326)] = 407680, + [SMALL_STATE(10327)] = 407690, + [SMALL_STATE(10328)] = 407700, + [SMALL_STATE(10329)] = 407710, + [SMALL_STATE(10330)] = 407720, + [SMALL_STATE(10331)] = 407730, + [SMALL_STATE(10332)] = 407740, + [SMALL_STATE(10333)] = 407750, + [SMALL_STATE(10334)] = 407760, + [SMALL_STATE(10335)] = 407770, + [SMALL_STATE(10336)] = 407780, + [SMALL_STATE(10337)] = 407790, + [SMALL_STATE(10338)] = 407800, + [SMALL_STATE(10339)] = 407810, + [SMALL_STATE(10340)] = 407820, + [SMALL_STATE(10341)] = 407830, + [SMALL_STATE(10342)] = 407840, + [SMALL_STATE(10343)] = 407850, + [SMALL_STATE(10344)] = 407860, + [SMALL_STATE(10345)] = 407870, + [SMALL_STATE(10346)] = 407880, + [SMALL_STATE(10347)] = 407890, + [SMALL_STATE(10348)] = 407900, + [SMALL_STATE(10349)] = 407910, + [SMALL_STATE(10350)] = 407920, + [SMALL_STATE(10351)] = 407930, + [SMALL_STATE(10352)] = 407940, + [SMALL_STATE(10353)] = 407950, + [SMALL_STATE(10354)] = 407960, + [SMALL_STATE(10355)] = 407970, + [SMALL_STATE(10356)] = 407980, + [SMALL_STATE(10357)] = 407990, + [SMALL_STATE(10358)] = 408000, + [SMALL_STATE(10359)] = 408010, + [SMALL_STATE(10360)] = 408020, + [SMALL_STATE(10361)] = 408030, + [SMALL_STATE(10362)] = 408040, + [SMALL_STATE(10363)] = 408050, + [SMALL_STATE(10364)] = 408060, + [SMALL_STATE(10365)] = 408070, + [SMALL_STATE(10366)] = 408080, + [SMALL_STATE(10367)] = 408090, + [SMALL_STATE(10368)] = 408100, + [SMALL_STATE(10369)] = 408110, + [SMALL_STATE(10370)] = 408120, + [SMALL_STATE(10371)] = 408130, + [SMALL_STATE(10372)] = 408140, + [SMALL_STATE(10373)] = 408150, + [SMALL_STATE(10374)] = 408160, + [SMALL_STATE(10375)] = 408170, + [SMALL_STATE(10376)] = 408180, + [SMALL_STATE(10377)] = 408190, + [SMALL_STATE(10378)] = 408200, + [SMALL_STATE(10379)] = 408210, + [SMALL_STATE(10380)] = 408220, + [SMALL_STATE(10381)] = 408230, + [SMALL_STATE(10382)] = 408240, + [SMALL_STATE(10383)] = 408250, + [SMALL_STATE(10384)] = 408260, + [SMALL_STATE(10385)] = 408270, + [SMALL_STATE(10386)] = 408280, + [SMALL_STATE(10387)] = 408290, + [SMALL_STATE(10388)] = 408300, + [SMALL_STATE(10389)] = 408310, + [SMALL_STATE(10390)] = 408320, + [SMALL_STATE(10391)] = 408330, + [SMALL_STATE(10392)] = 408340, + [SMALL_STATE(10393)] = 408350, + [SMALL_STATE(10394)] = 408360, + [SMALL_STATE(10395)] = 408370, + [SMALL_STATE(10396)] = 408380, + [SMALL_STATE(10397)] = 408390, + [SMALL_STATE(10398)] = 408400, + [SMALL_STATE(10399)] = 408410, + [SMALL_STATE(10400)] = 408420, + [SMALL_STATE(10401)] = 408430, + [SMALL_STATE(10402)] = 408440, + [SMALL_STATE(10403)] = 408450, + [SMALL_STATE(10404)] = 408460, + [SMALL_STATE(10405)] = 408470, + [SMALL_STATE(10406)] = 408480, + [SMALL_STATE(10407)] = 408490, + [SMALL_STATE(10408)] = 408500, + [SMALL_STATE(10409)] = 408510, + [SMALL_STATE(10410)] = 408520, + [SMALL_STATE(10411)] = 408530, + [SMALL_STATE(10412)] = 408540, + [SMALL_STATE(10413)] = 408550, + [SMALL_STATE(10414)] = 408560, + [SMALL_STATE(10415)] = 408570, + [SMALL_STATE(10416)] = 408580, + [SMALL_STATE(10417)] = 408590, + [SMALL_STATE(10418)] = 408600, + [SMALL_STATE(10419)] = 408610, + [SMALL_STATE(10420)] = 408620, + [SMALL_STATE(10421)] = 408630, + [SMALL_STATE(10422)] = 408640, + [SMALL_STATE(10423)] = 408650, + [SMALL_STATE(10424)] = 408660, + [SMALL_STATE(10425)] = 408670, + [SMALL_STATE(10426)] = 408680, + [SMALL_STATE(10427)] = 408690, + [SMALL_STATE(10428)] = 408700, + [SMALL_STATE(10429)] = 408710, + [SMALL_STATE(10430)] = 408720, + [SMALL_STATE(10431)] = 408730, + [SMALL_STATE(10432)] = 408740, + [SMALL_STATE(10433)] = 408750, + [SMALL_STATE(10434)] = 408760, + [SMALL_STATE(10435)] = 408770, + [SMALL_STATE(10436)] = 408780, + [SMALL_STATE(10437)] = 408790, + [SMALL_STATE(10438)] = 408800, + [SMALL_STATE(10439)] = 408810, + [SMALL_STATE(10440)] = 408820, + [SMALL_STATE(10441)] = 408830, + [SMALL_STATE(10442)] = 408840, + [SMALL_STATE(10443)] = 408850, + [SMALL_STATE(10444)] = 408860, + [SMALL_STATE(10445)] = 408870, + [SMALL_STATE(10446)] = 408880, + [SMALL_STATE(10447)] = 408890, + [SMALL_STATE(10448)] = 408900, + [SMALL_STATE(10449)] = 408910, + [SMALL_STATE(10450)] = 408920, + [SMALL_STATE(10451)] = 408930, + [SMALL_STATE(10452)] = 408940, + [SMALL_STATE(10453)] = 408950, + [SMALL_STATE(10454)] = 408960, + [SMALL_STATE(10455)] = 408970, + [SMALL_STATE(10456)] = 408980, + [SMALL_STATE(10457)] = 408990, + [SMALL_STATE(10458)] = 409000, + [SMALL_STATE(10459)] = 409010, + [SMALL_STATE(10460)] = 409020, + [SMALL_STATE(10461)] = 409030, + [SMALL_STATE(10462)] = 409040, + [SMALL_STATE(10463)] = 409050, + [SMALL_STATE(10464)] = 409060, + [SMALL_STATE(10465)] = 409070, + [SMALL_STATE(10466)] = 409080, + [SMALL_STATE(10467)] = 409090, + [SMALL_STATE(10468)] = 409100, + [SMALL_STATE(10469)] = 409110, + [SMALL_STATE(10470)] = 409120, + [SMALL_STATE(10471)] = 409130, + [SMALL_STATE(10472)] = 409140, + [SMALL_STATE(10473)] = 409150, + [SMALL_STATE(10474)] = 409160, + [SMALL_STATE(10475)] = 409170, + [SMALL_STATE(10476)] = 409180, + [SMALL_STATE(10477)] = 409190, + [SMALL_STATE(10478)] = 409200, + [SMALL_STATE(10479)] = 409210, + [SMALL_STATE(10480)] = 409220, + [SMALL_STATE(10481)] = 409230, + [SMALL_STATE(10482)] = 409240, + [SMALL_STATE(10483)] = 409250, + [SMALL_STATE(10484)] = 409260, + [SMALL_STATE(10485)] = 409270, + [SMALL_STATE(10486)] = 409280, + [SMALL_STATE(10487)] = 409290, + [SMALL_STATE(10488)] = 409300, + [SMALL_STATE(10489)] = 409310, + [SMALL_STATE(10490)] = 409320, + [SMALL_STATE(10491)] = 409330, + [SMALL_STATE(10492)] = 409340, + [SMALL_STATE(10493)] = 409350, + [SMALL_STATE(10494)] = 409360, + [SMALL_STATE(10495)] = 409370, + [SMALL_STATE(10496)] = 409380, + [SMALL_STATE(10497)] = 409390, + [SMALL_STATE(10498)] = 409400, + [SMALL_STATE(10499)] = 409410, + [SMALL_STATE(10500)] = 409420, + [SMALL_STATE(10501)] = 409430, + [SMALL_STATE(10502)] = 409440, + [SMALL_STATE(10503)] = 409450, + [SMALL_STATE(10504)] = 409460, + [SMALL_STATE(10505)] = 409470, + [SMALL_STATE(10506)] = 409480, + [SMALL_STATE(10507)] = 409490, + [SMALL_STATE(10508)] = 409500, + [SMALL_STATE(10509)] = 409510, + [SMALL_STATE(10510)] = 409520, + [SMALL_STATE(10511)] = 409530, + [SMALL_STATE(10512)] = 409540, + [SMALL_STATE(10513)] = 409550, + [SMALL_STATE(10514)] = 409560, + [SMALL_STATE(10515)] = 409570, + [SMALL_STATE(10516)] = 409580, + [SMALL_STATE(10517)] = 409590, + [SMALL_STATE(10518)] = 409600, + [SMALL_STATE(10519)] = 409610, + [SMALL_STATE(10520)] = 409620, + [SMALL_STATE(10521)] = 409630, + [SMALL_STATE(10522)] = 409640, + [SMALL_STATE(10523)] = 409650, + [SMALL_STATE(10524)] = 409660, + [SMALL_STATE(10525)] = 409670, + [SMALL_STATE(10526)] = 409680, + [SMALL_STATE(10527)] = 409690, + [SMALL_STATE(10528)] = 409700, + [SMALL_STATE(10529)] = 409710, + [SMALL_STATE(10530)] = 409720, + [SMALL_STATE(10531)] = 409730, + [SMALL_STATE(10532)] = 409740, + [SMALL_STATE(10533)] = 409750, + [SMALL_STATE(10534)] = 409760, + [SMALL_STATE(10535)] = 409770, + [SMALL_STATE(10536)] = 409780, + [SMALL_STATE(10537)] = 409790, + [SMALL_STATE(10538)] = 409800, + [SMALL_STATE(10539)] = 409810, + [SMALL_STATE(10540)] = 409820, + [SMALL_STATE(10541)] = 409830, + [SMALL_STATE(10542)] = 409840, + [SMALL_STATE(10543)] = 409850, + [SMALL_STATE(10544)] = 409860, + [SMALL_STATE(10545)] = 409870, + [SMALL_STATE(10546)] = 409880, + [SMALL_STATE(10547)] = 409890, + [SMALL_STATE(10548)] = 409900, + [SMALL_STATE(10549)] = 409910, + [SMALL_STATE(10550)] = 409920, + [SMALL_STATE(10551)] = 409930, + [SMALL_STATE(10552)] = 409940, + [SMALL_STATE(10553)] = 409950, + [SMALL_STATE(10554)] = 409960, + [SMALL_STATE(10555)] = 409970, + [SMALL_STATE(10556)] = 409980, + [SMALL_STATE(10557)] = 409990, + [SMALL_STATE(10558)] = 410000, + [SMALL_STATE(10559)] = 410010, + [SMALL_STATE(10560)] = 410020, + [SMALL_STATE(10561)] = 410030, + [SMALL_STATE(10562)] = 410040, + [SMALL_STATE(10563)] = 410050, + [SMALL_STATE(10564)] = 410060, + [SMALL_STATE(10565)] = 410070, + [SMALL_STATE(10566)] = 410080, + [SMALL_STATE(10567)] = 410090, + [SMALL_STATE(10568)] = 410100, + [SMALL_STATE(10569)] = 410110, + [SMALL_STATE(10570)] = 410120, + [SMALL_STATE(10571)] = 410130, + [SMALL_STATE(10572)] = 410140, + [SMALL_STATE(10573)] = 410150, + [SMALL_STATE(10574)] = 410160, + [SMALL_STATE(10575)] = 410170, + [SMALL_STATE(10576)] = 410180, + [SMALL_STATE(10577)] = 410190, + [SMALL_STATE(10578)] = 410200, + [SMALL_STATE(10579)] = 410210, + [SMALL_STATE(10580)] = 410220, + [SMALL_STATE(10581)] = 410230, + [SMALL_STATE(10582)] = 410240, + [SMALL_STATE(10583)] = 410250, + [SMALL_STATE(10584)] = 410260, + [SMALL_STATE(10585)] = 410270, + [SMALL_STATE(10586)] = 410280, + [SMALL_STATE(10587)] = 410290, + [SMALL_STATE(10588)] = 410300, + [SMALL_STATE(10589)] = 410310, + [SMALL_STATE(10590)] = 410320, + [SMALL_STATE(10591)] = 410330, + [SMALL_STATE(10592)] = 410340, + [SMALL_STATE(10593)] = 410350, + [SMALL_STATE(10594)] = 410360, + [SMALL_STATE(10595)] = 410370, + [SMALL_STATE(10596)] = 410380, + [SMALL_STATE(10597)] = 410390, + [SMALL_STATE(10598)] = 410400, + [SMALL_STATE(10599)] = 410410, + [SMALL_STATE(10600)] = 410420, + [SMALL_STATE(10601)] = 410430, + [SMALL_STATE(10602)] = 410440, + [SMALL_STATE(10603)] = 410450, + [SMALL_STATE(10604)] = 410460, + [SMALL_STATE(10605)] = 410470, + [SMALL_STATE(10606)] = 410480, + [SMALL_STATE(10607)] = 410490, + [SMALL_STATE(10608)] = 410500, + [SMALL_STATE(10609)] = 410510, + [SMALL_STATE(10610)] = 410520, + [SMALL_STATE(10611)] = 410530, + [SMALL_STATE(10612)] = 410540, + [SMALL_STATE(10613)] = 410550, + [SMALL_STATE(10614)] = 410560, + [SMALL_STATE(10615)] = 410570, + [SMALL_STATE(10616)] = 410580, + [SMALL_STATE(10617)] = 410590, + [SMALL_STATE(10618)] = 410600, + [SMALL_STATE(10619)] = 410610, + [SMALL_STATE(10620)] = 410620, + [SMALL_STATE(10621)] = 410630, + [SMALL_STATE(10622)] = 410640, + [SMALL_STATE(10623)] = 410650, + [SMALL_STATE(10624)] = 410660, + [SMALL_STATE(10625)] = 410670, + [SMALL_STATE(10626)] = 410680, + [SMALL_STATE(10627)] = 410690, + [SMALL_STATE(10628)] = 410700, + [SMALL_STATE(10629)] = 410710, + [SMALL_STATE(10630)] = 410720, + [SMALL_STATE(10631)] = 410730, + [SMALL_STATE(10632)] = 410740, + [SMALL_STATE(10633)] = 410750, + [SMALL_STATE(10634)] = 410760, + [SMALL_STATE(10635)] = 410770, + [SMALL_STATE(10636)] = 410780, + [SMALL_STATE(10637)] = 410790, + [SMALL_STATE(10638)] = 410800, + [SMALL_STATE(10639)] = 410810, + [SMALL_STATE(10640)] = 410820, + [SMALL_STATE(10641)] = 410830, + [SMALL_STATE(10642)] = 410840, + [SMALL_STATE(10643)] = 410850, + [SMALL_STATE(10644)] = 410860, + [SMALL_STATE(10645)] = 410870, + [SMALL_STATE(10646)] = 410880, + [SMALL_STATE(10647)] = 410890, + [SMALL_STATE(10648)] = 410900, + [SMALL_STATE(10649)] = 410910, + [SMALL_STATE(10650)] = 410920, + [SMALL_STATE(10651)] = 410930, + [SMALL_STATE(10652)] = 410940, + [SMALL_STATE(10653)] = 410950, + [SMALL_STATE(10654)] = 410960, + [SMALL_STATE(10655)] = 410970, + [SMALL_STATE(10656)] = 410980, + [SMALL_STATE(10657)] = 410990, + [SMALL_STATE(10658)] = 411000, + [SMALL_STATE(10659)] = 411010, + [SMALL_STATE(10660)] = 411020, + [SMALL_STATE(10661)] = 411030, + [SMALL_STATE(10662)] = 411040, + [SMALL_STATE(10663)] = 411050, + [SMALL_STATE(10664)] = 411060, + [SMALL_STATE(10665)] = 411070, + [SMALL_STATE(10666)] = 411080, + [SMALL_STATE(10667)] = 411090, + [SMALL_STATE(10668)] = 411100, + [SMALL_STATE(10669)] = 411110, + [SMALL_STATE(10670)] = 411120, + [SMALL_STATE(10671)] = 411130, + [SMALL_STATE(10672)] = 411140, + [SMALL_STATE(10673)] = 411150, + [SMALL_STATE(10674)] = 411160, + [SMALL_STATE(10675)] = 411170, + [SMALL_STATE(10676)] = 411180, + [SMALL_STATE(10677)] = 411190, + [SMALL_STATE(10678)] = 411200, + [SMALL_STATE(10679)] = 411210, + [SMALL_STATE(10680)] = 411220, + [SMALL_STATE(10681)] = 411230, + [SMALL_STATE(10682)] = 411240, + [SMALL_STATE(10683)] = 411250, + [SMALL_STATE(10684)] = 411260, + [SMALL_STATE(10685)] = 411270, + [SMALL_STATE(10686)] = 411280, + [SMALL_STATE(10687)] = 411290, + [SMALL_STATE(10688)] = 411300, + [SMALL_STATE(10689)] = 411310, + [SMALL_STATE(10690)] = 411320, + [SMALL_STATE(10691)] = 411330, + [SMALL_STATE(10692)] = 411340, + [SMALL_STATE(10693)] = 411350, + [SMALL_STATE(10694)] = 411360, + [SMALL_STATE(10695)] = 411370, + [SMALL_STATE(10696)] = 411380, + [SMALL_STATE(10697)] = 411390, + [SMALL_STATE(10698)] = 411400, + [SMALL_STATE(10699)] = 411410, + [SMALL_STATE(10700)] = 411420, + [SMALL_STATE(10701)] = 411430, + [SMALL_STATE(10702)] = 411440, + [SMALL_STATE(10703)] = 411450, + [SMALL_STATE(10704)] = 411460, + [SMALL_STATE(10705)] = 411470, + [SMALL_STATE(10706)] = 411480, + [SMALL_STATE(10707)] = 411490, + [SMALL_STATE(10708)] = 411500, + [SMALL_STATE(10709)] = 411510, + [SMALL_STATE(10710)] = 411520, + [SMALL_STATE(10711)] = 411530, + [SMALL_STATE(10712)] = 411540, + [SMALL_STATE(10713)] = 411550, + [SMALL_STATE(10714)] = 411560, + [SMALL_STATE(10715)] = 411570, + [SMALL_STATE(10716)] = 411580, + [SMALL_STATE(10717)] = 411590, + [SMALL_STATE(10718)] = 411600, + [SMALL_STATE(10719)] = 411610, + [SMALL_STATE(10720)] = 411620, + [SMALL_STATE(10721)] = 411630, + [SMALL_STATE(10722)] = 411640, + [SMALL_STATE(10723)] = 411650, + [SMALL_STATE(10724)] = 411660, + [SMALL_STATE(10725)] = 411670, + [SMALL_STATE(10726)] = 411680, + [SMALL_STATE(10727)] = 411690, + [SMALL_STATE(10728)] = 411700, + [SMALL_STATE(10729)] = 411710, + [SMALL_STATE(10730)] = 411720, + [SMALL_STATE(10731)] = 411730, + [SMALL_STATE(10732)] = 411740, + [SMALL_STATE(10733)] = 411750, + [SMALL_STATE(10734)] = 411760, + [SMALL_STATE(10735)] = 411770, + [SMALL_STATE(10736)] = 411780, + [SMALL_STATE(10737)] = 411790, + [SMALL_STATE(10738)] = 411800, + [SMALL_STATE(10739)] = 411810, + [SMALL_STATE(10740)] = 411820, + [SMALL_STATE(10741)] = 411830, + [SMALL_STATE(10742)] = 411840, + [SMALL_STATE(10743)] = 411850, + [SMALL_STATE(10744)] = 411860, + [SMALL_STATE(10745)] = 411870, + [SMALL_STATE(10746)] = 411880, + [SMALL_STATE(10747)] = 411890, + [SMALL_STATE(10748)] = 411900, + [SMALL_STATE(10749)] = 411910, + [SMALL_STATE(10750)] = 411920, + [SMALL_STATE(10751)] = 411930, + [SMALL_STATE(10752)] = 411940, + [SMALL_STATE(10753)] = 411950, + [SMALL_STATE(10754)] = 411960, + [SMALL_STATE(10755)] = 411970, + [SMALL_STATE(10756)] = 411980, + [SMALL_STATE(10757)] = 411990, + [SMALL_STATE(10758)] = 412000, + [SMALL_STATE(10759)] = 412010, + [SMALL_STATE(10760)] = 412020, + [SMALL_STATE(10761)] = 412030, + [SMALL_STATE(10762)] = 412040, + [SMALL_STATE(10763)] = 412050, + [SMALL_STATE(10764)] = 412060, + [SMALL_STATE(10765)] = 412070, + [SMALL_STATE(10766)] = 412080, + [SMALL_STATE(10767)] = 412090, + [SMALL_STATE(10768)] = 412100, + [SMALL_STATE(10769)] = 412110, + [SMALL_STATE(10770)] = 412120, + [SMALL_STATE(10771)] = 412130, + [SMALL_STATE(10772)] = 412140, + [SMALL_STATE(10773)] = 412150, + [SMALL_STATE(10774)] = 412160, + [SMALL_STATE(10775)] = 412170, + [SMALL_STATE(10776)] = 412180, + [SMALL_STATE(10777)] = 412190, + [SMALL_STATE(10778)] = 412200, + [SMALL_STATE(10779)] = 412210, + [SMALL_STATE(10780)] = 412220, + [SMALL_STATE(10781)] = 412230, + [SMALL_STATE(10782)] = 412240, + [SMALL_STATE(10783)] = 412250, + [SMALL_STATE(10784)] = 412260, + [SMALL_STATE(10785)] = 412270, + [SMALL_STATE(10786)] = 412280, + [SMALL_STATE(10787)] = 412290, + [SMALL_STATE(10788)] = 412300, + [SMALL_STATE(10789)] = 412310, + [SMALL_STATE(10790)] = 412320, + [SMALL_STATE(10791)] = 412330, + [SMALL_STATE(10792)] = 412340, + [SMALL_STATE(10793)] = 412350, + [SMALL_STATE(10794)] = 412360, + [SMALL_STATE(10795)] = 412370, + [SMALL_STATE(10796)] = 412380, + [SMALL_STATE(10797)] = 412390, + [SMALL_STATE(10798)] = 412400, + [SMALL_STATE(10799)] = 412410, + [SMALL_STATE(10800)] = 412420, + [SMALL_STATE(10801)] = 412430, + [SMALL_STATE(10802)] = 412440, + [SMALL_STATE(10803)] = 412450, + [SMALL_STATE(10804)] = 412460, + [SMALL_STATE(10805)] = 412470, + [SMALL_STATE(10806)] = 412480, + [SMALL_STATE(10807)] = 412490, + [SMALL_STATE(10808)] = 412500, + [SMALL_STATE(10809)] = 412510, + [SMALL_STATE(10810)] = 412520, + [SMALL_STATE(10811)] = 412530, + [SMALL_STATE(10812)] = 412540, + [SMALL_STATE(10813)] = 412550, + [SMALL_STATE(10814)] = 412560, + [SMALL_STATE(10815)] = 412570, + [SMALL_STATE(10816)] = 412580, + [SMALL_STATE(10817)] = 412590, + [SMALL_STATE(10818)] = 412600, + [SMALL_STATE(10819)] = 412610, + [SMALL_STATE(10820)] = 412620, + [SMALL_STATE(10821)] = 412630, + [SMALL_STATE(10822)] = 412640, + [SMALL_STATE(10823)] = 412650, + [SMALL_STATE(10824)] = 412660, + [SMALL_STATE(10825)] = 412670, + [SMALL_STATE(10826)] = 412680, + [SMALL_STATE(10827)] = 412690, + [SMALL_STATE(10828)] = 412700, + [SMALL_STATE(10829)] = 412710, + [SMALL_STATE(10830)] = 412720, + [SMALL_STATE(10831)] = 412730, + [SMALL_STATE(10832)] = 412740, + [SMALL_STATE(10833)] = 412750, + [SMALL_STATE(10834)] = 412760, + [SMALL_STATE(10835)] = 412770, + [SMALL_STATE(10836)] = 412780, + [SMALL_STATE(10837)] = 412790, + [SMALL_STATE(10838)] = 412800, + [SMALL_STATE(10839)] = 412810, + [SMALL_STATE(10840)] = 412820, + [SMALL_STATE(10841)] = 412830, + [SMALL_STATE(10842)] = 412840, + [SMALL_STATE(10843)] = 412850, + [SMALL_STATE(10844)] = 412860, + [SMALL_STATE(10845)] = 412870, + [SMALL_STATE(10846)] = 412880, + [SMALL_STATE(10847)] = 412890, + [SMALL_STATE(10848)] = 412900, + [SMALL_STATE(10849)] = 412910, + [SMALL_STATE(10850)] = 412920, + [SMALL_STATE(10851)] = 412930, + [SMALL_STATE(10852)] = 412940, + [SMALL_STATE(10853)] = 412950, + [SMALL_STATE(10854)] = 412960, + [SMALL_STATE(10855)] = 412970, + [SMALL_STATE(10856)] = 412980, + [SMALL_STATE(10857)] = 412990, + [SMALL_STATE(10858)] = 413000, + [SMALL_STATE(10859)] = 413010, + [SMALL_STATE(10860)] = 413020, + [SMALL_STATE(10861)] = 413030, + [SMALL_STATE(10862)] = 413040, + [SMALL_STATE(10863)] = 413050, + [SMALL_STATE(10864)] = 413060, + [SMALL_STATE(10865)] = 413070, + [SMALL_STATE(10866)] = 413080, + [SMALL_STATE(10867)] = 413090, + [SMALL_STATE(10868)] = 413100, + [SMALL_STATE(10869)] = 413110, + [SMALL_STATE(10870)] = 413120, + [SMALL_STATE(10871)] = 413130, + [SMALL_STATE(10872)] = 413140, + [SMALL_STATE(10873)] = 413150, + [SMALL_STATE(10874)] = 413160, + [SMALL_STATE(10875)] = 413170, + [SMALL_STATE(10876)] = 413180, + [SMALL_STATE(10877)] = 413190, + [SMALL_STATE(10878)] = 413200, + [SMALL_STATE(10879)] = 413210, + [SMALL_STATE(10880)] = 413220, + [SMALL_STATE(10881)] = 413230, + [SMALL_STATE(10882)] = 413240, + [SMALL_STATE(10883)] = 413250, + [SMALL_STATE(10884)] = 413260, + [SMALL_STATE(10885)] = 413270, + [SMALL_STATE(10886)] = 413280, + [SMALL_STATE(10887)] = 413290, + [SMALL_STATE(10888)] = 413300, + [SMALL_STATE(10889)] = 413310, + [SMALL_STATE(10890)] = 413320, + [SMALL_STATE(10891)] = 413330, + [SMALL_STATE(10892)] = 413340, + [SMALL_STATE(10893)] = 413350, + [SMALL_STATE(10894)] = 413360, + [SMALL_STATE(10895)] = 413370, + [SMALL_STATE(10896)] = 413380, + [SMALL_STATE(10897)] = 413390, + [SMALL_STATE(10898)] = 413400, + [SMALL_STATE(10899)] = 413410, + [SMALL_STATE(10900)] = 413420, + [SMALL_STATE(10901)] = 413430, + [SMALL_STATE(10902)] = 413440, + [SMALL_STATE(10903)] = 413450, + [SMALL_STATE(10904)] = 413460, + [SMALL_STATE(10905)] = 413470, + [SMALL_STATE(10906)] = 413480, + [SMALL_STATE(10907)] = 413490, + [SMALL_STATE(10908)] = 413500, + [SMALL_STATE(10909)] = 413510, + [SMALL_STATE(10910)] = 413520, + [SMALL_STATE(10911)] = 413530, + [SMALL_STATE(10912)] = 413540, + [SMALL_STATE(10913)] = 413550, + [SMALL_STATE(10914)] = 413560, + [SMALL_STATE(10915)] = 413570, + [SMALL_STATE(10916)] = 413580, + [SMALL_STATE(10917)] = 413590, + [SMALL_STATE(10918)] = 413600, + [SMALL_STATE(10919)] = 413610, + [SMALL_STATE(10920)] = 413620, + [SMALL_STATE(10921)] = 413630, + [SMALL_STATE(10922)] = 413640, + [SMALL_STATE(10923)] = 413650, + [SMALL_STATE(10924)] = 413660, + [SMALL_STATE(10925)] = 413670, + [SMALL_STATE(10926)] = 413680, + [SMALL_STATE(10927)] = 413690, + [SMALL_STATE(10928)] = 413700, + [SMALL_STATE(10929)] = 413710, + [SMALL_STATE(10930)] = 413720, + [SMALL_STATE(10931)] = 413730, + [SMALL_STATE(10932)] = 413740, + [SMALL_STATE(10933)] = 413750, + [SMALL_STATE(10934)] = 413760, + [SMALL_STATE(10935)] = 413770, + [SMALL_STATE(10936)] = 413780, + [SMALL_STATE(10937)] = 413790, + [SMALL_STATE(10938)] = 413800, + [SMALL_STATE(10939)] = 413810, + [SMALL_STATE(10940)] = 413820, + [SMALL_STATE(10941)] = 413830, + [SMALL_STATE(10942)] = 413840, + [SMALL_STATE(10943)] = 413850, + [SMALL_STATE(10944)] = 413860, + [SMALL_STATE(10945)] = 413870, + [SMALL_STATE(10946)] = 413880, + [SMALL_STATE(10947)] = 413890, + [SMALL_STATE(10948)] = 413900, + [SMALL_STATE(10949)] = 413910, + [SMALL_STATE(10950)] = 413920, + [SMALL_STATE(10951)] = 413930, + [SMALL_STATE(10952)] = 413940, + [SMALL_STATE(10953)] = 413950, + [SMALL_STATE(10954)] = 413960, + [SMALL_STATE(10955)] = 413970, + [SMALL_STATE(10956)] = 413980, + [SMALL_STATE(10957)] = 413990, + [SMALL_STATE(10958)] = 414000, + [SMALL_STATE(10959)] = 414010, + [SMALL_STATE(10960)] = 414020, + [SMALL_STATE(10961)] = 414030, + [SMALL_STATE(10962)] = 414040, + [SMALL_STATE(10963)] = 414050, + [SMALL_STATE(10964)] = 414060, + [SMALL_STATE(10965)] = 414070, + [SMALL_STATE(10966)] = 414080, + [SMALL_STATE(10967)] = 414090, + [SMALL_STATE(10968)] = 414100, + [SMALL_STATE(10969)] = 414110, + [SMALL_STATE(10970)] = 414120, + [SMALL_STATE(10971)] = 414130, + [SMALL_STATE(10972)] = 414140, + [SMALL_STATE(10973)] = 414150, + [SMALL_STATE(10974)] = 414160, + [SMALL_STATE(10975)] = 414170, + [SMALL_STATE(10976)] = 414180, + [SMALL_STATE(10977)] = 414190, + [SMALL_STATE(10978)] = 414200, + [SMALL_STATE(10979)] = 414210, + [SMALL_STATE(10980)] = 414220, + [SMALL_STATE(10981)] = 414230, + [SMALL_STATE(10982)] = 414240, + [SMALL_STATE(10983)] = 414250, + [SMALL_STATE(10984)] = 414260, + [SMALL_STATE(10985)] = 414270, + [SMALL_STATE(10986)] = 414280, + [SMALL_STATE(10987)] = 414290, + [SMALL_STATE(10988)] = 414300, + [SMALL_STATE(10989)] = 414310, + [SMALL_STATE(10990)] = 414320, + [SMALL_STATE(10991)] = 414330, + [SMALL_STATE(10992)] = 414340, + [SMALL_STATE(10993)] = 414350, + [SMALL_STATE(10994)] = 414360, + [SMALL_STATE(10995)] = 414370, + [SMALL_STATE(10996)] = 414380, + [SMALL_STATE(10997)] = 414390, + [SMALL_STATE(10998)] = 414400, + [SMALL_STATE(10999)] = 414410, + [SMALL_STATE(11000)] = 414420, + [SMALL_STATE(11001)] = 414430, + [SMALL_STATE(11002)] = 414440, + [SMALL_STATE(11003)] = 414450, + [SMALL_STATE(11004)] = 414460, + [SMALL_STATE(11005)] = 414470, + [SMALL_STATE(11006)] = 414480, + [SMALL_STATE(11007)] = 414490, + [SMALL_STATE(11008)] = 414500, + [SMALL_STATE(11009)] = 414510, + [SMALL_STATE(11010)] = 414520, + [SMALL_STATE(11011)] = 414530, + [SMALL_STATE(11012)] = 414540, + [SMALL_STATE(11013)] = 414550, + [SMALL_STATE(11014)] = 414560, + [SMALL_STATE(11015)] = 414570, + [SMALL_STATE(11016)] = 414580, + [SMALL_STATE(11017)] = 414590, + [SMALL_STATE(11018)] = 414600, + [SMALL_STATE(11019)] = 414610, + [SMALL_STATE(11020)] = 414620, + [SMALL_STATE(11021)] = 414630, + [SMALL_STATE(11022)] = 414640, + [SMALL_STATE(11023)] = 414650, + [SMALL_STATE(11024)] = 414660, + [SMALL_STATE(11025)] = 414670, + [SMALL_STATE(11026)] = 414680, + [SMALL_STATE(11027)] = 414690, + [SMALL_STATE(11028)] = 414700, + [SMALL_STATE(11029)] = 414710, + [SMALL_STATE(11030)] = 414720, + [SMALL_STATE(11031)] = 414730, + [SMALL_STATE(11032)] = 414740, + [SMALL_STATE(11033)] = 414750, + [SMALL_STATE(11034)] = 414760, + [SMALL_STATE(11035)] = 414770, + [SMALL_STATE(11036)] = 414780, + [SMALL_STATE(11037)] = 414790, + [SMALL_STATE(11038)] = 414800, + [SMALL_STATE(11039)] = 414810, + [SMALL_STATE(11040)] = 414820, + [SMALL_STATE(11041)] = 414830, + [SMALL_STATE(11042)] = 414840, + [SMALL_STATE(11043)] = 414850, + [SMALL_STATE(11044)] = 414860, + [SMALL_STATE(11045)] = 414870, + [SMALL_STATE(11046)] = 414880, + [SMALL_STATE(11047)] = 414890, + [SMALL_STATE(11048)] = 414900, + [SMALL_STATE(11049)] = 414910, + [SMALL_STATE(11050)] = 414920, + [SMALL_STATE(11051)] = 414930, + [SMALL_STATE(11052)] = 414940, + [SMALL_STATE(11053)] = 414950, + [SMALL_STATE(11054)] = 414960, + [SMALL_STATE(11055)] = 414970, + [SMALL_STATE(11056)] = 414980, + [SMALL_STATE(11057)] = 414990, + [SMALL_STATE(11058)] = 415000, + [SMALL_STATE(11059)] = 415010, + [SMALL_STATE(11060)] = 415020, + [SMALL_STATE(11061)] = 415030, + [SMALL_STATE(11062)] = 415040, + [SMALL_STATE(11063)] = 415050, + [SMALL_STATE(11064)] = 415060, + [SMALL_STATE(11065)] = 415070, + [SMALL_STATE(11066)] = 415080, + [SMALL_STATE(11067)] = 415090, + [SMALL_STATE(11068)] = 415100, + [SMALL_STATE(11069)] = 415110, + [SMALL_STATE(11070)] = 415120, + [SMALL_STATE(11071)] = 415130, + [SMALL_STATE(11072)] = 415140, + [SMALL_STATE(11073)] = 415150, + [SMALL_STATE(11074)] = 415160, + [SMALL_STATE(11075)] = 415170, + [SMALL_STATE(11076)] = 415180, + [SMALL_STATE(11077)] = 415190, + [SMALL_STATE(11078)] = 415200, + [SMALL_STATE(11079)] = 415210, + [SMALL_STATE(11080)] = 415220, + [SMALL_STATE(11081)] = 415230, + [SMALL_STATE(11082)] = 415240, + [SMALL_STATE(11083)] = 415250, + [SMALL_STATE(11084)] = 415260, + [SMALL_STATE(11085)] = 415270, + [SMALL_STATE(11086)] = 415280, + [SMALL_STATE(11087)] = 415290, + [SMALL_STATE(11088)] = 415300, + [SMALL_STATE(11089)] = 415310, + [SMALL_STATE(11090)] = 415320, + [SMALL_STATE(11091)] = 415330, + [SMALL_STATE(11092)] = 415340, + [SMALL_STATE(11093)] = 415350, + [SMALL_STATE(11094)] = 415360, + [SMALL_STATE(11095)] = 415370, + [SMALL_STATE(11096)] = 415380, + [SMALL_STATE(11097)] = 415390, + [SMALL_STATE(11098)] = 415400, + [SMALL_STATE(11099)] = 415410, + [SMALL_STATE(11100)] = 415420, + [SMALL_STATE(11101)] = 415430, + [SMALL_STATE(11102)] = 415440, + [SMALL_STATE(11103)] = 415450, + [SMALL_STATE(11104)] = 415460, + [SMALL_STATE(11105)] = 415470, + [SMALL_STATE(11106)] = 415480, + [SMALL_STATE(11107)] = 415490, + [SMALL_STATE(11108)] = 415500, + [SMALL_STATE(11109)] = 415510, + [SMALL_STATE(11110)] = 415520, + [SMALL_STATE(11111)] = 415530, + [SMALL_STATE(11112)] = 415540, + [SMALL_STATE(11113)] = 415550, + [SMALL_STATE(11114)] = 415560, + [SMALL_STATE(11115)] = 415570, + [SMALL_STATE(11116)] = 415580, + [SMALL_STATE(11117)] = 415590, + [SMALL_STATE(11118)] = 415600, + [SMALL_STATE(11119)] = 415610, + [SMALL_STATE(11120)] = 415620, + [SMALL_STATE(11121)] = 415630, + [SMALL_STATE(11122)] = 415640, + [SMALL_STATE(11123)] = 415650, + [SMALL_STATE(11124)] = 415660, + [SMALL_STATE(11125)] = 415670, + [SMALL_STATE(11126)] = 415680, + [SMALL_STATE(11127)] = 415690, + [SMALL_STATE(11128)] = 415700, + [SMALL_STATE(11129)] = 415710, + [SMALL_STATE(11130)] = 415720, + [SMALL_STATE(11131)] = 415730, + [SMALL_STATE(11132)] = 415740, + [SMALL_STATE(11133)] = 415750, + [SMALL_STATE(11134)] = 415760, + [SMALL_STATE(11135)] = 415770, + [SMALL_STATE(11136)] = 415780, + [SMALL_STATE(11137)] = 415790, + [SMALL_STATE(11138)] = 415800, + [SMALL_STATE(11139)] = 415810, + [SMALL_STATE(11140)] = 415820, + [SMALL_STATE(11141)] = 415830, + [SMALL_STATE(11142)] = 415840, + [SMALL_STATE(11143)] = 415850, + [SMALL_STATE(11144)] = 415860, + [SMALL_STATE(11145)] = 415870, + [SMALL_STATE(11146)] = 415880, + [SMALL_STATE(11147)] = 415890, + [SMALL_STATE(11148)] = 415900, + [SMALL_STATE(11149)] = 415910, + [SMALL_STATE(11150)] = 415920, + [SMALL_STATE(11151)] = 415930, + [SMALL_STATE(11152)] = 415940, + [SMALL_STATE(11153)] = 415950, + [SMALL_STATE(11154)] = 415960, + [SMALL_STATE(11155)] = 415970, + [SMALL_STATE(11156)] = 415980, + [SMALL_STATE(11157)] = 415990, + [SMALL_STATE(11158)] = 416000, + [SMALL_STATE(11159)] = 416010, + [SMALL_STATE(11160)] = 416020, + [SMALL_STATE(11161)] = 416030, + [SMALL_STATE(11162)] = 416040, + [SMALL_STATE(11163)] = 416050, + [SMALL_STATE(11164)] = 416060, + [SMALL_STATE(11165)] = 416070, + [SMALL_STATE(11166)] = 416080, + [SMALL_STATE(11167)] = 416090, + [SMALL_STATE(11168)] = 416100, + [SMALL_STATE(11169)] = 416110, + [SMALL_STATE(11170)] = 416120, + [SMALL_STATE(11171)] = 416130, + [SMALL_STATE(11172)] = 416140, + [SMALL_STATE(11173)] = 416150, + [SMALL_STATE(11174)] = 416160, + [SMALL_STATE(11175)] = 416170, + [SMALL_STATE(11176)] = 416180, + [SMALL_STATE(11177)] = 416190, + [SMALL_STATE(11178)] = 416200, + [SMALL_STATE(11179)] = 416210, + [SMALL_STATE(11180)] = 416220, + [SMALL_STATE(11181)] = 416230, + [SMALL_STATE(11182)] = 416240, + [SMALL_STATE(11183)] = 416250, + [SMALL_STATE(11184)] = 416260, + [SMALL_STATE(11185)] = 416270, + [SMALL_STATE(11186)] = 416280, + [SMALL_STATE(11187)] = 416290, + [SMALL_STATE(11188)] = 416300, + [SMALL_STATE(11189)] = 416310, + [SMALL_STATE(11190)] = 416320, + [SMALL_STATE(11191)] = 416330, + [SMALL_STATE(11192)] = 416340, + [SMALL_STATE(11193)] = 416350, + [SMALL_STATE(11194)] = 416360, + [SMALL_STATE(11195)] = 416370, + [SMALL_STATE(11196)] = 416380, + [SMALL_STATE(11197)] = 416390, + [SMALL_STATE(11198)] = 416400, + [SMALL_STATE(11199)] = 416410, + [SMALL_STATE(11200)] = 416420, + [SMALL_STATE(11201)] = 416430, + [SMALL_STATE(11202)] = 416440, + [SMALL_STATE(11203)] = 416450, + [SMALL_STATE(11204)] = 416460, + [SMALL_STATE(11205)] = 416470, + [SMALL_STATE(11206)] = 416480, + [SMALL_STATE(11207)] = 416490, + [SMALL_STATE(11208)] = 416500, + [SMALL_STATE(11209)] = 416510, + [SMALL_STATE(11210)] = 416520, + [SMALL_STATE(11211)] = 416530, + [SMALL_STATE(11212)] = 416540, + [SMALL_STATE(11213)] = 416550, + [SMALL_STATE(11214)] = 416560, + [SMALL_STATE(11215)] = 416570, + [SMALL_STATE(11216)] = 416580, + [SMALL_STATE(11217)] = 416590, + [SMALL_STATE(11218)] = 416600, + [SMALL_STATE(11219)] = 416610, + [SMALL_STATE(11220)] = 416620, + [SMALL_STATE(11221)] = 416630, + [SMALL_STATE(11222)] = 416640, + [SMALL_STATE(11223)] = 416650, + [SMALL_STATE(11224)] = 416660, + [SMALL_STATE(11225)] = 416670, + [SMALL_STATE(11226)] = 416680, + [SMALL_STATE(11227)] = 416690, + [SMALL_STATE(11228)] = 416700, + [SMALL_STATE(11229)] = 416710, + [SMALL_STATE(11230)] = 416720, + [SMALL_STATE(11231)] = 416730, + [SMALL_STATE(11232)] = 416740, + [SMALL_STATE(11233)] = 416750, + [SMALL_STATE(11234)] = 416760, + [SMALL_STATE(11235)] = 416770, + [SMALL_STATE(11236)] = 416780, + [SMALL_STATE(11237)] = 416790, + [SMALL_STATE(11238)] = 416800, + [SMALL_STATE(11239)] = 416810, + [SMALL_STATE(11240)] = 416820, + [SMALL_STATE(11241)] = 416830, + [SMALL_STATE(11242)] = 416840, + [SMALL_STATE(11243)] = 416850, + [SMALL_STATE(11244)] = 416860, + [SMALL_STATE(11245)] = 416870, + [SMALL_STATE(11246)] = 416880, + [SMALL_STATE(11247)] = 416890, + [SMALL_STATE(11248)] = 416900, + [SMALL_STATE(11249)] = 416910, + [SMALL_STATE(11250)] = 416920, + [SMALL_STATE(11251)] = 416930, + [SMALL_STATE(11252)] = 416940, + [SMALL_STATE(11253)] = 416950, + [SMALL_STATE(11254)] = 416960, + [SMALL_STATE(11255)] = 416970, + [SMALL_STATE(11256)] = 416980, + [SMALL_STATE(11257)] = 416990, + [SMALL_STATE(11258)] = 417000, + [SMALL_STATE(11259)] = 417010, + [SMALL_STATE(11260)] = 417020, + [SMALL_STATE(11261)] = 417030, + [SMALL_STATE(11262)] = 417040, + [SMALL_STATE(11263)] = 417050, + [SMALL_STATE(11264)] = 417060, + [SMALL_STATE(11265)] = 417070, + [SMALL_STATE(11266)] = 417080, + [SMALL_STATE(11267)] = 417090, + [SMALL_STATE(11268)] = 417100, + [SMALL_STATE(11269)] = 417110, + [SMALL_STATE(11270)] = 417120, + [SMALL_STATE(11271)] = 417130, + [SMALL_STATE(11272)] = 417140, + [SMALL_STATE(11273)] = 417150, + [SMALL_STATE(11274)] = 417160, + [SMALL_STATE(11275)] = 417170, + [SMALL_STATE(11276)] = 417180, + [SMALL_STATE(11277)] = 417190, + [SMALL_STATE(11278)] = 417200, + [SMALL_STATE(11279)] = 417210, + [SMALL_STATE(11280)] = 417220, + [SMALL_STATE(11281)] = 417230, + [SMALL_STATE(11282)] = 417240, + [SMALL_STATE(11283)] = 417250, + [SMALL_STATE(11284)] = 417260, + [SMALL_STATE(11285)] = 417270, + [SMALL_STATE(11286)] = 417280, + [SMALL_STATE(11287)] = 417290, + [SMALL_STATE(11288)] = 417300, + [SMALL_STATE(11289)] = 417310, + [SMALL_STATE(11290)] = 417320, + [SMALL_STATE(11291)] = 417330, + [SMALL_STATE(11292)] = 417340, + [SMALL_STATE(11293)] = 417350, + [SMALL_STATE(11294)] = 417360, + [SMALL_STATE(11295)] = 417370, + [SMALL_STATE(11296)] = 417380, + [SMALL_STATE(11297)] = 417390, + [SMALL_STATE(11298)] = 417400, + [SMALL_STATE(11299)] = 417410, + [SMALL_STATE(11300)] = 417420, + [SMALL_STATE(11301)] = 417430, + [SMALL_STATE(11302)] = 417440, + [SMALL_STATE(11303)] = 417450, + [SMALL_STATE(11304)] = 417460, + [SMALL_STATE(11305)] = 417470, + [SMALL_STATE(11306)] = 417480, + [SMALL_STATE(11307)] = 417490, + [SMALL_STATE(11308)] = 417500, + [SMALL_STATE(11309)] = 417510, + [SMALL_STATE(11310)] = 417520, + [SMALL_STATE(11311)] = 417530, + [SMALL_STATE(11312)] = 417540, + [SMALL_STATE(11313)] = 417550, + [SMALL_STATE(11314)] = 417560, + [SMALL_STATE(11315)] = 417570, + [SMALL_STATE(11316)] = 417580, + [SMALL_STATE(11317)] = 417590, + [SMALL_STATE(11318)] = 417600, + [SMALL_STATE(11319)] = 417610, + [SMALL_STATE(11320)] = 417620, + [SMALL_STATE(11321)] = 417630, + [SMALL_STATE(11322)] = 417640, + [SMALL_STATE(11323)] = 417650, + [SMALL_STATE(11324)] = 417660, + [SMALL_STATE(11325)] = 417670, + [SMALL_STATE(11326)] = 417680, + [SMALL_STATE(11327)] = 417690, + [SMALL_STATE(11328)] = 417700, + [SMALL_STATE(11329)] = 417710, + [SMALL_STATE(11330)] = 417720, + [SMALL_STATE(11331)] = 417730, + [SMALL_STATE(11332)] = 417740, + [SMALL_STATE(11333)] = 417750, + [SMALL_STATE(11334)] = 417760, + [SMALL_STATE(11335)] = 417770, + [SMALL_STATE(11336)] = 417780, + [SMALL_STATE(11337)] = 417790, + [SMALL_STATE(11338)] = 417800, + [SMALL_STATE(11339)] = 417810, + [SMALL_STATE(11340)] = 417820, + [SMALL_STATE(11341)] = 417830, + [SMALL_STATE(11342)] = 417840, + [SMALL_STATE(11343)] = 417850, + [SMALL_STATE(11344)] = 417860, + [SMALL_STATE(11345)] = 417870, + [SMALL_STATE(11346)] = 417880, + [SMALL_STATE(11347)] = 417890, + [SMALL_STATE(11348)] = 417900, + [SMALL_STATE(11349)] = 417910, + [SMALL_STATE(11350)] = 417920, + [SMALL_STATE(11351)] = 417930, + [SMALL_STATE(11352)] = 417940, + [SMALL_STATE(11353)] = 417950, + [SMALL_STATE(11354)] = 417960, + [SMALL_STATE(11355)] = 417970, + [SMALL_STATE(11356)] = 417980, + [SMALL_STATE(11357)] = 417990, + [SMALL_STATE(11358)] = 418000, + [SMALL_STATE(11359)] = 418010, + [SMALL_STATE(11360)] = 418020, + [SMALL_STATE(11361)] = 418030, + [SMALL_STATE(11362)] = 418040, + [SMALL_STATE(11363)] = 418050, + [SMALL_STATE(11364)] = 418060, + [SMALL_STATE(11365)] = 418070, + [SMALL_STATE(11366)] = 418080, + [SMALL_STATE(11367)] = 418090, + [SMALL_STATE(11368)] = 418100, + [SMALL_STATE(11369)] = 418110, + [SMALL_STATE(11370)] = 418120, + [SMALL_STATE(11371)] = 418130, + [SMALL_STATE(11372)] = 418140, + [SMALL_STATE(11373)] = 418150, + [SMALL_STATE(11374)] = 418160, + [SMALL_STATE(11375)] = 418170, + [SMALL_STATE(11376)] = 418180, + [SMALL_STATE(11377)] = 418190, + [SMALL_STATE(11378)] = 418200, + [SMALL_STATE(11379)] = 418210, + [SMALL_STATE(11380)] = 418220, + [SMALL_STATE(11381)] = 418230, + [SMALL_STATE(11382)] = 418240, + [SMALL_STATE(11383)] = 418250, + [SMALL_STATE(11384)] = 418260, + [SMALL_STATE(11385)] = 418270, + [SMALL_STATE(11386)] = 418280, + [SMALL_STATE(11387)] = 418290, + [SMALL_STATE(11388)] = 418300, + [SMALL_STATE(11389)] = 418310, + [SMALL_STATE(11390)] = 418320, + [SMALL_STATE(11391)] = 418330, + [SMALL_STATE(11392)] = 418340, + [SMALL_STATE(11393)] = 418350, + [SMALL_STATE(11394)] = 418360, + [SMALL_STATE(11395)] = 418370, + [SMALL_STATE(11396)] = 418380, + [SMALL_STATE(11397)] = 418390, + [SMALL_STATE(11398)] = 418400, + [SMALL_STATE(11399)] = 418410, + [SMALL_STATE(11400)] = 418420, + [SMALL_STATE(11401)] = 418430, + [SMALL_STATE(11402)] = 418440, + [SMALL_STATE(11403)] = 418450, + [SMALL_STATE(11404)] = 418460, + [SMALL_STATE(11405)] = 418470, + [SMALL_STATE(11406)] = 418480, + [SMALL_STATE(11407)] = 418490, + [SMALL_STATE(11408)] = 418500, + [SMALL_STATE(11409)] = 418510, + [SMALL_STATE(11410)] = 418520, + [SMALL_STATE(11411)] = 418530, + [SMALL_STATE(11412)] = 418540, + [SMALL_STATE(11413)] = 418550, + [SMALL_STATE(11414)] = 418560, + [SMALL_STATE(11415)] = 418570, + [SMALL_STATE(11416)] = 418580, + [SMALL_STATE(11417)] = 418590, + [SMALL_STATE(11418)] = 418600, + [SMALL_STATE(11419)] = 418610, + [SMALL_STATE(11420)] = 418620, + [SMALL_STATE(11421)] = 418630, + [SMALL_STATE(11422)] = 418640, + [SMALL_STATE(11423)] = 418650, + [SMALL_STATE(11424)] = 418660, + [SMALL_STATE(11425)] = 418670, + [SMALL_STATE(11426)] = 418680, + [SMALL_STATE(11427)] = 418690, + [SMALL_STATE(11428)] = 418700, + [SMALL_STATE(11429)] = 418710, + [SMALL_STATE(11430)] = 418720, + [SMALL_STATE(11431)] = 418730, + [SMALL_STATE(11432)] = 418740, + [SMALL_STATE(11433)] = 418750, + [SMALL_STATE(11434)] = 418760, + [SMALL_STATE(11435)] = 418770, + [SMALL_STATE(11436)] = 418780, + [SMALL_STATE(11437)] = 418790, + [SMALL_STATE(11438)] = 418800, + [SMALL_STATE(11439)] = 418810, + [SMALL_STATE(11440)] = 418820, + [SMALL_STATE(11441)] = 418830, + [SMALL_STATE(11442)] = 418840, + [SMALL_STATE(11443)] = 418850, + [SMALL_STATE(11444)] = 418860, + [SMALL_STATE(11445)] = 418870, + [SMALL_STATE(11446)] = 418880, + [SMALL_STATE(11447)] = 418890, + [SMALL_STATE(11448)] = 418900, + [SMALL_STATE(11449)] = 418910, + [SMALL_STATE(11450)] = 418920, + [SMALL_STATE(11451)] = 418930, + [SMALL_STATE(11452)] = 418940, + [SMALL_STATE(11453)] = 418950, + [SMALL_STATE(11454)] = 418960, + [SMALL_STATE(11455)] = 418970, + [SMALL_STATE(11456)] = 418980, + [SMALL_STATE(11457)] = 418990, + [SMALL_STATE(11458)] = 419000, + [SMALL_STATE(11459)] = 419010, + [SMALL_STATE(11460)] = 419020, + [SMALL_STATE(11461)] = 419030, + [SMALL_STATE(11462)] = 419040, + [SMALL_STATE(11463)] = 419050, + [SMALL_STATE(11464)] = 419060, + [SMALL_STATE(11465)] = 419070, + [SMALL_STATE(11466)] = 419080, + [SMALL_STATE(11467)] = 419090, + [SMALL_STATE(11468)] = 419100, + [SMALL_STATE(11469)] = 419110, + [SMALL_STATE(11470)] = 419120, + [SMALL_STATE(11471)] = 419130, + [SMALL_STATE(11472)] = 419140, + [SMALL_STATE(11473)] = 419150, + [SMALL_STATE(11474)] = 419160, + [SMALL_STATE(11475)] = 419170, + [SMALL_STATE(11476)] = 419180, + [SMALL_STATE(11477)] = 419190, + [SMALL_STATE(11478)] = 419200, + [SMALL_STATE(11479)] = 419210, + [SMALL_STATE(11480)] = 419220, + [SMALL_STATE(11481)] = 419230, + [SMALL_STATE(11482)] = 419240, + [SMALL_STATE(11483)] = 419250, + [SMALL_STATE(11484)] = 419260, + [SMALL_STATE(11485)] = 419270, + [SMALL_STATE(11486)] = 419280, + [SMALL_STATE(11487)] = 419290, + [SMALL_STATE(11488)] = 419300, + [SMALL_STATE(11489)] = 419310, + [SMALL_STATE(11490)] = 419320, + [SMALL_STATE(11491)] = 419330, + [SMALL_STATE(11492)] = 419340, + [SMALL_STATE(11493)] = 419350, + [SMALL_STATE(11494)] = 419360, + [SMALL_STATE(11495)] = 419370, + [SMALL_STATE(11496)] = 419380, + [SMALL_STATE(11497)] = 419390, }; 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(11218), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10196), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9326), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11317), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10195), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10189), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10177), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9733), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9771), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9780), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9782), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10257), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10219), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10225), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9363), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10058), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11264), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11218), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8976), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10896), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10850), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10223), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10895), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8799), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8659), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9843), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9929), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8662), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10939), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11235), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10078), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10171), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10893), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8861), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8994), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10937), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11390), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9410), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10706), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8771), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9930), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9980), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10211), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10885), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8905), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9846), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9850), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10214), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10668), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9673), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8902), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10188), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10666), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9015), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10237), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10242), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8855), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10240), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8568), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8174), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8555), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8566), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8565), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1085), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7433), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10214), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8275), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8084), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6984), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2226), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(89), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9410), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10668), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9673), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8866), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8902), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7538), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10217), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3521), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7244), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2990), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(17), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10218), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10220), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8889), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10206), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8496), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8253), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8501), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8582), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8421), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1090), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7534), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10188), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8129), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8199), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6986), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2178), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(121), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9277), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10666), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9824), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9015), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9018), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7486), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10237), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3699), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7198), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2999), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2725), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10241), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10242), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1296), [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6980), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7289), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8093), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8855), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9680), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2713), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9883), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7306), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5669), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5670), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4438), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4496), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4496), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10939), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5671), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9571), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5153), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8621), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8524), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8066), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8530), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8094), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8529), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8526), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8525), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7433), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10214), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8275), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8084), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6984), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9410), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10668), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9673), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9727), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9728), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7538), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10218), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10240), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7199), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8209), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8889), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9183), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2667), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10145), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7420), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5705), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5706), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4406), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4467), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4467), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(10937), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5709), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9236), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5336), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8599), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8399), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7432), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8346), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8193), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8362), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7534), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10188), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8129), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8199), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6986), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9277), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10666), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9824), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9629), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9635), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7486), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10237), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10241), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10206), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6980), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7289), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8855), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9680), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2713), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9883), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5670), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4438), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10939), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9571), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8621), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8524), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8030), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10309), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(264), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(265), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(270), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10775), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(272), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 5, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 5, 0, 0), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10893), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10893), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8209), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8889), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9183), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10145), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5706), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(10937), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8399), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7428), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11487), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(264), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(265), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11317), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11317), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10397), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(266), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 5, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 5, 0, 0), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(268), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9430), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9319), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11231), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8591), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 93), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 93), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 141), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 141), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2, 0, 0), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8643), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10878), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(277), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8643), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11271), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8643), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(278), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10341), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 80), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 80), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8642), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11488), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11281), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(291), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(290), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8618), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8642), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(322), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(316), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9399), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11224), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9524), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8642), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8618), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 128), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 128), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3, 0, 0), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3, 0, 0), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(345), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8858), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11493), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(339), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, 0, 26), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, 0, 26), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10777), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8858), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8858), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 5), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 5), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 78), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 78), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9014), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10293), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9014), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 107), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 107), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 122), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 122), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 93), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 93), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9014), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 141), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 141), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 74), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 74), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 74), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 74), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 6, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 6, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 5, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 5, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 77), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 77), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11485), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(743), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(744), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(745), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(747), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10441), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10441), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(748), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(746), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10323), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8644), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8644), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(755), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(762), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10450), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8644), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11494), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8622), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8622), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8622), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10731), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9243), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9822), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10770), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10048), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10048), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10870), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 187), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 187), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10109), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10109), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 188), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 188), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 189), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 189), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 190), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 190), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10308), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 81), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 81), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9243), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9673), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9727), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9728), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10218), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10240), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2713), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9883), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5670), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4438), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10939), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9571), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8621), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8524), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8030), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9243), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9673), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8866), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8902), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2990), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10218), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10220), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2713), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9883), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5670), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4438), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10939), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9571), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8621), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8524), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8066), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10768), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10405), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 93), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 93), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 141), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 141), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11177), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8983), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8983), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(274), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8983), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2, 0, 0), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11401), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9443), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9424), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9994), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11279), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(278), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8982), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(321), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 80), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 80), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8969), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8969), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8982), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8982), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(319), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9407), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11222), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8953), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11319), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(316), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(317), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11384), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11384), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, 0, 26), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, 0, 26), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11344), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10292), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 128), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 128), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 5), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 5), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(346), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(347), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11297), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8885), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8885), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8885), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8824), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 74), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 74), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 74), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 74), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11333), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10492), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11341), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 107), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 107), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 122), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 122), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 93), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 93), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8824), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 141), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 141), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8824), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 78), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 78), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 77), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 77), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 4, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 4, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 5, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 5, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 6, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 6, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10296), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10341), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11468), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(743), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10321), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10321), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(744), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(752), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(754), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(751), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(746), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10890), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(763), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(765), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8984), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8984), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10854), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8984), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8973), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8973), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8973), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10691), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10905), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9562), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9416), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10227), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9957), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10679), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11212), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9684), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9824), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9015), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9018), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10241), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10242), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10145), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5706), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(10937), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8399), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7432), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9684), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9824), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9629), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9635), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10241), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10206), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10145), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5705), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5706), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(10937), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8599), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8399), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7428), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 81), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 81), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 187), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 187), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11301), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9969), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 188), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 188), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 189), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 189), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 190), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 190), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10934), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10127), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9909), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 226), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 226), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 221), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 221), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 218), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 218), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1028), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 217), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 217), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9965), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1024), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11219), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9829), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10121), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 213), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 213), [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 214), [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 214), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 213), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 213), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 222), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 222), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 217), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 217), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 218), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 218), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 221), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 221), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 222), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 222), [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 225), [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 225), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1020), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10861), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11347), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10141), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11385), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 39), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 39), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9687), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9846), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10998), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9701), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9589), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11489), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1038), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10759), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10010), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 1), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 1), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 17), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 17), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 76), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 76), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(2332), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(83), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9479), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4035), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9687), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(27), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3936), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9846), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4080), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4077), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3914), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3978), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3941), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10998), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4071), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9701), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4118), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8828), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8412), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(1097), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4149), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10792), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10792), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1049), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8968), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9821), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10046), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11028), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, 10, 1), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9742), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10672), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8851), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 39), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 17), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11011), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8968), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 76), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10845), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(1478), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(2332), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(83), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9479), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4035), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9687), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(27), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3936), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9846), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4080), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4077), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3914), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3978), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3941), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(10998), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4071), - [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9701), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4118), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(8828), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(8412), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(1097), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4149), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8968), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(2243), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(61), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9742), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4089), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9555), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(6), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3993), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9956), - [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4315), - [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4306), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3920), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4012), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3954), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10672), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4370), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9729), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4365), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8851), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8420), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(1196), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4234), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 43), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, 0, 20), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 20), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, 0, 32), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 32), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 68), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 68), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 115), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 115), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10569), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9045), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 115), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 115), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, 0, 68), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 68), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 39), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 39), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9045), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 17), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 17), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, 10, 76), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, 10, 76), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9045), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9584), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10988), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8760), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10569), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1133), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1140), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11383), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10304), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10475), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10475), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9585), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9718), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11138), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10304), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1197), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1175), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10849), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10849), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8638), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10218), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9883), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8621), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8524), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8638), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8638), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10883), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10902), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11078), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9669), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10286), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9815), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9988), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10965), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9576), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10071), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11068), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9699), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11128), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9877), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9461), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11158), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8632), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11210), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11168), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10890), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10125), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9214), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11008), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11196), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1332), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1330), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11038), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8632), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9119), - [3551] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1332), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9604), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9774), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11088), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9543), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8632), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9664), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10190), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10058), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11058), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1363), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9119), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10701), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9692), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11480), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 5, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 5, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9119), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 226), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 226), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11029), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1021), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 76), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 76), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10040), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10996), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9186), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10855), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 1), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 1), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11377), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9826), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10026), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1051), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1052), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11161), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10356), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10068), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 17), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 17), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 39), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 39), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(2190), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(85), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9523), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4054), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9200), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(12), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3939), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10040), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4171), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4172), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3912), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3973), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3932), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10996), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4087), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9186), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4140), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8651), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8447), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(1130), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4106), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9675), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9649), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10670), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9679), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8895), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, 10, 1), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(2155), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(56), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9675), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4120), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9649), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4000), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10149), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4265), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4266), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3922), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4055), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(3977), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(10670), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4270), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(9679), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4288), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8895), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(8319), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(1155), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 46), SHIFT_REPEAT(4297), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 17), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 39), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8844), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8844), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(1494), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(2190), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(85), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9523), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4054), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9200), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(12), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3939), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(10040), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4171), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4172), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3912), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3973), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(3932), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(10996), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4087), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(9186), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4140), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(8651), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(8447), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(1130), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 46), SHIFT_REPEAT(4106), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10875), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 76), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11045), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10055), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11026), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8704), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8364), + [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8844), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1097), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1096), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, 10, 1), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, 0, 68), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 68), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10731), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 115), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 115), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10986), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9622), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8630), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8701), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8701), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 17), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 17), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10731), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8701), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, 10, 39), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, 10, 39), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, 0, 20), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 20), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, 0, 32), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 32), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, 10, 76), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, 10, 76), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 43), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 68), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 68), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, 0, 115), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 115), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11351), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11131), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11486), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9785), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8298), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(11351), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1192), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11136), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1194), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8979), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10704), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10704), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8979), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8979), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10241), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9236), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10534), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11230), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8975), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9823), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9324), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10092), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11056), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9605), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11156), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10219), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10028), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9651), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9101), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8485), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8975), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9587), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8765), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [3169] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1339), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11208), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10062), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10963), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1339), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9810), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9335), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11076), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9710), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1294), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9321), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9612), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11166), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9776), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10086), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9793), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10888), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11086), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11066), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9650), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9744), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9205), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9930), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11126), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9692), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9250), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11006), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9737), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9819), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9967), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11194), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8975), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9753), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(10699), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(147), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9207), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9221), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(10785), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9221), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(10064), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4724), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4724), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9191), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(7148), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(11390), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8765), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [3893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1437), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11240), [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10853), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 65), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 65), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 64), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 64), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11175), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(10701), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(125), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9833), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9692), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(11480), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9692), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9959), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4848), - [3991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4848), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(9684), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(7146), - [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(11235), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 0), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 12), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 12), - [4017] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1352), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), - [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), REDUCE(sym__immediate_decimal, 3, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8978), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1352), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 205), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 205), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10188), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9894), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9164), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8578), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8645), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8978), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 249), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 249), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1517), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 248), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 248), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 247), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 247), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 246), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 246), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 245), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 245), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 244), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 244), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 243), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 243), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 242), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 242), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 241), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 241), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 240), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 240), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 239), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 239), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 238), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 238), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 237), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 237), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7, 0, 0), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 236), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 236), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 235), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 235), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 234), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 234), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9507), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10326), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 228), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 228), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 227), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 227), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 224), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 224), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 223), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 223), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 220), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 220), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 219), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 219), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 216), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 216), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1516), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 215), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 215), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10400), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5, 0, 0), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10521), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 211), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 211), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 210), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 210), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 209), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 209), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 208), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 208), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 207), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 207), - [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8978), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 206), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 206), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 14), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 14), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 15), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 15), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 16), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 16), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1503), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1505), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 44), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 44), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 45), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 45), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 110), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 110), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 111), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 111), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 112), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 112), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_value, 1, 0, 13), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_value, 1, 0, 13), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 152), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 152), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 153), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 153), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10347), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 177), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 177), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 178), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 178), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 179), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 179), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 180), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 180), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 204), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 204), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8, 0, 0), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8, 0, 0), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9076), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8963), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8468), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8595), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 30), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 30), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 31), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 31), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1709), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10706), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(125), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9669), - [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9692), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(11480), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9692), - [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9959), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4848), - [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4848), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9684), - [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7146), - [4588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(11235), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, 0, 47), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 47), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10831), - [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1619), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10133), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11000), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10967), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1641), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1636), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 82), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 82), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10410), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(91), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10771), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 19), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), SHIFT(91), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11063), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10545), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2, 0, 0), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), - [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 181), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 181), - [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 182), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 182), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 66), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 66), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 67), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 67), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, 0, 32), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 32), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, 0, 69), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 69), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, 0, 70), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 70), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 168), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 168), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 167), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 167), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 166), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 166), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 160), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 160), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 161), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 161), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8636), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, 0, 191), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 191), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 51), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 51), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 199), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 199), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 200), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 200), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 201), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 201), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 202), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 202), - [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(90), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 52), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 52), - [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), SHIFT(90), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), - [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, 0, 18), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 18), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, 0, 212), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 212), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 147), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 147), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), - [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, 0, 0), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), - [4907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1, 0, 0), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, 0, 143), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 231), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 231), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 232), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 232), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 233), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 233), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, 0, 139), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 134), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 138), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 77), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 77), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, 0, 135), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 135), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, 0, 250), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 250), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, 0, 33), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 33), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9535), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 29), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 29), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 28), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 28), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), - [4978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, 0, 83), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 83), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, 0, 84), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 84), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 48), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 48), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9388), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11203), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9501), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8690), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, 0, 0), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, 0, 90), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 90), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 91), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8636), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2, 0, 0), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, 0, 96), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 96), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11159), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, 0, 18), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 18), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1, 0, 0), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 50), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 50), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10553), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8636), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8601), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9225), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9889), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9477), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9993), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11252), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9606), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8601), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2, 0, 0), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9705), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), - [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9703), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10165), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8601), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1, 0, 0), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, 0, 0), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3, 0, 0), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [5380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, 0, 133), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 133), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), - [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2364), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, 0, 85), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 85), - [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, 0, 41), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [5457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, 0, 86), - [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 86), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10999), - [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, 0, 10), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10375), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10375), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 86), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 86), - [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10398), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 85), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 85), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, 0, 10), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2350), - [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10371), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(2358), - [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(93), - [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9227), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9880), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8436), - [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(11), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8906), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9630), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6204), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6203), - [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8136), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6202), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8904), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10890), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6201), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9422), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6064), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8594), - [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8543), - [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6634), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10595), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10595), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10349), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10541), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2391), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2389), - [5728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2427), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2423), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9706), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9413), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11108), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10370), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8648), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2533), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10693), - [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2472), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8648), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8648), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10602), - [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2465), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8714), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2514), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9186), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11098), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9474), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8686), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9987), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9422), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11307), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), - [5958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8608), - [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8647), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9218), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8647), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8647), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8608), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8649), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10991), - [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8649), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9650), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9656), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10126), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11118), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8608), - [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(2691), - [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8714), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8639), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), - [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8714), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9529), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9834), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10171), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9913), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11148), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [6171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2698), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10377), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8639), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9305), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11217), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10222), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8639), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11188), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10265), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9400), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10251), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11238), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10352), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(2850), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2846), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10096), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9700), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10128), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11018), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9778), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10103), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9351), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10134), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10033), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10933), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [6822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 102), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 102), - [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [6829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 103), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 103), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10165), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9583), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11048), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9893), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 108), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 108), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), - [6934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9716), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9923), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9257), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9204), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9181), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 22), - [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 22), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10368), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 22), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 22), - [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 22), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10158), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9937), - [7238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(2931), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), - [7247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(65), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9774), - [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6599), - [7256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(8416), - [7259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(1533), - [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6180), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9689), - [7268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6717), - [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6715), - [7274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(5652), - [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6291), - [7280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6181), - [7283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(11088), - [7286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6663), - [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9643), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6767), - [7295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6852), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9899), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10394), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 53), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 22), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9908), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9908), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11476), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [7384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), - [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9549), - [7393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9475), - [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8690), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1445), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 12), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 12), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8765), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), REDUCE(sym__immediate_decimal, 3, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10699), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9221), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10064), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 64), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 64), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11173), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1437), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 65), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 65), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 5, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 5, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10346), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9974), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 246), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 246), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 247), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 247), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 248), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 248), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 249), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 249), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 179), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 179), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 180), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 180), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8933), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10214), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10118), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9972), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 204), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 204), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 205), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 205), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 206), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 206), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 207), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 207), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 208), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 208), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 209), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 209), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5, 0, 0), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1510), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 210), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 210), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 211), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 211), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 215), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 215), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11069), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 216), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 216), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10981), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9, 0, 0), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9, 0, 0), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8690), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 14), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 14), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8690), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 15), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 15), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 219), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 219), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 16), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 16), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1, 0, 0), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 220), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 220), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11018), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 245), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 245), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 45), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 45), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 223), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 223), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 224), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 224), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1522), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 227), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 227), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 7, 0, 228), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 7, 0, 228), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 110), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 110), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 111), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 111), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 112), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 112), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_value, 1, 0, 13), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_value, 1, 0, 13), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag_equals_value, 4, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 234), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 234), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 235), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 235), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 236), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 236), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 237), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 237), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 238), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 238), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 152), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 152), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 153), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 153), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 239), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 239), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 240), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 240), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 241), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 241), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 242), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 242), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1526), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1528), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 243), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 243), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 177), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 177), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 6, 0, 178), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 6, 0, 178), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 8, 0, 244), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 8, 0, 244), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 44), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 44), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 19), + [4498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), SHIFT(75), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 30), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 30), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, 0, 31), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 31), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(75), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, 0, 47), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 47), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11047), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10738), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10575), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 82), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 82), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1696), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10255), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8687), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(1709), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10475), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10885), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(147), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9823), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9221), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10785), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9221), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10064), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4724), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4724), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9191), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7148), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(11390), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11034), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10696), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10705), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10784), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1626), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(1629), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10980), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, 0, 139), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 134), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, 0, 143), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, 0, 69), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 69), + [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, 0, 147), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 147), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8978), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 160), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 160), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, 0, 161), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 161), + [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 166), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 166), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 167), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 167), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, 0, 168), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 168), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, 0, 70), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 70), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, 0, 33), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 33), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, 0, 18), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 18), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2, 0, 0), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 181), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 181), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, 0, 182), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 182), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 7, 0, 191), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 191), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 199), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 199), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 200), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 200), + [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 201), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 201), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, 0, 202), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 202), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, 0, 212), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 212), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 231), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 231), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 232), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 232), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, 0, 233), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 233), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, 0, 250), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 250), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), REDUCE(sym_pipeline_last, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 28), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 28), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 77), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 77), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), + [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), REDUCE(sym_pipeline_last, 3, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3, 0, 0), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 48), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 48), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, 0, 29), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 29), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8978), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, 0, 83), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 83), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, 0, 84), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 84), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9879), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8978), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, 0, 90), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 90), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, 0, 91), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, 0, 50), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 50), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2, 0, 0), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, 0, 96), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 96), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 51), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 51), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11014), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, 0, 52), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 52), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10507), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10510), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 3, 0, 42), SHIFT(88), + [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_decl_module, 2, 0, 19), SHIFT(88), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8935), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 66), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 66), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, 0, 67), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 67), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, 0, 32), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 32), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, 0, 135), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 135), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10556), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, 0, 18), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 18), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10546), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), + [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), + [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), REDUCE(sym__declaration_last, 1, 0, 0), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1, 0, 0), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__statement_last, 1, 0, 0), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, 0, 138), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9454), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11250), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8971), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9340), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11176), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9433), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), + [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3, 0, 0), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8964), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9847), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1, 0, 0), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8964), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8964), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, 0, 85), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 85), + [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, 0, 86), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 86), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, 0, 10), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, 0, 133), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 133), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [5420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [5424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 85), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 85), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 86), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 86), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2355), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2356), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10001), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11243), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, 0, 10), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9916), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), + [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 133), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3, 0, 0), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, 0, 41), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11077), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10409), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2385), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2386), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9678), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(2172), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(64), + [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9776), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10086), + [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8391), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8688), + [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9640), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6089), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6091), + [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8309), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6099), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8709), + [5643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(10888), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6113), + [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9709), + [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6080), + [5655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(9143), + [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(8581), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6546), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10428), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10581), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10348), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10348), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2398), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2399), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2504), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2511), + [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8986), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8986), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8986), + [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2467), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9394), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11096), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10404), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11203), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11203), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(2445), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9867), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9709), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9251), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11168), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8931), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8958), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9202), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9777), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8987), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8958), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9840), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9923), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8985), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11116), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8985), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8985), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8987), + [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8958), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10843), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8980), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10286), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9968), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8419), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9423), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11215), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10376), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9305), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10228), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11146), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8931), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8980), + [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8980), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8931), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2705), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(2707), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10239), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11186), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11393), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10351), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9439), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(2913), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10252), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10114), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9608), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10248), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10179), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2899), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 108), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 108), + [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11153), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11154), + [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [6527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10874), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9916), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9689), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10246), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9745), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11016), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 22), + [6628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 22), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11210), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9637), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11046), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9346), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9811), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9867), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9384), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9988), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9395), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9417), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9449), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9975), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 102), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 102), + [7206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 103), + [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 103), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10101), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11392), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10051), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 22), + [7292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 22), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 22), + [7296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 53), + [7298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(2746), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), + [7303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(81), + [7306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9839), + [7309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6610), + [7312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(8419), + [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(1520), + [7318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6214), + [7321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9209), + [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6670), + [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6671), + [7330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(5396), + [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6334), + [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6216), + [7339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(11086), + [7342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6795), + [7345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(9271), + [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6794), + [7351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 173), SHIFT_REPEAT(6855), + [7354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 22), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10023), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10380), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [7384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9202), + [7393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9525), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [7401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10198), - [7404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8365), - [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10158), - [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5071), - [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [7416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8027), - [7419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7726), - [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8421), - [7425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10965), - [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9937), - [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9714), - [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5113), - [7437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5005), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [7401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10234), + [7404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8502), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9942), + [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4940), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [7416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8021), + [7419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7707), + [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8565), + [7425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10963), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(10095), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(9746), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4950), + [7437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5056), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9889), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10412), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9999), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9999), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11071), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9777), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(3907), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3908), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9888), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11049), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [7574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3910), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(3916), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), - [7586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9112), - [7589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9112), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10243), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11149), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9112), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3953), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7646] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3953), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3946), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8707), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8707), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8657), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8657), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8657), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10631), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3967), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3977), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10871), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9853), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7818] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3967), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11041), - [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_ignore_rest, 2, 0, 0), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10250), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11467), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_ignore_rest, 2, 0, 0), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9848), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10843), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10926), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), - [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8898), - [7916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4057), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [7939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4030), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11143), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11399), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11283), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(3909), + [7541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3907), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(3916), + [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3914), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10250), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9920), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10755), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [7586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8706), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10212), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9881), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10582), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8706), + [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8706), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8620), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7672] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3943), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9088), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8620), + [7686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3934), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9088), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9088), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3943), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [7734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3992), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9932), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11490), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11491), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11493), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_ignore_rest, 2, 0, 0), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10827), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9890), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), + [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10799), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10762), + [7835] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(3954), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(3954), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10754), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11224), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10591), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10959), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4019), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4028), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4015), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), + [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4035), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_ignore_rest, 2, 0, 0), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9844), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10790), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), - [7956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7633), - [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7501), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7498), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10174), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10492), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11171), - [7979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4052), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10812), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10814), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 13), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 13), - [7996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4005), - [7999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4079), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 95), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 95), - [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 4), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [8012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4116), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), - [8023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8685), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 4), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 13), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 13), - [8044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 0), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9151), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10931), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(10733), - [8061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4398), - [8064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4106), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [8077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8685), - [8080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8685), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10197), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10678), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 25), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4098), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 89), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11090), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4312), - [8129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4266), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11331), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9904), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9904), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9851), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9851), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10981), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [8236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4335), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4279), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 37), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 37), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4235), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4353), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), - [8326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4409), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10041), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10488), - [8347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8844), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4416), - [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9990), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [8403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4408), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4440), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11150), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8844), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10761), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 25), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 25), - [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8844), - [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 4), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 4), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4393), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11242), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4419), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11283), - [8551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4422), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4441), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4437), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11047), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10810), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10810), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [8614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4394), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), - [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11364), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10547), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), - [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4478), - [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4471), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10923), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), - [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8933), - [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), - [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [8672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4484), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [8677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4535), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11309), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8946), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10619), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10619), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8933), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 196), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 34), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 34), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10818), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8933), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4481), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10673), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10945), - [8780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), - [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 87), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10826), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4504), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4527), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8946), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10495), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10754), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4537), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8646), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11107), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9155), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9084), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9084), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4523), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4547), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9084), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10977), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [8941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8646), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10578), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [8952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 72), - [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 72), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4606), - [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8946), - [9008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4607), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [9047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9155), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [9060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8646), - [9063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4647), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4654), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 164), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11198), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9155), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10342), - [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 71), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 71), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 192), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 194), - [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8611), - [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4731), - [9148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4730), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8911), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11211), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4765), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10724), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10724), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8911), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11327), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4805), - [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4806), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [9338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4778), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4872), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11091), - [9358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4873), - [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10669), - [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10669), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 164), - [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [9403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4785), - [9406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4769), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [9411] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4730), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8611), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4854), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4852), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10926), - [9471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8637), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8611), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10696), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10765), - [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5115), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10808), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [9532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5117), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11216), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10746), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10694), - [9585] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4998), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11495), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5048), - [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8833), - [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5046), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11366), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [9612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8637), - [9615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5069), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8637), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [9635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5041), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5035), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5085), - [9652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8833), - [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), - [9659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8833), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4966), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4956), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11135), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4962), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4960), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11139), - [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4998), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(5004), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11130), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 118), - [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 118), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), - [9818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8624), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11313), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), - [9825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 120), - [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 120), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11319), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [9869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8635), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [9898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [9900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11106), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11105), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [9921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8624), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11081), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8624), - [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [9952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5144), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [9957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8635), - [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5138), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5237), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5236), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [9977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [9981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10623), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10880), - [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [10069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8593), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11212), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10697), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8593), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [10099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [10101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11110), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), - [10138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [10178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8593), - [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5414), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5411), - [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8641), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8743), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(5874), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [10248] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(5858), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [10262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [10264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8641), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10476), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [10326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8743), - [10329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5858), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 174), - [10336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 174), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [10340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8743), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10719), - [10345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8641), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11115), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [10382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [10384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), REDUCE(sym__list_item_expression, 1, 0, 0), - [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 0), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11258), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11305), - [10523] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6171), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [10529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [10547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8605), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [10556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8605), - [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6123), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [10566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6111), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [10575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6057), - [10578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6171), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [10587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8605), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 22), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 3, 0, 53), - [10692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 22), - [10694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), - [10699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 24), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [10703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 24), - [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 24), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [10711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [10713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11187), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11125), - [10732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 5, 0, 0), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 5, 0, 0), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), - [10738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6324), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), - [10745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6336), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11483), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), - [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11478), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), - [10766] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6324), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [10772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 2, 0, 22), - [10774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 6, 0, 0), - [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 6, 0, 0), - [10778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), - [10780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), - [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11126), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [10800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), - [10802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), REDUCE(sym__list_item_expression, 1, 0, 21), - [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 21), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [10889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 99), - [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 99), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [11045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 170), - [11047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 170), - [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 172), - [11051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 172), - [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11030), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), - [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 10, 0), - [11091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 10, 0), - [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 0, 0), - [11095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 0, 0), - [11097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 176), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [11101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 176), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), - [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [11167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [11169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 174), - [11171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 174), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [11295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 23), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [11299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 23), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7663), + [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7493), + [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 195), SHIFT_REPEAT(7503), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10737), + [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8786), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8786), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10378), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 13), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 13), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(10375), + [8004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4450), + [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 0), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 95), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, 0, 95), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 89), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10948), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 4), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [8041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4152), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4155), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8937), + [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 25), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11263), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), + [8086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8937), + [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 13), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, 0, 13), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [8097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8937), + [8100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4110), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4113), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, 0, 4), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 37), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 37), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [8172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4272), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4306), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4273), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10782), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10782), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4383), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4313), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10253), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9927), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10856), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9938), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11175), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4298), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4415), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4447), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), + [8328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4443), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10965), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4440), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9898), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10761), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10746), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4414), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11273), + [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 4), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10942), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10474), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4412), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9907), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10702), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8655), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8655), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [8516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4435), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 25), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 25), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4400), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4423), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10759), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9948), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4448), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8655), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11367), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [8619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, 0, 4), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 4), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, 0, 34), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, 0, 34), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 87), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10367), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4462), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4480), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4511), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), + [8696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8858), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), + [8707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4513), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4500), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10744), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8723), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10962), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11466), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11466), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8858), + [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8723), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9960), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4524), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10918), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 196), + [8797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1, 0, 0), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11346), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8858), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4474), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [8825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1, 0, 0), + [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4538), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11128), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10835), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), + [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4573), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10429), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [8869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4574), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 72), + [8880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 72), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 164), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [8940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, 0, 71), + [8942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, 0, 71), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11376), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10864), + [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8744), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4561), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8940), + [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4670), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4672), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 192), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [9019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 194), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), + [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8744), + [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8723), + [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8940), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10405), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10405), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8783), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8783), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [9104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8783), + [9107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8940), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4507), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [9137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8744), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4895), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4899), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4903), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8679), + [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9145), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), + [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8679), + [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9145), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4828), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4844), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4813), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 164), + [9315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9145), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [9344] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4828), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [9350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4818), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [9357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4820), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4747), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10781), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10781), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10792), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10349), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11089), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [9421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4853), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4854), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10412), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8602), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [9474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4894), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10690), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10960), + [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5120), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10991), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9167), + [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4987), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5053), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), + [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8602), + [9531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5000), + [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5116), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4992), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5044), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8602), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10698), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5066), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5071), + [9632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8893), + [9635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4984), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8893), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), + [9645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5021), + [9648] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4984), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [9658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(4990), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10484), + [9707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4923), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [9712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(4927), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8893), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 118), + [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 118), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [9780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8944), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10830), + [9787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5267), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), + [9798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5333), + [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 120), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 120), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8977), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), + [9848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11104), + [9854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8944), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10359), + [9863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [9865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [9888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8977), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [9893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5218), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5220), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10406), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8944), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11366), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [9974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8977), + [9977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11482), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10437), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10687), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [10061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8955), + [10064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5660), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(5675), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10413), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8955), + [10093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [10103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [10105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10295), + [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8955), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8981), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10788), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [10240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8924), + [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [10251] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(5819), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [10263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5819), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(5826), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8981), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 174), + [10276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 174), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8924), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [10289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8924), + [10292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8981), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10797), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [10323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [10325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [10442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6065), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [10447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6106), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), + [10454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6234), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [10459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6179), + [10462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8961), + [10465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8961), + [10468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8961), + [10471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [10473] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6065), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11114), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [10609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [10611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), REDUCE(sym__list_item_expression, 1, 0, 0), + [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 0), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11474), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11478), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 22), + [10636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 2, 0, 22), + [10638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 22), + [10640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10857), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [10647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6254), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11124), + [10656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6255), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10451), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), + [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 4, 0, 0), + [10675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [10677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [10684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 6, 0, 0), + [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 6, 0, 0), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 3, 0, 53), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [10740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 5, 0, 0), + [10742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 5, 0, 0), + [10744] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(6254), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [10772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), + [10774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_starts_with_sign, 2, 0, 0), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), + [10792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), REDUCE(sym__list_item_expression, 1, 0, 21), + [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_expression, 1, 0, 21), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 24), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [10803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 24), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 24), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 170), + [10835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 170), + [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 172), + [10839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 172), + [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), + [11005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), + [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 174), + [11009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 174), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [11257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [11259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [11289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 99), + [11291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 99), + [11293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 21), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10770), + [11333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 23), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [11337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 23), + [11339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 10, 0), + [11341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 10, 0), + [11343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, 0, 0), + [11345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, 0, 0), + [11347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 176), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [11351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 176), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 24), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [11359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 171), - [11361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 171), - [11363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 169), - [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 169), - [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 176), - [11369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 176), - [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [11373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9920), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11333), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10274), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10084), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10084), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10227), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10160), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9955), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9655), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9998), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10953), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10112), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8247), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10244), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10268), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9715), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10203), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), - [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9869), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9869), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11240), - [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [11359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 176), + [11361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 176), + [11363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 169), + [11369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 169), + [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 171), + [11373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 171), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10073), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9785), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10718), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9855), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9925), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10021), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10713), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10075), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9728), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10279), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8247), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10502), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10161), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11049), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9996), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10183), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9883), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11368), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9863), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), + [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10157), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10729), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9874), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), - [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10955), - [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10092), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10177), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8394), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10867), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [11717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [11755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10540), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10718), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), + [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9869), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9869), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10541), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10007), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [11937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8823), - [11940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11244), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [11944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10209), - [11954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [11956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), - [11959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [11961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11389), - [11964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11390), - [11967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11391), - [11970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(11392), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), - [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11392), - [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10180), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [12037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8628), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [12062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8628), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [12085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8628), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [12096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7215), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [12115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7256), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), - [12132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [12136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11425), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [12234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [12236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [12252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [12254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11421), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [12392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 106), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [12396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 106), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10317), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [12506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7233), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [12551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [12555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [12581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 87), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [12593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), - [12601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7210), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11445), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [12618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7182), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [12625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 88), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [12629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 88), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [12669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7203), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [12682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10465), - [12684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 106), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [12688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 106), - [12690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [12694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [12696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [12700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [12702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 26), - [12704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 26), - [12706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [12708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [12710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [12712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 26), - [12716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 26), - [12718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 105), - [12720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 105), - [12722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 104), - [12724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 104), - [12726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [12728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), - [12730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), - [12732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), - [12734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11374), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [12740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11085), - [12742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), - [12744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11086), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [12750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11, 0, 0), - [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11, 0, 0), - [12754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 89), - [12756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [12758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [12760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [12762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [12768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 192), - [12770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 194), - [12772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14, 0, 0), - [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14, 0, 0), - [12776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [12778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [12780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [12782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [12786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7413), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [12791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13, 0, 0), - [12793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13, 0, 0), - [12795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12, 0, 0), - [12797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12, 0, 0), - [12799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7370), - [12802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11378), - [12804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11379), - [12806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7256), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [12812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 19), - [12814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 19), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [12820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8625), - [12822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), - [12824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10707), - [12826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [12832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 146), - [12834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 146), - [12836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7465), - [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), - [12841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7482), - [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7473), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [12861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7497), - [12864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [12866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [12884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 106), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [12888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 106), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12894] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7831), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [12914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7819), - [12917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7839), - [12920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7831), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [12925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [12929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [12931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [12935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [12943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7817), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [12954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7782), - [12957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7785), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), - [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [12968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [12984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(7887), - [12987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), - [12989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(9684), - [12992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(7146), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [13003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8793), - [13006] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7890), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10905), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [13026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8903), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [13031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(8176), - [13034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), - [13036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(9702), - [13039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(7131), - [13042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 106), - [13044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 106), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), - [13056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 62), - [13058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 62), - [13060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 59), - [13062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 59), - [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8510), - [13086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [13088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(8405), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [13097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7893), - [13100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8793), - [13103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7890), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [13118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8903), - [13121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(9280), - [13124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10332), - [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [13129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [13145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [13149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), - [13151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8903), - [13154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7850), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [13167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [13169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7863), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [13180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7889), - [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), - [13185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7884), - [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [13194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8793), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [13199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [13201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), - [13227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8764), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8067), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [13241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8071), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [13246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8764), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [13251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8823), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [13256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8823), - [13259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8012), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [13264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7952), - [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8509), - [13269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 163), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10916), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [13289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(9044), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [13296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7944), - [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), - [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [13311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 162), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), - [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10750), - [13333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7928), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), - [13340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(9044), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [13345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(9044), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8879), - [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), - [13354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7999), - [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [13361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7996), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8512), - [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [13372] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7952), - [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8583), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [13380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7946), - [13383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8462), - [13385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7961), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), - [13396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7951), - [13399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8015), - [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), - [13406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7942), - [13409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8400), - [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9099), - [13413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7933), - [13416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8764), - [13419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [13421] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7944), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), - [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [13435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, 0, 27), - [13437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 27), - [13439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9746), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), - [13447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [13467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), - [13481] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8179), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10948), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [13491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9362), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [13499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, 0, 0), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [13509] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8294), - [13513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8972), - [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [13519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), - [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), - [13523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9101), - [13525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8776), - [13528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [13530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10740), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11182), - [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [13564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 0), - [13566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), SHIFT(10733), - [13569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 4), - [13571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), SHIFT(10733), - [13574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, 0, 0), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [13586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8294), - [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), - [13591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8288), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), - [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10943), - [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10387), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11270), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [13632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 230), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [13642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 229), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [13690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8152), - [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), - [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [13733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8099), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), - [13738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, 0, 0), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [13744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, 0, 92), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [13762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8102), - [13765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8144), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), - [13770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8160), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [13781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [13787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8179), - [13790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(177), - [13793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(9759), - [13796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [13800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 89), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), - [13804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 148), - [13806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 148), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11032), - [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [13880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 25), - [13882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 25), SHIFT(10733), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), - [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), - [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), - [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), - [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [13989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [13991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11072), - [13993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11102), - [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), - [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [14043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [14045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [14047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 3), - [14049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 3), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), - [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10530), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), - [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), - [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10952), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10116), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [14085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9858), - [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), - [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), - [14091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [14093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [14099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [14107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [14135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 186), - [14137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 186), - [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [14147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), - [14149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), SHIFT(10733), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [14154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8440), - [14157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8427), - [14160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15, 0, 0), - [14162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15, 0, 0), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [14168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 184), - [14170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 184), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [14184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 185), - [14186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 185), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [14190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 0), - [14192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 0), - [14194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 36), - [14196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 36), - [14198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 35), - [14200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 35), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [14204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [14206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [14208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), - [14210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), SHIFT(10733), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [14219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 150), - [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 150), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [14227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10455), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [14231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [14233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10969), - [14235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11465), - [14237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), - [14239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [14241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [14245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [14247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [14255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 183), - [14257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 183), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [14279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1, 0, 0), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [14295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 101), - [14297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 101), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [14303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 97), - [14305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 97), - [14307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 151), - [14309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 151), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11065), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11066), - [14315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 149), - [14317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 149), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11368), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11344), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11370), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11371), - [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), - [14341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [14355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 230), - [14357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 229), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [14365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [14375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 92), - [14377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), - [14379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 77), - [14381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 77), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10406), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), - [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), - [14415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 101), - [14417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 101), - [14419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 97), - [14421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), - [14423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [14425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [14427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 144), - [14429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [14433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), - [14435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 27), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), - [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9251), - [14441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [14443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [14451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 119), - [14453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 119), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [14457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 162), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [14461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [14483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 163), - [14485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 116), - [14487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 116), - [14489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 117), - [14491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 117), - [14493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [14505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [14511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [14514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [14519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [14521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [14531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), - [14535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [14539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, 0, 114), - [14541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 114), - [14543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 101), - [14545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 101), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [14555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 97), - [14557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), - [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11398), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11399), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [14577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10119), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), - [14581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9838), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [14595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(174), - [14598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(9901), - [14601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), - [14623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [14625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(9918), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [14632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), - [14636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10938), - [14642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [14644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11142), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [14652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [14654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10568), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [14664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11314), - [14666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [14674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [14676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10562), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [14684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11312), - [14686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [14688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [14696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), - [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [14702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11286), - [14704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10732), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [14710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11002), - [14712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10782), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [14718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11172), - [14720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [14722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [14726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), - [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [14732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11292), - [14734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [14736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8610), - [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [14743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [14747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [14751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, 0, 85), - [14753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, 0, 85), - [14755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, 0, 86), - [14757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, 0, 86), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10580), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [14775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11318), - [14777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), - [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [14783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [14789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [14791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8610), - [14794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11045), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [14810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [14816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11192), - [14818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [14824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11320), - [14826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [14828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [14832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), - [14836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), - [14838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), - [14840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [14844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [14846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [14854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11304), - [14856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [14864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10592), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [14872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11322), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), - [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [14884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10671), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [14888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [14892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [14894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), - [14898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [14900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11282), - [14902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [14908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [14916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11199), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [14924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11122), - [14926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [14928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [14930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), - [14934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [14936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11302), - [14938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [14948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [14950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [14956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11324), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [14960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [14962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [14978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11298), - [14980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [14982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [14984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [14992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11328), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [14996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [14998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [15000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [15008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11206), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10819), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [15016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11012), - [15018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [15020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10544), - [15024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), - [15026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11306), - [15028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8750), - [15030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10886), - [15034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), - [15036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11152), - [15038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [15042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [15050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11330), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [15054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [15058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [15062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [15072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11332), - [15074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [15076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [15078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [15080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [15082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), - [15086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1, 0, 0), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), - [15090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [15092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10633), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [15102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11336), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), - [15108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [15110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11280), - [15112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [15114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [15116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [15118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [15124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11296), - [15126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 197), - [15128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 197), - [15130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 198), - [15132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 198), - [15134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [15136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10510), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [15142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11213), - [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [15148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11112), - [15150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [15152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [15156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), - [15160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [15162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11308), - [15164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, 0, 133), - [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, 0, 133), - [15168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), - [15170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11340), - [15178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [15182] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8427), - [15186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [15192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [15194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [15196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [15198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [15202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [15204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [15208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [15210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [15212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [15214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [15216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [15220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [15222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [15226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [15232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), - [15234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [15236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [15242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10460), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [15248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11220), - [15250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [15252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), - [15254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [15256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [15258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [15260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), - [15264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [15266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11326), - [15268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [15270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [15272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11179), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [15278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11042), - [15280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [15282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), - [15288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [15290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10686), - [15292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [15294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [15298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [15300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [15304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [15306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [15308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 142), SHIFT_REPEAT(2221), - [15311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 142), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [15315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [15317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [15319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [15323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 114), - [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 114), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), - [15329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), - [15331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11278), - [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10832), - [15337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), - [15339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), - [15341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [15343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), - [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11290), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), - [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [15357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11092), - [15359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [15361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [15363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [15365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [15367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [15369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [15371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [15373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [15379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11227), - [15381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [15385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [15387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [15389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [15391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), - [15397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), - [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11334), - [15401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [15409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [15413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [15415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [15419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), - [15423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [15425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [15427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), - [15431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [15433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [15435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10191), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [15445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10483), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [15453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), - [15455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [15457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [15461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [15463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10350), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [15471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), - [15473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [15475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [15477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [15479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [15481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10637), - [15485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [15487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11338), - [15489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [15491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10566), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [15497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10992), - [15499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [15503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10455), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [15517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [15521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [15523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), - [15527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [15529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11022), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [15537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10566), - [15539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), - [15541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [15543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [15545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [15547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [15549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8610), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10365), - [15554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [15556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11266), - [15558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11299), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [15564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11052), - [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [15568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), - [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [15576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), - [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11361), - [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [15582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11082), - [15584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [15586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, 0, 41), - [15588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, 0, 41), - [15590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 165), - [15592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 165), - [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [15596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), - [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10320), - [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [15602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11255), - [15604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), - [15608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [15610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11234), - [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), - [15614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), - [15616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11132), - [15618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), - [15620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [15622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [15624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), - [15626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), - [15628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [15630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [15636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), - [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [15646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), - [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), - [15652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [15654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [15656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [15658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [15660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [15662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), - [15664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), - [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [15670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [15672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), - [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [15678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11261), - [15680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10419), - [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), - [15686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11276), - [15688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [15690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [15692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [15694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, 0, 10), - [15696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, 0, 10), - [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [15700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9870), - [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), - [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [15710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 38), - [15712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 38), - [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), - [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), - [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), - [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), - [15724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), - [15726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), - [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10299), - [15732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8563), - [15734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11248), - [15736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), - [15738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [15740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, 0, 10), - [15742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, 0, 10), - [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [15746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), - [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), - [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [15754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11062), - [15756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), - [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), - [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), - [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), - [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), - [15770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [15772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10403), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [15778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11273), - [15780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), - [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), - [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [15798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11104), - [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10809), - [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [15808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11164), - [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), - [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [15816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11174), - [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), - [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [15826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11348), - [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), - [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), - [15836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11014), - [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), - [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), - [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11094), - [15852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), - [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), - [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), - [15862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(9802), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [15871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(9794), - [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), - [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [15886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11154), - [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [15890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10030), - [15892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), - [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [15898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 38), - [15900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 38), - [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), - [15906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 73), - [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), - [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [15912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10946), - [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [15916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [15918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), - [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [15928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11184), - [15930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), - [15932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), - [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), - [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [15938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10737), - [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), - [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [15948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), - [15950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), - [15952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), - [15954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), - [15956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), - [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), - [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [15962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11114), - [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10954), - [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10114), - [15970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11024), - [15972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [15974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), - [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), - [15982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10894), - [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [15986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9679), - [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [15990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [15992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), - [15994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), - [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [16002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10026), - [16004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), - [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10163), - [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [16022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), - [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [16028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11194), - [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), - [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11044), - [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [16044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9732), - [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11384), - [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [16052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), - [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), - [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9531), - [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [16068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), - [16070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 0), - [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [16074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 100), - [16076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), - [16078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), - [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), - [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), - [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [16098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), - [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [16102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), - [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), - [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [16116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10971), - [16118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9598), - [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [16124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9788), - [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), - [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [16136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11004), - [16138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), - [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [16144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9738), - [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), - [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [16150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11034), - [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [16154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3909), - [16157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [16165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), - [16167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), - [16169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [16175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10253), - [16177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10788), - [16179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9653), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [16183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), - [16185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 85), - [16187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 85), - [16189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [16195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11144), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [16205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11064), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [16211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11208), - [16213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [16221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11124), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [16225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [16229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [16247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), - [16249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 86), - [16251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 86), - [16253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), - [16255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9435), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [16263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [16273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9496), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [16279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), - [16281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), - [16283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [16289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11262), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [16297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9617), - [16299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), - [16301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), SHIFT_REPEAT(9898), - [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), - [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [16308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11257), - [16310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), - [16312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), - [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [16316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), - [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), - [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [16322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11250), - [16324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), - [16326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), - [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), - [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [16334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10994), - [16336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9736), - [16338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), - [16340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10840), - [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [16344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10129), - [16346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10837), - [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [16350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), - [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10489), - [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [16356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11215), - [16358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), - [16360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9819), - [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), - [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [16370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11243), - [16372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), - [16374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10205), - [16376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10842), - [16378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9741), - [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10369), - [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [16384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), - [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [16388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), - [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [16392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9281), - [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), - [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [16400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), - [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), - [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [16406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), - [16408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9615), - [16410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), - [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), - [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [16416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11134), - [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [16422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), - [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), - [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [16428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11222), - [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [16432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9440), - [16434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [16436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), - [16438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), - [16440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), - [16442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9282), - [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [16448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), - [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [16452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), - [16454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184), - [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), - [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), - [16472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [16474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [16476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 121), - [16478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [16480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [16482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [16484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 53), - [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [16506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [16508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), - [16512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 175), - [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [16516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10887), - [16518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), - [16520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), - [16522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [16524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [16526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10846), - [16528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [16530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), - [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), - [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), - [16538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [16540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [16544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 22), - [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [16548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [16550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), - [16558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10393), - [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), - [16566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), - [16568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [16570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 21), - [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [16580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 23), - [16582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 23), - [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [16586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [16588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [16592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [16594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [16596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [16598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [16600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, 0, 94), - [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11095), - [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), - [16606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [16612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [16614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10789), - [16616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [16618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [16624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 53), - [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [16628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [16630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [16632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10237), - [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), - [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10253), - [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [16640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [16644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [16666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [16670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [16674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [16692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [16696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [16700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), - [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [16728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [16734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [16738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [16752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [16764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [16768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [16776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [16778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [16780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [16806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [16810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [16814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [16836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [16862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [16874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [16876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [16880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [16884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [16888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [16898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), - [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [16944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [16946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [16958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), - [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [16966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [17022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [17028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), - [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [17046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [17048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [17058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [17064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [11861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8578), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10868), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [11947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8913), + [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), + [11960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [11962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7337), + [11965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [11967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10757), + [11970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10798), + [11973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10881), + [11976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(10904), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10288), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10904), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10197), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [12007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8974), + [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8974), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [12036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [12042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [12044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8974), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [12085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8974), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [12122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7267), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11425), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7182), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [12296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [12314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7228), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), + [12325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7272), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [12342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 88), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [12346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 88), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11445), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), + [12390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7229), + [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [12441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 106), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [12445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 106), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [12453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [12533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 87), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [12619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [12623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [12629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7181), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11421), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [12684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 104), + [12686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 104), + [12688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 194), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 105), + [12694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 105), + [12696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11267), + [12698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 26), + [12700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 26), + [12702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11388), + [12704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8468), + [12706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10914), + [12708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10358), + [12710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11485), + [12712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10300), + [12714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [12718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [12720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), + [12722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [12724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [12726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 26), + [12728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 26), + [12730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 106), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [12734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 106), + [12736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11, 0, 0), + [12738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11, 0, 0), + [12740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12, 0, 0), + [12742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12, 0, 0), + [12744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13, 0, 0), + [12746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13, 0, 0), + [12748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14, 0, 0), + [12750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14, 0, 0), + [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [12756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [12758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 192), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [12762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [12766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [12768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [12770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [12772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [12774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [12776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [12778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [12782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11083), + [12784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 89), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [12798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7389), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [12803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7390), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [12808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [12810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [12812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10974), + [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9067), + [12816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11071), + [12818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 146), + [12820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 146), + [12822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [12828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7445), + [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7873), + [12833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7448), + [12836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), + [12838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [12844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), + [12846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 19), + [12848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 19), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [12868] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7267), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [12878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7522), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [12883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7527), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [12890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [12894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [12904] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7595), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [12926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7714), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [12931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7734), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [12936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), + [12940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [12942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [12948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7595), + [12951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7779), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [12958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7729), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [12965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7737), + [12968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(7874), + [12971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), + [12973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(9191), + [12976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), SHIFT_REPEAT(7148), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [12983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [12987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [12989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 106), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [12993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 106), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [13011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [13013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(8549), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [13028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7861), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7895), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [13054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7898), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [13061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [13063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [13067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [13077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [13079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [13081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8902), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), + [13088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8871), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [13093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8266), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), + [13099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [13101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7880), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [13108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7881), + [13111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8871), + [13114] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7895), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [13120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8871), + [13123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(8106), + [13126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), + [13128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(9253), + [13131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 193), SHIFT_REPEAT(7123), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [13148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8902), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [13153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), + [13155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7858), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [13172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8902), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [13183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 106), + [13185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 106), + [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [13193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 59), + [13195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 59), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [13199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 62), + [13201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 62), + [13203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(9800), + [13206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2, 0, 0), SHIFT_REPEAT(10868), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [13215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8914), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [13230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7915), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [13235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7920), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7952), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [13247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8913), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8568), + [13254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 162), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [13260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7927), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [13265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7954), + [13268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 163), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [13274] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7939), + [13278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8913), + [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10954), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [13289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7942), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8887), + [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8504), + [13298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8914), + [13301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8801), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), + [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9028), + [13322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(7955), + [13325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [13335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7939), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11004), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [13346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(7957), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [13353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), + [13355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10749), + [13359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8914), + [13362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7997), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [13369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [13371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [13375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(7962), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [13380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8801), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), + [13387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8043), + [13390] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7962), + [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11003), + [13398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8801), + [13401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [13407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(7931), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10750), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [13418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8031), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), + [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [13433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2, 0, 0), + [13435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 229), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [13439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8211), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [13448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 230), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), + [13462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8287), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [13477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 0), + [13479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), SHIFT(10375), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10764), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [13490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1, 0, 0), + [13492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, 0, 4), + [13494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), SHIFT(10375), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11053), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [13501] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8287), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11054), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10772), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [13523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 89), + [13525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11350), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [13529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10941), + [13533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [13535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10773), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10774), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [13557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), + [13559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9603), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10611), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11180), + [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [13593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3, 0, 0), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10386), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10329), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [13649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, 0, 92), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [13653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [13673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8162), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9719), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [13696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(8194), + [13699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, 0, 27), + [13701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 27), + [13703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [13721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(8171), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [13730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8201), + [13733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [13747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8636), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8329), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [13760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(129), + [13763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(9559), + [13766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 75), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10946), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [13782] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8201), + [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), + [13788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8241), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [13795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8240), + [13798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [13800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [13806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [13808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [13810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, 0, 114), + [13812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 114), + [13814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 186), + [13816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 186), + [13818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 116), + [13820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 116), + [13822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1, 0, 0), + [13824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 185), + [13826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 185), + [13828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 117), + [13830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 117), + [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10495), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11070), + [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11081), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10109), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [13878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [13894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 119), + [13896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 119), + [13898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, 0, 77), + [13900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, 0, 77), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10322), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [13926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11030), + [13930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [13932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 92), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9893), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [13948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10154), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [13960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [13966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), + [13968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), + [13970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 4), SHIFT(10375), + [13973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [13975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [13979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [13991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), + [13995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [14009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 144), + [14011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), + [14013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [14015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [14017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [14019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), + [14025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, 0, 101), + [14027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 101), + [14029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 35), + [14031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 35), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [14035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 36), + [14037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 36), + [14039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, 0, 0), + [14041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 0), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [14055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [14057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 148), + [14059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 148), + [14061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 149), + [14063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 149), + [14065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 4), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9210), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [14083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [14095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 150), + [14097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 150), + [14099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, 0, 151), + [14101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, 0, 151), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10997), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10999), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11001), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [14147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 229), + [14149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 230), + [14151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15, 0, 0), + [14153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15, 0, 0), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [14175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10334), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [14181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10967), + [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10900), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [14207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [14209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), + [14212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [14225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, 0, 0), + [14227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [14229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [14231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 3), + [14233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 3), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [14281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(8498), + [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), + [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10043), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10971), + [14318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), + [14320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 0), SHIFT(10375), + [14323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), + [14325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 25), + [14327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, 0, 25), SHIFT(10375), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [14378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 27), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [14382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9676), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9499), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [14478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [14480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(138), + [14483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), SHIFT_REPEAT(10146), + [14486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 75), + [14488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [14494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10052), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [14498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10940), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10331), + [14514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [14516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 162), + [14518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 97), + [14520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 97), + [14522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, 0, 101), + [14524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 101), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10697), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10714), + [14532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [14534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [14536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 183), + [14538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 183), + [14540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, 0, 184), + [14542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, 0, 184), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [14550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10163), + [14552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8519), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [14557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, 0, 101), + [14559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 101), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10393), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [14575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [14577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11100), + [14579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [14583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 163), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [14599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11396), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11398), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [14617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11080), + [14619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), + [14623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [14625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [14627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10498), + [14631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [14633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11290), + [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [14643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [14645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [14647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9865), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10195), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), + [14655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [14657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11020), + [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [14661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), + [14669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [14671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11264), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10632), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11040), + [14681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10402), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [14689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11271), + [14691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [14695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [14699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [14707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10706), + [14709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [14711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10990), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [14719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [14721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10418), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [14729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11274), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [14735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [14737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [14741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 197), + [14743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 197), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [14753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10463), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11282), + [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [14771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11190), + [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [14775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10525), + [14789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [14791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11298), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [14795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11286), + [14805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [14807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10490), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [14829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), + [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11292), + [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [14851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 198), + [14853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 198), + [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [14857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11231), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11090), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [14873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [14879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), + [14881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), + [14885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), + [14889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8920), + [14891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [14893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [14897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [14899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [14905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 142), SHIFT_REPEAT(2239), + [14908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 142), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [14916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11010), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), + [14920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [14922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11276), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11139), + [14926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10519), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [14934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11296), + [14936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [14938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [14940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [14942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [14950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11197), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [14956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10537), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [14964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11302), + [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [14968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [14970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [14980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [14986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11308), + [14988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11141), + [14992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1, 0, 0), + [14994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [14996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, 0, 10), + [14998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, 0, 10), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10531), + [15002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [15004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), + [15006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [15012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [15018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), + [15020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [15022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [15024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), + [15026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, 0, 10), + [15028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [15030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, 0, 10), + [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, 0, 10), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [15038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10566), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [15044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11312), + [15046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [15048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(10144), + [15051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [15055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [15065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10572), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11314), + [15073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [15077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11149), + [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [15095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), + [15097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10180), + [15099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [15101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, 0, 133), + [15103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, 0, 133), + [15105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [15117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11318), + [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [15121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8567), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [15127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10590), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [15135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11320), + [15137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [15139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [15145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [15151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11322), + [15153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [15161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [15169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11326), + [15171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [15173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [15175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10614), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [15183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11328), + [15185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [15187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [15189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), + [15191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, 0, 137), + [15193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [15199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11330), + [15201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [15203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [15205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10631), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [15213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11334), + [15215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [15217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [15219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [15225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11338), + [15227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [15229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [15231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [15233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [15235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [15237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [15245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11204), + [15247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [15249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [15253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [15255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [15257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [15259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [15267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [15269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [15271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [15273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [15275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [15277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [15279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [15281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [15287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [15289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [15291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [15293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [15295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [15297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [15299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [15301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [15303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [15305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [15307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [15309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [15311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [15313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [15315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [15317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [15319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [15323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [15327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [15329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [15331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [15335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [15337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [15339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [15341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [15343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [15345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10543), + [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [15351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11304), + [15353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [15355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [15361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11110), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [15371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, 0, 85), + [15373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, 0, 85), + [15375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, 0, 86), + [15377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, 0, 86), + [15379] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), REDUCE(sym__immediate_decimal, 2, 0, 0), SHIFT(8498), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [15387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10442), + [15391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11278), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [15407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11170), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), + [15413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [15417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [15419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [15421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11060), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [15433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 38), + [15435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 38), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [15439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [15441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [15443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [15445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [15447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, 0, 41), + [15449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, 0, 41), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10455), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), + [15461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 114), + [15463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 114), + [15465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [15467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [15469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [15475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11211), + [15477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), + [15481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [15483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11306), + [15485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [15487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 165), + [15489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 165), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [15495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10724), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [15501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11120), + [15503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10453), + [15509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [15511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11280), + [15513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [15515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [15517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), + [15519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1, 0, 0), + [15521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [15523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [15531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), + [15533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 3), + [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [15541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11218), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [15545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), + [15547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11246), + [15549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10469), + [15551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [15555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [15559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(8952), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11179), + [15564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), + [15568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [15572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [15574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11324), + [15576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [15578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [15586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10706), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [15592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10998), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [15600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11225), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10375), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10821), + [15606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [15608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11130), + [15610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9105), + [15612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [15614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [15618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), + [15622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7871), + [15624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11332), + [15626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [15630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [15638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10473), + [15642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [15644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), + [15646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [15650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [15658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11239), + [15660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [15662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10635), + [15670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [15672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11336), + [15674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), + [15678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [15680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11150), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [15686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [15692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11050), + [15694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [15696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [15700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_variable, 1, 0, 5), SHIFT(8952), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10710), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [15707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10794), + [15709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), SHIFT(8952), + [15712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11038), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [15718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11000), + [15720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [15722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), + [15726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), + [15728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11140), + [15730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), + [15744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8779), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [15750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11253), + [15752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [15754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [15758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [15760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11232), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [15766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [15772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [15774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [15776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10337), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [15782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [15794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11102), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [15812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11112), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [15816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [15822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11022), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [15832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11127), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11108), + [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [15838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11072), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10203), + [15852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11151), + [15854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), + [15856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, 0, 10), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [15862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10944), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10758), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [15870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11122), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [15878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [15894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11032), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11101), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [15900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10897), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [15906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9909), + [15908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11118), + [15910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), + [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [15920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11132), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [15924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [15926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), + [15928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1, 0, 0), + [15930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), + [15932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, 0, 10), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [15942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11142), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [15946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10175), + [15948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10674), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11216), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [15968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11152), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10196), + [15974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 73), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10732), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [15982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11042), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [15990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [16004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11172), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [16016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11182), + [16018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 0), + [16020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10231), + [16022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10479), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11307), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [16028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11192), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11199), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10579), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [16050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11206), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [16058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11213), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10949), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [16064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11052), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [16072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11220), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [16082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11227), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [16088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11234), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [16094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [16104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11248), + [16106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 85), + [16108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, 0, 85), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11255), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10350), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11260), + [16122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 86), + [16124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, 0, 86), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [16130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [16138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), + [16140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, 0, 41), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [16146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10992), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [16156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 100), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [16160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [16164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), + [16166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, 0, 133), + [16168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10193), + [16170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10688), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [16180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), + [16182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, 0, 137), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), + [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [16188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11062), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [16192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), + [16194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), SHIFT_REPEAT(9922), + [16197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(9195), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [16204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), + [16206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, 0, 10), + [16208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [16210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2, 0, 0), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [16224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), + [16226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1, 0, 0), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [16230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1, 0, 0), + [16232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1, 0, 0), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [16240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9702), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10186), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10483), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [16258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11002), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [16264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9805), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), + [16270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [16276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [16282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [16284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [16286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9665), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [16290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), + [16292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [16296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10020), + [16298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9566), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [16302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9633), + [16304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9734), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [16308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [16314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9281), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [16322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11496), + [16324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9390), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [16328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [16330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), + [16332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), + [16334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9697), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [16338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9871), + [16340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), + [16342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9742), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [16346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9821), + [16348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), + [16350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), + [16352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [16356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), + [16358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9279), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10791), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [16364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11082), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [16368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [16372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [16376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), + [16378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), + [16380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), + [16383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [16385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), + [16387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), + [16389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), + [16391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), + [16393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9403), + [16395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), + [16397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [16399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9428), + [16401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [16405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), SHIFT(9265), + [16408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [16410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [16412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [16414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [16416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 38), + [16418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 38), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [16424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11228), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10155), + [16430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11012), + [16432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9544), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10067), + [16436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [16444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11092), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [16458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), + [16460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 53), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [16470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [16472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [16474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 53), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [16478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [16480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [16482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11335), + [16484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [16486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [16488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 121), + [16490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [16492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [16494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_expression, 1, 0, 21), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10247), + [16498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [16500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [16520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [16526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), + [16530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 175), + [16532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [16534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [16544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10917), + [16546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [16548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [16550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 22), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [16558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [16560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9779), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [16566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, 0, 94), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [16570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10923), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [16580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [16582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [16584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [16586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [16598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [16600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [16602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), + [16612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [16614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [16616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 23), + [16618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 23), + [16620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [16624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11094), + [16630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [16632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [16634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [16640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [16644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [16646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [16670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [16678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [16690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [16694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [16698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [16710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [16730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [16734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [16738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [16740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 88), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [16774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [16776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [16778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10030), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [16838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [16862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [16864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [16880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [16884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [16900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [16914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [16926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10200), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [16946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [16960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [17018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [17058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [17110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [17130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [17136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [17146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [17188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [17194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [17264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [17270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), - [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), - [17278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10876), - [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [17336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [17340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [17348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), - [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), - [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [17120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [17130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [17138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [17152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 88), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [17182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [17266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [17268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [17278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10193), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [17328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [17368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9783), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10330), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [17406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [17410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [17412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [17414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [17418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [17448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [17450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [17460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [17466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [17468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [17482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [17486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), - [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), - [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [17512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), - [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [17522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [17538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), - [17544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [17562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10254), - [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [17598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), - [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [17616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), - [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10515), - [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [17638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [17644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10472), - [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [17672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [17678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10037), - [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9867), - [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), - [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), - [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10413), - [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), - [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10208), - [17726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), - [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), - [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10034), - [17732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10124), - [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), - [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10523), - [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [17766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), - [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), - [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [17782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 88), - [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), - [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), - [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), - [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10625), - [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), - [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), - [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [17808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), - [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10776), - [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), - [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), - [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), - [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), - [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [17844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 4, 0, 0), - [17846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 175), - [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), - [17850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), - [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), - [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), - [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), - [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), - [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [17886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11230), - [17890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11246), - [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [17898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), - [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11474), - [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), - [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), - [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11491), - [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), - [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), - [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [17936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), - [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), - [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), - [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), - [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), - [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), - [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), - [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), - [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), - [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), - [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11117), - [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), - [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), - [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [18004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11153), - [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11141), - [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10062), - [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [18026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), - [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), - [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), - [18040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), - [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), - [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), - [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9968), - [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [18062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), - [18068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), - [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9921), - [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), - [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), - [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), - [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10816), - [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10806), - [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), - [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [18116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 88), - [18118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10773), - [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), - [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), - [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), - [18138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10718), - [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), - [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), - [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [18160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), - [18162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), - [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [18168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10517), - [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), - [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), - [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), - [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), - [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10539), - [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), - [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10497), - [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10487), - [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), - [18200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), - [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), - [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), - [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10056), - [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10409), - [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10397), - [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), - [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [18228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10376), - [18230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1, 0, 0), - [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10367), - [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), - [18238] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), - [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10294), - [18244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), - [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9861), - [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), - [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10312), - [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [18262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), - [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), - [18266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10330), - [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10346), - [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10353), - [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), - [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [18290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), - [18296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10408), - [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), - [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), - [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10447), - [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), - [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), - [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10477), - [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), - [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10494), - [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), - [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), - [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10516), - [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), - [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10528), - [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10534), - [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), - [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), - [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), - [18370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), - [18372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10564), - [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10570), - [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), - [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10582), - [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), - [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), - [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), - [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), - [18404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), - [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), - [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), - [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), - [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10635), - [18422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), - [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), - [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10962), - [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), - [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [18468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [18476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [18480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [18482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [18498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [18500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [18504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), - [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [18516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [17412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [17414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [17432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [17440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9786), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [17444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [17452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [17464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [17472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [17484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [17496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [17554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [17558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [17560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [17574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [17598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [17618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [17632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [17642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [17646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9766), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [17686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11382), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [17722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [17726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [17730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [17732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [17736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9903), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [17742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10676), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [17758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [17768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [17774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11009), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9913), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [17816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [17840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [17860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [17872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 4, 0, 0), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10700), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10924), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), + [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [17934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), + [17950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [17954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10716), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10236), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10815), + [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [18004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 175), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10567), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [18022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [18024] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [18026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10763), + [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), + [18040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), + [18046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), + [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), + [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10951), + [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), + [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10108), + [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11221), + [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10148), + [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [18098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11359), + [18102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11378), + [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), + [18114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), + [18118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), + [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), + [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [18138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9861), + [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11202), + [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11361), + [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [18160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), + [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), + [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [18178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10553), + [18182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [18192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10728), + [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10765), + [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9896), + [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [18204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [18208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10906), + [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), + [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [18218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), + [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10203), + [18228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), + [18230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), + [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), + [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), + [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), + [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [18258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), + [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [18266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), + [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), + [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10316), + [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10325), + [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), + [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), + [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [18296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10391), + [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), + [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), + [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), + [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10446), + [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), + [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), + [18328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), + [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), + [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), + [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), + [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10515), + [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), + [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), + [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), + [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10539), + [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), + [18370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), + [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), + [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10562), + [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10568), + [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), + [18390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10580), + [18394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10592), + [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), + [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), + [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), + [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [18422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10633), + [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [18436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), + [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [18468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [18476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [18490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [18498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [18504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [18516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 1, 0, 0), + [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [18532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [18542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), - [18546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [18548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), - [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), - [18554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), - [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), - [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), - [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), - [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [18564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), - [18566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), - [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), - [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), - [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), - [18576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), - [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), - [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), - [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), - [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [18594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), - [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), - [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), - [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), - [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), - [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), - [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), - [18616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [18618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), - [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [18622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), - [18636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [18640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [18642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [18644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [18650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [18652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [18656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [18668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [18670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [18530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [18532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [18542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [18546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [18548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [18554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), + [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [18564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [18566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), + [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), + [18576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), + [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [18594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), + [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), + [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [18616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [18618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [18622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [18636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [18640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [18642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [18644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [18650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [18652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [18656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [18668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [18670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), [18672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; diff --git a/test/corpus/pipe/commands.nu b/test/corpus/pipe/commands.nu index 41aa035..3ceea8d 100644 --- a/test/corpus/pipe/commands.nu +++ b/test/corpus/pipe/commands.nu @@ -497,3 +497,39 @@ bla --weird-that=this --behaved-differently=than-this --level=2 (long_flag_identifier) (long_flag_value (val_number)))))))) + +====== +cmd-020-variable-external +====== + +^$cmd + +------ + +(nu_script + (pipeline + (pipe_element + (command + (val_variable + (identifier)))))) + +====== +cmd-021-variable-external-parenthesized +====== + +(^$cmd + arg +) + +------ + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (command + (val_variable + (identifier)) + (val_string))))))))